From 78b40c08e120595a9a4ed712a19994f7b412ec54 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 30 Jul 2019 11:52:43 -0600 Subject: [PATCH 1/6] Introduce a node for number literals Previously, numbers were just parsed as words. This improves the accuracy of the grammar, and more importantly, avoids parsing # as the start of a comment when a custom base is specified via BASE#NUMBER. --- corpus/commands.txt | 6 +- corpus/literals.txt | 23 +- corpus/programs.txt | 2 +- corpus/statements.txt | 28 +- grammar.js | 3 + src/grammar.json | 8 + src/node-types.json | 84 + src/parser.c | 133092 ++++++++++++++++++++------------------- 8 files changed, 67608 insertions(+), 65638 deletions(-) diff --git a/corpus/commands.txt b/corpus/commands.txt index dca8148d..999a4b97 100644 --- a/corpus/commands.txt +++ b/corpus/commands.txt @@ -44,7 +44,7 @@ exit 1 --- (program - (command (command_name (word)) (word))) + (command (command_name (word)) (number))) =================================== Commands with environment variables @@ -57,7 +57,7 @@ VAR1=a VAR2="ok" git diff --word-diff=color (program (command - (variable_assignment (variable_name) (word)) + (variable_assignment (variable_name) (number)) (command_name (word))) (command (variable_assignment (variable_name) (word)) @@ -97,7 +97,7 @@ cat a b > /dev/null (command (command_name (word)) (word) (word)) (file_redirect (word))) (command - (file_redirect (file_descriptor) (word)) + (file_redirect (file_descriptor) (number)) (command_name (word)))) =============================== diff --git a/corpus/literals.txt b/corpus/literals.txt index 2d699ee9..7a6c99ab 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -88,7 +88,7 @@ F="${G%% *}" (program (variable_assignment (variable_name) - (string (expansion (subscript (variable_name) (word))))) + (string (expansion (subscript (variable_name) (number))))) (variable_assignment (variable_name) (string (expansion (variable_name) (regex)))) @@ -326,12 +326,12 @@ a+=(foo "bar" $(baz)) (program (variable_assignment (variable_name) (array)) - (variable_assignment (variable_name) (array (word) (word) (word))) + (variable_assignment (variable_name) (array (number) (number) (number))) (command (command_name (word)) (expansion (subscript (variable_name) (word)))) (command (command_name (word)) (expansion (subscript (variable_name) (word)))) (variable_assignment (subscript (variable_name) (simple_expansion (variable_name))) - (word)) + (number)) (variable_assignment (variable_name) (array @@ -351,3 +351,20 @@ echo -ne "\033k$1\033\\" > /dev/stderr (redirected_statement (command (command_name (word)) (word) (string (simple_expansion (variable_name)))) (file_redirect (word)))) + +============================== +Numbers +============================== + +decimal = 100 +octal = 032 +hexadecimal = 0x32 +custom = 60#10 # Custom base + +--- + +(program + (command (command_name (word)) (word) (number)) + (command (command_name (word)) (word) (number)) + (command (command_name (word)) (word) (number)) + (command (command_name (word)) (word) (number)) (comment)) diff --git a/corpus/programs.txt b/corpus/programs.txt index 0e4d4379..044d3814 100644 --- a/corpus/programs.txt +++ b/corpus/programs.txt @@ -49,7 +49,7 @@ echo 1 \ 2 \ 3 --- -(program (command (command_name (word)) (word) (word) (word))) +(program (command (command_name (word)) (number) (number) (number))) ==================================== Files without trailing terminators diff --git a/corpus/statements.txt b/corpus/statements.txt index 08b350d6..17582cef 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -90,9 +90,9 @@ done (program (for_statement (variable_name) - (word) - (word) - (command_substitution (command (command_name (word)) (word) (word))) + (number) + (number) + (command_substitution (command (command_name (word)) (number) (number))) (do_group (command (command_name (word)) (simple_expansion (variable_name))))) (for_statement @@ -124,13 +124,13 @@ done (program (c_style_for_statement (word) - (binary_expression (word) (word)) + (binary_expression (word) (number)) (word) (do_group (command (command_name (word)) (simple_expansion (variable_name))))) (c_style_for_statement (word) - (binary_expression (word) (word)) + (binary_expression (word) (number)) (word) (compound_statement (command (command_name (word)) (simple_expansion (variable_name))))) @@ -218,7 +218,7 @@ esac (case_item (word) (word) (command (command_name (word))))) (case_statement (simple_expansion (variable_name)) - (case_item (concatenation (word) (word)) + (case_item (concatenation (word) (number)) (command (command_name (word)) (simple_expansion (special_variable_name)))))) ============================= @@ -242,7 +242,7 @@ fi (command_name (word)) (string (simple_expansion (variable_name)))))) (command_substitution (command (command_name (word)) (raw_string))))) - (command (command_name (word)) (word)))) + (command (command_name (word)) (number)))) ============================= Test commands with regexes @@ -350,7 +350,7 @@ function do_yet_another_thing { (redirected_statement (function_definition (word) (compound_statement (command (command_name (word)) (word)))) - (file_redirect (file_descriptor) (word)))) + (file_redirect (file_descriptor) (number)))) ========================================= Variable declaration: declare & typeset @@ -364,8 +364,8 @@ typeset -i -r var2=42 var3=10 (program (declaration_command (variable_name)) (declaration_command (word) (word) - (variable_assignment (variable_name) (word)) - (variable_assignment (variable_name) (word)))) + (variable_assignment (variable_name) (number)) + (variable_assignment (variable_name) (number)))) ========================================= Variable declaration: readonly @@ -378,7 +378,7 @@ readonly var2=42 (program (declaration_command (variable_name)) - (declaration_command (variable_assignment (variable_name) (word)))) + (declaration_command (variable_assignment (variable_name) (number)))) ========================================= Variable declaration: local @@ -391,7 +391,7 @@ local -r c (program (declaration_command - (variable_assignment (variable_name) (word)) + (variable_assignment (variable_name) (number)) (variable_name)) (declaration_command (word) @@ -486,8 +486,8 @@ a () { (command (command_name (word))) (compound_statement (command (command_name (word)) (string)) - (command (command_name (word)) (word)))) + (command (command_name (word)) (number)))) (command (command_name (word)) (word)))) (redirected_statement (compound_statement (command (command_name (word)) (string)) (command (command_name (word)) (string))) - (file_redirect (word)))) + (file_redirect (number)))) diff --git a/grammar.js b/grammar.js index 40f5738e..9560d0c2 100644 --- a/grammar.js +++ b/grammar.js @@ -397,6 +397,7 @@ module.exports = grammar({ $.string, $.raw_string, $.ansii_c_string, + $.number, $.expansion, $.simple_expansion, $.string_expansion, @@ -448,6 +449,8 @@ module.exports = grammar({ ansii_c_string: $ => /\$'([^']|\\')*'/, + number: $ => /(0x)?[0-9]+(#[0-9]+)?/, + simple_expansion: $ => seq( '$', choice( diff --git a/src/grammar.json b/src/grammar.json index d7c1182a..18bbf744 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1630,6 +1630,10 @@ "type": "SYMBOL", "name": "ansii_c_string" }, + { + "type": "SYMBOL", + "name": "number" + }, { "type": "SYMBOL", "name": "expansion" @@ -1874,6 +1878,10 @@ "type": "PATTERN", "value": "\\$'([^']|\\\\')*'" }, + "number": { + "type": "PATTERN", + "value": "(0x)?[0-9]+(#[0-9]+)?" + }, "simple_expansion": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 12eb6f88..e4af0d77 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -23,6 +23,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -78,6 +82,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "parenthesized_expression", "named": true @@ -161,6 +169,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "parenthesized_expression", "named": true @@ -268,6 +280,10 @@ "type": "negated_command", "named": true }, + { + "type": "number", + "named": true + }, { "type": "pipeline", "named": true @@ -351,6 +367,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -410,6 +430,10 @@ "type": "file_redirect", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -469,6 +493,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -686,6 +714,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -737,6 +769,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -1041,6 +1077,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -1112,6 +1152,10 @@ "type": "file_descriptor", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -1167,6 +1211,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -1275,6 +1323,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -1523,6 +1575,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "parenthesized_expression", "named": true @@ -1669,6 +1725,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "parenthesized_expression", "named": true @@ -2046,6 +2106,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -2188,6 +2252,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "parenthesized_expression", "named": true @@ -2255,6 +2323,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "parenthesized_expression", "named": true @@ -2322,6 +2394,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -2377,6 +2453,10 @@ "type": "expansion", "named": true }, + { + "type": "number", + "named": true + }, { "type": "process_substitution", "named": true @@ -2751,6 +2831,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "number", + "named": true + }, { "type": "#", "named": false diff --git a/src/parser.c b/src/parser.c index 0b334a52..fa5caeb2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,9 +7,9 @@ #define LANGUAGE_VERSION 10 #define STATE_COUNT 2631 -#define SYMBOL_COUNT 158 +#define SYMBOL_COUNT 159 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 98 +#define TOKEN_COUNT 99 #define EXTERNAL_TOKEN_COUNT 15 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -82,97 +82,98 @@ enum { sym__string_content = 65, sym_raw_string = 66, sym_ansii_c_string = 67, - anon_sym_POUND = 68, - anon_sym_DOLLAR_LBRACE = 69, - anon_sym_SLASH = 70, - anon_sym_COLON = 71, - anon_sym_COLON_QMARK = 72, - anon_sym_COLON_DASH = 73, - anon_sym_PERCENT = 74, - anon_sym_DOLLAR_LPAREN = 75, - anon_sym_BQUOTE = 76, - anon_sym_LT_LPAREN = 77, - anon_sym_GT_LPAREN = 78, - sym_comment = 79, - aux_sym__simple_variable_name_token1 = 80, - anon_sym_STAR = 81, - anon_sym_AT = 82, - anon_sym_QMARK = 83, - anon_sym_0 = 84, - anon_sym__ = 85, - sym_test_operator = 86, - anon_sym_AMP = 87, - sym_heredoc_start = 88, - sym__simple_heredoc_body = 89, - sym__heredoc_body_beginning = 90, - sym__heredoc_body_middle = 91, - sym__heredoc_body_end = 92, - sym_file_descriptor = 93, - sym__empty_value = 94, - sym__concat = 95, - sym_variable_name = 96, - sym_regex = 97, - sym_program = 98, - sym__statements = 99, - aux_sym__statements2 = 100, - sym__terminated_statement = 101, - sym_redirected_statement = 102, - sym_for_statement = 103, - sym_c_style_for_statement = 104, - sym_while_statement = 105, - sym_do_group = 106, - sym_if_statement = 107, - sym_elif_clause = 108, - sym_else_clause = 109, - sym_case_statement = 110, - sym_case_item = 111, - sym_last_case_item = 112, - sym_function_definition = 113, - sym_compound_statement = 114, - sym_subshell = 115, - sym_pipeline = 116, - sym_list = 117, - sym_negated_command = 118, - sym_test_command = 119, - sym_declaration_command = 120, - sym_unset_command = 121, - sym_command = 122, - sym_command_name = 123, - sym_variable_assignment = 124, - sym_subscript = 125, - sym_file_redirect = 126, - sym_heredoc_redirect = 127, - sym_heredoc_body = 128, - sym_herestring_redirect = 129, - sym__expression = 130, - sym_binary_expression = 131, - sym_unary_expression = 132, - sym_postfix_expression = 133, - sym_parenthesized_expression = 134, - sym_concatenation = 135, - sym_string = 136, - sym_array = 137, - sym_simple_expansion = 138, - sym_string_expansion = 139, - sym_expansion = 140, - sym_command_substitution = 141, - sym_process_substitution = 142, - aux_sym__statements_repeat1 = 143, - aux_sym_redirected_statement_repeat1 = 144, - aux_sym_for_statement_repeat1 = 145, - aux_sym_if_statement_repeat1 = 146, - aux_sym_case_statement_repeat1 = 147, - aux_sym_case_item_repeat1 = 148, - aux_sym_declaration_command_repeat1 = 149, - aux_sym_unset_command_repeat1 = 150, - aux_sym_command_repeat1 = 151, - aux_sym_command_repeat2 = 152, - aux_sym_heredoc_body_repeat1 = 153, - aux_sym__literal_repeat1 = 154, - aux_sym_concatenation_repeat1 = 155, - aux_sym_string_repeat1 = 156, - aux_sym_expansion_repeat1 = 157, - alias_sym_special_variable_name = 158, + sym_number = 68, + anon_sym_POUND = 69, + anon_sym_DOLLAR_LBRACE = 70, + anon_sym_SLASH = 71, + anon_sym_COLON = 72, + anon_sym_COLON_QMARK = 73, + anon_sym_COLON_DASH = 74, + anon_sym_PERCENT = 75, + anon_sym_DOLLAR_LPAREN = 76, + anon_sym_BQUOTE = 77, + anon_sym_LT_LPAREN = 78, + anon_sym_GT_LPAREN = 79, + sym_comment = 80, + aux_sym__simple_variable_name_token1 = 81, + anon_sym_STAR = 82, + anon_sym_AT = 83, + anon_sym_QMARK = 84, + anon_sym_0 = 85, + anon_sym__ = 86, + sym_test_operator = 87, + anon_sym_AMP = 88, + sym_heredoc_start = 89, + sym__simple_heredoc_body = 90, + sym__heredoc_body_beginning = 91, + sym__heredoc_body_middle = 92, + sym__heredoc_body_end = 93, + sym_file_descriptor = 94, + sym__empty_value = 95, + sym__concat = 96, + sym_variable_name = 97, + sym_regex = 98, + sym_program = 99, + sym__statements = 100, + aux_sym__statements2 = 101, + sym__terminated_statement = 102, + sym_redirected_statement = 103, + sym_for_statement = 104, + sym_c_style_for_statement = 105, + sym_while_statement = 106, + sym_do_group = 107, + sym_if_statement = 108, + sym_elif_clause = 109, + sym_else_clause = 110, + sym_case_statement = 111, + sym_case_item = 112, + sym_last_case_item = 113, + sym_function_definition = 114, + sym_compound_statement = 115, + sym_subshell = 116, + sym_pipeline = 117, + sym_list = 118, + sym_negated_command = 119, + sym_test_command = 120, + sym_declaration_command = 121, + sym_unset_command = 122, + sym_command = 123, + sym_command_name = 124, + sym_variable_assignment = 125, + sym_subscript = 126, + sym_file_redirect = 127, + sym_heredoc_redirect = 128, + sym_heredoc_body = 129, + sym_herestring_redirect = 130, + sym__expression = 131, + sym_binary_expression = 132, + sym_unary_expression = 133, + sym_postfix_expression = 134, + sym_parenthesized_expression = 135, + sym_concatenation = 136, + sym_string = 137, + sym_array = 138, + sym_simple_expansion = 139, + sym_string_expansion = 140, + sym_expansion = 141, + sym_command_substitution = 142, + sym_process_substitution = 143, + aux_sym__statements_repeat1 = 144, + aux_sym_redirected_statement_repeat1 = 145, + aux_sym_for_statement_repeat1 = 146, + aux_sym_if_statement_repeat1 = 147, + aux_sym_case_statement_repeat1 = 148, + aux_sym_case_item_repeat1 = 149, + aux_sym_declaration_command_repeat1 = 150, + aux_sym_unset_command_repeat1 = 151, + aux_sym_command_repeat1 = 152, + aux_sym_command_repeat2 = 153, + aux_sym_heredoc_body_repeat1 = 154, + aux_sym__literal_repeat1 = 155, + aux_sym_concatenation_repeat1 = 156, + aux_sym_string_repeat1 = 157, + aux_sym_expansion_repeat1 = 158, + alias_sym_special_variable_name = 159, }; static const char *ts_symbol_names[] = { @@ -244,6 +245,7 @@ static const char *ts_symbol_names[] = { [sym__string_content] = "_string_content", [sym_raw_string] = "raw_string", [sym_ansii_c_string] = "ansii_c_string", + [sym_number] = "number", [anon_sym_POUND] = "#", [anon_sym_DOLLAR_LBRACE] = "${", [anon_sym_SLASH] = "/", @@ -610,6 +612,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_number] = { + .visible = true, + .named = true, + }, [anon_sym_POUND] = { .visible = true, .named = false, @@ -1004,1364 +1010,1403 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); switch (state) { case 0: - if (lookahead == 0) ADVANCE(115); - if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(149); - if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(195); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '/') ADVANCE(224); - if (lookahead == '0') ADVANCE(251); - if (lookahead == ':') ADVANCE(225); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); - if (lookahead == '[') ADVANCE(160); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == ']') ADVANCE(162); - if (lookahead == '_') ADVANCE(254); - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(260); - if (lookahead == 'i') ADVANCE(259); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(143); - if (lookahead == '}') ADVANCE(151); + if (lookahead == 0) ADVANCE(114); + if (lookahead == '!') ADVANCE(155); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '%') ADVANCE(232); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(148); + if (lookahead == ')') ADVANCE(145); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '+') ADVANCE(194); + if (lookahead == '-') ADVANCE(197); + if (lookahead == '/') ADVANCE(228); + if (lookahead == '0') ADVANCE(255); + if (lookahead == ':') ADVANCE(229); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); + if (lookahead == '[') ADVANCE(159); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(161); + if (lookahead == '_') ADVANCE(259); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(265); + if (lookahead == 'i') ADVANCE(264); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(142); + if (lookahead == '}') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (lookahead != 0) ADVANCE(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 1: - if (lookahead == 0) ADVANCE(115); - if (lookahead == '\n') ADVANCE(116); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(145); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '=') ADVANCE(256); - if (lookahead == '>') ADVANCE(182); + if (lookahead == 0) ADVANCE(114); + if (lookahead == '\n') ADVANCE(115); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '0') ADVANCE(222); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(181); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); + lookahead == '}') ADVANCE(211); if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (lookahead != 0) ADVANCE(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(243); + if (lookahead != 0 && + lookahead != '(') ADVANCE(268); END_STATE(); case 2: - if (lookahead == 0) ADVANCE(115); - if (lookahead == '\n') ADVANCE(117); - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '*') ADVANCE(244); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '0') ADVANCE(252); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(248); - if (lookahead == '@') ADVANCE(246); + if (lookahead == 0) ADVANCE(114); + if (lookahead == '\n') ADVANCE(116); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(208); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '0') ADVANCE(257); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(253); + if (lookahead == '@') ADVANCE(251); if (lookahead == '\\') SKIP(12) - if (lookahead == '_') ADVANCE(255); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(2) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); case 3: - if (lookahead == 0) ADVANCE(115); - if (lookahead == '\n') ADVANCE(117); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '&') ADVANCE(266); - if (lookahead == ')') ADVANCE(145); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '>') ADVANCE(183); + if (lookahead == 0) ADVANCE(114); + if (lookahead == '\n') ADVANCE(116); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '&') ADVANCE(272); + if (lookahead == ')') ADVANCE(144); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); + lookahead == '}') ADVANCE(211); if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(70); - if (lookahead == '|') ADVANCE(143); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(69); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(3) END_STATE(); case 4: - if (lookahead == 0) ADVANCE(115); - if (lookahead == '\n') ADVANCE(117); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '&') ADVANCE(264); - if (lookahead == ')') ADVANCE(145); - if (lookahead == ';') ADVANCE(137); + if (lookahead == 0) ADVANCE(114); + if (lookahead == '\n') ADVANCE(116); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '&') ADVANCE(270); + if (lookahead == ')') ADVANCE(144); + if (lookahead == ';') ADVANCE(136); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); + lookahead == '}') ADVANCE(211); if (lookahead == '\\') SKIP(11) - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(70); - if (lookahead == 'i') ADVANCE(69); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(69); + if (lookahead == 'i') ADVANCE(68); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(4) END_STATE(); case 5: - if (lookahead == 0) ADVANCE(115); - if (lookahead == '\n') ADVANCE(120); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(145); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(182); + if (lookahead == 0) ADVANCE(114); + if (lookahead == '\n') ADVANCE(119); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(147); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '=') ADVANCE(261); + if (lookahead == '>') ADVANCE(181); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); + lookahead == '}') ADVANCE(211); if (lookahead == '\\') ADVANCE(76); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(238); - if (lookahead != 0 && - lookahead != '(') ADVANCE(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 6: - if (lookahead == 0) ADVANCE(115); - if (lookahead == '\n') ADVANCE(121); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(145); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(182); + if (lookahead == 0) ADVANCE(114); + if (lookahead == '\n') ADVANCE(120); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(181); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); + lookahead == '}') ADVANCE(211); if (lookahead == '\\') ADVANCE(83); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(6) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && - lookahead != '(') ADVANCE(262); + lookahead != '(') ADVANCE(268); END_STATE(); case 7: - if (lookahead == 0) ADVANCE(115); - if (lookahead == '\n') ADVANCE(122); - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(250); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '=') ADVANCE(256); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); + if (lookahead == 0) ADVANCE(114); + if (lookahead == '\n') ADVANCE(121); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '=') ADVANCE(261); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(94); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '_') ADVANCE(258); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && - lookahead != '(') ADVANCE(262); + lookahead != '(') ADVANCE(268); END_STATE(); case 8: - if (lookahead == 0) ADVANCE(115); - if (lookahead == '\n') ADVANCE(127); - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(250); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); + if (lookahead == 0) ADVANCE(114); + if (lookahead == '\n') ADVANCE(126); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(104); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(102); + if (lookahead == '_') ADVANCE(258); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && - lookahead != '(') ADVANCE(262); + lookahead != '(') ADVANCE(268); END_STATE(); case 9: - if (lookahead == 0) ADVANCE(115); - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(65); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(149); - if (lookahead == ')') ADVANCE(145); - if (lookahead == ';') ADVANCE(62); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '[') ADVANCE(160); - if (lookahead == '\\') ADVANCE(73); + if (lookahead == 0) ADVANCE(114); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(64); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(148); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '[') ADVANCE(159); + if (lookahead == '\\') ADVANCE(72); if (lookahead == ']' || - lookahead == '}') ADVANCE(212); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(211); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(141); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (lookahead != 0) ADVANCE(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 10: - if (lookahead == 0) ADVANCE(115); + if (lookahead == 0) ADVANCE(114); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) END_STATE(); case 11: - if (lookahead == 0) ADVANCE(115); + if (lookahead == 0) ADVANCE(114); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) END_STATE(); case 12: - if (lookahead == 0) ADVANCE(115); + if (lookahead == 0) ADVANCE(114); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(116); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(145); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '=') ADVANCE(256); - if (lookahead == '>') ADVANCE(182); + if (lookahead == '\n') ADVANCE(115); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '0') ADVANCE(222); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(181); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); + lookahead == '}') ADVANCE(211); if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (lookahead != 0) ADVANCE(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(243); + if (lookahead != 0 && + lookahead != '(') ADVANCE(268); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(117); - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(244); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '0') ADVANCE(252); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(248); - if (lookahead == '@') ADVANCE(246); - if (lookahead == '\\') SKIP(112) - if (lookahead == '_') ADVANCE(255); - if (lookahead == 'e') ADVANCE(242); - if (lookahead == '|') ADVANCE(143); + if (lookahead == '\n') ADVANCE(116); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(208); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '0') ADVANCE(257); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(253); + if (lookahead == '@') ADVANCE(251); + if (lookahead == '\\') SKIP(110) + if (lookahead == '_') ADVANCE(260); + if (lookahead == 'e') ADVANCE(247); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(14) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(117); - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(244); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '0') ADVANCE(252); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '?') ADVANCE(248); - if (lookahead == '@') ADVANCE(246); - if (lookahead == '\\') SKIP(105) - if (lookahead == '_') ADVANCE(255); - if (lookahead == 'i') ADVANCE(241); + if (lookahead == '\n') ADVANCE(116); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(208); + if (lookahead == '&') ADVANCE(270); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '0') ADVANCE(257); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '?') ADVANCE(253); + if (lookahead == '@') ADVANCE(251); + if (lookahead == '\\') SKIP(103) + if (lookahead == '_') ADVANCE(260); + if (lookahead == 'i') ADVANCE(246); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(15) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(118); - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '-') ADVANCE(261); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(59); - if (lookahead == '>') ADVANCE(60); + if (lookahead == '\n') ADVANCE(117); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(270); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(147); + if (lookahead == '-') ADVANCE(267); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(58); + if (lookahead == '>') ADVANCE(59); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == '`') ADVANCE(230); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(88); + if (lookahead == '`') ADVANCE(234); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(16) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(119); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(265); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(244); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(252); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(184); - if (lookahead == '?') ADVANCE(248); - if (lookahead == '@') ADVANCE(246); - if (lookahead == '\\') SKIP(108) - if (lookahead == '_') ADVANCE(255); - if (lookahead == '|') ADVANCE(71); + if (lookahead == '\n') ADVANCE(118); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(208); + if (lookahead == '&') ADVANCE(271); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(195); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(257); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(253); + if (lookahead == '@') ADVANCE(251); + if (lookahead == '\\') SKIP(106) + if (lookahead == '_') ADVANCE(260); + if (lookahead == '|') ADVANCE(70); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(17) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(119); - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '&') ADVANCE(265); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(199); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(184); + if (lookahead == '\n') ADVANCE(118); + if (lookahead == '!') ADVANCE(62); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '&') ADVANCE(271); + if (lookahead == '+') ADVANCE(195); + if (lookahead == '-') ADVANCE(198); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') SKIP(93) - if (lookahead == '|') ADVANCE(71); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') SKIP(92) + if (lookahead == '|') ADVANCE(70); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(18) END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(120); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(145); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(182); + if (lookahead == '\n') ADVANCE(119); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(147); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '=') ADVANCE(261); + if (lookahead == '>') ADVANCE(181); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); + lookahead == '}') ADVANCE(211); if (lookahead == '\\') ADVANCE(76); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(19) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(238); - if (lookahead != 0 && - lookahead != '(') ADVANCE(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(121); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(145); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(182); + if (lookahead == '\n') ADVANCE(120); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(181); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); + lookahead == '}') ADVANCE(211); if (lookahead == '\\') ADVANCE(83); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(20) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && - lookahead != '(') ADVANCE(262); + lookahead != '(') ADVANCE(268); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(122); - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(250); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '=') ADVANCE(256); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); + if (lookahead == '\n') ADVANCE(121); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '=') ADVANCE(261); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(94); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '_') ADVANCE(258); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && - lookahead != '(') ADVANCE(262); + lookahead != '(') ADVANCE(268); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(123); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(59); - if (lookahead == '>') ADVANCE(60); + if (lookahead == '\n') ADVANCE(122); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(270); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(58); + if (lookahead == '>') ADVANCE(59); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == '`') ADVANCE(230); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(96); + if (lookahead == '`') ADVANCE(234); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(22) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(124); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '=') ADVANCE(256); - if (lookahead == '>') ADVANCE(182); + if (lookahead == '\n') ADVANCE(123); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(147); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '=') ADVANCE(261); + if (lookahead == '>') ADVANCE(181); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(100); - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(260); - if (lookahead == '|') ADVANCE(143); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(98); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(265); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(23) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && - lookahead != ')') ADVANCE(262); + lookahead != ')') ADVANCE(268); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(125); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(182); + if (lookahead == '\n') ADVANCE(124); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '0') ADVANCE(222); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(181); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(101); - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(237); - if (lookahead == '|') ADVANCE(143); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(241); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(262); + lookahead != ')') ADVANCE(268); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(126); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(182); + if (lookahead == '\n') ADVANCE(125); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(181); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(260); - if (lookahead == '|') ADVANCE(143); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(101); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(265); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(25) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(262); + lookahead != ')') ADVANCE(268); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(127); - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(250); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); + if (lookahead == '\n') ADVANCE(126); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(104); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(143); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(102); + if (lookahead == '_') ADVANCE(258); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && - lookahead != '(') ADVANCE(262); + lookahead != '(') ADVANCE(268); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(128); - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(250); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(59); - if (lookahead == '>') ADVANCE(60); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); + if (lookahead == '\n') ADVANCE(127); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(270); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(58); + if (lookahead == '>') ADVANCE(59); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '`') ADVANCE(230); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(107); + if (lookahead == '_') ADVANCE(258); + if (lookahead == '`') ADVANCE(234); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(129); - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(250); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '=') ADVANCE(256); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); + if (lookahead == '\n') ADVANCE(128); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '=') ADVANCE(261); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(110); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(237); - if (lookahead == '|') ADVANCE(143); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(108); + if (lookahead == '_') ADVANCE(258); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(241); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(262); + lookahead != ')') ADVANCE(268); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(130); - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(250); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); + if (lookahead == '\n') ADVANCE(129); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(111); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(237); - if (lookahead == '|') ADVANCE(143); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == '_') ADVANCE(258); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(241); + if (lookahead == '|') ADVANCE(142); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(262); + lookahead != ')') ADVANCE(268); END_STATE(); case 30: - if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '&') ADVANCE(266); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(149); - if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(195); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '/') ADVANCE(224); - if (lookahead == '0') ADVANCE(251); - if (lookahead == ':') ADVANCE(225); - if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); - if (lookahead == '[') ADVANCE(160); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == ']') ADVANCE(162); - if (lookahead == '_') ADVANCE(254); - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(260); - if (lookahead == 'i') ADVANCE(259); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(143); - if (lookahead == '}') ADVANCE(151); + if (lookahead == '!') ADVANCE(155); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '%') ADVANCE(232); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(148); + if (lookahead == ')') ADVANCE(145); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '+') ADVANCE(194); + if (lookahead == '-') ADVANCE(197); + if (lookahead == '/') ADVANCE(228); + if (lookahead == '0') ADVANCE(255); + if (lookahead == ':') ADVANCE(229); + if (lookahead == ';') ADVANCE(136); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); + if (lookahead == '[') ADVANCE(159); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(161); + if (lookahead == '_') ADVANCE(259); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(265); + if (lookahead == 'i') ADVANCE(264); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(142); + if (lookahead == '}') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (lookahead != 0) ADVANCE(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 31: - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(250); - if (lookahead == ':') ADVANCE(225); - if (lookahead == '<') ADVANCE(59); - if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(60); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '%') ADVANCE(232); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == ':') ADVANCE(229); + if (lookahead == '<') ADVANCE(58); + if (lookahead == '=') ADVANCE(171); + if (lookahead == '>') ADVANCE(59); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(212); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '}') ADVANCE(151); + lookahead == '{') ADVANCE(211); + if (lookahead == '\\') ADVANCE(105); + if (lookahead == '_') ADVANCE(258); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '}') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 32: - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(65); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(250); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(249); - if (lookahead == '@') ADVANCE(247); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(64); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(256); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(254); + if (lookahead == '@') ADVANCE(252); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(102); - if (lookahead == '_') ADVANCE(253); - if (lookahead == '`') ADVANCE(230); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(100); + if (lookahead == '_') ADVANCE(258); + if (lookahead == '`') ADVANCE(234); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '(' && lookahead != ';' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 33: - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(65); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(149); - if (lookahead == ')') ADVANCE(145); - if (lookahead == ';') ADVANCE(62); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '[') ADVANCE(160); - if (lookahead == '\\') ADVANCE(73); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(64); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(148); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '[') ADVANCE(159); + if (lookahead == '\\') ADVANCE(72); if (lookahead == ']' || - lookahead == '}') ADVANCE(212); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(211); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '|') ADVANCE(141); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(33) - if (lookahead != 0) ADVANCE(262); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 34: - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(65); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(149); - if (lookahead == ';') ADVANCE(62); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '[') ADVANCE(160); - if (lookahead == '\\') ADVANCE(99); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(64); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(148); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '[') ADVANCE(159); + if (lookahead == '\\') ADVANCE(97); if (lookahead == ']' || - lookahead == '}') ADVANCE(212); - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(260); - if (lookahead == '{') ADVANCE(150); + lookahead == '}') ADVANCE(211); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(265); + if (lookahead == '{') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(34) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 35: - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(65); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(149); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '[') ADVANCE(160); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(64); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(148); + if (lookahead == '0') ADVANCE(221); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '[') ADVANCE(159); if (lookahead == '\\') ADVANCE(78); - if (lookahead == ']') ADVANCE(212); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '}') ADVANCE(151); + if (lookahead == ']') ADVANCE(211); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '}') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 36: - if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '-') ADVANCE(261); - if (lookahead == '<') ADVANCE(59); - if (lookahead == '>') ADVANCE(60); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(147); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '-') ADVANCE(267); + if (lookahead == '0') ADVANCE(221); + if (lookahead == '<') ADVANCE(58); + if (lookahead == '>') ADVANCE(59); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); + lookahead == '}') ADVANCE(211); if (lookahead == '\\') ADVANCE(79); - if (lookahead == '`') ADVANCE(230); + if (lookahead == '`') ADVANCE(234); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && lookahead != '&' && lookahead != ';' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 37: - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(54); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(244); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(252); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(184); - if (lookahead == '?') ADVANCE(248); - if (lookahead == '@') ADVANCE(246); - if (lookahead == '\\') SKIP(77) - if (lookahead == ']') ADVANCE(66); - if (lookahead == '_') ADVANCE(255); - if (lookahead == '|') ADVANCE(144); - if (lookahead == '}') ADVANCE(151); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(208); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == ')') ADVANCE(145); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(195); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(257); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(253); + if (lookahead == '@') ADVANCE(251); + if (lookahead == '\\') SKIP(75) + if (lookahead == ']') ADVANCE(65); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '|') ADVANCE(143); + if (lookahead == '}') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(37) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); case 38: - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(54); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(244); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(252); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(184); - if (lookahead == '?') ADVANCE(248); - if (lookahead == '@') ADVANCE(246); - if (lookahead == '\\') SKIP(106) - if (lookahead == ']') ADVANCE(161); - if (lookahead == '_') ADVANCE(255); - if (lookahead == '|') ADVANCE(71); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(208); + if (lookahead == '&') ADVANCE(53); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(195); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(257); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(253); + if (lookahead == '@') ADVANCE(251); + if (lookahead == '\\') SKIP(104) + if (lookahead == ']') ADVANCE(160); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '|') ADVANCE(70); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(38) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); case 39: - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '*') ADVANCE(244); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '0') ADVANCE(252); - if (lookahead == '?') ADVANCE(248); - if (lookahead == '@') ADVANCE(246); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == '_') ADVANCE(255); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(208); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '0') ADVANCE(257); + if (lookahead == '?') ADVANCE(253); + if (lookahead == '@') ADVANCE(251); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == '_') ADVANCE(260); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(216); + lookahead == ' ') ADVANCE(215); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); if (lookahead != 0 && - lookahead != '`') ADVANCE(218); + lookahead != '`') ADVANCE(217); END_STATE(); case 40: - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(54); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(244); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(252); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(184); - if (lookahead == '?') ADVANCE(248); - if (lookahead == '@') ADVANCE(246); - if (lookahead == '\\') SKIP(84) - if (lookahead == ']') ADVANCE(66); - if (lookahead == '_') ADVANCE(255); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '|') ADVANCE(144); + if (lookahead == '!') ADVANCE(62); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(208); + if (lookahead == '&') ADVANCE(53); + if (lookahead == ')') ADVANCE(145); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(195); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(257); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(253); + if (lookahead == '@') ADVANCE(251); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') SKIP(85) + if (lookahead == ']') ADVANCE(212); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(40) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); case 41: - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '&') ADVANCE(54); - if (lookahead == ')') ADVANCE(146); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(199); - if (lookahead == ';') ADVANCE(62); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(184); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') SKIP(85) - if (lookahead == ']') ADVANCE(213); - if (lookahead == 'e') ADVANCE(70); - if (lookahead == 'i') ADVANCE(69); - if (lookahead == '|') ADVANCE(144); + if (lookahead == '!') ADVANCE(62); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '&') ADVANCE(53); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '+') ADVANCE(195); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '\\') SKIP(91) + if (lookahead == '|') ADVANCE(70); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(41) END_STATE(); case 42: - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '&') ADVANCE(54); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(184); + if (lookahead == '!') ADVANCE(62); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '&') ADVANCE(53); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '+') ADVANCE(195); + if (lookahead == '-') ADVANCE(198); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(212); - if (lookahead == '\\') SKIP(90) - if (lookahead == '|') ADVANCE(71); - if (lookahead == '}') ADVANCE(151); + lookahead == '{' || + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') SKIP(86) + if (lookahead == ']') ADVANCE(160); + if (lookahead == 'e') ADVANCE(69); + if (lookahead == 'i') ADVANCE(68); + if (lookahead == '|') ADVANCE(70); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(42) END_STATE(); case 43: - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '&') ADVANCE(54); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '+') ADVANCE(196); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '%') ADVANCE(232); + if (lookahead == '\'') ADVANCE(54); if (lookahead == '-') ADVANCE(199); - if (lookahead == '<') ADVANCE(180); + if (lookahead == '/') ADVANCE(228); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ':') ADVANCE(229); + if (lookahead == '<') ADVANCE(58); if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(184); + if (lookahead == '>') ADVANCE(59); if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') SKIP(86) - if (lookahead == ']') ADVANCE(161); - if (lookahead == '|') ADVANCE(71); + lookahead == ']' || + lookahead == '{') ADVANCE(211); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '}') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(43) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(268); END_STATE(); case 44: - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '/') ADVANCE(224); - if (lookahead == ':') ADVANCE(225); - if (lookahead == '<') ADVANCE(59); - if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(60); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '%') ADVANCE(232); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(221); + if (lookahead == ':') ADVANCE(229); + if (lookahead == '<') ADVANCE(58); + if (lookahead == '=') ADVANCE(171); + if (lookahead == '>') ADVANCE(59); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(212); - if (lookahead == '\\') ADVANCE(87); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '}') ADVANCE(151); + lookahead == '{') ADVANCE(211); + if (lookahead == '\\') ADVANCE(89); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '}') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(44) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 45: - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '-') ADVANCE(200); - if (lookahead == ':') ADVANCE(225); - if (lookahead == '<') ADVANCE(59); - if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(60); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(212); - if (lookahead == '\\') ADVANCE(91); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '}') ADVANCE(151); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(64); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(148); + if (lookahead == '0') ADVANCE(221); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '[') ADVANCE(159); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(211); + if (lookahead == '`') ADVANCE(234); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(45) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && + lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 46: - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(65); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(149); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '[') ADVANCE(160); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == ']' || + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(64); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '(') ADVANCE(147); + if (lookahead == ')') ADVANCE(144); + if (lookahead == '0') ADVANCE(221); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '`') ADVANCE(230); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(73); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '|') ADVANCE(141); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(46) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(262); + lookahead != ';') ADVANCE(268); END_STATE(); case 47: - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(65); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(182); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '0') ADVANCE(221); + if (lookahead == '<') ADVANCE(58); + if (lookahead == '>') ADVANCE(59); if (lookahead == '[' || lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(75); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '|') ADVANCE(142); + lookahead == '{') ADVANCE(211); + if (lookahead == '\\') ADVANCE(90); + if (lookahead == '`') ADVANCE(234); + if (lookahead == '}') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(47) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && - lookahead != ';') ADVANCE(262); + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(268); END_STATE(); case 48: - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '<') ADVANCE(59); - if (lookahead == '>') ADVANCE(60); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '0') ADVANCE(221); + if (lookahead == '<') ADVANCE(58); + if (lookahead == '>') ADVANCE(59); if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(212); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '`') ADVANCE(230); - if (lookahead == '}') ADVANCE(151); + lookahead == '{' || + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(95); + if (lookahead == ']') ADVANCE(160); + if (lookahead == '`') ADVANCE(234); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(48) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 49: - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '<') ADVANCE(59); - if (lookahead == '>') ADVANCE(60); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '\'') ADVANCE(54); + if (lookahead == '0') ADVANCE(221); + if (lookahead == '<') ADVANCE(58); + if (lookahead == '>') ADVANCE(59); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(161); - if (lookahead == '`') ADVANCE(230); + lookahead == '}') ADVANCE(211); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == '`') ADVANCE(234); + if (lookahead == 'e') ADVANCE(265); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(49) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(262); + lookahead != '|') ADVANCE(268); END_STATE(); case 50: - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(234); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(214); if (lookahead == '$') ADVANCE(210); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '<') ADVANCE(59); - if (lookahead == '>') ADVANCE(60); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(212); - if (lookahead == '\\') ADVANCE(95); - if (lookahead == '`') ADVANCE(230); - if (lookahead == 'e') ADVANCE(260); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == '`') ADVANCE(234); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(50) - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(262); + lookahead == ' ') ADVANCE(216); + if (lookahead != 0) ADVANCE(217); END_STATE(); case 51: - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(230); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '&') ADVANCE(64); + if (lookahead == '(') ADVANCE(147); + if (lookahead == ';') ADVANCE(135); + if (lookahead == '<') ADVANCE(174); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '\\') ADVANCE(77); + if (lookahead == ']') ADVANCE(160); + if (lookahead == '{') ADVANCE(149); + if (lookahead == '}') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(217); - if (lookahead != 0) ADVANCE(218); + lookahead == ' ') SKIP(51) + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != '[' && + lookahead != '`' && + lookahead != '|') ADVANCE(268); END_STATE(); case 52: - if (lookahead == '#') ADVANCE(234); - if (lookahead == '&') ADVANCE(65); - if (lookahead == '(') ADVANCE(58); - if (lookahead == '+') ADVANCE(64); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '[') ADVANCE(159); + if (lookahead == '#') ADVANCE(238); + if (lookahead == '(') ADVANCE(57); + if (lookahead == '+') ADVANCE(63); + if (lookahead == '=') ADVANCE(168); + if (lookahead == '[') ADVANCE(158); if (lookahead == '\\') SKIP(81) - if (lookahead == ']') ADVANCE(161); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2369,147 +2414,135 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); case 53: - if (lookahead == '#') ADVANCE(234); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == '{') ADVANCE(150); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(53) - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - lookahead != '|' && - lookahead != '}') ADVANCE(262); + if (lookahead == '&') ADVANCE(152); END_STATE(); case 54: - if (lookahead == '&') ADVANCE(153); + if (lookahead == '\'') ADVANCE(218); + if (lookahead != 0) ADVANCE(54); END_STATE(); case 55: if (lookahead == '\'') ADVANCE(219); + if (lookahead == '\\') ADVANCE(56); if (lookahead != 0) ADVANCE(55); END_STATE(); case 56: if (lookahead == '\'') ADVANCE(220); - if (lookahead == '\\') ADVANCE(57); - if (lookahead != 0) ADVANCE(56); + if (lookahead == '\\') ADVANCE(56); + if (lookahead != 0) ADVANCE(55); END_STATE(); case 57: - if (lookahead == '\'') ADVANCE(221); - if (lookahead == '\\') ADVANCE(57); - if (lookahead != 0) ADVANCE(56); + if (lookahead == '(') ADVANCE(133); END_STATE(); case 58: - if (lookahead == '(') ADVANCE(134); + if (lookahead == '(') ADVANCE(235); END_STATE(); case 59: - if (lookahead == '(') ADVANCE(231); + if (lookahead == '(') ADVANCE(236); END_STATE(); case 60: - if (lookahead == '(') ADVANCE(232); + if (lookahead == ')') ADVANCE(134); END_STATE(); case 61: - if (lookahead == ')') ADVANCE(135); + if (lookahead == ';') ADVANCE(146); END_STATE(); case 62: - if (lookahead == ';') ADVANCE(147); + if (lookahead == '=') ADVANCE(192); END_STATE(); case 63: - if (lookahead == '=') ADVANCE(193); + if (lookahead == '=') ADVANCE(172); END_STATE(); case 64: - if (lookahead == '=') ADVANCE(173); + if (lookahead == '>') ADVANCE(185); END_STATE(); case 65: - if (lookahead == '>') ADVANCE(186); + if (lookahead == ']') ADVANCE(163); END_STATE(); case 66: - if (lookahead == ']') ADVANCE(164); + if (lookahead == 'a') ADVANCE(67); END_STATE(); case 67: - if (lookahead == 'a') ADVANCE(68); + if (lookahead == 'c') ADVANCE(137); END_STATE(); case 68: - if (lookahead == 'c') ADVANCE(138); + if (lookahead == 'n') ADVANCE(130); END_STATE(); case 69: - if (lookahead == 'n') ADVANCE(131); + if (lookahead == 's') ADVANCE(66); END_STATE(); case 70: - if (lookahead == 's') ADVANCE(67); + if (lookahead == '|') ADVANCE(153); END_STATE(); case 71: - if (lookahead == '|') ADVANCE(154); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(30) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 72: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(30) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(33) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 73: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(33) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(46) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 74: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (lookahead != 0) ADVANCE(262); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 75: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(47) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(37) END_STATE(); case 76: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(19) - if (lookahead != 0) ADVANCE(262); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 77: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(37) + lookahead == ' ') SKIP(51) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 78: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) - if (lookahead != 0) ADVANCE(262); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 79: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) - if (lookahead != 0) ADVANCE(262); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 80: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(46) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(45) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 81: if (lookahead == '\t' || @@ -2521,267 +2554,262 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(217); - if (lookahead != 0) ADVANCE(218); + lookahead == ' ') ADVANCE(216); + if (lookahead != 0) ADVANCE(217); END_STATE(); case 83: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(20) - if (lookahead != 0) ADVANCE(262); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 84: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(40) + lookahead == ' ') SKIP(43) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 85: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(41) + lookahead == ' ') SKIP(40) END_STATE(); case 86: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(43) + lookahead == ' ') SKIP(42) END_STATE(); case 87: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(44) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') ADVANCE(215); + if (lookahead != 0) ADVANCE(217); END_STATE(); case 88: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(216); - if (lookahead != 0) ADVANCE(218); + lookahead == ' ') SKIP(16) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 89: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(16) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(44) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 90: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(42) + lookahead == ' ') SKIP(47) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 91: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(45) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(41) END_STATE(); case 92: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(48) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(18) END_STATE(); case 93: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(18) + lookahead == ' ') SKIP(21) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 94: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(49) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 95: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(50) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(48) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 96: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(49) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(22) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 97: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(34) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 98: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(53) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(23) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 99: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(34) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(24) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 100: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(23) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(32) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 101: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(24) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(25) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 102: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(32) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(26) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 103: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(25) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(15) END_STATE(); case 104: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(26) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(38) END_STATE(); case 105: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(15) + lookahead == ' ') SKIP(31) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 106: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(38) + lookahead == ' ') SKIP(17) END_STATE(); case 107: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(31) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(27) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 108: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(17) + lookahead == ' ') SKIP(28) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 109: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(27) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(29) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 110: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(28) - if (lookahead != 0) ADVANCE(262); + lookahead == ' ') SKIP(14) END_STATE(); case 111: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(29) - if (lookahead != 0) ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); END_STATE(); case 112: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(14) + if (lookahead != 0) ADVANCE(217); END_STATE(); case 113: - if (lookahead != 0) ADVANCE(218); - END_STATE(); - case 114: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(262); + lookahead != ' ') ADVANCE(268); END_STATE(); - case 115: + case 114: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(115); + if (lookahead == '\\') ADVANCE(74); + END_STATE(); case 116: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(116); - if (lookahead == '\\') ADVANCE(74); END_STATE(); case 117: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(117); + if (lookahead == '-') ADVANCE(267); + if (lookahead == '\\') ADVANCE(88); END_STATE(); case 118: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(118); - if (lookahead == '-') ADVANCE(261); - if (lookahead == '\\') ADVANCE(89); + if (lookahead == '-') ADVANCE(198); END_STATE(); case 119: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(119); - if (lookahead == '-') ADVANCE(199); + if (lookahead == '\\') ADVANCE(76); END_STATE(); case 120: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(120); - if (lookahead == '\\') ADVANCE(76); + if (lookahead == '\\') ADVANCE(83); END_STATE(); case 121: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(121); - if (lookahead == '\\') ADVANCE(83); + if (lookahead == '\\') ADVANCE(93); END_STATE(); case 122: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\\') ADVANCE(94); + if (lookahead == '\\') ADVANCE(96); END_STATE(); case 123: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(123); - if (lookahead == '\\') ADVANCE(97); + if (lookahead == '\\') ADVANCE(98); END_STATE(); case 124: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(124); - if (lookahead == '\\') ADVANCE(100); + if (lookahead == '\\') ADVANCE(99); END_STATE(); case 125: ACCEPT_TOKEN(anon_sym_LF); @@ -2791,34 +2819,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 126: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(126); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '\\') ADVANCE(102); END_STATE(); case 127: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(127); - if (lookahead == '\\') ADVANCE(104); + if (lookahead == '\\') ADVANCE(107); END_STATE(); case 128: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(128); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\\') ADVANCE(108); END_STATE(); case 129: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(129); - if (lookahead == '\\') ADVANCE(110); + if (lookahead == '\\') ADVANCE(109); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(130); - if (lookahead == '\\') ADVANCE(111); - END_STATE(); - case 131: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 132: + case 131: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2831,38 +2854,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 133: + case 132: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); - case 134: + case 133: ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); - case 135: + case 134: ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); - case 136: + case 135: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 137: + case 136: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(147); + if (lookahead == ';') ADVANCE(146); END_STATE(); - case 138: + case 137: ACCEPT_TOKEN(anon_sym_esac); END_STATE(); - case 139: + case 138: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2874,11 +2897,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(262); + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 140: + case 139: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2891,66 +2914,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 141: + case 140: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 142: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(151); + if (lookahead == '|') ADVANCE(153); END_STATE(); case 143: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(152); - if (lookahead == '|') ADVANCE(154); + if (lookahead == '|') ADVANCE(153); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 145: ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == ')') ADVANCE(134); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_RPAREN); - if (lookahead == ')') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 148: ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '(') ADVANCE(133); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(134); - END_STATE(); - case 150: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 151: + case 150: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 152: + case 151: ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); - case 153: + case 152: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 154: + case 153: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 155: + case 154: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 156: + case 155: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(194); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '=') ADVANCE(193); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2961,15 +2984,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 157: + case 156: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(193); + if (lookahead == '=') ADVANCE(192); END_STATE(); - case 158: + case 157: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2982,34 +3005,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(162); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(163); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 161: ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == ']') ADVANCE(163); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_RBRACK); - if (lookahead == ']') ADVANCE(164); - END_STATE(); - case 163: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 164: + case 163: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 165: + case 164: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 166: + case 165: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3022,14 +3045,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 167: + case 166: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 168: + case 167: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3042,16 +3065,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 169: + case 168: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 170: + case 169: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(168); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == '~') ADVANCE(166); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == '~') ADVANCE(165); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3062,16 +3085,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 171: + case 170: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(167); - if (lookahead == '~') ADVANCE(165); + if (lookahead == '=') ADVANCE(166); + if (lookahead == '~') ADVANCE(164); END_STATE(); - case 172: + case 171: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3084,14 +3107,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 173: + case 172: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 174: + case 173: ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3104,94 +3127,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(187); END_STATE(); case 175: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(188); + if (lookahead == '&') ADVANCE(187); + if (lookahead == '(') ADVANCE(235); END_STATE(); case 176: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '(') ADVANCE(231); + if (lookahead == '&') ADVANCE(187); + if (lookahead == '(') ADVANCE(235); + if (lookahead == '<') ADVANCE(189); END_STATE(); case 177: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '(') ADVANCE(231); - if (lookahead == '<') ADVANCE(190); + if (lookahead == '&') ADVANCE(187); + if (lookahead == '(') ADVANCE(235); + if (lookahead == '<') ADVANCE(189); + if (lookahead == '=') ADVANCE(202); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '(') ADVANCE(231); - if (lookahead == '<') ADVANCE(190); - if (lookahead == '=') ADVANCE(203); + if (lookahead == '&') ADVANCE(187); + if (lookahead == '<') ADVANCE(189); END_STATE(); case 179: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '<') ADVANCE(190); + if (lookahead == '=') ADVANCE(202); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '(') ADVANCE(236); if (lookahead == '=') ADVANCE(203); + if (lookahead == '>') ADVANCE(184); END_STATE(); case 181: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '=') ADVANCE(204); - if (lookahead == '>') ADVANCE(185); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '(') ADVANCE(236); + if (lookahead == '>') ADVANCE(184); END_STATE(); case 182: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '>') ADVANCE(185); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '>') ADVANCE(184); END_STATE(); case 183: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '>') ADVANCE(185); + if (lookahead == '=') ADVANCE(203); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(204); - END_STATE(); - case 185: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 186: + case 185: ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(187); + if (lookahead == '>') ADVANCE(186); END_STATE(); - case 187: + case 186: ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); - case 188: + case 187: ACCEPT_TOKEN(anon_sym_LT_AMP); END_STATE(); - case 189: + case 188: ACCEPT_TOKEN(anon_sym_GT_AMP); END_STATE(); - case 190: + case 189: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(191); - if (lookahead == '<') ADVANCE(192); + if (lookahead == '-') ADVANCE(190); + if (lookahead == '<') ADVANCE(191); END_STATE(); - case 191: + case 190: ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); - case 192: + case 191: ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); - case 193: + case 192: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 194: + case 193: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3204,13 +3227,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 195: + case 194: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(206); - if (lookahead == '=') ADVANCE(174); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '+') ADVANCE(205); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3221,23 +3244,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 196: + case 195: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(205); - if (lookahead == '=') ADVANCE(173); + if (lookahead == '+') ADVANCE(204); + if (lookahead == '=') ADVANCE(172); END_STATE(); - case 197: + case 196: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 198: + case 197: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(208); - if (lookahead == '=') ADVANCE(202); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(201); + if (lookahead == '\\') ADVANCE(113); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3247,18 +3270,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(262); + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 199: + case 198: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(201); + if (lookahead == '-') ADVANCE(206); + if (lookahead == '=') ADVANCE(200); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); END_STATE(); - case 200: + case 199: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3271,14 +3294,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 201: + case 200: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 202: + case 201: ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3291,20 +3314,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 203: + case 202: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 204: + case 203: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 205: + case 204: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 206: + case 205: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3317,14 +3340,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 207: + case 206: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 208: + case 207: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3337,111 +3360,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 209: ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(233); + if (lookahead == '{') ADVANCE(227); END_STATE(); case 210: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(56); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '{') ADVANCE(223); + if (lookahead == '(') ADVANCE(233); + if (lookahead == '{') ADVANCE(227); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '{') ADVANCE(223); + ACCEPT_TOKEN(sym__special_character); END_STATE(); case 212: ACCEPT_TOKEN(sym__special_character); + if (lookahead == ']') ADVANCE(163); END_STATE(); case 213: - ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(164); - END_STATE(); - case 214: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 215: + case 214: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(218); - if (lookahead == '\\') ADVANCE(233); + if (lookahead == '\n') ADVANCE(217); + if (lookahead == '\\') ADVANCE(237); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(215); + lookahead != '`') ADVANCE(214); END_STATE(); - case 216: + case 215: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '*') ADVANCE(244); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '0') ADVANCE(252); - if (lookahead == '?') ADVANCE(248); - if (lookahead == '@') ADVANCE(246); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == '_') ADVANCE(255); + if (lookahead == '!') ADVANCE(154); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(208); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '-') ADVANCE(196); + if (lookahead == '0') ADVANCE(257); + if (lookahead == '?') ADVANCE(253); + if (lookahead == '@') ADVANCE(251); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == '_') ADVANCE(260); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(216); + lookahead == ' ') ADVANCE(215); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); if (lookahead != 0 && - lookahead != '`') ADVANCE(218); + lookahead != '`') ADVANCE(217); END_STATE(); - case 217: + case 216: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '"') ADVANCE(214); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(213); + if (lookahead == '#') ADVANCE(214); + if (lookahead == '$') ADVANCE(210); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(230); + if (lookahead == '`') ADVANCE(234); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(217); - if (lookahead != 0) ADVANCE(218); + lookahead == ' ') ADVANCE(216); + if (lookahead != 0) ADVANCE(217); END_STATE(); - case 218: + case 217: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(112); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(218); + lookahead != '`') ADVANCE(217); END_STATE(); - case 219: + case 218: ACCEPT_TOKEN(sym_raw_string); END_STATE(); - case 220: + case 219: ACCEPT_TOKEN(sym_ansii_c_string); END_STATE(); - case 221: + case 220: ACCEPT_TOKEN(sym_ansii_c_string); - if (lookahead == '\'') ADVANCE(220); - if (lookahead == '\\') ADVANCE(57); - if (lookahead != 0) ADVANCE(56); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '\'') ADVANCE(219); + if (lookahead == '\\') ADVANCE(56); + if (lookahead != 0) ADVANCE(55); END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(227); - if (lookahead == '?') ADVANCE(226); - if (lookahead == '\\') ADVANCE(114); + case 221: + ACCEPT_TOKEN(sym_number); + if (lookahead == '#') ADVANCE(111); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 'x') ADVANCE(266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3454,13 +3469,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(114); - if (lookahead != 0 && - lookahead != '\t' && + case 222: + ACCEPT_TOKEN(sym_number); + if (lookahead == '#') ADVANCE(111); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 'x') ADVANCE(242); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + END_STATE(); + case 223: + ACCEPT_TOKEN(sym_number); + if (lookahead == '#') ADVANCE(111); + if (lookahead == '\\') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead != 0 && + lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && @@ -3471,11 +3510,81 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + END_STATE(); + case 224: + ACCEPT_TOKEN(sym_number); + if (lookahead == '#') ADVANCE(111); + if (lookahead == '\\') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + END_STATE(); + case 225: + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 227: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '?') ADVANCE(230); + if (lookahead == '\\') ADVANCE(113); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead == '\\') ADVANCE(113); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + END_STATE(); + case 231: ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3488,11 +3597,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 228: + case 232: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3505,38 +3614,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 229: + case 233: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 230: + case 234: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 231: + case 235: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 232: + case 236: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 233: + case 237: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(218); - if (lookahead != 0) ADVANCE(215); + if (lookahead == '\n') ADVANCE(217); + if (lookahead != 0) ADVANCE(214); END_STATE(); - case 234: + case 238: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(234); + lookahead != '\n') ADVANCE(238); END_STATE(); - case 235: + case 239: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 'a') ADVANCE(236); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 'a') ADVANCE(240); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(238); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3548,16 +3657,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(262); + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 236: + case 240: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 'c') ADVANCE(139); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 'c') ADVANCE(138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3569,16 +3678,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(262); + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 237: + case 241: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 's') ADVANCE(235); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 's') ADVANCE(239); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3590,15 +3699,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(262); + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 238: + case 242: + ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); + if (lookahead == '\\') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + END_STATE(); + case 243: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3610,53 +3739,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(262); + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 239: + case 244: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(240); + if (lookahead == 'a') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); - case 240: + case 245: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(141); + if (lookahead == 'c') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); - case 241: + case 246: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(133); + if (lookahead == 'n') ADVANCE(132); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); - case 242: + case 247: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(239); + if (lookahead == 's') ADVANCE(244); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); - case 243: + case 248: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); - case 244: + case 249: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 245: + case 250: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3669,14 +3798,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 246: + case 251: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 247: + case 252: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3689,14 +3818,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 248: + case 253: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 249: + case 254: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3709,15 +3838,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 250: + case 255: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '\\') ADVANCE(114); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (lookahead == '#') ADVANCE(111); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 'x') ADVANCE(266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3729,11 +3857,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(262); + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 251: + case 256: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '#') ADVANCE(111); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 'x') ADVANCE(242); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3745,23 +3880,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 252: + case 257: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); - case 253: + case 258: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3773,11 +3907,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(262); + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 254: + case 259: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3790,20 +3924,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 255: + case 260: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); - case 256: + case 261: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(168); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == '~') ADVANCE(166); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == '~') ADVANCE(165); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3814,12 +3948,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 257: + case 262: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 'a') ADVANCE(258); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 'a') ADVANCE(263); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3832,12 +3966,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 258: + case 263: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 'c') ADVANCE(140); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 'c') ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3850,12 +3984,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 259: + case 264: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 'n') ADVANCE(132); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 'n') ADVANCE(131); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3868,12 +4002,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 260: + case 265: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(114); - if (lookahead == 's') ADVANCE(257); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == 's') ADVANCE(262); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3886,13 +4020,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 261: + case 266: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + END_STATE(); + case 267: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3904,11 +4056,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(262); + (lookahead < '`' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 262: + case 268: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3921,24 +4073,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(262); + (lookahead < '{' || '}' < lookahead)) ADVANCE(268); END_STATE(); - case 263: + case 269: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); END_STATE(); - case 264: + case 270: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 265: + case 271: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(153); + if (lookahead == '&') ADVANCE(152); END_STATE(); - case 266: + case 272: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(153); - if (lookahead == '>') ADVANCE(186); + if (lookahead == '&') ADVANCE(152); + if (lookahead == '>') ADVANCE(185); END_STATE(); default: return false; @@ -4209,994 +4361,994 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 9, .external_lex_state = 2}, - [2] = {.lex_state = 1, .external_lex_state = 3}, - [3] = {.lex_state = 9, .external_lex_state = 2}, - [4] = {.lex_state = 47}, - [5] = {.lex_state = 5, .external_lex_state = 4}, - [6] = {.lex_state = 5, .external_lex_state = 5}, - [7] = {.lex_state = 37}, + [2] = {.lex_state = 9, .external_lex_state = 2}, + [3] = {.lex_state = 46}, + [4] = {.lex_state = 1, .external_lex_state = 3}, + [5] = {.lex_state = 1, .external_lex_state = 4}, + [6] = {.lex_state = 37}, + [7] = {.lex_state = 9, .external_lex_state = 2}, [8] = {.lex_state = 9, .external_lex_state = 2}, - [9] = {.lex_state = 47}, - [10] = {.lex_state = 35, .external_lex_state = 6}, - [11] = {.lex_state = 1, .external_lex_state = 3}, - [12] = {.lex_state = 9, .external_lex_state = 2}, - [13] = {.lex_state = 47}, - [14] = {.lex_state = 36}, - [15] = {.lex_state = 1, .external_lex_state = 3}, - [16] = {.lex_state = 37, .external_lex_state = 7}, - [17] = {.lex_state = 46, .external_lex_state = 2}, - [18] = {.lex_state = 52}, + [9] = {.lex_state = 5, .external_lex_state = 5}, + [10] = {.lex_state = 37, .external_lex_state = 6}, + [11] = {.lex_state = 51}, + [12] = {.lex_state = 5, .external_lex_state = 5}, + [13] = {.lex_state = 35, .external_lex_state = 7}, + [14] = {.lex_state = 5, .external_lex_state = 5}, + [15] = {.lex_state = 9, .external_lex_state = 2}, + [16] = {.lex_state = 46}, + [17] = {.lex_state = 36}, + [18] = {.lex_state = 45, .external_lex_state = 2}, [19] = {.lex_state = 52}, - [20] = {.lex_state = 9, .external_lex_state = 2}, - [21] = {.lex_state = 51}, + [20] = {.lex_state = 51}, + [21] = {.lex_state = 50}, [22] = {.lex_state = 9, .external_lex_state = 2}, [23] = {.lex_state = 52}, [24] = {.lex_state = 9, .external_lex_state = 2}, [25] = {.lex_state = 36}, [26] = {.lex_state = 36}, - [27] = {.lex_state = 1, .external_lex_state = 5}, - [28] = {.lex_state = 3, .external_lex_state = 5}, - [29] = {.lex_state = 6, .external_lex_state = 4}, + [27] = {.lex_state = 5, .external_lex_state = 4}, + [28] = {.lex_state = 3, .external_lex_state = 4}, + [29] = {.lex_state = 6, .external_lex_state = 3}, [30] = {.lex_state = 52}, - [31] = {.lex_state = 1, .external_lex_state = 5}, + [31] = {.lex_state = 5, .external_lex_state = 4}, [32] = {.lex_state = 9, .external_lex_state = 2}, [33] = {.lex_state = 9}, - [34] = {.lex_state = 47, .external_lex_state = 2}, + [34] = {.lex_state = 46, .external_lex_state = 2}, [35] = {.lex_state = 9}, - [36] = {.lex_state = 1, .external_lex_state = 5}, + [36] = {.lex_state = 5, .external_lex_state = 4}, [37] = {.lex_state = 9}, - [38] = {.lex_state = 47}, - [39] = {.lex_state = 1, .external_lex_state = 3}, - [40] = {.lex_state = 9}, - [41] = {.lex_state = 47, .external_lex_state = 8}, - [42] = {.lex_state = 47, .external_lex_state = 2}, - [43] = {.lex_state = 47, .external_lex_state = 2}, - [44] = {.lex_state = 5, .external_lex_state = 9}, - [45] = {.lex_state = 5, .external_lex_state = 4}, - [46] = {.lex_state = 5, .external_lex_state = 4}, - [47] = {.lex_state = 5, .external_lex_state = 3}, + [38] = {.lex_state = 46, .external_lex_state = 8}, + [39] = {.lex_state = 46, .external_lex_state = 2}, + [40] = {.lex_state = 46, .external_lex_state = 2}, + [41] = {.lex_state = 1, .external_lex_state = 9}, + [42] = {.lex_state = 1, .external_lex_state = 3}, + [43] = {.lex_state = 1, .external_lex_state = 3}, + [44] = {.lex_state = 1, .external_lex_state = 5}, + [45] = {.lex_state = 1, .external_lex_state = 4}, + [46] = {.lex_state = 1, .external_lex_state = 4}, + [47] = {.lex_state = 5, .external_lex_state = 5}, [48] = {.lex_state = 5, .external_lex_state = 5}, [49] = {.lex_state = 5, .external_lex_state = 5}, - [50] = {.lex_state = 1, .external_lex_state = 3}, - [51] = {.lex_state = 1, .external_lex_state = 3}, - [52] = {.lex_state = 1, .external_lex_state = 3}, - [53] = {.lex_state = 9}, - [54] = {.lex_state = 40}, - [55] = {.lex_state = 3, .external_lex_state = 5}, - [56] = {.lex_state = 3, .external_lex_state = 5}, - [57] = {.lex_state = 6, .external_lex_state = 4}, - [58] = {.lex_state = 35, .external_lex_state = 6}, - [59] = {.lex_state = 47}, - [60] = {.lex_state = 3, .external_lex_state = 5}, - [61] = {.lex_state = 6, .external_lex_state = 4}, - [62] = {.lex_state = 4, .external_lex_state = 10}, - [63] = {.lex_state = 4, .external_lex_state = 11}, - [64] = {.lex_state = 4, .external_lex_state = 11}, - [65] = {.lex_state = 40, .external_lex_state = 12}, - [66] = {.lex_state = 36}, - [67] = {.lex_state = 36}, - [68] = {.lex_state = 41}, - [69] = {.lex_state = 43}, - [70] = {.lex_state = 44, .external_lex_state = 13}, - [71] = {.lex_state = 40, .external_lex_state = 7}, - [72] = {.lex_state = 52}, - [73] = {.lex_state = 44, .external_lex_state = 13}, - [74] = {.lex_state = 3, .external_lex_state = 5}, - [75] = {.lex_state = 47, .external_lex_state = 14}, - [76] = {.lex_state = 47}, - [77] = {.lex_state = 47}, - [78] = {.lex_state = 47, .external_lex_state = 2}, - [79] = {.lex_state = 9}, - [80] = {.lex_state = 39}, - [81] = {.lex_state = 1, .external_lex_state = 3}, - [82] = {.lex_state = 51, .external_lex_state = 12}, - [83] = {.lex_state = 51}, + [50] = {.lex_state = 9}, + [51] = {.lex_state = 9}, + [52] = {.lex_state = 46}, + [53] = {.lex_state = 5, .external_lex_state = 5}, + [54] = {.lex_state = 43, .external_lex_state = 10}, + [55] = {.lex_state = 40, .external_lex_state = 6}, + [56] = {.lex_state = 52}, + [57] = {.lex_state = 43, .external_lex_state = 10}, + [58] = {.lex_state = 51}, + [59] = {.lex_state = 9}, + [60] = {.lex_state = 3, .external_lex_state = 4}, + [61] = {.lex_state = 3, .external_lex_state = 4}, + [62] = {.lex_state = 6, .external_lex_state = 3}, + [63] = {.lex_state = 35, .external_lex_state = 7}, + [64] = {.lex_state = 51}, + [65] = {.lex_state = 3, .external_lex_state = 4}, + [66] = {.lex_state = 6, .external_lex_state = 3}, + [67] = {.lex_state = 4, .external_lex_state = 11}, + [68] = {.lex_state = 4, .external_lex_state = 12}, + [69] = {.lex_state = 4, .external_lex_state = 12}, + [70] = {.lex_state = 36}, + [71] = {.lex_state = 40, .external_lex_state = 13}, + [72] = {.lex_state = 36}, + [73] = {.lex_state = 40}, + [74] = {.lex_state = 42}, + [75] = {.lex_state = 3, .external_lex_state = 4}, + [76] = {.lex_state = 46, .external_lex_state = 14}, + [77] = {.lex_state = 46}, + [78] = {.lex_state = 46}, + [79] = {.lex_state = 39}, + [80] = {.lex_state = 5, .external_lex_state = 5}, + [81] = {.lex_state = 50, .external_lex_state = 13}, + [82] = {.lex_state = 50}, + [83] = {.lex_state = 46, .external_lex_state = 2}, [84] = {.lex_state = 9}, - [85] = {.lex_state = 4, .external_lex_state = 11}, - [86] = {.lex_state = 16, .external_lex_state = 11}, - [87] = {.lex_state = 47}, - [88] = {.lex_state = 43, .external_lex_state = 15}, + [85] = {.lex_state = 16, .external_lex_state = 12}, + [86] = {.lex_state = 4, .external_lex_state = 12}, + [87] = {.lex_state = 51}, + [88] = {.lex_state = 42, .external_lex_state = 15}, [89] = {.lex_state = 40}, - [90] = {.lex_state = 1, .external_lex_state = 5}, - [91] = {.lex_state = 1, .external_lex_state = 5}, + [90] = {.lex_state = 5, .external_lex_state = 4}, + [91] = {.lex_state = 5, .external_lex_state = 4}, [92] = {.lex_state = 9, .external_lex_state = 2}, - [93] = {.lex_state = 9, .external_lex_state = 16}, - [94] = {.lex_state = 9, .external_lex_state = 2}, + [93] = {.lex_state = 9, .external_lex_state = 2}, + [94] = {.lex_state = 9, .external_lex_state = 16}, [95] = {.lex_state = 9, .external_lex_state = 17}, [96] = {.lex_state = 9, .external_lex_state = 2}, - [97] = {.lex_state = 47}, - [98] = {.lex_state = 3, .external_lex_state = 5}, - [99] = {.lex_state = 3, .external_lex_state = 5}, - [100] = {.lex_state = 6, .external_lex_state = 4}, + [97] = {.lex_state = 46}, + [98] = {.lex_state = 3, .external_lex_state = 4}, + [99] = {.lex_state = 3, .external_lex_state = 4}, + [100] = {.lex_state = 6, .external_lex_state = 3}, [101] = {.lex_state = 9, .external_lex_state = 2}, - [102] = {.lex_state = 1, .external_lex_state = 5}, - [103] = {.lex_state = 47, .external_lex_state = 2}, - [104] = {.lex_state = 1, .external_lex_state = 3}, - [105] = {.lex_state = 47, .external_lex_state = 18}, - [106] = {.lex_state = 1, .external_lex_state = 5}, - [107] = {.lex_state = 1, .external_lex_state = 5}, - [108] = {.lex_state = 9}, + [102] = {.lex_state = 5, .external_lex_state = 4}, + [103] = {.lex_state = 46, .external_lex_state = 2}, + [104] = {.lex_state = 46, .external_lex_state = 18}, + [105] = {.lex_state = 5, .external_lex_state = 5}, + [106] = {.lex_state = 5, .external_lex_state = 4}, + [107] = {.lex_state = 5, .external_lex_state = 4}, + [108] = {.lex_state = 3, .external_lex_state = 4}, [109] = {.lex_state = 1, .external_lex_state = 3}, - [110] = {.lex_state = 47}, - [111] = {.lex_state = 1, .external_lex_state = 3}, - [112] = {.lex_state = 3, .external_lex_state = 5}, - [113] = {.lex_state = 5, .external_lex_state = 4}, - [114] = {.lex_state = 5, .external_lex_state = 5}, - [115] = {.lex_state = 1, .external_lex_state = 3}, - [116] = {.lex_state = 9}, - [117] = {.lex_state = 3, .external_lex_state = 5}, - [118] = {.lex_state = 35, .external_lex_state = 6}, - [119] = {.lex_state = 35, .external_lex_state = 19}, - [120] = {.lex_state = 3, .external_lex_state = 5}, - [121] = {.lex_state = 9, .external_lex_state = 2}, - [122] = {.lex_state = 47}, - [123] = {.lex_state = 41}, - [124] = {.lex_state = 4, .external_lex_state = 11}, - [125] = {.lex_state = 41}, - [126] = {.lex_state = 4, .external_lex_state = 11}, - [127] = {.lex_state = 42}, - [128] = {.lex_state = 40}, - [129] = {.lex_state = 36}, - [130] = {.lex_state = 40}, - [131] = {.lex_state = 36, .external_lex_state = 18}, - [132] = {.lex_state = 3, .external_lex_state = 5}, - [133] = {.lex_state = 45, .external_lex_state = 20}, - [134] = {.lex_state = 1, .external_lex_state = 3}, - [135] = {.lex_state = 45, .external_lex_state = 21}, - [136] = {.lex_state = 45, .external_lex_state = 13}, - [137] = {.lex_state = 45, .external_lex_state = 13}, - [138] = {.lex_state = 44, .external_lex_state = 13}, - [139] = {.lex_state = 52}, - [140] = {.lex_state = 44, .external_lex_state = 13}, - [141] = {.lex_state = 48, .external_lex_state = 13}, - [142] = {.lex_state = 1, .external_lex_state = 3}, - [143] = {.lex_state = 45, .external_lex_state = 21}, - [144] = {.lex_state = 45, .external_lex_state = 13}, - [145] = {.lex_state = 6, .external_lex_state = 9}, - [146] = {.lex_state = 47}, - [147] = {.lex_state = 6, .external_lex_state = 4}, - [148] = {.lex_state = 6, .external_lex_state = 4}, - [149] = {.lex_state = 52, .external_lex_state = 22}, - [150] = {.lex_state = 43, .external_lex_state = 22}, - [151] = {.lex_state = 52, .external_lex_state = 22}, - [152] = {.lex_state = 47, .external_lex_state = 8}, - [153] = {.lex_state = 47, .external_lex_state = 2}, - [154] = {.lex_state = 47, .external_lex_state = 2}, - [155] = {.lex_state = 1, .external_lex_state = 3}, - [156] = {.lex_state = 1, .external_lex_state = 3}, - [157] = {.lex_state = 51, .external_lex_state = 12}, - [158] = {.lex_state = 51}, + [110] = {.lex_state = 1, .external_lex_state = 4}, + [111] = {.lex_state = 5, .external_lex_state = 5}, + [112] = {.lex_state = 5, .external_lex_state = 5}, + [113] = {.lex_state = 5, .external_lex_state = 5}, + [114] = {.lex_state = 46}, + [115] = {.lex_state = 5, .external_lex_state = 5}, + [116] = {.lex_state = 44, .external_lex_state = 19}, + [117] = {.lex_state = 44, .external_lex_state = 20}, + [118] = {.lex_state = 5, .external_lex_state = 5}, + [119] = {.lex_state = 44, .external_lex_state = 10}, + [120] = {.lex_state = 44, .external_lex_state = 10}, + [121] = {.lex_state = 43, .external_lex_state = 10}, + [122] = {.lex_state = 52}, + [123] = {.lex_state = 43, .external_lex_state = 10}, + [124] = {.lex_state = 47, .external_lex_state = 10}, + [125] = {.lex_state = 44, .external_lex_state = 20}, + [126] = {.lex_state = 5, .external_lex_state = 5}, + [127] = {.lex_state = 44, .external_lex_state = 10}, + [128] = {.lex_state = 9}, + [129] = {.lex_state = 3, .external_lex_state = 4}, + [130] = {.lex_state = 9}, + [131] = {.lex_state = 35, .external_lex_state = 7}, + [132] = {.lex_state = 35, .external_lex_state = 21}, + [133] = {.lex_state = 3, .external_lex_state = 4}, + [134] = {.lex_state = 9, .external_lex_state = 2}, + [135] = {.lex_state = 51}, + [136] = {.lex_state = 42}, + [137] = {.lex_state = 4, .external_lex_state = 12}, + [138] = {.lex_state = 42}, + [139] = {.lex_state = 4, .external_lex_state = 12}, + [140] = {.lex_state = 41}, + [141] = {.lex_state = 40}, + [142] = {.lex_state = 36}, + [143] = {.lex_state = 40}, + [144] = {.lex_state = 36, .external_lex_state = 18}, + [145] = {.lex_state = 3, .external_lex_state = 4}, + [146] = {.lex_state = 46}, + [147] = {.lex_state = 6, .external_lex_state = 3}, + [148] = {.lex_state = 6, .external_lex_state = 9}, + [149] = {.lex_state = 6, .external_lex_state = 3}, + [150] = {.lex_state = 51, .external_lex_state = 22}, + [151] = {.lex_state = 42, .external_lex_state = 22}, + [152] = {.lex_state = 51, .external_lex_state = 22}, + [153] = {.lex_state = 46, .external_lex_state = 8}, + [154] = {.lex_state = 46, .external_lex_state = 2}, + [155] = {.lex_state = 46, .external_lex_state = 2}, + [156] = {.lex_state = 5, .external_lex_state = 5}, + [157] = {.lex_state = 50, .external_lex_state = 13}, + [158] = {.lex_state = 50}, [159] = {.lex_state = 39}, - [160] = {.lex_state = 51}, - [161] = {.lex_state = 1, .external_lex_state = 3}, - [162] = {.lex_state = 47}, - [163] = {.lex_state = 47}, - [164] = {.lex_state = 16, .external_lex_state = 11}, - [165] = {.lex_state = 18, .external_lex_state = 11}, + [160] = {.lex_state = 50}, + [161] = {.lex_state = 5, .external_lex_state = 5}, + [162] = {.lex_state = 16, .external_lex_state = 12}, + [163] = {.lex_state = 18, .external_lex_state = 12}, + [164] = {.lex_state = 46}, + [165] = {.lex_state = 51}, [166] = {.lex_state = 9, .external_lex_state = 2}, - [167] = {.lex_state = 3, .external_lex_state = 5}, - [168] = {.lex_state = 3, .external_lex_state = 5}, - [169] = {.lex_state = 6, .external_lex_state = 4}, - [170] = {.lex_state = 4, .external_lex_state = 11}, + [167] = {.lex_state = 3, .external_lex_state = 4}, + [168] = {.lex_state = 3, .external_lex_state = 4}, + [169] = {.lex_state = 6, .external_lex_state = 3}, + [170] = {.lex_state = 4, .external_lex_state = 12}, [171] = {.lex_state = 9, .external_lex_state = 23}, - [172] = {.lex_state = 4, .external_lex_state = 11}, - [173] = {.lex_state = 3, .external_lex_state = 5}, - [174] = {.lex_state = 3, .external_lex_state = 5}, - [175] = {.lex_state = 6, .external_lex_state = 4}, - [176] = {.lex_state = 3, .external_lex_state = 3}, - [177] = {.lex_state = 3, .external_lex_state = 5}, - [178] = {.lex_state = 3, .external_lex_state = 5}, - [179] = {.lex_state = 3, .external_lex_state = 5}, + [172] = {.lex_state = 4, .external_lex_state = 12}, + [173] = {.lex_state = 3, .external_lex_state = 4}, + [174] = {.lex_state = 3, .external_lex_state = 4}, + [175] = {.lex_state = 6, .external_lex_state = 3}, + [176] = {.lex_state = 3, .external_lex_state = 5}, + [177] = {.lex_state = 3, .external_lex_state = 4}, + [178] = {.lex_state = 3, .external_lex_state = 4}, + [179] = {.lex_state = 3, .external_lex_state = 4}, [180] = {.lex_state = 9, .external_lex_state = 2}, [181] = {.lex_state = 9, .external_lex_state = 16}, - [182] = {.lex_state = 1, .external_lex_state = 5}, - [183] = {.lex_state = 1, .external_lex_state = 3}, - [184] = {.lex_state = 1, .external_lex_state = 5}, - [185] = {.lex_state = 1, .external_lex_state = 5}, - [186] = {.lex_state = 1, .external_lex_state = 5}, - [187] = {.lex_state = 3, .external_lex_state = 5}, - [188] = {.lex_state = 7, .external_lex_state = 5}, - [189] = {.lex_state = 9}, - [190] = {.lex_state = 4, .external_lex_state = 11}, - [191] = {.lex_state = 3, .external_lex_state = 5}, - [192] = {.lex_state = 9, .external_lex_state = 2}, - [193] = {.lex_state = 9, .external_lex_state = 2}, - [194] = {.lex_state = 3, .external_lex_state = 5}, - [195] = {.lex_state = 6, .external_lex_state = 4}, - [196] = {.lex_state = 47}, - [197] = {.lex_state = 47}, - [198] = {.lex_state = 9, .external_lex_state = 2}, - [199] = {.lex_state = 4, .external_lex_state = 11}, - [200] = {.lex_state = 50}, - [201] = {.lex_state = 4, .external_lex_state = 11}, - [202] = {.lex_state = 50}, - [203] = {.lex_state = 40}, - [204] = {.lex_state = 40}, - [205] = {.lex_state = 40}, - [206] = {.lex_state = 1, .external_lex_state = 3}, - [207] = {.lex_state = 45, .external_lex_state = 13}, - [208] = {.lex_state = 45, .external_lex_state = 13}, - [209] = {.lex_state = 45, .external_lex_state = 13}, - [210] = {.lex_state = 45, .external_lex_state = 21}, - [211] = {.lex_state = 48, .external_lex_state = 13}, - [212] = {.lex_state = 1, .external_lex_state = 3}, - [213] = {.lex_state = 45, .external_lex_state = 21}, - [214] = {.lex_state = 45, .external_lex_state = 13}, - [215] = {.lex_state = 35, .external_lex_state = 20}, - [216] = {.lex_state = 42, .external_lex_state = 13}, - [217] = {.lex_state = 35, .external_lex_state = 13}, - [218] = {.lex_state = 1, .external_lex_state = 3}, - [219] = {.lex_state = 45, .external_lex_state = 13}, - [220] = {.lex_state = 45, .external_lex_state = 13}, - [221] = {.lex_state = 47, .external_lex_state = 12}, - [222] = {.lex_state = 6, .external_lex_state = 4}, - [223] = {.lex_state = 47}, - [224] = {.lex_state = 47}, - [225] = {.lex_state = 52, .external_lex_state = 12}, - [226] = {.lex_state = 49, .external_lex_state = 15}, - [227] = {.lex_state = 52, .external_lex_state = 12}, - [228] = {.lex_state = 52, .external_lex_state = 15}, - [229] = {.lex_state = 52, .external_lex_state = 15}, - [230] = {.lex_state = 51}, - [231] = {.lex_state = 1, .external_lex_state = 3}, + [182] = {.lex_state = 5, .external_lex_state = 4}, + [183] = {.lex_state = 5, .external_lex_state = 4}, + [184] = {.lex_state = 5, .external_lex_state = 5}, + [185] = {.lex_state = 5, .external_lex_state = 4}, + [186] = {.lex_state = 5, .external_lex_state = 4}, + [187] = {.lex_state = 7, .external_lex_state = 4}, + [188] = {.lex_state = 5, .external_lex_state = 5}, + [189] = {.lex_state = 44, .external_lex_state = 10}, + [190] = {.lex_state = 44, .external_lex_state = 10}, + [191] = {.lex_state = 44, .external_lex_state = 10}, + [192] = {.lex_state = 44, .external_lex_state = 20}, + [193] = {.lex_state = 47, .external_lex_state = 10}, + [194] = {.lex_state = 44, .external_lex_state = 20}, + [195] = {.lex_state = 5, .external_lex_state = 5}, + [196] = {.lex_state = 44, .external_lex_state = 10}, + [197] = {.lex_state = 51, .external_lex_state = 19}, + [198] = {.lex_state = 47, .external_lex_state = 10}, + [199] = {.lex_state = 51, .external_lex_state = 10}, + [200] = {.lex_state = 5, .external_lex_state = 5}, + [201] = {.lex_state = 44, .external_lex_state = 10}, + [202] = {.lex_state = 44, .external_lex_state = 10}, + [203] = {.lex_state = 9}, + [204] = {.lex_state = 3, .external_lex_state = 4}, + [205] = {.lex_state = 4, .external_lex_state = 12}, + [206] = {.lex_state = 3, .external_lex_state = 4}, + [207] = {.lex_state = 9, .external_lex_state = 2}, + [208] = {.lex_state = 9, .external_lex_state = 2}, + [209] = {.lex_state = 3, .external_lex_state = 4}, + [210] = {.lex_state = 6, .external_lex_state = 3}, + [211] = {.lex_state = 51}, + [212] = {.lex_state = 51}, + [213] = {.lex_state = 9, .external_lex_state = 2}, + [214] = {.lex_state = 4, .external_lex_state = 12}, + [215] = {.lex_state = 49}, + [216] = {.lex_state = 4, .external_lex_state = 12}, + [217] = {.lex_state = 49}, + [218] = {.lex_state = 40}, + [219] = {.lex_state = 40}, + [220] = {.lex_state = 40}, + [221] = {.lex_state = 46, .external_lex_state = 13}, + [222] = {.lex_state = 6, .external_lex_state = 3}, + [223] = {.lex_state = 46}, + [224] = {.lex_state = 46}, + [225] = {.lex_state = 52, .external_lex_state = 13}, + [226] = {.lex_state = 48, .external_lex_state = 15}, + [227] = {.lex_state = 52, .external_lex_state = 13}, + [228] = {.lex_state = 51, .external_lex_state = 15}, + [229] = {.lex_state = 51, .external_lex_state = 15}, + [230] = {.lex_state = 50}, + [231] = {.lex_state = 5, .external_lex_state = 5}, [232] = {.lex_state = 39}, - [233] = {.lex_state = 3, .external_lex_state = 5}, - [234] = {.lex_state = 22, .external_lex_state = 11}, - [235] = {.lex_state = 36}, - [236] = {.lex_state = 18, .external_lex_state = 11}, - [237] = {.lex_state = 16, .external_lex_state = 11}, - [238] = {.lex_state = 3, .external_lex_state = 5}, + [233] = {.lex_state = 36}, + [234] = {.lex_state = 18, .external_lex_state = 12}, + [235] = {.lex_state = 16, .external_lex_state = 12}, + [236] = {.lex_state = 22, .external_lex_state = 12}, + [237] = {.lex_state = 3, .external_lex_state = 4}, + [238] = {.lex_state = 3, .external_lex_state = 4}, [239] = {.lex_state = 9, .external_lex_state = 2}, [240] = {.lex_state = 37}, - [241] = {.lex_state = 4, .external_lex_state = 11}, + [241] = {.lex_state = 4, .external_lex_state = 12}, [242] = {.lex_state = 9, .external_lex_state = 23}, [243] = {.lex_state = 9, .external_lex_state = 2}, - [244] = {.lex_state = 4, .external_lex_state = 11}, - [245] = {.lex_state = 3, .external_lex_state = 5}, - [246] = {.lex_state = 35, .external_lex_state = 6}, - [247] = {.lex_state = 9, .external_lex_state = 2}, - [248] = {.lex_state = 47}, - [249] = {.lex_state = 9, .external_lex_state = 16}, - [250] = {.lex_state = 9, .external_lex_state = 2}, - [251] = {.lex_state = 3, .external_lex_state = 5}, - [252] = {.lex_state = 47}, - [253] = {.lex_state = 47}, - [254] = {.lex_state = 47}, - [255] = {.lex_state = 9, .external_lex_state = 2}, - [256] = {.lex_state = 50}, - [257] = {.lex_state = 9, .external_lex_state = 12}, - [258] = {.lex_state = 3, .external_lex_state = 5}, - [259] = {.lex_state = 47}, - [260] = {.lex_state = 41}, - [261] = {.lex_state = 47}, - [262] = {.lex_state = 9}, - [263] = {.lex_state = 50}, - [264] = {.lex_state = 3, .external_lex_state = 5}, - [265] = {.lex_state = 41}, - [266] = {.lex_state = 47}, - [267] = {.lex_state = 1, .external_lex_state = 3}, - [268] = {.lex_state = 45, .external_lex_state = 13}, - [269] = {.lex_state = 45, .external_lex_state = 13}, - [270] = {.lex_state = 35, .external_lex_state = 20}, - [271] = {.lex_state = 42, .external_lex_state = 13}, - [272] = {.lex_state = 35, .external_lex_state = 13}, - [273] = {.lex_state = 1, .external_lex_state = 3}, - [274] = {.lex_state = 45, .external_lex_state = 13}, - [275] = {.lex_state = 45, .external_lex_state = 13}, - [276] = {.lex_state = 1, .external_lex_state = 3}, - [277] = {.lex_state = 1, .external_lex_state = 3}, - [278] = {.lex_state = 45, .external_lex_state = 13}, - [279] = {.lex_state = 6, .external_lex_state = 4}, - [280] = {.lex_state = 47}, + [244] = {.lex_state = 4, .external_lex_state = 12}, + [245] = {.lex_state = 5, .external_lex_state = 5}, + [246] = {.lex_state = 44, .external_lex_state = 10}, + [247] = {.lex_state = 44, .external_lex_state = 10}, + [248] = {.lex_state = 51, .external_lex_state = 19}, + [249] = {.lex_state = 47, .external_lex_state = 10}, + [250] = {.lex_state = 51, .external_lex_state = 10}, + [251] = {.lex_state = 5, .external_lex_state = 5}, + [252] = {.lex_state = 44, .external_lex_state = 10}, + [253] = {.lex_state = 44, .external_lex_state = 10}, + [254] = {.lex_state = 5, .external_lex_state = 5}, + [255] = {.lex_state = 5, .external_lex_state = 5}, + [256] = {.lex_state = 44, .external_lex_state = 10}, + [257] = {.lex_state = 3, .external_lex_state = 4}, + [258] = {.lex_state = 35, .external_lex_state = 7}, + [259] = {.lex_state = 9, .external_lex_state = 2}, + [260] = {.lex_state = 51}, + [261] = {.lex_state = 9, .external_lex_state = 2}, + [262] = {.lex_state = 9, .external_lex_state = 16}, + [263] = {.lex_state = 3, .external_lex_state = 4}, + [264] = {.lex_state = 51}, + [265] = {.lex_state = 51}, + [266] = {.lex_state = 51}, + [267] = {.lex_state = 9, .external_lex_state = 2}, + [268] = {.lex_state = 49}, + [269] = {.lex_state = 9, .external_lex_state = 13}, + [270] = {.lex_state = 3, .external_lex_state = 4}, + [271] = {.lex_state = 46}, + [272] = {.lex_state = 42}, + [273] = {.lex_state = 46}, + [274] = {.lex_state = 9}, + [275] = {.lex_state = 49}, + [276] = {.lex_state = 3, .external_lex_state = 4}, + [277] = {.lex_state = 42}, + [278] = {.lex_state = 46}, + [279] = {.lex_state = 6, .external_lex_state = 3}, + [280] = {.lex_state = 46}, [281] = {.lex_state = 52}, - [282] = {.lex_state = 52, .external_lex_state = 12}, + [282] = {.lex_state = 52, .external_lex_state = 13}, [283] = {.lex_state = 52}, - [284] = {.lex_state = 52, .external_lex_state = 12}, - [285] = {.lex_state = 47}, - [286] = {.lex_state = 53}, - [287] = {.lex_state = 43}, - [288] = {.lex_state = 36}, - [289] = {.lex_state = 18, .external_lex_state = 11}, - [290] = {.lex_state = 3, .external_lex_state = 5}, - [291] = {.lex_state = 4, .external_lex_state = 11}, + [284] = {.lex_state = 52, .external_lex_state = 13}, + [285] = {.lex_state = 51}, + [286] = {.lex_state = 42}, + [287] = {.lex_state = 36}, + [288] = {.lex_state = 18, .external_lex_state = 12}, + [289] = {.lex_state = 51}, + [290] = {.lex_state = 3, .external_lex_state = 4}, + [291] = {.lex_state = 4, .external_lex_state = 12}, [292] = {.lex_state = 9, .external_lex_state = 23}, [293] = {.lex_state = 9, .external_lex_state = 2}, - [294] = {.lex_state = 9, .external_lex_state = 2}, - [295] = {.lex_state = 4, .external_lex_state = 11}, - [296] = {.lex_state = 3, .external_lex_state = 5}, - [297] = {.lex_state = 47}, - [298] = {.lex_state = 3, .external_lex_state = 5}, - [299] = {.lex_state = 41}, - [300] = {.lex_state = 47}, - [301] = {.lex_state = 47}, - [302] = {.lex_state = 34, .external_lex_state = 2}, - [303] = {.lex_state = 9}, - [304] = {.lex_state = 34, .external_lex_state = 2}, - [305] = {.lex_state = 9}, - [306] = {.lex_state = 47}, - [307] = {.lex_state = 3, .external_lex_state = 5}, - [308] = {.lex_state = 41}, - [309] = {.lex_state = 47}, - [310] = {.lex_state = 1, .external_lex_state = 3}, - [311] = {.lex_state = 45, .external_lex_state = 13}, - [312] = {.lex_state = 1, .external_lex_state = 3}, - [313] = {.lex_state = 1, .external_lex_state = 3}, - [314] = {.lex_state = 45, .external_lex_state = 13}, - [315] = {.lex_state = 1, .external_lex_state = 3}, + [294] = {.lex_state = 5, .external_lex_state = 5}, + [295] = {.lex_state = 44, .external_lex_state = 10}, + [296] = {.lex_state = 5, .external_lex_state = 5}, + [297] = {.lex_state = 5, .external_lex_state = 5}, + [298] = {.lex_state = 44, .external_lex_state = 10}, + [299] = {.lex_state = 5, .external_lex_state = 5}, + [300] = {.lex_state = 9, .external_lex_state = 2}, + [301] = {.lex_state = 4, .external_lex_state = 12}, + [302] = {.lex_state = 3, .external_lex_state = 4}, + [303] = {.lex_state = 51}, + [304] = {.lex_state = 3, .external_lex_state = 4}, + [305] = {.lex_state = 42}, + [306] = {.lex_state = 46}, + [307] = {.lex_state = 46}, + [308] = {.lex_state = 34, .external_lex_state = 2}, + [309] = {.lex_state = 9}, + [310] = {.lex_state = 34, .external_lex_state = 2}, + [311] = {.lex_state = 9}, + [312] = {.lex_state = 46}, + [313] = {.lex_state = 3, .external_lex_state = 4}, + [314] = {.lex_state = 42}, + [315] = {.lex_state = 46}, [316] = {.lex_state = 52}, [317] = {.lex_state = 52}, - [318] = {.lex_state = 3, .external_lex_state = 5}, - [319] = {.lex_state = 53}, - [320] = {.lex_state = 3, .external_lex_state = 5}, - [321] = {.lex_state = 53}, - [322] = {.lex_state = 43}, - [323] = {.lex_state = 36}, - [324] = {.lex_state = 9, .external_lex_state = 2}, - [325] = {.lex_state = 9, .external_lex_state = 2}, - [326] = {.lex_state = 3, .external_lex_state = 5}, - [327] = {.lex_state = 3, .external_lex_state = 5}, - [328] = {.lex_state = 41}, - [329] = {.lex_state = 9, .external_lex_state = 12}, - [330] = {.lex_state = 47}, - [331] = {.lex_state = 9}, - [332] = {.lex_state = 50}, - [333] = {.lex_state = 41}, - [334] = {.lex_state = 34, .external_lex_state = 2}, - [335] = {.lex_state = 9}, - [336] = {.lex_state = 50}, - [337] = {.lex_state = 41}, - [338] = {.lex_state = 34, .external_lex_state = 2}, - [339] = {.lex_state = 9, .external_lex_state = 12}, - [340] = {.lex_state = 47}, - [341] = {.lex_state = 9}, - [342] = {.lex_state = 3, .external_lex_state = 5}, - [343] = {.lex_state = 41}, - [344] = {.lex_state = 1, .external_lex_state = 3}, - [345] = {.lex_state = 1, .external_lex_state = 3}, - [346] = {.lex_state = 3, .external_lex_state = 5}, - [347] = {.lex_state = 53}, - [348] = {.lex_state = 53}, - [349] = {.lex_state = 43}, - [350] = {.lex_state = 3, .external_lex_state = 5}, - [351] = {.lex_state = 50}, - [352] = {.lex_state = 41}, - [353] = {.lex_state = 50}, - [354] = {.lex_state = 41}, + [318] = {.lex_state = 51}, + [319] = {.lex_state = 3, .external_lex_state = 4}, + [320] = {.lex_state = 51}, + [321] = {.lex_state = 42}, + [322] = {.lex_state = 36}, + [323] = {.lex_state = 3, .external_lex_state = 4}, + [324] = {.lex_state = 5, .external_lex_state = 5}, + [325] = {.lex_state = 5, .external_lex_state = 5}, + [326] = {.lex_state = 9, .external_lex_state = 2}, + [327] = {.lex_state = 9, .external_lex_state = 2}, + [328] = {.lex_state = 3, .external_lex_state = 4}, + [329] = {.lex_state = 3, .external_lex_state = 4}, + [330] = {.lex_state = 42}, + [331] = {.lex_state = 9, .external_lex_state = 13}, + [332] = {.lex_state = 46}, + [333] = {.lex_state = 9}, + [334] = {.lex_state = 49}, + [335] = {.lex_state = 42}, + [336] = {.lex_state = 34, .external_lex_state = 2}, + [337] = {.lex_state = 9}, + [338] = {.lex_state = 49}, + [339] = {.lex_state = 42}, + [340] = {.lex_state = 34, .external_lex_state = 2}, + [341] = {.lex_state = 9, .external_lex_state = 13}, + [342] = {.lex_state = 46}, + [343] = {.lex_state = 9}, + [344] = {.lex_state = 3, .external_lex_state = 4}, + [345] = {.lex_state = 42}, + [346] = {.lex_state = 3, .external_lex_state = 4}, + [347] = {.lex_state = 51}, + [348] = {.lex_state = 51}, + [349] = {.lex_state = 42}, + [350] = {.lex_state = 3, .external_lex_state = 4}, + [351] = {.lex_state = 49}, + [352] = {.lex_state = 42}, + [353] = {.lex_state = 49}, + [354] = {.lex_state = 42}, [355] = {.lex_state = 9, .external_lex_state = 2}, [356] = {.lex_state = 9}, [357] = {.lex_state = 9, .external_lex_state = 2}, [358] = {.lex_state = 9}, - [359] = {.lex_state = 3, .external_lex_state = 5}, - [360] = {.lex_state = 3, .external_lex_state = 5}, - [361] = {.lex_state = 53}, - [362] = {.lex_state = 53}, - [363] = {.lex_state = 50}, - [364] = {.lex_state = 50}, - [365] = {.lex_state = 47}, + [359] = {.lex_state = 3, .external_lex_state = 4}, + [360] = {.lex_state = 3, .external_lex_state = 4}, + [361] = {.lex_state = 51}, + [362] = {.lex_state = 51}, + [363] = {.lex_state = 49}, + [364] = {.lex_state = 49}, + [365] = {.lex_state = 46}, [366] = {.lex_state = 9}, [367] = {.lex_state = 9, .external_lex_state = 2}, - [368] = {.lex_state = 47}, + [368] = {.lex_state = 46}, [369] = {.lex_state = 9}, [370] = {.lex_state = 9, .external_lex_state = 2}, - [371] = {.lex_state = 3, .external_lex_state = 5}, - [372] = {.lex_state = 53}, - [373] = {.lex_state = 47}, + [371] = {.lex_state = 3, .external_lex_state = 4}, + [372] = {.lex_state = 51}, + [373] = {.lex_state = 46}, [374] = {.lex_state = 9}, - [375] = {.lex_state = 47}, + [375] = {.lex_state = 46}, [376] = {.lex_state = 9}, - [377] = {.lex_state = 3, .external_lex_state = 5}, - [378] = {.lex_state = 47}, - [379] = {.lex_state = 47}, + [377] = {.lex_state = 3, .external_lex_state = 4}, + [378] = {.lex_state = 46}, + [379] = {.lex_state = 46}, [380] = {.lex_state = 1, .external_lex_state = 3}, - [381] = {.lex_state = 5, .external_lex_state = 4}, + [381] = {.lex_state = 1, .external_lex_state = 4}, [382] = {.lex_state = 5, .external_lex_state = 5}, - [383] = {.lex_state = 1, .external_lex_state = 3}, - [384] = {.lex_state = 1, .external_lex_state = 3}, - [385] = {.lex_state = 46, .external_lex_state = 2}, - [386] = {.lex_state = 1, .external_lex_state = 5}, - [387] = {.lex_state = 3, .external_lex_state = 5}, - [388] = {.lex_state = 6, .external_lex_state = 4}, - [389] = {.lex_state = 1, .external_lex_state = 5}, + [383] = {.lex_state = 5, .external_lex_state = 5}, + [384] = {.lex_state = 5, .external_lex_state = 5}, + [385] = {.lex_state = 45, .external_lex_state = 2}, + [386] = {.lex_state = 5, .external_lex_state = 4}, + [387] = {.lex_state = 3, .external_lex_state = 4}, + [388] = {.lex_state = 6, .external_lex_state = 3}, + [389] = {.lex_state = 5, .external_lex_state = 4}, [390] = {.lex_state = 9, .external_lex_state = 2}, - [391] = {.lex_state = 47, .external_lex_state = 2}, - [392] = {.lex_state = 1, .external_lex_state = 5}, - [393] = {.lex_state = 1, .external_lex_state = 3}, - [394] = {.lex_state = 3, .external_lex_state = 3}, - [395] = {.lex_state = 3, .external_lex_state = 5}, - [396] = {.lex_state = 3, .external_lex_state = 5}, - [397] = {.lex_state = 5, .external_lex_state = 9}, - [398] = {.lex_state = 5, .external_lex_state = 4}, - [399] = {.lex_state = 5, .external_lex_state = 4}, - [400] = {.lex_state = 5, .external_lex_state = 3}, - [401] = {.lex_state = 5, .external_lex_state = 5}, + [391] = {.lex_state = 46, .external_lex_state = 2}, + [392] = {.lex_state = 5, .external_lex_state = 4}, + [393] = {.lex_state = 3, .external_lex_state = 5}, + [394] = {.lex_state = 3, .external_lex_state = 4}, + [395] = {.lex_state = 3, .external_lex_state = 4}, + [396] = {.lex_state = 1, .external_lex_state = 9}, + [397] = {.lex_state = 1, .external_lex_state = 3}, + [398] = {.lex_state = 1, .external_lex_state = 3}, + [399] = {.lex_state = 1, .external_lex_state = 5}, + [400] = {.lex_state = 1, .external_lex_state = 4}, + [401] = {.lex_state = 1, .external_lex_state = 4}, [402] = {.lex_state = 5, .external_lex_state = 5}, - [403] = {.lex_state = 1, .external_lex_state = 3}, - [404] = {.lex_state = 1, .external_lex_state = 3}, - [405] = {.lex_state = 1, .external_lex_state = 3}, - [406] = {.lex_state = 3, .external_lex_state = 5}, - [407] = {.lex_state = 43, .external_lex_state = 22}, + [403] = {.lex_state = 5, .external_lex_state = 5}, + [404] = {.lex_state = 5, .external_lex_state = 5}, + [405] = {.lex_state = 5, .external_lex_state = 5}, + [406] = {.lex_state = 3, .external_lex_state = 4}, + [407] = {.lex_state = 42, .external_lex_state = 22}, [408] = {.lex_state = 36}, - [409] = {.lex_state = 43, .external_lex_state = 15}, - [410] = {.lex_state = 3, .external_lex_state = 5}, - [411] = {.lex_state = 1, .external_lex_state = 3}, - [412] = {.lex_state = 1, .external_lex_state = 5}, - [413] = {.lex_state = 1, .external_lex_state = 5}, + [409] = {.lex_state = 42, .external_lex_state = 15}, + [410] = {.lex_state = 3, .external_lex_state = 4}, + [411] = {.lex_state = 5, .external_lex_state = 5}, + [412] = {.lex_state = 5, .external_lex_state = 4}, + [413] = {.lex_state = 5, .external_lex_state = 4}, [414] = {.lex_state = 9, .external_lex_state = 2}, - [415] = {.lex_state = 9, .external_lex_state = 16}, - [416] = {.lex_state = 9, .external_lex_state = 2}, + [415] = {.lex_state = 9, .external_lex_state = 2}, + [416] = {.lex_state = 9, .external_lex_state = 16}, [417] = {.lex_state = 9, .external_lex_state = 2}, - [418] = {.lex_state = 3, .external_lex_state = 5}, - [419] = {.lex_state = 3, .external_lex_state = 5}, - [420] = {.lex_state = 6, .external_lex_state = 4}, - [421] = {.lex_state = 35, .external_lex_state = 6}, - [422] = {.lex_state = 1, .external_lex_state = 5}, - [423] = {.lex_state = 1, .external_lex_state = 3}, - [424] = {.lex_state = 47, .external_lex_state = 18}, - [425] = {.lex_state = 1, .external_lex_state = 5}, - [426] = {.lex_state = 1, .external_lex_state = 5}, - [427] = {.lex_state = 1, .external_lex_state = 3}, - [428] = {.lex_state = 47}, - [429] = {.lex_state = 1, .external_lex_state = 3}, - [430] = {.lex_state = 3, .external_lex_state = 5}, - [431] = {.lex_state = 5, .external_lex_state = 4}, + [418] = {.lex_state = 3, .external_lex_state = 4}, + [419] = {.lex_state = 3, .external_lex_state = 4}, + [420] = {.lex_state = 6, .external_lex_state = 3}, + [421] = {.lex_state = 35, .external_lex_state = 7}, + [422] = {.lex_state = 5, .external_lex_state = 4}, + [423] = {.lex_state = 46, .external_lex_state = 18}, + [424] = {.lex_state = 5, .external_lex_state = 5}, + [425] = {.lex_state = 5, .external_lex_state = 4}, + [426] = {.lex_state = 5, .external_lex_state = 4}, + [427] = {.lex_state = 3, .external_lex_state = 4}, + [428] = {.lex_state = 1, .external_lex_state = 3}, + [429] = {.lex_state = 1, .external_lex_state = 4}, + [430] = {.lex_state = 5, .external_lex_state = 5}, + [431] = {.lex_state = 5, .external_lex_state = 5}, [432] = {.lex_state = 5, .external_lex_state = 5}, - [433] = {.lex_state = 1, .external_lex_state = 3}, - [434] = {.lex_state = 3, .external_lex_state = 5}, - [435] = {.lex_state = 9, .external_lex_state = 2}, - [436] = {.lex_state = 9, .external_lex_state = 16}, - [437] = {.lex_state = 3, .external_lex_state = 5}, - [438] = {.lex_state = 43, .external_lex_state = 15}, - [439] = {.lex_state = 36}, - [440] = {.lex_state = 43, .external_lex_state = 15}, - [441] = {.lex_state = 36, .external_lex_state = 18}, - [442] = {.lex_state = 3, .external_lex_state = 5}, - [443] = {.lex_state = 1, .external_lex_state = 3}, - [444] = {.lex_state = 1, .external_lex_state = 3}, - [445] = {.lex_state = 6, .external_lex_state = 9}, - [446] = {.lex_state = 6, .external_lex_state = 4}, - [447] = {.lex_state = 6, .external_lex_state = 4}, - [448] = {.lex_state = 3, .external_lex_state = 3}, + [433] = {.lex_state = 46}, + [434] = {.lex_state = 5, .external_lex_state = 5}, + [435] = {.lex_state = 5, .external_lex_state = 5}, + [436] = {.lex_state = 5, .external_lex_state = 5}, + [437] = {.lex_state = 3, .external_lex_state = 4}, + [438] = {.lex_state = 9, .external_lex_state = 2}, + [439] = {.lex_state = 9, .external_lex_state = 16}, + [440] = {.lex_state = 3, .external_lex_state = 4}, + [441] = {.lex_state = 42, .external_lex_state = 15}, + [442] = {.lex_state = 36}, + [443] = {.lex_state = 42, .external_lex_state = 15}, + [444] = {.lex_state = 36, .external_lex_state = 18}, + [445] = {.lex_state = 3, .external_lex_state = 4}, + [446] = {.lex_state = 6, .external_lex_state = 3}, + [447] = {.lex_state = 6, .external_lex_state = 9}, + [448] = {.lex_state = 6, .external_lex_state = 3}, [449] = {.lex_state = 3, .external_lex_state = 5}, - [450] = {.lex_state = 3, .external_lex_state = 5}, - [451] = {.lex_state = 1, .external_lex_state = 3}, - [452] = {.lex_state = 1, .external_lex_state = 3}, - [453] = {.lex_state = 1, .external_lex_state = 3}, - [454] = {.lex_state = 3, .external_lex_state = 5}, - [455] = {.lex_state = 3, .external_lex_state = 5}, - [456] = {.lex_state = 6, .external_lex_state = 4}, - [457] = {.lex_state = 4, .external_lex_state = 11}, - [458] = {.lex_state = 4, .external_lex_state = 11}, - [459] = {.lex_state = 3, .external_lex_state = 5}, - [460] = {.lex_state = 3, .external_lex_state = 5}, - [461] = {.lex_state = 6, .external_lex_state = 4}, - [462] = {.lex_state = 3, .external_lex_state = 3}, - [463] = {.lex_state = 3, .external_lex_state = 5}, - [464] = {.lex_state = 3, .external_lex_state = 5}, - [465] = {.lex_state = 3, .external_lex_state = 5}, + [450] = {.lex_state = 3, .external_lex_state = 4}, + [451] = {.lex_state = 3, .external_lex_state = 4}, + [452] = {.lex_state = 5, .external_lex_state = 5}, + [453] = {.lex_state = 5, .external_lex_state = 5}, + [454] = {.lex_state = 3, .external_lex_state = 4}, + [455] = {.lex_state = 3, .external_lex_state = 4}, + [456] = {.lex_state = 6, .external_lex_state = 3}, + [457] = {.lex_state = 4, .external_lex_state = 12}, + [458] = {.lex_state = 4, .external_lex_state = 12}, + [459] = {.lex_state = 3, .external_lex_state = 4}, + [460] = {.lex_state = 3, .external_lex_state = 4}, + [461] = {.lex_state = 6, .external_lex_state = 3}, + [462] = {.lex_state = 3, .external_lex_state = 5}, + [463] = {.lex_state = 3, .external_lex_state = 4}, + [464] = {.lex_state = 3, .external_lex_state = 4}, + [465] = {.lex_state = 3, .external_lex_state = 4}, [466] = {.lex_state = 9, .external_lex_state = 2}, [467] = {.lex_state = 9, .external_lex_state = 16}, - [468] = {.lex_state = 1, .external_lex_state = 5}, - [469] = {.lex_state = 1, .external_lex_state = 3}, - [470] = {.lex_state = 1, .external_lex_state = 5}, - [471] = {.lex_state = 1, .external_lex_state = 5}, - [472] = {.lex_state = 1, .external_lex_state = 5}, - [473] = {.lex_state = 3, .external_lex_state = 5}, - [474] = {.lex_state = 7, .external_lex_state = 5}, - [475] = {.lex_state = 3, .external_lex_state = 5}, - [476] = {.lex_state = 43, .external_lex_state = 15}, - [477] = {.lex_state = 43, .external_lex_state = 15}, - [478] = {.lex_state = 43, .external_lex_state = 15}, - [479] = {.lex_state = 1, .external_lex_state = 3}, - [480] = {.lex_state = 1, .external_lex_state = 3}, - [481] = {.lex_state = 1, .external_lex_state = 3}, - [482] = {.lex_state = 22, .external_lex_state = 10}, - [483] = {.lex_state = 6, .external_lex_state = 4}, - [484] = {.lex_state = 22, .external_lex_state = 11}, - [485] = {.lex_state = 44, .external_lex_state = 20}, - [486] = {.lex_state = 44, .external_lex_state = 20}, - [487] = {.lex_state = 1, .external_lex_state = 3}, - [488] = {.lex_state = 3, .external_lex_state = 5}, - [489] = {.lex_state = 3, .external_lex_state = 5}, - [490] = {.lex_state = 4, .external_lex_state = 11}, + [468] = {.lex_state = 5, .external_lex_state = 4}, + [469] = {.lex_state = 5, .external_lex_state = 4}, + [470] = {.lex_state = 5, .external_lex_state = 5}, + [471] = {.lex_state = 5, .external_lex_state = 4}, + [472] = {.lex_state = 5, .external_lex_state = 4}, + [473] = {.lex_state = 7, .external_lex_state = 4}, + [474] = {.lex_state = 5, .external_lex_state = 5}, + [475] = {.lex_state = 5, .external_lex_state = 5}, + [476] = {.lex_state = 5, .external_lex_state = 5}, + [477] = {.lex_state = 3, .external_lex_state = 4}, + [478] = {.lex_state = 3, .external_lex_state = 4}, + [479] = {.lex_state = 42, .external_lex_state = 15}, + [480] = {.lex_state = 42, .external_lex_state = 15}, + [481] = {.lex_state = 42, .external_lex_state = 15}, + [482] = {.lex_state = 22, .external_lex_state = 11}, + [483] = {.lex_state = 6, .external_lex_state = 3}, + [484] = {.lex_state = 22, .external_lex_state = 12}, + [485] = {.lex_state = 43, .external_lex_state = 19}, + [486] = {.lex_state = 43, .external_lex_state = 19}, + [487] = {.lex_state = 5, .external_lex_state = 5}, + [488] = {.lex_state = 3, .external_lex_state = 4}, + [489] = {.lex_state = 3, .external_lex_state = 4}, + [490] = {.lex_state = 4, .external_lex_state = 12}, [491] = {.lex_state = 9, .external_lex_state = 2}, - [492] = {.lex_state = 4, .external_lex_state = 11}, - [493] = {.lex_state = 3, .external_lex_state = 5}, - [494] = {.lex_state = 9, .external_lex_state = 2}, - [495] = {.lex_state = 3, .external_lex_state = 5}, - [496] = {.lex_state = 3, .external_lex_state = 5}, - [497] = {.lex_state = 3, .external_lex_state = 5}, - [498] = {.lex_state = 1, .external_lex_state = 3}, - [499] = {.lex_state = 1, .external_lex_state = 3}, - [500] = {.lex_state = 1, .external_lex_state = 3}, - [501] = {.lex_state = 1, .external_lex_state = 3}, - [502] = {.lex_state = 6, .external_lex_state = 4}, - [503] = {.lex_state = 22, .external_lex_state = 11}, - [504] = {.lex_state = 44, .external_lex_state = 13}, - [505] = {.lex_state = 44, .external_lex_state = 20}, - [506] = {.lex_state = 44, .external_lex_state = 13}, - [507] = {.lex_state = 44, .external_lex_state = 20}, - [508] = {.lex_state = 3, .external_lex_state = 5}, - [509] = {.lex_state = 4, .external_lex_state = 11}, + [492] = {.lex_state = 4, .external_lex_state = 12}, + [493] = {.lex_state = 5, .external_lex_state = 5}, + [494] = {.lex_state = 5, .external_lex_state = 5}, + [495] = {.lex_state = 5, .external_lex_state = 5}, + [496] = {.lex_state = 5, .external_lex_state = 5}, + [497] = {.lex_state = 3, .external_lex_state = 4}, + [498] = {.lex_state = 9, .external_lex_state = 2}, + [499] = {.lex_state = 3, .external_lex_state = 4}, + [500] = {.lex_state = 3, .external_lex_state = 4}, + [501] = {.lex_state = 3, .external_lex_state = 4}, + [502] = {.lex_state = 6, .external_lex_state = 3}, + [503] = {.lex_state = 22, .external_lex_state = 12}, + [504] = {.lex_state = 43, .external_lex_state = 10}, + [505] = {.lex_state = 43, .external_lex_state = 19}, + [506] = {.lex_state = 43, .external_lex_state = 10}, + [507] = {.lex_state = 43, .external_lex_state = 19}, + [508] = {.lex_state = 3, .external_lex_state = 4}, + [509] = {.lex_state = 4, .external_lex_state = 12}, [510] = {.lex_state = 9, .external_lex_state = 2}, - [511] = {.lex_state = 3, .external_lex_state = 5}, - [512] = {.lex_state = 3, .external_lex_state = 5}, - [513] = {.lex_state = 3, .external_lex_state = 5}, - [514] = {.lex_state = 1, .external_lex_state = 3}, - [515] = {.lex_state = 1, .external_lex_state = 3}, - [516] = {.lex_state = 1, .external_lex_state = 3}, - [517] = {.lex_state = 1, .external_lex_state = 3}, - [518] = {.lex_state = 44, .external_lex_state = 13}, - [519] = {.lex_state = 44, .external_lex_state = 13}, - [520] = {.lex_state = 3, .external_lex_state = 5}, - [521] = {.lex_state = 3, .external_lex_state = 5}, - [522] = {.lex_state = 3, .external_lex_state = 5}, - [523] = {.lex_state = 3, .external_lex_state = 5}, - [524] = {.lex_state = 3, .external_lex_state = 5}, - [525] = {.lex_state = 1, .external_lex_state = 3}, - [526] = {.lex_state = 1, .external_lex_state = 3}, - [527] = {.lex_state = 3, .external_lex_state = 5}, - [528] = {.lex_state = 3, .external_lex_state = 5}, - [529] = {.lex_state = 3, .external_lex_state = 5}, - [530] = {.lex_state = 3, .external_lex_state = 5}, - [531] = {.lex_state = 3, .external_lex_state = 5}, - [532] = {.lex_state = 3, .external_lex_state = 5}, - [533] = {.lex_state = 23, .external_lex_state = 3}, - [534] = {.lex_state = 5, .external_lex_state = 4}, - [535] = {.lex_state = 5, .external_lex_state = 5}, - [536] = {.lex_state = 47, .external_lex_state = 8}, - [537] = {.lex_state = 23, .external_lex_state = 3}, - [538] = {.lex_state = 46, .external_lex_state = 2}, - [539] = {.lex_state = 23, .external_lex_state = 5}, - [540] = {.lex_state = 3, .external_lex_state = 5}, - [541] = {.lex_state = 6, .external_lex_state = 4}, - [542] = {.lex_state = 23, .external_lex_state = 5}, + [511] = {.lex_state = 5, .external_lex_state = 5}, + [512] = {.lex_state = 5, .external_lex_state = 5}, + [513] = {.lex_state = 5, .external_lex_state = 5}, + [514] = {.lex_state = 5, .external_lex_state = 5}, + [515] = {.lex_state = 3, .external_lex_state = 4}, + [516] = {.lex_state = 3, .external_lex_state = 4}, + [517] = {.lex_state = 3, .external_lex_state = 4}, + [518] = {.lex_state = 43, .external_lex_state = 10}, + [519] = {.lex_state = 43, .external_lex_state = 10}, + [520] = {.lex_state = 3, .external_lex_state = 4}, + [521] = {.lex_state = 3, .external_lex_state = 4}, + [522] = {.lex_state = 5, .external_lex_state = 5}, + [523] = {.lex_state = 5, .external_lex_state = 5}, + [524] = {.lex_state = 3, .external_lex_state = 4}, + [525] = {.lex_state = 3, .external_lex_state = 4}, + [526] = {.lex_state = 3, .external_lex_state = 4}, + [527] = {.lex_state = 3, .external_lex_state = 4}, + [528] = {.lex_state = 3, .external_lex_state = 4}, + [529] = {.lex_state = 3, .external_lex_state = 4}, + [530] = {.lex_state = 3, .external_lex_state = 4}, + [531] = {.lex_state = 3, .external_lex_state = 4}, + [532] = {.lex_state = 3, .external_lex_state = 4}, + [533] = {.lex_state = 1, .external_lex_state = 3}, + [534] = {.lex_state = 1, .external_lex_state = 4}, + [535] = {.lex_state = 23, .external_lex_state = 5}, + [536] = {.lex_state = 23, .external_lex_state = 5}, + [537] = {.lex_state = 46, .external_lex_state = 8}, + [538] = {.lex_state = 45, .external_lex_state = 2}, + [539] = {.lex_state = 23, .external_lex_state = 4}, + [540] = {.lex_state = 3, .external_lex_state = 4}, + [541] = {.lex_state = 6, .external_lex_state = 3}, + [542] = {.lex_state = 23, .external_lex_state = 4}, [543] = {.lex_state = 9, .external_lex_state = 2}, - [544] = {.lex_state = 47, .external_lex_state = 2}, - [545] = {.lex_state = 1, .external_lex_state = 5}, - [546] = {.lex_state = 47, .external_lex_state = 8}, - [547] = {.lex_state = 3, .external_lex_state = 3}, - [548] = {.lex_state = 3, .external_lex_state = 5}, - [549] = {.lex_state = 3, .external_lex_state = 5}, - [550] = {.lex_state = 24, .external_lex_state = 9}, - [551] = {.lex_state = 24, .external_lex_state = 4}, - [552] = {.lex_state = 5, .external_lex_state = 4}, - [553] = {.lex_state = 24, .external_lex_state = 3}, - [554] = {.lex_state = 24, .external_lex_state = 5}, - [555] = {.lex_state = 5, .external_lex_state = 5}, - [556] = {.lex_state = 47, .external_lex_state = 8}, - [557] = {.lex_state = 47, .external_lex_state = 8}, - [558] = {.lex_state = 47, .external_lex_state = 8}, - [559] = {.lex_state = 18, .external_lex_state = 10}, + [544] = {.lex_state = 46, .external_lex_state = 2}, + [545] = {.lex_state = 5, .external_lex_state = 4}, + [546] = {.lex_state = 3, .external_lex_state = 5}, + [547] = {.lex_state = 3, .external_lex_state = 4}, + [548] = {.lex_state = 3, .external_lex_state = 4}, + [549] = {.lex_state = 24, .external_lex_state = 9}, + [550] = {.lex_state = 24, .external_lex_state = 3}, + [551] = {.lex_state = 1, .external_lex_state = 3}, + [552] = {.lex_state = 24, .external_lex_state = 5}, + [553] = {.lex_state = 24, .external_lex_state = 4}, + [554] = {.lex_state = 1, .external_lex_state = 4}, + [555] = {.lex_state = 46, .external_lex_state = 8}, + [556] = {.lex_state = 46, .external_lex_state = 8}, + [557] = {.lex_state = 46, .external_lex_state = 8}, + [558] = {.lex_state = 46, .external_lex_state = 8}, + [559] = {.lex_state = 18, .external_lex_state = 11}, [560] = {.lex_state = 36}, - [561] = {.lex_state = 18, .external_lex_state = 11}, - [562] = {.lex_state = 47, .external_lex_state = 8}, - [563] = {.lex_state = 47, .external_lex_state = 2}, - [564] = {.lex_state = 47, .external_lex_state = 2}, + [561] = {.lex_state = 18, .external_lex_state = 12}, + [562] = {.lex_state = 46, .external_lex_state = 8}, + [563] = {.lex_state = 46, .external_lex_state = 2}, + [564] = {.lex_state = 46, .external_lex_state = 2}, [565] = {.lex_state = 9, .external_lex_state = 2}, - [566] = {.lex_state = 9, .external_lex_state = 16}, - [567] = {.lex_state = 9, .external_lex_state = 2}, + [566] = {.lex_state = 9, .external_lex_state = 2}, + [567] = {.lex_state = 9, .external_lex_state = 16}, [568] = {.lex_state = 9, .external_lex_state = 2}, - [569] = {.lex_state = 3, .external_lex_state = 5}, - [570] = {.lex_state = 6, .external_lex_state = 4}, - [571] = {.lex_state = 1, .external_lex_state = 5}, - [572] = {.lex_state = 23, .external_lex_state = 3}, - [573] = {.lex_state = 47, .external_lex_state = 18}, - [574] = {.lex_state = 23, .external_lex_state = 5}, - [575] = {.lex_state = 1, .external_lex_state = 5}, - [576] = {.lex_state = 47, .external_lex_state = 8}, - [577] = {.lex_state = 47}, - [578] = {.lex_state = 47, .external_lex_state = 8}, - [579] = {.lex_state = 24, .external_lex_state = 4}, - [580] = {.lex_state = 24, .external_lex_state = 5}, - [581] = {.lex_state = 47, .external_lex_state = 8}, - [582] = {.lex_state = 18, .external_lex_state = 11}, - [583] = {.lex_state = 36}, - [584] = {.lex_state = 18, .external_lex_state = 11}, - [585] = {.lex_state = 36, .external_lex_state = 18}, - [586] = {.lex_state = 47, .external_lex_state = 8}, - [587] = {.lex_state = 47, .external_lex_state = 8}, - [588] = {.lex_state = 5, .external_lex_state = 9}, - [589] = {.lex_state = 5, .external_lex_state = 4}, - [590] = {.lex_state = 5, .external_lex_state = 4}, - [591] = {.lex_state = 3, .external_lex_state = 3}, + [569] = {.lex_state = 3, .external_lex_state = 4}, + [570] = {.lex_state = 6, .external_lex_state = 3}, + [571] = {.lex_state = 5, .external_lex_state = 4}, + [572] = {.lex_state = 46, .external_lex_state = 18}, + [573] = {.lex_state = 23, .external_lex_state = 5}, + [574] = {.lex_state = 23, .external_lex_state = 4}, + [575] = {.lex_state = 5, .external_lex_state = 4}, + [576] = {.lex_state = 24, .external_lex_state = 3}, + [577] = {.lex_state = 24, .external_lex_state = 4}, + [578] = {.lex_state = 46, .external_lex_state = 8}, + [579] = {.lex_state = 46, .external_lex_state = 8}, + [580] = {.lex_state = 46, .external_lex_state = 8}, + [581] = {.lex_state = 46}, + [582] = {.lex_state = 46, .external_lex_state = 8}, + [583] = {.lex_state = 46, .external_lex_state = 8}, + [584] = {.lex_state = 46, .external_lex_state = 8}, + [585] = {.lex_state = 18, .external_lex_state = 12}, + [586] = {.lex_state = 36}, + [587] = {.lex_state = 18, .external_lex_state = 12}, + [588] = {.lex_state = 36, .external_lex_state = 18}, + [589] = {.lex_state = 1, .external_lex_state = 3}, + [590] = {.lex_state = 1, .external_lex_state = 9}, + [591] = {.lex_state = 1, .external_lex_state = 3}, [592] = {.lex_state = 3, .external_lex_state = 5}, - [593] = {.lex_state = 3, .external_lex_state = 5}, - [594] = {.lex_state = 47, .external_lex_state = 8}, - [595] = {.lex_state = 47, .external_lex_state = 8}, - [596] = {.lex_state = 47, .external_lex_state = 8}, - [597] = {.lex_state = 6, .external_lex_state = 4}, - [598] = {.lex_state = 4, .external_lex_state = 11}, - [599] = {.lex_state = 3, .external_lex_state = 5}, - [600] = {.lex_state = 6, .external_lex_state = 4}, + [593] = {.lex_state = 3, .external_lex_state = 4}, + [594] = {.lex_state = 3, .external_lex_state = 4}, + [595] = {.lex_state = 46, .external_lex_state = 8}, + [596] = {.lex_state = 46, .external_lex_state = 8}, + [597] = {.lex_state = 6, .external_lex_state = 3}, + [598] = {.lex_state = 4, .external_lex_state = 12}, + [599] = {.lex_state = 3, .external_lex_state = 4}, + [600] = {.lex_state = 6, .external_lex_state = 3}, [601] = {.lex_state = 9, .external_lex_state = 2}, [602] = {.lex_state = 9, .external_lex_state = 16}, - [603] = {.lex_state = 1, .external_lex_state = 5}, - [604] = {.lex_state = 23, .external_lex_state = 3}, + [603] = {.lex_state = 5, .external_lex_state = 4}, + [604] = {.lex_state = 23, .external_lex_state = 4}, [605] = {.lex_state = 23, .external_lex_state = 5}, - [606] = {.lex_state = 23, .external_lex_state = 5}, - [607] = {.lex_state = 23, .external_lex_state = 5}, + [606] = {.lex_state = 23, .external_lex_state = 4}, + [607] = {.lex_state = 23, .external_lex_state = 4}, [608] = {.lex_state = 32, .external_lex_state = 2}, - [609] = {.lex_state = 18, .external_lex_state = 11}, - [610] = {.lex_state = 18, .external_lex_state = 11}, - [611] = {.lex_state = 18, .external_lex_state = 11}, - [612] = {.lex_state = 47, .external_lex_state = 8}, - [613] = {.lex_state = 47, .external_lex_state = 8}, - [614] = {.lex_state = 47, .external_lex_state = 8}, - [615] = {.lex_state = 5, .external_lex_state = 4}, - [616] = {.lex_state = 47, .external_lex_state = 8}, + [609] = {.lex_state = 46, .external_lex_state = 8}, + [610] = {.lex_state = 46, .external_lex_state = 8}, + [611] = {.lex_state = 46, .external_lex_state = 8}, + [612] = {.lex_state = 18, .external_lex_state = 12}, + [613] = {.lex_state = 18, .external_lex_state = 12}, + [614] = {.lex_state = 18, .external_lex_state = 12}, + [615] = {.lex_state = 1, .external_lex_state = 3}, + [616] = {.lex_state = 46, .external_lex_state = 8}, [617] = {.lex_state = 9, .external_lex_state = 2}, - [618] = {.lex_state = 4, .external_lex_state = 11}, - [619] = {.lex_state = 47, .external_lex_state = 8}, - [620] = {.lex_state = 47, .external_lex_state = 8}, - [621] = {.lex_state = 47, .external_lex_state = 8}, - [622] = {.lex_state = 47, .external_lex_state = 8}, - [623] = {.lex_state = 5, .external_lex_state = 4}, + [618] = {.lex_state = 4, .external_lex_state = 12}, + [619] = {.lex_state = 46, .external_lex_state = 8}, + [620] = {.lex_state = 46, .external_lex_state = 8}, + [621] = {.lex_state = 46, .external_lex_state = 8}, + [622] = {.lex_state = 46, .external_lex_state = 8}, + [623] = {.lex_state = 1, .external_lex_state = 3}, [624] = {.lex_state = 9, .external_lex_state = 2}, - [625] = {.lex_state = 47, .external_lex_state = 8}, - [626] = {.lex_state = 47, .external_lex_state = 8}, - [627] = {.lex_state = 47, .external_lex_state = 8}, - [628] = {.lex_state = 47, .external_lex_state = 8}, - [629] = {.lex_state = 47, .external_lex_state = 8}, - [630] = {.lex_state = 47, .external_lex_state = 8}, - [631] = {.lex_state = 24, .external_lex_state = 4}, - [632] = {.lex_state = 24, .external_lex_state = 5}, - [633] = {.lex_state = 5, .external_lex_state = 9}, - [634] = {.lex_state = 3, .external_lex_state = 5}, - [635] = {.lex_state = 25, .external_lex_state = 4}, + [625] = {.lex_state = 46, .external_lex_state = 8}, + [626] = {.lex_state = 46, .external_lex_state = 8}, + [627] = {.lex_state = 46, .external_lex_state = 8}, + [628] = {.lex_state = 46, .external_lex_state = 8}, + [629] = {.lex_state = 46, .external_lex_state = 8}, + [630] = {.lex_state = 46, .external_lex_state = 8}, + [631] = {.lex_state = 24, .external_lex_state = 3}, + [632] = {.lex_state = 24, .external_lex_state = 4}, + [633] = {.lex_state = 1, .external_lex_state = 9}, + [634] = {.lex_state = 3, .external_lex_state = 4}, + [635] = {.lex_state = 25, .external_lex_state = 3}, [636] = {.lex_state = 9, .external_lex_state = 2}, - [637] = {.lex_state = 23, .external_lex_state = 5}, - [638] = {.lex_state = 5, .external_lex_state = 9}, + [637] = {.lex_state = 23, .external_lex_state = 4}, + [638] = {.lex_state = 24, .external_lex_state = 3}, [639] = {.lex_state = 24, .external_lex_state = 4}, - [640] = {.lex_state = 24, .external_lex_state = 5}, - [641] = {.lex_state = 5, .external_lex_state = 9}, - [642] = {.lex_state = 5, .external_lex_state = 9}, - [643] = {.lex_state = 5, .external_lex_state = 9}, - [644] = {.lex_state = 5, .external_lex_state = 9}, - [645] = {.lex_state = 5, .external_lex_state = 4}, - [646] = {.lex_state = 5, .external_lex_state = 4}, - [647] = {.lex_state = 9, .external_lex_state = 2}, - [648] = {.lex_state = 34, .external_lex_state = 16}, - [649] = {.lex_state = 34, .external_lex_state = 2}, + [640] = {.lex_state = 1, .external_lex_state = 9}, + [641] = {.lex_state = 1, .external_lex_state = 9}, + [642] = {.lex_state = 1, .external_lex_state = 9}, + [643] = {.lex_state = 1, .external_lex_state = 9}, + [644] = {.lex_state = 1, .external_lex_state = 9}, + [645] = {.lex_state = 1, .external_lex_state = 3}, + [646] = {.lex_state = 1, .external_lex_state = 3}, + [647] = {.lex_state = 34, .external_lex_state = 2}, + [648] = {.lex_state = 9, .external_lex_state = 2}, + [649] = {.lex_state = 34, .external_lex_state = 16}, [650] = {.lex_state = 9, .external_lex_state = 2}, - [651] = {.lex_state = 3, .external_lex_state = 5}, - [652] = {.lex_state = 25, .external_lex_state = 4}, - [653] = {.lex_state = 23, .external_lex_state = 5}, - [654] = {.lex_state = 23, .external_lex_state = 5}, - [655] = {.lex_state = 5, .external_lex_state = 9}, - [656] = {.lex_state = 47}, - [657] = {.lex_state = 5, .external_lex_state = 9}, - [658] = {.lex_state = 5, .external_lex_state = 9}, - [659] = {.lex_state = 5, .external_lex_state = 9}, - [660] = {.lex_state = 5, .external_lex_state = 9}, - [661] = {.lex_state = 47, .external_lex_state = 8}, - [662] = {.lex_state = 47, .external_lex_state = 2}, - [663] = {.lex_state = 47, .external_lex_state = 2}, - [664] = {.lex_state = 5, .external_lex_state = 9}, - [665] = {.lex_state = 5, .external_lex_state = 9}, - [666] = {.lex_state = 5, .external_lex_state = 9}, - [667] = {.lex_state = 25, .external_lex_state = 4}, - [668] = {.lex_state = 4, .external_lex_state = 11}, - [669] = {.lex_state = 3, .external_lex_state = 5}, - [670] = {.lex_state = 25, .external_lex_state = 4}, + [651] = {.lex_state = 3, .external_lex_state = 4}, + [652] = {.lex_state = 25, .external_lex_state = 3}, + [653] = {.lex_state = 23, .external_lex_state = 4}, + [654] = {.lex_state = 23, .external_lex_state = 4}, + [655] = {.lex_state = 1, .external_lex_state = 9}, + [656] = {.lex_state = 1, .external_lex_state = 9}, + [657] = {.lex_state = 1, .external_lex_state = 9}, + [658] = {.lex_state = 46}, + [659] = {.lex_state = 1, .external_lex_state = 9}, + [660] = {.lex_state = 1, .external_lex_state = 9}, + [661] = {.lex_state = 1, .external_lex_state = 9}, + [662] = {.lex_state = 46, .external_lex_state = 2}, + [663] = {.lex_state = 46, .external_lex_state = 8}, + [664] = {.lex_state = 46, .external_lex_state = 2}, + [665] = {.lex_state = 1, .external_lex_state = 9}, + [666] = {.lex_state = 1, .external_lex_state = 9}, + [667] = {.lex_state = 25, .external_lex_state = 3}, + [668] = {.lex_state = 4, .external_lex_state = 12}, + [669] = {.lex_state = 3, .external_lex_state = 4}, + [670] = {.lex_state = 25, .external_lex_state = 3}, [671] = {.lex_state = 34, .external_lex_state = 2}, [672] = {.lex_state = 34, .external_lex_state = 16}, - [673] = {.lex_state = 23, .external_lex_state = 5}, - [674] = {.lex_state = 8, .external_lex_state = 4}, - [675] = {.lex_state = 5, .external_lex_state = 9}, - [676] = {.lex_state = 5, .external_lex_state = 9}, - [677] = {.lex_state = 5, .external_lex_state = 9}, - [678] = {.lex_state = 47, .external_lex_state = 2}, - [679] = {.lex_state = 5, .external_lex_state = 9}, + [673] = {.lex_state = 23, .external_lex_state = 4}, + [674] = {.lex_state = 8, .external_lex_state = 3}, + [675] = {.lex_state = 1, .external_lex_state = 9}, + [676] = {.lex_state = 1, .external_lex_state = 9}, + [677] = {.lex_state = 1, .external_lex_state = 9}, + [678] = {.lex_state = 46, .external_lex_state = 2}, + [679] = {.lex_state = 1, .external_lex_state = 9}, [680] = {.lex_state = 34, .external_lex_state = 2}, - [681] = {.lex_state = 4, .external_lex_state = 11}, - [682] = {.lex_state = 5, .external_lex_state = 9}, - [683] = {.lex_state = 5, .external_lex_state = 9}, - [684] = {.lex_state = 5, .external_lex_state = 9}, - [685] = {.lex_state = 5, .external_lex_state = 9}, - [686] = {.lex_state = 47, .external_lex_state = 2}, + [681] = {.lex_state = 4, .external_lex_state = 12}, + [682] = {.lex_state = 1, .external_lex_state = 9}, + [683] = {.lex_state = 1, .external_lex_state = 9}, + [684] = {.lex_state = 1, .external_lex_state = 9}, + [685] = {.lex_state = 1, .external_lex_state = 9}, + [686] = {.lex_state = 46, .external_lex_state = 2}, [687] = {.lex_state = 34, .external_lex_state = 2}, - [688] = {.lex_state = 5, .external_lex_state = 9}, - [689] = {.lex_state = 5, .external_lex_state = 9}, - [690] = {.lex_state = 5, .external_lex_state = 9}, - [691] = {.lex_state = 5, .external_lex_state = 9}, - [692] = {.lex_state = 5, .external_lex_state = 9}, - [693] = {.lex_state = 5, .external_lex_state = 9}, - [694] = {.lex_state = 5, .external_lex_state = 3}, - [695] = {.lex_state = 6, .external_lex_state = 4}, - [696] = {.lex_state = 5, .external_lex_state = 3}, - [697] = {.lex_state = 5, .external_lex_state = 3}, - [698] = {.lex_state = 5, .external_lex_state = 3}, - [699] = {.lex_state = 5, .external_lex_state = 3}, - [700] = {.lex_state = 5, .external_lex_state = 3}, - [701] = {.lex_state = 5, .external_lex_state = 5}, - [702] = {.lex_state = 5, .external_lex_state = 5}, - [703] = {.lex_state = 3, .external_lex_state = 5}, - [704] = {.lex_state = 6, .external_lex_state = 4}, - [705] = {.lex_state = 5, .external_lex_state = 3}, - [706] = {.lex_state = 47}, - [707] = {.lex_state = 5, .external_lex_state = 3}, - [708] = {.lex_state = 5, .external_lex_state = 3}, - [709] = {.lex_state = 5, .external_lex_state = 3}, - [710] = {.lex_state = 5, .external_lex_state = 3}, - [711] = {.lex_state = 5, .external_lex_state = 9}, - [712] = {.lex_state = 5, .external_lex_state = 4}, - [713] = {.lex_state = 5, .external_lex_state = 4}, - [714] = {.lex_state = 5, .external_lex_state = 3}, - [715] = {.lex_state = 5, .external_lex_state = 3}, - [716] = {.lex_state = 5, .external_lex_state = 3}, - [717] = {.lex_state = 8, .external_lex_state = 5}, - [718] = {.lex_state = 5, .external_lex_state = 3}, - [719] = {.lex_state = 5, .external_lex_state = 3}, - [720] = {.lex_state = 5, .external_lex_state = 3}, - [721] = {.lex_state = 5, .external_lex_state = 4}, - [722] = {.lex_state = 5, .external_lex_state = 3}, - [723] = {.lex_state = 5, .external_lex_state = 3}, - [724] = {.lex_state = 5, .external_lex_state = 3}, - [725] = {.lex_state = 5, .external_lex_state = 3}, - [726] = {.lex_state = 5, .external_lex_state = 3}, - [727] = {.lex_state = 5, .external_lex_state = 4}, - [728] = {.lex_state = 5, .external_lex_state = 3}, - [729] = {.lex_state = 5, .external_lex_state = 3}, - [730] = {.lex_state = 5, .external_lex_state = 3}, - [731] = {.lex_state = 5, .external_lex_state = 3}, - [732] = {.lex_state = 5, .external_lex_state = 3}, - [733] = {.lex_state = 5, .external_lex_state = 3}, - [734] = {.lex_state = 4, .external_lex_state = 10}, - [735] = {.lex_state = 4, .external_lex_state = 10}, - [736] = {.lex_state = 4, .external_lex_state = 10}, - [737] = {.lex_state = 4, .external_lex_state = 10}, - [738] = {.lex_state = 4, .external_lex_state = 10}, - [739] = {.lex_state = 4, .external_lex_state = 10}, - [740] = {.lex_state = 4, .external_lex_state = 11}, - [741] = {.lex_state = 4, .external_lex_state = 11}, - [742] = {.lex_state = 4, .external_lex_state = 10}, - [743] = {.lex_state = 47}, - [744] = {.lex_state = 4, .external_lex_state = 10}, - [745] = {.lex_state = 4, .external_lex_state = 10}, - [746] = {.lex_state = 4, .external_lex_state = 10}, - [747] = {.lex_state = 4, .external_lex_state = 10}, - [748] = {.lex_state = 25, .external_lex_state = 9}, - [749] = {.lex_state = 25, .external_lex_state = 4}, - [750] = {.lex_state = 25, .external_lex_state = 4}, - [751] = {.lex_state = 4, .external_lex_state = 10}, - [752] = {.lex_state = 4, .external_lex_state = 10}, - [753] = {.lex_state = 4, .external_lex_state = 10}, - [754] = {.lex_state = 15, .external_lex_state = 11}, - [755] = {.lex_state = 4, .external_lex_state = 10}, - [756] = {.lex_state = 4, .external_lex_state = 10}, - [757] = {.lex_state = 4, .external_lex_state = 10}, - [758] = {.lex_state = 25, .external_lex_state = 4}, - [759] = {.lex_state = 4, .external_lex_state = 10}, - [760] = {.lex_state = 4, .external_lex_state = 10}, - [761] = {.lex_state = 4, .external_lex_state = 10}, - [762] = {.lex_state = 4, .external_lex_state = 10}, - [763] = {.lex_state = 4, .external_lex_state = 10}, - [764] = {.lex_state = 25, .external_lex_state = 4}, - [765] = {.lex_state = 4, .external_lex_state = 10}, - [766] = {.lex_state = 4, .external_lex_state = 10}, - [767] = {.lex_state = 4, .external_lex_state = 10}, - [768] = {.lex_state = 4, .external_lex_state = 10}, - [769] = {.lex_state = 4, .external_lex_state = 10}, - [770] = {.lex_state = 4, .external_lex_state = 10}, - [771] = {.lex_state = 41, .external_lex_state = 12}, - [772] = {.lex_state = 40, .external_lex_state = 12}, - [773] = {.lex_state = 40, .external_lex_state = 12}, - [774] = {.lex_state = 40, .external_lex_state = 12}, - [775] = {.lex_state = 40, .external_lex_state = 12}, - [776] = {.lex_state = 40, .external_lex_state = 12}, - [777] = {.lex_state = 41}, - [778] = {.lex_state = 41}, - [779] = {.lex_state = 40, .external_lex_state = 12}, - [780] = {.lex_state = 47}, - [781] = {.lex_state = 40, .external_lex_state = 12}, - [782] = {.lex_state = 40, .external_lex_state = 12}, - [783] = {.lex_state = 40, .external_lex_state = 12}, - [784] = {.lex_state = 40, .external_lex_state = 12}, - [785] = {.lex_state = 24, .external_lex_state = 9}, - [786] = {.lex_state = 24, .external_lex_state = 4}, - [787] = {.lex_state = 24, .external_lex_state = 4}, - [788] = {.lex_state = 40, .external_lex_state = 12}, - [789] = {.lex_state = 40, .external_lex_state = 12}, - [790] = {.lex_state = 40, .external_lex_state = 12}, + [688] = {.lex_state = 1, .external_lex_state = 9}, + [689] = {.lex_state = 1, .external_lex_state = 9}, + [690] = {.lex_state = 1, .external_lex_state = 9}, + [691] = {.lex_state = 1, .external_lex_state = 9}, + [692] = {.lex_state = 1, .external_lex_state = 9}, + [693] = {.lex_state = 1, .external_lex_state = 9}, + [694] = {.lex_state = 1, .external_lex_state = 5}, + [695] = {.lex_state = 6, .external_lex_state = 3}, + [696] = {.lex_state = 1, .external_lex_state = 5}, + [697] = {.lex_state = 1, .external_lex_state = 5}, + [698] = {.lex_state = 1, .external_lex_state = 5}, + [699] = {.lex_state = 1, .external_lex_state = 5}, + [700] = {.lex_state = 1, .external_lex_state = 5}, + [701] = {.lex_state = 1, .external_lex_state = 4}, + [702] = {.lex_state = 1, .external_lex_state = 4}, + [703] = {.lex_state = 3, .external_lex_state = 4}, + [704] = {.lex_state = 6, .external_lex_state = 3}, + [705] = {.lex_state = 1, .external_lex_state = 5}, + [706] = {.lex_state = 1, .external_lex_state = 5}, + [707] = {.lex_state = 1, .external_lex_state = 5}, + [708] = {.lex_state = 46}, + [709] = {.lex_state = 1, .external_lex_state = 5}, + [710] = {.lex_state = 1, .external_lex_state = 5}, + [711] = {.lex_state = 1, .external_lex_state = 5}, + [712] = {.lex_state = 1, .external_lex_state = 3}, + [713] = {.lex_state = 1, .external_lex_state = 9}, + [714] = {.lex_state = 1, .external_lex_state = 3}, + [715] = {.lex_state = 1, .external_lex_state = 5}, + [716] = {.lex_state = 1, .external_lex_state = 5}, + [717] = {.lex_state = 8, .external_lex_state = 4}, + [718] = {.lex_state = 1, .external_lex_state = 5}, + [719] = {.lex_state = 1, .external_lex_state = 5}, + [720] = {.lex_state = 1, .external_lex_state = 5}, + [721] = {.lex_state = 1, .external_lex_state = 3}, + [722] = {.lex_state = 1, .external_lex_state = 5}, + [723] = {.lex_state = 1, .external_lex_state = 5}, + [724] = {.lex_state = 1, .external_lex_state = 5}, + [725] = {.lex_state = 1, .external_lex_state = 5}, + [726] = {.lex_state = 1, .external_lex_state = 5}, + [727] = {.lex_state = 1, .external_lex_state = 3}, + [728] = {.lex_state = 1, .external_lex_state = 5}, + [729] = {.lex_state = 1, .external_lex_state = 5}, + [730] = {.lex_state = 1, .external_lex_state = 5}, + [731] = {.lex_state = 1, .external_lex_state = 5}, + [732] = {.lex_state = 1, .external_lex_state = 5}, + [733] = {.lex_state = 1, .external_lex_state = 5}, + [734] = {.lex_state = 4, .external_lex_state = 11}, + [735] = {.lex_state = 4, .external_lex_state = 11}, + [736] = {.lex_state = 4, .external_lex_state = 11}, + [737] = {.lex_state = 4, .external_lex_state = 11}, + [738] = {.lex_state = 4, .external_lex_state = 11}, + [739] = {.lex_state = 4, .external_lex_state = 11}, + [740] = {.lex_state = 4, .external_lex_state = 12}, + [741] = {.lex_state = 4, .external_lex_state = 12}, + [742] = {.lex_state = 4, .external_lex_state = 11}, + [743] = {.lex_state = 4, .external_lex_state = 11}, + [744] = {.lex_state = 4, .external_lex_state = 11}, + [745] = {.lex_state = 46}, + [746] = {.lex_state = 4, .external_lex_state = 11}, + [747] = {.lex_state = 4, .external_lex_state = 11}, + [748] = {.lex_state = 4, .external_lex_state = 11}, + [749] = {.lex_state = 25, .external_lex_state = 3}, + [750] = {.lex_state = 25, .external_lex_state = 9}, + [751] = {.lex_state = 25, .external_lex_state = 3}, + [752] = {.lex_state = 4, .external_lex_state = 11}, + [753] = {.lex_state = 4, .external_lex_state = 11}, + [754] = {.lex_state = 15, .external_lex_state = 12}, + [755] = {.lex_state = 4, .external_lex_state = 11}, + [756] = {.lex_state = 4, .external_lex_state = 11}, + [757] = {.lex_state = 4, .external_lex_state = 11}, + [758] = {.lex_state = 25, .external_lex_state = 3}, + [759] = {.lex_state = 4, .external_lex_state = 11}, + [760] = {.lex_state = 4, .external_lex_state = 11}, + [761] = {.lex_state = 4, .external_lex_state = 11}, + [762] = {.lex_state = 4, .external_lex_state = 11}, + [763] = {.lex_state = 4, .external_lex_state = 11}, + [764] = {.lex_state = 25, .external_lex_state = 3}, + [765] = {.lex_state = 4, .external_lex_state = 11}, + [766] = {.lex_state = 4, .external_lex_state = 11}, + [767] = {.lex_state = 4, .external_lex_state = 11}, + [768] = {.lex_state = 4, .external_lex_state = 11}, + [769] = {.lex_state = 4, .external_lex_state = 11}, + [770] = {.lex_state = 4, .external_lex_state = 11}, + [771] = {.lex_state = 40, .external_lex_state = 13}, + [772] = {.lex_state = 40, .external_lex_state = 13}, + [773] = {.lex_state = 40, .external_lex_state = 13}, + [774] = {.lex_state = 40, .external_lex_state = 13}, + [775] = {.lex_state = 40, .external_lex_state = 13}, + [776] = {.lex_state = 40, .external_lex_state = 13}, + [777] = {.lex_state = 40}, + [778] = {.lex_state = 40}, + [779] = {.lex_state = 40, .external_lex_state = 13}, + [780] = {.lex_state = 40, .external_lex_state = 13}, + [781] = {.lex_state = 40, .external_lex_state = 13}, + [782] = {.lex_state = 46}, + [783] = {.lex_state = 40, .external_lex_state = 13}, + [784] = {.lex_state = 40, .external_lex_state = 13}, + [785] = {.lex_state = 40, .external_lex_state = 13}, + [786] = {.lex_state = 24, .external_lex_state = 3}, + [787] = {.lex_state = 24, .external_lex_state = 9}, + [788] = {.lex_state = 24, .external_lex_state = 3}, + [789] = {.lex_state = 40, .external_lex_state = 13}, + [790] = {.lex_state = 40, .external_lex_state = 13}, [791] = {.lex_state = 37}, - [792] = {.lex_state = 40, .external_lex_state = 12}, - [793] = {.lex_state = 40, .external_lex_state = 12}, - [794] = {.lex_state = 40, .external_lex_state = 12}, - [795] = {.lex_state = 24, .external_lex_state = 4}, - [796] = {.lex_state = 40, .external_lex_state = 12}, - [797] = {.lex_state = 40, .external_lex_state = 12}, - [798] = {.lex_state = 40, .external_lex_state = 12}, - [799] = {.lex_state = 40, .external_lex_state = 12}, - [800] = {.lex_state = 40, .external_lex_state = 12}, - [801] = {.lex_state = 24, .external_lex_state = 4}, - [802] = {.lex_state = 40, .external_lex_state = 12}, - [803] = {.lex_state = 40, .external_lex_state = 12}, - [804] = {.lex_state = 40, .external_lex_state = 12}, - [805] = {.lex_state = 40, .external_lex_state = 12}, - [806] = {.lex_state = 40, .external_lex_state = 12}, - [807] = {.lex_state = 40, .external_lex_state = 12}, - [808] = {.lex_state = 43, .external_lex_state = 22}, - [809] = {.lex_state = 43, .external_lex_state = 22}, - [810] = {.lex_state = 51, .external_lex_state = 12}, - [811] = {.lex_state = 51, .external_lex_state = 12}, - [812] = {.lex_state = 43, .external_lex_state = 22}, - [813] = {.lex_state = 43, .external_lex_state = 22}, - [814] = {.lex_state = 43, .external_lex_state = 15}, - [815] = {.lex_state = 43, .external_lex_state = 15}, - [816] = {.lex_state = 43, .external_lex_state = 22}, - [817] = {.lex_state = 47}, - [818] = {.lex_state = 43, .external_lex_state = 22}, - [819] = {.lex_state = 43, .external_lex_state = 22}, - [820] = {.lex_state = 51, .external_lex_state = 12}, - [821] = {.lex_state = 51, .external_lex_state = 12}, - [822] = {.lex_state = 51, .external_lex_state = 12}, - [823] = {.lex_state = 43, .external_lex_state = 22}, - [824] = {.lex_state = 51, .external_lex_state = 12}, + [792] = {.lex_state = 40, .external_lex_state = 13}, + [793] = {.lex_state = 40, .external_lex_state = 13}, + [794] = {.lex_state = 40, .external_lex_state = 13}, + [795] = {.lex_state = 24, .external_lex_state = 3}, + [796] = {.lex_state = 40, .external_lex_state = 13}, + [797] = {.lex_state = 40, .external_lex_state = 13}, + [798] = {.lex_state = 40, .external_lex_state = 13}, + [799] = {.lex_state = 40, .external_lex_state = 13}, + [800] = {.lex_state = 40, .external_lex_state = 13}, + [801] = {.lex_state = 24, .external_lex_state = 3}, + [802] = {.lex_state = 40, .external_lex_state = 13}, + [803] = {.lex_state = 40, .external_lex_state = 13}, + [804] = {.lex_state = 40, .external_lex_state = 13}, + [805] = {.lex_state = 40, .external_lex_state = 13}, + [806] = {.lex_state = 40, .external_lex_state = 13}, + [807] = {.lex_state = 40, .external_lex_state = 13}, + [808] = {.lex_state = 42, .external_lex_state = 22}, + [809] = {.lex_state = 50, .external_lex_state = 13}, + [810] = {.lex_state = 50, .external_lex_state = 13}, + [811] = {.lex_state = 42, .external_lex_state = 22}, + [812] = {.lex_state = 42, .external_lex_state = 22}, + [813] = {.lex_state = 42, .external_lex_state = 22}, + [814] = {.lex_state = 42, .external_lex_state = 15}, + [815] = {.lex_state = 42, .external_lex_state = 15}, + [816] = {.lex_state = 50, .external_lex_state = 13}, + [817] = {.lex_state = 42, .external_lex_state = 22}, + [818] = {.lex_state = 42, .external_lex_state = 22}, + [819] = {.lex_state = 46}, + [820] = {.lex_state = 42, .external_lex_state = 22}, + [821] = {.lex_state = 50, .external_lex_state = 13}, + [822] = {.lex_state = 50, .external_lex_state = 13}, + [823] = {.lex_state = 42, .external_lex_state = 22}, + [824] = {.lex_state = 50, .external_lex_state = 13}, [825] = {.lex_state = 38, .external_lex_state = 15}, - [826] = {.lex_state = 51, .external_lex_state = 12}, - [827] = {.lex_state = 51, .external_lex_state = 12}, - [828] = {.lex_state = 51, .external_lex_state = 12}, - [829] = {.lex_state = 43, .external_lex_state = 22}, - [830] = {.lex_state = 51, .external_lex_state = 12}, - [831] = {.lex_state = 51, .external_lex_state = 12}, - [832] = {.lex_state = 51, .external_lex_state = 12}, - [833] = {.lex_state = 51, .external_lex_state = 12}, - [834] = {.lex_state = 51, .external_lex_state = 12}, - [835] = {.lex_state = 51, .external_lex_state = 12}, - [836] = {.lex_state = 51, .external_lex_state = 12}, - [837] = {.lex_state = 51, .external_lex_state = 12}, - [838] = {.lex_state = 51, .external_lex_state = 12}, - [839] = {.lex_state = 51, .external_lex_state = 12}, - [840] = {.lex_state = 5, .external_lex_state = 9}, - [841] = {.lex_state = 5, .external_lex_state = 9}, - [842] = {.lex_state = 43, .external_lex_state = 22}, - [843] = {.lex_state = 43, .external_lex_state = 22}, - [844] = {.lex_state = 5, .external_lex_state = 9}, - [845] = {.lex_state = 5, .external_lex_state = 9}, - [846] = {.lex_state = 5, .external_lex_state = 4}, - [847] = {.lex_state = 5, .external_lex_state = 4}, - [848] = {.lex_state = 5, .external_lex_state = 9}, - [849] = {.lex_state = 47}, - [850] = {.lex_state = 5, .external_lex_state = 9}, - [851] = {.lex_state = 5, .external_lex_state = 9}, - [852] = {.lex_state = 43, .external_lex_state = 22}, - [853] = {.lex_state = 43, .external_lex_state = 22}, - [854] = {.lex_state = 43, .external_lex_state = 22}, - [855] = {.lex_state = 5, .external_lex_state = 9}, - [856] = {.lex_state = 43, .external_lex_state = 22}, - [857] = {.lex_state = 8, .external_lex_state = 4}, - [858] = {.lex_state = 43, .external_lex_state = 22}, - [859] = {.lex_state = 43, .external_lex_state = 22}, - [860] = {.lex_state = 43, .external_lex_state = 22}, - [861] = {.lex_state = 5, .external_lex_state = 9}, - [862] = {.lex_state = 43, .external_lex_state = 22}, - [863] = {.lex_state = 43, .external_lex_state = 22}, - [864] = {.lex_state = 43, .external_lex_state = 22}, - [865] = {.lex_state = 43, .external_lex_state = 22}, - [866] = {.lex_state = 43, .external_lex_state = 22}, - [867] = {.lex_state = 43, .external_lex_state = 22}, - [868] = {.lex_state = 43, .external_lex_state = 22}, - [869] = {.lex_state = 43, .external_lex_state = 22}, - [870] = {.lex_state = 43, .external_lex_state = 22}, - [871] = {.lex_state = 43, .external_lex_state = 22}, - [872] = {.lex_state = 5, .external_lex_state = 3}, - [873] = {.lex_state = 5, .external_lex_state = 3}, - [874] = {.lex_state = 5, .external_lex_state = 9}, - [875] = {.lex_state = 5, .external_lex_state = 9}, - [876] = {.lex_state = 5, .external_lex_state = 3}, - [877] = {.lex_state = 5, .external_lex_state = 3}, - [878] = {.lex_state = 5, .external_lex_state = 5}, - [879] = {.lex_state = 5, .external_lex_state = 5}, - [880] = {.lex_state = 5, .external_lex_state = 3}, - [881] = {.lex_state = 47}, - [882] = {.lex_state = 5, .external_lex_state = 3}, - [883] = {.lex_state = 5, .external_lex_state = 3}, - [884] = {.lex_state = 5, .external_lex_state = 9}, - [885] = {.lex_state = 5, .external_lex_state = 9}, - [886] = {.lex_state = 5, .external_lex_state = 9}, - [887] = {.lex_state = 5, .external_lex_state = 3}, - [888] = {.lex_state = 5, .external_lex_state = 9}, - [889] = {.lex_state = 8, .external_lex_state = 5}, - [890] = {.lex_state = 5, .external_lex_state = 9}, - [891] = {.lex_state = 5, .external_lex_state = 9}, - [892] = {.lex_state = 5, .external_lex_state = 9}, - [893] = {.lex_state = 5, .external_lex_state = 3}, - [894] = {.lex_state = 5, .external_lex_state = 9}, - [895] = {.lex_state = 5, .external_lex_state = 9}, - [896] = {.lex_state = 5, .external_lex_state = 9}, - [897] = {.lex_state = 5, .external_lex_state = 9}, - [898] = {.lex_state = 5, .external_lex_state = 9}, - [899] = {.lex_state = 5, .external_lex_state = 9}, - [900] = {.lex_state = 5, .external_lex_state = 9}, - [901] = {.lex_state = 5, .external_lex_state = 9}, - [902] = {.lex_state = 5, .external_lex_state = 9}, - [903] = {.lex_state = 5, .external_lex_state = 9}, - [904] = {.lex_state = 45, .external_lex_state = 20}, - [905] = {.lex_state = 45, .external_lex_state = 20}, - [906] = {.lex_state = 5, .external_lex_state = 3}, - [907] = {.lex_state = 5, .external_lex_state = 3}, - [908] = {.lex_state = 45, .external_lex_state = 20}, - [909] = {.lex_state = 45, .external_lex_state = 20}, - [910] = {.lex_state = 45, .external_lex_state = 13}, - [911] = {.lex_state = 45, .external_lex_state = 13}, - [912] = {.lex_state = 45, .external_lex_state = 20}, - [913] = {.lex_state = 47}, - [914] = {.lex_state = 45, .external_lex_state = 20}, - [915] = {.lex_state = 45, .external_lex_state = 20}, - [916] = {.lex_state = 5, .external_lex_state = 3}, - [917] = {.lex_state = 5, .external_lex_state = 3}, - [918] = {.lex_state = 5, .external_lex_state = 3}, - [919] = {.lex_state = 45, .external_lex_state = 20}, - [920] = {.lex_state = 5, .external_lex_state = 3}, - [921] = {.lex_state = 31, .external_lex_state = 13}, - [922] = {.lex_state = 5, .external_lex_state = 3}, - [923] = {.lex_state = 5, .external_lex_state = 3}, - [924] = {.lex_state = 5, .external_lex_state = 3}, - [925] = {.lex_state = 45, .external_lex_state = 20}, - [926] = {.lex_state = 5, .external_lex_state = 3}, - [927] = {.lex_state = 5, .external_lex_state = 3}, - [928] = {.lex_state = 5, .external_lex_state = 3}, - [929] = {.lex_state = 5, .external_lex_state = 3}, - [930] = {.lex_state = 5, .external_lex_state = 3}, - [931] = {.lex_state = 5, .external_lex_state = 3}, - [932] = {.lex_state = 5, .external_lex_state = 3}, - [933] = {.lex_state = 5, .external_lex_state = 3}, - [934] = {.lex_state = 5, .external_lex_state = 3}, - [935] = {.lex_state = 5, .external_lex_state = 3}, + [826] = {.lex_state = 50, .external_lex_state = 13}, + [827] = {.lex_state = 50, .external_lex_state = 13}, + [828] = {.lex_state = 50, .external_lex_state = 13}, + [829] = {.lex_state = 42, .external_lex_state = 22}, + [830] = {.lex_state = 50, .external_lex_state = 13}, + [831] = {.lex_state = 50, .external_lex_state = 13}, + [832] = {.lex_state = 50, .external_lex_state = 13}, + [833] = {.lex_state = 50, .external_lex_state = 13}, + [834] = {.lex_state = 50, .external_lex_state = 13}, + [835] = {.lex_state = 50, .external_lex_state = 13}, + [836] = {.lex_state = 50, .external_lex_state = 13}, + [837] = {.lex_state = 50, .external_lex_state = 13}, + [838] = {.lex_state = 50, .external_lex_state = 13}, + [839] = {.lex_state = 50, .external_lex_state = 13}, + [840] = {.lex_state = 1, .external_lex_state = 9}, + [841] = {.lex_state = 42, .external_lex_state = 22}, + [842] = {.lex_state = 42, .external_lex_state = 22}, + [843] = {.lex_state = 1, .external_lex_state = 9}, + [844] = {.lex_state = 1, .external_lex_state = 9}, + [845] = {.lex_state = 1, .external_lex_state = 9}, + [846] = {.lex_state = 1, .external_lex_state = 3}, + [847] = {.lex_state = 1, .external_lex_state = 3}, + [848] = {.lex_state = 42, .external_lex_state = 22}, + [849] = {.lex_state = 1, .external_lex_state = 9}, + [850] = {.lex_state = 1, .external_lex_state = 9}, + [851] = {.lex_state = 46}, + [852] = {.lex_state = 1, .external_lex_state = 9}, + [853] = {.lex_state = 42, .external_lex_state = 22}, + [854] = {.lex_state = 42, .external_lex_state = 22}, + [855] = {.lex_state = 1, .external_lex_state = 9}, + [856] = {.lex_state = 42, .external_lex_state = 22}, + [857] = {.lex_state = 8, .external_lex_state = 3}, + [858] = {.lex_state = 42, .external_lex_state = 22}, + [859] = {.lex_state = 42, .external_lex_state = 22}, + [860] = {.lex_state = 42, .external_lex_state = 22}, + [861] = {.lex_state = 1, .external_lex_state = 9}, + [862] = {.lex_state = 42, .external_lex_state = 22}, + [863] = {.lex_state = 42, .external_lex_state = 22}, + [864] = {.lex_state = 42, .external_lex_state = 22}, + [865] = {.lex_state = 42, .external_lex_state = 22}, + [866] = {.lex_state = 42, .external_lex_state = 22}, + [867] = {.lex_state = 42, .external_lex_state = 22}, + [868] = {.lex_state = 42, .external_lex_state = 22}, + [869] = {.lex_state = 42, .external_lex_state = 22}, + [870] = {.lex_state = 42, .external_lex_state = 22}, + [871] = {.lex_state = 42, .external_lex_state = 22}, + [872] = {.lex_state = 1, .external_lex_state = 5}, + [873] = {.lex_state = 1, .external_lex_state = 9}, + [874] = {.lex_state = 1, .external_lex_state = 9}, + [875] = {.lex_state = 1, .external_lex_state = 5}, + [876] = {.lex_state = 1, .external_lex_state = 5}, + [877] = {.lex_state = 1, .external_lex_state = 5}, + [878] = {.lex_state = 1, .external_lex_state = 4}, + [879] = {.lex_state = 1, .external_lex_state = 4}, + [880] = {.lex_state = 1, .external_lex_state = 9}, + [881] = {.lex_state = 1, .external_lex_state = 5}, + [882] = {.lex_state = 1, .external_lex_state = 5}, + [883] = {.lex_state = 46}, + [884] = {.lex_state = 1, .external_lex_state = 5}, + [885] = {.lex_state = 1, .external_lex_state = 9}, + [886] = {.lex_state = 1, .external_lex_state = 9}, + [887] = {.lex_state = 1, .external_lex_state = 5}, + [888] = {.lex_state = 1, .external_lex_state = 9}, + [889] = {.lex_state = 8, .external_lex_state = 4}, + [890] = {.lex_state = 1, .external_lex_state = 9}, + [891] = {.lex_state = 1, .external_lex_state = 9}, + [892] = {.lex_state = 1, .external_lex_state = 9}, + [893] = {.lex_state = 1, .external_lex_state = 5}, + [894] = {.lex_state = 1, .external_lex_state = 9}, + [895] = {.lex_state = 1, .external_lex_state = 9}, + [896] = {.lex_state = 1, .external_lex_state = 9}, + [897] = {.lex_state = 1, .external_lex_state = 9}, + [898] = {.lex_state = 1, .external_lex_state = 9}, + [899] = {.lex_state = 1, .external_lex_state = 9}, + [900] = {.lex_state = 1, .external_lex_state = 9}, + [901] = {.lex_state = 1, .external_lex_state = 9}, + [902] = {.lex_state = 1, .external_lex_state = 9}, + [903] = {.lex_state = 1, .external_lex_state = 9}, + [904] = {.lex_state = 44, .external_lex_state = 19}, + [905] = {.lex_state = 1, .external_lex_state = 5}, + [906] = {.lex_state = 1, .external_lex_state = 5}, + [907] = {.lex_state = 44, .external_lex_state = 19}, + [908] = {.lex_state = 44, .external_lex_state = 19}, + [909] = {.lex_state = 44, .external_lex_state = 19}, + [910] = {.lex_state = 44, .external_lex_state = 10}, + [911] = {.lex_state = 44, .external_lex_state = 10}, + [912] = {.lex_state = 1, .external_lex_state = 5}, + [913] = {.lex_state = 44, .external_lex_state = 19}, + [914] = {.lex_state = 44, .external_lex_state = 19}, + [915] = {.lex_state = 46}, + [916] = {.lex_state = 44, .external_lex_state = 19}, + [917] = {.lex_state = 1, .external_lex_state = 5}, + [918] = {.lex_state = 1, .external_lex_state = 5}, + [919] = {.lex_state = 44, .external_lex_state = 19}, + [920] = {.lex_state = 1, .external_lex_state = 5}, + [921] = {.lex_state = 31, .external_lex_state = 10}, + [922] = {.lex_state = 1, .external_lex_state = 5}, + [923] = {.lex_state = 1, .external_lex_state = 5}, + [924] = {.lex_state = 1, .external_lex_state = 5}, + [925] = {.lex_state = 44, .external_lex_state = 19}, + [926] = {.lex_state = 1, .external_lex_state = 5}, + [927] = {.lex_state = 1, .external_lex_state = 5}, + [928] = {.lex_state = 1, .external_lex_state = 5}, + [929] = {.lex_state = 1, .external_lex_state = 5}, + [930] = {.lex_state = 1, .external_lex_state = 5}, + [931] = {.lex_state = 1, .external_lex_state = 5}, + [932] = {.lex_state = 1, .external_lex_state = 5}, + [933] = {.lex_state = 1, .external_lex_state = 5}, + [934] = {.lex_state = 1, .external_lex_state = 5}, + [935] = {.lex_state = 1, .external_lex_state = 5}, [936] = {.lex_state = 6, .external_lex_state = 9}, - [937] = {.lex_state = 6, .external_lex_state = 9}, - [938] = {.lex_state = 45, .external_lex_state = 20}, - [939] = {.lex_state = 45, .external_lex_state = 20}, + [937] = {.lex_state = 44, .external_lex_state = 19}, + [938] = {.lex_state = 44, .external_lex_state = 19}, + [939] = {.lex_state = 6, .external_lex_state = 9}, [940] = {.lex_state = 6, .external_lex_state = 9}, [941] = {.lex_state = 6, .external_lex_state = 9}, - [942] = {.lex_state = 6, .external_lex_state = 4}, - [943] = {.lex_state = 6, .external_lex_state = 4}, - [944] = {.lex_state = 6, .external_lex_state = 9}, - [945] = {.lex_state = 47}, + [942] = {.lex_state = 6, .external_lex_state = 3}, + [943] = {.lex_state = 6, .external_lex_state = 3}, + [944] = {.lex_state = 44, .external_lex_state = 19}, + [945] = {.lex_state = 6, .external_lex_state = 9}, [946] = {.lex_state = 6, .external_lex_state = 9}, - [947] = {.lex_state = 6, .external_lex_state = 9}, - [948] = {.lex_state = 45, .external_lex_state = 20}, - [949] = {.lex_state = 45, .external_lex_state = 20}, - [950] = {.lex_state = 45, .external_lex_state = 20}, + [947] = {.lex_state = 46}, + [948] = {.lex_state = 6, .external_lex_state = 9}, + [949] = {.lex_state = 44, .external_lex_state = 19}, + [950] = {.lex_state = 44, .external_lex_state = 19}, [951] = {.lex_state = 6, .external_lex_state = 9}, - [952] = {.lex_state = 45, .external_lex_state = 20}, - [953] = {.lex_state = 8, .external_lex_state = 4}, - [954] = {.lex_state = 45, .external_lex_state = 20}, - [955] = {.lex_state = 45, .external_lex_state = 20}, - [956] = {.lex_state = 45, .external_lex_state = 20}, + [952] = {.lex_state = 44, .external_lex_state = 19}, + [953] = {.lex_state = 8, .external_lex_state = 3}, + [954] = {.lex_state = 44, .external_lex_state = 19}, + [955] = {.lex_state = 44, .external_lex_state = 19}, + [956] = {.lex_state = 44, .external_lex_state = 19}, [957] = {.lex_state = 6, .external_lex_state = 9}, - [958] = {.lex_state = 45, .external_lex_state = 20}, - [959] = {.lex_state = 45, .external_lex_state = 20}, - [960] = {.lex_state = 45, .external_lex_state = 20}, - [961] = {.lex_state = 45, .external_lex_state = 20}, - [962] = {.lex_state = 45, .external_lex_state = 20}, - [963] = {.lex_state = 45, .external_lex_state = 20}, - [964] = {.lex_state = 45, .external_lex_state = 20}, - [965] = {.lex_state = 45, .external_lex_state = 20}, - [966] = {.lex_state = 45, .external_lex_state = 20}, - [967] = {.lex_state = 45, .external_lex_state = 20}, - [968] = {.lex_state = 43, .external_lex_state = 22}, - [969] = {.lex_state = 18, .external_lex_state = 10}, + [958] = {.lex_state = 44, .external_lex_state = 19}, + [959] = {.lex_state = 44, .external_lex_state = 19}, + [960] = {.lex_state = 44, .external_lex_state = 19}, + [961] = {.lex_state = 44, .external_lex_state = 19}, + [962] = {.lex_state = 44, .external_lex_state = 19}, + [963] = {.lex_state = 44, .external_lex_state = 19}, + [964] = {.lex_state = 44, .external_lex_state = 19}, + [965] = {.lex_state = 44, .external_lex_state = 19}, + [966] = {.lex_state = 44, .external_lex_state = 19}, + [967] = {.lex_state = 44, .external_lex_state = 19}, + [968] = {.lex_state = 42, .external_lex_state = 22}, + [969] = {.lex_state = 6, .external_lex_state = 9}, [970] = {.lex_state = 6, .external_lex_state = 9}, - [971] = {.lex_state = 6, .external_lex_state = 9}, - [972] = {.lex_state = 18, .external_lex_state = 10}, - [973] = {.lex_state = 18, .external_lex_state = 10}, - [974] = {.lex_state = 43, .external_lex_state = 22}, - [975] = {.lex_state = 43, .external_lex_state = 22}, - [976] = {.lex_state = 18, .external_lex_state = 10}, - [977] = {.lex_state = 47}, - [978] = {.lex_state = 18, .external_lex_state = 10}, - [979] = {.lex_state = 18, .external_lex_state = 10}, - [980] = {.lex_state = 6, .external_lex_state = 9}, + [971] = {.lex_state = 18, .external_lex_state = 11}, + [972] = {.lex_state = 18, .external_lex_state = 11}, + [973] = {.lex_state = 18, .external_lex_state = 11}, + [974] = {.lex_state = 42, .external_lex_state = 22}, + [975] = {.lex_state = 42, .external_lex_state = 22}, + [976] = {.lex_state = 6, .external_lex_state = 9}, + [977] = {.lex_state = 18, .external_lex_state = 11}, + [978] = {.lex_state = 18, .external_lex_state = 11}, + [979] = {.lex_state = 46}, + [980] = {.lex_state = 18, .external_lex_state = 11}, [981] = {.lex_state = 6, .external_lex_state = 9}, [982] = {.lex_state = 6, .external_lex_state = 9}, - [983] = {.lex_state = 18, .external_lex_state = 10}, + [983] = {.lex_state = 18, .external_lex_state = 11}, [984] = {.lex_state = 6, .external_lex_state = 9}, [985] = {.lex_state = 38, .external_lex_state = 22}, [986] = {.lex_state = 6, .external_lex_state = 9}, [987] = {.lex_state = 6, .external_lex_state = 9}, [988] = {.lex_state = 6, .external_lex_state = 9}, - [989] = {.lex_state = 18, .external_lex_state = 10}, + [989] = {.lex_state = 18, .external_lex_state = 11}, [990] = {.lex_state = 6, .external_lex_state = 9}, [991] = {.lex_state = 6, .external_lex_state = 9}, [992] = {.lex_state = 6, .external_lex_state = 9}, @@ -5207,92 +5359,92 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [997] = {.lex_state = 6, .external_lex_state = 9}, [998] = {.lex_state = 6, .external_lex_state = 9}, [999] = {.lex_state = 6, .external_lex_state = 9}, - [1000] = {.lex_state = 18, .external_lex_state = 10}, - [1001] = {.lex_state = 3, .external_lex_state = 3}, - [1002] = {.lex_state = 18, .external_lex_state = 10}, - [1003] = {.lex_state = 18, .external_lex_state = 10}, - [1004] = {.lex_state = 3, .external_lex_state = 3}, - [1005] = {.lex_state = 3, .external_lex_state = 3}, - [1006] = {.lex_state = 18, .external_lex_state = 11}, - [1007] = {.lex_state = 18, .external_lex_state = 11}, - [1008] = {.lex_state = 3, .external_lex_state = 3}, - [1009] = {.lex_state = 47}, - [1010] = {.lex_state = 3, .external_lex_state = 3}, - [1011] = {.lex_state = 3, .external_lex_state = 3}, - [1012] = {.lex_state = 18, .external_lex_state = 10}, - [1013] = {.lex_state = 18, .external_lex_state = 10}, - [1014] = {.lex_state = 18, .external_lex_state = 10}, - [1015] = {.lex_state = 3, .external_lex_state = 3}, - [1016] = {.lex_state = 18, .external_lex_state = 10}, - [1017] = {.lex_state = 17, .external_lex_state = 11}, - [1018] = {.lex_state = 18, .external_lex_state = 10}, - [1019] = {.lex_state = 18, .external_lex_state = 10}, - [1020] = {.lex_state = 18, .external_lex_state = 10}, - [1021] = {.lex_state = 3, .external_lex_state = 3}, - [1022] = {.lex_state = 18, .external_lex_state = 10}, - [1023] = {.lex_state = 18, .external_lex_state = 10}, - [1024] = {.lex_state = 18, .external_lex_state = 10}, - [1025] = {.lex_state = 18, .external_lex_state = 10}, - [1026] = {.lex_state = 18, .external_lex_state = 10}, - [1027] = {.lex_state = 18, .external_lex_state = 10}, - [1028] = {.lex_state = 18, .external_lex_state = 10}, - [1029] = {.lex_state = 18, .external_lex_state = 10}, - [1030] = {.lex_state = 18, .external_lex_state = 10}, - [1031] = {.lex_state = 18, .external_lex_state = 10}, - [1032] = {.lex_state = 3, .external_lex_state = 3}, - [1033] = {.lex_state = 6, .external_lex_state = 9}, - [1034] = {.lex_state = 3, .external_lex_state = 3}, - [1035] = {.lex_state = 3, .external_lex_state = 3}, + [1000] = {.lex_state = 18, .external_lex_state = 11}, + [1001] = {.lex_state = 18, .external_lex_state = 11}, + [1002] = {.lex_state = 18, .external_lex_state = 11}, + [1003] = {.lex_state = 3, .external_lex_state = 5}, + [1004] = {.lex_state = 3, .external_lex_state = 5}, + [1005] = {.lex_state = 3, .external_lex_state = 5}, + [1006] = {.lex_state = 18, .external_lex_state = 12}, + [1007] = {.lex_state = 18, .external_lex_state = 12}, + [1008] = {.lex_state = 18, .external_lex_state = 11}, + [1009] = {.lex_state = 3, .external_lex_state = 5}, + [1010] = {.lex_state = 3, .external_lex_state = 5}, + [1011] = {.lex_state = 46}, + [1012] = {.lex_state = 3, .external_lex_state = 5}, + [1013] = {.lex_state = 18, .external_lex_state = 11}, + [1014] = {.lex_state = 18, .external_lex_state = 11}, + [1015] = {.lex_state = 3, .external_lex_state = 5}, + [1016] = {.lex_state = 18, .external_lex_state = 11}, + [1017] = {.lex_state = 17, .external_lex_state = 12}, + [1018] = {.lex_state = 18, .external_lex_state = 11}, + [1019] = {.lex_state = 18, .external_lex_state = 11}, + [1020] = {.lex_state = 18, .external_lex_state = 11}, + [1021] = {.lex_state = 3, .external_lex_state = 5}, + [1022] = {.lex_state = 18, .external_lex_state = 11}, + [1023] = {.lex_state = 18, .external_lex_state = 11}, + [1024] = {.lex_state = 18, .external_lex_state = 11}, + [1025] = {.lex_state = 18, .external_lex_state = 11}, + [1026] = {.lex_state = 18, .external_lex_state = 11}, + [1027] = {.lex_state = 18, .external_lex_state = 11}, + [1028] = {.lex_state = 18, .external_lex_state = 11}, + [1029] = {.lex_state = 18, .external_lex_state = 11}, + [1030] = {.lex_state = 18, .external_lex_state = 11}, + [1031] = {.lex_state = 18, .external_lex_state = 11}, + [1032] = {.lex_state = 3, .external_lex_state = 5}, + [1033] = {.lex_state = 3, .external_lex_state = 5}, + [1034] = {.lex_state = 3, .external_lex_state = 5}, + [1035] = {.lex_state = 6, .external_lex_state = 9}, [1036] = {.lex_state = 6, .external_lex_state = 9}, [1037] = {.lex_state = 6, .external_lex_state = 9}, - [1038] = {.lex_state = 3, .external_lex_state = 5}, - [1039] = {.lex_state = 3, .external_lex_state = 5}, - [1040] = {.lex_state = 6, .external_lex_state = 9}, - [1041] = {.lex_state = 47}, + [1038] = {.lex_state = 3, .external_lex_state = 4}, + [1039] = {.lex_state = 3, .external_lex_state = 4}, + [1040] = {.lex_state = 3, .external_lex_state = 5}, + [1041] = {.lex_state = 6, .external_lex_state = 9}, [1042] = {.lex_state = 6, .external_lex_state = 9}, - [1043] = {.lex_state = 6, .external_lex_state = 9}, - [1044] = {.lex_state = 3, .external_lex_state = 3}, - [1045] = {.lex_state = 3, .external_lex_state = 3}, - [1046] = {.lex_state = 3, .external_lex_state = 3}, + [1043] = {.lex_state = 46}, + [1044] = {.lex_state = 6, .external_lex_state = 9}, + [1045] = {.lex_state = 3, .external_lex_state = 5}, + [1046] = {.lex_state = 3, .external_lex_state = 5}, [1047] = {.lex_state = 6, .external_lex_state = 9}, - [1048] = {.lex_state = 3, .external_lex_state = 3}, - [1049] = {.lex_state = 2, .external_lex_state = 5}, - [1050] = {.lex_state = 3, .external_lex_state = 3}, - [1051] = {.lex_state = 3, .external_lex_state = 3}, - [1052] = {.lex_state = 3, .external_lex_state = 3}, + [1048] = {.lex_state = 3, .external_lex_state = 5}, + [1049] = {.lex_state = 2, .external_lex_state = 4}, + [1050] = {.lex_state = 3, .external_lex_state = 5}, + [1051] = {.lex_state = 3, .external_lex_state = 5}, + [1052] = {.lex_state = 3, .external_lex_state = 5}, [1053] = {.lex_state = 6, .external_lex_state = 9}, - [1054] = {.lex_state = 3, .external_lex_state = 3}, - [1055] = {.lex_state = 3, .external_lex_state = 3}, - [1056] = {.lex_state = 3, .external_lex_state = 3}, - [1057] = {.lex_state = 3, .external_lex_state = 3}, - [1058] = {.lex_state = 3, .external_lex_state = 3}, - [1059] = {.lex_state = 3, .external_lex_state = 3}, - [1060] = {.lex_state = 3, .external_lex_state = 3}, - [1061] = {.lex_state = 3, .external_lex_state = 3}, - [1062] = {.lex_state = 3, .external_lex_state = 3}, - [1063] = {.lex_state = 3, .external_lex_state = 3}, + [1054] = {.lex_state = 3, .external_lex_state = 5}, + [1055] = {.lex_state = 3, .external_lex_state = 5}, + [1056] = {.lex_state = 3, .external_lex_state = 5}, + [1057] = {.lex_state = 3, .external_lex_state = 5}, + [1058] = {.lex_state = 3, .external_lex_state = 5}, + [1059] = {.lex_state = 3, .external_lex_state = 5}, + [1060] = {.lex_state = 3, .external_lex_state = 5}, + [1061] = {.lex_state = 3, .external_lex_state = 5}, + [1062] = {.lex_state = 3, .external_lex_state = 5}, + [1063] = {.lex_state = 3, .external_lex_state = 5}, [1064] = {.lex_state = 6, .external_lex_state = 9}, - [1065] = {.lex_state = 3, .external_lex_state = 3}, + [1065] = {.lex_state = 6, .external_lex_state = 9}, [1066] = {.lex_state = 6, .external_lex_state = 9}, - [1067] = {.lex_state = 6, .external_lex_state = 9}, - [1068] = {.lex_state = 3, .external_lex_state = 3}, - [1069] = {.lex_state = 3, .external_lex_state = 3}, - [1070] = {.lex_state = 6, .external_lex_state = 4}, - [1071] = {.lex_state = 6, .external_lex_state = 4}, - [1072] = {.lex_state = 3, .external_lex_state = 3}, - [1073] = {.lex_state = 47}, - [1074] = {.lex_state = 3, .external_lex_state = 3}, - [1075] = {.lex_state = 3, .external_lex_state = 3}, - [1076] = {.lex_state = 6, .external_lex_state = 9}, + [1067] = {.lex_state = 3, .external_lex_state = 5}, + [1068] = {.lex_state = 3, .external_lex_state = 5}, + [1069] = {.lex_state = 3, .external_lex_state = 5}, + [1070] = {.lex_state = 6, .external_lex_state = 3}, + [1071] = {.lex_state = 6, .external_lex_state = 3}, + [1072] = {.lex_state = 6, .external_lex_state = 9}, + [1073] = {.lex_state = 3, .external_lex_state = 5}, + [1074] = {.lex_state = 3, .external_lex_state = 5}, + [1075] = {.lex_state = 46}, + [1076] = {.lex_state = 3, .external_lex_state = 5}, [1077] = {.lex_state = 6, .external_lex_state = 9}, [1078] = {.lex_state = 6, .external_lex_state = 9}, - [1079] = {.lex_state = 3, .external_lex_state = 3}, + [1079] = {.lex_state = 3, .external_lex_state = 5}, [1080] = {.lex_state = 6, .external_lex_state = 9}, - [1081] = {.lex_state = 8, .external_lex_state = 4}, + [1081] = {.lex_state = 8, .external_lex_state = 3}, [1082] = {.lex_state = 6, .external_lex_state = 9}, [1083] = {.lex_state = 6, .external_lex_state = 9}, [1084] = {.lex_state = 6, .external_lex_state = 9}, - [1085] = {.lex_state = 3, .external_lex_state = 3}, + [1085] = {.lex_state = 3, .external_lex_state = 5}, [1086] = {.lex_state = 6, .external_lex_state = 9}, [1087] = {.lex_state = 6, .external_lex_state = 9}, [1088] = {.lex_state = 6, .external_lex_state = 9}, @@ -5303,152 +5455,152 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1093] = {.lex_state = 6, .external_lex_state = 9}, [1094] = {.lex_state = 6, .external_lex_state = 9}, [1095] = {.lex_state = 6, .external_lex_state = 9}, - [1096] = {.lex_state = 3, .external_lex_state = 3}, - [1097] = {.lex_state = 35, .external_lex_state = 20}, - [1098] = {.lex_state = 3, .external_lex_state = 3}, - [1099] = {.lex_state = 3, .external_lex_state = 3}, - [1100] = {.lex_state = 35, .external_lex_state = 20}, - [1101] = {.lex_state = 35, .external_lex_state = 20}, - [1102] = {.lex_state = 3, .external_lex_state = 5}, - [1103] = {.lex_state = 3, .external_lex_state = 5}, - [1104] = {.lex_state = 35, .external_lex_state = 20}, - [1105] = {.lex_state = 47}, - [1106] = {.lex_state = 35, .external_lex_state = 20}, - [1107] = {.lex_state = 35, .external_lex_state = 20}, - [1108] = {.lex_state = 3, .external_lex_state = 3}, - [1109] = {.lex_state = 3, .external_lex_state = 3}, - [1110] = {.lex_state = 3, .external_lex_state = 3}, - [1111] = {.lex_state = 35, .external_lex_state = 20}, - [1112] = {.lex_state = 3, .external_lex_state = 3}, - [1113] = {.lex_state = 2, .external_lex_state = 5}, - [1114] = {.lex_state = 3, .external_lex_state = 3}, - [1115] = {.lex_state = 3, .external_lex_state = 3}, - [1116] = {.lex_state = 3, .external_lex_state = 3}, - [1117] = {.lex_state = 35, .external_lex_state = 20}, - [1118] = {.lex_state = 3, .external_lex_state = 3}, - [1119] = {.lex_state = 3, .external_lex_state = 3}, - [1120] = {.lex_state = 3, .external_lex_state = 3}, - [1121] = {.lex_state = 3, .external_lex_state = 3}, - [1122] = {.lex_state = 3, .external_lex_state = 3}, - [1123] = {.lex_state = 3, .external_lex_state = 3}, - [1124] = {.lex_state = 3, .external_lex_state = 3}, - [1125] = {.lex_state = 3, .external_lex_state = 3}, - [1126] = {.lex_state = 3, .external_lex_state = 3}, - [1127] = {.lex_state = 3, .external_lex_state = 3}, - [1128] = {.lex_state = 42, .external_lex_state = 20}, - [1129] = {.lex_state = 47, .external_lex_state = 12}, - [1130] = {.lex_state = 35, .external_lex_state = 20}, - [1131] = {.lex_state = 35, .external_lex_state = 20}, - [1132] = {.lex_state = 47, .external_lex_state = 12}, - [1133] = {.lex_state = 47, .external_lex_state = 12}, - [1134] = {.lex_state = 42, .external_lex_state = 13}, - [1135] = {.lex_state = 42, .external_lex_state = 13}, - [1136] = {.lex_state = 47, .external_lex_state = 12}, - [1137] = {.lex_state = 47}, - [1138] = {.lex_state = 47, .external_lex_state = 12}, - [1139] = {.lex_state = 47, .external_lex_state = 12}, - [1140] = {.lex_state = 35, .external_lex_state = 20}, - [1141] = {.lex_state = 35, .external_lex_state = 20}, - [1142] = {.lex_state = 35, .external_lex_state = 20}, - [1143] = {.lex_state = 47, .external_lex_state = 12}, - [1144] = {.lex_state = 35, .external_lex_state = 20}, - [1145] = {.lex_state = 37, .external_lex_state = 13}, - [1146] = {.lex_state = 35, .external_lex_state = 20}, - [1147] = {.lex_state = 35, .external_lex_state = 20}, - [1148] = {.lex_state = 35, .external_lex_state = 20}, - [1149] = {.lex_state = 47, .external_lex_state = 12}, - [1150] = {.lex_state = 35, .external_lex_state = 20}, - [1151] = {.lex_state = 35, .external_lex_state = 20}, - [1152] = {.lex_state = 35, .external_lex_state = 20}, - [1153] = {.lex_state = 35, .external_lex_state = 20}, - [1154] = {.lex_state = 35, .external_lex_state = 20}, - [1155] = {.lex_state = 35, .external_lex_state = 20}, - [1156] = {.lex_state = 35, .external_lex_state = 20}, - [1157] = {.lex_state = 35, .external_lex_state = 20}, - [1158] = {.lex_state = 35, .external_lex_state = 20}, - [1159] = {.lex_state = 35, .external_lex_state = 20}, - [1160] = {.lex_state = 47, .external_lex_state = 12}, - [1161] = {.lex_state = 22, .external_lex_state = 10}, - [1162] = {.lex_state = 47, .external_lex_state = 12}, - [1163] = {.lex_state = 47, .external_lex_state = 12}, - [1164] = {.lex_state = 22, .external_lex_state = 10}, - [1165] = {.lex_state = 22, .external_lex_state = 10}, - [1166] = {.lex_state = 47}, - [1167] = {.lex_state = 47}, - [1168] = {.lex_state = 22, .external_lex_state = 10}, - [1169] = {.lex_state = 47}, - [1170] = {.lex_state = 22, .external_lex_state = 10}, - [1171] = {.lex_state = 22, .external_lex_state = 10}, - [1172] = {.lex_state = 47, .external_lex_state = 12}, - [1173] = {.lex_state = 47, .external_lex_state = 12}, - [1174] = {.lex_state = 47, .external_lex_state = 12}, - [1175] = {.lex_state = 22, .external_lex_state = 10}, - [1176] = {.lex_state = 47, .external_lex_state = 12}, + [1096] = {.lex_state = 3, .external_lex_state = 5}, + [1097] = {.lex_state = 3, .external_lex_state = 5}, + [1098] = {.lex_state = 3, .external_lex_state = 5}, + [1099] = {.lex_state = 51, .external_lex_state = 19}, + [1100] = {.lex_state = 51, .external_lex_state = 19}, + [1101] = {.lex_state = 51, .external_lex_state = 19}, + [1102] = {.lex_state = 3, .external_lex_state = 4}, + [1103] = {.lex_state = 3, .external_lex_state = 4}, + [1104] = {.lex_state = 3, .external_lex_state = 5}, + [1105] = {.lex_state = 51, .external_lex_state = 19}, + [1106] = {.lex_state = 51, .external_lex_state = 19}, + [1107] = {.lex_state = 46}, + [1108] = {.lex_state = 51, .external_lex_state = 19}, + [1109] = {.lex_state = 3, .external_lex_state = 5}, + [1110] = {.lex_state = 3, .external_lex_state = 5}, + [1111] = {.lex_state = 51, .external_lex_state = 19}, + [1112] = {.lex_state = 3, .external_lex_state = 5}, + [1113] = {.lex_state = 2, .external_lex_state = 4}, + [1114] = {.lex_state = 3, .external_lex_state = 5}, + [1115] = {.lex_state = 3, .external_lex_state = 5}, + [1116] = {.lex_state = 3, .external_lex_state = 5}, + [1117] = {.lex_state = 51, .external_lex_state = 19}, + [1118] = {.lex_state = 3, .external_lex_state = 5}, + [1119] = {.lex_state = 3, .external_lex_state = 5}, + [1120] = {.lex_state = 3, .external_lex_state = 5}, + [1121] = {.lex_state = 3, .external_lex_state = 5}, + [1122] = {.lex_state = 3, .external_lex_state = 5}, + [1123] = {.lex_state = 3, .external_lex_state = 5}, + [1124] = {.lex_state = 3, .external_lex_state = 5}, + [1125] = {.lex_state = 3, .external_lex_state = 5}, + [1126] = {.lex_state = 3, .external_lex_state = 5}, + [1127] = {.lex_state = 3, .external_lex_state = 5}, + [1128] = {.lex_state = 47, .external_lex_state = 19}, + [1129] = {.lex_state = 51, .external_lex_state = 19}, + [1130] = {.lex_state = 51, .external_lex_state = 19}, + [1131] = {.lex_state = 46, .external_lex_state = 13}, + [1132] = {.lex_state = 46, .external_lex_state = 13}, + [1133] = {.lex_state = 46, .external_lex_state = 13}, + [1134] = {.lex_state = 47, .external_lex_state = 10}, + [1135] = {.lex_state = 47, .external_lex_state = 10}, + [1136] = {.lex_state = 51, .external_lex_state = 19}, + [1137] = {.lex_state = 46, .external_lex_state = 13}, + [1138] = {.lex_state = 46, .external_lex_state = 13}, + [1139] = {.lex_state = 46}, + [1140] = {.lex_state = 46, .external_lex_state = 13}, + [1141] = {.lex_state = 51, .external_lex_state = 19}, + [1142] = {.lex_state = 51, .external_lex_state = 19}, + [1143] = {.lex_state = 46, .external_lex_state = 13}, + [1144] = {.lex_state = 51, .external_lex_state = 19}, + [1145] = {.lex_state = 37, .external_lex_state = 10}, + [1146] = {.lex_state = 51, .external_lex_state = 19}, + [1147] = {.lex_state = 51, .external_lex_state = 19}, + [1148] = {.lex_state = 51, .external_lex_state = 19}, + [1149] = {.lex_state = 46, .external_lex_state = 13}, + [1150] = {.lex_state = 51, .external_lex_state = 19}, + [1151] = {.lex_state = 51, .external_lex_state = 19}, + [1152] = {.lex_state = 51, .external_lex_state = 19}, + [1153] = {.lex_state = 51, .external_lex_state = 19}, + [1154] = {.lex_state = 51, .external_lex_state = 19}, + [1155] = {.lex_state = 51, .external_lex_state = 19}, + [1156] = {.lex_state = 51, .external_lex_state = 19}, + [1157] = {.lex_state = 51, .external_lex_state = 19}, + [1158] = {.lex_state = 51, .external_lex_state = 19}, + [1159] = {.lex_state = 51, .external_lex_state = 19}, + [1160] = {.lex_state = 46, .external_lex_state = 13}, + [1161] = {.lex_state = 46, .external_lex_state = 13}, + [1162] = {.lex_state = 46, .external_lex_state = 13}, + [1163] = {.lex_state = 22, .external_lex_state = 11}, + [1164] = {.lex_state = 22, .external_lex_state = 11}, + [1165] = {.lex_state = 22, .external_lex_state = 11}, + [1166] = {.lex_state = 46}, + [1167] = {.lex_state = 46}, + [1168] = {.lex_state = 46, .external_lex_state = 13}, + [1169] = {.lex_state = 22, .external_lex_state = 11}, + [1170] = {.lex_state = 22, .external_lex_state = 11}, + [1171] = {.lex_state = 46}, + [1172] = {.lex_state = 22, .external_lex_state = 11}, + [1173] = {.lex_state = 46, .external_lex_state = 13}, + [1174] = {.lex_state = 46, .external_lex_state = 13}, + [1175] = {.lex_state = 22, .external_lex_state = 11}, + [1176] = {.lex_state = 46, .external_lex_state = 13}, [1177] = {.lex_state = 32}, - [1178] = {.lex_state = 47, .external_lex_state = 12}, - [1179] = {.lex_state = 47, .external_lex_state = 12}, - [1180] = {.lex_state = 47, .external_lex_state = 12}, - [1181] = {.lex_state = 22, .external_lex_state = 10}, - [1182] = {.lex_state = 47, .external_lex_state = 12}, - [1183] = {.lex_state = 47, .external_lex_state = 12}, - [1184] = {.lex_state = 47, .external_lex_state = 12}, - [1185] = {.lex_state = 47, .external_lex_state = 12}, - [1186] = {.lex_state = 47, .external_lex_state = 12}, - [1187] = {.lex_state = 47, .external_lex_state = 12}, - [1188] = {.lex_state = 47, .external_lex_state = 12}, - [1189] = {.lex_state = 47, .external_lex_state = 12}, - [1190] = {.lex_state = 47, .external_lex_state = 12}, - [1191] = {.lex_state = 47, .external_lex_state = 12}, - [1192] = {.lex_state = 22, .external_lex_state = 10}, - [1193] = {.lex_state = 23, .external_lex_state = 3}, - [1194] = {.lex_state = 22, .external_lex_state = 10}, - [1195] = {.lex_state = 22, .external_lex_state = 10}, - [1196] = {.lex_state = 23, .external_lex_state = 3}, - [1197] = {.lex_state = 23, .external_lex_state = 3}, - [1198] = {.lex_state = 22, .external_lex_state = 11}, - [1199] = {.lex_state = 22, .external_lex_state = 11}, - [1200] = {.lex_state = 23, .external_lex_state = 3}, - [1201] = {.lex_state = 47}, - [1202] = {.lex_state = 23, .external_lex_state = 3}, - [1203] = {.lex_state = 23, .external_lex_state = 3}, - [1204] = {.lex_state = 22, .external_lex_state = 10}, - [1205] = {.lex_state = 22, .external_lex_state = 10}, - [1206] = {.lex_state = 22, .external_lex_state = 10}, - [1207] = {.lex_state = 23, .external_lex_state = 3}, - [1208] = {.lex_state = 22, .external_lex_state = 10}, - [1209] = {.lex_state = 27, .external_lex_state = 11}, - [1210] = {.lex_state = 22, .external_lex_state = 10}, - [1211] = {.lex_state = 22, .external_lex_state = 10}, - [1212] = {.lex_state = 22, .external_lex_state = 10}, - [1213] = {.lex_state = 23, .external_lex_state = 3}, - [1214] = {.lex_state = 22, .external_lex_state = 10}, - [1215] = {.lex_state = 22, .external_lex_state = 10}, - [1216] = {.lex_state = 22, .external_lex_state = 10}, - [1217] = {.lex_state = 22, .external_lex_state = 10}, - [1218] = {.lex_state = 22, .external_lex_state = 10}, - [1219] = {.lex_state = 22, .external_lex_state = 10}, - [1220] = {.lex_state = 22, .external_lex_state = 10}, - [1221] = {.lex_state = 22, .external_lex_state = 10}, - [1222] = {.lex_state = 22, .external_lex_state = 10}, - [1223] = {.lex_state = 22, .external_lex_state = 10}, - [1224] = {.lex_state = 23, .external_lex_state = 3}, - [1225] = {.lex_state = 24, .external_lex_state = 9}, + [1178] = {.lex_state = 46, .external_lex_state = 13}, + [1179] = {.lex_state = 46, .external_lex_state = 13}, + [1180] = {.lex_state = 46, .external_lex_state = 13}, + [1181] = {.lex_state = 22, .external_lex_state = 11}, + [1182] = {.lex_state = 46, .external_lex_state = 13}, + [1183] = {.lex_state = 46, .external_lex_state = 13}, + [1184] = {.lex_state = 46, .external_lex_state = 13}, + [1185] = {.lex_state = 46, .external_lex_state = 13}, + [1186] = {.lex_state = 46, .external_lex_state = 13}, + [1187] = {.lex_state = 46, .external_lex_state = 13}, + [1188] = {.lex_state = 46, .external_lex_state = 13}, + [1189] = {.lex_state = 46, .external_lex_state = 13}, + [1190] = {.lex_state = 46, .external_lex_state = 13}, + [1191] = {.lex_state = 46, .external_lex_state = 13}, + [1192] = {.lex_state = 22, .external_lex_state = 11}, + [1193] = {.lex_state = 22, .external_lex_state = 11}, + [1194] = {.lex_state = 22, .external_lex_state = 11}, + [1195] = {.lex_state = 23, .external_lex_state = 5}, + [1196] = {.lex_state = 23, .external_lex_state = 5}, + [1197] = {.lex_state = 23, .external_lex_state = 5}, + [1198] = {.lex_state = 22, .external_lex_state = 12}, + [1199] = {.lex_state = 22, .external_lex_state = 12}, + [1200] = {.lex_state = 22, .external_lex_state = 11}, + [1201] = {.lex_state = 23, .external_lex_state = 5}, + [1202] = {.lex_state = 23, .external_lex_state = 5}, + [1203] = {.lex_state = 46}, + [1204] = {.lex_state = 23, .external_lex_state = 5}, + [1205] = {.lex_state = 22, .external_lex_state = 11}, + [1206] = {.lex_state = 22, .external_lex_state = 11}, + [1207] = {.lex_state = 23, .external_lex_state = 5}, + [1208] = {.lex_state = 22, .external_lex_state = 11}, + [1209] = {.lex_state = 27, .external_lex_state = 12}, + [1210] = {.lex_state = 22, .external_lex_state = 11}, + [1211] = {.lex_state = 22, .external_lex_state = 11}, + [1212] = {.lex_state = 22, .external_lex_state = 11}, + [1213] = {.lex_state = 23, .external_lex_state = 5}, + [1214] = {.lex_state = 22, .external_lex_state = 11}, + [1215] = {.lex_state = 22, .external_lex_state = 11}, + [1216] = {.lex_state = 22, .external_lex_state = 11}, + [1217] = {.lex_state = 22, .external_lex_state = 11}, + [1218] = {.lex_state = 22, .external_lex_state = 11}, + [1219] = {.lex_state = 22, .external_lex_state = 11}, + [1220] = {.lex_state = 22, .external_lex_state = 11}, + [1221] = {.lex_state = 22, .external_lex_state = 11}, + [1222] = {.lex_state = 22, .external_lex_state = 11}, + [1223] = {.lex_state = 22, .external_lex_state = 11}, + [1224] = {.lex_state = 23, .external_lex_state = 5}, + [1225] = {.lex_state = 9, .external_lex_state = 23}, [1226] = {.lex_state = 9, .external_lex_state = 23}, - [1227] = {.lex_state = 9, .external_lex_state = 23}, + [1227] = {.lex_state = 24, .external_lex_state = 9}, [1228] = {.lex_state = 24, .external_lex_state = 9}, [1229] = {.lex_state = 24, .external_lex_state = 9}, - [1230] = {.lex_state = 23, .external_lex_state = 5}, - [1231] = {.lex_state = 23, .external_lex_state = 5}, - [1232] = {.lex_state = 24, .external_lex_state = 9}, - [1233] = {.lex_state = 47}, + [1230] = {.lex_state = 23, .external_lex_state = 4}, + [1231] = {.lex_state = 23, .external_lex_state = 4}, + [1232] = {.lex_state = 9, .external_lex_state = 23}, + [1233] = {.lex_state = 24, .external_lex_state = 9}, [1234] = {.lex_state = 24, .external_lex_state = 9}, - [1235] = {.lex_state = 24, .external_lex_state = 9}, - [1236] = {.lex_state = 9, .external_lex_state = 23}, + [1235] = {.lex_state = 46}, + [1236] = {.lex_state = 24, .external_lex_state = 9}, [1237] = {.lex_state = 9, .external_lex_state = 23}, [1238] = {.lex_state = 9, .external_lex_state = 23}, [1239] = {.lex_state = 24, .external_lex_state = 9}, [1240] = {.lex_state = 9, .external_lex_state = 23}, - [1241] = {.lex_state = 28, .external_lex_state = 5}, + [1241] = {.lex_state = 28, .external_lex_state = 4}, [1242] = {.lex_state = 9, .external_lex_state = 23}, [1243] = {.lex_state = 9, .external_lex_state = 23}, [1244] = {.lex_state = 9, .external_lex_state = 23}, @@ -5464,55 +5616,55 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1254] = {.lex_state = 9, .external_lex_state = 23}, [1255] = {.lex_state = 9, .external_lex_state = 23}, [1256] = {.lex_state = 24, .external_lex_state = 9}, - [1257] = {.lex_state = 24, .external_lex_state = 3}, - [1258] = {.lex_state = 23, .external_lex_state = 3}, - [1259] = {.lex_state = 23, .external_lex_state = 3}, - [1260] = {.lex_state = 24, .external_lex_state = 3}, - [1261] = {.lex_state = 24, .external_lex_state = 3}, - [1262] = {.lex_state = 24, .external_lex_state = 4}, - [1263] = {.lex_state = 24, .external_lex_state = 4}, - [1264] = {.lex_state = 24, .external_lex_state = 3}, - [1265] = {.lex_state = 47}, - [1266] = {.lex_state = 24, .external_lex_state = 3}, - [1267] = {.lex_state = 24, .external_lex_state = 3}, - [1268] = {.lex_state = 23, .external_lex_state = 3}, - [1269] = {.lex_state = 23, .external_lex_state = 3}, - [1270] = {.lex_state = 23, .external_lex_state = 3}, - [1271] = {.lex_state = 24, .external_lex_state = 3}, - [1272] = {.lex_state = 23, .external_lex_state = 3}, - [1273] = {.lex_state = 29, .external_lex_state = 4}, - [1274] = {.lex_state = 23, .external_lex_state = 3}, - [1275] = {.lex_state = 23, .external_lex_state = 3}, - [1276] = {.lex_state = 23, .external_lex_state = 3}, - [1277] = {.lex_state = 24, .external_lex_state = 3}, - [1278] = {.lex_state = 23, .external_lex_state = 3}, - [1279] = {.lex_state = 23, .external_lex_state = 3}, - [1280] = {.lex_state = 23, .external_lex_state = 3}, - [1281] = {.lex_state = 23, .external_lex_state = 3}, - [1282] = {.lex_state = 23, .external_lex_state = 3}, - [1283] = {.lex_state = 23, .external_lex_state = 3}, - [1284] = {.lex_state = 23, .external_lex_state = 3}, - [1285] = {.lex_state = 23, .external_lex_state = 3}, - [1286] = {.lex_state = 23, .external_lex_state = 3}, - [1287] = {.lex_state = 23, .external_lex_state = 3}, - [1288] = {.lex_state = 24, .external_lex_state = 3}, - [1289] = {.lex_state = 25, .external_lex_state = 9}, + [1257] = {.lex_state = 23, .external_lex_state = 5}, + [1258] = {.lex_state = 23, .external_lex_state = 5}, + [1259] = {.lex_state = 24, .external_lex_state = 5}, + [1260] = {.lex_state = 24, .external_lex_state = 5}, + [1261] = {.lex_state = 24, .external_lex_state = 5}, + [1262] = {.lex_state = 24, .external_lex_state = 3}, + [1263] = {.lex_state = 24, .external_lex_state = 3}, + [1264] = {.lex_state = 23, .external_lex_state = 5}, + [1265] = {.lex_state = 24, .external_lex_state = 5}, + [1266] = {.lex_state = 24, .external_lex_state = 5}, + [1267] = {.lex_state = 46}, + [1268] = {.lex_state = 24, .external_lex_state = 5}, + [1269] = {.lex_state = 23, .external_lex_state = 5}, + [1270] = {.lex_state = 23, .external_lex_state = 5}, + [1271] = {.lex_state = 24, .external_lex_state = 5}, + [1272] = {.lex_state = 23, .external_lex_state = 5}, + [1273] = {.lex_state = 29, .external_lex_state = 3}, + [1274] = {.lex_state = 23, .external_lex_state = 5}, + [1275] = {.lex_state = 23, .external_lex_state = 5}, + [1276] = {.lex_state = 23, .external_lex_state = 5}, + [1277] = {.lex_state = 24, .external_lex_state = 5}, + [1278] = {.lex_state = 23, .external_lex_state = 5}, + [1279] = {.lex_state = 23, .external_lex_state = 5}, + [1280] = {.lex_state = 23, .external_lex_state = 5}, + [1281] = {.lex_state = 23, .external_lex_state = 5}, + [1282] = {.lex_state = 23, .external_lex_state = 5}, + [1283] = {.lex_state = 23, .external_lex_state = 5}, + [1284] = {.lex_state = 23, .external_lex_state = 5}, + [1285] = {.lex_state = 23, .external_lex_state = 5}, + [1286] = {.lex_state = 23, .external_lex_state = 5}, + [1287] = {.lex_state = 23, .external_lex_state = 5}, + [1288] = {.lex_state = 24, .external_lex_state = 5}, + [1289] = {.lex_state = 24, .external_lex_state = 9}, [1290] = {.lex_state = 24, .external_lex_state = 9}, - [1291] = {.lex_state = 24, .external_lex_state = 9}, + [1291] = {.lex_state = 25, .external_lex_state = 9}, [1292] = {.lex_state = 25, .external_lex_state = 9}, [1293] = {.lex_state = 25, .external_lex_state = 9}, - [1294] = {.lex_state = 24, .external_lex_state = 5}, - [1295] = {.lex_state = 24, .external_lex_state = 5}, - [1296] = {.lex_state = 25, .external_lex_state = 9}, - [1297] = {.lex_state = 47}, + [1294] = {.lex_state = 24, .external_lex_state = 4}, + [1295] = {.lex_state = 24, .external_lex_state = 4}, + [1296] = {.lex_state = 24, .external_lex_state = 9}, + [1297] = {.lex_state = 25, .external_lex_state = 9}, [1298] = {.lex_state = 25, .external_lex_state = 9}, - [1299] = {.lex_state = 25, .external_lex_state = 9}, - [1300] = {.lex_state = 24, .external_lex_state = 9}, + [1299] = {.lex_state = 46}, + [1300] = {.lex_state = 25, .external_lex_state = 9}, [1301] = {.lex_state = 24, .external_lex_state = 9}, [1302] = {.lex_state = 24, .external_lex_state = 9}, [1303] = {.lex_state = 25, .external_lex_state = 9}, [1304] = {.lex_state = 24, .external_lex_state = 9}, - [1305] = {.lex_state = 29, .external_lex_state = 5}, + [1305] = {.lex_state = 29, .external_lex_state = 4}, [1306] = {.lex_state = 24, .external_lex_state = 9}, [1307] = {.lex_state = 24, .external_lex_state = 9}, [1308] = {.lex_state = 24, .external_lex_state = 9}, @@ -5528,35 +5680,35 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1318] = {.lex_state = 24, .external_lex_state = 9}, [1319] = {.lex_state = 24, .external_lex_state = 9}, [1320] = {.lex_state = 25, .external_lex_state = 9}, - [1321] = {.lex_state = 24, .external_lex_state = 3}, - [1322] = {.lex_state = 24, .external_lex_state = 3}, - [1323] = {.lex_state = 25, .external_lex_state = 4}, - [1324] = {.lex_state = 25, .external_lex_state = 4}, - [1325] = {.lex_state = 24, .external_lex_state = 3}, - [1326] = {.lex_state = 24, .external_lex_state = 3}, - [1327] = {.lex_state = 24, .external_lex_state = 3}, - [1328] = {.lex_state = 24, .external_lex_state = 3}, - [1329] = {.lex_state = 29, .external_lex_state = 4}, - [1330] = {.lex_state = 24, .external_lex_state = 3}, - [1331] = {.lex_state = 24, .external_lex_state = 3}, - [1332] = {.lex_state = 24, .external_lex_state = 3}, - [1333] = {.lex_state = 24, .external_lex_state = 3}, - [1334] = {.lex_state = 24, .external_lex_state = 3}, - [1335] = {.lex_state = 24, .external_lex_state = 3}, - [1336] = {.lex_state = 24, .external_lex_state = 3}, - [1337] = {.lex_state = 24, .external_lex_state = 3}, - [1338] = {.lex_state = 24, .external_lex_state = 3}, - [1339] = {.lex_state = 24, .external_lex_state = 3}, - [1340] = {.lex_state = 24, .external_lex_state = 3}, - [1341] = {.lex_state = 24, .external_lex_state = 3}, - [1342] = {.lex_state = 24, .external_lex_state = 3}, + [1321] = {.lex_state = 24, .external_lex_state = 5}, + [1322] = {.lex_state = 24, .external_lex_state = 5}, + [1323] = {.lex_state = 25, .external_lex_state = 3}, + [1324] = {.lex_state = 25, .external_lex_state = 3}, + [1325] = {.lex_state = 24, .external_lex_state = 5}, + [1326] = {.lex_state = 24, .external_lex_state = 5}, + [1327] = {.lex_state = 24, .external_lex_state = 5}, + [1328] = {.lex_state = 24, .external_lex_state = 5}, + [1329] = {.lex_state = 29, .external_lex_state = 3}, + [1330] = {.lex_state = 24, .external_lex_state = 5}, + [1331] = {.lex_state = 24, .external_lex_state = 5}, + [1332] = {.lex_state = 24, .external_lex_state = 5}, + [1333] = {.lex_state = 24, .external_lex_state = 5}, + [1334] = {.lex_state = 24, .external_lex_state = 5}, + [1335] = {.lex_state = 24, .external_lex_state = 5}, + [1336] = {.lex_state = 24, .external_lex_state = 5}, + [1337] = {.lex_state = 24, .external_lex_state = 5}, + [1338] = {.lex_state = 24, .external_lex_state = 5}, + [1339] = {.lex_state = 24, .external_lex_state = 5}, + [1340] = {.lex_state = 24, .external_lex_state = 5}, + [1341] = {.lex_state = 24, .external_lex_state = 5}, + [1342] = {.lex_state = 24, .external_lex_state = 5}, [1343] = {.lex_state = 25, .external_lex_state = 9}, [1344] = {.lex_state = 25, .external_lex_state = 9}, [1345] = {.lex_state = 25, .external_lex_state = 9}, [1346] = {.lex_state = 25, .external_lex_state = 9}, [1347] = {.lex_state = 25, .external_lex_state = 9}, [1348] = {.lex_state = 25, .external_lex_state = 9}, - [1349] = {.lex_state = 14, .external_lex_state = 5}, + [1349] = {.lex_state = 14, .external_lex_state = 4}, [1350] = {.lex_state = 25, .external_lex_state = 9}, [1351] = {.lex_state = 25, .external_lex_state = 9}, [1352] = {.lex_state = 25, .external_lex_state = 9}, @@ -5570,1274 +5722,1274 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1360] = {.lex_state = 25, .external_lex_state = 9}, [1361] = {.lex_state = 25, .external_lex_state = 9}, [1362] = {.lex_state = 25, .external_lex_state = 9}, - [1363] = {.lex_state = 47}, + [1363] = {.lex_state = 46}, [1364] = {.lex_state = 37}, - [1365] = {.lex_state = 35, .external_lex_state = 6}, - [1366] = {.lex_state = 51}, - [1367] = {.lex_state = 47}, + [1365] = {.lex_state = 35, .external_lex_state = 7}, + [1366] = {.lex_state = 50}, + [1367] = {.lex_state = 9}, [1368] = {.lex_state = 9}, [1369] = {.lex_state = 9}, - [1370] = {.lex_state = 40}, - [1371] = {.lex_state = 3, .external_lex_state = 5}, - [1372] = {.lex_state = 6, .external_lex_state = 4}, - [1373] = {.lex_state = 35, .external_lex_state = 6}, - [1374] = {.lex_state = 43}, - [1375] = {.lex_state = 44, .external_lex_state = 13}, - [1376] = {.lex_state = 44, .external_lex_state = 13}, - [1377] = {.lex_state = 47, .external_lex_state = 14}, - [1378] = {.lex_state = 47}, - [1379] = {.lex_state = 47, .external_lex_state = 2}, - [1380] = {.lex_state = 9}, - [1381] = {.lex_state = 39}, - [1382] = {.lex_state = 51}, + [1370] = {.lex_state = 46}, + [1371] = {.lex_state = 43, .external_lex_state = 10}, + [1372] = {.lex_state = 43, .external_lex_state = 10}, + [1373] = {.lex_state = 51}, + [1374] = {.lex_state = 3, .external_lex_state = 4}, + [1375] = {.lex_state = 6, .external_lex_state = 3}, + [1376] = {.lex_state = 35, .external_lex_state = 7}, + [1377] = {.lex_state = 42}, + [1378] = {.lex_state = 46, .external_lex_state = 14}, + [1379] = {.lex_state = 46}, + [1380] = {.lex_state = 39}, + [1381] = {.lex_state = 50}, + [1382] = {.lex_state = 46, .external_lex_state = 2}, [1383] = {.lex_state = 9}, - [1384] = {.lex_state = 47}, - [1385] = {.lex_state = 43, .external_lex_state = 15}, + [1384] = {.lex_state = 51}, + [1385] = {.lex_state = 42, .external_lex_state = 15}, [1386] = {.lex_state = 40}, [1387] = {.lex_state = 9, .external_lex_state = 17}, - [1388] = {.lex_state = 47}, - [1389] = {.lex_state = 9}, - [1390] = {.lex_state = 9, .external_lex_state = 2}, - [1391] = {.lex_state = 42}, - [1392] = {.lex_state = 45, .external_lex_state = 21}, - [1393] = {.lex_state = 45, .external_lex_state = 13}, - [1394] = {.lex_state = 44, .external_lex_state = 13}, - [1395] = {.lex_state = 44, .external_lex_state = 13}, - [1396] = {.lex_state = 48, .external_lex_state = 13}, - [1397] = {.lex_state = 45, .external_lex_state = 21}, - [1398] = {.lex_state = 45, .external_lex_state = 13}, - [1399] = {.lex_state = 47}, - [1400] = {.lex_state = 52, .external_lex_state = 22}, - [1401] = {.lex_state = 43, .external_lex_state = 22}, - [1402] = {.lex_state = 52, .external_lex_state = 22}, + [1388] = {.lex_state = 46}, + [1389] = {.lex_state = 44, .external_lex_state = 20}, + [1390] = {.lex_state = 44, .external_lex_state = 10}, + [1391] = {.lex_state = 43, .external_lex_state = 10}, + [1392] = {.lex_state = 43, .external_lex_state = 10}, + [1393] = {.lex_state = 47, .external_lex_state = 10}, + [1394] = {.lex_state = 44, .external_lex_state = 20}, + [1395] = {.lex_state = 44, .external_lex_state = 10}, + [1396] = {.lex_state = 9}, + [1397] = {.lex_state = 9, .external_lex_state = 2}, + [1398] = {.lex_state = 41}, + [1399] = {.lex_state = 46}, + [1400] = {.lex_state = 51, .external_lex_state = 22}, + [1401] = {.lex_state = 42, .external_lex_state = 22}, + [1402] = {.lex_state = 51, .external_lex_state = 22}, [1403] = {.lex_state = 39}, - [1404] = {.lex_state = 47}, + [1404] = {.lex_state = 51}, [1405] = {.lex_state = 9, .external_lex_state = 2}, [1406] = {.lex_state = 9, .external_lex_state = 23}, - [1407] = {.lex_state = 9}, - [1408] = {.lex_state = 4, .external_lex_state = 11}, - [1409] = {.lex_state = 47}, - [1410] = {.lex_state = 47}, - [1411] = {.lex_state = 9, .external_lex_state = 2}, - [1412] = {.lex_state = 50}, - [1413] = {.lex_state = 50}, - [1414] = {.lex_state = 45, .external_lex_state = 13}, - [1415] = {.lex_state = 45, .external_lex_state = 13}, - [1416] = {.lex_state = 45, .external_lex_state = 21}, - [1417] = {.lex_state = 48, .external_lex_state = 13}, - [1418] = {.lex_state = 45, .external_lex_state = 21}, - [1419] = {.lex_state = 45, .external_lex_state = 13}, - [1420] = {.lex_state = 35, .external_lex_state = 20}, - [1421] = {.lex_state = 42, .external_lex_state = 13}, - [1422] = {.lex_state = 35, .external_lex_state = 13}, - [1423] = {.lex_state = 45, .external_lex_state = 13}, - [1424] = {.lex_state = 45, .external_lex_state = 13}, - [1425] = {.lex_state = 47}, - [1426] = {.lex_state = 49, .external_lex_state = 15}, - [1427] = {.lex_state = 52, .external_lex_state = 15}, - [1428] = {.lex_state = 52, .external_lex_state = 15}, + [1407] = {.lex_state = 44, .external_lex_state = 10}, + [1408] = {.lex_state = 44, .external_lex_state = 10}, + [1409] = {.lex_state = 44, .external_lex_state = 20}, + [1410] = {.lex_state = 47, .external_lex_state = 10}, + [1411] = {.lex_state = 44, .external_lex_state = 20}, + [1412] = {.lex_state = 44, .external_lex_state = 10}, + [1413] = {.lex_state = 51, .external_lex_state = 19}, + [1414] = {.lex_state = 47, .external_lex_state = 10}, + [1415] = {.lex_state = 51, .external_lex_state = 10}, + [1416] = {.lex_state = 44, .external_lex_state = 10}, + [1417] = {.lex_state = 44, .external_lex_state = 10}, + [1418] = {.lex_state = 9}, + [1419] = {.lex_state = 4, .external_lex_state = 12}, + [1420] = {.lex_state = 51}, + [1421] = {.lex_state = 51}, + [1422] = {.lex_state = 9, .external_lex_state = 2}, + [1423] = {.lex_state = 49}, + [1424] = {.lex_state = 49}, + [1425] = {.lex_state = 46}, + [1426] = {.lex_state = 48, .external_lex_state = 15}, + [1427] = {.lex_state = 51, .external_lex_state = 15}, + [1428] = {.lex_state = 51, .external_lex_state = 15}, [1429] = {.lex_state = 9, .external_lex_state = 2}, [1430] = {.lex_state = 9, .external_lex_state = 23}, - [1431] = {.lex_state = 47}, - [1432] = {.lex_state = 47}, - [1433] = {.lex_state = 50}, - [1434] = {.lex_state = 41}, - [1435] = {.lex_state = 50}, - [1436] = {.lex_state = 41}, - [1437] = {.lex_state = 45, .external_lex_state = 13}, - [1438] = {.lex_state = 45, .external_lex_state = 13}, - [1439] = {.lex_state = 35, .external_lex_state = 20}, - [1440] = {.lex_state = 42, .external_lex_state = 13}, - [1441] = {.lex_state = 35, .external_lex_state = 13}, - [1442] = {.lex_state = 45, .external_lex_state = 13}, - [1443] = {.lex_state = 45, .external_lex_state = 13}, - [1444] = {.lex_state = 45, .external_lex_state = 13}, - [1445] = {.lex_state = 47}, - [1446] = {.lex_state = 53}, - [1447] = {.lex_state = 47}, - [1448] = {.lex_state = 41}, - [1449] = {.lex_state = 41}, - [1450] = {.lex_state = 45, .external_lex_state = 13}, - [1451] = {.lex_state = 45, .external_lex_state = 13}, - [1452] = {.lex_state = 53}, - [1453] = {.lex_state = 53}, - [1454] = {.lex_state = 41}, - [1455] = {.lex_state = 41}, - [1456] = {.lex_state = 53}, - [1457] = {.lex_state = 53}, - [1458] = {.lex_state = 53}, - [1459] = {.lex_state = 53}, - [1460] = {.lex_state = 53}, - [1461] = {.lex_state = 46, .external_lex_state = 2}, - [1462] = {.lex_state = 3, .external_lex_state = 5}, + [1431] = {.lex_state = 44, .external_lex_state = 10}, + [1432] = {.lex_state = 44, .external_lex_state = 10}, + [1433] = {.lex_state = 51, .external_lex_state = 19}, + [1434] = {.lex_state = 47, .external_lex_state = 10}, + [1435] = {.lex_state = 51, .external_lex_state = 10}, + [1436] = {.lex_state = 44, .external_lex_state = 10}, + [1437] = {.lex_state = 44, .external_lex_state = 10}, + [1438] = {.lex_state = 44, .external_lex_state = 10}, + [1439] = {.lex_state = 51}, + [1440] = {.lex_state = 51}, + [1441] = {.lex_state = 49}, + [1442] = {.lex_state = 42}, + [1443] = {.lex_state = 49}, + [1444] = {.lex_state = 42}, + [1445] = {.lex_state = 51}, + [1446] = {.lex_state = 51}, + [1447] = {.lex_state = 44, .external_lex_state = 10}, + [1448] = {.lex_state = 44, .external_lex_state = 10}, + [1449] = {.lex_state = 51}, + [1450] = {.lex_state = 42}, + [1451] = {.lex_state = 42}, + [1452] = {.lex_state = 51}, + [1453] = {.lex_state = 51}, + [1454] = {.lex_state = 42}, + [1455] = {.lex_state = 42}, + [1456] = {.lex_state = 51}, + [1457] = {.lex_state = 51}, + [1458] = {.lex_state = 51}, + [1459] = {.lex_state = 51}, + [1460] = {.lex_state = 51}, + [1461] = {.lex_state = 45, .external_lex_state = 2}, + [1462] = {.lex_state = 3, .external_lex_state = 4}, [1463] = {.lex_state = 9, .external_lex_state = 2}, - [1464] = {.lex_state = 47, .external_lex_state = 2}, + [1464] = {.lex_state = 46, .external_lex_state = 2}, [1465] = {.lex_state = 9, .external_lex_state = 16}, - [1466] = {.lex_state = 4, .external_lex_state = 11}, + [1466] = {.lex_state = 4, .external_lex_state = 12}, [1467] = {.lex_state = 9, .external_lex_state = 16}, - [1468] = {.lex_state = 4, .external_lex_state = 11}, - [1469] = {.lex_state = 47}, - [1470] = {.lex_state = 47}, - [1471] = {.lex_state = 47}, + [1468] = {.lex_state = 4, .external_lex_state = 12}, + [1469] = {.lex_state = 46}, + [1470] = {.lex_state = 46}, + [1471] = {.lex_state = 46}, [1472] = {.lex_state = 37}, - [1473] = {.lex_state = 51}, - [1474] = {.lex_state = 47}, + [1473] = {.lex_state = 50}, + [1474] = {.lex_state = 9}, [1475] = {.lex_state = 9}, - [1476] = {.lex_state = 44, .external_lex_state = 13}, - [1477] = {.lex_state = 44, .external_lex_state = 13}, - [1478] = {.lex_state = 47, .external_lex_state = 14}, - [1479] = {.lex_state = 47}, - [1480] = {.lex_state = 47, .external_lex_state = 2}, - [1481] = {.lex_state = 9}, - [1482] = {.lex_state = 39}, - [1483] = {.lex_state = 51}, + [1476] = {.lex_state = 46}, + [1477] = {.lex_state = 43, .external_lex_state = 10}, + [1478] = {.lex_state = 43, .external_lex_state = 10}, + [1479] = {.lex_state = 46, .external_lex_state = 14}, + [1480] = {.lex_state = 46}, + [1481] = {.lex_state = 39}, + [1482] = {.lex_state = 50}, + [1483] = {.lex_state = 46, .external_lex_state = 2}, [1484] = {.lex_state = 9}, - [1485] = {.lex_state = 42}, - [1486] = {.lex_state = 45, .external_lex_state = 21}, - [1487] = {.lex_state = 45, .external_lex_state = 13}, - [1488] = {.lex_state = 44, .external_lex_state = 13}, - [1489] = {.lex_state = 44, .external_lex_state = 13}, - [1490] = {.lex_state = 48, .external_lex_state = 13}, - [1491] = {.lex_state = 45, .external_lex_state = 21}, - [1492] = {.lex_state = 45, .external_lex_state = 13}, - [1493] = {.lex_state = 47}, + [1485] = {.lex_state = 44, .external_lex_state = 20}, + [1486] = {.lex_state = 44, .external_lex_state = 10}, + [1487] = {.lex_state = 43, .external_lex_state = 10}, + [1488] = {.lex_state = 43, .external_lex_state = 10}, + [1489] = {.lex_state = 47, .external_lex_state = 10}, + [1490] = {.lex_state = 44, .external_lex_state = 20}, + [1491] = {.lex_state = 44, .external_lex_state = 10}, + [1492] = {.lex_state = 41}, + [1493] = {.lex_state = 46}, [1494] = {.lex_state = 39}, - [1495] = {.lex_state = 45, .external_lex_state = 13}, - [1496] = {.lex_state = 45, .external_lex_state = 13}, - [1497] = {.lex_state = 45, .external_lex_state = 21}, - [1498] = {.lex_state = 48, .external_lex_state = 13}, - [1499] = {.lex_state = 45, .external_lex_state = 21}, - [1500] = {.lex_state = 45, .external_lex_state = 13}, - [1501] = {.lex_state = 35, .external_lex_state = 20}, - [1502] = {.lex_state = 42, .external_lex_state = 13}, - [1503] = {.lex_state = 35, .external_lex_state = 13}, - [1504] = {.lex_state = 45, .external_lex_state = 13}, - [1505] = {.lex_state = 45, .external_lex_state = 13}, - [1506] = {.lex_state = 47}, - [1507] = {.lex_state = 45, .external_lex_state = 13}, - [1508] = {.lex_state = 45, .external_lex_state = 13}, - [1509] = {.lex_state = 35, .external_lex_state = 20}, - [1510] = {.lex_state = 42, .external_lex_state = 13}, - [1511] = {.lex_state = 35, .external_lex_state = 13}, - [1512] = {.lex_state = 45, .external_lex_state = 13}, - [1513] = {.lex_state = 45, .external_lex_state = 13}, - [1514] = {.lex_state = 45, .external_lex_state = 13}, - [1515] = {.lex_state = 45, .external_lex_state = 13}, - [1516] = {.lex_state = 45, .external_lex_state = 13}, + [1495] = {.lex_state = 44, .external_lex_state = 10}, + [1496] = {.lex_state = 44, .external_lex_state = 10}, + [1497] = {.lex_state = 44, .external_lex_state = 20}, + [1498] = {.lex_state = 47, .external_lex_state = 10}, + [1499] = {.lex_state = 44, .external_lex_state = 20}, + [1500] = {.lex_state = 44, .external_lex_state = 10}, + [1501] = {.lex_state = 51, .external_lex_state = 19}, + [1502] = {.lex_state = 47, .external_lex_state = 10}, + [1503] = {.lex_state = 51, .external_lex_state = 10}, + [1504] = {.lex_state = 44, .external_lex_state = 10}, + [1505] = {.lex_state = 44, .external_lex_state = 10}, + [1506] = {.lex_state = 46}, + [1507] = {.lex_state = 44, .external_lex_state = 10}, + [1508] = {.lex_state = 44, .external_lex_state = 10}, + [1509] = {.lex_state = 51, .external_lex_state = 19}, + [1510] = {.lex_state = 47, .external_lex_state = 10}, + [1511] = {.lex_state = 51, .external_lex_state = 10}, + [1512] = {.lex_state = 44, .external_lex_state = 10}, + [1513] = {.lex_state = 44, .external_lex_state = 10}, + [1514] = {.lex_state = 44, .external_lex_state = 10}, + [1515] = {.lex_state = 44, .external_lex_state = 10}, + [1516] = {.lex_state = 44, .external_lex_state = 10}, [1517] = {.lex_state = 37}, - [1518] = {.lex_state = 51}, - [1519] = {.lex_state = 47}, + [1518] = {.lex_state = 50}, + [1519] = {.lex_state = 9}, [1520] = {.lex_state = 9}, - [1521] = {.lex_state = 44, .external_lex_state = 13}, - [1522] = {.lex_state = 44, .external_lex_state = 13}, - [1523] = {.lex_state = 47, .external_lex_state = 14}, - [1524] = {.lex_state = 47, .external_lex_state = 2}, - [1525] = {.lex_state = 9}, - [1526] = {.lex_state = 39}, - [1527] = {.lex_state = 51}, + [1521] = {.lex_state = 46}, + [1522] = {.lex_state = 43, .external_lex_state = 10}, + [1523] = {.lex_state = 43, .external_lex_state = 10}, + [1524] = {.lex_state = 46, .external_lex_state = 14}, + [1525] = {.lex_state = 39}, + [1526] = {.lex_state = 50}, + [1527] = {.lex_state = 46, .external_lex_state = 2}, [1528] = {.lex_state = 9}, - [1529] = {.lex_state = 45, .external_lex_state = 21}, - [1530] = {.lex_state = 45, .external_lex_state = 13}, - [1531] = {.lex_state = 44, .external_lex_state = 13}, - [1532] = {.lex_state = 44, .external_lex_state = 13}, - [1533] = {.lex_state = 48, .external_lex_state = 13}, - [1534] = {.lex_state = 45, .external_lex_state = 21}, - [1535] = {.lex_state = 45, .external_lex_state = 13}, - [1536] = {.lex_state = 47}, + [1529] = {.lex_state = 44, .external_lex_state = 20}, + [1530] = {.lex_state = 44, .external_lex_state = 10}, + [1531] = {.lex_state = 43, .external_lex_state = 10}, + [1532] = {.lex_state = 43, .external_lex_state = 10}, + [1533] = {.lex_state = 47, .external_lex_state = 10}, + [1534] = {.lex_state = 44, .external_lex_state = 20}, + [1535] = {.lex_state = 44, .external_lex_state = 10}, + [1536] = {.lex_state = 46}, [1537] = {.lex_state = 39}, - [1538] = {.lex_state = 45, .external_lex_state = 13}, - [1539] = {.lex_state = 45, .external_lex_state = 13}, - [1540] = {.lex_state = 45, .external_lex_state = 21}, - [1541] = {.lex_state = 48, .external_lex_state = 13}, - [1542] = {.lex_state = 45, .external_lex_state = 21}, - [1543] = {.lex_state = 45, .external_lex_state = 13}, - [1544] = {.lex_state = 35, .external_lex_state = 20}, - [1545] = {.lex_state = 42, .external_lex_state = 13}, - [1546] = {.lex_state = 35, .external_lex_state = 13}, - [1547] = {.lex_state = 45, .external_lex_state = 13}, - [1548] = {.lex_state = 45, .external_lex_state = 13}, - [1549] = {.lex_state = 47}, - [1550] = {.lex_state = 45, .external_lex_state = 13}, - [1551] = {.lex_state = 45, .external_lex_state = 13}, - [1552] = {.lex_state = 35, .external_lex_state = 20}, - [1553] = {.lex_state = 42, .external_lex_state = 13}, - [1554] = {.lex_state = 35, .external_lex_state = 13}, - [1555] = {.lex_state = 45, .external_lex_state = 13}, - [1556] = {.lex_state = 45, .external_lex_state = 13}, - [1557] = {.lex_state = 45, .external_lex_state = 13}, - [1558] = {.lex_state = 45, .external_lex_state = 13}, - [1559] = {.lex_state = 45, .external_lex_state = 13}, + [1538] = {.lex_state = 44, .external_lex_state = 10}, + [1539] = {.lex_state = 44, .external_lex_state = 10}, + [1540] = {.lex_state = 44, .external_lex_state = 20}, + [1541] = {.lex_state = 47, .external_lex_state = 10}, + [1542] = {.lex_state = 44, .external_lex_state = 20}, + [1543] = {.lex_state = 44, .external_lex_state = 10}, + [1544] = {.lex_state = 51, .external_lex_state = 19}, + [1545] = {.lex_state = 47, .external_lex_state = 10}, + [1546] = {.lex_state = 51, .external_lex_state = 10}, + [1547] = {.lex_state = 44, .external_lex_state = 10}, + [1548] = {.lex_state = 44, .external_lex_state = 10}, + [1549] = {.lex_state = 46}, + [1550] = {.lex_state = 44, .external_lex_state = 10}, + [1551] = {.lex_state = 44, .external_lex_state = 10}, + [1552] = {.lex_state = 51, .external_lex_state = 19}, + [1553] = {.lex_state = 47, .external_lex_state = 10}, + [1554] = {.lex_state = 51, .external_lex_state = 10}, + [1555] = {.lex_state = 44, .external_lex_state = 10}, + [1556] = {.lex_state = 44, .external_lex_state = 10}, + [1557] = {.lex_state = 44, .external_lex_state = 10}, + [1558] = {.lex_state = 44, .external_lex_state = 10}, + [1559] = {.lex_state = 44, .external_lex_state = 10}, [1560] = {.lex_state = 37}, - [1561] = {.lex_state = 51}, - [1562] = {.lex_state = 47}, + [1561] = {.lex_state = 50}, + [1562] = {.lex_state = 9}, [1563] = {.lex_state = 9}, - [1564] = {.lex_state = 44, .external_lex_state = 13}, - [1565] = {.lex_state = 44, .external_lex_state = 13}, - [1566] = {.lex_state = 47, .external_lex_state = 14}, - [1567] = {.lex_state = 47, .external_lex_state = 2}, - [1568] = {.lex_state = 9}, - [1569] = {.lex_state = 39}, - [1570] = {.lex_state = 51}, + [1564] = {.lex_state = 46}, + [1565] = {.lex_state = 43, .external_lex_state = 10}, + [1566] = {.lex_state = 43, .external_lex_state = 10}, + [1567] = {.lex_state = 46, .external_lex_state = 14}, + [1568] = {.lex_state = 39}, + [1569] = {.lex_state = 50}, + [1570] = {.lex_state = 46, .external_lex_state = 2}, [1571] = {.lex_state = 9}, - [1572] = {.lex_state = 45, .external_lex_state = 21}, - [1573] = {.lex_state = 45, .external_lex_state = 13}, - [1574] = {.lex_state = 44, .external_lex_state = 13}, - [1575] = {.lex_state = 44, .external_lex_state = 13}, - [1576] = {.lex_state = 48, .external_lex_state = 13}, - [1577] = {.lex_state = 45, .external_lex_state = 21}, - [1578] = {.lex_state = 45, .external_lex_state = 13}, - [1579] = {.lex_state = 47}, + [1572] = {.lex_state = 44, .external_lex_state = 20}, + [1573] = {.lex_state = 44, .external_lex_state = 10}, + [1574] = {.lex_state = 43, .external_lex_state = 10}, + [1575] = {.lex_state = 43, .external_lex_state = 10}, + [1576] = {.lex_state = 47, .external_lex_state = 10}, + [1577] = {.lex_state = 44, .external_lex_state = 20}, + [1578] = {.lex_state = 44, .external_lex_state = 10}, + [1579] = {.lex_state = 46}, [1580] = {.lex_state = 39}, - [1581] = {.lex_state = 45, .external_lex_state = 13}, - [1582] = {.lex_state = 45, .external_lex_state = 13}, - [1583] = {.lex_state = 45, .external_lex_state = 21}, - [1584] = {.lex_state = 48, .external_lex_state = 13}, - [1585] = {.lex_state = 45, .external_lex_state = 21}, - [1586] = {.lex_state = 45, .external_lex_state = 13}, - [1587] = {.lex_state = 35, .external_lex_state = 20}, - [1588] = {.lex_state = 42, .external_lex_state = 13}, - [1589] = {.lex_state = 35, .external_lex_state = 13}, - [1590] = {.lex_state = 45, .external_lex_state = 13}, - [1591] = {.lex_state = 45, .external_lex_state = 13}, - [1592] = {.lex_state = 47}, - [1593] = {.lex_state = 45, .external_lex_state = 13}, - [1594] = {.lex_state = 45, .external_lex_state = 13}, - [1595] = {.lex_state = 35, .external_lex_state = 20}, - [1596] = {.lex_state = 42, .external_lex_state = 13}, - [1597] = {.lex_state = 35, .external_lex_state = 13}, - [1598] = {.lex_state = 45, .external_lex_state = 13}, - [1599] = {.lex_state = 45, .external_lex_state = 13}, - [1600] = {.lex_state = 45, .external_lex_state = 13}, - [1601] = {.lex_state = 45, .external_lex_state = 13}, - [1602] = {.lex_state = 45, .external_lex_state = 13}, + [1581] = {.lex_state = 44, .external_lex_state = 10}, + [1582] = {.lex_state = 44, .external_lex_state = 10}, + [1583] = {.lex_state = 44, .external_lex_state = 20}, + [1584] = {.lex_state = 47, .external_lex_state = 10}, + [1585] = {.lex_state = 44, .external_lex_state = 20}, + [1586] = {.lex_state = 44, .external_lex_state = 10}, + [1587] = {.lex_state = 51, .external_lex_state = 19}, + [1588] = {.lex_state = 47, .external_lex_state = 10}, + [1589] = {.lex_state = 51, .external_lex_state = 10}, + [1590] = {.lex_state = 44, .external_lex_state = 10}, + [1591] = {.lex_state = 44, .external_lex_state = 10}, + [1592] = {.lex_state = 46}, + [1593] = {.lex_state = 44, .external_lex_state = 10}, + [1594] = {.lex_state = 44, .external_lex_state = 10}, + [1595] = {.lex_state = 51, .external_lex_state = 19}, + [1596] = {.lex_state = 47, .external_lex_state = 10}, + [1597] = {.lex_state = 51, .external_lex_state = 10}, + [1598] = {.lex_state = 44, .external_lex_state = 10}, + [1599] = {.lex_state = 44, .external_lex_state = 10}, + [1600] = {.lex_state = 44, .external_lex_state = 10}, + [1601] = {.lex_state = 44, .external_lex_state = 10}, + [1602] = {.lex_state = 44, .external_lex_state = 10}, [1603] = {.lex_state = 37}, - [1604] = {.lex_state = 51}, - [1605] = {.lex_state = 47}, + [1604] = {.lex_state = 50}, + [1605] = {.lex_state = 9}, [1606] = {.lex_state = 9}, - [1607] = {.lex_state = 44, .external_lex_state = 13}, - [1608] = {.lex_state = 44, .external_lex_state = 13}, - [1609] = {.lex_state = 47, .external_lex_state = 14}, - [1610] = {.lex_state = 47, .external_lex_state = 2}, - [1611] = {.lex_state = 9}, - [1612] = {.lex_state = 39}, - [1613] = {.lex_state = 51}, + [1607] = {.lex_state = 46}, + [1608] = {.lex_state = 43, .external_lex_state = 10}, + [1609] = {.lex_state = 43, .external_lex_state = 10}, + [1610] = {.lex_state = 46, .external_lex_state = 14}, + [1611] = {.lex_state = 39}, + [1612] = {.lex_state = 50}, + [1613] = {.lex_state = 46, .external_lex_state = 2}, [1614] = {.lex_state = 9}, - [1615] = {.lex_state = 45, .external_lex_state = 21}, - [1616] = {.lex_state = 45, .external_lex_state = 13}, - [1617] = {.lex_state = 44, .external_lex_state = 13}, - [1618] = {.lex_state = 44, .external_lex_state = 13}, - [1619] = {.lex_state = 48, .external_lex_state = 13}, - [1620] = {.lex_state = 45, .external_lex_state = 21}, - [1621] = {.lex_state = 45, .external_lex_state = 13}, - [1622] = {.lex_state = 47}, + [1615] = {.lex_state = 44, .external_lex_state = 20}, + [1616] = {.lex_state = 44, .external_lex_state = 10}, + [1617] = {.lex_state = 43, .external_lex_state = 10}, + [1618] = {.lex_state = 43, .external_lex_state = 10}, + [1619] = {.lex_state = 47, .external_lex_state = 10}, + [1620] = {.lex_state = 44, .external_lex_state = 20}, + [1621] = {.lex_state = 44, .external_lex_state = 10}, + [1622] = {.lex_state = 46}, [1623] = {.lex_state = 39}, - [1624] = {.lex_state = 45, .external_lex_state = 13}, - [1625] = {.lex_state = 45, .external_lex_state = 13}, - [1626] = {.lex_state = 45, .external_lex_state = 21}, - [1627] = {.lex_state = 48, .external_lex_state = 13}, - [1628] = {.lex_state = 45, .external_lex_state = 21}, - [1629] = {.lex_state = 45, .external_lex_state = 13}, - [1630] = {.lex_state = 35, .external_lex_state = 20}, - [1631] = {.lex_state = 42, .external_lex_state = 13}, - [1632] = {.lex_state = 35, .external_lex_state = 13}, - [1633] = {.lex_state = 45, .external_lex_state = 13}, - [1634] = {.lex_state = 45, .external_lex_state = 13}, - [1635] = {.lex_state = 47}, - [1636] = {.lex_state = 45, .external_lex_state = 13}, - [1637] = {.lex_state = 45, .external_lex_state = 13}, - [1638] = {.lex_state = 35, .external_lex_state = 20}, - [1639] = {.lex_state = 42, .external_lex_state = 13}, - [1640] = {.lex_state = 35, .external_lex_state = 13}, - [1641] = {.lex_state = 45, .external_lex_state = 13}, - [1642] = {.lex_state = 45, .external_lex_state = 13}, - [1643] = {.lex_state = 45, .external_lex_state = 13}, - [1644] = {.lex_state = 45, .external_lex_state = 13}, - [1645] = {.lex_state = 45, .external_lex_state = 13}, + [1624] = {.lex_state = 44, .external_lex_state = 10}, + [1625] = {.lex_state = 44, .external_lex_state = 10}, + [1626] = {.lex_state = 44, .external_lex_state = 20}, + [1627] = {.lex_state = 47, .external_lex_state = 10}, + [1628] = {.lex_state = 44, .external_lex_state = 20}, + [1629] = {.lex_state = 44, .external_lex_state = 10}, + [1630] = {.lex_state = 51, .external_lex_state = 19}, + [1631] = {.lex_state = 47, .external_lex_state = 10}, + [1632] = {.lex_state = 51, .external_lex_state = 10}, + [1633] = {.lex_state = 44, .external_lex_state = 10}, + [1634] = {.lex_state = 44, .external_lex_state = 10}, + [1635] = {.lex_state = 46}, + [1636] = {.lex_state = 44, .external_lex_state = 10}, + [1637] = {.lex_state = 44, .external_lex_state = 10}, + [1638] = {.lex_state = 51, .external_lex_state = 19}, + [1639] = {.lex_state = 47, .external_lex_state = 10}, + [1640] = {.lex_state = 51, .external_lex_state = 10}, + [1641] = {.lex_state = 44, .external_lex_state = 10}, + [1642] = {.lex_state = 44, .external_lex_state = 10}, + [1643] = {.lex_state = 44, .external_lex_state = 10}, + [1644] = {.lex_state = 44, .external_lex_state = 10}, + [1645] = {.lex_state = 44, .external_lex_state = 10}, [1646] = {.lex_state = 37}, - [1647] = {.lex_state = 51}, - [1648] = {.lex_state = 47}, + [1647] = {.lex_state = 50}, + [1648] = {.lex_state = 9}, [1649] = {.lex_state = 9}, - [1650] = {.lex_state = 44, .external_lex_state = 13}, - [1651] = {.lex_state = 44, .external_lex_state = 13}, - [1652] = {.lex_state = 47, .external_lex_state = 14}, - [1653] = {.lex_state = 47, .external_lex_state = 2}, - [1654] = {.lex_state = 9}, - [1655] = {.lex_state = 39}, - [1656] = {.lex_state = 51}, + [1650] = {.lex_state = 46}, + [1651] = {.lex_state = 43, .external_lex_state = 10}, + [1652] = {.lex_state = 43, .external_lex_state = 10}, + [1653] = {.lex_state = 46, .external_lex_state = 14}, + [1654] = {.lex_state = 39}, + [1655] = {.lex_state = 50}, + [1656] = {.lex_state = 46, .external_lex_state = 2}, [1657] = {.lex_state = 9}, - [1658] = {.lex_state = 45, .external_lex_state = 21}, - [1659] = {.lex_state = 45, .external_lex_state = 13}, - [1660] = {.lex_state = 44, .external_lex_state = 13}, - [1661] = {.lex_state = 44, .external_lex_state = 13}, - [1662] = {.lex_state = 48, .external_lex_state = 13}, - [1663] = {.lex_state = 45, .external_lex_state = 21}, - [1664] = {.lex_state = 45, .external_lex_state = 13}, - [1665] = {.lex_state = 47}, + [1658] = {.lex_state = 44, .external_lex_state = 20}, + [1659] = {.lex_state = 44, .external_lex_state = 10}, + [1660] = {.lex_state = 43, .external_lex_state = 10}, + [1661] = {.lex_state = 43, .external_lex_state = 10}, + [1662] = {.lex_state = 47, .external_lex_state = 10}, + [1663] = {.lex_state = 44, .external_lex_state = 20}, + [1664] = {.lex_state = 44, .external_lex_state = 10}, + [1665] = {.lex_state = 46}, [1666] = {.lex_state = 39}, - [1667] = {.lex_state = 45, .external_lex_state = 13}, - [1668] = {.lex_state = 45, .external_lex_state = 13}, - [1669] = {.lex_state = 45, .external_lex_state = 21}, - [1670] = {.lex_state = 48, .external_lex_state = 13}, - [1671] = {.lex_state = 45, .external_lex_state = 21}, - [1672] = {.lex_state = 45, .external_lex_state = 13}, - [1673] = {.lex_state = 35, .external_lex_state = 20}, - [1674] = {.lex_state = 42, .external_lex_state = 13}, - [1675] = {.lex_state = 35, .external_lex_state = 13}, - [1676] = {.lex_state = 45, .external_lex_state = 13}, - [1677] = {.lex_state = 45, .external_lex_state = 13}, - [1678] = {.lex_state = 47}, - [1679] = {.lex_state = 45, .external_lex_state = 13}, - [1680] = {.lex_state = 45, .external_lex_state = 13}, - [1681] = {.lex_state = 35, .external_lex_state = 20}, - [1682] = {.lex_state = 42, .external_lex_state = 13}, - [1683] = {.lex_state = 35, .external_lex_state = 13}, - [1684] = {.lex_state = 45, .external_lex_state = 13}, - [1685] = {.lex_state = 45, .external_lex_state = 13}, - [1686] = {.lex_state = 45, .external_lex_state = 13}, - [1687] = {.lex_state = 45, .external_lex_state = 13}, - [1688] = {.lex_state = 45, .external_lex_state = 13}, + [1667] = {.lex_state = 44, .external_lex_state = 10}, + [1668] = {.lex_state = 44, .external_lex_state = 10}, + [1669] = {.lex_state = 44, .external_lex_state = 20}, + [1670] = {.lex_state = 47, .external_lex_state = 10}, + [1671] = {.lex_state = 44, .external_lex_state = 20}, + [1672] = {.lex_state = 44, .external_lex_state = 10}, + [1673] = {.lex_state = 51, .external_lex_state = 19}, + [1674] = {.lex_state = 47, .external_lex_state = 10}, + [1675] = {.lex_state = 51, .external_lex_state = 10}, + [1676] = {.lex_state = 44, .external_lex_state = 10}, + [1677] = {.lex_state = 44, .external_lex_state = 10}, + [1678] = {.lex_state = 46}, + [1679] = {.lex_state = 44, .external_lex_state = 10}, + [1680] = {.lex_state = 44, .external_lex_state = 10}, + [1681] = {.lex_state = 51, .external_lex_state = 19}, + [1682] = {.lex_state = 47, .external_lex_state = 10}, + [1683] = {.lex_state = 51, .external_lex_state = 10}, + [1684] = {.lex_state = 44, .external_lex_state = 10}, + [1685] = {.lex_state = 44, .external_lex_state = 10}, + [1686] = {.lex_state = 44, .external_lex_state = 10}, + [1687] = {.lex_state = 44, .external_lex_state = 10}, + [1688] = {.lex_state = 44, .external_lex_state = 10}, [1689] = {.lex_state = 37}, - [1690] = {.lex_state = 51}, - [1691] = {.lex_state = 47}, + [1690] = {.lex_state = 50}, + [1691] = {.lex_state = 9}, [1692] = {.lex_state = 9}, - [1693] = {.lex_state = 44, .external_lex_state = 13}, - [1694] = {.lex_state = 44, .external_lex_state = 13}, - [1695] = {.lex_state = 47, .external_lex_state = 2}, - [1696] = {.lex_state = 9}, - [1697] = {.lex_state = 39}, - [1698] = {.lex_state = 51}, + [1693] = {.lex_state = 46}, + [1694] = {.lex_state = 43, .external_lex_state = 10}, + [1695] = {.lex_state = 43, .external_lex_state = 10}, + [1696] = {.lex_state = 39}, + [1697] = {.lex_state = 50}, + [1698] = {.lex_state = 46, .external_lex_state = 2}, [1699] = {.lex_state = 9}, - [1700] = {.lex_state = 45, .external_lex_state = 21}, - [1701] = {.lex_state = 45, .external_lex_state = 13}, - [1702] = {.lex_state = 44, .external_lex_state = 13}, - [1703] = {.lex_state = 44, .external_lex_state = 13}, - [1704] = {.lex_state = 48, .external_lex_state = 13}, - [1705] = {.lex_state = 45, .external_lex_state = 21}, - [1706] = {.lex_state = 45, .external_lex_state = 13}, + [1700] = {.lex_state = 44, .external_lex_state = 20}, + [1701] = {.lex_state = 44, .external_lex_state = 10}, + [1702] = {.lex_state = 43, .external_lex_state = 10}, + [1703] = {.lex_state = 43, .external_lex_state = 10}, + [1704] = {.lex_state = 47, .external_lex_state = 10}, + [1705] = {.lex_state = 44, .external_lex_state = 20}, + [1706] = {.lex_state = 44, .external_lex_state = 10}, [1707] = {.lex_state = 39}, - [1708] = {.lex_state = 45, .external_lex_state = 13}, - [1709] = {.lex_state = 45, .external_lex_state = 13}, - [1710] = {.lex_state = 45, .external_lex_state = 21}, - [1711] = {.lex_state = 48, .external_lex_state = 13}, - [1712] = {.lex_state = 45, .external_lex_state = 21}, - [1713] = {.lex_state = 45, .external_lex_state = 13}, - [1714] = {.lex_state = 35, .external_lex_state = 20}, - [1715] = {.lex_state = 42, .external_lex_state = 13}, - [1716] = {.lex_state = 35, .external_lex_state = 13}, - [1717] = {.lex_state = 45, .external_lex_state = 13}, - [1718] = {.lex_state = 45, .external_lex_state = 13}, - [1719] = {.lex_state = 45, .external_lex_state = 13}, - [1720] = {.lex_state = 45, .external_lex_state = 13}, - [1721] = {.lex_state = 35, .external_lex_state = 20}, - [1722] = {.lex_state = 42, .external_lex_state = 13}, - [1723] = {.lex_state = 35, .external_lex_state = 13}, - [1724] = {.lex_state = 45, .external_lex_state = 13}, - [1725] = {.lex_state = 45, .external_lex_state = 13}, - [1726] = {.lex_state = 45, .external_lex_state = 13}, - [1727] = {.lex_state = 45, .external_lex_state = 13}, - [1728] = {.lex_state = 45, .external_lex_state = 13}, + [1708] = {.lex_state = 44, .external_lex_state = 10}, + [1709] = {.lex_state = 44, .external_lex_state = 10}, + [1710] = {.lex_state = 44, .external_lex_state = 20}, + [1711] = {.lex_state = 47, .external_lex_state = 10}, + [1712] = {.lex_state = 44, .external_lex_state = 20}, + [1713] = {.lex_state = 44, .external_lex_state = 10}, + [1714] = {.lex_state = 51, .external_lex_state = 19}, + [1715] = {.lex_state = 47, .external_lex_state = 10}, + [1716] = {.lex_state = 51, .external_lex_state = 10}, + [1717] = {.lex_state = 44, .external_lex_state = 10}, + [1718] = {.lex_state = 44, .external_lex_state = 10}, + [1719] = {.lex_state = 44, .external_lex_state = 10}, + [1720] = {.lex_state = 44, .external_lex_state = 10}, + [1721] = {.lex_state = 51, .external_lex_state = 19}, + [1722] = {.lex_state = 47, .external_lex_state = 10}, + [1723] = {.lex_state = 51, .external_lex_state = 10}, + [1724] = {.lex_state = 44, .external_lex_state = 10}, + [1725] = {.lex_state = 44, .external_lex_state = 10}, + [1726] = {.lex_state = 44, .external_lex_state = 10}, + [1727] = {.lex_state = 44, .external_lex_state = 10}, + [1728] = {.lex_state = 44, .external_lex_state = 10}, [1729] = {.lex_state = 37}, - [1730] = {.lex_state = 51}, - [1731] = {.lex_state = 47}, + [1730] = {.lex_state = 50}, + [1731] = {.lex_state = 9}, [1732] = {.lex_state = 9}, - [1733] = {.lex_state = 44, .external_lex_state = 13}, - [1734] = {.lex_state = 44, .external_lex_state = 13}, - [1735] = {.lex_state = 47, .external_lex_state = 2}, - [1736] = {.lex_state = 9}, - [1737] = {.lex_state = 39}, - [1738] = {.lex_state = 51}, + [1733] = {.lex_state = 46}, + [1734] = {.lex_state = 43, .external_lex_state = 10}, + [1735] = {.lex_state = 43, .external_lex_state = 10}, + [1736] = {.lex_state = 39}, + [1737] = {.lex_state = 50}, + [1738] = {.lex_state = 46, .external_lex_state = 2}, [1739] = {.lex_state = 9}, - [1740] = {.lex_state = 45, .external_lex_state = 21}, - [1741] = {.lex_state = 45, .external_lex_state = 13}, - [1742] = {.lex_state = 44, .external_lex_state = 13}, - [1743] = {.lex_state = 44, .external_lex_state = 13}, - [1744] = {.lex_state = 48, .external_lex_state = 13}, - [1745] = {.lex_state = 45, .external_lex_state = 21}, - [1746] = {.lex_state = 45, .external_lex_state = 13}, + [1740] = {.lex_state = 44, .external_lex_state = 20}, + [1741] = {.lex_state = 44, .external_lex_state = 10}, + [1742] = {.lex_state = 43, .external_lex_state = 10}, + [1743] = {.lex_state = 43, .external_lex_state = 10}, + [1744] = {.lex_state = 47, .external_lex_state = 10}, + [1745] = {.lex_state = 44, .external_lex_state = 20}, + [1746] = {.lex_state = 44, .external_lex_state = 10}, [1747] = {.lex_state = 39}, - [1748] = {.lex_state = 45, .external_lex_state = 13}, - [1749] = {.lex_state = 45, .external_lex_state = 13}, - [1750] = {.lex_state = 45, .external_lex_state = 21}, - [1751] = {.lex_state = 48, .external_lex_state = 13}, - [1752] = {.lex_state = 45, .external_lex_state = 21}, - [1753] = {.lex_state = 45, .external_lex_state = 13}, - [1754] = {.lex_state = 35, .external_lex_state = 20}, - [1755] = {.lex_state = 42, .external_lex_state = 13}, - [1756] = {.lex_state = 35, .external_lex_state = 13}, - [1757] = {.lex_state = 45, .external_lex_state = 13}, - [1758] = {.lex_state = 45, .external_lex_state = 13}, - [1759] = {.lex_state = 45, .external_lex_state = 13}, - [1760] = {.lex_state = 45, .external_lex_state = 13}, - [1761] = {.lex_state = 35, .external_lex_state = 20}, - [1762] = {.lex_state = 42, .external_lex_state = 13}, - [1763] = {.lex_state = 35, .external_lex_state = 13}, - [1764] = {.lex_state = 45, .external_lex_state = 13}, - [1765] = {.lex_state = 45, .external_lex_state = 13}, - [1766] = {.lex_state = 45, .external_lex_state = 13}, - [1767] = {.lex_state = 45, .external_lex_state = 13}, - [1768] = {.lex_state = 45, .external_lex_state = 13}, + [1748] = {.lex_state = 44, .external_lex_state = 10}, + [1749] = {.lex_state = 44, .external_lex_state = 10}, + [1750] = {.lex_state = 44, .external_lex_state = 20}, + [1751] = {.lex_state = 47, .external_lex_state = 10}, + [1752] = {.lex_state = 44, .external_lex_state = 20}, + [1753] = {.lex_state = 44, .external_lex_state = 10}, + [1754] = {.lex_state = 51, .external_lex_state = 19}, + [1755] = {.lex_state = 47, .external_lex_state = 10}, + [1756] = {.lex_state = 51, .external_lex_state = 10}, + [1757] = {.lex_state = 44, .external_lex_state = 10}, + [1758] = {.lex_state = 44, .external_lex_state = 10}, + [1759] = {.lex_state = 44, .external_lex_state = 10}, + [1760] = {.lex_state = 44, .external_lex_state = 10}, + [1761] = {.lex_state = 51, .external_lex_state = 19}, + [1762] = {.lex_state = 47, .external_lex_state = 10}, + [1763] = {.lex_state = 51, .external_lex_state = 10}, + [1764] = {.lex_state = 44, .external_lex_state = 10}, + [1765] = {.lex_state = 44, .external_lex_state = 10}, + [1766] = {.lex_state = 44, .external_lex_state = 10}, + [1767] = {.lex_state = 44, .external_lex_state = 10}, + [1768] = {.lex_state = 44, .external_lex_state = 10}, [1769] = {.lex_state = 37}, - [1770] = {.lex_state = 51}, - [1771] = {.lex_state = 47}, + [1770] = {.lex_state = 50}, + [1771] = {.lex_state = 9}, [1772] = {.lex_state = 9}, - [1773] = {.lex_state = 44, .external_lex_state = 13}, - [1774] = {.lex_state = 44, .external_lex_state = 13}, - [1775] = {.lex_state = 47, .external_lex_state = 2}, - [1776] = {.lex_state = 9}, - [1777] = {.lex_state = 39}, - [1778] = {.lex_state = 51}, + [1773] = {.lex_state = 46}, + [1774] = {.lex_state = 43, .external_lex_state = 10}, + [1775] = {.lex_state = 43, .external_lex_state = 10}, + [1776] = {.lex_state = 39}, + [1777] = {.lex_state = 50}, + [1778] = {.lex_state = 46, .external_lex_state = 2}, [1779] = {.lex_state = 9}, - [1780] = {.lex_state = 45, .external_lex_state = 21}, - [1781] = {.lex_state = 45, .external_lex_state = 13}, - [1782] = {.lex_state = 44, .external_lex_state = 13}, - [1783] = {.lex_state = 44, .external_lex_state = 13}, - [1784] = {.lex_state = 48, .external_lex_state = 13}, - [1785] = {.lex_state = 45, .external_lex_state = 21}, - [1786] = {.lex_state = 45, .external_lex_state = 13}, + [1780] = {.lex_state = 44, .external_lex_state = 20}, + [1781] = {.lex_state = 44, .external_lex_state = 10}, + [1782] = {.lex_state = 43, .external_lex_state = 10}, + [1783] = {.lex_state = 43, .external_lex_state = 10}, + [1784] = {.lex_state = 47, .external_lex_state = 10}, + [1785] = {.lex_state = 44, .external_lex_state = 20}, + [1786] = {.lex_state = 44, .external_lex_state = 10}, [1787] = {.lex_state = 39}, - [1788] = {.lex_state = 45, .external_lex_state = 13}, - [1789] = {.lex_state = 45, .external_lex_state = 13}, - [1790] = {.lex_state = 45, .external_lex_state = 21}, - [1791] = {.lex_state = 48, .external_lex_state = 13}, - [1792] = {.lex_state = 45, .external_lex_state = 21}, - [1793] = {.lex_state = 45, .external_lex_state = 13}, - [1794] = {.lex_state = 35, .external_lex_state = 20}, - [1795] = {.lex_state = 42, .external_lex_state = 13}, - [1796] = {.lex_state = 35, .external_lex_state = 13}, - [1797] = {.lex_state = 45, .external_lex_state = 13}, - [1798] = {.lex_state = 45, .external_lex_state = 13}, - [1799] = {.lex_state = 45, .external_lex_state = 13}, - [1800] = {.lex_state = 45, .external_lex_state = 13}, - [1801] = {.lex_state = 35, .external_lex_state = 20}, - [1802] = {.lex_state = 42, .external_lex_state = 13}, - [1803] = {.lex_state = 35, .external_lex_state = 13}, - [1804] = {.lex_state = 45, .external_lex_state = 13}, - [1805] = {.lex_state = 45, .external_lex_state = 13}, - [1806] = {.lex_state = 45, .external_lex_state = 13}, - [1807] = {.lex_state = 45, .external_lex_state = 13}, - [1808] = {.lex_state = 45, .external_lex_state = 13}, + [1788] = {.lex_state = 44, .external_lex_state = 10}, + [1789] = {.lex_state = 44, .external_lex_state = 10}, + [1790] = {.lex_state = 44, .external_lex_state = 20}, + [1791] = {.lex_state = 47, .external_lex_state = 10}, + [1792] = {.lex_state = 44, .external_lex_state = 20}, + [1793] = {.lex_state = 44, .external_lex_state = 10}, + [1794] = {.lex_state = 51, .external_lex_state = 19}, + [1795] = {.lex_state = 47, .external_lex_state = 10}, + [1796] = {.lex_state = 51, .external_lex_state = 10}, + [1797] = {.lex_state = 44, .external_lex_state = 10}, + [1798] = {.lex_state = 44, .external_lex_state = 10}, + [1799] = {.lex_state = 44, .external_lex_state = 10}, + [1800] = {.lex_state = 44, .external_lex_state = 10}, + [1801] = {.lex_state = 51, .external_lex_state = 19}, + [1802] = {.lex_state = 47, .external_lex_state = 10}, + [1803] = {.lex_state = 51, .external_lex_state = 10}, + [1804] = {.lex_state = 44, .external_lex_state = 10}, + [1805] = {.lex_state = 44, .external_lex_state = 10}, + [1806] = {.lex_state = 44, .external_lex_state = 10}, + [1807] = {.lex_state = 44, .external_lex_state = 10}, + [1808] = {.lex_state = 44, .external_lex_state = 10}, [1809] = {.lex_state = 37}, - [1810] = {.lex_state = 51}, - [1811] = {.lex_state = 47}, + [1810] = {.lex_state = 50}, + [1811] = {.lex_state = 9}, [1812] = {.lex_state = 9}, - [1813] = {.lex_state = 44, .external_lex_state = 13}, - [1814] = {.lex_state = 44, .external_lex_state = 13}, - [1815] = {.lex_state = 47, .external_lex_state = 2}, - [1816] = {.lex_state = 9}, - [1817] = {.lex_state = 39}, - [1818] = {.lex_state = 51}, + [1813] = {.lex_state = 46}, + [1814] = {.lex_state = 43, .external_lex_state = 10}, + [1815] = {.lex_state = 43, .external_lex_state = 10}, + [1816] = {.lex_state = 39}, + [1817] = {.lex_state = 50}, + [1818] = {.lex_state = 46, .external_lex_state = 2}, [1819] = {.lex_state = 9}, - [1820] = {.lex_state = 45, .external_lex_state = 21}, - [1821] = {.lex_state = 45, .external_lex_state = 13}, - [1822] = {.lex_state = 44, .external_lex_state = 13}, - [1823] = {.lex_state = 44, .external_lex_state = 13}, - [1824] = {.lex_state = 48, .external_lex_state = 13}, - [1825] = {.lex_state = 45, .external_lex_state = 21}, - [1826] = {.lex_state = 45, .external_lex_state = 13}, + [1820] = {.lex_state = 44, .external_lex_state = 20}, + [1821] = {.lex_state = 44, .external_lex_state = 10}, + [1822] = {.lex_state = 43, .external_lex_state = 10}, + [1823] = {.lex_state = 43, .external_lex_state = 10}, + [1824] = {.lex_state = 47, .external_lex_state = 10}, + [1825] = {.lex_state = 44, .external_lex_state = 20}, + [1826] = {.lex_state = 44, .external_lex_state = 10}, [1827] = {.lex_state = 39}, - [1828] = {.lex_state = 45, .external_lex_state = 13}, - [1829] = {.lex_state = 45, .external_lex_state = 13}, - [1830] = {.lex_state = 45, .external_lex_state = 21}, - [1831] = {.lex_state = 48, .external_lex_state = 13}, - [1832] = {.lex_state = 45, .external_lex_state = 21}, - [1833] = {.lex_state = 45, .external_lex_state = 13}, - [1834] = {.lex_state = 35, .external_lex_state = 20}, - [1835] = {.lex_state = 42, .external_lex_state = 13}, - [1836] = {.lex_state = 35, .external_lex_state = 13}, - [1837] = {.lex_state = 45, .external_lex_state = 13}, - [1838] = {.lex_state = 45, .external_lex_state = 13}, - [1839] = {.lex_state = 45, .external_lex_state = 13}, - [1840] = {.lex_state = 45, .external_lex_state = 13}, - [1841] = {.lex_state = 35, .external_lex_state = 20}, - [1842] = {.lex_state = 42, .external_lex_state = 13}, - [1843] = {.lex_state = 35, .external_lex_state = 13}, - [1844] = {.lex_state = 45, .external_lex_state = 13}, - [1845] = {.lex_state = 45, .external_lex_state = 13}, - [1846] = {.lex_state = 45, .external_lex_state = 13}, - [1847] = {.lex_state = 45, .external_lex_state = 13}, - [1848] = {.lex_state = 45, .external_lex_state = 13}, + [1828] = {.lex_state = 44, .external_lex_state = 10}, + [1829] = {.lex_state = 44, .external_lex_state = 10}, + [1830] = {.lex_state = 44, .external_lex_state = 20}, + [1831] = {.lex_state = 47, .external_lex_state = 10}, + [1832] = {.lex_state = 44, .external_lex_state = 20}, + [1833] = {.lex_state = 44, .external_lex_state = 10}, + [1834] = {.lex_state = 51, .external_lex_state = 19}, + [1835] = {.lex_state = 47, .external_lex_state = 10}, + [1836] = {.lex_state = 51, .external_lex_state = 10}, + [1837] = {.lex_state = 44, .external_lex_state = 10}, + [1838] = {.lex_state = 44, .external_lex_state = 10}, + [1839] = {.lex_state = 44, .external_lex_state = 10}, + [1840] = {.lex_state = 44, .external_lex_state = 10}, + [1841] = {.lex_state = 51, .external_lex_state = 19}, + [1842] = {.lex_state = 47, .external_lex_state = 10}, + [1843] = {.lex_state = 51, .external_lex_state = 10}, + [1844] = {.lex_state = 44, .external_lex_state = 10}, + [1845] = {.lex_state = 44, .external_lex_state = 10}, + [1846] = {.lex_state = 44, .external_lex_state = 10}, + [1847] = {.lex_state = 44, .external_lex_state = 10}, + [1848] = {.lex_state = 44, .external_lex_state = 10}, [1849] = {.lex_state = 37}, - [1850] = {.lex_state = 51}, - [1851] = {.lex_state = 47}, + [1850] = {.lex_state = 50}, + [1851] = {.lex_state = 9}, [1852] = {.lex_state = 9}, - [1853] = {.lex_state = 44, .external_lex_state = 13}, - [1854] = {.lex_state = 44, .external_lex_state = 13}, - [1855] = {.lex_state = 47, .external_lex_state = 2}, - [1856] = {.lex_state = 9}, - [1857] = {.lex_state = 39}, - [1858] = {.lex_state = 51}, + [1853] = {.lex_state = 46}, + [1854] = {.lex_state = 43, .external_lex_state = 10}, + [1855] = {.lex_state = 43, .external_lex_state = 10}, + [1856] = {.lex_state = 39}, + [1857] = {.lex_state = 50}, + [1858] = {.lex_state = 46, .external_lex_state = 2}, [1859] = {.lex_state = 9}, - [1860] = {.lex_state = 45, .external_lex_state = 21}, - [1861] = {.lex_state = 45, .external_lex_state = 13}, - [1862] = {.lex_state = 44, .external_lex_state = 13}, - [1863] = {.lex_state = 44, .external_lex_state = 13}, - [1864] = {.lex_state = 48, .external_lex_state = 13}, - [1865] = {.lex_state = 45, .external_lex_state = 21}, - [1866] = {.lex_state = 45, .external_lex_state = 13}, + [1860] = {.lex_state = 44, .external_lex_state = 20}, + [1861] = {.lex_state = 44, .external_lex_state = 10}, + [1862] = {.lex_state = 43, .external_lex_state = 10}, + [1863] = {.lex_state = 43, .external_lex_state = 10}, + [1864] = {.lex_state = 47, .external_lex_state = 10}, + [1865] = {.lex_state = 44, .external_lex_state = 20}, + [1866] = {.lex_state = 44, .external_lex_state = 10}, [1867] = {.lex_state = 39}, - [1868] = {.lex_state = 45, .external_lex_state = 13}, - [1869] = {.lex_state = 45, .external_lex_state = 13}, - [1870] = {.lex_state = 45, .external_lex_state = 21}, - [1871] = {.lex_state = 48, .external_lex_state = 13}, - [1872] = {.lex_state = 45, .external_lex_state = 21}, - [1873] = {.lex_state = 45, .external_lex_state = 13}, - [1874] = {.lex_state = 35, .external_lex_state = 20}, - [1875] = {.lex_state = 42, .external_lex_state = 13}, - [1876] = {.lex_state = 35, .external_lex_state = 13}, - [1877] = {.lex_state = 45, .external_lex_state = 13}, - [1878] = {.lex_state = 45, .external_lex_state = 13}, - [1879] = {.lex_state = 45, .external_lex_state = 13}, - [1880] = {.lex_state = 45, .external_lex_state = 13}, - [1881] = {.lex_state = 35, .external_lex_state = 20}, - [1882] = {.lex_state = 42, .external_lex_state = 13}, - [1883] = {.lex_state = 35, .external_lex_state = 13}, - [1884] = {.lex_state = 45, .external_lex_state = 13}, - [1885] = {.lex_state = 45, .external_lex_state = 13}, - [1886] = {.lex_state = 45, .external_lex_state = 13}, - [1887] = {.lex_state = 45, .external_lex_state = 13}, - [1888] = {.lex_state = 45, .external_lex_state = 13}, + [1868] = {.lex_state = 44, .external_lex_state = 10}, + [1869] = {.lex_state = 44, .external_lex_state = 10}, + [1870] = {.lex_state = 44, .external_lex_state = 20}, + [1871] = {.lex_state = 47, .external_lex_state = 10}, + [1872] = {.lex_state = 44, .external_lex_state = 20}, + [1873] = {.lex_state = 44, .external_lex_state = 10}, + [1874] = {.lex_state = 51, .external_lex_state = 19}, + [1875] = {.lex_state = 47, .external_lex_state = 10}, + [1876] = {.lex_state = 51, .external_lex_state = 10}, + [1877] = {.lex_state = 44, .external_lex_state = 10}, + [1878] = {.lex_state = 44, .external_lex_state = 10}, + [1879] = {.lex_state = 44, .external_lex_state = 10}, + [1880] = {.lex_state = 44, .external_lex_state = 10}, + [1881] = {.lex_state = 51, .external_lex_state = 19}, + [1882] = {.lex_state = 47, .external_lex_state = 10}, + [1883] = {.lex_state = 51, .external_lex_state = 10}, + [1884] = {.lex_state = 44, .external_lex_state = 10}, + [1885] = {.lex_state = 44, .external_lex_state = 10}, + [1886] = {.lex_state = 44, .external_lex_state = 10}, + [1887] = {.lex_state = 44, .external_lex_state = 10}, + [1888] = {.lex_state = 44, .external_lex_state = 10}, [1889] = {.lex_state = 37}, - [1890] = {.lex_state = 51}, - [1891] = {.lex_state = 47}, + [1890] = {.lex_state = 50}, + [1891] = {.lex_state = 9}, [1892] = {.lex_state = 9}, - [1893] = {.lex_state = 44, .external_lex_state = 13}, - [1894] = {.lex_state = 44, .external_lex_state = 13}, - [1895] = {.lex_state = 47, .external_lex_state = 2}, - [1896] = {.lex_state = 9}, - [1897] = {.lex_state = 39}, - [1898] = {.lex_state = 51}, + [1893] = {.lex_state = 46}, + [1894] = {.lex_state = 43, .external_lex_state = 10}, + [1895] = {.lex_state = 43, .external_lex_state = 10}, + [1896] = {.lex_state = 39}, + [1897] = {.lex_state = 50}, + [1898] = {.lex_state = 46, .external_lex_state = 2}, [1899] = {.lex_state = 9}, - [1900] = {.lex_state = 45, .external_lex_state = 21}, - [1901] = {.lex_state = 45, .external_lex_state = 13}, - [1902] = {.lex_state = 44, .external_lex_state = 13}, - [1903] = {.lex_state = 44, .external_lex_state = 13}, - [1904] = {.lex_state = 48, .external_lex_state = 13}, - [1905] = {.lex_state = 45, .external_lex_state = 21}, - [1906] = {.lex_state = 45, .external_lex_state = 13}, + [1900] = {.lex_state = 44, .external_lex_state = 20}, + [1901] = {.lex_state = 44, .external_lex_state = 10}, + [1902] = {.lex_state = 43, .external_lex_state = 10}, + [1903] = {.lex_state = 43, .external_lex_state = 10}, + [1904] = {.lex_state = 47, .external_lex_state = 10}, + [1905] = {.lex_state = 44, .external_lex_state = 20}, + [1906] = {.lex_state = 44, .external_lex_state = 10}, [1907] = {.lex_state = 39}, - [1908] = {.lex_state = 45, .external_lex_state = 13}, - [1909] = {.lex_state = 45, .external_lex_state = 13}, - [1910] = {.lex_state = 45, .external_lex_state = 21}, - [1911] = {.lex_state = 48, .external_lex_state = 13}, - [1912] = {.lex_state = 45, .external_lex_state = 21}, - [1913] = {.lex_state = 45, .external_lex_state = 13}, - [1914] = {.lex_state = 35, .external_lex_state = 20}, - [1915] = {.lex_state = 42, .external_lex_state = 13}, - [1916] = {.lex_state = 35, .external_lex_state = 13}, - [1917] = {.lex_state = 45, .external_lex_state = 13}, - [1918] = {.lex_state = 45, .external_lex_state = 13}, - [1919] = {.lex_state = 45, .external_lex_state = 13}, - [1920] = {.lex_state = 45, .external_lex_state = 13}, - [1921] = {.lex_state = 35, .external_lex_state = 20}, - [1922] = {.lex_state = 42, .external_lex_state = 13}, - [1923] = {.lex_state = 35, .external_lex_state = 13}, - [1924] = {.lex_state = 45, .external_lex_state = 13}, - [1925] = {.lex_state = 45, .external_lex_state = 13}, - [1926] = {.lex_state = 45, .external_lex_state = 13}, - [1927] = {.lex_state = 45, .external_lex_state = 13}, - [1928] = {.lex_state = 45, .external_lex_state = 13}, + [1908] = {.lex_state = 44, .external_lex_state = 10}, + [1909] = {.lex_state = 44, .external_lex_state = 10}, + [1910] = {.lex_state = 44, .external_lex_state = 20}, + [1911] = {.lex_state = 47, .external_lex_state = 10}, + [1912] = {.lex_state = 44, .external_lex_state = 20}, + [1913] = {.lex_state = 44, .external_lex_state = 10}, + [1914] = {.lex_state = 51, .external_lex_state = 19}, + [1915] = {.lex_state = 47, .external_lex_state = 10}, + [1916] = {.lex_state = 51, .external_lex_state = 10}, + [1917] = {.lex_state = 44, .external_lex_state = 10}, + [1918] = {.lex_state = 44, .external_lex_state = 10}, + [1919] = {.lex_state = 44, .external_lex_state = 10}, + [1920] = {.lex_state = 44, .external_lex_state = 10}, + [1921] = {.lex_state = 51, .external_lex_state = 19}, + [1922] = {.lex_state = 47, .external_lex_state = 10}, + [1923] = {.lex_state = 51, .external_lex_state = 10}, + [1924] = {.lex_state = 44, .external_lex_state = 10}, + [1925] = {.lex_state = 44, .external_lex_state = 10}, + [1926] = {.lex_state = 44, .external_lex_state = 10}, + [1927] = {.lex_state = 44, .external_lex_state = 10}, + [1928] = {.lex_state = 44, .external_lex_state = 10}, [1929] = {.lex_state = 37}, - [1930] = {.lex_state = 51}, - [1931] = {.lex_state = 47}, + [1930] = {.lex_state = 50}, + [1931] = {.lex_state = 9}, [1932] = {.lex_state = 9}, - [1933] = {.lex_state = 44, .external_lex_state = 13}, - [1934] = {.lex_state = 44, .external_lex_state = 13}, - [1935] = {.lex_state = 47, .external_lex_state = 2}, - [1936] = {.lex_state = 9}, - [1937] = {.lex_state = 39}, - [1938] = {.lex_state = 51}, + [1933] = {.lex_state = 46}, + [1934] = {.lex_state = 43, .external_lex_state = 10}, + [1935] = {.lex_state = 43, .external_lex_state = 10}, + [1936] = {.lex_state = 39}, + [1937] = {.lex_state = 50}, + [1938] = {.lex_state = 46, .external_lex_state = 2}, [1939] = {.lex_state = 9}, - [1940] = {.lex_state = 45, .external_lex_state = 21}, - [1941] = {.lex_state = 45, .external_lex_state = 13}, - [1942] = {.lex_state = 44, .external_lex_state = 13}, - [1943] = {.lex_state = 44, .external_lex_state = 13}, - [1944] = {.lex_state = 48, .external_lex_state = 13}, - [1945] = {.lex_state = 45, .external_lex_state = 21}, - [1946] = {.lex_state = 45, .external_lex_state = 13}, + [1940] = {.lex_state = 44, .external_lex_state = 20}, + [1941] = {.lex_state = 44, .external_lex_state = 10}, + [1942] = {.lex_state = 43, .external_lex_state = 10}, + [1943] = {.lex_state = 43, .external_lex_state = 10}, + [1944] = {.lex_state = 47, .external_lex_state = 10}, + [1945] = {.lex_state = 44, .external_lex_state = 20}, + [1946] = {.lex_state = 44, .external_lex_state = 10}, [1947] = {.lex_state = 39}, - [1948] = {.lex_state = 45, .external_lex_state = 13}, - [1949] = {.lex_state = 45, .external_lex_state = 13}, - [1950] = {.lex_state = 45, .external_lex_state = 21}, - [1951] = {.lex_state = 48, .external_lex_state = 13}, - [1952] = {.lex_state = 45, .external_lex_state = 21}, - [1953] = {.lex_state = 45, .external_lex_state = 13}, - [1954] = {.lex_state = 35, .external_lex_state = 20}, - [1955] = {.lex_state = 42, .external_lex_state = 13}, - [1956] = {.lex_state = 35, .external_lex_state = 13}, - [1957] = {.lex_state = 45, .external_lex_state = 13}, - [1958] = {.lex_state = 45, .external_lex_state = 13}, - [1959] = {.lex_state = 45, .external_lex_state = 13}, - [1960] = {.lex_state = 45, .external_lex_state = 13}, - [1961] = {.lex_state = 35, .external_lex_state = 20}, - [1962] = {.lex_state = 42, .external_lex_state = 13}, - [1963] = {.lex_state = 35, .external_lex_state = 13}, - [1964] = {.lex_state = 45, .external_lex_state = 13}, - [1965] = {.lex_state = 45, .external_lex_state = 13}, - [1966] = {.lex_state = 45, .external_lex_state = 13}, - [1967] = {.lex_state = 45, .external_lex_state = 13}, - [1968] = {.lex_state = 45, .external_lex_state = 13}, + [1948] = {.lex_state = 44, .external_lex_state = 10}, + [1949] = {.lex_state = 44, .external_lex_state = 10}, + [1950] = {.lex_state = 44, .external_lex_state = 20}, + [1951] = {.lex_state = 47, .external_lex_state = 10}, + [1952] = {.lex_state = 44, .external_lex_state = 20}, + [1953] = {.lex_state = 44, .external_lex_state = 10}, + [1954] = {.lex_state = 51, .external_lex_state = 19}, + [1955] = {.lex_state = 47, .external_lex_state = 10}, + [1956] = {.lex_state = 51, .external_lex_state = 10}, + [1957] = {.lex_state = 44, .external_lex_state = 10}, + [1958] = {.lex_state = 44, .external_lex_state = 10}, + [1959] = {.lex_state = 44, .external_lex_state = 10}, + [1960] = {.lex_state = 44, .external_lex_state = 10}, + [1961] = {.lex_state = 51, .external_lex_state = 19}, + [1962] = {.lex_state = 47, .external_lex_state = 10}, + [1963] = {.lex_state = 51, .external_lex_state = 10}, + [1964] = {.lex_state = 44, .external_lex_state = 10}, + [1965] = {.lex_state = 44, .external_lex_state = 10}, + [1966] = {.lex_state = 44, .external_lex_state = 10}, + [1967] = {.lex_state = 44, .external_lex_state = 10}, + [1968] = {.lex_state = 44, .external_lex_state = 10}, [1969] = {.lex_state = 37}, - [1970] = {.lex_state = 51}, - [1971] = {.lex_state = 47}, + [1970] = {.lex_state = 50}, + [1971] = {.lex_state = 9}, [1972] = {.lex_state = 9}, - [1973] = {.lex_state = 44, .external_lex_state = 13}, - [1974] = {.lex_state = 44, .external_lex_state = 13}, - [1975] = {.lex_state = 47, .external_lex_state = 2}, - [1976] = {.lex_state = 9}, - [1977] = {.lex_state = 39}, - [1978] = {.lex_state = 51}, + [1973] = {.lex_state = 46}, + [1974] = {.lex_state = 43, .external_lex_state = 10}, + [1975] = {.lex_state = 43, .external_lex_state = 10}, + [1976] = {.lex_state = 39}, + [1977] = {.lex_state = 50}, + [1978] = {.lex_state = 46, .external_lex_state = 2}, [1979] = {.lex_state = 9}, - [1980] = {.lex_state = 45, .external_lex_state = 21}, - [1981] = {.lex_state = 45, .external_lex_state = 13}, - [1982] = {.lex_state = 44, .external_lex_state = 13}, - [1983] = {.lex_state = 44, .external_lex_state = 13}, - [1984] = {.lex_state = 48, .external_lex_state = 13}, - [1985] = {.lex_state = 45, .external_lex_state = 21}, - [1986] = {.lex_state = 45, .external_lex_state = 13}, + [1980] = {.lex_state = 44, .external_lex_state = 20}, + [1981] = {.lex_state = 44, .external_lex_state = 10}, + [1982] = {.lex_state = 43, .external_lex_state = 10}, + [1983] = {.lex_state = 43, .external_lex_state = 10}, + [1984] = {.lex_state = 47, .external_lex_state = 10}, + [1985] = {.lex_state = 44, .external_lex_state = 20}, + [1986] = {.lex_state = 44, .external_lex_state = 10}, [1987] = {.lex_state = 39}, - [1988] = {.lex_state = 45, .external_lex_state = 13}, - [1989] = {.lex_state = 45, .external_lex_state = 13}, - [1990] = {.lex_state = 45, .external_lex_state = 21}, - [1991] = {.lex_state = 48, .external_lex_state = 13}, - [1992] = {.lex_state = 45, .external_lex_state = 21}, - [1993] = {.lex_state = 45, .external_lex_state = 13}, - [1994] = {.lex_state = 35, .external_lex_state = 20}, - [1995] = {.lex_state = 42, .external_lex_state = 13}, - [1996] = {.lex_state = 35, .external_lex_state = 13}, - [1997] = {.lex_state = 45, .external_lex_state = 13}, - [1998] = {.lex_state = 45, .external_lex_state = 13}, - [1999] = {.lex_state = 45, .external_lex_state = 13}, - [2000] = {.lex_state = 45, .external_lex_state = 13}, - [2001] = {.lex_state = 35, .external_lex_state = 20}, - [2002] = {.lex_state = 42, .external_lex_state = 13}, - [2003] = {.lex_state = 35, .external_lex_state = 13}, - [2004] = {.lex_state = 45, .external_lex_state = 13}, - [2005] = {.lex_state = 45, .external_lex_state = 13}, - [2006] = {.lex_state = 45, .external_lex_state = 13}, - [2007] = {.lex_state = 45, .external_lex_state = 13}, - [2008] = {.lex_state = 45, .external_lex_state = 13}, + [1988] = {.lex_state = 44, .external_lex_state = 10}, + [1989] = {.lex_state = 44, .external_lex_state = 10}, + [1990] = {.lex_state = 44, .external_lex_state = 20}, + [1991] = {.lex_state = 47, .external_lex_state = 10}, + [1992] = {.lex_state = 44, .external_lex_state = 20}, + [1993] = {.lex_state = 44, .external_lex_state = 10}, + [1994] = {.lex_state = 51, .external_lex_state = 19}, + [1995] = {.lex_state = 47, .external_lex_state = 10}, + [1996] = {.lex_state = 51, .external_lex_state = 10}, + [1997] = {.lex_state = 44, .external_lex_state = 10}, + [1998] = {.lex_state = 44, .external_lex_state = 10}, + [1999] = {.lex_state = 44, .external_lex_state = 10}, + [2000] = {.lex_state = 44, .external_lex_state = 10}, + [2001] = {.lex_state = 51, .external_lex_state = 19}, + [2002] = {.lex_state = 47, .external_lex_state = 10}, + [2003] = {.lex_state = 51, .external_lex_state = 10}, + [2004] = {.lex_state = 44, .external_lex_state = 10}, + [2005] = {.lex_state = 44, .external_lex_state = 10}, + [2006] = {.lex_state = 44, .external_lex_state = 10}, + [2007] = {.lex_state = 44, .external_lex_state = 10}, + [2008] = {.lex_state = 44, .external_lex_state = 10}, [2009] = {.lex_state = 37}, - [2010] = {.lex_state = 51}, - [2011] = {.lex_state = 47}, + [2010] = {.lex_state = 50}, + [2011] = {.lex_state = 9}, [2012] = {.lex_state = 9}, - [2013] = {.lex_state = 44, .external_lex_state = 13}, - [2014] = {.lex_state = 44, .external_lex_state = 13}, - [2015] = {.lex_state = 47, .external_lex_state = 2}, - [2016] = {.lex_state = 9}, - [2017] = {.lex_state = 39}, - [2018] = {.lex_state = 51}, + [2013] = {.lex_state = 46}, + [2014] = {.lex_state = 43, .external_lex_state = 10}, + [2015] = {.lex_state = 43, .external_lex_state = 10}, + [2016] = {.lex_state = 39}, + [2017] = {.lex_state = 50}, + [2018] = {.lex_state = 46, .external_lex_state = 2}, [2019] = {.lex_state = 9}, - [2020] = {.lex_state = 45, .external_lex_state = 21}, - [2021] = {.lex_state = 45, .external_lex_state = 13}, - [2022] = {.lex_state = 44, .external_lex_state = 13}, - [2023] = {.lex_state = 44, .external_lex_state = 13}, - [2024] = {.lex_state = 48, .external_lex_state = 13}, - [2025] = {.lex_state = 45, .external_lex_state = 21}, - [2026] = {.lex_state = 45, .external_lex_state = 13}, + [2020] = {.lex_state = 44, .external_lex_state = 20}, + [2021] = {.lex_state = 44, .external_lex_state = 10}, + [2022] = {.lex_state = 43, .external_lex_state = 10}, + [2023] = {.lex_state = 43, .external_lex_state = 10}, + [2024] = {.lex_state = 47, .external_lex_state = 10}, + [2025] = {.lex_state = 44, .external_lex_state = 20}, + [2026] = {.lex_state = 44, .external_lex_state = 10}, [2027] = {.lex_state = 39}, - [2028] = {.lex_state = 45, .external_lex_state = 13}, - [2029] = {.lex_state = 45, .external_lex_state = 13}, - [2030] = {.lex_state = 45, .external_lex_state = 21}, - [2031] = {.lex_state = 48, .external_lex_state = 13}, - [2032] = {.lex_state = 45, .external_lex_state = 21}, - [2033] = {.lex_state = 45, .external_lex_state = 13}, - [2034] = {.lex_state = 35, .external_lex_state = 20}, - [2035] = {.lex_state = 42, .external_lex_state = 13}, - [2036] = {.lex_state = 35, .external_lex_state = 13}, - [2037] = {.lex_state = 45, .external_lex_state = 13}, - [2038] = {.lex_state = 45, .external_lex_state = 13}, - [2039] = {.lex_state = 45, .external_lex_state = 13}, - [2040] = {.lex_state = 45, .external_lex_state = 13}, - [2041] = {.lex_state = 35, .external_lex_state = 20}, - [2042] = {.lex_state = 42, .external_lex_state = 13}, - [2043] = {.lex_state = 35, .external_lex_state = 13}, - [2044] = {.lex_state = 45, .external_lex_state = 13}, - [2045] = {.lex_state = 45, .external_lex_state = 13}, - [2046] = {.lex_state = 45, .external_lex_state = 13}, - [2047] = {.lex_state = 45, .external_lex_state = 13}, - [2048] = {.lex_state = 45, .external_lex_state = 13}, + [2028] = {.lex_state = 44, .external_lex_state = 10}, + [2029] = {.lex_state = 44, .external_lex_state = 10}, + [2030] = {.lex_state = 44, .external_lex_state = 20}, + [2031] = {.lex_state = 47, .external_lex_state = 10}, + [2032] = {.lex_state = 44, .external_lex_state = 20}, + [2033] = {.lex_state = 44, .external_lex_state = 10}, + [2034] = {.lex_state = 51, .external_lex_state = 19}, + [2035] = {.lex_state = 47, .external_lex_state = 10}, + [2036] = {.lex_state = 51, .external_lex_state = 10}, + [2037] = {.lex_state = 44, .external_lex_state = 10}, + [2038] = {.lex_state = 44, .external_lex_state = 10}, + [2039] = {.lex_state = 44, .external_lex_state = 10}, + [2040] = {.lex_state = 44, .external_lex_state = 10}, + [2041] = {.lex_state = 51, .external_lex_state = 19}, + [2042] = {.lex_state = 47, .external_lex_state = 10}, + [2043] = {.lex_state = 51, .external_lex_state = 10}, + [2044] = {.lex_state = 44, .external_lex_state = 10}, + [2045] = {.lex_state = 44, .external_lex_state = 10}, + [2046] = {.lex_state = 44, .external_lex_state = 10}, + [2047] = {.lex_state = 44, .external_lex_state = 10}, + [2048] = {.lex_state = 44, .external_lex_state = 10}, [2049] = {.lex_state = 37}, - [2050] = {.lex_state = 51}, - [2051] = {.lex_state = 47}, + [2050] = {.lex_state = 50}, + [2051] = {.lex_state = 9}, [2052] = {.lex_state = 9}, - [2053] = {.lex_state = 44, .external_lex_state = 13}, - [2054] = {.lex_state = 44, .external_lex_state = 13}, - [2055] = {.lex_state = 47, .external_lex_state = 2}, - [2056] = {.lex_state = 9}, - [2057] = {.lex_state = 39}, - [2058] = {.lex_state = 51}, + [2053] = {.lex_state = 46}, + [2054] = {.lex_state = 43, .external_lex_state = 10}, + [2055] = {.lex_state = 43, .external_lex_state = 10}, + [2056] = {.lex_state = 39}, + [2057] = {.lex_state = 50}, + [2058] = {.lex_state = 46, .external_lex_state = 2}, [2059] = {.lex_state = 9}, - [2060] = {.lex_state = 45, .external_lex_state = 21}, - [2061] = {.lex_state = 45, .external_lex_state = 13}, - [2062] = {.lex_state = 44, .external_lex_state = 13}, - [2063] = {.lex_state = 44, .external_lex_state = 13}, - [2064] = {.lex_state = 48, .external_lex_state = 13}, - [2065] = {.lex_state = 45, .external_lex_state = 21}, - [2066] = {.lex_state = 45, .external_lex_state = 13}, + [2060] = {.lex_state = 44, .external_lex_state = 20}, + [2061] = {.lex_state = 44, .external_lex_state = 10}, + [2062] = {.lex_state = 43, .external_lex_state = 10}, + [2063] = {.lex_state = 43, .external_lex_state = 10}, + [2064] = {.lex_state = 47, .external_lex_state = 10}, + [2065] = {.lex_state = 44, .external_lex_state = 20}, + [2066] = {.lex_state = 44, .external_lex_state = 10}, [2067] = {.lex_state = 39}, - [2068] = {.lex_state = 45, .external_lex_state = 13}, - [2069] = {.lex_state = 45, .external_lex_state = 13}, - [2070] = {.lex_state = 45, .external_lex_state = 21}, - [2071] = {.lex_state = 48, .external_lex_state = 13}, - [2072] = {.lex_state = 45, .external_lex_state = 21}, - [2073] = {.lex_state = 45, .external_lex_state = 13}, - [2074] = {.lex_state = 35, .external_lex_state = 20}, - [2075] = {.lex_state = 42, .external_lex_state = 13}, - [2076] = {.lex_state = 35, .external_lex_state = 13}, - [2077] = {.lex_state = 45, .external_lex_state = 13}, - [2078] = {.lex_state = 45, .external_lex_state = 13}, - [2079] = {.lex_state = 45, .external_lex_state = 13}, - [2080] = {.lex_state = 45, .external_lex_state = 13}, - [2081] = {.lex_state = 35, .external_lex_state = 20}, - [2082] = {.lex_state = 42, .external_lex_state = 13}, - [2083] = {.lex_state = 35, .external_lex_state = 13}, - [2084] = {.lex_state = 45, .external_lex_state = 13}, - [2085] = {.lex_state = 45, .external_lex_state = 13}, - [2086] = {.lex_state = 45, .external_lex_state = 13}, - [2087] = {.lex_state = 45, .external_lex_state = 13}, - [2088] = {.lex_state = 45, .external_lex_state = 13}, + [2068] = {.lex_state = 44, .external_lex_state = 10}, + [2069] = {.lex_state = 44, .external_lex_state = 10}, + [2070] = {.lex_state = 44, .external_lex_state = 20}, + [2071] = {.lex_state = 47, .external_lex_state = 10}, + [2072] = {.lex_state = 44, .external_lex_state = 20}, + [2073] = {.lex_state = 44, .external_lex_state = 10}, + [2074] = {.lex_state = 51, .external_lex_state = 19}, + [2075] = {.lex_state = 47, .external_lex_state = 10}, + [2076] = {.lex_state = 51, .external_lex_state = 10}, + [2077] = {.lex_state = 44, .external_lex_state = 10}, + [2078] = {.lex_state = 44, .external_lex_state = 10}, + [2079] = {.lex_state = 44, .external_lex_state = 10}, + [2080] = {.lex_state = 44, .external_lex_state = 10}, + [2081] = {.lex_state = 51, .external_lex_state = 19}, + [2082] = {.lex_state = 47, .external_lex_state = 10}, + [2083] = {.lex_state = 51, .external_lex_state = 10}, + [2084] = {.lex_state = 44, .external_lex_state = 10}, + [2085] = {.lex_state = 44, .external_lex_state = 10}, + [2086] = {.lex_state = 44, .external_lex_state = 10}, + [2087] = {.lex_state = 44, .external_lex_state = 10}, + [2088] = {.lex_state = 44, .external_lex_state = 10}, [2089] = {.lex_state = 37}, - [2090] = {.lex_state = 51}, - [2091] = {.lex_state = 47}, + [2090] = {.lex_state = 50}, + [2091] = {.lex_state = 9}, [2092] = {.lex_state = 9}, - [2093] = {.lex_state = 44, .external_lex_state = 13}, - [2094] = {.lex_state = 44, .external_lex_state = 13}, - [2095] = {.lex_state = 47, .external_lex_state = 2}, - [2096] = {.lex_state = 9}, - [2097] = {.lex_state = 39}, - [2098] = {.lex_state = 51}, + [2093] = {.lex_state = 46}, + [2094] = {.lex_state = 43, .external_lex_state = 10}, + [2095] = {.lex_state = 43, .external_lex_state = 10}, + [2096] = {.lex_state = 39}, + [2097] = {.lex_state = 50}, + [2098] = {.lex_state = 46, .external_lex_state = 2}, [2099] = {.lex_state = 9}, - [2100] = {.lex_state = 45, .external_lex_state = 21}, - [2101] = {.lex_state = 45, .external_lex_state = 13}, - [2102] = {.lex_state = 44, .external_lex_state = 13}, - [2103] = {.lex_state = 44, .external_lex_state = 13}, - [2104] = {.lex_state = 48, .external_lex_state = 13}, - [2105] = {.lex_state = 45, .external_lex_state = 21}, - [2106] = {.lex_state = 45, .external_lex_state = 13}, + [2100] = {.lex_state = 44, .external_lex_state = 20}, + [2101] = {.lex_state = 44, .external_lex_state = 10}, + [2102] = {.lex_state = 43, .external_lex_state = 10}, + [2103] = {.lex_state = 43, .external_lex_state = 10}, + [2104] = {.lex_state = 47, .external_lex_state = 10}, + [2105] = {.lex_state = 44, .external_lex_state = 20}, + [2106] = {.lex_state = 44, .external_lex_state = 10}, [2107] = {.lex_state = 39}, - [2108] = {.lex_state = 45, .external_lex_state = 13}, - [2109] = {.lex_state = 45, .external_lex_state = 13}, - [2110] = {.lex_state = 45, .external_lex_state = 21}, - [2111] = {.lex_state = 48, .external_lex_state = 13}, - [2112] = {.lex_state = 45, .external_lex_state = 21}, - [2113] = {.lex_state = 45, .external_lex_state = 13}, - [2114] = {.lex_state = 35, .external_lex_state = 20}, - [2115] = {.lex_state = 42, .external_lex_state = 13}, - [2116] = {.lex_state = 35, .external_lex_state = 13}, - [2117] = {.lex_state = 45, .external_lex_state = 13}, - [2118] = {.lex_state = 45, .external_lex_state = 13}, - [2119] = {.lex_state = 45, .external_lex_state = 13}, - [2120] = {.lex_state = 45, .external_lex_state = 13}, - [2121] = {.lex_state = 35, .external_lex_state = 20}, - [2122] = {.lex_state = 42, .external_lex_state = 13}, - [2123] = {.lex_state = 35, .external_lex_state = 13}, - [2124] = {.lex_state = 45, .external_lex_state = 13}, - [2125] = {.lex_state = 45, .external_lex_state = 13}, - [2126] = {.lex_state = 45, .external_lex_state = 13}, - [2127] = {.lex_state = 45, .external_lex_state = 13}, - [2128] = {.lex_state = 45, .external_lex_state = 13}, + [2108] = {.lex_state = 44, .external_lex_state = 10}, + [2109] = {.lex_state = 44, .external_lex_state = 10}, + [2110] = {.lex_state = 44, .external_lex_state = 20}, + [2111] = {.lex_state = 47, .external_lex_state = 10}, + [2112] = {.lex_state = 44, .external_lex_state = 20}, + [2113] = {.lex_state = 44, .external_lex_state = 10}, + [2114] = {.lex_state = 51, .external_lex_state = 19}, + [2115] = {.lex_state = 47, .external_lex_state = 10}, + [2116] = {.lex_state = 51, .external_lex_state = 10}, + [2117] = {.lex_state = 44, .external_lex_state = 10}, + [2118] = {.lex_state = 44, .external_lex_state = 10}, + [2119] = {.lex_state = 44, .external_lex_state = 10}, + [2120] = {.lex_state = 44, .external_lex_state = 10}, + [2121] = {.lex_state = 51, .external_lex_state = 19}, + [2122] = {.lex_state = 47, .external_lex_state = 10}, + [2123] = {.lex_state = 51, .external_lex_state = 10}, + [2124] = {.lex_state = 44, .external_lex_state = 10}, + [2125] = {.lex_state = 44, .external_lex_state = 10}, + [2126] = {.lex_state = 44, .external_lex_state = 10}, + [2127] = {.lex_state = 44, .external_lex_state = 10}, + [2128] = {.lex_state = 44, .external_lex_state = 10}, [2129] = {.lex_state = 37}, - [2130] = {.lex_state = 51}, - [2131] = {.lex_state = 47}, + [2130] = {.lex_state = 50}, + [2131] = {.lex_state = 9}, [2132] = {.lex_state = 9}, - [2133] = {.lex_state = 44, .external_lex_state = 13}, - [2134] = {.lex_state = 44, .external_lex_state = 13}, - [2135] = {.lex_state = 47, .external_lex_state = 2}, - [2136] = {.lex_state = 9}, - [2137] = {.lex_state = 39}, - [2138] = {.lex_state = 51}, + [2133] = {.lex_state = 46}, + [2134] = {.lex_state = 43, .external_lex_state = 10}, + [2135] = {.lex_state = 43, .external_lex_state = 10}, + [2136] = {.lex_state = 39}, + [2137] = {.lex_state = 50}, + [2138] = {.lex_state = 46, .external_lex_state = 2}, [2139] = {.lex_state = 9}, - [2140] = {.lex_state = 45, .external_lex_state = 21}, - [2141] = {.lex_state = 45, .external_lex_state = 13}, - [2142] = {.lex_state = 44, .external_lex_state = 13}, - [2143] = {.lex_state = 44, .external_lex_state = 13}, - [2144] = {.lex_state = 48, .external_lex_state = 13}, - [2145] = {.lex_state = 45, .external_lex_state = 21}, - [2146] = {.lex_state = 45, .external_lex_state = 13}, + [2140] = {.lex_state = 44, .external_lex_state = 20}, + [2141] = {.lex_state = 44, .external_lex_state = 10}, + [2142] = {.lex_state = 43, .external_lex_state = 10}, + [2143] = {.lex_state = 43, .external_lex_state = 10}, + [2144] = {.lex_state = 47, .external_lex_state = 10}, + [2145] = {.lex_state = 44, .external_lex_state = 20}, + [2146] = {.lex_state = 44, .external_lex_state = 10}, [2147] = {.lex_state = 39}, - [2148] = {.lex_state = 45, .external_lex_state = 13}, - [2149] = {.lex_state = 45, .external_lex_state = 13}, - [2150] = {.lex_state = 45, .external_lex_state = 21}, - [2151] = {.lex_state = 48, .external_lex_state = 13}, - [2152] = {.lex_state = 45, .external_lex_state = 21}, - [2153] = {.lex_state = 45, .external_lex_state = 13}, - [2154] = {.lex_state = 35, .external_lex_state = 20}, - [2155] = {.lex_state = 42, .external_lex_state = 13}, - [2156] = {.lex_state = 35, .external_lex_state = 13}, - [2157] = {.lex_state = 45, .external_lex_state = 13}, - [2158] = {.lex_state = 45, .external_lex_state = 13}, - [2159] = {.lex_state = 45, .external_lex_state = 13}, - [2160] = {.lex_state = 45, .external_lex_state = 13}, - [2161] = {.lex_state = 35, .external_lex_state = 20}, - [2162] = {.lex_state = 42, .external_lex_state = 13}, - [2163] = {.lex_state = 35, .external_lex_state = 13}, - [2164] = {.lex_state = 45, .external_lex_state = 13}, - [2165] = {.lex_state = 45, .external_lex_state = 13}, - [2166] = {.lex_state = 45, .external_lex_state = 13}, - [2167] = {.lex_state = 45, .external_lex_state = 13}, - [2168] = {.lex_state = 45, .external_lex_state = 13}, + [2148] = {.lex_state = 44, .external_lex_state = 10}, + [2149] = {.lex_state = 44, .external_lex_state = 10}, + [2150] = {.lex_state = 44, .external_lex_state = 20}, + [2151] = {.lex_state = 47, .external_lex_state = 10}, + [2152] = {.lex_state = 44, .external_lex_state = 20}, + [2153] = {.lex_state = 44, .external_lex_state = 10}, + [2154] = {.lex_state = 51, .external_lex_state = 19}, + [2155] = {.lex_state = 47, .external_lex_state = 10}, + [2156] = {.lex_state = 51, .external_lex_state = 10}, + [2157] = {.lex_state = 44, .external_lex_state = 10}, + [2158] = {.lex_state = 44, .external_lex_state = 10}, + [2159] = {.lex_state = 44, .external_lex_state = 10}, + [2160] = {.lex_state = 44, .external_lex_state = 10}, + [2161] = {.lex_state = 51, .external_lex_state = 19}, + [2162] = {.lex_state = 47, .external_lex_state = 10}, + [2163] = {.lex_state = 51, .external_lex_state = 10}, + [2164] = {.lex_state = 44, .external_lex_state = 10}, + [2165] = {.lex_state = 44, .external_lex_state = 10}, + [2166] = {.lex_state = 44, .external_lex_state = 10}, + [2167] = {.lex_state = 44, .external_lex_state = 10}, + [2168] = {.lex_state = 44, .external_lex_state = 10}, [2169] = {.lex_state = 37}, - [2170] = {.lex_state = 51}, - [2171] = {.lex_state = 47}, + [2170] = {.lex_state = 50}, + [2171] = {.lex_state = 9}, [2172] = {.lex_state = 9}, - [2173] = {.lex_state = 44, .external_lex_state = 13}, - [2174] = {.lex_state = 44, .external_lex_state = 13}, - [2175] = {.lex_state = 47, .external_lex_state = 2}, - [2176] = {.lex_state = 9}, - [2177] = {.lex_state = 39}, - [2178] = {.lex_state = 51}, + [2173] = {.lex_state = 46}, + [2174] = {.lex_state = 43, .external_lex_state = 10}, + [2175] = {.lex_state = 43, .external_lex_state = 10}, + [2176] = {.lex_state = 39}, + [2177] = {.lex_state = 50}, + [2178] = {.lex_state = 46, .external_lex_state = 2}, [2179] = {.lex_state = 9}, - [2180] = {.lex_state = 45, .external_lex_state = 21}, - [2181] = {.lex_state = 45, .external_lex_state = 13}, - [2182] = {.lex_state = 44, .external_lex_state = 13}, - [2183] = {.lex_state = 44, .external_lex_state = 13}, - [2184] = {.lex_state = 48, .external_lex_state = 13}, - [2185] = {.lex_state = 45, .external_lex_state = 21}, - [2186] = {.lex_state = 45, .external_lex_state = 13}, + [2180] = {.lex_state = 44, .external_lex_state = 20}, + [2181] = {.lex_state = 44, .external_lex_state = 10}, + [2182] = {.lex_state = 43, .external_lex_state = 10}, + [2183] = {.lex_state = 43, .external_lex_state = 10}, + [2184] = {.lex_state = 47, .external_lex_state = 10}, + [2185] = {.lex_state = 44, .external_lex_state = 20}, + [2186] = {.lex_state = 44, .external_lex_state = 10}, [2187] = {.lex_state = 39}, - [2188] = {.lex_state = 45, .external_lex_state = 13}, - [2189] = {.lex_state = 45, .external_lex_state = 13}, - [2190] = {.lex_state = 45, .external_lex_state = 21}, - [2191] = {.lex_state = 48, .external_lex_state = 13}, - [2192] = {.lex_state = 45, .external_lex_state = 21}, - [2193] = {.lex_state = 45, .external_lex_state = 13}, - [2194] = {.lex_state = 35, .external_lex_state = 20}, - [2195] = {.lex_state = 42, .external_lex_state = 13}, - [2196] = {.lex_state = 35, .external_lex_state = 13}, - [2197] = {.lex_state = 45, .external_lex_state = 13}, - [2198] = {.lex_state = 45, .external_lex_state = 13}, - [2199] = {.lex_state = 45, .external_lex_state = 13}, - [2200] = {.lex_state = 45, .external_lex_state = 13}, - [2201] = {.lex_state = 35, .external_lex_state = 20}, - [2202] = {.lex_state = 42, .external_lex_state = 13}, - [2203] = {.lex_state = 35, .external_lex_state = 13}, - [2204] = {.lex_state = 45, .external_lex_state = 13}, - [2205] = {.lex_state = 45, .external_lex_state = 13}, - [2206] = {.lex_state = 45, .external_lex_state = 13}, - [2207] = {.lex_state = 45, .external_lex_state = 13}, - [2208] = {.lex_state = 45, .external_lex_state = 13}, + [2188] = {.lex_state = 44, .external_lex_state = 10}, + [2189] = {.lex_state = 44, .external_lex_state = 10}, + [2190] = {.lex_state = 44, .external_lex_state = 20}, + [2191] = {.lex_state = 47, .external_lex_state = 10}, + [2192] = {.lex_state = 44, .external_lex_state = 20}, + [2193] = {.lex_state = 44, .external_lex_state = 10}, + [2194] = {.lex_state = 51, .external_lex_state = 19}, + [2195] = {.lex_state = 47, .external_lex_state = 10}, + [2196] = {.lex_state = 51, .external_lex_state = 10}, + [2197] = {.lex_state = 44, .external_lex_state = 10}, + [2198] = {.lex_state = 44, .external_lex_state = 10}, + [2199] = {.lex_state = 44, .external_lex_state = 10}, + [2200] = {.lex_state = 44, .external_lex_state = 10}, + [2201] = {.lex_state = 51, .external_lex_state = 19}, + [2202] = {.lex_state = 47, .external_lex_state = 10}, + [2203] = {.lex_state = 51, .external_lex_state = 10}, + [2204] = {.lex_state = 44, .external_lex_state = 10}, + [2205] = {.lex_state = 44, .external_lex_state = 10}, + [2206] = {.lex_state = 44, .external_lex_state = 10}, + [2207] = {.lex_state = 44, .external_lex_state = 10}, + [2208] = {.lex_state = 44, .external_lex_state = 10}, [2209] = {.lex_state = 37}, - [2210] = {.lex_state = 51}, - [2211] = {.lex_state = 47}, + [2210] = {.lex_state = 50}, + [2211] = {.lex_state = 9}, [2212] = {.lex_state = 9}, - [2213] = {.lex_state = 44, .external_lex_state = 13}, - [2214] = {.lex_state = 44, .external_lex_state = 13}, - [2215] = {.lex_state = 47, .external_lex_state = 2}, - [2216] = {.lex_state = 9}, - [2217] = {.lex_state = 39}, - [2218] = {.lex_state = 51}, + [2213] = {.lex_state = 46}, + [2214] = {.lex_state = 43, .external_lex_state = 10}, + [2215] = {.lex_state = 43, .external_lex_state = 10}, + [2216] = {.lex_state = 39}, + [2217] = {.lex_state = 50}, + [2218] = {.lex_state = 46, .external_lex_state = 2}, [2219] = {.lex_state = 9}, - [2220] = {.lex_state = 45, .external_lex_state = 21}, - [2221] = {.lex_state = 45, .external_lex_state = 13}, - [2222] = {.lex_state = 44, .external_lex_state = 13}, - [2223] = {.lex_state = 44, .external_lex_state = 13}, - [2224] = {.lex_state = 48, .external_lex_state = 13}, - [2225] = {.lex_state = 45, .external_lex_state = 21}, - [2226] = {.lex_state = 45, .external_lex_state = 13}, + [2220] = {.lex_state = 44, .external_lex_state = 20}, + [2221] = {.lex_state = 44, .external_lex_state = 10}, + [2222] = {.lex_state = 43, .external_lex_state = 10}, + [2223] = {.lex_state = 43, .external_lex_state = 10}, + [2224] = {.lex_state = 47, .external_lex_state = 10}, + [2225] = {.lex_state = 44, .external_lex_state = 20}, + [2226] = {.lex_state = 44, .external_lex_state = 10}, [2227] = {.lex_state = 39}, - [2228] = {.lex_state = 45, .external_lex_state = 13}, - [2229] = {.lex_state = 45, .external_lex_state = 13}, - [2230] = {.lex_state = 45, .external_lex_state = 21}, - [2231] = {.lex_state = 48, .external_lex_state = 13}, - [2232] = {.lex_state = 45, .external_lex_state = 21}, - [2233] = {.lex_state = 45, .external_lex_state = 13}, - [2234] = {.lex_state = 35, .external_lex_state = 20}, - [2235] = {.lex_state = 42, .external_lex_state = 13}, - [2236] = {.lex_state = 35, .external_lex_state = 13}, - [2237] = {.lex_state = 45, .external_lex_state = 13}, - [2238] = {.lex_state = 45, .external_lex_state = 13}, - [2239] = {.lex_state = 45, .external_lex_state = 13}, - [2240] = {.lex_state = 45, .external_lex_state = 13}, - [2241] = {.lex_state = 35, .external_lex_state = 20}, - [2242] = {.lex_state = 42, .external_lex_state = 13}, - [2243] = {.lex_state = 35, .external_lex_state = 13}, - [2244] = {.lex_state = 45, .external_lex_state = 13}, - [2245] = {.lex_state = 45, .external_lex_state = 13}, - [2246] = {.lex_state = 45, .external_lex_state = 13}, - [2247] = {.lex_state = 45, .external_lex_state = 13}, - [2248] = {.lex_state = 45, .external_lex_state = 13}, + [2228] = {.lex_state = 44, .external_lex_state = 10}, + [2229] = {.lex_state = 44, .external_lex_state = 10}, + [2230] = {.lex_state = 44, .external_lex_state = 20}, + [2231] = {.lex_state = 47, .external_lex_state = 10}, + [2232] = {.lex_state = 44, .external_lex_state = 20}, + [2233] = {.lex_state = 44, .external_lex_state = 10}, + [2234] = {.lex_state = 51, .external_lex_state = 19}, + [2235] = {.lex_state = 47, .external_lex_state = 10}, + [2236] = {.lex_state = 51, .external_lex_state = 10}, + [2237] = {.lex_state = 44, .external_lex_state = 10}, + [2238] = {.lex_state = 44, .external_lex_state = 10}, + [2239] = {.lex_state = 44, .external_lex_state = 10}, + [2240] = {.lex_state = 44, .external_lex_state = 10}, + [2241] = {.lex_state = 51, .external_lex_state = 19}, + [2242] = {.lex_state = 47, .external_lex_state = 10}, + [2243] = {.lex_state = 51, .external_lex_state = 10}, + [2244] = {.lex_state = 44, .external_lex_state = 10}, + [2245] = {.lex_state = 44, .external_lex_state = 10}, + [2246] = {.lex_state = 44, .external_lex_state = 10}, + [2247] = {.lex_state = 44, .external_lex_state = 10}, + [2248] = {.lex_state = 44, .external_lex_state = 10}, [2249] = {.lex_state = 37}, - [2250] = {.lex_state = 51}, - [2251] = {.lex_state = 47}, + [2250] = {.lex_state = 50}, + [2251] = {.lex_state = 9}, [2252] = {.lex_state = 9}, - [2253] = {.lex_state = 44, .external_lex_state = 13}, - [2254] = {.lex_state = 44, .external_lex_state = 13}, - [2255] = {.lex_state = 47, .external_lex_state = 2}, - [2256] = {.lex_state = 9}, - [2257] = {.lex_state = 39}, - [2258] = {.lex_state = 51}, + [2253] = {.lex_state = 46}, + [2254] = {.lex_state = 43, .external_lex_state = 10}, + [2255] = {.lex_state = 43, .external_lex_state = 10}, + [2256] = {.lex_state = 39}, + [2257] = {.lex_state = 50}, + [2258] = {.lex_state = 46, .external_lex_state = 2}, [2259] = {.lex_state = 9}, - [2260] = {.lex_state = 45, .external_lex_state = 21}, - [2261] = {.lex_state = 45, .external_lex_state = 13}, - [2262] = {.lex_state = 44, .external_lex_state = 13}, - [2263] = {.lex_state = 44, .external_lex_state = 13}, - [2264] = {.lex_state = 48, .external_lex_state = 13}, - [2265] = {.lex_state = 45, .external_lex_state = 21}, - [2266] = {.lex_state = 45, .external_lex_state = 13}, + [2260] = {.lex_state = 44, .external_lex_state = 20}, + [2261] = {.lex_state = 44, .external_lex_state = 10}, + [2262] = {.lex_state = 43, .external_lex_state = 10}, + [2263] = {.lex_state = 43, .external_lex_state = 10}, + [2264] = {.lex_state = 47, .external_lex_state = 10}, + [2265] = {.lex_state = 44, .external_lex_state = 20}, + [2266] = {.lex_state = 44, .external_lex_state = 10}, [2267] = {.lex_state = 39}, - [2268] = {.lex_state = 45, .external_lex_state = 13}, - [2269] = {.lex_state = 45, .external_lex_state = 13}, - [2270] = {.lex_state = 45, .external_lex_state = 21}, - [2271] = {.lex_state = 48, .external_lex_state = 13}, - [2272] = {.lex_state = 45, .external_lex_state = 21}, - [2273] = {.lex_state = 45, .external_lex_state = 13}, - [2274] = {.lex_state = 35, .external_lex_state = 20}, - [2275] = {.lex_state = 42, .external_lex_state = 13}, - [2276] = {.lex_state = 35, .external_lex_state = 13}, - [2277] = {.lex_state = 45, .external_lex_state = 13}, - [2278] = {.lex_state = 45, .external_lex_state = 13}, - [2279] = {.lex_state = 45, .external_lex_state = 13}, - [2280] = {.lex_state = 45, .external_lex_state = 13}, - [2281] = {.lex_state = 35, .external_lex_state = 20}, - [2282] = {.lex_state = 42, .external_lex_state = 13}, - [2283] = {.lex_state = 35, .external_lex_state = 13}, - [2284] = {.lex_state = 45, .external_lex_state = 13}, - [2285] = {.lex_state = 45, .external_lex_state = 13}, - [2286] = {.lex_state = 45, .external_lex_state = 13}, - [2287] = {.lex_state = 45, .external_lex_state = 13}, - [2288] = {.lex_state = 45, .external_lex_state = 13}, + [2268] = {.lex_state = 44, .external_lex_state = 10}, + [2269] = {.lex_state = 44, .external_lex_state = 10}, + [2270] = {.lex_state = 44, .external_lex_state = 20}, + [2271] = {.lex_state = 47, .external_lex_state = 10}, + [2272] = {.lex_state = 44, .external_lex_state = 20}, + [2273] = {.lex_state = 44, .external_lex_state = 10}, + [2274] = {.lex_state = 51, .external_lex_state = 19}, + [2275] = {.lex_state = 47, .external_lex_state = 10}, + [2276] = {.lex_state = 51, .external_lex_state = 10}, + [2277] = {.lex_state = 44, .external_lex_state = 10}, + [2278] = {.lex_state = 44, .external_lex_state = 10}, + [2279] = {.lex_state = 44, .external_lex_state = 10}, + [2280] = {.lex_state = 44, .external_lex_state = 10}, + [2281] = {.lex_state = 51, .external_lex_state = 19}, + [2282] = {.lex_state = 47, .external_lex_state = 10}, + [2283] = {.lex_state = 51, .external_lex_state = 10}, + [2284] = {.lex_state = 44, .external_lex_state = 10}, + [2285] = {.lex_state = 44, .external_lex_state = 10}, + [2286] = {.lex_state = 44, .external_lex_state = 10}, + [2287] = {.lex_state = 44, .external_lex_state = 10}, + [2288] = {.lex_state = 44, .external_lex_state = 10}, [2289] = {.lex_state = 37}, - [2290] = {.lex_state = 51}, - [2291] = {.lex_state = 47}, + [2290] = {.lex_state = 50}, + [2291] = {.lex_state = 9}, [2292] = {.lex_state = 9}, - [2293] = {.lex_state = 44, .external_lex_state = 13}, - [2294] = {.lex_state = 44, .external_lex_state = 13}, - [2295] = {.lex_state = 47, .external_lex_state = 2}, - [2296] = {.lex_state = 9}, - [2297] = {.lex_state = 39}, - [2298] = {.lex_state = 51}, + [2293] = {.lex_state = 46}, + [2294] = {.lex_state = 43, .external_lex_state = 10}, + [2295] = {.lex_state = 43, .external_lex_state = 10}, + [2296] = {.lex_state = 39}, + [2297] = {.lex_state = 50}, + [2298] = {.lex_state = 46, .external_lex_state = 2}, [2299] = {.lex_state = 9}, - [2300] = {.lex_state = 45, .external_lex_state = 21}, - [2301] = {.lex_state = 45, .external_lex_state = 13}, - [2302] = {.lex_state = 44, .external_lex_state = 13}, - [2303] = {.lex_state = 44, .external_lex_state = 13}, - [2304] = {.lex_state = 48, .external_lex_state = 13}, - [2305] = {.lex_state = 45, .external_lex_state = 21}, - [2306] = {.lex_state = 45, .external_lex_state = 13}, + [2300] = {.lex_state = 44, .external_lex_state = 20}, + [2301] = {.lex_state = 44, .external_lex_state = 10}, + [2302] = {.lex_state = 43, .external_lex_state = 10}, + [2303] = {.lex_state = 43, .external_lex_state = 10}, + [2304] = {.lex_state = 47, .external_lex_state = 10}, + [2305] = {.lex_state = 44, .external_lex_state = 20}, + [2306] = {.lex_state = 44, .external_lex_state = 10}, [2307] = {.lex_state = 39}, - [2308] = {.lex_state = 45, .external_lex_state = 13}, - [2309] = {.lex_state = 45, .external_lex_state = 13}, - [2310] = {.lex_state = 45, .external_lex_state = 21}, - [2311] = {.lex_state = 48, .external_lex_state = 13}, - [2312] = {.lex_state = 45, .external_lex_state = 21}, - [2313] = {.lex_state = 45, .external_lex_state = 13}, - [2314] = {.lex_state = 35, .external_lex_state = 20}, - [2315] = {.lex_state = 42, .external_lex_state = 13}, - [2316] = {.lex_state = 35, .external_lex_state = 13}, - [2317] = {.lex_state = 45, .external_lex_state = 13}, - [2318] = {.lex_state = 45, .external_lex_state = 13}, - [2319] = {.lex_state = 45, .external_lex_state = 13}, - [2320] = {.lex_state = 45, .external_lex_state = 13}, - [2321] = {.lex_state = 35, .external_lex_state = 20}, - [2322] = {.lex_state = 42, .external_lex_state = 13}, - [2323] = {.lex_state = 35, .external_lex_state = 13}, - [2324] = {.lex_state = 45, .external_lex_state = 13}, - [2325] = {.lex_state = 45, .external_lex_state = 13}, - [2326] = {.lex_state = 45, .external_lex_state = 13}, - [2327] = {.lex_state = 45, .external_lex_state = 13}, - [2328] = {.lex_state = 45, .external_lex_state = 13}, - [2329] = {.lex_state = 44, .external_lex_state = 13}, - [2330] = {.lex_state = 44, .external_lex_state = 13}, - [2331] = {.lex_state = 47, .external_lex_state = 2}, - [2332] = {.lex_state = 9}, + [2308] = {.lex_state = 44, .external_lex_state = 10}, + [2309] = {.lex_state = 44, .external_lex_state = 10}, + [2310] = {.lex_state = 44, .external_lex_state = 20}, + [2311] = {.lex_state = 47, .external_lex_state = 10}, + [2312] = {.lex_state = 44, .external_lex_state = 20}, + [2313] = {.lex_state = 44, .external_lex_state = 10}, + [2314] = {.lex_state = 51, .external_lex_state = 19}, + [2315] = {.lex_state = 47, .external_lex_state = 10}, + [2316] = {.lex_state = 51, .external_lex_state = 10}, + [2317] = {.lex_state = 44, .external_lex_state = 10}, + [2318] = {.lex_state = 44, .external_lex_state = 10}, + [2319] = {.lex_state = 44, .external_lex_state = 10}, + [2320] = {.lex_state = 44, .external_lex_state = 10}, + [2321] = {.lex_state = 51, .external_lex_state = 19}, + [2322] = {.lex_state = 47, .external_lex_state = 10}, + [2323] = {.lex_state = 51, .external_lex_state = 10}, + [2324] = {.lex_state = 44, .external_lex_state = 10}, + [2325] = {.lex_state = 44, .external_lex_state = 10}, + [2326] = {.lex_state = 44, .external_lex_state = 10}, + [2327] = {.lex_state = 44, .external_lex_state = 10}, + [2328] = {.lex_state = 44, .external_lex_state = 10}, + [2329] = {.lex_state = 9}, + [2330] = {.lex_state = 43, .external_lex_state = 10}, + [2331] = {.lex_state = 43, .external_lex_state = 10}, + [2332] = {.lex_state = 46, .external_lex_state = 2}, [2333] = {.lex_state = 9}, - [2334] = {.lex_state = 45, .external_lex_state = 21}, - [2335] = {.lex_state = 45, .external_lex_state = 13}, - [2336] = {.lex_state = 44, .external_lex_state = 13}, - [2337] = {.lex_state = 44, .external_lex_state = 13}, - [2338] = {.lex_state = 48, .external_lex_state = 13}, - [2339] = {.lex_state = 45, .external_lex_state = 21}, - [2340] = {.lex_state = 45, .external_lex_state = 13}, - [2341] = {.lex_state = 45, .external_lex_state = 13}, - [2342] = {.lex_state = 45, .external_lex_state = 13}, - [2343] = {.lex_state = 45, .external_lex_state = 21}, - [2344] = {.lex_state = 48, .external_lex_state = 13}, - [2345] = {.lex_state = 45, .external_lex_state = 21}, - [2346] = {.lex_state = 45, .external_lex_state = 13}, - [2347] = {.lex_state = 35, .external_lex_state = 20}, - [2348] = {.lex_state = 42, .external_lex_state = 13}, - [2349] = {.lex_state = 35, .external_lex_state = 13}, - [2350] = {.lex_state = 45, .external_lex_state = 13}, - [2351] = {.lex_state = 45, .external_lex_state = 13}, - [2352] = {.lex_state = 45, .external_lex_state = 13}, - [2353] = {.lex_state = 45, .external_lex_state = 13}, - [2354] = {.lex_state = 35, .external_lex_state = 20}, - [2355] = {.lex_state = 42, .external_lex_state = 13}, - [2356] = {.lex_state = 35, .external_lex_state = 13}, - [2357] = {.lex_state = 45, .external_lex_state = 13}, - [2358] = {.lex_state = 45, .external_lex_state = 13}, - [2359] = {.lex_state = 45, .external_lex_state = 13}, - [2360] = {.lex_state = 45, .external_lex_state = 13}, - [2361] = {.lex_state = 45, .external_lex_state = 13}, - [2362] = {.lex_state = 44, .external_lex_state = 13}, - [2363] = {.lex_state = 44, .external_lex_state = 13}, - [2364] = {.lex_state = 47, .external_lex_state = 2}, - [2365] = {.lex_state = 9}, + [2334] = {.lex_state = 44, .external_lex_state = 20}, + [2335] = {.lex_state = 44, .external_lex_state = 10}, + [2336] = {.lex_state = 43, .external_lex_state = 10}, + [2337] = {.lex_state = 43, .external_lex_state = 10}, + [2338] = {.lex_state = 47, .external_lex_state = 10}, + [2339] = {.lex_state = 44, .external_lex_state = 20}, + [2340] = {.lex_state = 44, .external_lex_state = 10}, + [2341] = {.lex_state = 44, .external_lex_state = 10}, + [2342] = {.lex_state = 44, .external_lex_state = 10}, + [2343] = {.lex_state = 44, .external_lex_state = 20}, + [2344] = {.lex_state = 47, .external_lex_state = 10}, + [2345] = {.lex_state = 44, .external_lex_state = 20}, + [2346] = {.lex_state = 44, .external_lex_state = 10}, + [2347] = {.lex_state = 51, .external_lex_state = 19}, + [2348] = {.lex_state = 47, .external_lex_state = 10}, + [2349] = {.lex_state = 51, .external_lex_state = 10}, + [2350] = {.lex_state = 44, .external_lex_state = 10}, + [2351] = {.lex_state = 44, .external_lex_state = 10}, + [2352] = {.lex_state = 44, .external_lex_state = 10}, + [2353] = {.lex_state = 44, .external_lex_state = 10}, + [2354] = {.lex_state = 51, .external_lex_state = 19}, + [2355] = {.lex_state = 47, .external_lex_state = 10}, + [2356] = {.lex_state = 51, .external_lex_state = 10}, + [2357] = {.lex_state = 44, .external_lex_state = 10}, + [2358] = {.lex_state = 44, .external_lex_state = 10}, + [2359] = {.lex_state = 44, .external_lex_state = 10}, + [2360] = {.lex_state = 44, .external_lex_state = 10}, + [2361] = {.lex_state = 44, .external_lex_state = 10}, + [2362] = {.lex_state = 9}, + [2363] = {.lex_state = 43, .external_lex_state = 10}, + [2364] = {.lex_state = 43, .external_lex_state = 10}, + [2365] = {.lex_state = 46, .external_lex_state = 2}, [2366] = {.lex_state = 9}, - [2367] = {.lex_state = 45, .external_lex_state = 21}, - [2368] = {.lex_state = 45, .external_lex_state = 13}, - [2369] = {.lex_state = 44, .external_lex_state = 13}, - [2370] = {.lex_state = 44, .external_lex_state = 13}, - [2371] = {.lex_state = 48, .external_lex_state = 13}, - [2372] = {.lex_state = 45, .external_lex_state = 21}, - [2373] = {.lex_state = 45, .external_lex_state = 13}, - [2374] = {.lex_state = 45, .external_lex_state = 13}, - [2375] = {.lex_state = 45, .external_lex_state = 13}, - [2376] = {.lex_state = 45, .external_lex_state = 21}, - [2377] = {.lex_state = 48, .external_lex_state = 13}, - [2378] = {.lex_state = 45, .external_lex_state = 21}, - [2379] = {.lex_state = 45, .external_lex_state = 13}, - [2380] = {.lex_state = 35, .external_lex_state = 20}, - [2381] = {.lex_state = 42, .external_lex_state = 13}, - [2382] = {.lex_state = 35, .external_lex_state = 13}, - [2383] = {.lex_state = 45, .external_lex_state = 13}, - [2384] = {.lex_state = 45, .external_lex_state = 13}, - [2385] = {.lex_state = 45, .external_lex_state = 13}, - [2386] = {.lex_state = 45, .external_lex_state = 13}, - [2387] = {.lex_state = 35, .external_lex_state = 20}, - [2388] = {.lex_state = 42, .external_lex_state = 13}, - [2389] = {.lex_state = 35, .external_lex_state = 13}, - [2390] = {.lex_state = 45, .external_lex_state = 13}, - [2391] = {.lex_state = 45, .external_lex_state = 13}, - [2392] = {.lex_state = 45, .external_lex_state = 13}, - [2393] = {.lex_state = 45, .external_lex_state = 13}, - [2394] = {.lex_state = 45, .external_lex_state = 13}, + [2367] = {.lex_state = 44, .external_lex_state = 20}, + [2368] = {.lex_state = 44, .external_lex_state = 10}, + [2369] = {.lex_state = 43, .external_lex_state = 10}, + [2370] = {.lex_state = 43, .external_lex_state = 10}, + [2371] = {.lex_state = 47, .external_lex_state = 10}, + [2372] = {.lex_state = 44, .external_lex_state = 20}, + [2373] = {.lex_state = 44, .external_lex_state = 10}, + [2374] = {.lex_state = 44, .external_lex_state = 10}, + [2375] = {.lex_state = 44, .external_lex_state = 10}, + [2376] = {.lex_state = 44, .external_lex_state = 20}, + [2377] = {.lex_state = 47, .external_lex_state = 10}, + [2378] = {.lex_state = 44, .external_lex_state = 20}, + [2379] = {.lex_state = 44, .external_lex_state = 10}, + [2380] = {.lex_state = 51, .external_lex_state = 19}, + [2381] = {.lex_state = 47, .external_lex_state = 10}, + [2382] = {.lex_state = 51, .external_lex_state = 10}, + [2383] = {.lex_state = 44, .external_lex_state = 10}, + [2384] = {.lex_state = 44, .external_lex_state = 10}, + [2385] = {.lex_state = 44, .external_lex_state = 10}, + [2386] = {.lex_state = 44, .external_lex_state = 10}, + [2387] = {.lex_state = 51, .external_lex_state = 19}, + [2388] = {.lex_state = 47, .external_lex_state = 10}, + [2389] = {.lex_state = 51, .external_lex_state = 10}, + [2390] = {.lex_state = 44, .external_lex_state = 10}, + [2391] = {.lex_state = 44, .external_lex_state = 10}, + [2392] = {.lex_state = 44, .external_lex_state = 10}, + [2393] = {.lex_state = 44, .external_lex_state = 10}, + [2394] = {.lex_state = 44, .external_lex_state = 10}, [2395] = {.lex_state = 9, .external_lex_state = 2}, [2396] = {.lex_state = 9, .external_lex_state = 2}, - [2397] = {.lex_state = 47}, - [2398] = {.lex_state = 36}, - [2399] = {.lex_state = 37, .external_lex_state = 7}, - [2400] = {.lex_state = 52}, + [2397] = {.lex_state = 9, .external_lex_state = 2}, + [2398] = {.lex_state = 37, .external_lex_state = 6}, + [2399] = {.lex_state = 51}, + [2400] = {.lex_state = 36}, [2401] = {.lex_state = 52}, - [2402] = {.lex_state = 9, .external_lex_state = 2}, + [2402] = {.lex_state = 51}, [2403] = {.lex_state = 9, .external_lex_state = 2}, [2404] = {.lex_state = 9, .external_lex_state = 2}, [2405] = {.lex_state = 36}, [2406] = {.lex_state = 36}, [2407] = {.lex_state = 52}, - [2408] = {.lex_state = 9}, - [2409] = {.lex_state = 47}, - [2410] = {.lex_state = 36}, - [2411] = {.lex_state = 40, .external_lex_state = 7}, - [2412] = {.lex_state = 52}, - [2413] = {.lex_state = 47}, - [2414] = {.lex_state = 4, .external_lex_state = 11}, - [2415] = {.lex_state = 9}, - [2416] = {.lex_state = 4, .external_lex_state = 11}, - [2417] = {.lex_state = 4, .external_lex_state = 11}, - [2418] = {.lex_state = 52}, - [2419] = {.lex_state = 4, .external_lex_state = 11}, - [2420] = {.lex_state = 4, .external_lex_state = 11}, - [2421] = {.lex_state = 22, .external_lex_state = 11}, - [2422] = {.lex_state = 36}, - [2423] = {.lex_state = 47}, - [2424] = {.lex_state = 47}, - [2425] = {.lex_state = 43}, + [2408] = {.lex_state = 40, .external_lex_state = 6}, + [2409] = {.lex_state = 52}, + [2410] = {.lex_state = 9}, + [2411] = {.lex_state = 51}, + [2412] = {.lex_state = 36}, + [2413] = {.lex_state = 46}, + [2414] = {.lex_state = 4, .external_lex_state = 12}, + [2415] = {.lex_state = 52}, + [2416] = {.lex_state = 9}, + [2417] = {.lex_state = 4, .external_lex_state = 12}, + [2418] = {.lex_state = 4, .external_lex_state = 12}, + [2419] = {.lex_state = 4, .external_lex_state = 12}, + [2420] = {.lex_state = 4, .external_lex_state = 12}, + [2421] = {.lex_state = 36}, + [2422] = {.lex_state = 22, .external_lex_state = 12}, + [2423] = {.lex_state = 46}, + [2424] = {.lex_state = 46}, + [2425] = {.lex_state = 42}, [2426] = {.lex_state = 36}, - [2427] = {.lex_state = 47}, - [2428] = {.lex_state = 47}, - [2429] = {.lex_state = 43}, + [2427] = {.lex_state = 46}, + [2428] = {.lex_state = 46}, + [2429] = {.lex_state = 42}, [2430] = {.lex_state = 36}, - [2431] = {.lex_state = 43}, - [2432] = {.lex_state = 52, .external_lex_state = 22}, - [2433] = {.lex_state = 3, .external_lex_state = 3}, - [2434] = {.lex_state = 3, .external_lex_state = 3}, - [2435] = {.lex_state = 47}, - [2436] = {.lex_state = 47}, - [2437] = {.lex_state = 47}, + [2431] = {.lex_state = 42}, + [2432] = {.lex_state = 51, .external_lex_state = 22}, + [2433] = {.lex_state = 3, .external_lex_state = 5}, + [2434] = {.lex_state = 3, .external_lex_state = 5}, + [2435] = {.lex_state = 46}, + [2436] = {.lex_state = 46}, + [2437] = {.lex_state = 46}, [2438] = {.lex_state = 9, .external_lex_state = 2}, - [2439] = {.lex_state = 37, .external_lex_state = 7}, - [2440] = {.lex_state = 52}, + [2439] = {.lex_state = 9, .external_lex_state = 2}, + [2440] = {.lex_state = 37, .external_lex_state = 6}, [2441] = {.lex_state = 52}, - [2442] = {.lex_state = 9, .external_lex_state = 2}, + [2442] = {.lex_state = 51}, [2443] = {.lex_state = 9, .external_lex_state = 2}, [2444] = {.lex_state = 52}, - [2445] = {.lex_state = 36}, - [2446] = {.lex_state = 40, .external_lex_state = 7}, - [2447] = {.lex_state = 52}, + [2445] = {.lex_state = 40, .external_lex_state = 6}, + [2446] = {.lex_state = 52}, + [2447] = {.lex_state = 36}, [2448] = {.lex_state = 52}, [2449] = {.lex_state = 9, .external_lex_state = 2}, - [2450] = {.lex_state = 37, .external_lex_state = 7}, - [2451] = {.lex_state = 52}, + [2450] = {.lex_state = 9, .external_lex_state = 2}, + [2451] = {.lex_state = 37, .external_lex_state = 6}, [2452] = {.lex_state = 52}, - [2453] = {.lex_state = 9, .external_lex_state = 2}, + [2453] = {.lex_state = 51}, [2454] = {.lex_state = 9, .external_lex_state = 2}, [2455] = {.lex_state = 52}, - [2456] = {.lex_state = 40, .external_lex_state = 7}, + [2456] = {.lex_state = 40, .external_lex_state = 6}, [2457] = {.lex_state = 52}, [2458] = {.lex_state = 52}, [2459] = {.lex_state = 9, .external_lex_state = 2}, - [2460] = {.lex_state = 37, .external_lex_state = 7}, - [2461] = {.lex_state = 52}, - [2462] = {.lex_state = 9, .external_lex_state = 2}, + [2460] = {.lex_state = 9, .external_lex_state = 2}, + [2461] = {.lex_state = 37, .external_lex_state = 6}, + [2462] = {.lex_state = 52}, [2463] = {.lex_state = 9, .external_lex_state = 2}, [2464] = {.lex_state = 52}, - [2465] = {.lex_state = 40, .external_lex_state = 7}, + [2465] = {.lex_state = 40, .external_lex_state = 6}, [2466] = {.lex_state = 52}, [2467] = {.lex_state = 52}, [2468] = {.lex_state = 9, .external_lex_state = 2}, - [2469] = {.lex_state = 37, .external_lex_state = 7}, - [2470] = {.lex_state = 52}, - [2471] = {.lex_state = 9, .external_lex_state = 2}, + [2469] = {.lex_state = 9, .external_lex_state = 2}, + [2470] = {.lex_state = 37, .external_lex_state = 6}, + [2471] = {.lex_state = 52}, [2472] = {.lex_state = 9, .external_lex_state = 2}, [2473] = {.lex_state = 52}, - [2474] = {.lex_state = 40, .external_lex_state = 7}, + [2474] = {.lex_state = 40, .external_lex_state = 6}, [2475] = {.lex_state = 52}, [2476] = {.lex_state = 52}, [2477] = {.lex_state = 9, .external_lex_state = 2}, - [2478] = {.lex_state = 37, .external_lex_state = 7}, - [2479] = {.lex_state = 52}, - [2480] = {.lex_state = 9, .external_lex_state = 2}, + [2478] = {.lex_state = 9, .external_lex_state = 2}, + [2479] = {.lex_state = 37, .external_lex_state = 6}, + [2480] = {.lex_state = 52}, [2481] = {.lex_state = 9, .external_lex_state = 2}, [2482] = {.lex_state = 52}, - [2483] = {.lex_state = 40, .external_lex_state = 7}, + [2483] = {.lex_state = 40, .external_lex_state = 6}, [2484] = {.lex_state = 52}, [2485] = {.lex_state = 52}, [2486] = {.lex_state = 9, .external_lex_state = 2}, - [2487] = {.lex_state = 37, .external_lex_state = 7}, - [2488] = {.lex_state = 9, .external_lex_state = 2}, + [2487] = {.lex_state = 9, .external_lex_state = 2}, + [2488] = {.lex_state = 37, .external_lex_state = 6}, [2489] = {.lex_state = 9, .external_lex_state = 2}, - [2490] = {.lex_state = 40, .external_lex_state = 7}, + [2490] = {.lex_state = 40, .external_lex_state = 6}, [2491] = {.lex_state = 52}, [2492] = {.lex_state = 52}, [2493] = {.lex_state = 9, .external_lex_state = 2}, - [2494] = {.lex_state = 37, .external_lex_state = 7}, - [2495] = {.lex_state = 9, .external_lex_state = 2}, + [2494] = {.lex_state = 9, .external_lex_state = 2}, + [2495] = {.lex_state = 37, .external_lex_state = 6}, [2496] = {.lex_state = 9, .external_lex_state = 2}, - [2497] = {.lex_state = 40, .external_lex_state = 7}, + [2497] = {.lex_state = 40, .external_lex_state = 6}, [2498] = {.lex_state = 52}, [2499] = {.lex_state = 52}, [2500] = {.lex_state = 9, .external_lex_state = 2}, - [2501] = {.lex_state = 37, .external_lex_state = 7}, - [2502] = {.lex_state = 9, .external_lex_state = 2}, + [2501] = {.lex_state = 9, .external_lex_state = 2}, + [2502] = {.lex_state = 37, .external_lex_state = 6}, [2503] = {.lex_state = 9, .external_lex_state = 2}, - [2504] = {.lex_state = 40, .external_lex_state = 7}, + [2504] = {.lex_state = 40, .external_lex_state = 6}, [2505] = {.lex_state = 52}, [2506] = {.lex_state = 52}, [2507] = {.lex_state = 9, .external_lex_state = 2}, - [2508] = {.lex_state = 37, .external_lex_state = 7}, - [2509] = {.lex_state = 9, .external_lex_state = 2}, + [2508] = {.lex_state = 9, .external_lex_state = 2}, + [2509] = {.lex_state = 37, .external_lex_state = 6}, [2510] = {.lex_state = 9, .external_lex_state = 2}, - [2511] = {.lex_state = 40, .external_lex_state = 7}, + [2511] = {.lex_state = 40, .external_lex_state = 6}, [2512] = {.lex_state = 52}, [2513] = {.lex_state = 52}, [2514] = {.lex_state = 9, .external_lex_state = 2}, - [2515] = {.lex_state = 37, .external_lex_state = 7}, - [2516] = {.lex_state = 9, .external_lex_state = 2}, + [2515] = {.lex_state = 9, .external_lex_state = 2}, + [2516] = {.lex_state = 37, .external_lex_state = 6}, [2517] = {.lex_state = 9, .external_lex_state = 2}, - [2518] = {.lex_state = 40, .external_lex_state = 7}, + [2518] = {.lex_state = 40, .external_lex_state = 6}, [2519] = {.lex_state = 52}, [2520] = {.lex_state = 52}, [2521] = {.lex_state = 9, .external_lex_state = 2}, - [2522] = {.lex_state = 37, .external_lex_state = 7}, - [2523] = {.lex_state = 9, .external_lex_state = 2}, + [2522] = {.lex_state = 9, .external_lex_state = 2}, + [2523] = {.lex_state = 37, .external_lex_state = 6}, [2524] = {.lex_state = 9, .external_lex_state = 2}, - [2525] = {.lex_state = 40, .external_lex_state = 7}, + [2525] = {.lex_state = 40, .external_lex_state = 6}, [2526] = {.lex_state = 52}, [2527] = {.lex_state = 52}, [2528] = {.lex_state = 9, .external_lex_state = 2}, - [2529] = {.lex_state = 37, .external_lex_state = 7}, - [2530] = {.lex_state = 9, .external_lex_state = 2}, + [2529] = {.lex_state = 9, .external_lex_state = 2}, + [2530] = {.lex_state = 37, .external_lex_state = 6}, [2531] = {.lex_state = 9, .external_lex_state = 2}, - [2532] = {.lex_state = 40, .external_lex_state = 7}, + [2532] = {.lex_state = 40, .external_lex_state = 6}, [2533] = {.lex_state = 52}, [2534] = {.lex_state = 52}, [2535] = {.lex_state = 9, .external_lex_state = 2}, - [2536] = {.lex_state = 37, .external_lex_state = 7}, - [2537] = {.lex_state = 9, .external_lex_state = 2}, + [2536] = {.lex_state = 9, .external_lex_state = 2}, + [2537] = {.lex_state = 37, .external_lex_state = 6}, [2538] = {.lex_state = 9, .external_lex_state = 2}, - [2539] = {.lex_state = 40, .external_lex_state = 7}, + [2539] = {.lex_state = 40, .external_lex_state = 6}, [2540] = {.lex_state = 52}, [2541] = {.lex_state = 52}, [2542] = {.lex_state = 9, .external_lex_state = 2}, - [2543] = {.lex_state = 37, .external_lex_state = 7}, - [2544] = {.lex_state = 9, .external_lex_state = 2}, + [2543] = {.lex_state = 9, .external_lex_state = 2}, + [2544] = {.lex_state = 37, .external_lex_state = 6}, [2545] = {.lex_state = 9, .external_lex_state = 2}, - [2546] = {.lex_state = 40, .external_lex_state = 7}, + [2546] = {.lex_state = 40, .external_lex_state = 6}, [2547] = {.lex_state = 52}, [2548] = {.lex_state = 52}, [2549] = {.lex_state = 9, .external_lex_state = 2}, - [2550] = {.lex_state = 37, .external_lex_state = 7}, - [2551] = {.lex_state = 9, .external_lex_state = 2}, + [2550] = {.lex_state = 9, .external_lex_state = 2}, + [2551] = {.lex_state = 37, .external_lex_state = 6}, [2552] = {.lex_state = 9, .external_lex_state = 2}, - [2553] = {.lex_state = 40, .external_lex_state = 7}, + [2553] = {.lex_state = 40, .external_lex_state = 6}, [2554] = {.lex_state = 52}, [2555] = {.lex_state = 52}, [2556] = {.lex_state = 9, .external_lex_state = 2}, - [2557] = {.lex_state = 37, .external_lex_state = 7}, - [2558] = {.lex_state = 9, .external_lex_state = 2}, + [2557] = {.lex_state = 9, .external_lex_state = 2}, + [2558] = {.lex_state = 37, .external_lex_state = 6}, [2559] = {.lex_state = 9, .external_lex_state = 2}, - [2560] = {.lex_state = 40, .external_lex_state = 7}, + [2560] = {.lex_state = 40, .external_lex_state = 6}, [2561] = {.lex_state = 52}, [2562] = {.lex_state = 52}, [2563] = {.lex_state = 9, .external_lex_state = 2}, - [2564] = {.lex_state = 37, .external_lex_state = 7}, - [2565] = {.lex_state = 9, .external_lex_state = 2}, + [2564] = {.lex_state = 9, .external_lex_state = 2}, + [2565] = {.lex_state = 37, .external_lex_state = 6}, [2566] = {.lex_state = 9, .external_lex_state = 2}, - [2567] = {.lex_state = 40, .external_lex_state = 7}, + [2567] = {.lex_state = 40, .external_lex_state = 6}, [2568] = {.lex_state = 52}, [2569] = {.lex_state = 52}, [2570] = {.lex_state = 9, .external_lex_state = 2}, - [2571] = {.lex_state = 37, .external_lex_state = 7}, - [2572] = {.lex_state = 9, .external_lex_state = 2}, + [2571] = {.lex_state = 9, .external_lex_state = 2}, + [2572] = {.lex_state = 37, .external_lex_state = 6}, [2573] = {.lex_state = 9, .external_lex_state = 2}, - [2574] = {.lex_state = 40, .external_lex_state = 7}, + [2574] = {.lex_state = 40, .external_lex_state = 6}, [2575] = {.lex_state = 52}, [2576] = {.lex_state = 52}, [2577] = {.lex_state = 9, .external_lex_state = 2}, - [2578] = {.lex_state = 37, .external_lex_state = 7}, - [2579] = {.lex_state = 9, .external_lex_state = 2}, + [2578] = {.lex_state = 9, .external_lex_state = 2}, + [2579] = {.lex_state = 37, .external_lex_state = 6}, [2580] = {.lex_state = 9, .external_lex_state = 2}, - [2581] = {.lex_state = 40, .external_lex_state = 7}, + [2581] = {.lex_state = 40, .external_lex_state = 6}, [2582] = {.lex_state = 52}, [2583] = {.lex_state = 52}, [2584] = {.lex_state = 9, .external_lex_state = 2}, - [2585] = {.lex_state = 37, .external_lex_state = 7}, - [2586] = {.lex_state = 9, .external_lex_state = 2}, + [2585] = {.lex_state = 9, .external_lex_state = 2}, + [2586] = {.lex_state = 37, .external_lex_state = 6}, [2587] = {.lex_state = 9, .external_lex_state = 2}, - [2588] = {.lex_state = 40, .external_lex_state = 7}, + [2588] = {.lex_state = 40, .external_lex_state = 6}, [2589] = {.lex_state = 52}, [2590] = {.lex_state = 52}, [2591] = {.lex_state = 9, .external_lex_state = 2}, - [2592] = {.lex_state = 37, .external_lex_state = 7}, - [2593] = {.lex_state = 9, .external_lex_state = 2}, + [2592] = {.lex_state = 9, .external_lex_state = 2}, + [2593] = {.lex_state = 37, .external_lex_state = 6}, [2594] = {.lex_state = 9, .external_lex_state = 2}, - [2595] = {.lex_state = 40, .external_lex_state = 7}, + [2595] = {.lex_state = 40, .external_lex_state = 6}, [2596] = {.lex_state = 52}, [2597] = {.lex_state = 52}, - [2598] = {.lex_state = 37, .external_lex_state = 7}, - [2599] = {.lex_state = 9, .external_lex_state = 2}, + [2598] = {.lex_state = 9, .external_lex_state = 2}, + [2599] = {.lex_state = 37, .external_lex_state = 6}, [2600] = {.lex_state = 9, .external_lex_state = 2}, - [2601] = {.lex_state = 40, .external_lex_state = 7}, + [2601] = {.lex_state = 40, .external_lex_state = 6}, [2602] = {.lex_state = 52}, [2603] = {.lex_state = 52}, - [2604] = {.lex_state = 37, .external_lex_state = 7}, - [2605] = {.lex_state = 9, .external_lex_state = 2}, + [2604] = {.lex_state = 9, .external_lex_state = 2}, + [2605] = {.lex_state = 37, .external_lex_state = 6}, [2606] = {.lex_state = 9, .external_lex_state = 2}, - [2607] = {.lex_state = 40, .external_lex_state = 7}, + [2607] = {.lex_state = 40, .external_lex_state = 6}, [2608] = {.lex_state = 52}, [2609] = {.lex_state = 52}, [2610] = {.lex_state = 9, .external_lex_state = 2}, [2611] = {.lex_state = 52}, - [2612] = {.lex_state = 4, .external_lex_state = 10}, - [2613] = {.lex_state = 4, .external_lex_state = 11}, - [2614] = {.lex_state = 4, .external_lex_state = 11}, - [2615] = {.lex_state = 41}, - [2616] = {.lex_state = 41}, - [2617] = {.lex_state = 47}, - [2618] = {.lex_state = 16, .external_lex_state = 11}, - [2619] = {.lex_state = 18, .external_lex_state = 11}, - [2620] = {.lex_state = 16, .external_lex_state = 11}, - [2621] = {.lex_state = 18, .external_lex_state = 11}, - [2622] = {.lex_state = 3, .external_lex_state = 5}, - [2623] = {.lex_state = 3, .external_lex_state = 5}, - [2624] = {.lex_state = 3, .external_lex_state = 3}, - [2625] = {.lex_state = 3, .external_lex_state = 5}, - [2626] = {.lex_state = 3, .external_lex_state = 3}, - [2627] = {.lex_state = 3, .external_lex_state = 3}, - [2628] = {.lex_state = 47}, - [2629] = {.lex_state = 16, .external_lex_state = 11}, - [2630] = {.lex_state = 18, .external_lex_state = 11}, + [2612] = {.lex_state = 4, .external_lex_state = 11}, + [2613] = {.lex_state = 4, .external_lex_state = 12}, + [2614] = {.lex_state = 4, .external_lex_state = 12}, + [2615] = {.lex_state = 42}, + [2616] = {.lex_state = 42}, + [2617] = {.lex_state = 16, .external_lex_state = 12}, + [2618] = {.lex_state = 46}, + [2619] = {.lex_state = 18, .external_lex_state = 12}, + [2620] = {.lex_state = 16, .external_lex_state = 12}, + [2621] = {.lex_state = 18, .external_lex_state = 12}, + [2622] = {.lex_state = 3, .external_lex_state = 4}, + [2623] = {.lex_state = 3, .external_lex_state = 4}, + [2624] = {.lex_state = 3, .external_lex_state = 5}, + [2625] = {.lex_state = 3, .external_lex_state = 4}, + [2626] = {.lex_state = 3, .external_lex_state = 5}, + [2627] = {.lex_state = 3, .external_lex_state = 5}, + [2628] = {.lex_state = 46}, + [2629] = {.lex_state = 16, .external_lex_state = 12}, + [2630] = {.lex_state = 18, .external_lex_state = 12}, }; enum { @@ -6898,14 +7050,13 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_file_descriptor] = true, }, [3] = { + [ts_external_token_variable_name] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LF] = true, }, [4] = { - [ts_external_token_variable_name] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_file_descriptor] = true, [ts_external_token_LT_LT] = true, @@ -6914,16 +7065,17 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [5] = { [ts_external_token_LT_LT_DASH] = true, [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LF] = true, }, [6] = { [ts_external_token_variable_name] = true, - [ts_external_token_file_descriptor] = true, - [ts_external_token_RBRACE] = true, }, [7] = { [ts_external_token_variable_name] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_RBRACE] = true, }, [8] = { [ts_external_token_variable_name] = true, @@ -6939,17 +7091,17 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = true, }, [10] = { - [ts_external_token_LF] = true, - [ts_external_token__concat] = true, + [ts_external_token_RBRACE] = true, }, [11] = { [ts_external_token_LF] = true, + [ts_external_token__concat] = true, }, [12] = { - [ts_external_token__concat] = true, + [ts_external_token_LF] = true, }, [13] = { - [ts_external_token_RBRACE] = true, + [ts_external_token__concat] = true, }, [14] = { [ts_external_token__empty_value] = true, @@ -6970,19 +7122,19 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_regex] = true, }, [19] = { - [ts_external_token_variable_name] = true, - [ts_external_token_file_descriptor] = true, [ts_external_token_RBRACE] = true, - [ts_external_token__heredoc_body_beginning] = true, - [ts_external_token__simple_heredoc_body] = true, + [ts_external_token__concat] = true, }, [20] = { + [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, - [ts_external_token__concat] = true, }, [21] = { - [ts_external_token_regex] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_file_descriptor] = true, [ts_external_token_RBRACE] = true, + [ts_external_token__heredoc_body_beginning] = true, + [ts_external_token__simple_heredoc_body] = true, }, [22] = { [ts_external_token__concat] = true, @@ -6996,7 +7148,7 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [sym_word] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), [sym_heredoc_start] = ACTIONS(1), [anon_sym_AMP_GT_GT] = ACTIONS(1), [sym__empty_value] = ACTIONS(1), @@ -7004,16 +7156,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), - [anon_sym_LT_LPAREN] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_done] = ACTIONS(1), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), - [anon_sym_COLON_DASH] = ACTIONS(1), + [anon_sym_COLON_QMARK] = ACTIONS(1), [anon_sym_RPAREN_RPAREN] = ACTIONS(1), [anon_sym_RBRACK_RBRACK] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), + [anon_sym_0] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), - [sym_test_operator] = ACTIONS(1), + [sym_word] = ACTIONS(1), [sym__simple_heredoc_body] = ACTIONS(1), [anon_sym_LT_AMP] = ACTIONS(1), [sym__concat] = ACTIONS(1), @@ -7022,13 +7174,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__special_character] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), + [sym_comment] = ACTIONS(3), [anon_sym_LPAREN_LPAREN] = ACTIONS(1), [sym_raw_string] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_declare] = ACTIONS(1), [sym_variable_name] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), + [sym_test_operator] = ACTIONS(1), [sym__heredoc_body_beginning] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_readonly] = ACTIONS(1), @@ -7036,28 +7189,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_GT_AMP] = ACTIONS(1), [anon_sym_then] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), [anon_sym_elif] = ACTIONS(1), [sym_ansii_c_string] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [sym_regex] = ACTIONS(1), [anon_sym_SEMI_SEMI] = ACTIONS(1), - [sym__heredoc_body_middle] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), + [sym__heredoc_body_middle] = ACTIONS(1), [anon_sym_local] = ACTIONS(1), [anon_sym_unsetenv] = ACTIONS(1), [anon_sym_LT_LT] = ACTIONS(1), [anon_sym_fi] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_COLON_DASH] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), + [sym_number] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [sym__heredoc_body_end] = ACTIONS(1), @@ -7066,13 +7219,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_LT_LT_DASH] = ACTIONS(1), [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_case] = ACTIONS(1), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [sym_file_descriptor] = ACTIONS(1), @@ -7082,14 +7235,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_LT_LT_LT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_BQUOTE] = ACTIONS(1), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), [anon_sym_esac] = ACTIONS(1), - [anon_sym_GT_LPAREN] = ACTIONS(1), + [anon_sym_LT_LPAREN] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), - [anon_sym_COLON_QMARK] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_LBRACK_LBRACK] = ACTIONS(1), - [anon_sym_0] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), [anon_sym_PIPE_AMP] = ACTIONS(1), }, [1] = { @@ -7101,8 +7254,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(29), [sym_subscript] = STATE(30), [sym_concatenation] = STATE(31), - [sym_expansion] = STATE(15), - [sym_command_substitution] = STATE(15), + [sym_expansion] = STATE(9), + [sym_command_substitution] = STATE(9), [aux_sym__statements_repeat1] = STATE(32), [sym_program] = STATE(33), [sym_redirected_statement] = STATE(28), @@ -7112,8 +7265,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(28), [sym_unset_command] = STATE(28), [sym_file_redirect] = STATE(34), - [sym_string] = STATE(15), - [sym_process_substitution] = STATE(15), + [sym_string] = STATE(9), + [sym_process_substitution] = STATE(9), [aux_sym_command_repeat1] = STATE(34), [sym__statements] = STATE(35), [sym_c_style_for_statement] = STATE(28), @@ -7123,89 +7276,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(28), [sym_command] = STATE(28), [sym_command_name] = STATE(36), - [sym_simple_expansion] = STATE(15), - [sym_string_expansion] = STATE(15), - [sym_word] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(11), - [anon_sym_typeset] = ACTIONS(11), - [anon_sym_unsetenv] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(11), - [sym__special_character] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_case] = ACTIONS(31), - [anon_sym_LPAREN_LPAREN] = ACTIONS(33), - [sym_raw_string] = ACTIONS(35), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(37), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_declare] = ACTIONS(11), - [sym_variable_name] = ACTIONS(41), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(11), - [anon_sym_unset] = ACTIONS(13), - [ts_builtin_sym_end] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(51), + [sym_simple_expansion] = STATE(9), + [sym_string_expansion] = STATE(9), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(9), + [anon_sym_typeset] = ACTIONS(9), + [anon_sym_unsetenv] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(15), [anon_sym_GT_LPAREN] = ACTIONS(17), - [anon_sym_for] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_ansii_c_string] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(59), + [sym_number] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_function] = ACTIONS(23), + [sym_word] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(9), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(31), + [anon_sym_if] = ACTIONS(33), + [anon_sym_case] = ACTIONS(35), + [anon_sym_LPAREN_LPAREN] = ACTIONS(37), + [sym_raw_string] = ACTIONS(39), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_declare] = ACTIONS(9), + [sym_variable_name] = ACTIONS(45), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(9), + [anon_sym_unset] = ACTIONS(11), + [ts_builtin_sym_end] = ACTIONS(49), + [anon_sym_DQUOTE] = ACTIONS(51), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(17), + [anon_sym_for] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [sym_ansii_c_string] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(61), }, [2] = { - [aux_sym_concatenation_repeat1] = STATE(39), - [sym_word] = ACTIONS(61), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_LT_LT] = ACTIONS(61), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [sym__concat] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_LT_AMP] = ACTIONS(61), - [anon_sym_GT_GT] = ACTIONS(61), - [anon_sym_EQ_TILDE] = ACTIONS(61), - [sym__special_character] = ACTIONS(61), - [anon_sym_LT_LT_DASH] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_LF] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(61), - [sym_raw_string] = ACTIONS(61), - [sym_file_descriptor] = ACTIONS(67), - [anon_sym_AMP] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(61), - [anon_sym_AMP_GT] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT_LT_LT] = ACTIONS(61), - [anon_sym_GT_AMP] = ACTIONS(61), - [ts_builtin_sym_end] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_ansii_c_string] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_SEMI_SEMI] = ACTIONS(61), - [anon_sym_PIPE_AMP] = ACTIONS(61), - }, - [3] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -7214,8 +7329,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -7224,10 +7339,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(40), + [sym__statements] = STATE(37), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -7235,176 +7350,253 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + }, + [3] = { + [sym_command_substitution] = STATE(38), + [aux_sym__literal_repeat1] = STATE(39), + [sym_string] = STATE(38), + [sym_process_substitution] = STATE(38), + [sym_simple_expansion] = STATE(38), + [sym_string_expansion] = STATE(38), + [sym_concatenation] = STATE(40), + [sym_expansion] = STATE(38), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(117), + [sym_number] = ACTIONS(119), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_word] = ACTIONS(119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [sym_ansii_c_string] = ACTIONS(111), + [sym__special_character] = ACTIONS(127), }, [4] = { [sym_command_substitution] = STATE(41), [aux_sym__literal_repeat1] = STATE(42), [sym_string] = STATE(41), + [aux_sym_declaration_command_repeat1] = STATE(43), [sym_process_substitution] = STATE(41), [sym_simple_expansion] = STATE(41), + [sym_subscript] = STATE(2444), [sym_string_expansion] = STATE(41), + [sym_variable_assignment] = STATE(43), [sym_concatenation] = STATE(43), [sym_expansion] = STATE(41), - [sym_word] = ACTIONS(115), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LT_LPAREN] = ACTIONS(123), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(123), - [sym_ansii_c_string] = ACTIONS(115), - [sym__special_character] = ACTIONS(129), + [anon_sym_PIPE_AMP] = ACTIONS(129), + [anon_sym_AMP_GT_GT] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LT_LT] = ACTIONS(129), + [anon_sym_BQUOTE] = ACTIONS(133), + [anon_sym_GT_LPAREN] = ACTIONS(135), + [sym_number] = ACTIONS(137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(139), + [anon_sym_PIPE_PIPE] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [sym_word] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_AMP] = ACTIONS(129), + [anon_sym_GT_GT] = ACTIONS(129), + [sym__special_character] = ACTIONS(141), + [anon_sym_LT_LT_DASH] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(129), + [sym_raw_string] = ACTIONS(137), + [sym_variable_name] = ACTIONS(145), + [sym_file_descriptor] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_AMP_GT] = ACTIONS(129), + [ts_builtin_sym_end] = ACTIONS(143), + [anon_sym_LT_LT_LT] = ACTIONS(129), + [anon_sym_GT_AMP] = ACTIONS(129), + [anon_sym_DQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [aux_sym__simple_variable_name_token1] = ACTIONS(151), + [anon_sym_LT_LPAREN] = ACTIONS(135), + [sym_ansii_c_string] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(129), + [anon_sym_SEMI_SEMI] = ACTIONS(129), + [anon_sym_AMP] = ACTIONS(129), }, [5] = { [sym_command_substitution] = STATE(44), [aux_sym__literal_repeat1] = STATE(45), [sym_string] = STATE(44), - [aux_sym_declaration_command_repeat1] = STATE(46), + [aux_sym_unset_command_repeat1] = STATE(46), [sym_process_substitution] = STATE(44), [sym_simple_expansion] = STATE(44), - [sym_subscript] = STATE(2444), [sym_string_expansion] = STATE(44), - [sym_variable_assignment] = STATE(46), [sym_concatenation] = STATE(46), [sym_expansion] = STATE(44), - [sym_word] = ACTIONS(131), - [anon_sym_AMP_GT_GT] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LT_LT] = ACTIONS(133), - [anon_sym_LT_LPAREN] = ACTIONS(137), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_LT_AMP] = ACTIONS(133), - [anon_sym_GT_GT] = ACTIONS(133), - [sym__special_character] = ACTIONS(139), - [anon_sym_LT_LT_DASH] = ACTIONS(133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), - [aux_sym__simple_variable_name_token1] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(133), - [sym_raw_string] = ACTIONS(131), - [sym_variable_name] = ACTIONS(149), - [sym_file_descriptor] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_AMP_GT] = ACTIONS(133), - [ts_builtin_sym_end] = ACTIONS(147), - [anon_sym_LT_LT_LT] = ACTIONS(133), - [anon_sym_GT_AMP] = ACTIONS(133), - [anon_sym_DQUOTE] = ACTIONS(151), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(137), - [sym_ansii_c_string] = ACTIONS(131), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_SEMI_SEMI] = ACTIONS(133), - [anon_sym_PIPE_AMP] = ACTIONS(133), + [anon_sym_PIPE_AMP] = ACTIONS(153), + [anon_sym_AMP_GT_GT] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LT_LT] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_GT_LPAREN] = ACTIONS(159), + [sym_number] = ACTIONS(161), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(163), + [anon_sym_PIPE_PIPE] = ACTIONS(153), + [anon_sym_PIPE] = ACTIONS(153), + [sym_word] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_AMP] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(153), + [sym__special_character] = ACTIONS(165), + [anon_sym_LT_LT_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(167), + [anon_sym_SEMI] = ACTIONS(153), + [sym_raw_string] = ACTIONS(161), + [sym_file_descriptor] = ACTIONS(167), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_AMP_GT] = ACTIONS(153), + [ts_builtin_sym_end] = ACTIONS(167), + [anon_sym_LT_LT_LT] = ACTIONS(153), + [anon_sym_GT_AMP] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [aux_sym__simple_variable_name_token1] = ACTIONS(173), + [anon_sym_LT_LPAREN] = ACTIONS(159), + [sym_ansii_c_string] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(153), + [anon_sym_SEMI_SEMI] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), }, [6] = { - [sym_command_substitution] = STATE(47), - [aux_sym__literal_repeat1] = STATE(48), - [sym_string] = STATE(47), - [aux_sym_unset_command_repeat1] = STATE(49), - [sym_process_substitution] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_concatenation] = STATE(49), - [sym_expansion] = STATE(47), - [sym_word] = ACTIONS(155), - [anon_sym_AMP_GT_GT] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(159), - [anon_sym_LT_LT] = ACTIONS(157), - [anon_sym_LT_LPAREN] = ACTIONS(161), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(157), - [anon_sym_LT] = ACTIONS(157), - [anon_sym_LT_AMP] = ACTIONS(157), - [anon_sym_GT_GT] = ACTIONS(157), - [sym__special_character] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(157), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(165), - [aux_sym__simple_variable_name_token1] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_LF] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(157), - [sym_raw_string] = ACTIONS(155), - [sym_file_descriptor] = ACTIONS(171), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(157), - [anon_sym_AMP_GT] = ACTIONS(157), - [ts_builtin_sym_end] = ACTIONS(171), - [anon_sym_LT_LT_LT] = ACTIONS(157), - [anon_sym_GT_AMP] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_BQUOTE] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(161), - [sym_ansii_c_string] = ACTIONS(155), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_SEMI_SEMI] = ACTIONS(157), - [anon_sym_PIPE_AMP] = ACTIONS(157), - }, - [7] = { - [sym_string] = STATE(52), - [anon_sym_DQUOTE] = ACTIONS(49), - [aux_sym__simple_variable_name_token1] = ACTIONS(177), - [anon_sym_AT] = ACTIONS(179), - [anon_sym__] = ACTIONS(177), - [anon_sym_BANG] = ACTIONS(181), + [sym_string] = STATE(49), + [anon_sym__] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(177), [anon_sym_STAR] = ACTIONS(179), - [anon_sym_DOLLAR] = ACTIONS(181), - [anon_sym_QMARK] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(181), - [sym_raw_string] = ACTIONS(183), + [anon_sym_0] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(177), + [aux_sym__simple_variable_name_token1] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(177), + [anon_sym_AT] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(177), + [sym_raw_string] = ACTIONS(181), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(181), - [anon_sym_0] = ACTIONS(177), + [anon_sym_QMARK] = ACTIONS(179), + }, + [7] = { + [aux_sym__literal_repeat1] = STATE(386), + [sym_if_statement] = STATE(1462), + [sym_function_definition] = STATE(1462), + [sym_negated_command] = STATE(1462), + [sym_test_command] = STATE(1462), + [sym_variable_assignment] = STATE(541), + [sym_subscript] = STATE(2407), + [sym_concatenation] = STATE(389), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [aux_sym__statements_repeat1] = STATE(543), + [sym_redirected_statement] = STATE(1462), + [sym_for_statement] = STATE(1462), + [sym_compound_statement] = STATE(1462), + [sym_subshell] = STATE(1462), + [sym_declaration_command] = STATE(1462), + [sym_unset_command] = STATE(1462), + [sym_file_redirect] = STATE(1464), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_command_repeat1] = STATE(1464), + [sym__statements] = STATE(50), + [sym_c_style_for_statement] = STATE(1462), + [sym_while_statement] = STATE(1462), + [sym_case_statement] = STATE(1462), + [sym_pipeline] = STATE(1462), + [sym_list] = STATE(1462), + [sym_command] = STATE(1462), + [sym_command_name] = STATE(545), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [8] = { [aux_sym__literal_repeat1] = STATE(386), @@ -7415,8 +7607,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -7425,10 +7617,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(53), + [sym__statements] = STATE(51), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -7436,398 +7628,459 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [9] = { - [sym_word] = ACTIONS(185), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(53), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_AMP_GT_GT] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_number] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [sym__concat] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(189), + [sym_word] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_LT_AMP] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_LT_LT_DASH] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_LT_LT_LT] = ACTIONS(189), + [anon_sym_GT_AMP] = ACTIONS(189), + [ts_builtin_sym_end] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), }, [10] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_negated_command] = STATE(56), - [sym_test_command] = STATE(56), - [sym_variable_assignment] = STATE(57), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [aux_sym__statements_repeat1] = STATE(58), - [sym_redirected_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_compound_statement] = STATE(56), - [sym_subshell] = STATE(56), - [sym_declaration_command] = STATE(56), - [sym_unset_command] = STATE(56), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_pipeline] = STATE(56), - [sym_list] = STATE(56), - [sym_command] = STATE(56), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(187), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_subscript] = STATE(54), + [anon_sym__] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_POUND] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(199), + [aux_sym__simple_variable_name_token1] = ACTIONS(195), + [sym_variable_name] = ACTIONS(201), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(203), + [anon_sym_AT] = ACTIONS(197), + [anon_sym_QMARK] = ACTIONS(197), }, [11] = { - [aux_sym_concatenation_repeat1] = STATE(39), - [sym_word] = ACTIONS(189), + [sym_word] = ACTIONS(205), + [sym_comment] = ACTIONS(41), + }, + [12] = { + [aux_sym_concatenation_repeat1] = STATE(53), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(207), [anon_sym_AMP_GT_GT] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(189), [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_number] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(65), + [sym__concat] = ACTIONS(191), [anon_sym_PIPE] = ACTIONS(189), + [sym_word] = ACTIONS(189), [anon_sym_LT] = ACTIONS(189), [anon_sym_LT_AMP] = ACTIONS(189), [anon_sym_GT_GT] = ACTIONS(189), [anon_sym_EQ_TILDE] = ACTIONS(189), [sym__special_character] = ACTIONS(189), [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(193), [anon_sym_SEMI] = ACTIONS(189), [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(193), [anon_sym_GT] = ACTIONS(189), [anon_sym_AMP_GT] = ACTIONS(189), [anon_sym_EQ_EQ] = ACTIONS(189), [anon_sym_DQUOTE] = ACTIONS(189), [anon_sym_LT_LT_LT] = ACTIONS(189), [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), + [ts_builtin_sym_end] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), [sym_ansii_c_string] = ACTIONS(189), [anon_sym_AMP_AMP] = ACTIONS(189), [anon_sym_SEMI_SEMI] = ACTIONS(189), [anon_sym_PIPE_AMP] = ACTIONS(189), }, - [12] = { + [13] = { [aux_sym__literal_repeat1] = STATE(386), - [sym__terminated_statement] = STATE(59), - [sym_if_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_negated_command] = STATE(60), - [sym_test_command] = STATE(60), - [sym_variable_assignment] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_negated_command] = STATE(61), + [sym_test_command] = STATE(61), + [sym_variable_assignment] = STATE(62), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_compound_statement] = STATE(60), - [sym_subshell] = STATE(60), - [sym_declaration_command] = STATE(60), - [sym_unset_command] = STATE(60), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [aux_sym__statements_repeat1] = STATE(63), + [sym_redirected_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_compound_statement] = STATE(61), + [sym_subshell] = STATE(61), + [sym_declaration_command] = STATE(61), + [sym_unset_command] = STATE(61), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_case_statement] = STATE(60), - [sym_pipeline] = STATE(60), - [sym_list] = STATE(60), - [sym_command] = STATE(60), + [sym_c_style_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_case_statement] = STATE(61), + [sym_pipeline] = STATE(61), + [sym_list] = STATE(61), + [sym_command] = STATE(61), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [13] = { - [sym_command_substitution] = STATE(62), - [aux_sym__literal_repeat1] = STATE(63), - [sym_string] = STATE(62), - [sym_process_substitution] = STATE(62), - [sym_simple_expansion] = STATE(62), - [sym_string_expansion] = STATE(62), - [sym_concatenation] = STATE(64), - [sym_expansion] = STATE(62), - [sym_word] = ACTIONS(193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(199), - [sym_raw_string] = ACTIONS(193), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [sym_ansii_c_string] = ACTIONS(193), - [anon_sym_GT_LPAREN] = ACTIONS(205), - [anon_sym_LT_LPAREN] = ACTIONS(205), - [sym__special_character] = ACTIONS(207), - [sym_comment] = ACTIONS(19), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [14] = { - [sym_command_substitution] = STATE(65), - [sym_unary_expression] = STATE(69), - [sym_postfix_expression] = STATE(69), - [sym_string] = STATE(65), + [aux_sym_concatenation_repeat1] = STATE(53), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), + }, + [15] = { + [aux_sym__literal_repeat1] = STATE(386), + [sym__terminated_statement] = STATE(64), + [sym_if_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_negated_command] = STATE(65), + [sym_test_command] = STATE(65), + [sym_variable_assignment] = STATE(66), + [sym_subscript] = STATE(2407), + [sym_concatenation] = STATE(389), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_compound_statement] = STATE(65), + [sym_subshell] = STATE(65), + [sym_declaration_command] = STATE(65), + [sym_unset_command] = STATE(65), + [sym_file_redirect] = STATE(391), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_command_repeat1] = STATE(391), + [sym_c_style_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_case_statement] = STATE(65), + [sym_pipeline] = STATE(65), + [sym_list] = STATE(65), + [sym_command] = STATE(65), + [sym_command_name] = STATE(392), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + }, + [16] = { + [sym_command_substitution] = STATE(67), [aux_sym__literal_repeat1] = STATE(68), - [sym_process_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(69), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym__expression] = STATE(69), - [sym_binary_expression] = STATE(69), + [sym_string] = STATE(67), + [sym_process_substitution] = STATE(67), + [sym_simple_expansion] = STATE(67), + [sym_string_expansion] = STATE(67), [sym_concatenation] = STATE(69), - [sym_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [sym_expansion] = STATE(67), [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(219), + [sym_word] = ACTIONS(221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [sym_ansii_c_string] = ACTIONS(219), + [anon_sym_LT_LPAREN] = ACTIONS(227), [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), [sym__special_character] = ACTIONS(231), + [sym_number] = ACTIONS(221), + [anon_sym_GT_LPAREN] = ACTIONS(227), }, - [15] = { - [aux_sym_concatenation_repeat1] = STATE(39), - [sym_word] = ACTIONS(61), - [anon_sym_AMP_GT_GT] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_LT_LT] = ACTIONS(61), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [sym__concat] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_LT_AMP] = ACTIONS(61), - [anon_sym_GT_GT] = ACTIONS(61), - [anon_sym_EQ_TILDE] = ACTIONS(61), - [sym__special_character] = ACTIONS(61), - [anon_sym_LT_LT_DASH] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_LF] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(61), - [sym_raw_string] = ACTIONS(61), - [sym_file_descriptor] = ACTIONS(67), - [anon_sym_AMP] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(61), - [anon_sym_AMP_GT] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT_LT_LT] = ACTIONS(61), - [anon_sym_GT_AMP] = ACTIONS(61), - [ts_builtin_sym_end] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_ansii_c_string] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_SEMI_SEMI] = ACTIONS(61), - [anon_sym_PIPE_AMP] = ACTIONS(61), - }, - [16] = { - [sym_subscript] = STATE(70), - [aux_sym__simple_variable_name_token1] = ACTIONS(233), - [anon_sym__] = ACTIONS(233), - [anon_sym_AT] = ACTIONS(235), + [17] = { + [sym_command_substitution] = STATE(71), + [sym_unary_expression] = STATE(74), + [sym_postfix_expression] = STATE(74), + [sym_string] = STATE(71), + [aux_sym__literal_repeat1] = STATE(73), + [sym_process_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(74), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym__expression] = STATE(74), + [sym_binary_expression] = STATE(74), + [sym_concatenation] = STATE(74), + [sym_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), [anon_sym_BANG] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(235), - [sym_variable_name] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [anon_sym_QMARK] = ACTIONS(235), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(233), - [anon_sym_POUND] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, - [17] = { + [18] = { [aux_sym__literal_repeat1] = STATE(27), - [sym_string] = STATE(15), - [sym_process_substitution] = STATE(15), - [sym_test_command] = STATE(74), + [sym_string] = STATE(9), + [sym_process_substitution] = STATE(9), + [sym_test_command] = STATE(75), [aux_sym_command_repeat1] = STATE(34), [sym_subscript] = STATE(2455), [sym_variable_assignment] = STATE(34), [sym_concatenation] = STATE(31), - [sym_expansion] = STATE(15), - [sym_command_substitution] = STATE(15), - [sym_command] = STATE(74), + [sym_expansion] = STATE(9), + [sym_command_substitution] = STATE(9), + [sym_command] = STATE(75), [sym_command_name] = STATE(36), - [sym_simple_expansion] = STATE(15), - [sym_string_expansion] = STATE(15), - [sym_subshell] = STATE(74), + [sym_simple_expansion] = STATE(9), + [sym_string_expansion] = STATE(9), + [sym_subshell] = STATE(75), [sym_file_redirect] = STATE(34), - [anon_sym_LPAREN] = ACTIONS(7), - [sym_word] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_LPAREN_LPAREN] = ACTIONS(33), - [sym_raw_string] = ACTIONS(35), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(37), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(45), - [sym_variable_name] = ACTIONS(243), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [anon_sym_AMP_GT] = ACTIONS(25), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [sym_ansii_c_string] = ACTIONS(35), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_LPAREN_LPAREN] = ACTIONS(37), + [sym_raw_string] = ACTIONS(39), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(257), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_BQUOTE] = ACTIONS(15), + [anon_sym_AMP_GT] = ACTIONS(29), + [sym_number] = ACTIONS(19), [anon_sym_GT_LPAREN] = ACTIONS(17), - [anon_sym_LBRACK_LBRACK] = ACTIONS(59), - [sym__special_character] = ACTIONS(27), - }, - [18] = { - [anon_sym_PLUS_EQ] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(245), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(51), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_word] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT_LPAREN] = ACTIONS(17), + [anon_sym_LBRACK_LBRACK] = ACTIONS(61), + [sym__special_character] = ACTIONS(31), }, [19] = { - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_AMP_GT] = ACTIONS(251), - [sym_comment] = ACTIONS(19), + [anon_sym_PLUS_EQ] = ACTIONS(259), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(259), }, [20] = { + [anon_sym_AMP_GT_GT] = ACTIONS(263), + [sym_comment] = ACTIONS(41), + [anon_sym_GT_AMP] = ACTIONS(263), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_AMP] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_AMP_GT] = ACTIONS(265), + }, + [21] = { + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(82), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [22] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -7836,8 +8089,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -7845,11 +8098,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(78), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(83), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(79), + [sym__statements] = STATE(84), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -7857,208 +8110,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [21] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(83), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(253), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [23] = { + [aux_sym__simple_variable_name_token1] = ACTIONS(279), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(281), }, - [22] = { + [24] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), + [sym__terminated_statement] = STATE(87), + [sym_if_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_negated_command] = STATE(65), + [sym_test_command] = STATE(65), + [sym_variable_assignment] = STATE(66), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(84), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_compound_statement] = STATE(65), + [sym_subshell] = STATE(65), + [sym_declaration_command] = STATE(65), + [sym_unset_command] = STATE(65), + [sym_file_redirect] = STATE(391), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_command_repeat1] = STATE(391), + [sym_c_style_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_case_statement] = STATE(65), + [sym_pipeline] = STATE(65), + [sym_list] = STATE(65), + [sym_command] = STATE(65), + [sym_command_name] = STATE(392), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [23] = { - [sym_comment] = ACTIONS(19), - [aux_sym__simple_variable_name_token1] = ACTIONS(271), - [anon_sym_LPAREN_LPAREN] = ACTIONS(273), - }, - [24] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym__terminated_statement] = STATE(87), - [sym_if_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_negated_command] = STATE(60), - [sym_test_command] = STATE(60), - [sym_variable_assignment] = STATE(61), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_compound_statement] = STATE(60), - [sym_subshell] = STATE(60), - [sym_declaration_command] = STATE(60), - [sym_unset_command] = STATE(60), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_case_statement] = STATE(60), - [sym_pipeline] = STATE(60), - [sym_list] = STATE(60), - [sym_command] = STATE(60), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [25] = { [sym_command_substitution] = STATE(407), @@ -8074,195 +8244,200 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_expression] = STATE(88), [sym_concatenation] = STATE(88), [sym_expansion] = STATE(407), - [sym_word] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_test_operator] = ACTIONS(293), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(283), - [sym__special_character] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(283), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_test_operator] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(293), + [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym_number] = ACTIONS(297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_word] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(285), + [sym__special_character] = ACTIONS(305), }, [26] = { - [sym_command_substitution] = STATE(65), + [sym_command_substitution] = STATE(71), [sym_unary_expression] = STATE(89), [sym_postfix_expression] = STATE(89), - [sym_string] = STATE(65), - [aux_sym__literal_repeat1] = STATE(68), - [sym_process_substitution] = STATE(65), + [sym_string] = STATE(71), + [aux_sym__literal_repeat1] = STATE(73), + [sym_process_substitution] = STATE(71), [sym_parenthesized_expression] = STATE(89), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), [sym__expression] = STATE(89), [sym_binary_expression] = STATE(89), [sym_concatenation] = STATE(89), - [sym_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), + [sym_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [27] = { [aux_sym__literal_repeat1] = STATE(91), - [sym_word] = ACTIONS(299), - [anon_sym_AMP_GT_GT] = ACTIONS(299), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_LT_LT] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(299), - [anon_sym_PIPE] = ACTIONS(299), - [anon_sym_LT] = ACTIONS(299), - [anon_sym_LT_AMP] = ACTIONS(299), - [anon_sym_GT_GT] = ACTIONS(299), - [anon_sym_EQ_TILDE] = ACTIONS(299), - [sym__special_character] = ACTIONS(301), - [anon_sym_LT_LT_DASH] = ACTIONS(299), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_LF] = ACTIONS(303), - [anon_sym_SEMI] = ACTIONS(299), - [sym_raw_string] = ACTIONS(299), - [sym_file_descriptor] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(299), - [anon_sym_GT] = ACTIONS(299), - [anon_sym_AMP_GT] = ACTIONS(299), - [anon_sym_EQ_EQ] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(299), - [anon_sym_LT_LT_LT] = ACTIONS(299), - [anon_sym_GT_AMP] = ACTIONS(299), - [ts_builtin_sym_end] = ACTIONS(303), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_ansii_c_string] = ACTIONS(299), - [anon_sym_AMP_AMP] = ACTIONS(299), - [anon_sym_SEMI_SEMI] = ACTIONS(299), - [anon_sym_PIPE_AMP] = ACTIONS(299), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(307), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_BQUOTE] = ACTIONS(307), + [anon_sym_GT_LPAREN] = ACTIONS(307), + [sym_number] = ACTIONS(307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(307), + [sym_word] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_LT_AMP] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [sym__special_character] = ACTIONS(309), + [anon_sym_LT_LT_DASH] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(307), + [sym_raw_string] = ACTIONS(307), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(307), + [anon_sym_LT_LT_LT] = ACTIONS(307), + [anon_sym_GT_AMP] = ACTIONS(307), + [ts_builtin_sym_end] = ACTIONS(311), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(307), + [anon_sym_LT_LPAREN] = ACTIONS(307), + [sym_ansii_c_string] = ACTIONS(307), + [anon_sym_AMP_AMP] = ACTIONS(307), + [anon_sym_SEMI_SEMI] = ACTIONS(307), + [anon_sym_PIPE_AMP] = ACTIONS(307), }, [28] = { [sym_heredoc_redirect] = STATE(98), [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_SEMI_SEMI] = ACTIONS(305), - [anon_sym_AMP_GT_GT] = ACTIONS(307), - [anon_sym_LF] = ACTIONS(309), - [anon_sym_SEMI] = ACTIONS(305), - [sym_file_descriptor] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_AMP_GT] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [ts_builtin_sym_end] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_GT_AMP] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_LT_AMP] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_LT_LT_DASH] = ACTIONS(313), - [anon_sym_PIPE_AMP] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(313), + [sym_file_descriptor] = ACTIONS(319), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_AMP_GT] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(323), + [ts_builtin_sym_end] = ACTIONS(325), + [anon_sym_LT_LT_LT] = ACTIONS(327), + [anon_sym_GT_AMP] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_LT_AMP] = ACTIONS(315), + [anon_sym_GT_GT] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(323), + [anon_sym_LT_LT_DASH] = ACTIONS(321), + [anon_sym_PIPE_AMP] = ACTIONS(329), }, [29] = { [sym_heredoc_redirect] = STATE(98), [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(313), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(309), - [anon_sym_SEMI] = ACTIONS(305), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [ts_builtin_sym_end] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_SEMI_SEMI] = ACTIONS(305), - [anon_sym_PIPE_AMP] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(329), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(313), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [ts_builtin_sym_end] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(323), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(329), }, [30] = { - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_PLUS_EQ] = ACTIONS(245), - [sym_comment] = ACTIONS(19), + [anon_sym_EQ] = ACTIONS(259), + [anon_sym_PLUS_EQ] = ACTIONS(259), + [sym_comment] = ACTIONS(41), }, [31] = { - [sym_word] = ACTIONS(61), - [anon_sym_AMP_GT_GT] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_LT_LT] = ACTIONS(61), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_LT_AMP] = ACTIONS(61), - [anon_sym_GT_GT] = ACTIONS(61), - [anon_sym_EQ_TILDE] = ACTIONS(61), - [sym__special_character] = ACTIONS(61), - [anon_sym_LT_LT_DASH] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_LF] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(61), - [sym_raw_string] = ACTIONS(61), - [sym_file_descriptor] = ACTIONS(67), - [anon_sym_AMP] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(61), - [anon_sym_AMP_GT] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT_LT_LT] = ACTIONS(61), - [anon_sym_GT_AMP] = ACTIONS(61), - [ts_builtin_sym_end] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_ansii_c_string] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_SEMI_SEMI] = ACTIONS(61), - [anon_sym_PIPE_AMP] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_AMP_GT_GT] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_number] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [sym_word] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_LT_AMP] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_LT_LT_DASH] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_LT_LT_LT] = ACTIONS(189), + [anon_sym_GT_AMP] = ACTIONS(189), + [ts_builtin_sym_end] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), }, [32] = { [aux_sym__literal_repeat1] = STATE(27), @@ -8273,8 +8448,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(100), [sym_subscript] = STATE(30), [sym_concatenation] = STATE(31), - [sym_expansion] = STATE(15), - [sym_command_substitution] = STATE(15), + [sym_expansion] = STATE(9), + [sym_command_substitution] = STATE(9), [aux_sym__statements_repeat1] = STATE(101), [sym_redirected_statement] = STATE(99), [sym_for_statement] = STATE(99), @@ -8283,8 +8458,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(99), [sym_unset_command] = STATE(99), [sym_file_redirect] = STATE(34), - [sym_string] = STATE(15), - [sym_process_substitution] = STATE(15), + [sym_string] = STATE(9), + [sym_process_substitution] = STATE(9), [aux_sym_command_repeat1] = STATE(34), [sym_c_style_for_statement] = STATE(99), [sym_while_statement] = STATE(99), @@ -8293,1468 +8468,1543 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(99), [sym_command] = STATE(99), [sym_command_name] = STATE(36), - [sym_simple_expansion] = STATE(15), - [sym_string_expansion] = STATE(15), - [sym_word] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(11), - [anon_sym_typeset] = ACTIONS(11), - [anon_sym_unsetenv] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(11), - [sym__special_character] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_case] = ACTIONS(31), - [anon_sym_LPAREN_LPAREN] = ACTIONS(33), - [sym_raw_string] = ACTIONS(35), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(37), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_declare] = ACTIONS(11), - [sym_variable_name] = ACTIONS(41), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(11), - [anon_sym_unset] = ACTIONS(13), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(51), + [sym_simple_expansion] = STATE(9), + [sym_string_expansion] = STATE(9), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(9), + [anon_sym_typeset] = ACTIONS(9), + [anon_sym_unsetenv] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(15), [anon_sym_GT_LPAREN] = ACTIONS(17), - [anon_sym_for] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_ansii_c_string] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(59), + [sym_number] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_function] = ACTIONS(23), + [sym_word] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(9), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(31), + [anon_sym_if] = ACTIONS(33), + [anon_sym_case] = ACTIONS(35), + [anon_sym_LPAREN_LPAREN] = ACTIONS(37), + [sym_raw_string] = ACTIONS(39), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_declare] = ACTIONS(9), + [sym_variable_name] = ACTIONS(45), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(9), + [anon_sym_unset] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(51), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(17), + [anon_sym_for] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [sym_ansii_c_string] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(61), }, [33] = { - [sym_comment] = ACTIONS(19), - [ts_builtin_sym_end] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(335), + [sym_comment] = ACTIONS(41), }, [34] = { - [sym_command_substitution] = STATE(15), + [sym_command_substitution] = STATE(9), [aux_sym__literal_repeat1] = STATE(27), - [sym_expansion] = STATE(15), - [sym_string] = STATE(15), + [sym_expansion] = STATE(9), + [sym_string] = STATE(9), [sym_command_name] = STATE(102), - [sym_process_substitution] = STATE(15), - [sym_simple_expansion] = STATE(15), - [sym_string_expansion] = STATE(15), + [sym_process_substitution] = STATE(9), + [sym_simple_expansion] = STATE(9), + [sym_string_expansion] = STATE(9), [sym_subscript] = STATE(2455), [sym_variable_assignment] = STATE(103), [aux_sym_command_repeat1] = STATE(103), [sym_concatenation] = STATE(31), [sym_file_redirect] = STATE(103), - [sym_word] = ACTIONS(35), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(45), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(37), - [sym_raw_string] = ACTIONS(35), - [sym_variable_name] = ACTIONS(243), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [anon_sym_AMP_GT] = ACTIONS(25), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [sym_ansii_c_string] = ACTIONS(35), - [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(39), + [sym_variable_name] = ACTIONS(257), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_BQUOTE] = ACTIONS(15), + [anon_sym_AMP_GT] = ACTIONS(29), + [sym_number] = ACTIONS(19), [anon_sym_GT_LPAREN] = ACTIONS(17), - [sym__special_character] = ACTIONS(329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(51), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_word] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(39), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(17), + [sym__special_character] = ACTIONS(337), }, [35] = { - [sym_comment] = ACTIONS(19), - [ts_builtin_sym_end] = ACTIONS(331), + [ts_builtin_sym_end] = ACTIONS(339), + [sym_comment] = ACTIONS(41), }, [36] = { - [sym_command_substitution] = STATE(104), + [sym_command_substitution] = STATE(105), [aux_sym__literal_repeat1] = STATE(106), - [sym_string] = STATE(104), - [sym_process_substitution] = STATE(104), - [sym_simple_expansion] = STATE(104), - [sym_string_expansion] = STATE(104), + [sym_string] = STATE(105), + [sym_process_substitution] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), [aux_sym_command_repeat2] = STATE(107), [sym_concatenation] = STATE(107), - [sym_expansion] = STATE(104), - [sym_word] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_LT_LPAREN] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_EQ_TILDE] = ACTIONS(339), - [sym__special_character] = ACTIONS(27), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_SEMI] = ACTIONS(335), - [sym_raw_string] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(335), - [anon_sym_EQ_EQ] = ACTIONS(339), - [ts_builtin_sym_end] = ACTIONS(345), - [anon_sym_LT_LT_LT] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_DQUOTE] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(337), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_SEMI_SEMI] = ACTIONS(335), - [anon_sym_PIPE_AMP] = ACTIONS(335), + [sym_expansion] = STATE(105), + [anon_sym_PIPE_AMP] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(341), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_LT_LT] = ACTIONS(341), + [anon_sym_BQUOTE] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(341), + [sym_word] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_AMP] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(351), + [sym__special_character] = ACTIONS(31), + [anon_sym_LT_LT_DASH] = ACTIONS(341), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(341), + [sym_raw_string] = ACTIONS(347), + [sym_file_descriptor] = ACTIONS(353), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(351), + [ts_builtin_sym_end] = ACTIONS(353), + [anon_sym_LT_LT_LT] = ACTIONS(341), + [anon_sym_GT_AMP] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_SEMI_SEMI] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), }, [37] = { - [anon_sym_RPAREN] = ACTIONS(351), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(359), + [sym_comment] = ACTIONS(41), }, [38] = { - [sym_command_substitution] = STATE(109), - [sym_simple_expansion] = STATE(109), - [sym_string_expansion] = STATE(109), - [sym_string] = STATE(109), - [sym_process_substitution] = STATE(109), - [sym_expansion] = STATE(109), - [sym_word] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(45), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(37), - [sym_raw_string] = ACTIONS(353), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [sym_ansii_c_string] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [sym__special_character] = ACTIONS(353), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(558), + [anon_sym_AMP_GT_GT] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(361), + [anon_sym_GT_LPAREN] = ACTIONS(361), + [sym_number] = ACTIONS(363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [sym__concat] = ACTIONS(365), + [sym_word] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_AMP] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [sym__special_character] = ACTIONS(361), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(361), + [sym_variable_name] = ACTIONS(361), + [sym_file_descriptor] = ACTIONS(361), + [anon_sym_RPAREN] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_AMP_GT] = ACTIONS(363), + [anon_sym_DQUOTE] = ACTIONS(361), + [anon_sym_GT_AMP] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), + [anon_sym_LT_LPAREN] = ACTIONS(361), + [sym_ansii_c_string] = ACTIONS(361), }, [39] = { - [aux_sym_concatenation_repeat1] = STATE(111), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(357), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [anon_sym_EQ_TILDE] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [ts_builtin_sym_end] = ACTIONS(359), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [aux_sym__literal_repeat1] = STATE(564), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_number] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [sym_word] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_GT] = ACTIONS(367), + [sym__special_character] = ACTIONS(371), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [sym_file_descriptor] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [sym_ansii_c_string] = ACTIONS(367), }, [40] = { + [anon_sym_AMP_GT_GT] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(361), + [anon_sym_GT_LPAREN] = ACTIONS(361), + [sym_number] = ACTIONS(363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [sym_word] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_AMP] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [sym__special_character] = ACTIONS(361), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(361), + [sym_variable_name] = ACTIONS(361), + [sym_file_descriptor] = ACTIONS(361), [anon_sym_RPAREN] = ACTIONS(361), - [sym_comment] = ACTIONS(19), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_AMP_GT] = ACTIONS(363), + [anon_sym_DQUOTE] = ACTIONS(361), + [anon_sym_GT_AMP] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), + [anon_sym_LT_LPAREN] = ACTIONS(361), + [sym_ansii_c_string] = ACTIONS(361), }, [41] = { - [aux_sym_concatenation_repeat1] = STATE(546), - [sym_word] = ACTIONS(363), - [anon_sym_AMP_GT_GT] = ACTIONS(363), - [anon_sym_DOLLAR] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(363), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_AMP] = ACTIONS(363), - [anon_sym_GT_GT] = ACTIONS(363), - [sym__special_character] = ACTIONS(363), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(363), - [sym_variable_name] = ACTIONS(363), - [sym_file_descriptor] = ACTIONS(363), - [anon_sym_RPAREN] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_AMP_GT] = ACTIONS(365), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_GT_AMP] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_GT_LPAREN] = ACTIONS(363), - [sym_ansii_c_string] = ACTIONS(363), + [aux_sym_concatenation_repeat1] = STATE(643), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_number] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [sym__concat] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(373), + [sym_word] = ACTIONS(373), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [sym__special_character] = ACTIONS(373), + [anon_sym_LT_LT_DASH] = ACTIONS(373), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [sym_variable_name] = ACTIONS(377), + [sym_file_descriptor] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_LT_LT_LT] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [ts_builtin_sym_end] = ACTIONS(377), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [aux_sym__simple_variable_name_token1] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [sym_ansii_c_string] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_SEMI_SEMI] = ACTIONS(373), + [anon_sym_PIPE_AMP] = ACTIONS(373), }, [42] = { - [aux_sym__literal_repeat1] = STATE(564), - [sym_word] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [anon_sym_LT_LPAREN] = ACTIONS(369), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(369), - [sym__special_character] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(369), - [sym_raw_string] = ACTIONS(369), - [sym_variable_name] = ACTIONS(369), - [sym_file_descriptor] = ACTIONS(369), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_GT_LPAREN] = ACTIONS(369), - [sym_ansii_c_string] = ACTIONS(369), + [aux_sym__literal_repeat1] = STATE(646), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_AMP_GT_GT] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_number] = ACTIONS(379), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(379), + [sym_word] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT_AMP] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [sym__special_character] = ACTIONS(381), + [anon_sym_LT_LT_DASH] = ACTIONS(379), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(379), + [sym_raw_string] = ACTIONS(379), + [sym_variable_name] = ACTIONS(383), + [sym_file_descriptor] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_AMP_GT] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_LT_LT_LT] = ACTIONS(379), + [anon_sym_GT_AMP] = ACTIONS(379), + [ts_builtin_sym_end] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(379), + [aux_sym__simple_variable_name_token1] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [sym_ansii_c_string] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_SEMI_SEMI] = ACTIONS(379), + [anon_sym_PIPE_AMP] = ACTIONS(379), }, [43] = { - [sym_word] = ACTIONS(363), - [anon_sym_AMP_GT_GT] = ACTIONS(363), - [anon_sym_DOLLAR] = ACTIONS(365), - [anon_sym_LT_LPAREN] = ACTIONS(363), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_AMP] = ACTIONS(363), - [anon_sym_GT_GT] = ACTIONS(363), - [sym__special_character] = ACTIONS(363), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(363), - [sym_variable_name] = ACTIONS(363), - [sym_file_descriptor] = ACTIONS(363), - [anon_sym_RPAREN] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_AMP_GT] = ACTIONS(365), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_GT_AMP] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_GT_LPAREN] = ACTIONS(363), - [sym_ansii_c_string] = ACTIONS(363), + [sym_command_substitution] = STATE(41), + [aux_sym__literal_repeat1] = STATE(42), + [sym_string] = STATE(41), + [aux_sym_declaration_command_repeat1] = STATE(109), + [sym_process_substitution] = STATE(41), + [sym_simple_expansion] = STATE(41), + [sym_subscript] = STATE(2444), + [sym_string_expansion] = STATE(41), + [sym_variable_assignment] = STATE(109), + [sym_concatenation] = STATE(109), + [sym_expansion] = STATE(41), + [anon_sym_PIPE_AMP] = ACTIONS(385), + [anon_sym_AMP_GT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(133), + [anon_sym_GT_LPAREN] = ACTIONS(135), + [sym_number] = ACTIONS(137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(139), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [sym_word] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [sym__special_character] = ACTIONS(141), + [anon_sym_LT_LT_DASH] = ACTIONS(385), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(385), + [sym_raw_string] = ACTIONS(137), + [sym_variable_name] = ACTIONS(145), + [sym_file_descriptor] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [ts_builtin_sym_end] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [aux_sym__simple_variable_name_token1] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(135), + [sym_ansii_c_string] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_SEMI_SEMI] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(385), }, [44] = { - [aux_sym_concatenation_repeat1] = STATE(638), - [sym_word] = ACTIONS(375), - [anon_sym_AMP_GT_GT] = ACTIONS(375), - [anon_sym_DOLLAR] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(375), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [sym__concat] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LT_AMP] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [sym__special_character] = ACTIONS(375), - [anon_sym_LT_LT_DASH] = ACTIONS(375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), - [aux_sym__simple_variable_name_token1] = ACTIONS(375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), - [anon_sym_LF] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(375), - [sym_raw_string] = ACTIONS(375), - [sym_variable_name] = ACTIONS(379), - [sym_file_descriptor] = ACTIONS(379), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_AMP_GT] = ACTIONS(375), - [anon_sym_DQUOTE] = ACTIONS(375), - [anon_sym_LT_LT_LT] = ACTIONS(375), - [anon_sym_GT_AMP] = ACTIONS(375), - [ts_builtin_sym_end] = ACTIONS(379), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_GT_LPAREN] = ACTIONS(375), - [sym_ansii_c_string] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_SEMI_SEMI] = ACTIONS(375), - [anon_sym_PIPE_AMP] = ACTIONS(375), + [aux_sym_concatenation_repeat1] = STATE(699), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_number] = ACTIONS(391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [sym__concat] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(391), + [sym_word] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [sym__special_character] = ACTIONS(391), + [anon_sym_LT_LT_DASH] = ACTIONS(391), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(391), + [sym_raw_string] = ACTIONS(391), + [sym_file_descriptor] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_AMP_GT] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(391), + [anon_sym_LT_LT_LT] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [ts_builtin_sym_end] = ACTIONS(395), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [aux_sym__simple_variable_name_token1] = ACTIONS(391), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [sym_ansii_c_string] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_SEMI_SEMI] = ACTIONS(391), + [anon_sym_PIPE_AMP] = ACTIONS(391), }, [45] = { - [aux_sym__literal_repeat1] = STATE(646), - [sym_word] = ACTIONS(381), - [anon_sym_AMP_GT_GT] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_LT_LPAREN] = ACTIONS(381), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_LT_AMP] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [sym__special_character] = ACTIONS(383), - [anon_sym_LT_LT_DASH] = ACTIONS(381), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [aux_sym__simple_variable_name_token1] = ACTIONS(381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(381), - [sym_raw_string] = ACTIONS(381), - [sym_variable_name] = ACTIONS(385), - [sym_file_descriptor] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_AMP_GT] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(381), - [anon_sym_LT_LT_LT] = ACTIONS(381), - [anon_sym_GT_AMP] = ACTIONS(381), - [ts_builtin_sym_end] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(381), - [sym_ansii_c_string] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_SEMI_SEMI] = ACTIONS(381), - [anon_sym_PIPE_AMP] = ACTIONS(381), + [aux_sym__literal_repeat1] = STATE(702), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_AMP_GT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_BQUOTE] = ACTIONS(397), + [anon_sym_GT_LPAREN] = ACTIONS(397), + [sym_number] = ACTIONS(397), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [sym_word] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_AMP] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [sym__special_character] = ACTIONS(399), + [anon_sym_LT_LT_DASH] = ACTIONS(397), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(397), + [sym_raw_string] = ACTIONS(397), + [sym_file_descriptor] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_AMP_GT] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_LT_LT_LT] = ACTIONS(397), + [anon_sym_GT_AMP] = ACTIONS(397), + [ts_builtin_sym_end] = ACTIONS(401), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), + [aux_sym__simple_variable_name_token1] = ACTIONS(397), + [anon_sym_LT_LPAREN] = ACTIONS(397), + [sym_ansii_c_string] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(397), + [anon_sym_PIPE_AMP] = ACTIONS(397), }, [46] = { [sym_command_substitution] = STATE(44), [aux_sym__literal_repeat1] = STATE(45), [sym_string] = STATE(44), - [aux_sym_declaration_command_repeat1] = STATE(113), + [aux_sym_unset_command_repeat1] = STATE(110), [sym_process_substitution] = STATE(44), [sym_simple_expansion] = STATE(44), - [sym_subscript] = STATE(2444), [sym_string_expansion] = STATE(44), - [sym_variable_assignment] = STATE(113), - [sym_concatenation] = STATE(113), + [sym_concatenation] = STATE(110), [sym_expansion] = STATE(44), - [sym_word] = ACTIONS(131), - [anon_sym_AMP_GT_GT] = ACTIONS(387), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_LT_LPAREN] = ACTIONS(137), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_LT_AMP] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [sym__special_character] = ACTIONS(139), - [anon_sym_LT_LT_DASH] = ACTIONS(387), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), - [aux_sym__simple_variable_name_token1] = ACTIONS(389), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(387), - [sym_raw_string] = ACTIONS(131), - [sym_variable_name] = ACTIONS(149), - [sym_file_descriptor] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_AMP_GT] = ACTIONS(387), - [ts_builtin_sym_end] = ACTIONS(391), - [anon_sym_LT_LT_LT] = ACTIONS(387), - [anon_sym_GT_AMP] = ACTIONS(387), - [anon_sym_DQUOTE] = ACTIONS(151), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(137), - [sym_ansii_c_string] = ACTIONS(131), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_SEMI_SEMI] = ACTIONS(387), - [anon_sym_PIPE_AMP] = ACTIONS(387), + [anon_sym_PIPE_AMP] = ACTIONS(403), + [anon_sym_AMP_GT_GT] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_GT_LPAREN] = ACTIONS(159), + [sym_number] = ACTIONS(161), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(163), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [sym_word] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_LT_AMP] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [sym__special_character] = ACTIONS(165), + [anon_sym_LT_LT_DASH] = ACTIONS(403), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(403), + [sym_raw_string] = ACTIONS(161), + [sym_file_descriptor] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_AMP_GT] = ACTIONS(403), + [ts_builtin_sym_end] = ACTIONS(405), + [anon_sym_LT_LT_LT] = ACTIONS(403), + [anon_sym_GT_AMP] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [aux_sym__simple_variable_name_token1] = ACTIONS(407), + [anon_sym_LT_LPAREN] = ACTIONS(159), + [sym_ansii_c_string] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), }, [47] = { - [aux_sym_concatenation_repeat1] = STATE(696), - [sym_word] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [sym__concat] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_LT_AMP] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [sym__special_character] = ACTIONS(393), - [anon_sym_LT_LT_DASH] = ACTIONS(393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(393), - [aux_sym__simple_variable_name_token1] = ACTIONS(393), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), - [anon_sym_LF] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(393), - [sym_raw_string] = ACTIONS(393), - [sym_file_descriptor] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_LT_LT_LT] = ACTIONS(393), - [anon_sym_GT_AMP] = ACTIONS(393), - [ts_builtin_sym_end] = ACTIONS(397), - [anon_sym_BQUOTE] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), - [sym_ansii_c_string] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_SEMI_SEMI] = ACTIONS(393), - [anon_sym_PIPE_AMP] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_EQ_TILDE] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [ts_builtin_sym_end] = ACTIONS(411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [48] = { - [aux_sym__literal_repeat1] = STATE(702), - [sym_word] = ACTIONS(399), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_LT_LPAREN] = ACTIONS(399), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [sym__special_character] = ACTIONS(401), - [anon_sym_LT_LT_DASH] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(399), - [aux_sym__simple_variable_name_token1] = ACTIONS(399), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_LF] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(399), - [sym_raw_string] = ACTIONS(399), - [sym_file_descriptor] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_AMP_GT] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_LT_LT_LT] = ACTIONS(399), - [anon_sym_GT_AMP] = ACTIONS(399), - [ts_builtin_sym_end] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(399), - [anon_sym_GT_LPAREN] = ACTIONS(399), - [sym_ansii_c_string] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_SEMI_SEMI] = ACTIONS(399), - [anon_sym_PIPE_AMP] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_EQ_TILDE] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [ts_builtin_sym_end] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [49] = { - [sym_command_substitution] = STATE(47), - [aux_sym__literal_repeat1] = STATE(48), - [sym_string] = STATE(47), - [aux_sym_unset_command_repeat1] = STATE(114), - [sym_process_substitution] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_concatenation] = STATE(114), - [sym_expansion] = STATE(47), - [sym_word] = ACTIONS(155), - [anon_sym_AMP_GT_GT] = ACTIONS(405), - [anon_sym_DOLLAR] = ACTIONS(159), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_LT_LPAREN] = ACTIONS(161), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(405), - [anon_sym_PIPE] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_LT_AMP] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [sym__special_character] = ACTIONS(163), - [anon_sym_LT_LT_DASH] = ACTIONS(405), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(165), - [aux_sym__simple_variable_name_token1] = ACTIONS(407), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_LF] = ACTIONS(409), - [anon_sym_SEMI] = ACTIONS(405), - [sym_raw_string] = ACTIONS(155), - [sym_file_descriptor] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_AMP_GT] = ACTIONS(405), - [ts_builtin_sym_end] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(405), - [anon_sym_GT_AMP] = ACTIONS(405), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_BQUOTE] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(161), - [sym_ansii_c_string] = ACTIONS(155), - [anon_sym_AMP_AMP] = ACTIONS(405), - [anon_sym_SEMI_SEMI] = ACTIONS(405), - [anon_sym_PIPE_AMP] = ACTIONS(405), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_EQ_TILDE] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [ts_builtin_sym_end] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [50] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [anon_sym_EQ_TILDE] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [ts_builtin_sym_end] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(421), }, [51] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [anon_sym_EQ_TILDE] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [ts_builtin_sym_end] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(41), }, [52] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_EQ_TILDE] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [ts_builtin_sym_end] = ACTIONS(421), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [sym_command_substitution] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_string] = STATE(113), + [sym_process_substitution] = STATE(113), + [sym_expansion] = STATE(113), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(51), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(425), + [sym_word] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_LT_LPAREN] = ACTIONS(17), + [sym_ansii_c_string] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(15), + [anon_sym_GT_LPAREN] = ACTIONS(17), + [sym__special_character] = ACTIONS(425), + [sym_number] = ACTIONS(427), }, [53] = { - [anon_sym_RPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(115), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_EQ_TILDE] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [ts_builtin_sym_end] = ACTIONS(433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [54] = { - [sym_compound_statement] = STATE(117), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_LBRACE] = ACTIONS(23), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(120), + [sym_concatenation] = STATE(120), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(437), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(435), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(455), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(435), + [sym__special_character] = ACTIONS(459), }, [55] = { - [anon_sym_LT_LT_DASH] = ACTIONS(427), - [anon_sym_AMP_GT_GT] = ACTIONS(427), - [anon_sym_LF] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_AMP] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [sym_file_descriptor] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(427), - [ts_builtin_sym_end] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(427), - [anon_sym_PIPE] = ACTIONS(427), - [anon_sym_GT_AMP] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_LT_AMP] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_AMP_AMP] = ACTIONS(427), - [anon_sym_SEMI_SEMI] = ACTIONS(427), - [anon_sym_PIPE_AMP] = ACTIONS(427), + [sym_subscript] = STATE(121), + [anon_sym__] = ACTIONS(461), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [aux_sym__simple_variable_name_token1] = ACTIONS(461), + [sym_variable_name] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(463), }, [56] = { + [anon_sym_EQ] = ACTIONS(469), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [57] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(127), + [sym_concatenation] = STATE(127), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(473), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(475), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(473), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(479), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(473), + [sym__special_character] = ACTIONS(459), + }, + [58] = { + [sym_compound_statement] = STATE(129), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(27), + [sym_comment] = ACTIONS(41), + }, + [59] = { + [anon_sym_RPAREN] = ACTIONS(483), + [sym_comment] = ACTIONS(41), + }, + [60] = { + [anon_sym_LT_LT_DASH] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_AMP_GT_GT] = ACTIONS(485), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [sym_file_descriptor] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(485), + [anon_sym_AMP_GT] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [ts_builtin_sym_end] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(485), + [anon_sym_GT_AMP] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(485), + [anon_sym_LT_AMP] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_SEMI_SEMI] = ACTIONS(485), + [anon_sym_PIPE_AMP] = ACTIONS(485), + }, + [61] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_PIPE_AMP] = ACTIONS(431), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LF] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(437), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(437), - [anon_sym_AMP_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(437), - [anon_sym_LT_LT_DASH] = ACTIONS(441), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(497), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(497), }, - [57] = { + [62] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(437), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(437), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(491), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(497), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(497), }, - [58] = { + [63] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_negated_command] = STATE(56), - [sym_test_command] = STATE(56), - [sym_variable_assignment] = STATE(57), + [sym_if_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_negated_command] = STATE(61), + [sym_test_command] = STATE(61), + [sym_variable_assignment] = STATE(62), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(421), - [sym_redirected_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_compound_statement] = STATE(56), - [sym_subshell] = STATE(56), - [sym_declaration_command] = STATE(56), - [sym_unset_command] = STATE(56), + [sym_redirected_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_compound_statement] = STATE(61), + [sym_subshell] = STATE(61), + [sym_declaration_command] = STATE(61), + [sym_unset_command] = STATE(61), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_pipeline] = STATE(56), - [sym_list] = STATE(56), - [sym_command] = STATE(56), + [sym_c_style_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_case_statement] = STATE(61), + [sym_pipeline] = STATE(61), + [sym_list] = STATE(61), + [sym_command] = STATE(61), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [59] = { - [sym_comment] = ACTIONS(19), - [anon_sym_then] = ACTIONS(449), + [64] = { + [anon_sym_then] = ACTIONS(507), + [sym_comment] = ACTIONS(41), }, - [60] = { + [65] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LT_LT] = ACTIONS(441), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_LF] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(453), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_AMP_GT] = ACTIONS(433), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(453), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(511), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(511), + [anon_sym_AMP] = ACTIONS(511), }, - [61] = { + [66] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(453), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(453), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(511), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(491), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(511), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(511), + [anon_sym_PIPE_AMP] = ACTIONS(491), }, - [62] = { - [aux_sym_concatenation_repeat1] = STATE(735), + [67] = { + [aux_sym_concatenation_repeat1] = STATE(738), + [anon_sym_SEMI_SEMI] = ACTIONS(513), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(455), - [sym__concat] = ACTIONS(457), - [anon_sym_LF] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym_in] = ACTIONS(461), - [anon_sym_SEMI_SEMI] = ACTIONS(455), + [sym__concat] = ACTIONS(515), + [anon_sym_LF] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_in] = ACTIONS(519), + [anon_sym_AMP] = ACTIONS(513), }, - [63] = { + [68] = { [aux_sym__literal_repeat1] = STATE(741), - [anon_sym_SEMI] = ACTIONS(463), + [anon_sym_in] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(523), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_LF] = ACTIONS(465), - [sym__special_character] = ACTIONS(467), - [anon_sym_SEMI_SEMI] = ACTIONS(463), - [anon_sym_in] = ACTIONS(469), - }, - [64] = { - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_LF] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(455), - [anon_sym_in] = ACTIONS(461), - [anon_sym_SEMI_SEMI] = ACTIONS(455), - }, - [65] = { - [aux_sym_concatenation_repeat1] = STATE(772), - [anon_sym_PLUS_EQ] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_DASH] = ACTIONS(473), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(471), - [anon_sym_PIPE_PIPE] = ACTIONS(471), - [anon_sym_RBRACK_RBRACK] = ACTIONS(471), - [sym__concat] = ACTIONS(475), - [sym_test_operator] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_EQ_TILDE] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(471), - [anon_sym_DASH_EQ] = ACTIONS(471), - [anon_sym_BANG_EQ] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(473), - [anon_sym_GT] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(473), - [anon_sym_EQ_EQ] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_AMP_AMP] = ACTIONS(471), - }, - [66] = { - [aux_sym__literal_repeat1] = STATE(68), - [sym_unary_expression] = STATE(127), - [sym_postfix_expression] = STATE(127), - [sym_string] = STATE(65), - [sym_process_substitution] = STATE(65), - [sym__expression] = STATE(127), - [sym_binary_expression] = STATE(127), - [sym_concatenation] = STATE(127), - [sym_expansion] = STATE(65), - [sym_command_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(127), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), - }, - [67] = { - [aux_sym__literal_repeat1] = STATE(68), - [sym_unary_expression] = STATE(128), - [sym_postfix_expression] = STATE(128), - [sym_string] = STATE(65), - [sym_process_substitution] = STATE(65), - [sym__expression] = STATE(128), - [sym_binary_expression] = STATE(128), - [sym_concatenation] = STATE(128), - [sym_expansion] = STATE(65), - [sym_command_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(128), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), - }, - [68] = { - [aux_sym__literal_repeat1] = STATE(778), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_RBRACK_RBRACK] = ACTIONS(477), - [sym_test_operator] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_EQ_TILDE] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(477), - [sym__special_character] = ACTIONS(481), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_LF] = ACTIONS(525), + [sym__special_character] = ACTIONS(527), + [anon_sym_SEMI_SEMI] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), }, [69] = { - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_RPAREN_RPAREN] = ACTIONS(491), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [sym_test_operator] = ACTIONS(483), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_in] = ACTIONS(519), + [anon_sym_AMP] = ACTIONS(513), }, [70] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(137), - [sym_concatenation] = STATE(137), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(501), - [anon_sym_PERCENT] = ACTIONS(501), - [anon_sym_POUND] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON_DASH] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(501), - [sym__special_character] = ACTIONS(517), + [aux_sym__literal_repeat1] = STATE(73), + [sym_unary_expression] = STATE(140), + [sym_postfix_expression] = STATE(140), + [sym_string] = STATE(71), + [sym_process_substitution] = STATE(71), + [sym__expression] = STATE(140), + [sym_binary_expression] = STATE(140), + [sym_concatenation] = STATE(140), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(140), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [71] = { - [sym_subscript] = STATE(138), - [aux_sym__simple_variable_name_token1] = ACTIONS(519), - [anon_sym__] = ACTIONS(519), - [anon_sym_AT] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(521), - [sym_variable_name] = ACTIONS(523), - [anon_sym_DOLLAR] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(521), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(519), + [aux_sym_concatenation_repeat1] = STATE(775), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_RPAREN_RPAREN] = ACTIONS(529), + [anon_sym_PIPE_PIPE] = ACTIONS(529), + [anon_sym_RBRACK_RBRACK] = ACTIONS(529), + [sym__concat] = ACTIONS(533), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_EQ_TILDE] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_LT_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_BANG_EQ] = ACTIONS(529), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(531), + [sym_test_operator] = ACTIONS(529), + [anon_sym_GT] = ACTIONS(531), + [anon_sym_EQ] = ACTIONS(531), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_GT_EQ] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_AMP_AMP] = ACTIONS(529), }, [72] = { - [anon_sym_EQ] = ACTIONS(527), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [aux_sym__literal_repeat1] = STATE(73), + [sym_unary_expression] = STATE(141), + [sym_postfix_expression] = STATE(141), + [sym_string] = STATE(71), + [sym_process_substitution] = STATE(71), + [sym__expression] = STATE(141), + [sym_binary_expression] = STATE(141), + [sym_concatenation] = STATE(141), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(141), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [73] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(144), - [sym_concatenation] = STATE(144), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_PERCENT] = ACTIONS(531), - [anon_sym_POUND] = ACTIONS(535), - [anon_sym_SLASH] = ACTIONS(537), - [anon_sym_COLON_DASH] = ACTIONS(531), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(531), - [sym__special_character] = ACTIONS(517), + [aux_sym__literal_repeat1] = STATE(778), + [anon_sym_PLUS_EQ] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_RPAREN_RPAREN] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_RBRACK_RBRACK] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(537), + [anon_sym_EQ_TILDE] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_LT_EQ] = ACTIONS(535), + [sym__special_character] = ACTIONS(539), + [anon_sym_DASH_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ] = ACTIONS(535), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(537), + [sym_test_operator] = ACTIONS(535), + [anon_sym_GT] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(535), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(535), }, [74] = { - [anon_sym_LT_LT_DASH] = ACTIONS(539), - [anon_sym_AMP_GT_GT] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(539), - [anon_sym_LT_LT] = ACTIONS(539), - [anon_sym_AMP] = ACTIONS(539), - [anon_sym_GT] = ACTIONS(539), - [sym_file_descriptor] = ACTIONS(541), - [anon_sym_AMP_GT] = ACTIONS(539), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(539), - [ts_builtin_sym_end] = ACTIONS(541), - [anon_sym_LT_LT_LT] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_GT_AMP] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(539), - [anon_sym_LT_AMP] = ACTIONS(539), - [anon_sym_GT_GT] = ACTIONS(539), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_SEMI_SEMI] = ACTIONS(539), - [anon_sym_PIPE_AMP] = ACTIONS(539), + [anon_sym_BANG_EQ] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [sym_test_operator] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_RPAREN_RPAREN] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), }, [75] = { - [sym_command_substitution] = STATE(145), - [aux_sym__literal_repeat1] = STATE(148), - [sym_string] = STATE(145), - [sym_array] = STATE(147), - [sym_process_substitution] = STATE(145), - [sym_simple_expansion] = STATE(145), - [sym_string_expansion] = STATE(145), - [sym_concatenation] = STATE(147), - [sym_expansion] = STATE(145), - [sym_word] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(547), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(549), - [sym_raw_string] = ACTIONS(543), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(551), - [anon_sym_BQUOTE] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(555), - [sym_ansii_c_string] = ACTIONS(543), - [anon_sym_GT_LPAREN] = ACTIONS(557), - [anon_sym_LT_LPAREN] = ACTIONS(557), - [sym__special_character] = ACTIONS(559), - [sym__empty_value] = ACTIONS(561), - [sym_comment] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(551), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_AMP_GT_GT] = ACTIONS(551), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(551), + [sym_file_descriptor] = ACTIONS(553), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_AMP_GT] = ACTIONS(551), + [anon_sym_PIPE_PIPE] = ACTIONS(551), + [ts_builtin_sym_end] = ACTIONS(553), + [anon_sym_LT_LT_LT] = ACTIONS(551), + [anon_sym_PIPE] = ACTIONS(551), + [anon_sym_GT_AMP] = ACTIONS(551), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_AMP] = ACTIONS(551), + [anon_sym_GT_GT] = ACTIONS(551), + [anon_sym_AMP_AMP] = ACTIONS(551), + [anon_sym_SEMI_SEMI] = ACTIONS(551), + [anon_sym_PIPE_AMP] = ACTIONS(551), }, [76] = { - [sym_command_substitution] = STATE(149), - [aux_sym__literal_repeat1] = STATE(150), - [sym_string] = STATE(149), - [sym_process_substitution] = STATE(149), - [sym_simple_expansion] = STATE(149), - [sym_string_expansion] = STATE(149), - [sym_concatenation] = STATE(151), - [sym_expansion] = STATE(149), - [sym_word] = ACTIONS(563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(563), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR] = ACTIONS(287), - [sym_ansii_c_string] = ACTIONS(563), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [sym__special_character] = ACTIONS(565), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(148), + [aux_sym__literal_repeat1] = STATE(149), + [sym_string] = STATE(148), + [sym_array] = STATE(147), + [sym_process_substitution] = STATE(148), + [sym_simple_expansion] = STATE(148), + [sym_string_expansion] = STATE(148), + [sym_concatenation] = STATE(147), + [sym_expansion] = STATE(148), + [anon_sym_LPAREN] = ACTIONS(555), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(559), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_GT_LPAREN] = ACTIONS(563), + [sym_number] = ACTIONS(565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [sym_word] = ACTIONS(565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), + [anon_sym_LT_LPAREN] = ACTIONS(563), + [sym_ansii_c_string] = ACTIONS(557), + [sym__special_character] = ACTIONS(573), + [sym__empty_value] = ACTIONS(575), }, [77] = { - [sym_command_substitution] = STATE(152), - [aux_sym__literal_repeat1] = STATE(153), - [sym_string] = STATE(152), - [sym_process_substitution] = STATE(152), - [sym_simple_expansion] = STATE(152), - [sym_string_expansion] = STATE(152), - [sym_concatenation] = STATE(154), - [sym_expansion] = STATE(152), - [sym_word] = ACTIONS(567), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LT_LPAREN] = ACTIONS(123), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(123), - [sym_ansii_c_string] = ACTIONS(567), - [sym__special_character] = ACTIONS(129), + [sym_command_substitution] = STATE(150), + [aux_sym__literal_repeat1] = STATE(151), + [sym_string] = STATE(150), + [sym_process_substitution] = STATE(150), + [sym_simple_expansion] = STATE(150), + [sym_string_expansion] = STATE(150), + [sym_concatenation] = STATE(152), + [sym_expansion] = STATE(150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(577), + [sym_word] = ACTIONS(579), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_ansii_c_string] = ACTIONS(577), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [anon_sym_BQUOTE] = ACTIONS(293), + [sym__special_character] = ACTIONS(581), + [sym_number] = ACTIONS(579), + [anon_sym_GT_LPAREN] = ACTIONS(295), }, [78] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(569), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_command_substitution] = STATE(153), + [aux_sym__literal_repeat1] = STATE(154), + [sym_string] = STATE(153), + [sym_process_substitution] = STATE(153), + [sym_simple_expansion] = STATE(153), + [sym_string_expansion] = STATE(153), + [sym_concatenation] = STATE(155), + [sym_expansion] = STATE(153), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(117), + [sym_number] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_word] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [sym_ansii_c_string] = ACTIONS(583), + [sym__special_character] = ACTIONS(127), }, [79] = { - [anon_sym_RPAREN] = ACTIONS(569), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(589), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [80] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [anon_sym_EQ_TILDE] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [ts_builtin_sym_end] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [81] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_EQ_TILDE] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [ts_builtin_sym_end] = ACTIONS(581), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), + [anon_sym_DQUOTE] = ACTIONS(599), + [sym__concat] = ACTIONS(601), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(599), + [sym__string_content] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), }, [82] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(583), - [sym__concat] = ACTIONS(585), - [anon_sym_BQUOTE] = ACTIONS(583), - [sym__string_content] = ACTIONS(583), - [anon_sym_DOLLAR] = ACTIONS(583), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(160), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [83] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(587), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [84] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(605), + [sym_comment] = ACTIONS(41), }, [85] = { - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_SEMI_SEMI] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - }, - [86] = { [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(165), - [sym_postfix_expression] = STATE(165), + [sym_unary_expression] = STATE(163), + [sym_postfix_expression] = STATE(163), [sym_string] = STATE(559), [aux_sym__literal_repeat1] = STATE(561), [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(165), + [sym_parenthesized_expression] = STATE(163), [sym_simple_expansion] = STATE(559), [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(165), - [sym_binary_expression] = STATE(165), - [sym_concatenation] = STATE(165), + [sym__expression] = STATE(163), + [sym_binary_expression] = STATE(163), + [sym_concatenation] = STATE(163), [sym_expansion] = STATE(559), - [sym_word] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(603), - [sym_raw_string] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_LT_LPAREN] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_test_operator] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(615), - [anon_sym_GT_LPAREN] = ACTIONS(611), - [sym_ansii_c_string] = ACTIONS(597), - [sym__special_character] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(615), + [sym_test_operator] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_GT_LPAREN] = ACTIONS(619), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_word] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_LT_LPAREN] = ACTIONS(619), + [sym_ansii_c_string] = ACTIONS(609), + [sym__special_character] = ACTIONS(627), + [anon_sym_SEMI_SEMI] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(611), + }, + [86] = { + [anon_sym_AMP] = ACTIONS(629), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_in] = ACTIONS(633), + [anon_sym_SEMI_SEMI] = ACTIONS(629), }, [87] = { [sym_do_group] = STATE(167), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(619), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(635), }, [88] = { - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_RBRACK] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(625), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [sym_test_operator] = ACTIONS(621), - [anon_sym_EQ_TILDE] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_PLUS_EQ] = ACTIONS(637), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(639), + [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(641), + [anon_sym_EQ] = ACTIONS(641), + [sym_test_operator] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_EQ_TILDE] = ACTIONS(643), + [anon_sym_DASH_DASH] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_DASH_EQ] = ACTIONS(637), }, [89] = { - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_RBRACK_RBRACK] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [sym_test_operator] = ACTIONS(483), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), + [anon_sym_BANG_EQ] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [sym_test_operator] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_RBRACK_RBRACK] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), }, [90] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [91] = { [aux_sym__literal_repeat1] = STATE(91), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [anon_sym_EQ_TILDE] = ACTIONS(629), - [sym__special_character] = ACTIONS(631), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [ts_builtin_sym_end] = ACTIONS(634), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [anon_sym_EQ_TILDE] = ACTIONS(645), + [sym__special_character] = ACTIONS(647), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_EQ_EQ] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [ts_builtin_sym_end] = ACTIONS(650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [92] = { + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [ts_builtin_sym_end] = ACTIONS(656), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + }, + [93] = { [aux_sym__literal_repeat1] = STATE(27), [sym_if_statement] = STATE(168), [sym_function_definition] = STATE(168), @@ -9763,8 +10013,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(169), [sym_subscript] = STATE(30), [sym_concatenation] = STATE(31), - [sym_expansion] = STATE(15), - [sym_command_substitution] = STATE(15), + [sym_expansion] = STATE(9), + [sym_command_substitution] = STATE(9), [sym_redirected_statement] = STATE(168), [sym_for_statement] = STATE(168), [sym_compound_statement] = STATE(168), @@ -9772,8 +10022,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(168), [sym_unset_command] = STATE(168), [sym_file_redirect] = STATE(34), - [sym_string] = STATE(15), - [sym_process_substitution] = STATE(15), + [sym_string] = STATE(9), + [sym_process_substitution] = STATE(9), [aux_sym_command_repeat1] = STATE(34), [sym_c_style_for_statement] = STATE(168), [sym_while_statement] = STATE(168), @@ -9782,138 +10032,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(168), [sym_command] = STATE(168), [sym_command_name] = STATE(36), - [sym_simple_expansion] = STATE(15), - [sym_string_expansion] = STATE(15), - [sym_word] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(11), - [anon_sym_typeset] = ACTIONS(11), - [anon_sym_unsetenv] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(11), - [sym__special_character] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_case] = ACTIONS(31), - [anon_sym_LPAREN_LPAREN] = ACTIONS(33), - [sym_raw_string] = ACTIONS(35), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(37), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_declare] = ACTIONS(11), - [sym_variable_name] = ACTIONS(41), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(11), - [anon_sym_unset] = ACTIONS(13), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(51), + [sym_simple_expansion] = STATE(9), + [sym_string_expansion] = STATE(9), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(9), + [anon_sym_typeset] = ACTIONS(9), + [anon_sym_unsetenv] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(15), [anon_sym_GT_LPAREN] = ACTIONS(17), - [anon_sym_for] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_ansii_c_string] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(59), - }, - [93] = { - [sym_heredoc_body] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(640), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(642), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [ts_builtin_sym_end] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [sym_number] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_function] = ACTIONS(23), + [sym_word] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(9), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(31), + [anon_sym_if] = ACTIONS(33), + [anon_sym_case] = ACTIONS(35), + [anon_sym_LPAREN_LPAREN] = ACTIONS(37), + [sym_raw_string] = ACTIONS(39), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_declare] = ACTIONS(9), + [sym_variable_name] = ACTIONS(45), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(9), + [anon_sym_unset] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(51), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(17), + [anon_sym_for] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [sym_ansii_c_string] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(61), }, [94] = { - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [ts_builtin_sym_end] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [sym_heredoc_body] = STATE(172), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(658), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [ts_builtin_sym_end] = ACTIONS(656), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [95] = { - [sym_heredoc_start] = ACTIONS(646), - [sym_comment] = ACTIONS(19), + [sym_heredoc_start] = ACTIONS(662), + [sym_comment] = ACTIONS(41), }, [96] = { [aux_sym__literal_repeat1] = STATE(27), @@ -9924,8 +10134,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(175), [sym_subscript] = STATE(30), [sym_concatenation] = STATE(31), - [sym_expansion] = STATE(15), - [sym_command_substitution] = STATE(15), + [sym_expansion] = STATE(9), + [sym_command_substitution] = STATE(9), [sym_redirected_statement] = STATE(174), [sym_for_statement] = STATE(174), [sym_compound_statement] = STATE(174), @@ -9933,8 +10143,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(174), [sym_unset_command] = STATE(174), [sym_file_redirect] = STATE(34), - [sym_string] = STATE(15), - [sym_process_substitution] = STATE(15), + [sym_string] = STATE(9), + [sym_process_substitution] = STATE(9), [aux_sym_command_repeat1] = STATE(34), [sym_c_style_for_statement] = STATE(174), [sym_while_statement] = STATE(174), @@ -9943,47 +10153,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(174), [sym_command] = STATE(174), [sym_command_name] = STATE(36), - [sym_simple_expansion] = STATE(15), - [sym_string_expansion] = STATE(15), - [sym_word] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(11), - [anon_sym_typeset] = ACTIONS(11), - [anon_sym_unsetenv] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(11), - [sym__special_character] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_case] = ACTIONS(31), - [anon_sym_LPAREN_LPAREN] = ACTIONS(33), - [sym_raw_string] = ACTIONS(35), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(37), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_declare] = ACTIONS(11), - [sym_variable_name] = ACTIONS(41), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(11), - [anon_sym_unset] = ACTIONS(13), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(51), + [sym_simple_expansion] = STATE(9), + [sym_string_expansion] = STATE(9), + [anon_sym_LPAREN] = ACTIONS(5), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(9), + [anon_sym_typeset] = ACTIONS(9), + [anon_sym_unsetenv] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(15), [anon_sym_GT_LPAREN] = ACTIONS(17), - [anon_sym_for] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_ansii_c_string] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(59), + [sym_number] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_function] = ACTIONS(23), + [sym_word] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(9), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(31), + [anon_sym_if] = ACTIONS(33), + [anon_sym_case] = ACTIONS(35), + [anon_sym_LPAREN_LPAREN] = ACTIONS(37), + [sym_raw_string] = ACTIONS(39), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_declare] = ACTIONS(9), + [sym_variable_name] = ACTIONS(45), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(9), + [anon_sym_unset] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(51), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(17), + [anon_sym_for] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [sym_ansii_c_string] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(61), }, [97] = { [sym_command_substitution] = STATE(176), @@ -9994,1416 +10205,1448 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(176), [sym_concatenation] = STATE(178), [sym_expansion] = STATE(176), - [sym_word] = ACTIONS(648), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [sym_raw_string] = ACTIONS(648), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_DOLLAR] = ACTIONS(658), - [sym_ansii_c_string] = ACTIONS(648), - [anon_sym_GT_LPAREN] = ACTIONS(660), - [anon_sym_LT_LPAREN] = ACTIONS(660), - [sym__special_character] = ACTIONS(662), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(668), + [sym_word] = ACTIONS(670), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(674), + [sym_ansii_c_string] = ACTIONS(668), + [anon_sym_LT_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [sym__special_character] = ACTIONS(680), + [sym_number] = ACTIONS(670), + [anon_sym_GT_LPAREN] = ACTIONS(676), }, [98] = { [sym_heredoc_redirect] = STATE(179), [aux_sym_redirected_statement_repeat1] = STATE(179), [sym_herestring_redirect] = STATE(179), [sym_file_redirect] = STATE(179), - [anon_sym_LT_LT_DASH] = ACTIONS(313), - [anon_sym_AMP_GT_GT] = ACTIONS(307), - [anon_sym_LF] = ACTIONS(664), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(307), - [sym_file_descriptor] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [ts_builtin_sym_end] = ACTIONS(664), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_GT_AMP] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_LT_AMP] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_SEMI_SEMI] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), + [anon_sym_LT_LT_DASH] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_AMP_GT_GT] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(684), + [anon_sym_SEMI] = ACTIONS(682), + [anon_sym_LT_LT] = ACTIONS(321), + [sym_file_descriptor] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_AMP_GT] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(682), + [ts_builtin_sym_end] = ACTIONS(684), + [anon_sym_LT_LT_LT] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_GT_AMP] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_LT_AMP] = ACTIONS(315), + [anon_sym_GT_GT] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(682), + [anon_sym_SEMI_SEMI] = ACTIONS(682), + [anon_sym_PIPE_AMP] = ACTIONS(682), }, [99] = { [sym_heredoc_redirect] = STATE(98), [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_PIPE_AMP] = ACTIONS(321), - [anon_sym_AMP_GT_GT] = ACTIONS(307), - [anon_sym_LF] = ACTIONS(668), - [anon_sym_SEMI] = ACTIONS(670), - [sym_file_descriptor] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_AMP_GT] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [ts_builtin_sym_end] = ACTIONS(644), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_GT_AMP] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_LT_AMP] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_SEMI_SEMI] = ACTIONS(670), - [anon_sym_LT_LT_DASH] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(321), + [anon_sym_PIPE_AMP] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [sym_file_descriptor] = ACTIONS(319), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_AMP_GT] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(323), + [ts_builtin_sym_end] = ACTIONS(656), + [anon_sym_LT_LT_LT] = ACTIONS(327), + [anon_sym_GT_AMP] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_LT_AMP] = ACTIONS(315), + [anon_sym_GT_GT] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(323), + [anon_sym_SEMI_SEMI] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), }, [100] = { [sym_heredoc_redirect] = STATE(98), [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(313), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(668), - [anon_sym_SEMI] = ACTIONS(670), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [ts_builtin_sym_end] = ACTIONS(644), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_SEMI_SEMI] = ACTIONS(670), - [anon_sym_PIPE_AMP] = ACTIONS(321), + [anon_sym_PIPE_AMP] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(329), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [ts_builtin_sym_end] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(323), + [anon_sym_SEMI_SEMI] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), }, [101] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1371), - [sym_function_definition] = STATE(1371), - [sym_negated_command] = STATE(1371), - [sym_test_command] = STATE(1371), - [sym_variable_assignment] = STATE(1372), + [sym_if_statement] = STATE(1374), + [sym_function_definition] = STATE(1374), + [sym_negated_command] = STATE(1374), + [sym_test_command] = STATE(1374), + [sym_variable_assignment] = STATE(1375), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(1371), - [sym_for_statement] = STATE(1371), - [sym_compound_statement] = STATE(1371), - [sym_subshell] = STATE(1371), - [sym_declaration_command] = STATE(1371), - [sym_unset_command] = STATE(1371), + [sym_redirected_statement] = STATE(1374), + [sym_for_statement] = STATE(1374), + [sym_compound_statement] = STATE(1374), + [sym_subshell] = STATE(1374), + [sym_declaration_command] = STATE(1374), + [sym_unset_command] = STATE(1374), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(1371), - [sym_while_statement] = STATE(1371), - [sym_case_statement] = STATE(1371), - [sym_pipeline] = STATE(1371), - [sym_list] = STATE(1371), - [sym_command] = STATE(1371), + [sym_c_style_for_statement] = STATE(1374), + [sym_while_statement] = STATE(1374), + [sym_case_statement] = STATE(1374), + [sym_pipeline] = STATE(1374), + [sym_list] = STATE(1374), + [sym_command] = STATE(1374), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [anon_sym_LPAREN] = ACTIONS(672), - [sym_word] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(678), - [anon_sym_local] = ACTIONS(681), - [anon_sym_typeset] = ACTIONS(681), - [anon_sym_unsetenv] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(690), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_LT_AMP] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_export] = ACTIONS(681), - [sym__special_character] = ACTIONS(702), - [anon_sym_if] = ACTIONS(705), - [anon_sym_case] = ACTIONS(708), - [anon_sym_LPAREN_LPAREN] = ACTIONS(711), - [sym_raw_string] = ACTIONS(714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_BANG] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), - [sym_file_descriptor] = ACTIONS(726), - [sym_variable_name] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(699), - [anon_sym_readonly] = ACTIONS(681), - [anon_sym_unset] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(732), - [anon_sym_GT_AMP] = ACTIONS(678), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(690), - [anon_sym_for] = ACTIONS(738), - [anon_sym_while] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(744), - [sym_ansii_c_string] = ACTIONS(714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(747), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(693), + [anon_sym_local] = ACTIONS(696), + [anon_sym_typeset] = ACTIONS(696), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(708), + [sym_number] = ACTIONS(711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(714), + [anon_sym_function] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_LT_AMP] = ACTIONS(693), + [anon_sym_GT_GT] = ACTIONS(693), + [anon_sym_export] = ACTIONS(696), + [sym_word] = ACTIONS(726), + [sym__special_character] = ACTIONS(729), + [anon_sym_if] = ACTIONS(732), + [anon_sym_case] = ACTIONS(735), + [anon_sym_LPAREN_LPAREN] = ACTIONS(738), + [sym_raw_string] = ACTIONS(741), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_declare] = ACTIONS(696), + [sym_variable_name] = ACTIONS(747), + [sym_file_descriptor] = ACTIONS(750), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_AMP_GT] = ACTIONS(723), + [anon_sym_readonly] = ACTIONS(696), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_GT_AMP] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_LT_LPAREN] = ACTIONS(708), + [anon_sym_for] = ACTIONS(759), + [anon_sym_while] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(765), + [sym_ansii_c_string] = ACTIONS(741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(768), }, [102] = { - [sym_command_substitution] = STATE(104), + [sym_command_substitution] = STATE(105), [aux_sym__literal_repeat1] = STATE(106), - [sym_string] = STATE(104), - [sym_process_substitution] = STATE(104), - [sym_simple_expansion] = STATE(104), - [sym_string_expansion] = STATE(104), + [sym_string] = STATE(105), + [sym_process_substitution] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), [aux_sym_command_repeat2] = STATE(182), [sym_concatenation] = STATE(182), - [sym_expansion] = STATE(104), - [sym_word] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_LT_LT] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(750), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_AMP] = ACTIONS(750), - [anon_sym_GT_GT] = ACTIONS(750), - [anon_sym_EQ_TILDE] = ACTIONS(339), - [sym__special_character] = ACTIONS(27), - [anon_sym_LT_LT_DASH] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(750), - [sym_raw_string] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_AMP_GT] = ACTIONS(750), - [anon_sym_EQ_EQ] = ACTIONS(339), - [ts_builtin_sym_end] = ACTIONS(752), - [anon_sym_LT_LT_LT] = ACTIONS(750), - [anon_sym_GT_AMP] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(337), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(750), - [anon_sym_SEMI_SEMI] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(750), + [sym_expansion] = STATE(105), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [sym_word] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(351), + [sym__special_character] = ACTIONS(31), + [anon_sym_LT_LT_DASH] = ACTIONS(771), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [sym_raw_string] = ACTIONS(347), + [sym_file_descriptor] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(351), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_SEMI_SEMI] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), }, [103] = { [sym_variable_assignment] = STATE(103), [sym_subscript] = STATE(2455), [aux_sym_command_repeat1] = STATE(103), [sym_file_redirect] = STATE(103), - [sym_word] = ACTIONS(754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(754), - [anon_sym_AMP_GT_GT] = ACTIONS(756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(754), - [sym_raw_string] = ACTIONS(754), - [anon_sym_DOLLAR] = ACTIONS(759), - [sym_file_descriptor] = ACTIONS(761), - [sym_variable_name] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_LT_LPAREN] = ACTIONS(754), - [anon_sym_AMP_GT] = ACTIONS(767), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(754), - [anon_sym_GT_AMP] = ACTIONS(756), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_LT_AMP] = ACTIONS(756), - [anon_sym_GT_GT] = ACTIONS(756), - [sym_ansii_c_string] = ACTIONS(754), - [anon_sym_BQUOTE] = ACTIONS(754), - [anon_sym_GT_LPAREN] = ACTIONS(754), - [sym__special_character] = ACTIONS(754), + [anon_sym_AMP_GT_GT] = ACTIONS(775), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(780), + [sym_file_descriptor] = ACTIONS(782), + [sym_variable_name] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(788), + [anon_sym_BQUOTE] = ACTIONS(778), + [anon_sym_AMP_GT] = ACTIONS(788), + [sym_number] = ACTIONS(780), + [anon_sym_GT_LPAREN] = ACTIONS(778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(778), + [anon_sym_GT_AMP] = ACTIONS(775), + [sym_word] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_LT_AMP] = ACTIONS(775), + [anon_sym_GT_GT] = ACTIONS(775), + [sym_ansii_c_string] = ACTIONS(778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), + [anon_sym_LT_LPAREN] = ACTIONS(778), + [sym__special_character] = ACTIONS(778), }, [104] = { - [aux_sym_concatenation_repeat1] = STATE(39), - [sym_word] = ACTIONS(770), - [anon_sym_AMP_GT_GT] = ACTIONS(770), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(770), - [anon_sym_LT_LPAREN] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(770), - [sym__concat] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_AMP] = ACTIONS(770), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_EQ_TILDE] = ACTIONS(770), - [sym__special_character] = ACTIONS(770), - [anon_sym_LT_LT_DASH] = ACTIONS(770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(770), - [anon_sym_LF] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(770), - [sym_raw_string] = ACTIONS(770), - [sym_file_descriptor] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_AMP_GT] = ACTIONS(770), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_DQUOTE] = ACTIONS(770), - [anon_sym_LT_LT_LT] = ACTIONS(770), - [anon_sym_GT_AMP] = ACTIONS(770), - [ts_builtin_sym_end] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(770), - [anon_sym_GT_LPAREN] = ACTIONS(770), - [sym_ansii_c_string] = ACTIONS(770), - [anon_sym_AMP_AMP] = ACTIONS(770), - [anon_sym_SEMI_SEMI] = ACTIONS(770), - [anon_sym_PIPE_AMP] = ACTIONS(770), - }, - [105] = { - [sym_command_substitution] = STATE(183), + [sym_command_substitution] = STATE(184), [aux_sym__literal_repeat1] = STATE(185), - [sym_string] = STATE(183), - [sym_process_substitution] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_concatenation] = STATE(184), - [sym_expansion] = STATE(183), - [sym_word] = ACTIONS(774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(45), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(37), - [sym_raw_string] = ACTIONS(774), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(15), - [sym_ansii_c_string] = ACTIONS(774), + [sym_string] = STATE(184), + [sym_process_substitution] = STATE(184), + [sym_simple_expansion] = STATE(184), + [sym_string_expansion] = STATE(184), + [sym_concatenation] = STATE(183), + [sym_expansion] = STATE(184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), [anon_sym_GT_LPAREN] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(51), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(791), + [sym_word] = ACTIONS(793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(13), + [sym_ansii_c_string] = ACTIONS(791), [anon_sym_LT_LPAREN] = ACTIONS(17), - [sym__special_character] = ACTIONS(329), - [sym_regex] = ACTIONS(776), - [sym_comment] = ACTIONS(19), + [anon_sym_BQUOTE] = ACTIONS(15), + [sym_regex] = ACTIONS(795), + [sym__special_character] = ACTIONS(337), + [sym_number] = ACTIONS(793), + }, + [105] = { + [aux_sym_concatenation_repeat1] = STATE(53), + [anon_sym_AMP] = ACTIONS(797), + [anon_sym_AMP_GT_GT] = ACTIONS(797), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_LT_LT] = ACTIONS(797), + [anon_sym_BQUOTE] = ACTIONS(797), + [anon_sym_GT_LPAREN] = ACTIONS(797), + [sym_number] = ACTIONS(797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [sym__concat] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(797), + [sym_word] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(797), + [anon_sym_LT_AMP] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(797), + [anon_sym_EQ_TILDE] = ACTIONS(797), + [sym__special_character] = ACTIONS(797), + [anon_sym_LT_LT_DASH] = ACTIONS(797), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_SEMI] = ACTIONS(797), + [sym_raw_string] = ACTIONS(797), + [sym_file_descriptor] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(797), + [anon_sym_AMP_GT] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [anon_sym_LT_LT_LT] = ACTIONS(797), + [anon_sym_GT_AMP] = ACTIONS(797), + [ts_builtin_sym_end] = ACTIONS(799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(797), + [anon_sym_LT_LPAREN] = ACTIONS(797), + [sym_ansii_c_string] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_SEMI_SEMI] = ACTIONS(797), + [anon_sym_PIPE_AMP] = ACTIONS(797), }, [106] = { [aux_sym__literal_repeat1] = STATE(91), - [sym_word] = ACTIONS(778), - [anon_sym_AMP_GT_GT] = ACTIONS(778), - [anon_sym_DOLLAR] = ACTIONS(778), - [anon_sym_LT_LT] = ACTIONS(778), - [anon_sym_LT_LPAREN] = ACTIONS(778), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(778), - [anon_sym_PIPE] = ACTIONS(778), - [anon_sym_LT] = ACTIONS(778), - [anon_sym_LT_AMP] = ACTIONS(778), - [anon_sym_GT_GT] = ACTIONS(778), - [anon_sym_EQ_TILDE] = ACTIONS(778), - [sym__special_character] = ACTIONS(301), - [anon_sym_LT_LT_DASH] = ACTIONS(778), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(780), - [anon_sym_SEMI] = ACTIONS(778), - [sym_raw_string] = ACTIONS(778), - [sym_file_descriptor] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(778), - [anon_sym_GT] = ACTIONS(778), - [anon_sym_AMP_GT] = ACTIONS(778), - [anon_sym_EQ_EQ] = ACTIONS(778), - [anon_sym_DQUOTE] = ACTIONS(778), - [anon_sym_LT_LT_LT] = ACTIONS(778), - [anon_sym_GT_AMP] = ACTIONS(778), - [ts_builtin_sym_end] = ACTIONS(780), - [anon_sym_BQUOTE] = ACTIONS(778), - [anon_sym_GT_LPAREN] = ACTIONS(778), - [sym_ansii_c_string] = ACTIONS(778), - [anon_sym_AMP_AMP] = ACTIONS(778), - [anon_sym_SEMI_SEMI] = ACTIONS(778), - [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_LT_LT] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_GT_LPAREN] = ACTIONS(801), + [sym_number] = ACTIONS(801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(801), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [sym_word] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(801), + [anon_sym_GT_GT] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [sym__special_character] = ACTIONS(309), + [anon_sym_LT_LT_DASH] = ACTIONS(801), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [sym_raw_string] = ACTIONS(801), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_AMP_GT] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_LT_LT_LT] = ACTIONS(801), + [anon_sym_GT_AMP] = ACTIONS(801), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_LT_LPAREN] = ACTIONS(801), + [sym_ansii_c_string] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), + [anon_sym_SEMI_SEMI] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(801), }, [107] = { - [sym_command_substitution] = STATE(104), + [sym_command_substitution] = STATE(105), [aux_sym__literal_repeat1] = STATE(106), - [sym_string] = STATE(104), - [sym_process_substitution] = STATE(104), - [sym_simple_expansion] = STATE(104), - [sym_string_expansion] = STATE(104), + [sym_string] = STATE(105), + [sym_process_substitution] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), [aux_sym_command_repeat2] = STATE(186), [sym_concatenation] = STATE(186), - [sym_expansion] = STATE(104), - [sym_word] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_LT_LT] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(750), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_AMP] = ACTIONS(750), - [anon_sym_GT_GT] = ACTIONS(750), - [anon_sym_EQ_TILDE] = ACTIONS(339), - [sym__special_character] = ACTIONS(27), - [anon_sym_LT_LT_DASH] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(750), - [sym_raw_string] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_AMP_GT] = ACTIONS(750), - [anon_sym_EQ_EQ] = ACTIONS(339), - [ts_builtin_sym_end] = ACTIONS(752), - [anon_sym_LT_LT_LT] = ACTIONS(750), - [anon_sym_GT_AMP] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(337), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(750), - [anon_sym_SEMI_SEMI] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(750), + [sym_expansion] = STATE(105), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [sym_word] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(351), + [sym__special_character] = ACTIONS(31), + [anon_sym_LT_LT_DASH] = ACTIONS(771), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [sym_raw_string] = ACTIONS(347), + [sym_file_descriptor] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(351), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_SEMI_SEMI] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), }, [108] = { - [sym_compound_statement] = STATE(187), - [anon_sym_LBRACE] = ACTIONS(23), - [sym_comment] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(805), + [anon_sym_AMP] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_PIPE_PIPE] = ACTIONS(805), + [ts_builtin_sym_end] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_AMP_AMP] = ACTIONS(805), + [anon_sym_SEMI_SEMI] = ACTIONS(805), + [anon_sym_PIPE_AMP] = ACTIONS(805), }, [109] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_EQ_EQ] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [ts_builtin_sym_end] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [sym_command_substitution] = STATE(41), + [aux_sym__literal_repeat1] = STATE(42), + [sym_string] = STATE(41), + [aux_sym_declaration_command_repeat1] = STATE(109), + [sym_process_substitution] = STATE(41), + [sym_simple_expansion] = STATE(41), + [sym_subscript] = STATE(2444), + [sym_string_expansion] = STATE(41), + [sym_variable_assignment] = STATE(109), + [sym_concatenation] = STATE(109), + [sym_expansion] = STATE(41), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_number] = ACTIONS(820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(823), + [anon_sym_PIPE_PIPE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [sym_word] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_LT_AMP] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(809), + [sym__special_character] = ACTIONS(826), + [anon_sym_LT_LT_DASH] = ACTIONS(809), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(809), + [sym_raw_string] = ACTIONS(820), + [sym_variable_name] = ACTIONS(831), + [sym_file_descriptor] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(809), + [anon_sym_GT_AMP] = ACTIONS(809), + [ts_builtin_sym_end] = ACTIONS(829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(837), + [aux_sym__simple_variable_name_token1] = ACTIONS(840), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(809), }, [110] = { - [sym_command_substitution] = STATE(109), - [sym_simple_expansion] = STATE(109), - [sym_string_expansion] = STATE(109), - [sym_string] = STATE(109), - [sym_process_substitution] = STATE(109), - [sym_expansion] = STATE(109), - [sym_word] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(45), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(37), - [sym_raw_string] = ACTIONS(353), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(786), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [sym_ansii_c_string] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [sym__special_character] = ACTIONS(353), - [sym_comment] = ACTIONS(19), - }, - [111] = { - [aux_sym_concatenation_repeat1] = STATE(111), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_EQ_EQ] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [ts_builtin_sym_end] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), - }, - [112] = { - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LF] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(791), - [sym_file_descriptor] = ACTIONS(793), - [anon_sym_AMP_GT] = ACTIONS(791), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - }, - [113] = { [sym_command_substitution] = STATE(44), [aux_sym__literal_repeat1] = STATE(45), [sym_string] = STATE(44), - [aux_sym_declaration_command_repeat1] = STATE(113), + [aux_sym_unset_command_repeat1] = STATE(110), [sym_process_substitution] = STATE(44), [sym_simple_expansion] = STATE(44), - [sym_subscript] = STATE(2444), [sym_string_expansion] = STATE(44), - [sym_variable_assignment] = STATE(113), - [sym_concatenation] = STATE(113), + [sym_concatenation] = STATE(110), [sym_expansion] = STATE(44), - [sym_word] = ACTIONS(795), - [anon_sym_AMP_GT_GT] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(800), - [anon_sym_LT_LT] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_LT_AMP] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [sym__special_character] = ACTIONS(806), - [anon_sym_LT_LT_DASH] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(809), - [aux_sym__simple_variable_name_token1] = ACTIONS(812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(815), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(798), - [sym_raw_string] = ACTIONS(795), - [sym_variable_name] = ACTIONS(820), - [sym_file_descriptor] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_AMP_GT] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_LT_LT_LT] = ACTIONS(798), - [anon_sym_GT_AMP] = ACTIONS(798), - [ts_builtin_sym_end] = ACTIONS(818), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_ansii_c_string] = ACTIONS(795), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - }, - [114] = { - [sym_command_substitution] = STATE(47), - [aux_sym__literal_repeat1] = STATE(48), - [sym_string] = STATE(47), - [aux_sym_unset_command_repeat1] = STATE(114), - [sym_process_substitution] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_concatenation] = STATE(114), - [sym_expansion] = STATE(47), - [sym_word] = ACTIONS(829), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(837), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [sym__special_character] = ACTIONS(840), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(843), - [aux_sym__simple_variable_name_token1] = ACTIONS(846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_SEMI] = ACTIONS(832), - [sym_raw_string] = ACTIONS(829), - [sym_file_descriptor] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [ts_builtin_sym_end] = ACTIONS(852), - [anon_sym_BQUOTE] = ACTIONS(857), - [anon_sym_GT_LPAREN] = ACTIONS(837), - [sym_ansii_c_string] = ACTIONS(829), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - }, - [115] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [anon_sym_EQ_TILDE] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_AMP_GT_GT] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_LT_LT] = ACTIONS(843), + [anon_sym_BQUOTE] = ACTIONS(848), + [anon_sym_GT_LPAREN] = ACTIONS(851), + [sym_number] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(857), + [anon_sym_PIPE_PIPE] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [sym_word] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(843), + [anon_sym_LT_AMP] = ACTIONS(843), + [anon_sym_GT_GT] = ACTIONS(843), [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_EQ_EQ] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [ts_builtin_sym_end] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), - }, - [116] = { - [anon_sym_RPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(19), - }, - [117] = { - [anon_sym_LT_LT_DASH] = ACTIONS(866), - [anon_sym_AMP_GT_GT] = ACTIONS(866), - [anon_sym_LF] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(866), - [anon_sym_LT_LT] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_GT] = ACTIONS(866), - [sym_file_descriptor] = ACTIONS(868), - [anon_sym_AMP_GT] = ACTIONS(866), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(866), - [ts_builtin_sym_end] = ACTIONS(868), - [anon_sym_LT_LT_LT] = ACTIONS(866), - [anon_sym_PIPE] = ACTIONS(866), - [anon_sym_GT_AMP] = ACTIONS(866), - [anon_sym_LT] = ACTIONS(866), - [anon_sym_LT_AMP] = ACTIONS(866), - [anon_sym_GT_GT] = ACTIONS(866), - [anon_sym_AMP_AMP] = ACTIONS(866), - [anon_sym_SEMI_SEMI] = ACTIONS(866), - [anon_sym_PIPE_AMP] = ACTIONS(866), - }, - [118] = { - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym_variable_name] = ACTIONS(638), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), - }, - [119] = { - [sym_heredoc_body] = STATE(190), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(870), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym_variable_name] = ACTIONS(638), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [anon_sym_LT_LT_DASH] = ACTIONS(843), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(843), + [sym_raw_string] = ACTIONS(854), + [sym_file_descriptor] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_AMP_GT] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_LT_LT_LT] = ACTIONS(843), + [anon_sym_GT_AMP] = ACTIONS(843), + [ts_builtin_sym_end] = ACTIONS(863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(868), + [aux_sym__simple_variable_name_token1] = ACTIONS(871), + [anon_sym_LT_LPAREN] = ACTIONS(851), + [sym_ansii_c_string] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(843), + [anon_sym_SEMI_SEMI] = ACTIONS(843), + [anon_sym_PIPE_AMP] = ACTIONS(843), }, - [120] = { - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [111] = { + [anon_sym_AMP] = ACTIONS(874), [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(874), - [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), [anon_sym_PIPE_PIPE] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(874), + [sym__concat] = ACTIONS(876), [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), + [sym_word] = ACTIONS(874), [anon_sym_LT] = ACTIONS(874), [anon_sym_LT_AMP] = ACTIONS(874), [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), [anon_sym_AMP_AMP] = ACTIONS(874), [anon_sym_SEMI_SEMI] = ACTIONS(874), [anon_sym_PIPE_AMP] = ACTIONS(874), }, - [121] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_elif_clause] = STATE(197), - [sym_else_clause] = STATE(196), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_if_statement_repeat1] = STATE(197), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(198), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(878), - [anon_sym_else] = ACTIONS(880), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_elif] = ACTIONS(882), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_GT_LPAREN] = ACTIONS(79), + [112] = { + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_EQ_TILDE] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [ts_builtin_sym_end] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), }, - [122] = { - [sym_comment] = ACTIONS(19), - [anon_sym_then] = ACTIONS(884), - [anon_sym_do] = ACTIONS(884), + [113] = { + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, - [123] = { - [sym_comment] = ACTIONS(19), - [anon_sym_in] = ACTIONS(886), + [114] = { + [sym_command_substitution] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_string] = STATE(113), + [sym_process_substitution] = STATE(113), + [sym_expansion] = STATE(113), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(51), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(425), + [sym_word] = ACTIONS(427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(886), + [anon_sym_LT_LPAREN] = ACTIONS(17), + [sym_ansii_c_string] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(15), + [anon_sym_GT_LPAREN] = ACTIONS(17), + [sym__special_character] = ACTIONS(425), + [sym_number] = ACTIONS(427), }, - [124] = { - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_LF] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_SEMI_SEMI] = ACTIONS(888), - [sym_comment] = ACTIONS(3), + [115] = { + [aux_sym_concatenation_repeat1] = STATE(115), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), + }, + [116] = { + [aux_sym_concatenation_repeat1] = STATE(908), + [anon_sym_PERCENT] = ACTIONS(891), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(893), + [sym_raw_string] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(891), + [anon_sym_COLON_DASH] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [sym_number] = ACTIONS(891), + [anon_sym_COLON_QMARK] = ACTIONS(891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(893), + [anon_sym_BQUOTE] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [anon_sym_GT_LPAREN] = ACTIONS(893), + [sym__concat] = ACTIONS(895), + [sym_word] = ACTIONS(891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(893), + [anon_sym_LT_LPAREN] = ACTIONS(893), + [sym_ansii_c_string] = ACTIONS(893), + [anon_sym_COLON] = ACTIONS(891), + [sym__special_character] = ACTIONS(891), + }, + [117] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(190), + [sym_concatenation] = STATE(190), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(897), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(899), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_COLON_DASH] = ACTIONS(897), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(897), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(897), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(903), + }, + [118] = { + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_EQ_TILDE] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [ts_builtin_sym_end] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), + }, + [119] = { + [aux_sym__literal_repeat1] = STATE(911), + [anon_sym_PERCENT] = ACTIONS(909), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(911), + [sym_raw_string] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_COLON_DASH] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(909), + [sym_number] = ACTIONS(909), + [anon_sym_COLON_QMARK] = ACTIONS(909), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(911), + [anon_sym_BQUOTE] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_GT_LPAREN] = ACTIONS(911), + [sym_word] = ACTIONS(909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(911), + [anon_sym_LT_LPAREN] = ACTIONS(911), + [sym_ansii_c_string] = ACTIONS(911), + [anon_sym_COLON] = ACTIONS(909), + [sym__special_character] = ACTIONS(913), + }, + [120] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), + }, + [121] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(190), + [sym_concatenation] = STATE(190), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(897), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(899), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(901), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(897), + [sym__special_character] = ACTIONS(459), + }, + [122] = { + [anon_sym_EQ] = ACTIONS(921), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [123] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(196), + [sym_concatenation] = STATE(196), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(923), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(925), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(929), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(923), + [sym__special_character] = ACTIONS(459), + }, + [124] = { + [sym_command_substitution] = STATE(197), + [aux_sym__literal_repeat1] = STATE(198), + [sym_string] = STATE(197), + [sym_process_substitution] = STATE(197), + [sym_simple_expansion] = STATE(197), + [sym_string_expansion] = STATE(197), + [sym_concatenation] = STATE(199), + [sym_expansion] = STATE(197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(935), + [sym_word] = ACTIONS(937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(935), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(901), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(937), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [125] = { - [sym_comment] = ACTIONS(19), - [anon_sym_in] = ACTIONS(892), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(202), + [sym_concatenation] = STATE(202), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(949), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(951), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_COLON_DASH] = ACTIONS(949), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(949), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(949), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(955), }, [126] = { - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_LF] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_SEMI_SEMI] = ACTIONS(894), - [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_EQ_TILDE] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [ts_builtin_sym_end] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [127] = { - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [sym_test_operator] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_RPAREN] = ACTIONS(898), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(483), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [128] = { - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(900), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_RBRACK_RBRACK] = ACTIONS(900), - [sym_test_operator] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_RPAREN] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(961), + [sym_comment] = ACTIONS(41), }, [129] = { - [aux_sym__literal_repeat1] = STATE(68), - [sym_unary_expression] = STATE(204), - [sym_postfix_expression] = STATE(204), - [sym_string] = STATE(65), - [sym_process_substitution] = STATE(65), - [sym__expression] = STATE(204), - [sym_binary_expression] = STATE(204), - [sym_concatenation] = STATE(204), - [sym_expansion] = STATE(65), - [sym_command_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(204), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), + [anon_sym_LT_LT_DASH] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_AMP_GT_GT] = ACTIONS(963), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LT_LT] = ACTIONS(963), + [sym_file_descriptor] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_AMP_GT] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [ts_builtin_sym_end] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_GT_AMP] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_LT_AMP] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_SEMI_SEMI] = ACTIONS(963), + [anon_sym_PIPE_AMP] = ACTIONS(963), }, [130] = { - [anon_sym_PLUS_EQ] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(906), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(904), - [anon_sym_PIPE_PIPE] = ACTIONS(904), - [anon_sym_RBRACK_RBRACK] = ACTIONS(904), - [sym_test_operator] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_EQ_TILDE] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_DASH_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_AMP_AMP] = ACTIONS(904), + [sym_compound_statement] = STATE(204), + [anon_sym_LBRACE] = ACTIONS(27), + [sym_comment] = ACTIONS(41), }, [131] = { - [aux_sym__literal_repeat1] = STATE(68), - [sym_unary_expression] = STATE(204), - [sym_postfix_expression] = STATE(204), - [sym_string] = STATE(65), - [sym_process_substitution] = STATE(65), - [sym__expression] = STATE(204), - [sym_binary_expression] = STATE(204), - [sym_concatenation] = STATE(204), - [sym_expansion] = STATE(65), - [sym_command_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(204), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), - [sym_regex] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [132] = { - [anon_sym_LT_LT_DASH] = ACTIONS(910), - [anon_sym_AMP_GT_GT] = ACTIONS(910), - [anon_sym_LF] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(910), - [anon_sym_AMP] = ACTIONS(910), - [anon_sym_GT] = ACTIONS(910), - [sym_file_descriptor] = ACTIONS(912), - [anon_sym_AMP_GT] = ACTIONS(910), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(910), - [ts_builtin_sym_end] = ACTIONS(912), - [anon_sym_LT_LT_LT] = ACTIONS(910), - [anon_sym_PIPE] = ACTIONS(910), - [anon_sym_GT_AMP] = ACTIONS(910), - [anon_sym_LT] = ACTIONS(910), - [anon_sym_LT_AMP] = ACTIONS(910), - [anon_sym_GT_GT] = ACTIONS(910), - [anon_sym_AMP_AMP] = ACTIONS(910), - [anon_sym_SEMI_SEMI] = ACTIONS(910), - [anon_sym_PIPE_AMP] = ACTIONS(910), + [sym_heredoc_body] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(967), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [133] = { - [aux_sym_concatenation_repeat1] = STATE(905), - [sym_word] = ACTIONS(914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(916), - [sym_raw_string] = ACTIONS(916), - [anon_sym_COLON] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PERCENT] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(916), - [anon_sym_COLON_DASH] = ACTIONS(914), - [anon_sym_LT_LPAREN] = ACTIONS(916), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym__concat] = ACTIONS(918), - [anon_sym_BQUOTE] = ACTIONS(916), - [anon_sym_GT_LPAREN] = ACTIONS(916), - [sym_ansii_c_string] = ACTIONS(916), - [anon_sym_COLON_QMARK] = ACTIONS(914), - [sym__special_character] = ACTIONS(914), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [134] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [aux_sym__literal_repeat1] = STATE(386), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), + [sym_subscript] = STATE(2407), + [sym_concatenation] = STATE(389), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_elif_clause] = STATE(212), + [sym_else_clause] = STATE(211), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), + [sym_file_redirect] = STATE(391), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_if_statement_repeat1] = STATE(212), + [aux_sym_command_repeat1] = STATE(391), + [aux_sym__statements2] = STATE(213), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), + [sym_command_name] = STATE(392), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(975), + [anon_sym_else] = ACTIONS(977), + [sym_number] = ACTIONS(75), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_elif] = ACTIONS(979), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_LT_LPAREN] = ACTIONS(73), }, [135] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(208), - [sym_concatenation] = STATE(208), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(928), - [anon_sym_COLON_DASH] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(924), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(930), + [anon_sym_do] = ACTIONS(981), + [anon_sym_then] = ACTIONS(981), + [sym_comment] = ACTIONS(41), }, [136] = { - [aux_sym__literal_repeat1] = STATE(911), - [sym_word] = ACTIONS(932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(934), - [sym_raw_string] = ACTIONS(934), - [anon_sym_COLON] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(934), - [anon_sym_COLON_DASH] = ACTIONS(932), - [anon_sym_LT_LPAREN] = ACTIONS(934), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(934), - [anon_sym_BQUOTE] = ACTIONS(934), - [anon_sym_GT_LPAREN] = ACTIONS(934), - [sym_ansii_c_string] = ACTIONS(934), - [anon_sym_COLON_QMARK] = ACTIONS(932), - [sym__special_character] = ACTIONS(936), + [anon_sym_in] = ACTIONS(983), + [sym_comment] = ACTIONS(41), }, [137] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(987), }, [138] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(208), - [sym_concatenation] = STATE(208), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_COLON_DASH] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(924), - [sym__special_character] = ACTIONS(517), + [anon_sym_in] = ACTIONS(989), + [sym_comment] = ACTIONS(41), }, [139] = { - [anon_sym_EQ] = ACTIONS(944), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(993), + [anon_sym_SEMI_SEMI] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(993), }, [140] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(214), - [sym_concatenation] = STATE(214), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(946), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(946), - [anon_sym_PERCENT] = ACTIONS(946), - [anon_sym_POUND] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(952), - [anon_sym_COLON_DASH] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(946), - [sym__special_character] = ACTIONS(517), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(995), + [sym_test_operator] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_AMP_AMP] = ACTIONS(541), }, [141] = { - [sym_command_substitution] = STATE(215), - [aux_sym__literal_repeat1] = STATE(216), - [sym_string] = STATE(215), - [sym_process_substitution] = STATE(215), - [sym_simple_expansion] = STATE(215), - [sym_string_expansion] = STATE(215), - [sym_concatenation] = STATE(217), - [sym_expansion] = STATE(215), - [sym_word] = ACTIONS(954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(954), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(954), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(926), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_RPAREN_RPAREN] = ACTIONS(997), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_RBRACK_RBRACK] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(999), + [sym_test_operator] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_AMP_AMP] = ACTIONS(541), }, [142] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [ts_builtin_sym_end] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [aux_sym__literal_repeat1] = STATE(73), + [sym_unary_expression] = STATE(219), + [sym_postfix_expression] = STATE(219), + [sym_string] = STATE(71), + [sym_process_substitution] = STATE(71), + [sym__expression] = STATE(219), + [sym_binary_expression] = STATE(219), + [sym_concatenation] = STATE(219), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(219), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [143] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(220), - [sym_concatenation] = STATE(220), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(978), - [anon_sym_COLON_DASH] = ACTIONS(974), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(974), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1001), + [anon_sym_PIPE_PIPE] = ACTIONS(1001), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_EQ_TILDE] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1003), + [sym_test_operator] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1001), }, [144] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [aux_sym__literal_repeat1] = STATE(73), + [sym_unary_expression] = STATE(219), + [sym_postfix_expression] = STATE(219), + [sym_string] = STATE(71), + [sym_process_substitution] = STATE(71), + [sym__expression] = STATE(219), + [sym_binary_expression] = STATE(219), + [sym_concatenation] = STATE(219), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(219), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), + [sym_regex] = ACTIONS(1005), }, [145] = { - [aux_sym_concatenation_repeat1] = STATE(937), - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [sym__concat] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_LT_LT_DASH] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_AMP_GT_GT] = ACTIONS(1007), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1007), + [sym_file_descriptor] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_AMP_GT] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1007), + [ts_builtin_sym_end] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_GT_AMP] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_LT_AMP] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1007), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_SEMI_SEMI] = ACTIONS(1007), + [anon_sym_PIPE_AMP] = ACTIONS(1007), }, [146] = { [sym_command_substitution] = STATE(221), @@ -11415,2098 +11658,2141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(224), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [sym_ansii_c_string] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1002), - [sym__special_character] = ACTIONS(1004), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [sym_ansii_c_string] = ACTIONS(1015), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1027), + [sym__special_character] = ACTIONS(1029), + [sym_number] = ACTIONS(1017), + [anon_sym_GT_LPAREN] = ACTIONS(1023), }, [147] = { - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [ts_builtin_sym_end] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [148] = { - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(1006), - [anon_sym_AMP_GT_GT] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1006), - [anon_sym_LT_LPAREN] = ACTIONS(1006), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_AMP] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(1006), - [sym__special_character] = ACTIONS(1008), - [anon_sym_LT_LT_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_raw_string] = ACTIONS(1006), - [sym_variable_name] = ACTIONS(1010), - [sym_file_descriptor] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_AMP_GT] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [anon_sym_LT_LT_LT] = ACTIONS(1006), - [anon_sym_GT_AMP] = ACTIONS(1006), - [ts_builtin_sym_end] = ACTIONS(1010), - [anon_sym_BQUOTE] = ACTIONS(1006), - [anon_sym_GT_LPAREN] = ACTIONS(1006), - [sym_ansii_c_string] = ACTIONS(1006), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_SEMI_SEMI] = ACTIONS(1006), - [anon_sym_PIPE_AMP] = ACTIONS(1006), + [aux_sym_concatenation_repeat1] = STATE(940), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [sym__concat] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [ts_builtin_sym_end] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [149] = { - [aux_sym_concatenation_repeat1] = STATE(2432), - [anon_sym_RBRACK] = ACTIONS(1012), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1014), + [aux_sym__literal_repeat1] = STATE(943), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_number] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [sym_word] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [sym__special_character] = ACTIONS(1039), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [sym_variable_name] = ACTIONS(1041), + [sym_file_descriptor] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [ts_builtin_sym_end] = ACTIONS(1041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [sym_ansii_c_string] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), }, [150] = { - [aux_sym__literal_repeat1] = STATE(975), - [anon_sym_RBRACK] = ACTIONS(1016), - [sym__concat] = ACTIONS(1018), - [sym__special_character] = ACTIONS(1020), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(2432), + [anon_sym_RBRACK] = ACTIONS(1043), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(1045), }, [151] = { - [anon_sym_RBRACK] = ACTIONS(1012), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1022), + [aux_sym__literal_repeat1] = STATE(975), + [anon_sym_RBRACK] = ACTIONS(1047), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(1049), + [sym__special_character] = ACTIONS(1051), }, [152] = { - [aux_sym_concatenation_repeat1] = STATE(546), - [sym_word] = ACTIONS(1024), - [anon_sym_AMP_GT_GT] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_LT_LPAREN] = ACTIONS(1024), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_AMP] = ACTIONS(1024), - [anon_sym_GT_GT] = ACTIONS(1024), - [sym__special_character] = ACTIONS(1024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), - [sym_raw_string] = ACTIONS(1024), - [sym_variable_name] = ACTIONS(1024), - [sym_file_descriptor] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_AMP_GT] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1024), - [anon_sym_GT_AMP] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [anon_sym_GT_LPAREN] = ACTIONS(1024), - [sym_ansii_c_string] = ACTIONS(1024), + [anon_sym_RBRACK] = ACTIONS(1043), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(1053), }, [153] = { - [aux_sym__literal_repeat1] = STATE(564), - [sym_word] = ACTIONS(1028), - [anon_sym_AMP_GT_GT] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_LT_LPAREN] = ACTIONS(1028), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(1030), - [anon_sym_LT_AMP] = ACTIONS(1028), - [anon_sym_GT_GT] = ACTIONS(1028), - [sym__special_character] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), - [sym_raw_string] = ACTIONS(1028), - [sym_variable_name] = ACTIONS(1028), - [sym_file_descriptor] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_GT] = ACTIONS(1030), - [anon_sym_AMP_GT] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1028), - [anon_sym_GT_AMP] = ACTIONS(1028), - [anon_sym_BQUOTE] = ACTIONS(1028), - [anon_sym_GT_LPAREN] = ACTIONS(1028), - [sym_ansii_c_string] = ACTIONS(1028), + [aux_sym_concatenation_repeat1] = STATE(558), + [anon_sym_AMP_GT_GT] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1055), + [anon_sym_GT_LPAREN] = ACTIONS(1055), + [sym_number] = ACTIONS(1057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), + [sym__concat] = ACTIONS(365), + [sym_word] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_LT_AMP] = ACTIONS(1055), + [anon_sym_GT_GT] = ACTIONS(1055), + [sym__special_character] = ACTIONS(1055), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1055), + [sym_variable_name] = ACTIONS(1055), + [sym_file_descriptor] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_AMP_GT] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1055), + [anon_sym_GT_AMP] = ACTIONS(1055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1055), + [anon_sym_LT_LPAREN] = ACTIONS(1055), + [sym_ansii_c_string] = ACTIONS(1055), }, [154] = { - [sym_word] = ACTIONS(1024), - [anon_sym_AMP_GT_GT] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_LT_LPAREN] = ACTIONS(1024), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_AMP] = ACTIONS(1024), - [anon_sym_GT_GT] = ACTIONS(1024), - [sym__special_character] = ACTIONS(1024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), - [sym_raw_string] = ACTIONS(1024), - [sym_variable_name] = ACTIONS(1024), - [sym_file_descriptor] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_AMP_GT] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1024), - [anon_sym_GT_AMP] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [anon_sym_GT_LPAREN] = ACTIONS(1024), - [sym_ansii_c_string] = ACTIONS(1024), + [aux_sym__literal_repeat1] = STATE(564), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_GT_LPAREN] = ACTIONS(1059), + [sym_number] = ACTIONS(1061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1059), + [sym_word] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_GT] = ACTIONS(1059), + [sym__special_character] = ACTIONS(371), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1059), + [sym_variable_name] = ACTIONS(1059), + [sym_file_descriptor] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_AMP_GT] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1059), + [anon_sym_LT_LPAREN] = ACTIONS(1059), + [sym_ansii_c_string] = ACTIONS(1059), }, [155] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP_GT_GT] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1055), + [anon_sym_GT_LPAREN] = ACTIONS(1055), + [sym_number] = ACTIONS(1057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), + [sym_word] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_LT_AMP] = ACTIONS(1055), + [anon_sym_GT_GT] = ACTIONS(1055), + [sym__special_character] = ACTIONS(1055), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1055), + [sym_variable_name] = ACTIONS(1055), + [sym_file_descriptor] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_AMP_GT] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1055), + [anon_sym_GT_AMP] = ACTIONS(1055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1055), + [anon_sym_LT_LPAREN] = ACTIONS(1055), + [sym_ansii_c_string] = ACTIONS(1055), }, [156] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_EQ_TILDE] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_EQ_EQ] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [ts_builtin_sym_end] = ACTIONS(1038), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_EQ_TILDE] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_EQ_EQ] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [ts_builtin_sym_end] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [157] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [sym__concat] = ACTIONS(1042), - [anon_sym_BQUOTE] = ACTIONS(1040), - [sym__string_content] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1067), + [sym__concat] = ACTIONS(1069), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), + [sym__string_content] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1067), + [anon_sym_BQUOTE] = ACTIONS(1067), }, [158] = { - [anon_sym_DOLLAR] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1067), + [anon_sym_BQUOTE] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1040), - [sym__string_content] = ACTIONS(1040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), + [sym__string_content] = ACTIONS(1067), }, [159] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [160] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1049), - [anon_sym_DQUOTE] = ACTIONS(1040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1052), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1067), + [anon_sym_BQUOTE] = ACTIONS(1079), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1055), - [sym__string_content] = ACTIONS(1058), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [sym__string_content] = ACTIONS(1085), }, [161] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [162] = { - [sym_do_group] = STATE(233), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(619), + [sym_command_substitution] = STATE(559), + [sym_unary_expression] = STATE(234), + [sym_postfix_expression] = STATE(234), + [sym_string] = STATE(559), + [aux_sym__literal_repeat1] = STATE(561), + [sym_process_substitution] = STATE(559), + [sym_parenthesized_expression] = STATE(234), + [sym_simple_expansion] = STATE(559), + [sym_string_expansion] = STATE(559), + [sym__expression] = STATE(234), + [sym_binary_expression] = STATE(234), + [sym_concatenation] = STATE(234), + [sym_expansion] = STATE(559), + [anon_sym_LPAREN] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(615), + [sym_test_operator] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_GT_LPAREN] = ACTIONS(619), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_word] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_LT_LPAREN] = ACTIONS(619), + [sym_ansii_c_string] = ACTIONS(609), + [sym__special_character] = ACTIONS(627), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1088), }, [163] = { + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [sym_test_operator] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_EQ_TILDE] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), + }, + [164] = { [sym_command_substitution] = STATE(482), [aux_sym__literal_repeat1] = STATE(484), [sym_string] = STATE(482), [sym_process_substitution] = STATE(482), - [aux_sym_for_statement_repeat1] = STATE(234), + [aux_sym_for_statement_repeat1] = STATE(236), [sym_simple_expansion] = STATE(482), [sym_string_expansion] = STATE(482), - [sym_concatenation] = STATE(234), - [sym_expansion] = STATE(482), - [sym_word] = ACTIONS(1061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [sym_raw_string] = ACTIONS(1061), - [anon_sym_BQUOTE] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(1071), - [sym_ansii_c_string] = ACTIONS(1061), - [anon_sym_GT_LPAREN] = ACTIONS(1073), - [anon_sym_LT_LPAREN] = ACTIONS(1073), - [sym__special_character] = ACTIONS(1075), - [sym_comment] = ACTIONS(19), - }, - [164] = { - [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(236), - [sym_postfix_expression] = STATE(236), - [sym_string] = STATE(559), - [aux_sym__literal_repeat1] = STATE(561), - [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(236), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(236), - [sym_binary_expression] = STATE(236), [sym_concatenation] = STATE(236), - [sym_expansion] = STATE(559), - [sym_word] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(603), - [sym_raw_string] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(1077), - [anon_sym_LT_LPAREN] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_test_operator] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(615), - [anon_sym_GT_LPAREN] = ACTIONS(611), - [sym_ansii_c_string] = ACTIONS(597), - [sym__special_character] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(1077), + [sym_expansion] = STATE(482), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1102), + [sym_word] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_ansii_c_string] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1110), + [anon_sym_BQUOTE] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_number] = ACTIONS(1104), + [anon_sym_GT_LPAREN] = ACTIONS(1110), }, [165] = { - [anon_sym_BANG_EQ] = ACTIONS(1079), - [anon_sym_PLUS_EQ] = ACTIONS(1079), - [anon_sym_LF] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_AMP] = ACTIONS(1081), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [sym_test_operator] = ACTIONS(1079), - [anon_sym_EQ_TILDE] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_AMP_AMP] = ACTIONS(1079), - [anon_sym_SEMI_SEMI] = ACTIONS(1081), - [anon_sym_DASH_EQ] = ACTIONS(1079), + [sym_do_group] = STATE(237), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(635), }, [166] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [aux_sym__statements2] = STATE(239), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [anon_sym_done] = ACTIONS(1087), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_done] = ACTIONS(1116), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [167] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LF] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_GT] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1091), - [anon_sym_AMP_GT] = ACTIONS(1089), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [ts_builtin_sym_end] = ACTIONS(1091), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_SEMI_SEMI] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_LT_LT_DASH] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_AMP_GT_GT] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_LT_LT] = ACTIONS(1118), + [sym_file_descriptor] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1118), + [anon_sym_AMP_GT] = ACTIONS(1118), + [anon_sym_PIPE_PIPE] = ACTIONS(1118), + [ts_builtin_sym_end] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1118), + [anon_sym_PIPE] = ACTIONS(1118), + [anon_sym_GT_AMP] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1118), + [anon_sym_LT_AMP] = ACTIONS(1118), + [anon_sym_GT_GT] = ACTIONS(1118), + [anon_sym_AMP_AMP] = ACTIONS(1118), + [anon_sym_SEMI_SEMI] = ACTIONS(1118), + [anon_sym_PIPE_AMP] = ACTIONS(1118), }, [168] = { [sym_heredoc_redirect] = STATE(98), [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LF] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [sym_file_descriptor] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [ts_builtin_sym_end] = ACTIONS(1095), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), + [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1122), + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_AMP_GT] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [ts_builtin_sym_end] = ACTIONS(1124), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_GT_AMP] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_LT_AMP] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1122), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_PIPE_AMP] = ACTIONS(1122), }, [169] = { [sym_heredoc_redirect] = STATE(98), [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_GT] = ACTIONS(1093), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [ts_builtin_sym_end] = ACTIONS(1095), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1122), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_LT_AMP] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1122), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_AMP_GT] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_GT_AMP] = ACTIONS(1122), + [ts_builtin_sym_end] = ACTIONS(1124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_PIPE_AMP] = ACTIONS(1122), }, [170] = { - [anon_sym_AMP] = ACTIONS(1097), - [ts_builtin_sym_end] = ACTIONS(1099), - [anon_sym_LF] = ACTIONS(1099), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_SEMI_SEMI] = ACTIONS(1097), + [ts_builtin_sym_end] = ACTIONS(1126), [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), }, [171] = { [sym_command_substitution] = STATE(242), [sym_simple_expansion] = STATE(242), [sym_expansion] = STATE(242), [aux_sym_heredoc_body_repeat1] = STATE(242), - [anon_sym_DOLLAR] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), - [sym__heredoc_body_end] = ACTIONS(1107), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1109), - [sym__heredoc_body_middle] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1134), + [sym__heredoc_body_end] = ACTIONS(1136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), + [sym__heredoc_body_middle] = ACTIONS(1140), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(1113), - [anon_sym_AMP] = ACTIONS(1115), - [anon_sym_LF] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_SEMI_SEMI] = ACTIONS(1115), + [ts_builtin_sym_end] = ACTIONS(1142), [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), }, [173] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1119), - [anon_sym_AMP_GT_GT] = ACTIONS(1119), - [anon_sym_LF] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_LT_LT] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_GT] = ACTIONS(1119), - [sym_file_descriptor] = ACTIONS(1121), - [anon_sym_AMP_GT] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1119), - [ts_builtin_sym_end] = ACTIONS(1121), - [anon_sym_LT_LT_LT] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1119), - [anon_sym_GT_AMP] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1119), - [anon_sym_LT_AMP] = ACTIONS(1119), - [anon_sym_GT_GT] = ACTIONS(1119), - [anon_sym_AMP_AMP] = ACTIONS(1119), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_PIPE_AMP] = ACTIONS(1119), + [anon_sym_LT_LT_DASH] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_AMP_GT_GT] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LT_LT] = ACTIONS(1148), + [sym_file_descriptor] = ACTIONS(1150), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_AMP_GT] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [ts_builtin_sym_end] = ACTIONS(1150), + [anon_sym_LT_LT_LT] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_GT_AMP] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_LT_AMP] = ACTIONS(1148), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), }, [174] = { [sym_heredoc_redirect] = STATE(98), [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_LT_LT_DASH] = ACTIONS(1123), - [anon_sym_AMP_GT_GT] = ACTIONS(1123), - [anon_sym_LF] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(1123), - [sym_file_descriptor] = ACTIONS(1125), - [anon_sym_AMP_GT] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [ts_builtin_sym_end] = ACTIONS(1125), - [anon_sym_LT_LT_LT] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_GT_AMP] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_LT_AMP] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_SEMI_SEMI] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(1154), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(329), }, [175] = { [sym_heredoc_redirect] = STATE(98), [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1123), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(1123), - [anon_sym_GT_AMP] = ACTIONS(323), - [ts_builtin_sym_end] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_SEMI_SEMI] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(329), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(331), + [ts_builtin_sym_end] = ACTIONS(1154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(329), }, [176] = { - [aux_sym_concatenation_repeat1] = STATE(1001), - [anon_sym_LT_LT_DASH] = ACTIONS(1127), - [anon_sym_AMP_GT_GT] = ACTIONS(1127), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1127), - [anon_sym_LT_LT] = ACTIONS(1127), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1127), - [sym_file_descriptor] = ACTIONS(1129), - [anon_sym_AMP_GT] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1127), - [ts_builtin_sym_end] = ACTIONS(1129), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_GT_AMP] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_LT_AMP] = ACTIONS(1127), - [anon_sym_GT_GT] = ACTIONS(1127), - [sym__concat] = ACTIONS(1131), - [anon_sym_AMP_AMP] = ACTIONS(1127), - [anon_sym_SEMI_SEMI] = ACTIONS(1127), - [anon_sym_PIPE_AMP] = ACTIONS(1127), + [aux_sym_concatenation_repeat1] = STATE(1004), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_LT_LT] = ACTIONS(1156), + [sym_file_descriptor] = ACTIONS(1158), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_AMP_GT] = ACTIONS(1156), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [ts_builtin_sym_end] = ACTIONS(1158), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_GT_AMP] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_LT_AMP] = ACTIONS(1156), + [anon_sym_GT_GT] = ACTIONS(1156), + [sym__concat] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(1156), }, [177] = { [aux_sym__literal_repeat1] = STATE(1039), - [anon_sym_LT_LT_DASH] = ACTIONS(1133), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LF] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [sym_file_descriptor] = ACTIONS(1135), - [anon_sym_AMP_GT] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [ts_builtin_sym_end] = ACTIONS(1135), - [anon_sym_LT_LT_LT] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [sym__special_character] = ACTIONS(1137), - [anon_sym_SEMI_SEMI] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), + [anon_sym_LT_LT_DASH] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_AMP_GT_GT] = ACTIONS(1162), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_LT_LT] = ACTIONS(1162), + [sym_file_descriptor] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_AMP_GT] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [ts_builtin_sym_end] = ACTIONS(1164), + [anon_sym_LT_LT_LT] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_GT_AMP] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_LT_AMP] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [sym__special_character] = ACTIONS(1166), + [anon_sym_SEMI_SEMI] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), }, [178] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1127), - [anon_sym_AMP_GT_GT] = ACTIONS(1127), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1127), - [anon_sym_LT_LT] = ACTIONS(1127), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1127), - [sym_file_descriptor] = ACTIONS(1129), - [anon_sym_AMP_GT] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1127), - [ts_builtin_sym_end] = ACTIONS(1129), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_GT_AMP] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_LT_AMP] = ACTIONS(1127), - [anon_sym_GT_GT] = ACTIONS(1127), - [anon_sym_AMP_AMP] = ACTIONS(1127), - [anon_sym_SEMI_SEMI] = ACTIONS(1127), - [anon_sym_PIPE_AMP] = ACTIONS(1127), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_LT_LT] = ACTIONS(1156), + [sym_file_descriptor] = ACTIONS(1158), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_AMP_GT] = ACTIONS(1156), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [ts_builtin_sym_end] = ACTIONS(1158), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_GT_AMP] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_LT_AMP] = ACTIONS(1156), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(1156), }, [179] = { [sym_heredoc_redirect] = STATE(179), [aux_sym_redirected_statement_repeat1] = STATE(179), [sym_herestring_redirect] = STATE(179), [sym_file_redirect] = STATE(179), - [anon_sym_LT_LT_DASH] = ACTIONS(1139), - [anon_sym_AMP_GT_GT] = ACTIONS(1142), - [anon_sym_LF] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_GT] = ACTIONS(1142), - [sym_file_descriptor] = ACTIONS(1149), - [anon_sym_AMP_GT] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1147), - [ts_builtin_sym_end] = ACTIONS(1145), - [anon_sym_LT_LT_LT] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1147), - [anon_sym_GT_AMP] = ACTIONS(1142), - [anon_sym_LT] = ACTIONS(1142), - [anon_sym_LT_AMP] = ACTIONS(1142), - [anon_sym_GT_GT] = ACTIONS(1142), - [anon_sym_AMP_AMP] = ACTIONS(1147), - [anon_sym_SEMI_SEMI] = ACTIONS(1147), - [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_AMP_GT_GT] = ACTIONS(1173), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LT_LT] = ACTIONS(1168), + [sym_file_descriptor] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1173), + [anon_sym_AMP_GT] = ACTIONS(1173), + [anon_sym_PIPE_PIPE] = ACTIONS(1171), + [ts_builtin_sym_end] = ACTIONS(1176), + [anon_sym_LT_LT_LT] = ACTIONS(1181), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_LT_AMP] = ACTIONS(1173), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_SEMI_SEMI] = ACTIONS(1171), + [anon_sym_PIPE_AMP] = ACTIONS(1171), }, [180] = { - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [ts_builtin_sym_end] = ACTIONS(1113), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(1142), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [181] = { [sym_heredoc_body] = STATE(244), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(640), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(642), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [ts_builtin_sym_end] = ACTIONS(1113), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(658), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(1142), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [182] = { - [sym_command_substitution] = STATE(104), + [sym_command_substitution] = STATE(105), [aux_sym__literal_repeat1] = STATE(106), - [sym_string] = STATE(104), - [sym_process_substitution] = STATE(104), - [sym_simple_expansion] = STATE(104), - [sym_string_expansion] = STATE(104), + [sym_string] = STATE(105), + [sym_process_substitution] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), [aux_sym_command_repeat2] = STATE(186), [sym_concatenation] = STATE(186), - [sym_expansion] = STATE(104), - [sym_word] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(15), - [anon_sym_LT_LT] = ACTIONS(1155), - [anon_sym_LT_LPAREN] = ACTIONS(337), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [anon_sym_PIPE] = ACTIONS(1155), - [anon_sym_LT] = ACTIONS(1155), - [anon_sym_LT_AMP] = ACTIONS(1155), - [anon_sym_GT_GT] = ACTIONS(1155), - [anon_sym_EQ_TILDE] = ACTIONS(339), - [sym__special_character] = ACTIONS(27), - [anon_sym_LT_LT_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1155), - [sym_raw_string] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_GT] = ACTIONS(1155), - [anon_sym_AMP_GT] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(339), - [ts_builtin_sym_end] = ACTIONS(1157), - [anon_sym_LT_LT_LT] = ACTIONS(1155), - [anon_sym_GT_AMP] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(337), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(1155), - [anon_sym_SEMI_SEMI] = ACTIONS(1155), - [anon_sym_PIPE_AMP] = ACTIONS(1155), + [sym_expansion] = STATE(105), + [anon_sym_PIPE_AMP] = ACTIONS(1184), + [anon_sym_AMP_GT_GT] = ACTIONS(1184), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_LT_LT] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [sym_word] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_LT_AMP] = ACTIONS(1184), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_EQ_TILDE] = ACTIONS(351), + [sym__special_character] = ACTIONS(31), + [anon_sym_LT_LT_DASH] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(347), + [sym_file_descriptor] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1184), + [anon_sym_AMP_GT] = ACTIONS(1184), + [anon_sym_EQ_EQ] = ACTIONS(351), + [ts_builtin_sym_end] = ACTIONS(1186), + [anon_sym_LT_LT_LT] = ACTIONS(1184), + [anon_sym_GT_AMP] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(1184), + [anon_sym_SEMI_SEMI] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), }, [183] = { - [aux_sym_concatenation_repeat1] = STATE(39), - [sym_word] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1159), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [sym__concat] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_LF] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_file_descriptor] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT] = ACTIONS(1159), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [ts_builtin_sym_end] = ACTIONS(1161), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), - [sym_ansii_c_string] = ACTIONS(1159), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1188), + [anon_sym_GT_LPAREN] = ACTIONS(1188), + [sym_number] = ACTIONS(1188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [sym_word] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1188), + [sym__special_character] = ACTIONS(1188), + [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(1188), + [sym_file_descriptor] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), + [ts_builtin_sym_end] = ACTIONS(1190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), + [anon_sym_LT_LPAREN] = ACTIONS(1188), + [sym_ansii_c_string] = ACTIONS(1188), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [anon_sym_PIPE_AMP] = ACTIONS(1188), }, [184] = { - [sym_word] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1159), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_LF] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_file_descriptor] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT] = ACTIONS(1159), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [ts_builtin_sym_end] = ACTIONS(1161), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), - [sym_ansii_c_string] = ACTIONS(1159), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), + [aux_sym_concatenation_repeat1] = STATE(53), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1188), + [anon_sym_GT_LPAREN] = ACTIONS(1188), + [sym_number] = ACTIONS(1188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [sym__concat] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(1188), + [sym_word] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1188), + [sym__special_character] = ACTIONS(1188), + [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(1188), + [sym_file_descriptor] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), + [ts_builtin_sym_end] = ACTIONS(1190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), + [anon_sym_LT_LPAREN] = ACTIONS(1188), + [sym_ansii_c_string] = ACTIONS(1188), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [anon_sym_PIPE_AMP] = ACTIONS(1188), }, [185] = { [aux_sym__literal_repeat1] = STATE(91), - [sym_word] = ACTIONS(1163), - [anon_sym_AMP_GT_GT] = ACTIONS(1163), - [anon_sym_DOLLAR] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_LT_LPAREN] = ACTIONS(1163), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_LT_AMP] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [sym__special_character] = ACTIONS(301), - [anon_sym_LT_LT_DASH] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_LF] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1163), - [sym_raw_string] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1163), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [anon_sym_LT_LT_LT] = ACTIONS(1163), - [anon_sym_GT_AMP] = ACTIONS(1163), - [ts_builtin_sym_end] = ACTIONS(1165), - [anon_sym_BQUOTE] = ACTIONS(1163), - [anon_sym_GT_LPAREN] = ACTIONS(1163), - [sym_ansii_c_string] = ACTIONS(1163), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1163), - [anon_sym_PIPE_AMP] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_GT_LPAREN] = ACTIONS(1192), + [sym_number] = ACTIONS(1192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [sym_word] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_AMP] = ACTIONS(1192), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_EQ_TILDE] = ACTIONS(1192), + [sym__special_character] = ACTIONS(309), + [anon_sym_LT_LT_DASH] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [sym_raw_string] = ACTIONS(1192), + [sym_file_descriptor] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_AMP_GT] = ACTIONS(1192), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_GT_AMP] = ACTIONS(1192), + [ts_builtin_sym_end] = ACTIONS(1194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1192), + [sym_ansii_c_string] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_SEMI_SEMI] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), }, [186] = { - [sym_command_substitution] = STATE(104), + [sym_command_substitution] = STATE(105), [aux_sym__literal_repeat1] = STATE(106), - [sym_string] = STATE(104), - [sym_process_substitution] = STATE(104), - [sym_simple_expansion] = STATE(104), - [sym_string_expansion] = STATE(104), + [sym_string] = STATE(105), + [sym_process_substitution] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), [aux_sym_command_repeat2] = STATE(186), [sym_concatenation] = STATE(186), - [sym_expansion] = STATE(104), - [sym_word] = ACTIONS(1167), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1170), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1176), - [sym__special_character] = ACTIONS(1179), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1182), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1185), - [anon_sym_LF] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1167), - [sym_file_descriptor] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT] = ACTIONS(1159), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [ts_builtin_sym_end] = ACTIONS(1161), - [anon_sym_BQUOTE] = ACTIONS(1191), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_ansii_c_string] = ACTIONS(1167), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), + [sym_expansion] = STATE(105), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1199), + [anon_sym_GT_LPAREN] = ACTIONS(1202), + [sym_number] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [sym_word] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [sym__special_character] = ACTIONS(1214), + [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(1205), + [sym_file_descriptor] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), + [ts_builtin_sym_end] = ACTIONS(1190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1220), + [anon_sym_LT_LPAREN] = ACTIONS(1202), + [sym_ansii_c_string] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [anon_sym_PIPE_AMP] = ACTIONS(1188), }, [187] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1194), - [anon_sym_AMP_GT_GT] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), - [sym_file_descriptor] = ACTIONS(1196), - [anon_sym_AMP_GT] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [ts_builtin_sym_end] = ACTIONS(1196), - [anon_sym_LT_LT_LT] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_GT_AMP] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_LT_AMP] = ACTIONS(1194), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_SEMI_SEMI] = ACTIONS(1194), - [anon_sym_PIPE_AMP] = ACTIONS(1194), + [sym_string] = STATE(49), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym__] = ACTIONS(175), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(175), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(175), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(175), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [sym__special_character] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1225), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [sym_raw_string] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1225), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [ts_builtin_sym_end] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(175), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [sym_ansii_c_string] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [188] = { - [sym_string] = STATE(52), - [sym_word] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(177), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1200), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(177), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(177), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1200), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(347), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [ts_builtin_sym_end] = ACTIONS(1202), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(177), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [ts_builtin_sym_end] = ACTIONS(1233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [189] = { - [sym_compound_statement] = STATE(245), - [anon_sym_LBRACE] = ACTIONS(23), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(246), + [sym_concatenation] = STATE(246), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1237), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_COLON_DASH] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(1235), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(1235), + [sym__special_character] = ACTIONS(459), }, [190] = { - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_LF] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_SEMI_SEMI] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [191] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1210), - [anon_sym_AMP_GT_GT] = ACTIONS(1210), - [anon_sym_LF] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_LT_LT] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [sym_file_descriptor] = ACTIONS(1212), - [anon_sym_AMP_GT] = ACTIONS(1210), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1210), - [ts_builtin_sym_end] = ACTIONS(1212), - [anon_sym_LT_LT_LT] = ACTIONS(1210), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_GT_AMP] = ACTIONS(1210), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_LT_AMP] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(1210), - [anon_sym_AMP_AMP] = ACTIONS(1210), - [anon_sym_SEMI_SEMI] = ACTIONS(1210), - [anon_sym_PIPE_AMP] = ACTIONS(1210), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1244), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_COLON_DASH] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [sym_number] = ACTIONS(1255), + [anon_sym_COLON_QMARK] = ACTIONS(1241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1264), + [anon_sym_GT_LPAREN] = ACTIONS(1267), + [sym_word] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), + [anon_sym_LT_LPAREN] = ACTIONS(1267), + [sym_ansii_c_string] = ACTIONS(1247), + [anon_sym_COLON] = ACTIONS(1241), + [sym__special_character] = ACTIONS(1273), }, [192] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(246), + [sym_concatenation] = STATE(246), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1237), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_COLON_DASH] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(1235), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(1235), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(1276), + }, + [193] = { + [sym_command_substitution] = STATE(248), + [aux_sym__literal_repeat1] = STATE(249), + [sym_string] = STATE(248), + [sym_process_substitution] = STATE(248), + [sym_simple_expansion] = STATE(248), + [sym_string_expansion] = STATE(248), + [sym_concatenation] = STATE(250), + [sym_expansion] = STATE(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1278), + [sym_word] = ACTIONS(1280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(1278), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(1239), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(1280), + [anon_sym_GT_LPAREN] = ACTIONS(943), + }, + [194] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(253), + [sym_concatenation] = STATE(253), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(1282), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1284), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_COLON_DASH] = ACTIONS(1282), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(1282), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(1282), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(1288), + }, + [195] = { + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [anon_sym_EQ_TILDE] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_EQ_EQ] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), + }, + [196] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), + }, + [197] = { + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1239), + [sym__concat] = ACTIONS(1294), + }, + [198] = { + [aux_sym__literal_repeat1] = STATE(1135), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1298), + [sym_comment] = ACTIONS(41), + }, + [199] = { + [anon_sym_RBRACE] = ACTIONS(1239), + [sym_comment] = ACTIONS(41), + }, + [200] = { + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + }, + [201] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(256), + [sym_concatenation] = STATE(256), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_COLON_DASH] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(1304), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(1304), + [sym__special_character] = ACTIONS(459), + }, + [202] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), + }, + [203] = { + [sym_compound_statement] = STATE(257), + [anon_sym_LBRACE] = ACTIONS(27), + [sym_comment] = ACTIONS(41), + }, + [204] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1310), + [sym_file_descriptor] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1310), + [anon_sym_AMP_GT] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_GT_AMP] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1310), + [anon_sym_GT_GT] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_SEMI_SEMI] = ACTIONS(1310), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + }, + [205] = { + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_SEMI_SEMI] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + }, + [206] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_AMP_GT_GT] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_LT_LT] = ACTIONS(1318), + [sym_file_descriptor] = ACTIONS(1320), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_AMP_GT] = ACTIONS(1318), + [anon_sym_PIPE_PIPE] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1320), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_GT_AMP] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_LT_AMP] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1318), + [anon_sym_SEMI_SEMI] = ACTIONS(1318), + [anon_sym_PIPE_AMP] = ACTIONS(1318), + }, + [207] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(247), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), + [aux_sym__statements2] = STATE(259), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_fi] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [193] = { + [208] = { [aux_sym__literal_repeat1] = STATE(386), - [sym__terminated_statement] = STATE(248), - [sym_if_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_negated_command] = STATE(60), - [sym_test_command] = STATE(60), - [sym_variable_assignment] = STATE(61), + [sym__terminated_statement] = STATE(260), + [sym_if_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_negated_command] = STATE(65), + [sym_test_command] = STATE(65), + [sym_variable_assignment] = STATE(66), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_compound_statement] = STATE(60), - [sym_subshell] = STATE(60), - [sym_declaration_command] = STATE(60), - [sym_unset_command] = STATE(60), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_compound_statement] = STATE(65), + [sym_subshell] = STATE(65), + [sym_declaration_command] = STATE(65), + [sym_unset_command] = STATE(65), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_case_statement] = STATE(60), - [sym_pipeline] = STATE(60), - [sym_list] = STATE(60), - [sym_command] = STATE(60), + [sym_c_style_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_case_statement] = STATE(65), + [sym_pipeline] = STATE(65), + [sym_list] = STATE(65), + [sym_command] = STATE(65), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [194] = { + [209] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LT_LT] = ACTIONS(441), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_LF] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1218), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_AMP_GT] = ACTIONS(433), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(1218), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1326), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), }, - [195] = { + [210] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1218), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(1218), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(491), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1326), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(1326), + [anon_sym_PIPE_AMP] = ACTIONS(491), }, - [196] = { - [sym_comment] = ACTIONS(19), - [anon_sym_fi] = ACTIONS(1220), + [211] = { + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(1328), }, - [197] = { - [aux_sym_if_statement_repeat1] = STATE(252), - [sym_elif_clause] = STATE(252), - [sym_else_clause] = STATE(253), - [anon_sym_elif] = ACTIONS(1222), - [anon_sym_fi] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1224), - [sym_comment] = ACTIONS(19), + [212] = { + [aux_sym_if_statement_repeat1] = STATE(264), + [sym_elif_clause] = STATE(264), + [sym_else_clause] = STATE(265), + [anon_sym_elif] = ACTIONS(1330), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1332), }, - [198] = { + [213] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_elif_clause] = STATE(254), - [sym_else_clause] = STATE(253), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_elif_clause] = STATE(266), + [sym_else_clause] = STATE(265), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_if_statement_repeat1] = STATE(254), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_if_statement_repeat1] = STATE(266), [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(255), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), + [aux_sym__statements2] = STATE(267), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(880), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(977), + [sym_number] = ACTIONS(75), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_elif] = ACTIONS(882), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_elif] = ACTIONS(979), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_GT_LPAREN] = ACTIONS(79), - }, - [199] = { - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [sym_command_substitution] = STATE(257), - [aux_sym__literal_repeat1] = STATE(259), - [sym_case_item] = STATE(261), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(260), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(261), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_word] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_esac] = ACTIONS(1236), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_ansii_c_string] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym__special_character] = ACTIONS(231), - [sym_comment] = ACTIONS(19), - }, - [201] = { - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_LF] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_SEMI_SEMI] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [sym_command_substitution] = STATE(257), - [aux_sym__literal_repeat1] = STATE(259), - [sym_case_item] = STATE(266), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(265), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(266), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_word] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_esac] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_ansii_c_string] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym__special_character] = ACTIONS(231), - [sym_comment] = ACTIONS(19), - }, - [203] = { - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1244), - [sym_test_operator] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_EQ_TILDE] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1244), - }, - [204] = { - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1250), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1248), - [sym_test_operator] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_EQ_TILDE] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1248), - }, - [205] = { - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1250), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1248), - [sym_test_operator] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_EQ_TILDE] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1248), - }, - [206] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), - }, - [207] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(268), - [sym_concatenation] = STATE(268), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1260), - [anon_sym_COLON_DASH] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(1256), - [sym__special_character] = ACTIONS(517), - }, - [208] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - }, - [209] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(1262), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1271), - [anon_sym_COLON] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PERCENT] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_COLON_DASH] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1285), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1291), - [anon_sym_GT_LPAREN] = ACTIONS(1285), - [sym_ansii_c_string] = ACTIONS(1271), - [anon_sym_COLON_QMARK] = ACTIONS(1274), - [sym__special_character] = ACTIONS(1294), - }, - [210] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(268), - [sym_concatenation] = STATE(268), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1260), - [anon_sym_COLON_DASH] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(1256), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(1297), - }, - [211] = { - [sym_command_substitution] = STATE(270), - [aux_sym__literal_repeat1] = STATE(271), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [sym_concatenation] = STATE(272), - [sym_expansion] = STATE(270), - [sym_word] = ACTIONS(1299), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(1299), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(1258), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), - }, - [212] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_EQ_TILDE] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_EQ_EQ] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [ts_builtin_sym_end] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), - }, - [213] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(275), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1305), - [anon_sym_PERCENT] = ACTIONS(1305), - [anon_sym_POUND] = ACTIONS(1309), - [anon_sym_COLON_DASH] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(1305), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_LT_LPAREN] = ACTIONS(73), }, [214] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), }, [215] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1258), - [sym__concat] = ACTIONS(1313), + [sym_command_substitution] = STATE(269), + [aux_sym__literal_repeat1] = STATE(271), + [sym_case_item] = STATE(273), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(272), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(273), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_esac] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_BQUOTE] = ACTIONS(243), + [sym__special_character] = ACTIONS(255), + [sym_number] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(245), }, [216] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1317), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_SEMI_SEMI] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), }, [217] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1258), + [sym_command_substitution] = STATE(269), + [aux_sym__literal_repeat1] = STATE(271), + [sym_case_item] = STATE(278), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(277), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(278), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_esac] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_BQUOTE] = ACTIONS(243), + [sym__special_character] = ACTIONS(255), + [sym_number] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(245), }, [218] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [anon_sym_EQ_TILDE] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_EQ_EQ] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [ts_builtin_sym_end] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_PLUS_EQ] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1352), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_EQ_TILDE] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_LT_EQ] = ACTIONS(1352), + [anon_sym_DASH_EQ] = ACTIONS(1352), + [anon_sym_BANG_EQ] = ACTIONS(1352), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1354), + [sym_test_operator] = ACTIONS(1352), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1352), }, [219] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(278), - [sym_concatenation] = STATE(278), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(1323), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1323), - [anon_sym_PERCENT] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(1327), - [anon_sym_COLON_DASH] = ACTIONS(1323), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(1323), - [sym__special_character] = ACTIONS(517), + [anon_sym_PLUS_EQ] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_DASH_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1356), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1356), }, [220] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [anon_sym_PLUS_EQ] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_DASH_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1356), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1356), }, [221] = { - [aux_sym_concatenation_repeat1] = STATE(1129), - [sym_word] = ACTIONS(1329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1329), - [sym_raw_string] = ACTIONS(1329), - [sym__concat] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_RPAREN] = ACTIONS(1329), - [sym_ansii_c_string] = ACTIONS(1329), - [anon_sym_LT_LPAREN] = ACTIONS(1329), - [anon_sym_GT_LPAREN] = ACTIONS(1329), - [sym__special_character] = ACTIONS(1329), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1132), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(1360), + [sym_number] = ACTIONS(1362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym__concat] = ACTIONS(1364), + [sym_word] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1360), + [anon_sym_LT_LPAREN] = ACTIONS(1360), + [sym_ansii_c_string] = ACTIONS(1360), + [sym__special_character] = ACTIONS(1360), }, [222] = { - [sym_word] = ACTIONS(1335), - [anon_sym_AMP_GT_GT] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1335), - [anon_sym_LT_LPAREN] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_LT_AMP] = ACTIONS(1335), - [anon_sym_GT_GT] = ACTIONS(1335), - [sym__special_character] = ACTIONS(1335), - [anon_sym_LT_LT_DASH] = ACTIONS(1335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), - [anon_sym_LF] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [sym_raw_string] = ACTIONS(1335), - [sym_variable_name] = ACTIONS(1337), - [sym_file_descriptor] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_AMP_GT] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_LT_LT_LT] = ACTIONS(1335), - [anon_sym_GT_AMP] = ACTIONS(1335), - [ts_builtin_sym_end] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_GT_LPAREN] = ACTIONS(1335), - [sym_ansii_c_string] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_number] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [sym_word] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [sym__special_character] = ACTIONS(1366), + [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [sym_variable_name] = ACTIONS(1368), + [sym_file_descriptor] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [ts_builtin_sym_end] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [sym_ansii_c_string] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_SEMI_SEMI] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), }, [223] = { [aux_sym__literal_repeat1] = STATE(1167), - [sym_word] = ACTIONS(1339), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1339), - [sym_raw_string] = ACTIONS(1339), - [anon_sym_BQUOTE] = ACTIONS(1339), - [anon_sym_DOLLAR] = ACTIONS(1341), - [anon_sym_RPAREN] = ACTIONS(1339), - [sym_ansii_c_string] = ACTIONS(1339), - [anon_sym_LT_LPAREN] = ACTIONS(1339), - [anon_sym_GT_LPAREN] = ACTIONS(1339), - [sym__special_character] = ACTIONS(1343), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1370), + [sym_word] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1370), + [sym_ansii_c_string] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [anon_sym_LT_LPAREN] = ACTIONS(1370), + [sym__special_character] = ACTIONS(1374), + [sym_number] = ACTIONS(1372), + [anon_sym_GT_LPAREN] = ACTIONS(1370), }, [224] = { [sym_command_substitution] = STATE(221), @@ -13518,145 +13804,216 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(280), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [sym_ansii_c_string] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1345), - [sym__special_character] = ACTIONS(1004), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [sym_ansii_c_string] = ACTIONS(1015), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1376), + [sym__special_character] = ACTIONS(1029), + [sym_number] = ACTIONS(1017), + [anon_sym_GT_LPAREN] = ACTIONS(1023), }, [225] = { - [anon_sym_PLUS_EQ] = ACTIONS(1347), - [sym__concat] = ACTIONS(1349), - [anon_sym_EQ] = ACTIONS(1347), - [sym_comment] = ACTIONS(19), + [anon_sym_PLUS_EQ] = ACTIONS(1378), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(1380), + [anon_sym_EQ] = ACTIONS(1378), }, [226] = { - [sym_command_substitution] = STATE(816), - [sym_simple_expansion] = STATE(816), - [sym_string_expansion] = STATE(816), - [sym_string] = STATE(816), - [sym_process_substitution] = STATE(816), - [sym_expansion] = STATE(816), - [sym_word] = ACTIONS(1351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(1351), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(1351), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [anon_sym_RBRACK] = ACTIONS(1353), - [sym__special_character] = ACTIONS(1355), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(818), + [sym_simple_expansion] = STATE(818), + [sym_string_expansion] = STATE(818), + [sym_string] = STATE(818), + [sym_process_substitution] = STATE(818), + [sym_expansion] = STATE(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1382), + [sym_word] = ACTIONS(1384), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(1386), + [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym__special_character] = ACTIONS(1384), + [sym_number] = ACTIONS(1384), }, [227] = { - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [sym__concat] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1357), - [sym_comment] = ACTIONS(19), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(1390), + [anon_sym_EQ] = ACTIONS(1388), }, [228] = { - [anon_sym_RBRACK] = ACTIONS(1361), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(1392), + [sym_comment] = ACTIONS(41), }, [229] = { - [anon_sym_RBRACK] = ACTIONS(1353), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(1386), + [sym_comment] = ACTIONS(41), }, [230] = { - [anon_sym_DOLLAR] = ACTIONS(1363), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1363), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [anon_sym_BQUOTE] = ACTIONS(1394), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1363), - [sym__string_content] = ACTIONS(1363), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1394), + [sym__string_content] = ACTIONS(1394), }, [231] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_TILDE] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [ts_builtin_sym_end] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [anon_sym_EQ_TILDE] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_EQ_EQ] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [232] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(587), }, [233] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1369), - [anon_sym_AMP_GT_GT] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [sym_file_descriptor] = ACTIONS(1371), - [anon_sym_AMP_GT] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1369), - [ts_builtin_sym_end] = ACTIONS(1371), - [anon_sym_LT_LT_LT] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_GT_AMP] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_AMP] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1369), - [anon_sym_SEMI_SEMI] = ACTIONS(1369), - [anon_sym_PIPE_AMP] = ACTIONS(1369), + [sym_command_substitution] = STATE(71), + [sym_unary_expression] = STATE(286), + [sym_postfix_expression] = STATE(286), + [sym_string] = STATE(71), + [aux_sym__literal_repeat1] = STATE(73), + [sym_process_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(286), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym__expression] = STATE(286), + [sym_binary_expression] = STATE(286), + [sym_concatenation] = STATE(286), + [sym_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [234] = { + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [sym_test_operator] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_EQ_TILDE] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + }, + [235] = { + [sym_command_substitution] = STATE(559), + [sym_unary_expression] = STATE(288), + [sym_postfix_expression] = STATE(288), + [sym_string] = STATE(559), + [aux_sym__literal_repeat1] = STATE(561), + [sym_process_substitution] = STATE(559), + [sym_parenthesized_expression] = STATE(288), + [sym_simple_expansion] = STATE(559), + [sym_string_expansion] = STATE(559), + [sym__expression] = STATE(288), + [sym_binary_expression] = STATE(288), + [sym_concatenation] = STATE(288), + [sym_expansion] = STATE(559), + [anon_sym_LPAREN] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_DOLLAR] = ACTIONS(615), + [sym_test_operator] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_GT_LPAREN] = ACTIONS(619), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_word] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_LT_LPAREN] = ACTIONS(619), + [sym_ansii_c_string] = ACTIONS(609), + [sym__special_character] = ACTIONS(627), + [anon_sym_SEMI_SEMI] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + }, + [236] = { [sym_command_substitution] = STATE(482), [aux_sym__literal_repeat1] = STATE(484), [sym_string] = STATE(482), @@ -13666,1175 +14023,1131 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(482), [sym_concatenation] = STATE(503), [sym_expansion] = STATE(482), - [sym_word] = ACTIONS(1373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1377), - [sym_raw_string] = ACTIONS(1373), - [anon_sym_LF] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_DOLLAR] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_LT_LPAREN] = ACTIONS(1383), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1387), - [anon_sym_GT_LPAREN] = ACTIONS(1383), - [sym_ansii_c_string] = ACTIONS(1373), - [sym__special_character] = ACTIONS(1389), - [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1104), + [anon_sym_LF] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_word] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1416), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1104), + [sym__special_character] = ACTIONS(1418), + [anon_sym_SEMI_SEMI] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), }, - [235] = { - [sym_command_substitution] = STATE(65), - [sym_unary_expression] = STATE(287), - [sym_postfix_expression] = STATE(287), - [sym_string] = STATE(65), - [aux_sym__literal_repeat1] = STATE(68), - [sym_process_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(287), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym__expression] = STATE(287), - [sym_binary_expression] = STATE(287), - [sym_concatenation] = STATE(287), - [sym_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), - }, - [236] = { - [anon_sym_BANG_EQ] = ACTIONS(1079), - [anon_sym_PLUS_EQ] = ACTIONS(1079), - [anon_sym_LF] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_AMP] = ACTIONS(1393), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [sym_test_operator] = ACTIONS(1079), - [anon_sym_EQ_TILDE] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_AMP_AMP] = ACTIONS(1079), - [anon_sym_SEMI_SEMI] = ACTIONS(1393), - [anon_sym_DASH_EQ] = ACTIONS(1079), - }, - [237] = { - [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(289), - [sym_postfix_expression] = STATE(289), - [sym_string] = STATE(559), - [aux_sym__literal_repeat1] = STATE(561), - [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(289), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(289), - [sym_binary_expression] = STATE(289), - [sym_concatenation] = STATE(289), - [sym_expansion] = STATE(559), - [sym_word] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(603), - [sym_raw_string] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_LT_LPAREN] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(613), - [sym_test_operator] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(615), - [anon_sym_GT_LPAREN] = ACTIONS(611), - [sym_ansii_c_string] = ACTIONS(597), - [sym__special_character] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(1393), + [237] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_AMP_GT_GT] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LT_LT] = ACTIONS(1420), + [sym_file_descriptor] = ACTIONS(1422), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_AMP_GT] = ACTIONS(1420), + [anon_sym_PIPE_PIPE] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1422), + [anon_sym_LT_LT_LT] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_GT_AMP] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_LT_AMP] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_SEMI_SEMI] = ACTIONS(1420), + [anon_sym_PIPE_AMP] = ACTIONS(1420), }, [238] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1395), - [anon_sym_AMP_GT_GT] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [sym_file_descriptor] = ACTIONS(1397), - [anon_sym_AMP_GT] = ACTIONS(1395), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [ts_builtin_sym_end] = ACTIONS(1397), - [anon_sym_LT_LT_LT] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_GT_AMP] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_LT_AMP] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_SEMI_SEMI] = ACTIONS(1395), - [anon_sym_PIPE_AMP] = ACTIONS(1395), + [anon_sym_LT_LT_DASH] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_AMP_GT_GT] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT_LT] = ACTIONS(1424), + [sym_file_descriptor] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_AMP_GT] = ACTIONS(1424), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_GT_AMP] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_LT_AMP] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1424), + [anon_sym_SEMI_SEMI] = ACTIONS(1424), + [anon_sym_PIPE_AMP] = ACTIONS(1424), }, [239] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(255), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), + [aux_sym__statements2] = STATE(267), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [anon_sym_done] = ACTIONS(1399), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_done] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [240] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(1401), - [anon_sym__] = ACTIONS(1401), - [anon_sym_AT] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1405), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1405), - [anon_sym_0] = ACTIONS(1401), + [anon_sym__] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_0] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1432), + [aux_sym__simple_variable_name_token1] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1434), }, [241] = { - [anon_sym_AMP] = ACTIONS(1407), - [ts_builtin_sym_end] = ACTIONS(1409), - [anon_sym_LF] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_SEMI_SEMI] = ACTIONS(1407), + [ts_builtin_sym_end] = ACTIONS(1436), [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_SEMI_SEMI] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), }, [242] = { [sym_command_substitution] = STATE(292), [sym_simple_expansion] = STATE(292), [sym_expansion] = STATE(292), [aux_sym_heredoc_body_repeat1] = STATE(292), - [anon_sym_DOLLAR] = ACTIONS(1101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), - [sym__heredoc_body_end] = ACTIONS(1411), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1109), - [sym__heredoc_body_middle] = ACTIONS(1413), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1134), + [sym__heredoc_body_end] = ACTIONS(1440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), + [sym__heredoc_body_middle] = ACTIONS(1442), }, [243] = { - [anon_sym_LPAREN] = ACTIONS(1415), - [sym_word] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1417), - [anon_sym_local] = ACTIONS(1415), - [anon_sym_typeset] = ACTIONS(1415), - [anon_sym_unsetenv] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_LT_LPAREN] = ACTIONS(1417), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_LT_AMP] = ACTIONS(1417), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1415), - [sym__special_character] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1417), - [sym_raw_string] = ACTIONS(1417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1417), - [sym_file_descriptor] = ACTIONS(1417), - [sym_variable_name] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_readonly] = ACTIONS(1415), - [anon_sym_unset] = ACTIONS(1415), - [ts_builtin_sym_end] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_GT_AMP] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_GT_LPAREN] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [sym_ansii_c_string] = ACTIONS(1417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_AMP_GT_GT] = ACTIONS(1446), + [anon_sym_local] = ACTIONS(1444), + [anon_sym_typeset] = ACTIONS(1444), + [anon_sym_unsetenv] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_GT_LPAREN] = ACTIONS(1446), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_LT_AMP] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1444), + [sym_word] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), + [sym_raw_string] = ACTIONS(1446), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [sym_variable_name] = ACTIONS(1446), + [sym_file_descriptor] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_AMP_GT] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_GT_AMP] = ACTIONS(1446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_LT_LPAREN] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [sym_ansii_c_string] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_LF] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_SEMI_SEMI] = ACTIONS(1421), + [ts_builtin_sym_end] = ACTIONS(1448), [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_SEMI_SEMI] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), }, [245] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1425), - [anon_sym_AMP_GT_GT] = ACTIONS(1425), - [anon_sym_LF] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_GT] = ACTIONS(1425), - [sym_file_descriptor] = ACTIONS(1427), - [anon_sym_AMP_GT] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1425), - [ts_builtin_sym_end] = ACTIONS(1427), - [anon_sym_LT_LT_LT] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_GT_AMP] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1425), - [anon_sym_LT_AMP] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_AMP_AMP] = ACTIONS(1425), - [anon_sym_SEMI_SEMI] = ACTIONS(1425), - [anon_sym_PIPE_AMP] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [anon_sym_EQ_TILDE] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [246] = { - [anon_sym_LPAREN] = ACTIONS(1415), - [sym_word] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1417), - [anon_sym_local] = ACTIONS(1415), - [anon_sym_typeset] = ACTIONS(1415), - [anon_sym_unsetenv] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_LT_LPAREN] = ACTIONS(1417), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_LT_AMP] = ACTIONS(1417), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1415), - [sym__special_character] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1417), - [sym_raw_string] = ACTIONS(1417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1417), - [sym_file_descriptor] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [sym_variable_name] = ACTIONS(1417), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_readonly] = ACTIONS(1415), - [anon_sym_unset] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_GT_AMP] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_GT_LPAREN] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [sym_ansii_c_string] = ACTIONS(1417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [247] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(255), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_fi] = ACTIONS(1429), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(295), + [sym_concatenation] = STATE(295), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(1460), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1462), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_COLON_DASH] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(1460), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(1460), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(1460), + [sym__special_character] = ACTIONS(459), }, [248] = { - [sym_comment] = ACTIONS(19), - [anon_sym_then] = ACTIONS(1431), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1294), }, [249] = { - [sym_heredoc_body] = STATE(295), - [sym_word] = ACTIONS(1433), - [anon_sym_AMP_GT_GT] = ACTIONS(1435), - [anon_sym_typeset] = ACTIONS(1433), - [anon_sym_DOLLAR] = ACTIONS(1433), - [anon_sym_LT_LPAREN] = ACTIONS(1435), - [anon_sym_done] = ACTIONS(1433), - [sym_comment] = ACTIONS(19), - [sym__simple_heredoc_body] = ACTIONS(870), - [anon_sym_LT_AMP] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1433), - [sym__special_character] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1435), - [sym_raw_string] = ACTIONS(1435), - [anon_sym_declare] = ACTIONS(1433), - [sym_variable_name] = ACTIONS(1435), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_readonly] = ACTIONS(1433), - [anon_sym_unset] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_GT_AMP] = ACTIONS(1435), - [anon_sym_elif] = ACTIONS(1433), - [sym_ansii_c_string] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_local] = ACTIONS(1433), - [anon_sym_unsetenv] = ACTIONS(1433), - [anon_sym_fi] = ACTIONS(1433), - [anon_sym_else] = ACTIONS(1433), - [anon_sym_function] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1435), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1435), - [anon_sym_case] = ACTIONS(1433), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1433), - [sym_file_descriptor] = ACTIONS(1435), - [anon_sym_GT] = ACTIONS(1433), - [anon_sym_AMP_GT] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1435), - [anon_sym_GT_LPAREN] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1435), + [aux_sym__literal_repeat1] = STATE(1135), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1464), + [sym_comment] = ACTIONS(41), }, [250] = { - [sym_word] = ACTIONS(1433), - [anon_sym_AMP_GT_GT] = ACTIONS(1435), - [anon_sym_typeset] = ACTIONS(1433), - [anon_sym_DOLLAR] = ACTIONS(1433), - [anon_sym_LT_LPAREN] = ACTIONS(1435), - [anon_sym_done] = ACTIONS(1433), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1433), - [sym__special_character] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1435), - [sym_raw_string] = ACTIONS(1435), - [anon_sym_declare] = ACTIONS(1433), - [sym_variable_name] = ACTIONS(1435), - [anon_sym_readonly] = ACTIONS(1433), - [anon_sym_unset] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_GT_AMP] = ACTIONS(1435), - [anon_sym_elif] = ACTIONS(1433), - [sym_ansii_c_string] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_local] = ACTIONS(1433), - [anon_sym_unsetenv] = ACTIONS(1433), - [anon_sym_fi] = ACTIONS(1433), - [anon_sym_else] = ACTIONS(1433), - [anon_sym_function] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1435), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1435), - [anon_sym_case] = ACTIONS(1433), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1433), - [sym_file_descriptor] = ACTIONS(1435), - [anon_sym_GT] = ACTIONS(1433), - [anon_sym_AMP_GT] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1435), - [anon_sym_GT_LPAREN] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1458), + [sym_comment] = ACTIONS(41), }, [251] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1437), - [anon_sym_AMP_GT_GT] = ACTIONS(1437), - [anon_sym_LF] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [sym_file_descriptor] = ACTIONS(1439), - [anon_sym_AMP_GT] = ACTIONS(1437), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1437), - [ts_builtin_sym_end] = ACTIONS(1439), - [anon_sym_LT_LT_LT] = ACTIONS(1437), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_GT_AMP] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_LT_AMP] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_SEMI_SEMI] = ACTIONS(1437), - [anon_sym_PIPE_AMP] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [anon_sym_EQ_TILDE] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [252] = { - [aux_sym_if_statement_repeat1] = STATE(252), - [sym_elif_clause] = STATE(252), - [anon_sym_elif] = ACTIONS(1441), - [anon_sym_fi] = ACTIONS(1444), - [anon_sym_else] = ACTIONS(1444), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(298), + [sym_concatenation] = STATE(298), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1472), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_COLON_DASH] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(1470), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(1470), + [sym__special_character] = ACTIONS(459), }, [253] = { - [sym_comment] = ACTIONS(19), - [anon_sym_fi] = ACTIONS(1446), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [254] = { - [aux_sym_if_statement_repeat1] = STATE(252), - [sym_elif_clause] = STATE(252), - [sym_else_clause] = STATE(297), - [anon_sym_elif] = ACTIONS(1222), - [anon_sym_fi] = ACTIONS(1446), - [anon_sym_else] = ACTIONS(1224), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_EQ_TILDE] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [255] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(255), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(1448), - [anon_sym_AMP_GT_GT] = ACTIONS(1451), - [anon_sym_typeset] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1457), - [anon_sym_LT_LPAREN] = ACTIONS(1460), - [anon_sym_done] = ACTIONS(1433), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1463), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1469), - [sym_raw_string] = ACTIONS(1472), - [anon_sym_declare] = ACTIONS(1454), - [sym_variable_name] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1454), - [anon_sym_unset] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_GT_AMP] = ACTIONS(1451), - [anon_sym_elif] = ACTIONS(1433), - [sym_ansii_c_string] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_local] = ACTIONS(1454), - [anon_sym_unsetenv] = ACTIONS(1478), - [anon_sym_fi] = ACTIONS(1433), - [anon_sym_else] = ACTIONS(1433), - [anon_sym_function] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT_GT] = ACTIONS(1451), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1502), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1508), - [sym_file_descriptor] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1496), - [anon_sym_AMP_GT] = ACTIONS(1496), - [anon_sym_BQUOTE] = ACTIONS(1514), - [anon_sym_GT_LPAREN] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_EQ_TILDE] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [256] = { - [sym_command_substitution] = STATE(257), - [aux_sym__literal_repeat1] = STATE(259), - [sym_case_item] = STATE(300), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(299), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(300), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_word] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_esac] = ACTIONS(1526), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_ansii_c_string] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym__special_character] = ACTIONS(231), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [257] = { - [aux_sym_concatenation_repeat1] = STATE(772), - [aux_sym_case_item_repeat1] = STATE(303), - [anon_sym_RPAREN] = ACTIONS(1528), - [sym__concat] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(1530), - [sym_comment] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [ts_builtin_sym_end] = ACTIONS(1488), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [258] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1532), - [anon_sym_AMP_GT_GT] = ACTIONS(1532), - [anon_sym_LF] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_LT_LT] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_GT] = ACTIONS(1532), - [sym_file_descriptor] = ACTIONS(1534), - [anon_sym_AMP_GT] = ACTIONS(1532), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1532), - [ts_builtin_sym_end] = ACTIONS(1534), - [anon_sym_LT_LT_LT] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_GT_AMP] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_LT_AMP] = ACTIONS(1532), - [anon_sym_GT_GT] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1532), - [anon_sym_SEMI_SEMI] = ACTIONS(1532), - [anon_sym_PIPE_AMP] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_AMP_GT_GT] = ACTIONS(1446), + [anon_sym_local] = ACTIONS(1444), + [anon_sym_typeset] = ACTIONS(1444), + [anon_sym_unsetenv] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_GT_LPAREN] = ACTIONS(1446), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_LT_AMP] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1444), + [sym_word] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), + [sym_raw_string] = ACTIONS(1446), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [sym_variable_name] = ACTIONS(1446), + [sym_file_descriptor] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_AMP_GT] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_GT_AMP] = ACTIONS(1446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_LT_LPAREN] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [sym_ansii_c_string] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), }, [259] = { - [aux_sym__literal_repeat1] = STATE(778), - [aux_sym_case_item_repeat1] = STATE(305), - [anon_sym_RPAREN] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1530), - [sym__special_character] = ACTIONS(1538), - [sym_comment] = ACTIONS(19), + [aux_sym__literal_repeat1] = STATE(386), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), + [sym_subscript] = STATE(2407), + [sym_concatenation] = STATE(389), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), + [sym_file_redirect] = STATE(391), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_command_repeat1] = STATE(391), + [aux_sym__statements2] = STATE(267), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), + [sym_command_name] = STATE(392), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [260] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(1540), + [anon_sym_then] = ACTIONS(1492), + [sym_comment] = ACTIONS(41), }, [261] = { - [sym_command_substitution] = STATE(257), - [aux_sym__literal_repeat1] = STATE(259), - [sym_case_item] = STATE(306), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(299), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(306), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_word] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_ansii_c_string] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym__special_character] = ACTIONS(231), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP_GT_GT] = ACTIONS(1494), + [anon_sym_typeset] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_done] = ACTIONS(1496), + [anon_sym_GT_LPAREN] = ACTIONS(1494), + [sym_word] = ACTIONS(1496), + [anon_sym_LT_AMP] = ACTIONS(1494), + [anon_sym_export] = ACTIONS(1496), + [sym__special_character] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1494), + [sym_raw_string] = ACTIONS(1494), + [anon_sym_declare] = ACTIONS(1496), + [sym_variable_name] = ACTIONS(1494), + [anon_sym_readonly] = ACTIONS(1496), + [anon_sym_unset] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_GT_AMP] = ACTIONS(1494), + [anon_sym_elif] = ACTIONS(1496), + [sym_ansii_c_string] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_local] = ACTIONS(1496), + [anon_sym_unsetenv] = ACTIONS(1496), + [anon_sym_fi] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [sym_number] = ACTIONS(1496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1494), + [anon_sym_function] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT_GT] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [sym_file_descriptor] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_AMP_GT] = ACTIONS(1496), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1494), + [anon_sym_LT_LPAREN] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), }, [262] = { - [aux_sym_case_item_repeat1] = STATE(303), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1528), - [sym_comment] = ACTIONS(19), + [sym_heredoc_body] = STATE(301), + [anon_sym_AMP_GT_GT] = ACTIONS(1494), + [anon_sym_typeset] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_done] = ACTIONS(1496), + [anon_sym_GT_LPAREN] = ACTIONS(1494), + [sym_word] = ACTIONS(1496), + [sym__simple_heredoc_body] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(1494), + [anon_sym_export] = ACTIONS(1496), + [sym__special_character] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1494), + [sym_raw_string] = ACTIONS(1494), + [anon_sym_declare] = ACTIONS(1496), + [sym_variable_name] = ACTIONS(1494), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_readonly] = ACTIONS(1496), + [anon_sym_unset] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_GT_AMP] = ACTIONS(1494), + [anon_sym_elif] = ACTIONS(1496), + [sym_ansii_c_string] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_local] = ACTIONS(1496), + [anon_sym_unsetenv] = ACTIONS(1496), + [anon_sym_fi] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [sym_number] = ACTIONS(1496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1494), + [anon_sym_function] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT_GT] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [sym_file_descriptor] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_AMP_GT] = ACTIONS(1496), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1494), + [anon_sym_LT_LPAREN] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), }, [263] = { - [sym_command_substitution] = STATE(257), - [aux_sym__literal_repeat1] = STATE(259), - [sym_case_item] = STATE(309), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(308), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(309), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_word] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_esac] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_ansii_c_string] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym__special_character] = ACTIONS(231), - [sym_comment] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_AMP_GT_GT] = ACTIONS(1498), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1498), + [sym_file_descriptor] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_AMP_GT] = ACTIONS(1498), + [anon_sym_PIPE_PIPE] = ACTIONS(1498), + [ts_builtin_sym_end] = ACTIONS(1500), + [anon_sym_LT_LT_LT] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_GT_AMP] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_LT_AMP] = ACTIONS(1498), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_AMP_AMP] = ACTIONS(1498), + [anon_sym_SEMI_SEMI] = ACTIONS(1498), + [anon_sym_PIPE_AMP] = ACTIONS(1498), }, [264] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1544), - [anon_sym_AMP_GT_GT] = ACTIONS(1544), - [anon_sym_LF] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1544), - [sym_file_descriptor] = ACTIONS(1546), - [anon_sym_AMP_GT] = ACTIONS(1544), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1544), - [ts_builtin_sym_end] = ACTIONS(1546), - [anon_sym_LT_LT_LT] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_GT_AMP] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_LT_AMP] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1544), - [anon_sym_SEMI_SEMI] = ACTIONS(1544), - [anon_sym_PIPE_AMP] = ACTIONS(1544), + [aux_sym_if_statement_repeat1] = STATE(264), + [sym_elif_clause] = STATE(264), + [anon_sym_elif] = ACTIONS(1502), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), }, [265] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(1548), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(1507), }, [266] = { - [sym_command_substitution] = STATE(257), - [aux_sym__literal_repeat1] = STATE(259), - [sym_case_item] = STATE(306), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(308), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(306), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_word] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_ansii_c_string] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym__special_character] = ACTIONS(231), - [sym_comment] = ACTIONS(19), + [aux_sym_if_statement_repeat1] = STATE(264), + [sym_elif_clause] = STATE(264), + [sym_else_clause] = STATE(303), + [anon_sym_elif] = ACTIONS(1330), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(1507), + [anon_sym_else] = ACTIONS(1332), }, [267] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [anon_sym_EQ_TILDE] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_EQ_EQ] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [aux_sym__literal_repeat1] = STATE(386), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), + [sym_subscript] = STATE(2407), + [sym_concatenation] = STATE(389), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), + [sym_file_redirect] = STATE(391), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_command_repeat1] = STATE(391), + [aux_sym__statements2] = STATE(267), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), + [sym_command_name] = STATE(392), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(1509), + [anon_sym_typeset] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_done] = ACTIONS(1496), + [anon_sym_GT_LPAREN] = ACTIONS(1521), + [sym_word] = ACTIONS(1524), + [anon_sym_LT_AMP] = ACTIONS(1509), + [anon_sym_export] = ACTIONS(1512), + [sym__special_character] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1530), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1533), + [sym_raw_string] = ACTIONS(1536), + [anon_sym_declare] = ACTIONS(1512), + [sym_variable_name] = ACTIONS(1539), + [anon_sym_readonly] = ACTIONS(1512), + [anon_sym_unset] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1545), + [anon_sym_GT_AMP] = ACTIONS(1509), + [anon_sym_elif] = ACTIONS(1496), + [sym_ansii_c_string] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_local] = ACTIONS(1512), + [anon_sym_unsetenv] = ACTIONS(1542), + [anon_sym_fi] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [sym_number] = ACTIONS(1554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1557), + [anon_sym_function] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1572), + [sym_file_descriptor] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1566), + [anon_sym_AMP_GT] = ACTIONS(1566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1578), + [anon_sym_LT_LPAREN] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1587), }, [268] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(269), + [aux_sym__literal_repeat1] = STATE(271), + [sym_case_item] = STATE(306), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(305), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(306), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_esac] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_BQUOTE] = ACTIONS(243), + [sym__special_character] = ACTIONS(255), + [sym_number] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(245), }, [269] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(311), - [sym_concatenation] = STATE(311), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_COLON_DASH] = ACTIONS(1556), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(1556), - [sym__special_character] = ACTIONS(517), + [aux_sym_concatenation_repeat1] = STATE(775), + [aux_sym_case_item_repeat1] = STATE(309), + [anon_sym_RPAREN] = ACTIONS(1592), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(1594), }, [270] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1554), - [sym__concat] = ACTIONS(1313), + [anon_sym_LT_LT_DASH] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_AMP_GT_GT] = ACTIONS(1596), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [sym_file_descriptor] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_AMP_GT] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_LT_LT_LT] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_GT_AMP] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_LT_AMP] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_SEMI_SEMI] = ACTIONS(1596), + [anon_sym_PIPE_AMP] = ACTIONS(1596), }, [271] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1560), - [sym_comment] = ACTIONS(19), + [aux_sym__literal_repeat1] = STATE(778), + [aux_sym_case_item_repeat1] = STATE(311), + [anon_sym_RPAREN] = ACTIONS(1600), + [sym_comment] = ACTIONS(41), + [anon_sym_PIPE] = ACTIONS(1594), + [sym__special_character] = ACTIONS(1602), }, [272] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1554), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1604), }, [273] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [anon_sym_EQ_TILDE] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_EQ_EQ] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [ts_builtin_sym_end] = ACTIONS(1564), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [sym_command_substitution] = STATE(269), + [aux_sym__literal_repeat1] = STATE(271), + [sym_case_item] = STATE(312), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(305), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(312), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_BQUOTE] = ACTIONS(243), + [sym__special_character] = ACTIONS(255), + [sym_number] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(245), }, [274] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(314), - [sym_concatenation] = STATE(314), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(1566), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(1566), - [anon_sym_POUND] = ACTIONS(1570), - [anon_sym_COLON_DASH] = ACTIONS(1566), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(1566), - [sym__special_character] = ACTIONS(517), + [aux_sym_case_item_repeat1] = STATE(309), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1592), + [sym_comment] = ACTIONS(41), }, [275] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(269), + [aux_sym__literal_repeat1] = STATE(271), + [sym_case_item] = STATE(315), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(314), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(315), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_esac] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_BQUOTE] = ACTIONS(243), + [sym__special_character] = ACTIONS(255), + [sym_number] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(245), }, [276] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [anon_sym_EQ_TILDE] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [ts_builtin_sym_end] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_LT_LT_DASH] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_AMP_GT_GT] = ACTIONS(1608), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1608), + [sym_file_descriptor] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1608), + [anon_sym_AMP_GT] = ACTIONS(1608), + [anon_sym_PIPE_PIPE] = ACTIONS(1608), + [ts_builtin_sym_end] = ACTIONS(1610), + [anon_sym_LT_LT_LT] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_GT_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_LT_AMP] = ACTIONS(1608), + [anon_sym_GT_GT] = ACTIONS(1608), + [anon_sym_AMP_AMP] = ACTIONS(1608), + [anon_sym_SEMI_SEMI] = ACTIONS(1608), + [anon_sym_PIPE_AMP] = ACTIONS(1608), }, [277] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [anon_sym_EQ_TILDE] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [ts_builtin_sym_end] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1612), }, [278] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(269), + [aux_sym__literal_repeat1] = STATE(271), + [sym_case_item] = STATE(312), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(314), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(312), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_BQUOTE] = ACTIONS(243), + [sym__special_character] = ACTIONS(255), + [sym_number] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(245), }, [279] = { - [sym_word] = ACTIONS(1582), - [anon_sym_AMP_GT_GT] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_LT_AMP] = ACTIONS(1582), - [anon_sym_GT_GT] = ACTIONS(1582), - [sym__special_character] = ACTIONS(1582), - [anon_sym_LT_LT_DASH] = ACTIONS(1582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1582), - [anon_sym_LF] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [sym_raw_string] = ACTIONS(1582), - [sym_variable_name] = ACTIONS(1584), - [sym_file_descriptor] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_AMP_GT] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_LT_LT_LT] = ACTIONS(1582), - [anon_sym_GT_AMP] = ACTIONS(1582), - [ts_builtin_sym_end] = ACTIONS(1584), - [anon_sym_BQUOTE] = ACTIONS(1582), - [anon_sym_GT_LPAREN] = ACTIONS(1582), - [sym_ansii_c_string] = ACTIONS(1582), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_SEMI_SEMI] = ACTIONS(1582), - [anon_sym_PIPE_AMP] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_AMP_GT_GT] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_LT_LT] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_GT_LPAREN] = ACTIONS(1614), + [sym_number] = ACTIONS(1614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [sym_word] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_LT_AMP] = ACTIONS(1614), + [anon_sym_GT_GT] = ACTIONS(1614), + [sym__special_character] = ACTIONS(1614), + [anon_sym_LT_LT_DASH] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [sym_raw_string] = ACTIONS(1614), + [sym_variable_name] = ACTIONS(1616), + [sym_file_descriptor] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_AMP_GT] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_LT_LT_LT] = ACTIONS(1614), + [anon_sym_GT_AMP] = ACTIONS(1614), + [ts_builtin_sym_end] = ACTIONS(1616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), + [anon_sym_LT_LPAREN] = ACTIONS(1614), + [sym_ansii_c_string] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_SEMI_SEMI] = ACTIONS(1614), + [anon_sym_PIPE_AMP] = ACTIONS(1614), }, [280] = { [sym_command_substitution] = STATE(221), @@ -14846,400 +15159,622 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(280), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(1586), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1592), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1595), - [sym_raw_string] = ACTIONS(1586), - [anon_sym_BQUOTE] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_RPAREN] = ACTIONS(1604), - [sym_ansii_c_string] = ACTIONS(1586), - [anon_sym_LT_LPAREN] = ACTIONS(1606), - [anon_sym_GT_LPAREN] = ACTIONS(1606), - [sym__special_character] = ACTIONS(1609), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1624), + [sym_word] = ACTIONS(1627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1630), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1636), + [sym_ansii_c_string] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(1638), + [anon_sym_LT_LPAREN] = ACTIONS(1641), + [sym__special_character] = ACTIONS(1644), + [sym_number] = ACTIONS(1627), + [anon_sym_GT_LPAREN] = ACTIONS(1641), }, [281] = { - [anon_sym_EQ] = ACTIONS(1612), - [anon_sym_PLUS_EQ] = ACTIONS(1612), - [sym_comment] = ACTIONS(19), + [anon_sym_EQ] = ACTIONS(1647), + [anon_sym_PLUS_EQ] = ACTIONS(1647), + [sym_comment] = ACTIONS(41), }, [282] = { - [anon_sym_PLUS_EQ] = ACTIONS(1612), - [sym__concat] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(1612), - [sym_comment] = ACTIONS(19), + [anon_sym_PLUS_EQ] = ACTIONS(1647), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(1649), + [anon_sym_EQ] = ACTIONS(1647), }, [283] = { - [anon_sym_EQ] = ACTIONS(1616), - [anon_sym_PLUS_EQ] = ACTIONS(1616), - [sym_comment] = ACTIONS(19), + [anon_sym_EQ] = ACTIONS(1651), + [anon_sym_PLUS_EQ] = ACTIONS(1651), + [sym_comment] = ACTIONS(41), }, [284] = { - [anon_sym_PLUS_EQ] = ACTIONS(1616), - [sym__concat] = ACTIONS(1618), - [anon_sym_EQ] = ACTIONS(1616), - [sym_comment] = ACTIONS(19), + [anon_sym_PLUS_EQ] = ACTIONS(1651), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(1653), + [anon_sym_EQ] = ACTIONS(1651), }, [285] = { - [sym_do_group] = STATE(318), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(619), + [sym_do_group] = STATE(319), + [sym_compound_statement] = STATE(319), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(635), }, [286] = { - [sym_do_group] = STATE(320), - [sym_compound_statement] = STATE(320), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [sym_test_operator] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1657), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), }, [287] = { - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1622), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [sym_test_operator] = ACTIONS(483), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), + [sym_command_substitution] = STATE(71), + [sym_unary_expression] = STATE(321), + [sym_postfix_expression] = STATE(321), + [sym_string] = STATE(71), + [aux_sym__literal_repeat1] = STATE(73), + [sym_process_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(321), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym__expression] = STATE(321), + [sym_binary_expression] = STATE(321), + [sym_concatenation] = STATE(321), + [sym_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [288] = { - [sym_command_substitution] = STATE(65), - [sym_unary_expression] = STATE(322), - [sym_postfix_expression] = STATE(322), - [sym_string] = STATE(65), - [aux_sym__literal_repeat1] = STATE(68), - [sym_process_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(322), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym__expression] = STATE(322), - [sym_binary_expression] = STATE(322), - [sym_concatenation] = STATE(322), - [sym_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [sym_test_operator] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_EQ_TILDE] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), }, [289] = { - [anon_sym_BANG_EQ] = ACTIONS(1079), - [anon_sym_PLUS_EQ] = ACTIONS(1079), - [anon_sym_LF] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_AMP] = ACTIONS(1624), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [sym_test_operator] = ACTIONS(1079), - [anon_sym_EQ_TILDE] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_AMP_AMP] = ACTIONS(1079), - [anon_sym_SEMI_SEMI] = ACTIONS(1624), - [anon_sym_DASH_EQ] = ACTIONS(1079), + [sym_do_group] = STATE(323), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(635), }, [290] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1626), - [anon_sym_AMP_GT_GT] = ACTIONS(1626), - [anon_sym_LF] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_LT_LT] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_GT] = ACTIONS(1626), - [sym_file_descriptor] = ACTIONS(1628), - [anon_sym_AMP_GT] = ACTIONS(1626), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1626), - [ts_builtin_sym_end] = ACTIONS(1628), - [anon_sym_LT_LT_LT] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_GT_AMP] = ACTIONS(1626), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_LT_AMP] = ACTIONS(1626), - [anon_sym_GT_GT] = ACTIONS(1626), - [anon_sym_AMP_AMP] = ACTIONS(1626), - [anon_sym_SEMI_SEMI] = ACTIONS(1626), - [anon_sym_PIPE_AMP] = ACTIONS(1626), + [anon_sym_LT_LT_DASH] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_AMP_GT_GT] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(1661), + [sym_file_descriptor] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_AMP_GT] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [ts_builtin_sym_end] = ACTIONS(1663), + [anon_sym_LT_LT_LT] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_GT_AMP] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_AMP] = ACTIONS(1661), + [anon_sym_GT_GT] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_SEMI_SEMI] = ACTIONS(1661), + [anon_sym_PIPE_AMP] = ACTIONS(1661), }, [291] = { - [anon_sym_AMP] = ACTIONS(1630), - [ts_builtin_sym_end] = ACTIONS(1632), - [anon_sym_LF] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_SEMI_SEMI] = ACTIONS(1630), + [ts_builtin_sym_end] = ACTIONS(1665), [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_SEMI_SEMI] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1667), }, [292] = { [sym_command_substitution] = STATE(292), [sym_simple_expansion] = STATE(292), [sym_expansion] = STATE(292), [aux_sym_heredoc_body_repeat1] = STATE(292), - [anon_sym_DOLLAR] = ACTIONS(1634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1640), - [sym__heredoc_body_end] = ACTIONS(1643), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1645), - [sym__heredoc_body_middle] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1675), + [sym__heredoc_body_end] = ACTIONS(1678), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1680), + [sym__heredoc_body_middle] = ACTIONS(1683), }, [293] = { - [anon_sym_LPAREN] = ACTIONS(1415), - [sym_word] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1417), - [anon_sym_local] = ACTIONS(1415), - [anon_sym_typeset] = ACTIONS(1415), - [anon_sym_unsetenv] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_LT_LPAREN] = ACTIONS(1417), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_LT_AMP] = ACTIONS(1417), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1415), - [sym__special_character] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1417), - [sym_raw_string] = ACTIONS(1417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1417), - [sym_file_descriptor] = ACTIONS(1417), - [sym_variable_name] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_readonly] = ACTIONS(1415), - [anon_sym_unset] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1417), - [ts_builtin_sym_end] = ACTIONS(1651), - [anon_sym_GT_AMP] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_GT_LPAREN] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [sym_ansii_c_string] = ACTIONS(1417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_AMP_GT_GT] = ACTIONS(1446), + [anon_sym_local] = ACTIONS(1444), + [anon_sym_typeset] = ACTIONS(1444), + [anon_sym_unsetenv] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_GT_LPAREN] = ACTIONS(1446), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_LT_AMP] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1444), + [sym_word] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), + [sym_raw_string] = ACTIONS(1446), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [sym_variable_name] = ACTIONS(1446), + [sym_file_descriptor] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_AMP_GT] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [ts_builtin_sym_end] = ACTIONS(1686), + [anon_sym_GT_AMP] = ACTIONS(1446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_LT_LPAREN] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [sym_ansii_c_string] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), }, [294] = { + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_EQ_TILDE] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [ts_builtin_sym_end] = ACTIONS(1690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), + }, + [295] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), + }, + [296] = { + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [anon_sym_EQ_TILDE] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), + }, + [297] = { + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [anon_sym_EQ_TILDE] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_EQ_EQ] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), + }, + [298] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), + }, + [299] = { + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [anon_sym_EQ_TILDE] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_EQ_EQ] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), + }, + [300] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(324), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), + [aux_sym__statements2] = STATE(326), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_fi] = ACTIONS(1653), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [anon_sym_else] = ACTIONS(1653), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_else] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_elif] = ACTIONS(1653), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_elif] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [295] = { - [anon_sym_LF] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), + [301] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI_SEMI] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_SEMI_SEMI] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1712), }, - [296] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [sym_file_descriptor] = ACTIONS(1661), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [ts_builtin_sym_end] = ACTIONS(1661), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [302] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_AMP_GT_GT] = ACTIONS(1714), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_LT_LT] = ACTIONS(1714), + [sym_file_descriptor] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_AMP_GT] = ACTIONS(1714), + [anon_sym_PIPE_PIPE] = ACTIONS(1714), + [ts_builtin_sym_end] = ACTIONS(1716), + [anon_sym_LT_LT_LT] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_GT_AMP] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_LT_AMP] = ACTIONS(1714), + [anon_sym_GT_GT] = ACTIONS(1714), + [anon_sym_AMP_AMP] = ACTIONS(1714), + [anon_sym_SEMI_SEMI] = ACTIONS(1714), + [anon_sym_PIPE_AMP] = ACTIONS(1714), }, - [297] = { - [sym_comment] = ACTIONS(19), - [anon_sym_fi] = ACTIONS(1663), + [303] = { + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(1718), }, - [298] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1665), - [anon_sym_AMP_GT_GT] = ACTIONS(1665), - [anon_sym_LF] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_GT] = ACTIONS(1665), - [sym_file_descriptor] = ACTIONS(1667), - [anon_sym_AMP_GT] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1665), - [ts_builtin_sym_end] = ACTIONS(1667), - [anon_sym_LT_LT_LT] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_GT_AMP] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_LT_AMP] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1665), - [anon_sym_SEMI_SEMI] = ACTIONS(1665), - [anon_sym_PIPE_AMP] = ACTIONS(1665), + [304] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1720), + [anon_sym_AMP_GT_GT] = ACTIONS(1720), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_LT_LT] = ACTIONS(1720), + [sym_file_descriptor] = ACTIONS(1722), + [anon_sym_GT] = ACTIONS(1720), + [anon_sym_AMP_GT] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1720), + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_LT_LT_LT] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_GT_AMP] = ACTIONS(1720), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_LT_AMP] = ACTIONS(1720), + [anon_sym_GT_GT] = ACTIONS(1720), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_SEMI_SEMI] = ACTIONS(1720), + [anon_sym_PIPE_AMP] = ACTIONS(1720), }, - [299] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(1669), + [305] = { + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1724), }, - [300] = { - [sym_command_substitution] = STATE(257), - [aux_sym__literal_repeat1] = STATE(259), - [sym_case_item] = STATE(306), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(328), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(306), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_word] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_ansii_c_string] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym__special_character] = ACTIONS(231), - [sym_comment] = ACTIONS(19), + [306] = { + [sym_command_substitution] = STATE(269), + [aux_sym__literal_repeat1] = STATE(271), + [sym_case_item] = STATE(312), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(330), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(312), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_BQUOTE] = ACTIONS(243), + [sym__special_character] = ACTIONS(255), + [sym_number] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [301] = { - [sym_command_substitution] = STATE(329), - [aux_sym__literal_repeat1] = STATE(330), - [sym_string] = STATE(329), - [sym_process_substitution] = STATE(329), - [sym_simple_expansion] = STATE(329), - [sym_string_expansion] = STATE(329), - [sym_concatenation] = STATE(331), - [sym_expansion] = STATE(329), - [sym_word] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1671), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym__special_character] = ACTIONS(231), - [sym_comment] = ACTIONS(19), + [307] = { + [sym_command_substitution] = STATE(331), + [aux_sym__literal_repeat1] = STATE(332), + [sym_string] = STATE(331), + [sym_process_substitution] = STATE(331), + [sym_simple_expansion] = STATE(331), + [sym_string_expansion] = STATE(331), + [sym_concatenation] = STATE(333), + [sym_expansion] = STATE(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1726), + [sym_word] = ACTIONS(1728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_BQUOTE] = ACTIONS(243), + [sym__special_character] = ACTIONS(255), + [sym_number] = ACTIONS(1728), + [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [302] = { + [308] = { [aux_sym__literal_repeat1] = STATE(539), [sym_if_statement] = STATE(540), [sym_function_definition] = STATE(540), @@ -15248,8 +15783,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(635), [sym_subscript] = STATE(2473), [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), [aux_sym__statements_repeat1] = STATE(636), [sym_redirected_statement] = STATE(540), [sym_for_statement] = STATE(540), @@ -15258,10 +15793,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(540), [sym_unset_command] = STATE(540), [sym_file_redirect] = STATE(544), - [sym_string] = STATE(537), - [sym_process_substitution] = STATE(537), + [sym_string] = STATE(535), + [sym_process_substitution] = STATE(535), [aux_sym_command_repeat1] = STATE(544), - [sym__statements] = STATE(333), + [sym__statements] = STATE(335), [sym_c_style_for_statement] = STATE(540), [sym_while_statement] = STATE(540), [sym_case_statement] = STATE(540), @@ -15269,57 +15804,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(540), [sym_command] = STATE(540), [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), - [sym_word] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(1675), - [anon_sym_typeset] = ACTIONS(1675), - [anon_sym_unsetenv] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(535), + [sym_string_expansion] = STATE(535), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1730), + [anon_sym_typeset] = ACTIONS(1730), + [anon_sym_unsetenv] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [sym_number] = ACTIONS(1740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(1675), - [sym__special_character] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1730), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(1746), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1675), - [sym_variable_name] = ACTIONS(1691), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_unset] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_esac] = ACTIONS(1699), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1701), + [sym_raw_string] = ACTIONS(1748), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1730), + [sym_variable_name] = ACTIONS(1752), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(1730), + [anon_sym_unset] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_esac] = ACTIONS(1758), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_SEMI_SEMI] = ACTIONS(1760), }, - [303] = { - [aux_sym_case_item_repeat1] = STATE(335), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1703), - [sym_comment] = ACTIONS(19), + [309] = { + [aux_sym_case_item_repeat1] = STATE(337), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(41), }, - [304] = { + [310] = { [aux_sym__literal_repeat1] = STATE(539), [sym_if_statement] = STATE(540), [sym_function_definition] = STATE(540), @@ -15328,8 +15864,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(635), [sym_subscript] = STATE(2473), [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), [aux_sym__statements_repeat1] = STATE(636), [sym_redirected_statement] = STATE(540), [sym_for_statement] = STATE(540), @@ -15338,10 +15874,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(540), [sym_unset_command] = STATE(540), [sym_file_redirect] = STATE(544), - [sym_string] = STATE(537), - [sym_process_substitution] = STATE(537), + [sym_string] = STATE(535), + [sym_process_substitution] = STATE(535), [aux_sym_command_repeat1] = STATE(544), - [sym__statements] = STATE(337), + [sym__statements] = STATE(339), [sym_c_style_for_statement] = STATE(540), [sym_while_statement] = STATE(540), [sym_case_statement] = STATE(540), @@ -15349,674 +15885,547 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(540), [sym_command] = STATE(540), [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), - [sym_word] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(1675), - [anon_sym_typeset] = ACTIONS(1675), - [anon_sym_unsetenv] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(535), + [sym_string_expansion] = STATE(535), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1730), + [anon_sym_typeset] = ACTIONS(1730), + [anon_sym_unsetenv] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [sym_number] = ACTIONS(1740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(1675), - [sym__special_character] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1730), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(1746), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1675), - [sym_variable_name] = ACTIONS(1691), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_unset] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_esac] = ACTIONS(1705), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1707), - }, - [305] = { - [aux_sym_case_item_repeat1] = STATE(335), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1709), - [sym_comment] = ACTIONS(19), - }, - [306] = { - [sym_command_substitution] = STATE(339), - [aux_sym__literal_repeat1] = STATE(340), - [sym_case_item] = STATE(306), - [sym_string] = STATE(339), - [sym_process_substitution] = STATE(339), - [sym_simple_expansion] = STATE(339), - [sym_string_expansion] = STATE(339), - [aux_sym_case_statement_repeat1] = STATE(306), - [sym_concatenation] = STATE(341), - [sym_expansion] = STATE(339), - [sym_word] = ACTIONS(1711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1714), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1720), - [sym_raw_string] = ACTIONS(1711), - [anon_sym_BQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_ansii_c_string] = ACTIONS(1711), - [anon_sym_GT_LPAREN] = ACTIONS(1729), - [anon_sym_LT_LPAREN] = ACTIONS(1729), - [sym__special_character] = ACTIONS(1732), - [sym_comment] = ACTIONS(19), - }, - [307] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1735), - [anon_sym_AMP_GT_GT] = ACTIONS(1735), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1735), - [sym_file_descriptor] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [ts_builtin_sym_end] = ACTIONS(1737), - [anon_sym_LT_LT_LT] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_GT_AMP] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_LT_AMP] = ACTIONS(1735), - [anon_sym_GT_GT] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_SEMI_SEMI] = ACTIONS(1735), - [anon_sym_PIPE_AMP] = ACTIONS(1735), - }, - [308] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(1739), - }, - [309] = { - [sym_command_substitution] = STATE(257), - [aux_sym__literal_repeat1] = STATE(259), - [sym_case_item] = STATE(306), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(343), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(306), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_word] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_ansii_c_string] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym__special_character] = ACTIONS(231), - [sym_comment] = ACTIONS(19), - }, - [310] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [anon_sym_EQ_TILDE] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_EQ_EQ] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [ts_builtin_sym_end] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [sym_raw_string] = ACTIONS(1748), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1730), + [sym_variable_name] = ACTIONS(1752), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(1730), + [anon_sym_unset] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_esac] = ACTIONS(1764), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), }, [311] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [aux_sym_case_item_repeat1] = STATE(337), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1768), + [sym_comment] = ACTIONS(41), }, [312] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [ts_builtin_sym_end] = ACTIONS(1749), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [sym_command_substitution] = STATE(341), + [aux_sym__literal_repeat1] = STATE(342), + [sym_case_item] = STATE(312), + [sym_string] = STATE(341), + [sym_process_substitution] = STATE(341), + [sym_simple_expansion] = STATE(341), + [sym_string_expansion] = STATE(341), + [aux_sym_case_statement_repeat1] = STATE(312), + [sym_concatenation] = STATE(343), + [sym_expansion] = STATE(341), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1776), + [sym_word] = ACTIONS(1779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1785), + [sym_ansii_c_string] = ACTIONS(1776), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1791), + [sym__special_character] = ACTIONS(1794), + [sym_number] = ACTIONS(1779), + [anon_sym_GT_LPAREN] = ACTIONS(1788), }, [313] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [anon_sym_EQ_TILDE] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_EQ_EQ] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [ts_builtin_sym_end] = ACTIONS(1753), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_LT_LT_DASH] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_AMP_GT_GT] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_LT_LT] = ACTIONS(1797), + [sym_file_descriptor] = ACTIONS(1799), + [anon_sym_GT] = ACTIONS(1797), + [anon_sym_AMP_GT] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1797), + [ts_builtin_sym_end] = ACTIONS(1799), + [anon_sym_LT_LT_LT] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_GT_AMP] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_LT_AMP] = ACTIONS(1797), + [anon_sym_GT_GT] = ACTIONS(1797), + [anon_sym_AMP_AMP] = ACTIONS(1797), + [anon_sym_SEMI_SEMI] = ACTIONS(1797), + [anon_sym_PIPE_AMP] = ACTIONS(1797), }, [314] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1801), }, [315] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [anon_sym_EQ_TILDE] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_EQ_EQ] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [ts_builtin_sym_end] = ACTIONS(1759), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [sym_command_substitution] = STATE(269), + [aux_sym__literal_repeat1] = STATE(271), + [sym_case_item] = STATE(312), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(345), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(312), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_BQUOTE] = ACTIONS(243), + [sym__special_character] = ACTIONS(255), + [sym_number] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(245), }, [316] = { - [anon_sym_EQ] = ACTIONS(1761), - [anon_sym_PLUS_EQ] = ACTIONS(1761), - [sym_comment] = ACTIONS(19), + [anon_sym_EQ] = ACTIONS(1803), + [anon_sym_PLUS_EQ] = ACTIONS(1803), + [sym_comment] = ACTIONS(41), }, [317] = { - [anon_sym_EQ] = ACTIONS(1763), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [sym_comment] = ACTIONS(19), + [anon_sym_EQ] = ACTIONS(1805), + [anon_sym_PLUS_EQ] = ACTIONS(1805), + [sym_comment] = ACTIONS(41), }, [318] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [sym_file_descriptor] = ACTIONS(1767), - [anon_sym_AMP_GT] = ACTIONS(1765), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [ts_builtin_sym_end] = ACTIONS(1767), - [anon_sym_LT_LT_LT] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_GT_AMP] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_LT_AMP] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1765), - [anon_sym_PIPE_AMP] = ACTIONS(1765), - }, - [319] = { [sym_do_group] = STATE(346), [sym_compound_statement] = STATE(346), - [anon_sym_LBRACE] = ACTIONS(23), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(27), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(635), }, - [320] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1769), - [anon_sym_AMP_GT_GT] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [sym_file_descriptor] = ACTIONS(1771), - [anon_sym_AMP_GT] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1769), - [ts_builtin_sym_end] = ACTIONS(1771), - [anon_sym_LT_LT_LT] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_GT_AMP] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_LT_AMP] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_SEMI_SEMI] = ACTIONS(1769), - [anon_sym_PIPE_AMP] = ACTIONS(1769), + [319] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_AMP_GT_GT] = ACTIONS(1807), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1807), + [sym_file_descriptor] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1807), + [anon_sym_AMP_GT] = ACTIONS(1807), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [ts_builtin_sym_end] = ACTIONS(1809), + [anon_sym_LT_LT_LT] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_GT_AMP] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_LT_AMP] = ACTIONS(1807), + [anon_sym_GT_GT] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_SEMI_SEMI] = ACTIONS(1807), + [anon_sym_PIPE_AMP] = ACTIONS(1807), }, - [321] = { + [320] = { [sym_do_group] = STATE(346), [sym_compound_statement] = STATE(346), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_do] = ACTIONS(619), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(635), }, - [322] = { - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1775), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [sym_test_operator] = ACTIONS(483), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), + [321] = { + [anon_sym_BANG_EQ] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [sym_test_operator] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1813), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), }, - [323] = { - [sym_command_substitution] = STATE(65), + [322] = { + [sym_command_substitution] = STATE(71), [sym_unary_expression] = STATE(349), [sym_postfix_expression] = STATE(349), - [sym_string] = STATE(65), - [aux_sym__literal_repeat1] = STATE(68), - [sym_process_substitution] = STATE(65), + [sym_string] = STATE(71), + [aux_sym__literal_repeat1] = STATE(73), + [sym_process_substitution] = STATE(71), [sym_parenthesized_expression] = STATE(349), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), [sym__expression] = STATE(349), [sym_binary_expression] = STATE(349), [sym_concatenation] = STATE(349), - [sym_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1775), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), + [sym_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), + }, + [323] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_AMP_GT_GT] = ACTIONS(1815), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1817), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_LT_LT] = ACTIONS(1815), + [sym_file_descriptor] = ACTIONS(1817), + [anon_sym_GT] = ACTIONS(1815), + [anon_sym_AMP_GT] = ACTIONS(1815), + [anon_sym_PIPE_PIPE] = ACTIONS(1815), + [ts_builtin_sym_end] = ACTIONS(1817), + [anon_sym_LT_LT_LT] = ACTIONS(1815), + [anon_sym_PIPE] = ACTIONS(1815), + [anon_sym_GT_AMP] = ACTIONS(1815), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_LT_AMP] = ACTIONS(1815), + [anon_sym_GT_GT] = ACTIONS(1815), + [anon_sym_AMP_AMP] = ACTIONS(1815), + [anon_sym_SEMI_SEMI] = ACTIONS(1815), + [anon_sym_PIPE_AMP] = ACTIONS(1815), }, [324] = { + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [anon_sym_EQ_TILDE] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_EQ_EQ] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [ts_builtin_sym_end] = ACTIONS(1821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), + }, + [325] = { + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [anon_sym_EQ_TILDE] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_EQ_EQ] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [ts_builtin_sym_end] = ACTIONS(1825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), + }, + [326] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(255), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), + [aux_sym__statements2] = STATE(267), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_fi] = ACTIONS(1777), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [anon_sym_else] = ACTIONS(1777), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_else] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_elif] = ACTIONS(1777), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_elif] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [325] = { - [sym_word] = ACTIONS(1779), - [anon_sym_AMP_GT_GT] = ACTIONS(1781), - [anon_sym_typeset] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_LT_LPAREN] = ACTIONS(1781), - [anon_sym_done] = ACTIONS(1779), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(1781), - [anon_sym_export] = ACTIONS(1779), - [sym__special_character] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1781), - [sym_raw_string] = ACTIONS(1781), - [anon_sym_declare] = ACTIONS(1779), - [sym_variable_name] = ACTIONS(1781), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_unset] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_GT_AMP] = ACTIONS(1781), - [anon_sym_elif] = ACTIONS(1779), - [sym_ansii_c_string] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_local] = ACTIONS(1779), - [anon_sym_unsetenv] = ACTIONS(1779), - [anon_sym_fi] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_function] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_GT_GT] = ACTIONS(1781), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1781), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1779), - [sym_file_descriptor] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1779), - [anon_sym_AMP_GT] = ACTIONS(1779), - [anon_sym_BQUOTE] = ACTIONS(1781), - [anon_sym_GT_LPAREN] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1781), - }, - [326] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1783), - [anon_sym_AMP_GT_GT] = ACTIONS(1783), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1783), - [sym_file_descriptor] = ACTIONS(1785), - [anon_sym_AMP_GT] = ACTIONS(1783), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [ts_builtin_sym_end] = ACTIONS(1785), - [anon_sym_LT_LT_LT] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_GT_AMP] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_LT_AMP] = ACTIONS(1783), - [anon_sym_GT_GT] = ACTIONS(1783), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_SEMI_SEMI] = ACTIONS(1783), - [anon_sym_PIPE_AMP] = ACTIONS(1783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [327] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1787), - [anon_sym_AMP_GT_GT] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1787), - [sym_file_descriptor] = ACTIONS(1789), - [anon_sym_AMP_GT] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1787), - [ts_builtin_sym_end] = ACTIONS(1789), - [anon_sym_LT_LT_LT] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_GT_AMP] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_LT_AMP] = ACTIONS(1787), - [anon_sym_GT_GT] = ACTIONS(1787), - [anon_sym_AMP_AMP] = ACTIONS(1787), - [anon_sym_SEMI_SEMI] = ACTIONS(1787), - [anon_sym_PIPE_AMP] = ACTIONS(1787), + [anon_sym_AMP_GT_GT] = ACTIONS(1829), + [anon_sym_typeset] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1829), + [anon_sym_done] = ACTIONS(1831), + [anon_sym_GT_LPAREN] = ACTIONS(1829), + [sym_word] = ACTIONS(1831), + [anon_sym_LT_AMP] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1831), + [sym__special_character] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1829), + [sym_raw_string] = ACTIONS(1829), + [anon_sym_declare] = ACTIONS(1831), + [sym_variable_name] = ACTIONS(1829), + [anon_sym_readonly] = ACTIONS(1831), + [anon_sym_unset] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1829), + [anon_sym_GT_AMP] = ACTIONS(1829), + [anon_sym_elif] = ACTIONS(1831), + [sym_ansii_c_string] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_local] = ACTIONS(1831), + [anon_sym_unsetenv] = ACTIONS(1831), + [anon_sym_fi] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1831), + [sym_number] = ACTIONS(1831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1829), + [anon_sym_function] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_GT_GT] = ACTIONS(1829), + [anon_sym_case] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1831), + [anon_sym_AMP_GT] = ACTIONS(1831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1829), + [anon_sym_LT_LPAREN] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1829), }, [328] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(1791), + [anon_sym_LT_LT_DASH] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_AMP_GT_GT] = ACTIONS(1833), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_LT_LT] = ACTIONS(1833), + [sym_file_descriptor] = ACTIONS(1835), + [anon_sym_GT] = ACTIONS(1833), + [anon_sym_AMP_GT] = ACTIONS(1833), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [ts_builtin_sym_end] = ACTIONS(1835), + [anon_sym_LT_LT_LT] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_GT_AMP] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_LT_AMP] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1833), + [anon_sym_SEMI_SEMI] = ACTIONS(1833), + [anon_sym_PIPE_AMP] = ACTIONS(1833), }, [329] = { - [aux_sym_concatenation_repeat1] = STATE(772), - [anon_sym_RPAREN] = ACTIONS(1793), - [sym__concat] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(1793), - [sym_comment] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_AMP_GT_GT] = ACTIONS(1837), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [sym_file_descriptor] = ACTIONS(1839), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_AMP_GT] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1839), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_GT_AMP] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_LT_AMP] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_SEMI_SEMI] = ACTIONS(1837), + [anon_sym_PIPE_AMP] = ACTIONS(1837), }, [330] = { - [aux_sym__literal_repeat1] = STATE(778), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [sym__special_character] = ACTIONS(1538), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1841), }, [331] = { - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_RPAREN] = ACTIONS(1793), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(775), + [anon_sym_RPAREN] = ACTIONS(1843), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(1843), }, [332] = { - [sym_word] = ACTIONS(1797), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1799), - [sym_raw_string] = ACTIONS(1799), - [anon_sym_BQUOTE] = ACTIONS(1799), - [anon_sym_esac] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1797), - [sym_ansii_c_string] = ACTIONS(1799), - [anon_sym_GT_LPAREN] = ACTIONS(1799), - [anon_sym_LT_LPAREN] = ACTIONS(1799), - [sym__special_character] = ACTIONS(1799), - [sym_comment] = ACTIONS(19), + [aux_sym__literal_repeat1] = STATE(778), + [anon_sym_RPAREN] = ACTIONS(1845), + [sym_comment] = ACTIONS(41), + [anon_sym_PIPE] = ACTIONS(1845), + [sym__special_character] = ACTIONS(1602), }, [333] = { - [sym_comment] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(1803), - [anon_sym_esac] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), + [sym_comment] = ACTIONS(41), }, [334] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1847), + [sym_word] = ACTIONS(1849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1847), + [anon_sym_esac] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(1849), + [sym_ansii_c_string] = ACTIONS(1847), + [anon_sym_LT_LPAREN] = ACTIONS(1847), + [anon_sym_BQUOTE] = ACTIONS(1847), + [sym__special_character] = ACTIONS(1847), + [sym_number] = ACTIONS(1849), + [anon_sym_GT_LPAREN] = ACTIONS(1847), + }, + [335] = { + [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1853), + [anon_sym_esac] = ACTIONS(1855), + }, + [336] = { [aux_sym__literal_repeat1] = STATE(539), [sym_if_statement] = STATE(540), [sym_function_definition] = STATE(540), @@ -16025,8 +16434,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(635), [sym_subscript] = STATE(2473), [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), [aux_sym__statements_repeat1] = STATE(636), [sym_redirected_statement] = STATE(540), [sym_for_statement] = STATE(540), @@ -16035,8 +16444,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(540), [sym_unset_command] = STATE(540), [sym_file_redirect] = STATE(544), - [sym_string] = STATE(537), - [sym_process_substitution] = STATE(537), + [sym_string] = STATE(535), + [sym_process_substitution] = STATE(535), [aux_sym_command_repeat1] = STATE(544), [sym__statements] = STATE(352), [sym_c_style_for_statement] = STATE(540), @@ -16046,77 +16455,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(540), [sym_command] = STATE(540), [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), - [sym_word] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(1675), - [anon_sym_typeset] = ACTIONS(1675), - [anon_sym_unsetenv] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(535), + [sym_string_expansion] = STATE(535), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1730), + [anon_sym_typeset] = ACTIONS(1730), + [anon_sym_unsetenv] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [sym_number] = ACTIONS(1740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(1675), - [sym__special_character] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1730), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(1746), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1675), - [sym_variable_name] = ACTIONS(1691), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_unset] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_esac] = ACTIONS(1801), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1803), - }, - [335] = { - [aux_sym_case_item_repeat1] = STATE(335), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_RPAREN] = ACTIONS(1793), - [sym_comment] = ACTIONS(19), - }, - [336] = { - [sym_word] = ACTIONS(1810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_esac] = ACTIONS(1814), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_ansii_c_string] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [sym__special_character] = ACTIONS(1812), - [sym_comment] = ACTIONS(19), + [sym_raw_string] = ACTIONS(1748), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1730), + [sym_variable_name] = ACTIONS(1752), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(1730), + [anon_sym_unset] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_esac] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_SEMI_SEMI] = ACTIONS(1853), }, [337] = { - [sym_comment] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(1816), - [anon_sym_esac] = ACTIONS(1818), + [aux_sym_case_item_repeat1] = STATE(337), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1843), + [sym_comment] = ACTIONS(41), }, [338] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1860), + [sym_word] = ACTIONS(1862), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_esac] = ACTIONS(1864), + [anon_sym_DOLLAR] = ACTIONS(1862), + [sym_ansii_c_string] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [sym__special_character] = ACTIONS(1860), + [sym_number] = ACTIONS(1862), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + }, + [339] = { + [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [anon_sym_esac] = ACTIONS(1868), + }, + [340] = { [aux_sym__literal_repeat1] = STATE(539), [sym_if_statement] = STATE(540), [sym_function_definition] = STATE(540), @@ -16125,8 +16536,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(635), [sym_subscript] = STATE(2473), [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), [aux_sym__statements_repeat1] = STATE(636), [sym_redirected_statement] = STATE(540), [sym_for_statement] = STATE(540), @@ -16135,8 +16546,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(540), [sym_unset_command] = STATE(540), [sym_file_redirect] = STATE(544), - [sym_string] = STATE(537), - [sym_process_substitution] = STATE(537), + [sym_string] = STATE(535), + [sym_process_substitution] = STATE(535), [aux_sym_command_repeat1] = STATE(544), [sym__statements] = STATE(354), [sym_c_style_for_statement] = STATE(540), @@ -16146,294 +16557,223 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(540), [sym_command] = STATE(540), [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), - [sym_word] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(1675), - [anon_sym_typeset] = ACTIONS(1675), - [anon_sym_unsetenv] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(535), + [sym_string_expansion] = STATE(535), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1730), + [anon_sym_typeset] = ACTIONS(1730), + [anon_sym_unsetenv] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [sym_number] = ACTIONS(1740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(1675), - [sym__special_character] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1730), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(1746), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1675), - [sym_variable_name] = ACTIONS(1691), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_unset] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_esac] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1816), - }, - [339] = { - [aux_sym_concatenation_repeat1] = STATE(772), - [aux_sym_case_item_repeat1] = STATE(356), - [anon_sym_RPAREN] = ACTIONS(1820), - [sym__concat] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(1530), - [sym_comment] = ACTIONS(19), - }, - [340] = { - [aux_sym__literal_repeat1] = STATE(778), - [aux_sym_case_item_repeat1] = STATE(358), - [anon_sym_RPAREN] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1530), - [sym__special_character] = ACTIONS(1538), - [sym_comment] = ACTIONS(19), + [sym_raw_string] = ACTIONS(1748), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1730), + [sym_variable_name] = ACTIONS(1752), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(1730), + [anon_sym_unset] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_esac] = ACTIONS(1864), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_SEMI_SEMI] = ACTIONS(1866), }, [341] = { + [aux_sym_concatenation_repeat1] = STATE(775), [aux_sym_case_item_repeat1] = STATE(356), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1820), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(1870), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(1594), }, [342] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1824), - [anon_sym_AMP_GT_GT] = ACTIONS(1824), - [anon_sym_LF] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_LT_LT] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_GT] = ACTIONS(1824), - [sym_file_descriptor] = ACTIONS(1826), - [anon_sym_AMP_GT] = ACTIONS(1824), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [ts_builtin_sym_end] = ACTIONS(1826), - [anon_sym_LT_LT_LT] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_GT_AMP] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1824), - [anon_sym_LT_AMP] = ACTIONS(1824), - [anon_sym_GT_GT] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_SEMI_SEMI] = ACTIONS(1824), - [anon_sym_PIPE_AMP] = ACTIONS(1824), + [aux_sym__literal_repeat1] = STATE(778), + [aux_sym_case_item_repeat1] = STATE(358), + [anon_sym_RPAREN] = ACTIONS(1872), + [sym_comment] = ACTIONS(41), + [anon_sym_PIPE] = ACTIONS(1594), + [sym__special_character] = ACTIONS(1602), }, [343] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(1828), + [aux_sym_case_item_repeat1] = STATE(356), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1870), + [sym_comment] = ACTIONS(41), }, [344] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [anon_sym_EQ_TILDE] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_EQ_EQ] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1876), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [345] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [anon_sym_EQ_TILDE] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [ts_builtin_sym_end] = ACTIONS(1836), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1878), }, [346] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1840), - [anon_sym_AMP_GT] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [ts_builtin_sym_end] = ACTIONS(1840), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), + [anon_sym_LT_LT_DASH] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LT_LT] = ACTIONS(1880), + [sym_file_descriptor] = ACTIONS(1882), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_GT_AMP] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_LT_AMP] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1880), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_SEMI_SEMI] = ACTIONS(1880), + [anon_sym_PIPE_AMP] = ACTIONS(1880), }, [347] = { [sym_do_group] = STATE(360), [sym_compound_statement] = STATE(360), - [anon_sym_LBRACE] = ACTIONS(23), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(27), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(635), }, [348] = { [sym_do_group] = STATE(360), [sym_compound_statement] = STATE(360), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(619), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(635), }, [349] = { - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1844), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [sym_test_operator] = ACTIONS(483), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), + [anon_sym_BANG_EQ] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [sym_test_operator] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), }, [350] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1846), - [anon_sym_AMP_GT_GT] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LT_LT] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1846), - [sym_file_descriptor] = ACTIONS(1848), - [anon_sym_AMP_GT] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [ts_builtin_sym_end] = ACTIONS(1848), - [anon_sym_LT_LT_LT] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_GT_AMP] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_LT_AMP] = ACTIONS(1846), - [anon_sym_GT_GT] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_SEMI_SEMI] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [sym_file_descriptor] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [ts_builtin_sym_end] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), }, [351] = { - [sym_word] = ACTIONS(1850), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(1852), - [anon_sym_BQUOTE] = ACTIONS(1852), - [anon_sym_esac] = ACTIONS(1854), - [anon_sym_DOLLAR] = ACTIONS(1850), - [sym_ansii_c_string] = ACTIONS(1852), - [anon_sym_GT_LPAREN] = ACTIONS(1852), - [anon_sym_LT_LPAREN] = ACTIONS(1852), - [sym__special_character] = ACTIONS(1852), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_esac] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym__special_character] = ACTIONS(1892), + [sym_number] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1892), }, [352] = { - [sym_comment] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(1856), - [anon_sym_esac] = ACTIONS(1858), + [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1898), + [anon_sym_esac] = ACTIONS(1900), }, [353] = { - [sym_word] = ACTIONS(1860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1862), - [anon_sym_DQUOTE] = ACTIONS(1862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1862), - [sym_raw_string] = ACTIONS(1862), - [anon_sym_BQUOTE] = ACTIONS(1862), - [anon_sym_esac] = ACTIONS(1864), - [anon_sym_DOLLAR] = ACTIONS(1860), - [sym_ansii_c_string] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [sym__special_character] = ACTIONS(1862), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1902), + [sym_word] = ACTIONS(1904), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1902), + [anon_sym_esac] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1904), + [sym_ansii_c_string] = ACTIONS(1902), + [anon_sym_LT_LPAREN] = ACTIONS(1902), + [anon_sym_BQUOTE] = ACTIONS(1902), + [sym__special_character] = ACTIONS(1902), + [sym_number] = ACTIONS(1904), + [anon_sym_GT_LPAREN] = ACTIONS(1902), }, [354] = { - [sym_comment] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(1866), - [anon_sym_esac] = ACTIONS(1868), + [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1908), + [anon_sym_esac] = ACTIONS(1910), }, [355] = { [aux_sym__literal_repeat1] = STATE(386), @@ -16444,8 +16784,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(695), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(1463), [sym_redirected_statement] = STATE(634), [sym_for_statement] = STATE(634), @@ -16454,8 +16794,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(634), [sym_unset_command] = STATE(634), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(366), [sym_c_style_for_statement] = STATE(634), @@ -16465,54 +16805,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(634), [sym_command] = STATE(634), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_SEMI_SEMI] = ACTIONS(1912), }, [356] = { - [aux_sym_case_item_repeat1] = STATE(335), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1872), - [sym_comment] = ACTIONS(19), + [aux_sym_case_item_repeat1] = STATE(337), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1914), + [sym_comment] = ACTIONS(41), }, [357] = { [aux_sym__literal_repeat1] = STATE(386), @@ -16523,8 +16864,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(695), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(1463), [sym_redirected_statement] = STATE(634), [sym_for_statement] = STATE(634), @@ -16533,8 +16874,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(634), [sym_unset_command] = STATE(634), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(369), [sym_c_style_for_statement] = STATE(634), @@ -16544,163 +16885,167 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(634), [sym_command] = STATE(634), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), }, [358] = { - [aux_sym_case_item_repeat1] = STATE(335), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(19), + [aux_sym_case_item_repeat1] = STATE(337), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1918), + [sym_comment] = ACTIONS(41), }, [359] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [ts_builtin_sym_end] = ACTIONS(1880), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_AMP_GT_GT] = ACTIONS(1920), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_LT_LT] = ACTIONS(1920), + [sym_file_descriptor] = ACTIONS(1922), + [anon_sym_GT] = ACTIONS(1920), + [anon_sym_AMP_GT] = ACTIONS(1920), + [anon_sym_PIPE_PIPE] = ACTIONS(1920), + [ts_builtin_sym_end] = ACTIONS(1922), + [anon_sym_LT_LT_LT] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_GT_AMP] = ACTIONS(1920), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_LT_AMP] = ACTIONS(1920), + [anon_sym_GT_GT] = ACTIONS(1920), + [anon_sym_AMP_AMP] = ACTIONS(1920), + [anon_sym_SEMI_SEMI] = ACTIONS(1920), + [anon_sym_PIPE_AMP] = ACTIONS(1920), }, [360] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1882), - [anon_sym_AMP_GT_GT] = ACTIONS(1882), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_GT] = ACTIONS(1882), - [sym_file_descriptor] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1882), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [ts_builtin_sym_end] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_GT_AMP] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_LT_AMP] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_AMP_AMP] = ACTIONS(1882), - [anon_sym_SEMI_SEMI] = ACTIONS(1882), - [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1926), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), }, [361] = { [sym_do_group] = STATE(371), [sym_compound_statement] = STATE(371), - [anon_sym_LBRACE] = ACTIONS(23), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(27), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(635), }, [362] = { [sym_do_group] = STATE(371), [sym_compound_statement] = STATE(371), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_do] = ACTIONS(619), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_do] = ACTIONS(635), }, [363] = { - [sym_word] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_ansii_c_string] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [sym__special_character] = ACTIONS(1890), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1930), + [sym_word] = ACTIONS(1932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1930), + [anon_sym_esac] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1932), + [sym_ansii_c_string] = ACTIONS(1930), + [anon_sym_LT_LPAREN] = ACTIONS(1930), + [anon_sym_BQUOTE] = ACTIONS(1930), + [sym__special_character] = ACTIONS(1930), + [sym_number] = ACTIONS(1932), + [anon_sym_GT_LPAREN] = ACTIONS(1930), }, [364] = { - [sym_word] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1896), - [anon_sym_BQUOTE] = ACTIONS(1896), - [anon_sym_esac] = ACTIONS(1898), - [anon_sym_DOLLAR] = ACTIONS(1894), - [sym_ansii_c_string] = ACTIONS(1896), - [anon_sym_GT_LPAREN] = ACTIONS(1896), - [anon_sym_LT_LPAREN] = ACTIONS(1896), - [sym__special_character] = ACTIONS(1896), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1936), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1936), + [sym_word] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_esac] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_ansii_c_string] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [sym__special_character] = ACTIONS(1936), + [sym_number] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1936), }, [365] = { - [sym_word] = ACTIONS(1799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1799), - [sym_raw_string] = ACTIONS(1799), - [anon_sym_BQUOTE] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1797), - [sym_ansii_c_string] = ACTIONS(1799), - [anon_sym_GT_LPAREN] = ACTIONS(1799), - [anon_sym_LT_LPAREN] = ACTIONS(1799), - [sym__special_character] = ACTIONS(1799), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1847), + [sym_word] = ACTIONS(1849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1849), + [sym_ansii_c_string] = ACTIONS(1847), + [anon_sym_LT_LPAREN] = ACTIONS(1847), + [anon_sym_BQUOTE] = ACTIONS(1847), + [sym__special_character] = ACTIONS(1847), + [sym_number] = ACTIONS(1849), + [anon_sym_GT_LPAREN] = ACTIONS(1847), }, [366] = { - [sym_comment] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [sym_comment] = ACTIONS(41), }, [367] = { [aux_sym__literal_repeat1] = STATE(386), @@ -16711,8 +17056,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(695), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(1463), [sym_redirected_statement] = STATE(634), [sym_for_statement] = STATE(634), @@ -16721,8 +17066,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(634), [sym_unset_command] = STATE(634), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(374), [sym_c_style_for_statement] = STATE(634), @@ -16732,66 +17077,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(634), [sym_command] = STATE(634), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), }, [368] = { - [sym_word] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), - [sym_raw_string] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1810), - [sym_ansii_c_string] = ACTIONS(1812), - [anon_sym_GT_LPAREN] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1812), - [sym__special_character] = ACTIONS(1812), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1860), + [sym_word] = ACTIONS(1862), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1862), + [sym_ansii_c_string] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [sym__special_character] = ACTIONS(1860), + [sym_number] = ACTIONS(1862), + [anon_sym_GT_LPAREN] = ACTIONS(1860), }, [369] = { - [sym_comment] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(1902), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), + [sym_comment] = ACTIONS(41), }, [370] = { [aux_sym__literal_repeat1] = STATE(386), @@ -16802,8 +17149,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(695), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(1463), [sym_redirected_statement] = STATE(634), [sym_for_statement] = STATE(634), @@ -16812,8 +17159,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(634), [sym_unset_command] = STATE(634), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(376), [sym_c_style_for_statement] = STATE(634), @@ -16823,553 +17170,567 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(634), [sym_command] = STATE(634), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), }, [371] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1904), - [anon_sym_AMP_GT_GT] = ACTIONS(1904), - [anon_sym_LF] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_LT_LT] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_GT] = ACTIONS(1904), - [sym_file_descriptor] = ACTIONS(1906), - [anon_sym_AMP_GT] = ACTIONS(1904), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1904), - [ts_builtin_sym_end] = ACTIONS(1906), - [anon_sym_LT_LT_LT] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1904), - [anon_sym_GT_AMP] = ACTIONS(1904), - [anon_sym_LT] = ACTIONS(1904), - [anon_sym_LT_AMP] = ACTIONS(1904), - [anon_sym_GT_GT] = ACTIONS(1904), - [anon_sym_AMP_AMP] = ACTIONS(1904), - [anon_sym_SEMI_SEMI] = ACTIONS(1904), - [anon_sym_PIPE_AMP] = ACTIONS(1904), + [anon_sym_LT_LT_DASH] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_AMP_GT_GT] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LT_LT] = ACTIONS(1946), + [sym_file_descriptor] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_AMP_GT] = ACTIONS(1946), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [ts_builtin_sym_end] = ACTIONS(1948), + [anon_sym_LT_LT_LT] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_GT_AMP] = ACTIONS(1946), + [anon_sym_LT] = ACTIONS(1946), + [anon_sym_LT_AMP] = ACTIONS(1946), + [anon_sym_GT_GT] = ACTIONS(1946), + [anon_sym_AMP_AMP] = ACTIONS(1946), + [anon_sym_SEMI_SEMI] = ACTIONS(1946), + [anon_sym_PIPE_AMP] = ACTIONS(1946), }, [372] = { [sym_do_group] = STATE(377), [sym_compound_statement] = STATE(377), - [anon_sym_LBRACE] = ACTIONS(23), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(27), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(635), }, [373] = { - [sym_word] = ACTIONS(1852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(1852), - [anon_sym_BQUOTE] = ACTIONS(1852), - [anon_sym_DOLLAR] = ACTIONS(1850), - [sym_ansii_c_string] = ACTIONS(1852), - [anon_sym_GT_LPAREN] = ACTIONS(1852), - [anon_sym_LT_LPAREN] = ACTIONS(1852), - [sym__special_character] = ACTIONS(1852), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1892), + [sym_word] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym__special_character] = ACTIONS(1892), + [sym_number] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1892), }, [374] = { - [sym_comment] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(1908), + [anon_sym_SEMI_SEMI] = ACTIONS(1950), + [sym_comment] = ACTIONS(41), }, [375] = { - [sym_word] = ACTIONS(1862), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1862), - [anon_sym_DQUOTE] = ACTIONS(1862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1862), - [sym_raw_string] = ACTIONS(1862), - [anon_sym_BQUOTE] = ACTIONS(1862), - [anon_sym_DOLLAR] = ACTIONS(1860), - [sym_ansii_c_string] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [sym__special_character] = ACTIONS(1862), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1902), + [sym_word] = ACTIONS(1904), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1904), + [sym_ansii_c_string] = ACTIONS(1902), + [anon_sym_LT_LPAREN] = ACTIONS(1902), + [anon_sym_BQUOTE] = ACTIONS(1902), + [sym__special_character] = ACTIONS(1902), + [sym_number] = ACTIONS(1904), + [anon_sym_GT_LPAREN] = ACTIONS(1902), }, [376] = { - [sym_comment] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(1910), + [anon_sym_SEMI_SEMI] = ACTIONS(1952), + [sym_comment] = ACTIONS(41), }, [377] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1912), - [anon_sym_AMP_GT_GT] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LT_LT] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_GT] = ACTIONS(1912), - [sym_file_descriptor] = ACTIONS(1914), - [anon_sym_AMP_GT] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [ts_builtin_sym_end] = ACTIONS(1914), - [anon_sym_LT_LT_LT] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_GT_AMP] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_LT_AMP] = ACTIONS(1912), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), + [anon_sym_LT_LT_DASH] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_AMP_GT_GT] = ACTIONS(1954), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_LT_LT] = ACTIONS(1954), + [sym_file_descriptor] = ACTIONS(1956), + [anon_sym_GT] = ACTIONS(1954), + [anon_sym_AMP_GT] = ACTIONS(1954), + [anon_sym_PIPE_PIPE] = ACTIONS(1954), + [ts_builtin_sym_end] = ACTIONS(1956), + [anon_sym_LT_LT_LT] = ACTIONS(1954), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_GT_AMP] = ACTIONS(1954), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_LT_AMP] = ACTIONS(1954), + [anon_sym_GT_GT] = ACTIONS(1954), + [anon_sym_AMP_AMP] = ACTIONS(1954), + [anon_sym_SEMI_SEMI] = ACTIONS(1954), + [anon_sym_PIPE_AMP] = ACTIONS(1954), }, [378] = { - [sym_word] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_ansii_c_string] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [sym__special_character] = ACTIONS(1890), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1930), + [sym_word] = ACTIONS(1932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1930), + [anon_sym_DOLLAR] = ACTIONS(1932), + [sym_ansii_c_string] = ACTIONS(1930), + [anon_sym_LT_LPAREN] = ACTIONS(1930), + [anon_sym_BQUOTE] = ACTIONS(1930), + [sym__special_character] = ACTIONS(1930), + [sym_number] = ACTIONS(1932), + [anon_sym_GT_LPAREN] = ACTIONS(1930), }, [379] = { - [sym_word] = ACTIONS(1896), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), - [sym_raw_string] = ACTIONS(1896), - [anon_sym_BQUOTE] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1894), - [sym_ansii_c_string] = ACTIONS(1896), - [anon_sym_GT_LPAREN] = ACTIONS(1896), - [anon_sym_LT_LPAREN] = ACTIONS(1896), - [sym__special_character] = ACTIONS(1896), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1936), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1936), + [sym_word] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_ansii_c_string] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [sym__special_character] = ACTIONS(1936), + [sym_number] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1936), }, [380] = { - [aux_sym_concatenation_repeat1] = STATE(393), - [sym_word] = ACTIONS(61), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_AMP_GT_GT] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_LT_LT] = ACTIONS(61), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [sym__concat] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_LT_AMP] = ACTIONS(61), - [anon_sym_GT_GT] = ACTIONS(61), - [anon_sym_EQ_TILDE] = ACTIONS(61), - [sym__special_character] = ACTIONS(61), - [anon_sym_LT_LT_DASH] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_LF] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(61), - [sym_raw_string] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(61), - [anon_sym_AMP] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(61), - [sym_file_descriptor] = ACTIONS(67), - [anon_sym_AMP_GT] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT_LT_LT] = ACTIONS(61), - [anon_sym_GT_AMP] = ACTIONS(61), - [anon_sym_BQUOTE] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_ansii_c_string] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_SEMI_SEMI] = ACTIONS(61), - [anon_sym_PIPE_AMP] = ACTIONS(61), + [aux_sym__literal_repeat1] = STATE(397), + [sym_string] = STATE(396), + [sym_process_substitution] = STATE(396), + [sym_variable_assignment] = STATE(398), + [sym_subscript] = STATE(2464), + [sym_concatenation] = STATE(398), + [sym_expansion] = STATE(396), + [sym_command_substitution] = STATE(396), + [aux_sym_declaration_command_repeat1] = STATE(398), + [sym_simple_expansion] = STATE(396), + [sym_string_expansion] = STATE(396), + [anon_sym_PIPE_AMP] = ACTIONS(129), + [anon_sym_AMP_GT_GT] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_LT_LT] = ACTIONS(129), + [anon_sym_BQUOTE] = ACTIONS(1960), + [anon_sym_GT_LPAREN] = ACTIONS(1962), + [sym_number] = ACTIONS(1964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1966), + [anon_sym_PIPE_PIPE] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [sym_word] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_AMP] = ACTIONS(129), + [anon_sym_GT_GT] = ACTIONS(129), + [sym__special_character] = ACTIONS(1968), + [anon_sym_LT_LT_DASH] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(129), + [sym_raw_string] = ACTIONS(1964), + [sym_variable_name] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(129), + [sym_file_descriptor] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_AMP_GT] = ACTIONS(129), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_LT_LT_LT] = ACTIONS(129), + [anon_sym_GT_AMP] = ACTIONS(129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [aux_sym__simple_variable_name_token1] = ACTIONS(1976), + [anon_sym_LT_LPAREN] = ACTIONS(1962), + [sym_ansii_c_string] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(129), + [anon_sym_SEMI_SEMI] = ACTIONS(129), + [anon_sym_AMP] = ACTIONS(129), }, [381] = { - [aux_sym__literal_repeat1] = STATE(398), - [sym_string] = STATE(397), - [sym_process_substitution] = STATE(397), - [sym_variable_assignment] = STATE(399), - [sym_subscript] = STATE(2464), - [sym_concatenation] = STATE(399), - [sym_expansion] = STATE(397), - [sym_command_substitution] = STATE(397), - [aux_sym_declaration_command_repeat1] = STATE(399), - [sym_simple_expansion] = STATE(397), - [sym_string_expansion] = STATE(397), - [sym_word] = ACTIONS(1920), - [anon_sym_AMP_GT_GT] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_LT_LT] = ACTIONS(133), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_LT_AMP] = ACTIONS(133), - [anon_sym_GT_GT] = ACTIONS(133), - [sym__special_character] = ACTIONS(1926), - [anon_sym_LT_LT_DASH] = ACTIONS(133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [aux_sym__simple_variable_name_token1] = ACTIONS(1930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1932), - [anon_sym_LF] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(133), - [sym_raw_string] = ACTIONS(1920), - [sym_variable_name] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [sym_file_descriptor] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(133), - [anon_sym_DQUOTE] = ACTIONS(1936), - [anon_sym_LT_LT_LT] = ACTIONS(133), - [anon_sym_GT_AMP] = ACTIONS(133), - [anon_sym_BQUOTE] = ACTIONS(1938), - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [sym_ansii_c_string] = ACTIONS(1920), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_SEMI_SEMI] = ACTIONS(133), - [anon_sym_PIPE_AMP] = ACTIONS(133), + [sym_command_substitution] = STATE(399), + [aux_sym__literal_repeat1] = STATE(400), + [sym_string] = STATE(399), + [aux_sym_unset_command_repeat1] = STATE(401), + [sym_process_substitution] = STATE(399), + [sym_simple_expansion] = STATE(399), + [sym_string_expansion] = STATE(399), + [sym_concatenation] = STATE(401), + [sym_expansion] = STATE(399), + [anon_sym_PIPE_AMP] = ACTIONS(153), + [anon_sym_AMP_GT_GT] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_LT_LT] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(1980), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1986), + [anon_sym_PIPE_PIPE] = ACTIONS(153), + [anon_sym_PIPE] = ACTIONS(153), + [sym_word] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_AMP] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(153), + [sym__special_character] = ACTIONS(1988), + [anon_sym_LT_LT_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(167), + [anon_sym_SEMI] = ACTIONS(153), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_RPAREN] = ACTIONS(153), + [sym_file_descriptor] = ACTIONS(167), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_AMP_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_LT_LT_LT] = ACTIONS(153), + [anon_sym_GT_AMP] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [aux_sym__simple_variable_name_token1] = ACTIONS(1994), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [sym_ansii_c_string] = ACTIONS(1984), + [anon_sym_AMP_AMP] = ACTIONS(153), + [anon_sym_SEMI_SEMI] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), }, [382] = { - [sym_command_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), - [sym_string] = STATE(400), - [aux_sym_unset_command_repeat1] = STATE(402), - [sym_process_substitution] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_concatenation] = STATE(402), - [sym_expansion] = STATE(400), - [sym_word] = ACTIONS(1940), - [anon_sym_AMP_GT_GT] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_LT_LT] = ACTIONS(157), - [anon_sym_LT_LPAREN] = ACTIONS(1944), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(157), - [anon_sym_LT] = ACTIONS(157), - [anon_sym_LT_AMP] = ACTIONS(157), - [anon_sym_GT_GT] = ACTIONS(157), - [sym__special_character] = ACTIONS(1946), - [anon_sym_LT_LT_DASH] = ACTIONS(157), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1948), - [aux_sym__simple_variable_name_token1] = ACTIONS(1950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), - [anon_sym_LF] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(157), - [sym_raw_string] = ACTIONS(1940), - [anon_sym_RPAREN] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(157), - [sym_file_descriptor] = ACTIONS(171), - [anon_sym_AMP_GT] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_LT_LT_LT] = ACTIONS(157), - [anon_sym_GT_AMP] = ACTIONS(157), - [anon_sym_BQUOTE] = ACTIONS(1956), - [anon_sym_GT_LPAREN] = ACTIONS(1944), - [sym_ansii_c_string] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_SEMI_SEMI] = ACTIONS(157), - [anon_sym_PIPE_AMP] = ACTIONS(157), - }, - [383] = { - [aux_sym_concatenation_repeat1] = STATE(393), - [sym_word] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(405), + [anon_sym_AMP] = ACTIONS(189), [anon_sym_AMP_GT_GT] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(189), [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_number] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(1918), + [sym__concat] = ACTIONS(1996), [anon_sym_PIPE] = ACTIONS(189), + [sym_word] = ACTIONS(189), [anon_sym_LT] = ACTIONS(189), [anon_sym_LT_AMP] = ACTIONS(189), [anon_sym_GT_GT] = ACTIONS(189), [anon_sym_EQ_TILDE] = ACTIONS(189), [sym__special_character] = ACTIONS(189), [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(193), [anon_sym_SEMI] = ACTIONS(189), [sym_raw_string] = ACTIONS(189), [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(193), [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), [anon_sym_AMP_GT] = ACTIONS(189), [anon_sym_EQ_EQ] = ACTIONS(189), [anon_sym_DQUOTE] = ACTIONS(189), [anon_sym_LT_LT_LT] = ACTIONS(189), [anon_sym_GT_AMP] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), + }, + [383] = { + [aux_sym_concatenation_repeat1] = STATE(405), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_AMP_GT_GT] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(189), [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_number] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(189), + [sym_word] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_LT_AMP] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_LT_LT_DASH] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_LT_LT_LT] = ACTIONS(189), + [anon_sym_GT_AMP] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), [sym_ansii_c_string] = ACTIONS(189), [anon_sym_AMP_AMP] = ACTIONS(189), [anon_sym_SEMI_SEMI] = ACTIONS(189), [anon_sym_PIPE_AMP] = ACTIONS(189), }, [384] = { - [aux_sym_concatenation_repeat1] = STATE(393), - [sym_word] = ACTIONS(61), - [anon_sym_AMP_GT_GT] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_LT_LT] = ACTIONS(61), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [sym__concat] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_LT_AMP] = ACTIONS(61), - [anon_sym_GT_GT] = ACTIONS(61), - [anon_sym_EQ_TILDE] = ACTIONS(61), - [sym__special_character] = ACTIONS(61), - [anon_sym_LT_LT_DASH] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_LF] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(61), - [sym_raw_string] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(61), - [anon_sym_AMP] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(61), - [sym_file_descriptor] = ACTIONS(67), - [anon_sym_AMP_GT] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT_LT_LT] = ACTIONS(61), - [anon_sym_GT_AMP] = ACTIONS(61), - [anon_sym_BQUOTE] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_ansii_c_string] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_SEMI_SEMI] = ACTIONS(61), - [anon_sym_PIPE_AMP] = ACTIONS(61), + [aux_sym_concatenation_repeat1] = STATE(405), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [385] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [sym_test_command] = STATE(410), [aux_sym_command_repeat1] = STATE(391), [sym_subscript] = STATE(2455), [sym_variable_assignment] = STATE(391), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [sym_command] = STATE(410), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), [sym_subshell] = STATE(410), [sym_file_redirect] = STATE(391), - [anon_sym_LPAREN] = ACTIONS(71), - [sym_word] = ACTIONS(93), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [sym_word] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), [sym__special_character] = ACTIONS(85), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [sym_variable_name] = ACTIONS(243), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), + [sym_variable_name] = ACTIONS(257), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [386] = { [aux_sym__literal_repeat1] = STATE(413), - [sym_word] = ACTIONS(299), - [anon_sym_AMP_GT_GT] = ACTIONS(299), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_LT_LT] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(299), - [anon_sym_PIPE] = ACTIONS(299), - [anon_sym_LT] = ACTIONS(299), - [anon_sym_LT_AMP] = ACTIONS(299), - [anon_sym_GT_GT] = ACTIONS(299), - [anon_sym_EQ_TILDE] = ACTIONS(299), - [sym__special_character] = ACTIONS(1958), - [anon_sym_LT_LT_DASH] = ACTIONS(299), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_LF] = ACTIONS(303), - [anon_sym_SEMI] = ACTIONS(299), - [sym_raw_string] = ACTIONS(299), - [anon_sym_RPAREN] = ACTIONS(299), - [anon_sym_AMP] = ACTIONS(299), - [anon_sym_GT] = ACTIONS(299), - [sym_file_descriptor] = ACTIONS(303), - [anon_sym_AMP_GT] = ACTIONS(299), - [anon_sym_EQ_EQ] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(299), - [anon_sym_LT_LT_LT] = ACTIONS(299), - [anon_sym_GT_AMP] = ACTIONS(299), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_ansii_c_string] = ACTIONS(299), - [anon_sym_AMP_AMP] = ACTIONS(299), - [anon_sym_SEMI_SEMI] = ACTIONS(299), - [anon_sym_PIPE_AMP] = ACTIONS(299), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(307), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_BQUOTE] = ACTIONS(307), + [anon_sym_GT_LPAREN] = ACTIONS(307), + [sym_number] = ACTIONS(307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(307), + [sym_word] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_LT_AMP] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [sym__special_character] = ACTIONS(2000), + [anon_sym_LT_LT_DASH] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(307), + [sym_raw_string] = ACTIONS(307), + [anon_sym_RPAREN] = ACTIONS(307), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(307), + [anon_sym_LT_LT_LT] = ACTIONS(307), + [anon_sym_GT_AMP] = ACTIONS(307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(307), + [anon_sym_LT_LPAREN] = ACTIONS(307), + [sym_ansii_c_string] = ACTIONS(307), + [anon_sym_AMP_AMP] = ACTIONS(307), + [anon_sym_SEMI_SEMI] = ACTIONS(307), + [anon_sym_PIPE_AMP] = ACTIONS(307), }, [387] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_SEMI_SEMI] = ACTIONS(1960), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LF] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_AMP_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2006), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_PIPE_AMP] = ACTIONS(491), }, [388] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1960), - [sym_variable_name] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(1960), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(491), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2002), + [sym_variable_name] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(2006), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(491), }, [389] = { - [sym_word] = ACTIONS(61), - [anon_sym_AMP_GT_GT] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_LT_LT] = ACTIONS(61), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_LT_AMP] = ACTIONS(61), - [anon_sym_GT_GT] = ACTIONS(61), - [anon_sym_EQ_TILDE] = ACTIONS(61), - [sym__special_character] = ACTIONS(61), - [anon_sym_LT_LT_DASH] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_LF] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(61), - [sym_raw_string] = ACTIONS(61), - [anon_sym_RPAREN] = ACTIONS(61), - [anon_sym_AMP] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(61), - [sym_file_descriptor] = ACTIONS(67), - [anon_sym_AMP_GT] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT_LT_LT] = ACTIONS(61), - [anon_sym_GT_AMP] = ACTIONS(61), - [anon_sym_BQUOTE] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_ansii_c_string] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_SEMI_SEMI] = ACTIONS(61), - [anon_sym_PIPE_AMP] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_AMP_GT_GT] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_number] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [sym_word] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_LT_AMP] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_LT_LT_DASH] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_LT_LT_LT] = ACTIONS(189), + [anon_sym_GT_AMP] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), }, [390] = { [aux_sym__literal_repeat1] = STATE(386), @@ -17380,8 +17741,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(420), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(101), [sym_redirected_statement] = STATE(419), [sym_for_statement] = STATE(419), @@ -17390,8 +17751,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(419), [sym_unset_command] = STATE(419), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym_c_style_for_statement] = STATE(419), [sym_while_statement] = STATE(419), @@ -17400,827 +17761,888 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(419), [sym_command] = STATE(419), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [391] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [sym_variable_assignment] = STATE(103), [sym_subscript] = STATE(2455), [aux_sym_command_repeat1] = STATE(103), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [sym_command_name] = STATE(422), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), [sym_file_redirect] = STATE(103), - [sym_word] = ACTIONS(93), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [sym__special_character] = ACTIONS(1966), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [sym_word] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [sym__special_character] = ACTIONS(2008), + [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(93), - [sym_variable_name] = ACTIONS(243), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), + [sym_variable_name] = ACTIONS(257), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), [sym_ansii_c_string] = ACTIONS(93), }, [392] = { - [sym_command_substitution] = STATE(423), + [sym_command_substitution] = STATE(424), [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(423), - [sym_process_substitution] = STATE(423), - [sym_simple_expansion] = STATE(423), - [sym_string_expansion] = STATE(423), + [sym_string] = STATE(424), + [sym_process_substitution] = STATE(424), + [sym_simple_expansion] = STATE(424), + [sym_string_expansion] = STATE(424), [aux_sym_command_repeat2] = STATE(426), [sym_concatenation] = STATE(426), - [sym_expansion] = STATE(423), - [sym_word] = ACTIONS(1968), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_EQ_TILDE] = ACTIONS(1972), + [sym_expansion] = STATE(424), + [anon_sym_PIPE_AMP] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(341), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(341), + [anon_sym_BQUOTE] = ACTIONS(2010), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_number] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(341), + [sym_word] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_AMP] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(2018), [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_SEMI] = ACTIONS(335), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_RPAREN] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_GT] = ACTIONS(335), - [sym_file_descriptor] = ACTIONS(345), - [anon_sym_AMP_GT] = ACTIONS(335), - [anon_sym_EQ_EQ] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1978), - [anon_sym_LT_LT_LT] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_SEMI_SEMI] = ACTIONS(335), - [anon_sym_PIPE_AMP] = ACTIONS(335), + [anon_sym_LT_LT_DASH] = ACTIONS(341), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(341), + [sym_raw_string] = ACTIONS(2014), + [anon_sym_RPAREN] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(353), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(341), + [anon_sym_GT_AMP] = ACTIONS(341), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [sym_ansii_c_string] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_SEMI_SEMI] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), }, [393] = { - [aux_sym_concatenation_repeat1] = STATE(429), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [anon_sym_EQ_TILDE] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [anon_sym_RPAREN] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [aux_sym_concatenation_repeat1] = STATE(1004), + [anon_sym_LT_LT_DASH] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_AMP_GT_GT] = ACTIONS(363), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(363), + [sym_file_descriptor] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_AMP_GT] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [ts_builtin_sym_end] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_GT_AMP] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_AMP] = ACTIONS(363), + [anon_sym_GT_GT] = ACTIONS(363), + [sym__concat] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_SEMI_SEMI] = ACTIONS(363), + [anon_sym_PIPE_AMP] = ACTIONS(363), }, [394] = { - [aux_sym_concatenation_repeat1] = STATE(1001), - [anon_sym_LT_LT_DASH] = ACTIONS(365), - [anon_sym_AMP_GT_GT] = ACTIONS(365), - [anon_sym_LF] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(365), - [anon_sym_LT_LT] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_GT] = ACTIONS(365), - [sym_file_descriptor] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(365), - [ts_builtin_sym_end] = ACTIONS(363), - [anon_sym_LT_LT_LT] = ACTIONS(365), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_GT_AMP] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_AMP] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [sym__concat] = ACTIONS(1131), - [anon_sym_AMP_AMP] = ACTIONS(365), - [anon_sym_SEMI_SEMI] = ACTIONS(365), - [anon_sym_PIPE_AMP] = ACTIONS(365), + [aux_sym__literal_repeat1] = STATE(1039), + [anon_sym_LT_LT_DASH] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [sym_file_descriptor] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(367), + [anon_sym_LT_LT_LT] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [sym__special_character] = ACTIONS(1166), + [anon_sym_SEMI_SEMI] = ACTIONS(369), + [anon_sym_PIPE_AMP] = ACTIONS(369), }, [395] = { - [aux_sym__literal_repeat1] = STATE(1039), - [anon_sym_LT_LT_DASH] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LF] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(371), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [sym_file_descriptor] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(371), - [ts_builtin_sym_end] = ACTIONS(369), - [anon_sym_LT_LT_LT] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_AMP] = ACTIONS(371), - [sym__special_character] = ACTIONS(1137), - [anon_sym_SEMI_SEMI] = ACTIONS(371), - [anon_sym_PIPE_AMP] = ACTIONS(371), + [anon_sym_LT_LT_DASH] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_AMP_GT_GT] = ACTIONS(363), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(363), + [sym_file_descriptor] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_AMP_GT] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [ts_builtin_sym_end] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_GT_AMP] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_AMP] = ACTIONS(363), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_SEMI_SEMI] = ACTIONS(363), + [anon_sym_PIPE_AMP] = ACTIONS(363), }, [396] = { - [anon_sym_LT_LT_DASH] = ACTIONS(365), - [anon_sym_AMP_GT_GT] = ACTIONS(365), - [anon_sym_LF] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(365), - [anon_sym_LT_LT] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_GT] = ACTIONS(365), - [sym_file_descriptor] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(365), - [ts_builtin_sym_end] = ACTIONS(363), - [anon_sym_LT_LT_LT] = ACTIONS(365), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_GT_AMP] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_AMP] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_AMP_AMP] = ACTIONS(365), - [anon_sym_SEMI_SEMI] = ACTIONS(365), - [anon_sym_PIPE_AMP] = ACTIONS(365), + [aux_sym_concatenation_repeat1] = STATE(844), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_number] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [sym__concat] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(373), + [sym_word] = ACTIONS(373), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [sym__special_character] = ACTIONS(373), + [anon_sym_LT_LT_DASH] = ACTIONS(373), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [sym_variable_name] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(373), + [sym_file_descriptor] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_LT_LT_LT] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [aux_sym__simple_variable_name_token1] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [sym_ansii_c_string] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_SEMI_SEMI] = ACTIONS(373), + [anon_sym_PIPE_AMP] = ACTIONS(373), }, [397] = { - [aux_sym_concatenation_repeat1] = STATE(841), - [sym_word] = ACTIONS(375), - [anon_sym_AMP_GT_GT] = ACTIONS(375), - [anon_sym_DOLLAR] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(375), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [sym__concat] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LT_AMP] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [sym__special_character] = ACTIONS(375), - [anon_sym_LT_LT_DASH] = ACTIONS(375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), - [aux_sym__simple_variable_name_token1] = ACTIONS(375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), - [anon_sym_LF] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(375), - [sym_raw_string] = ACTIONS(375), - [sym_variable_name] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [sym_file_descriptor] = ACTIONS(379), - [anon_sym_AMP_GT] = ACTIONS(375), - [anon_sym_DQUOTE] = ACTIONS(375), - [anon_sym_LT_LT_LT] = ACTIONS(375), - [anon_sym_GT_AMP] = ACTIONS(375), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_GT_LPAREN] = ACTIONS(375), - [sym_ansii_c_string] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_SEMI_SEMI] = ACTIONS(375), - [anon_sym_PIPE_AMP] = ACTIONS(375), + [aux_sym__literal_repeat1] = STATE(847), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_AMP_GT_GT] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_number] = ACTIONS(379), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(379), + [sym_word] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT_AMP] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [sym__special_character] = ACTIONS(2026), + [anon_sym_LT_LT_DASH] = ACTIONS(379), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(379), + [sym_raw_string] = ACTIONS(379), + [sym_variable_name] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(379), + [sym_file_descriptor] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_AMP_GT] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_LT_LT_LT] = ACTIONS(379), + [anon_sym_GT_AMP] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(379), + [aux_sym__simple_variable_name_token1] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [sym_ansii_c_string] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_SEMI_SEMI] = ACTIONS(379), + [anon_sym_PIPE_AMP] = ACTIONS(379), }, [398] = { - [aux_sym__literal_repeat1] = STATE(847), - [sym_word] = ACTIONS(381), - [anon_sym_AMP_GT_GT] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_LT_LPAREN] = ACTIONS(381), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_LT_AMP] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [sym__special_character] = ACTIONS(1986), - [anon_sym_LT_LT_DASH] = ACTIONS(381), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [aux_sym__simple_variable_name_token1] = ACTIONS(381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(381), - [sym_raw_string] = ACTIONS(381), - [sym_variable_name] = ACTIONS(385), - [anon_sym_RPAREN] = ACTIONS(381), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(381), - [sym_file_descriptor] = ACTIONS(385), - [anon_sym_AMP_GT] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(381), - [anon_sym_LT_LT_LT] = ACTIONS(381), - [anon_sym_GT_AMP] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(381), - [sym_ansii_c_string] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_SEMI_SEMI] = ACTIONS(381), - [anon_sym_PIPE_AMP] = ACTIONS(381), + [aux_sym__literal_repeat1] = STATE(397), + [sym_string] = STATE(396), + [sym_process_substitution] = STATE(396), + [sym_variable_assignment] = STATE(428), + [sym_subscript] = STATE(2464), + [sym_concatenation] = STATE(428), + [sym_expansion] = STATE(396), + [sym_command_substitution] = STATE(396), + [aux_sym_declaration_command_repeat1] = STATE(428), + [sym_simple_expansion] = STATE(396), + [sym_string_expansion] = STATE(396), + [anon_sym_PIPE_AMP] = ACTIONS(385), + [anon_sym_AMP_GT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(1960), + [anon_sym_GT_LPAREN] = ACTIONS(1962), + [sym_number] = ACTIONS(1964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1966), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [sym_word] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [sym__special_character] = ACTIONS(1968), + [anon_sym_LT_LT_DASH] = ACTIONS(385), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(385), + [sym_raw_string] = ACTIONS(1964), + [sym_variable_name] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(385), + [sym_file_descriptor] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_LT_LT_LT] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [aux_sym__simple_variable_name_token1] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(1962), + [sym_ansii_c_string] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_SEMI_SEMI] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(385), }, [399] = { - [aux_sym__literal_repeat1] = STATE(398), - [sym_string] = STATE(397), - [sym_process_substitution] = STATE(397), - [sym_variable_assignment] = STATE(431), - [sym_subscript] = STATE(2464), - [sym_concatenation] = STATE(431), - [sym_expansion] = STATE(397), - [sym_command_substitution] = STATE(397), - [aux_sym_declaration_command_repeat1] = STATE(431), - [sym_simple_expansion] = STATE(397), - [sym_string_expansion] = STATE(397), - [sym_word] = ACTIONS(1920), - [anon_sym_AMP_GT_GT] = ACTIONS(387), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_LT_AMP] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [sym__special_character] = ACTIONS(1926), - [anon_sym_LT_LT_DASH] = ACTIONS(387), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [aux_sym__simple_variable_name_token1] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1932), - [anon_sym_LF] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(387), - [sym_raw_string] = ACTIONS(1920), - [sym_variable_name] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [sym_file_descriptor] = ACTIONS(391), - [anon_sym_AMP_GT] = ACTIONS(387), - [anon_sym_DQUOTE] = ACTIONS(1936), - [anon_sym_LT_LT_LT] = ACTIONS(387), - [anon_sym_GT_AMP] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(1938), - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [sym_ansii_c_string] = ACTIONS(1920), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_SEMI_SEMI] = ACTIONS(387), - [anon_sym_PIPE_AMP] = ACTIONS(387), + [aux_sym_concatenation_repeat1] = STATE(876), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_number] = ACTIONS(391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(391), + [sym_word] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [sym__special_character] = ACTIONS(391), + [anon_sym_LT_LT_DASH] = ACTIONS(391), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(391), + [sym_raw_string] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(391), + [sym_file_descriptor] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_AMP_GT] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(391), + [anon_sym_LT_LT_LT] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [aux_sym__simple_variable_name_token1] = ACTIONS(391), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [sym_ansii_c_string] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_SEMI_SEMI] = ACTIONS(391), + [anon_sym_PIPE_AMP] = ACTIONS(391), }, [400] = { - [aux_sym_concatenation_repeat1] = STATE(873), - [sym_word] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [sym__concat] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_LT_AMP] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [sym__special_character] = ACTIONS(393), - [anon_sym_LT_LT_DASH] = ACTIONS(393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(393), - [aux_sym__simple_variable_name_token1] = ACTIONS(393), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), - [anon_sym_LF] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(393), - [sym_raw_string] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [sym_file_descriptor] = ACTIONS(397), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_LT_LT_LT] = ACTIONS(393), - [anon_sym_GT_AMP] = ACTIONS(393), - [anon_sym_BQUOTE] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), - [sym_ansii_c_string] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_SEMI_SEMI] = ACTIONS(393), - [anon_sym_PIPE_AMP] = ACTIONS(393), + [aux_sym__literal_repeat1] = STATE(879), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_AMP_GT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_BQUOTE] = ACTIONS(397), + [anon_sym_GT_LPAREN] = ACTIONS(397), + [sym_number] = ACTIONS(397), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [sym_word] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_AMP] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [sym__special_character] = ACTIONS(2032), + [anon_sym_LT_LT_DASH] = ACTIONS(397), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(397), + [sym_raw_string] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [sym_file_descriptor] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_AMP_GT] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_LT_LT_LT] = ACTIONS(397), + [anon_sym_GT_AMP] = ACTIONS(397), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), + [aux_sym__simple_variable_name_token1] = ACTIONS(397), + [anon_sym_LT_LPAREN] = ACTIONS(397), + [sym_ansii_c_string] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(397), + [anon_sym_PIPE_AMP] = ACTIONS(397), }, [401] = { - [aux_sym__literal_repeat1] = STATE(879), - [sym_word] = ACTIONS(399), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_LT_LPAREN] = ACTIONS(399), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [sym__special_character] = ACTIONS(1992), - [anon_sym_LT_LT_DASH] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(399), - [aux_sym__simple_variable_name_token1] = ACTIONS(399), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_LF] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(399), - [sym_raw_string] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [sym_file_descriptor] = ACTIONS(403), - [anon_sym_AMP_GT] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_LT_LT_LT] = ACTIONS(399), - [anon_sym_GT_AMP] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(399), - [anon_sym_GT_LPAREN] = ACTIONS(399), - [sym_ansii_c_string] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_SEMI_SEMI] = ACTIONS(399), - [anon_sym_PIPE_AMP] = ACTIONS(399), + [sym_command_substitution] = STATE(399), + [aux_sym__literal_repeat1] = STATE(400), + [sym_string] = STATE(399), + [aux_sym_unset_command_repeat1] = STATE(429), + [sym_process_substitution] = STATE(399), + [sym_simple_expansion] = STATE(399), + [sym_string_expansion] = STATE(399), + [sym_concatenation] = STATE(429), + [sym_expansion] = STATE(399), + [anon_sym_PIPE_AMP] = ACTIONS(403), + [anon_sym_AMP_GT_GT] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(1980), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1986), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [sym_word] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_LT_AMP] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [sym__special_character] = ACTIONS(1988), + [anon_sym_LT_LT_DASH] = ACTIONS(403), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(403), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_RPAREN] = ACTIONS(403), + [sym_file_descriptor] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_AMP_GT] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_LT_LT_LT] = ACTIONS(403), + [anon_sym_GT_AMP] = ACTIONS(403), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [aux_sym__simple_variable_name_token1] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [sym_ansii_c_string] = ACTIONS(1984), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), }, [402] = { - [sym_command_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), - [sym_string] = STATE(400), - [aux_sym_unset_command_repeat1] = STATE(432), - [sym_process_substitution] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_concatenation] = STATE(432), - [sym_expansion] = STATE(400), - [sym_word] = ACTIONS(1940), - [anon_sym_AMP_GT_GT] = ACTIONS(405), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_LT_LPAREN] = ACTIONS(1944), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(405), - [anon_sym_PIPE] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_LT_AMP] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [sym__special_character] = ACTIONS(1946), - [anon_sym_LT_LT_DASH] = ACTIONS(405), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1948), - [aux_sym__simple_variable_name_token1] = ACTIONS(1994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), - [anon_sym_LF] = ACTIONS(409), - [anon_sym_SEMI] = ACTIONS(405), - [sym_raw_string] = ACTIONS(1940), - [anon_sym_RPAREN] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [sym_file_descriptor] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(405), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_LT_LT_LT] = ACTIONS(405), - [anon_sym_GT_AMP] = ACTIONS(405), - [anon_sym_BQUOTE] = ACTIONS(1956), - [anon_sym_GT_LPAREN] = ACTIONS(1944), - [sym_ansii_c_string] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(405), - [anon_sym_SEMI_SEMI] = ACTIONS(405), - [anon_sym_PIPE_AMP] = ACTIONS(405), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_EQ_TILDE] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [anon_sym_RPAREN] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [403] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_EQ_TILDE] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [anon_sym_EQ_TILDE] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [anon_sym_RPAREN] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [404] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_EQ_TILDE] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [anon_sym_EQ_TILDE] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [anon_sym_RPAREN] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [405] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_EQ_TILDE] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(434), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_EQ_TILDE] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [406] = { - [anon_sym_AMP_GT_GT] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(427), - [anon_sym_PIPE] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_LT_AMP] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(427), - [anon_sym_LF] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(427), - [anon_sym_AMP] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [sym_file_descriptor] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(427), - [anon_sym_LT_LT_LT] = ACTIONS(427), - [anon_sym_GT_AMP] = ACTIONS(427), - [anon_sym_BQUOTE] = ACTIONS(427), - [anon_sym_esac] = ACTIONS(427), - [anon_sym_AMP_AMP] = ACTIONS(427), - [anon_sym_SEMI_SEMI] = ACTIONS(427), - [anon_sym_PIPE_AMP] = ACTIONS(427), + [anon_sym_PIPE_AMP] = ACTIONS(485), + [anon_sym_AMP_GT_GT] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(485), + [anon_sym_LT_AMP] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(485), + [anon_sym_LT_LT_DASH] = ACTIONS(485), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(485), + [sym_file_descriptor] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(485), + [anon_sym_AMP_GT] = ACTIONS(485), + [anon_sym_LT_LT_LT] = ACTIONS(485), + [anon_sym_GT_AMP] = ACTIONS(485), + [anon_sym_esac] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_SEMI_SEMI] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), }, [407] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [anon_sym_BANG_EQ] = ACTIONS(471), - [anon_sym_PLUS_EQ] = ACTIONS(471), - [anon_sym_PLUS_PLUS] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(471), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_GT] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(473), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(471), - [anon_sym_PIPE_PIPE] = ACTIONS(471), - [anon_sym_GT_EQ] = ACTIONS(471), - [sym__concat] = ACTIONS(1996), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(473), - [sym_test_operator] = ACTIONS(471), - [anon_sym_EQ_TILDE] = ACTIONS(471), - [anon_sym_DASH_DASH] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(471), - [anon_sym_AMP_AMP] = ACTIONS(471), - [anon_sym_DASH_EQ] = ACTIONS(471), + [aux_sym_concatenation_repeat1] = STATE(812), + [anon_sym_BANG_EQ] = ACTIONS(529), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_RBRACK] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_GT] = ACTIONS(531), + [anon_sym_EQ] = ACTIONS(531), + [sym_test_operator] = ACTIONS(529), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE] = ACTIONS(529), + [anon_sym_GT_EQ] = ACTIONS(529), + [sym__concat] = ACTIONS(2038), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_EQ_TILDE] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [anon_sym_LT_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), }, [408] = { [sym_command_substitution] = STATE(407), - [sym_unary_expression] = STATE(438), - [sym_postfix_expression] = STATE(438), + [sym_unary_expression] = STATE(441), + [sym_postfix_expression] = STATE(441), [sym_string] = STATE(407), [aux_sym__literal_repeat1] = STATE(409), [sym_process_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(438), + [sym_parenthesized_expression] = STATE(441), [sym_simple_expansion] = STATE(407), [sym_string_expansion] = STATE(407), - [sym__expression] = STATE(438), - [sym_binary_expression] = STATE(438), - [sym_concatenation] = STATE(438), + [sym__expression] = STATE(441), + [sym_binary_expression] = STATE(441), + [sym_concatenation] = STATE(441), [sym_expansion] = STATE(407), - [sym_word] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_test_operator] = ACTIONS(293), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(283), - [sym__special_character] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(283), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_test_operator] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(293), + [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym_number] = ACTIONS(297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_word] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(285), + [sym__special_character] = ACTIONS(305), }, [409] = { [aux_sym__literal_repeat1] = STATE(815), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_RBRACK] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_EQ] = ACTIONS(479), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(479), - [sym_test_operator] = ACTIONS(477), - [anon_sym_EQ_TILDE] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [sym__special_character] = ACTIONS(1998), - [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(535), + [anon_sym_PLUS_EQ] = ACTIONS(535), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_RBRACK] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(537), + [sym_test_operator] = ACTIONS(535), + [anon_sym_EQ_EQ] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(537), + [anon_sym_EQ_TILDE] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_LT_EQ] = ACTIONS(535), + [anon_sym_AMP_AMP] = ACTIONS(535), + [sym__special_character] = ACTIONS(2040), + [anon_sym_DASH_EQ] = ACTIONS(535), }, [410] = { - [anon_sym_AMP_GT_GT] = ACTIONS(539), - [anon_sym_LT_LT] = ACTIONS(539), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(539), - [anon_sym_LT_AMP] = ACTIONS(539), - [anon_sym_GT_GT] = ACTIONS(539), - [anon_sym_LT_LT_DASH] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(539), - [anon_sym_AMP] = ACTIONS(539), - [anon_sym_GT] = ACTIONS(539), - [sym_file_descriptor] = ACTIONS(541), - [anon_sym_AMP_GT] = ACTIONS(539), - [anon_sym_LT_LT_LT] = ACTIONS(539), - [anon_sym_GT_AMP] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(539), - [anon_sym_esac] = ACTIONS(539), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_SEMI_SEMI] = ACTIONS(539), - [anon_sym_PIPE_AMP] = ACTIONS(539), + [anon_sym_PIPE_AMP] = ACTIONS(551), + [anon_sym_AMP_GT_GT] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(551), + [anon_sym_BQUOTE] = ACTIONS(551), + [anon_sym_PIPE_PIPE] = ACTIONS(551), + [anon_sym_PIPE] = ACTIONS(551), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_AMP] = ACTIONS(551), + [anon_sym_GT_GT] = ACTIONS(551), + [anon_sym_LT_LT_DASH] = ACTIONS(551), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(551), + [anon_sym_RPAREN] = ACTIONS(551), + [sym_file_descriptor] = ACTIONS(553), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_AMP_GT] = ACTIONS(551), + [anon_sym_LT_LT_LT] = ACTIONS(551), + [anon_sym_GT_AMP] = ACTIONS(551), + [anon_sym_esac] = ACTIONS(551), + [anon_sym_AMP_AMP] = ACTIONS(551), + [anon_sym_SEMI_SEMI] = ACTIONS(551), + [anon_sym_AMP] = ACTIONS(551), }, [411] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_EQ_TILDE] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [anon_sym_EQ_TILDE] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [412] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [413] = { [aux_sym__literal_repeat1] = STATE(413), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [anon_sym_EQ_TILDE] = ACTIONS(629), - [sym__special_character] = ACTIONS(2000), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [anon_sym_EQ_TILDE] = ACTIONS(645), + [sym__special_character] = ACTIONS(2042), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [anon_sym_RPAREN] = ACTIONS(645), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_EQ_EQ] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [414] = { + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_word] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [anon_sym_RPAREN] = ACTIONS(656), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_while] = ACTIONS(652), + [anon_sym_SEMI_SEMI] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_local] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_case] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(652), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + }, + [415] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(455), [sym_function_definition] = STATE(455), @@ -18229,8 +18651,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(456), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [sym_redirected_statement] = STATE(455), [sym_for_statement] = STATE(455), [sym_compound_statement] = STATE(455), @@ -18238,8 +18660,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(455), [sym_unset_command] = STATE(455), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym_c_style_for_statement] = STATE(455), [sym_while_statement] = STATE(455), @@ -18248,135 +18670,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(455), [sym_command] = STATE(455), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [415] = { - [sym_heredoc_body] = STATE(458), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(870), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [anon_sym_RPAREN] = ACTIONS(644), - [sym_file_descriptor] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym_variable_name] = ACTIONS(638), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [416] = { - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(636), - [sym_variable_name] = ACTIONS(638), - [anon_sym_RPAREN] = ACTIONS(644), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_while] = ACTIONS(636), - [anon_sym_SEMI_SEMI] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_local] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [anon_sym_case] = ACTIONS(636), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [sym_file_descriptor] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [sym_heredoc_body] = STATE(458), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(967), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [anon_sym_RPAREN] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [417] = { [aux_sym__literal_repeat1] = STATE(386), @@ -18387,8 +18768,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(461), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [sym_redirected_statement] = STATE(460), [sym_for_statement] = STATE(460), [sym_compound_statement] = STATE(460), @@ -18396,8 +18777,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(460), [sym_unset_command] = STATE(460), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym_c_style_for_statement] = STATE(460), [sym_while_statement] = STATE(460), @@ -18406,2738 +18787,2790 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(460), [sym_command] = STATE(460), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [418] = { [sym_heredoc_redirect] = STATE(465), [aux_sym_redirected_statement_repeat1] = STATE(465), [sym_herestring_redirect] = STATE(465), [sym_file_redirect] = STATE(465), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LT_LT] = ACTIONS(441), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_LF] = ACTIONS(664), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(433), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(433), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_BQUOTE] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_SEMI_SEMI] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), + [anon_sym_PIPE_AMP] = ACTIONS(682), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(682), + [anon_sym_PIPE_PIPE] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(684), + [anon_sym_SEMI] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(682), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(682), + [anon_sym_SEMI_SEMI] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), }, [419] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_PIPE_AMP] = ACTIONS(431), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2007), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_AMP_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(441), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_RPAREN] = ACTIONS(2049), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(2047), + [anon_sym_AMP] = ACTIONS(2047), }, [420] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2005), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(2005), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(491), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2047), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(2047), + [anon_sym_AMP] = ACTIONS(2047), }, [421] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_negated_command] = STATE(56), - [sym_test_command] = STATE(56), - [sym_variable_assignment] = STATE(57), + [sym_if_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_negated_command] = STATE(61), + [sym_test_command] = STATE(61), + [sym_variable_assignment] = STATE(62), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(421), - [sym_redirected_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_compound_statement] = STATE(56), - [sym_subshell] = STATE(56), - [sym_declaration_command] = STATE(56), - [sym_unset_command] = STATE(56), + [sym_redirected_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_compound_statement] = STATE(61), + [sym_subshell] = STATE(61), + [sym_declaration_command] = STATE(61), + [sym_unset_command] = STATE(61), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_pipeline] = STATE(56), - [sym_list] = STATE(56), - [sym_command] = STATE(56), + [sym_c_style_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_case_statement] = STATE(61), + [sym_pipeline] = STATE(61), + [sym_list] = STATE(61), + [sym_command] = STATE(61), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [anon_sym_LPAREN] = ACTIONS(672), - [sym_word] = ACTIONS(675), - [anon_sym_AMP_GT_GT] = ACTIONS(678), - [anon_sym_local] = ACTIONS(681), - [anon_sym_typeset] = ACTIONS(681), - [anon_sym_unsetenv] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(690), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_LT_AMP] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_export] = ACTIONS(681), - [sym__special_character] = ACTIONS(702), - [anon_sym_if] = ACTIONS(705), - [anon_sym_case] = ACTIONS(708), - [anon_sym_LPAREN_LPAREN] = ACTIONS(711), - [sym_raw_string] = ACTIONS(714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_BANG] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), - [sym_file_descriptor] = ACTIONS(726), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(699), - [sym_variable_name] = ACTIONS(729), - [anon_sym_AMP_GT] = ACTIONS(699), - [anon_sym_readonly] = ACTIONS(681), - [anon_sym_unset] = ACTIONS(684), - [anon_sym_DQUOTE] = ACTIONS(732), - [anon_sym_GT_AMP] = ACTIONS(678), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(690), - [anon_sym_for] = ACTIONS(738), - [anon_sym_while] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(744), - [sym_ansii_c_string] = ACTIONS(714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(747), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(693), + [anon_sym_local] = ACTIONS(696), + [anon_sym_typeset] = ACTIONS(696), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_GT_LPAREN] = ACTIONS(708), + [sym_number] = ACTIONS(711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(714), + [anon_sym_function] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_LT_AMP] = ACTIONS(693), + [anon_sym_GT_GT] = ACTIONS(693), + [anon_sym_export] = ACTIONS(696), + [sym_word] = ACTIONS(726), + [sym__special_character] = ACTIONS(729), + [anon_sym_if] = ACTIONS(732), + [anon_sym_case] = ACTIONS(735), + [anon_sym_LPAREN_LPAREN] = ACTIONS(738), + [sym_raw_string] = ACTIONS(741), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_declare] = ACTIONS(696), + [sym_variable_name] = ACTIONS(747), + [sym_file_descriptor] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_AMP_GT] = ACTIONS(723), + [anon_sym_readonly] = ACTIONS(696), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_GT_AMP] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_LT_LPAREN] = ACTIONS(708), + [anon_sym_for] = ACTIONS(759), + [anon_sym_while] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(765), + [sym_ansii_c_string] = ACTIONS(741), + [anon_sym_LBRACK_LBRACK] = ACTIONS(768), }, [422] = { - [sym_command_substitution] = STATE(423), + [sym_command_substitution] = STATE(424), [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(423), - [sym_process_substitution] = STATE(423), - [sym_simple_expansion] = STATE(423), - [sym_string_expansion] = STATE(423), + [sym_string] = STATE(424), + [sym_process_substitution] = STATE(424), + [sym_simple_expansion] = STATE(424), + [sym_string_expansion] = STATE(424), [aux_sym_command_repeat2] = STATE(468), [sym_concatenation] = STATE(468), - [sym_expansion] = STATE(423), - [sym_word] = ACTIONS(1968), - [anon_sym_AMP_GT_GT] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LT] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(750), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_AMP] = ACTIONS(750), - [anon_sym_GT_GT] = ACTIONS(750), - [anon_sym_EQ_TILDE] = ACTIONS(1972), + [sym_expansion] = STATE(424), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(2010), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_number] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [sym_word] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(2018), [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(750), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_GT] = ACTIONS(750), - [sym_file_descriptor] = ACTIONS(752), - [anon_sym_AMP_GT] = ACTIONS(750), - [anon_sym_EQ_EQ] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1978), - [anon_sym_LT_LT_LT] = ACTIONS(750), - [anon_sym_GT_AMP] = ACTIONS(750), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(750), - [anon_sym_SEMI_SEMI] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(750), + [anon_sym_LT_LT_DASH] = ACTIONS(771), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [sym_raw_string] = ACTIONS(2014), + [anon_sym_RPAREN] = ACTIONS(771), + [sym_file_descriptor] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [sym_ansii_c_string] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_SEMI_SEMI] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), }, [423] = { - [aux_sym_concatenation_repeat1] = STATE(393), - [sym_word] = ACTIONS(770), - [anon_sym_AMP_GT_GT] = ACTIONS(770), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(770), - [anon_sym_LT_LPAREN] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(770), - [sym__concat] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_AMP] = ACTIONS(770), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_EQ_TILDE] = ACTIONS(770), - [sym__special_character] = ACTIONS(770), - [anon_sym_LT_LT_DASH] = ACTIONS(770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(770), - [anon_sym_LF] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(770), - [sym_raw_string] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_GT] = ACTIONS(770), - [sym_file_descriptor] = ACTIONS(772), - [anon_sym_AMP_GT] = ACTIONS(770), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_DQUOTE] = ACTIONS(770), - [anon_sym_LT_LT_LT] = ACTIONS(770), - [anon_sym_GT_AMP] = ACTIONS(770), - [anon_sym_BQUOTE] = ACTIONS(770), - [anon_sym_GT_LPAREN] = ACTIONS(770), - [sym_ansii_c_string] = ACTIONS(770), - [anon_sym_AMP_AMP] = ACTIONS(770), - [anon_sym_SEMI_SEMI] = ACTIONS(770), - [anon_sym_PIPE_AMP] = ACTIONS(770), - }, - [424] = { - [sym_command_substitution] = STATE(469), + [sym_command_substitution] = STATE(470), [aux_sym__literal_repeat1] = STATE(471), - [sym_string] = STATE(469), - [sym_process_substitution] = STATE(469), - [sym_simple_expansion] = STATE(469), - [sym_string_expansion] = STATE(469), - [sym_concatenation] = STATE(470), - [sym_expansion] = STATE(469), - [sym_word] = ACTIONS(2009), + [sym_string] = STATE(470), + [sym_process_substitution] = STATE(470), + [sym_simple_expansion] = STATE(470), + [sym_string_expansion] = STATE(470), + [sym_concatenation] = STATE(469), + [sym_expansion] = STATE(470), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(2053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_word] = ACTIONS(2053), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(2009), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [sym_ansii_c_string] = ACTIONS(2009), - [sym__special_character] = ACTIONS(1966), - [sym_regex] = ACTIONS(2011), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [sym_ansii_c_string] = ACTIONS(2051), + [sym_regex] = ACTIONS(2055), + [sym__special_character] = ACTIONS(2008), + }, + [424] = { + [aux_sym_concatenation_repeat1] = STATE(405), + [anon_sym_AMP] = ACTIONS(797), + [anon_sym_AMP_GT_GT] = ACTIONS(797), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_LT_LT] = ACTIONS(797), + [anon_sym_BQUOTE] = ACTIONS(797), + [anon_sym_GT_LPAREN] = ACTIONS(797), + [sym_number] = ACTIONS(797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(797), + [sym_word] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(797), + [anon_sym_LT_AMP] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(797), + [anon_sym_EQ_TILDE] = ACTIONS(797), + [sym__special_character] = ACTIONS(797), + [anon_sym_LT_LT_DASH] = ACTIONS(797), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_SEMI] = ACTIONS(797), + [sym_raw_string] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(797), + [sym_file_descriptor] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(797), + [anon_sym_AMP_GT] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [anon_sym_LT_LT_LT] = ACTIONS(797), + [anon_sym_GT_AMP] = ACTIONS(797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(797), + [anon_sym_LT_LPAREN] = ACTIONS(797), + [sym_ansii_c_string] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_SEMI_SEMI] = ACTIONS(797), + [anon_sym_PIPE_AMP] = ACTIONS(797), }, [425] = { [aux_sym__literal_repeat1] = STATE(413), - [sym_word] = ACTIONS(778), - [anon_sym_AMP_GT_GT] = ACTIONS(778), - [anon_sym_DOLLAR] = ACTIONS(778), - [anon_sym_LT_LT] = ACTIONS(778), - [anon_sym_LT_LPAREN] = ACTIONS(778), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(778), - [anon_sym_PIPE] = ACTIONS(778), - [anon_sym_LT] = ACTIONS(778), - [anon_sym_LT_AMP] = ACTIONS(778), - [anon_sym_GT_GT] = ACTIONS(778), - [anon_sym_EQ_TILDE] = ACTIONS(778), - [sym__special_character] = ACTIONS(1958), - [anon_sym_LT_LT_DASH] = ACTIONS(778), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(780), - [anon_sym_SEMI] = ACTIONS(778), - [sym_raw_string] = ACTIONS(778), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_AMP] = ACTIONS(778), - [anon_sym_GT] = ACTIONS(778), - [sym_file_descriptor] = ACTIONS(780), - [anon_sym_AMP_GT] = ACTIONS(778), - [anon_sym_EQ_EQ] = ACTIONS(778), - [anon_sym_DQUOTE] = ACTIONS(778), - [anon_sym_LT_LT_LT] = ACTIONS(778), - [anon_sym_GT_AMP] = ACTIONS(778), - [anon_sym_BQUOTE] = ACTIONS(778), - [anon_sym_GT_LPAREN] = ACTIONS(778), - [sym_ansii_c_string] = ACTIONS(778), - [anon_sym_AMP_AMP] = ACTIONS(778), - [anon_sym_SEMI_SEMI] = ACTIONS(778), - [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_LT_LT] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_GT_LPAREN] = ACTIONS(801), + [sym_number] = ACTIONS(801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(801), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [sym_word] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(801), + [anon_sym_GT_GT] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [sym__special_character] = ACTIONS(2000), + [anon_sym_LT_LT_DASH] = ACTIONS(801), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [sym_raw_string] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_AMP_GT] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_LT_LT_LT] = ACTIONS(801), + [anon_sym_GT_AMP] = ACTIONS(801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_LT_LPAREN] = ACTIONS(801), + [sym_ansii_c_string] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), + [anon_sym_SEMI_SEMI] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(801), }, [426] = { - [sym_command_substitution] = STATE(423), + [sym_command_substitution] = STATE(424), [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(423), - [sym_process_substitution] = STATE(423), - [sym_simple_expansion] = STATE(423), - [sym_string_expansion] = STATE(423), + [sym_string] = STATE(424), + [sym_process_substitution] = STATE(424), + [sym_simple_expansion] = STATE(424), + [sym_string_expansion] = STATE(424), [aux_sym_command_repeat2] = STATE(472), [sym_concatenation] = STATE(472), - [sym_expansion] = STATE(423), - [sym_word] = ACTIONS(1968), - [anon_sym_AMP_GT_GT] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LT] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(750), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_AMP] = ACTIONS(750), - [anon_sym_GT_GT] = ACTIONS(750), - [anon_sym_EQ_TILDE] = ACTIONS(1972), + [sym_expansion] = STATE(424), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(2010), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_number] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [sym_word] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(2018), [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(750), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_GT] = ACTIONS(750), - [sym_file_descriptor] = ACTIONS(752), - [anon_sym_AMP_GT] = ACTIONS(750), - [anon_sym_EQ_EQ] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1978), - [anon_sym_LT_LT_LT] = ACTIONS(750), - [anon_sym_GT_AMP] = ACTIONS(750), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(750), - [anon_sym_SEMI_SEMI] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(750), + [anon_sym_LT_LT_DASH] = ACTIONS(771), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [sym_raw_string] = ACTIONS(2014), + [anon_sym_RPAREN] = ACTIONS(771), + [sym_file_descriptor] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [sym_ansii_c_string] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_SEMI_SEMI] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), }, [427] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_EQ_EQ] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_PIPE_AMP] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(805), + [anon_sym_LT_LT] = ACTIONS(805), + [anon_sym_BQUOTE] = ACTIONS(805), + [anon_sym_PIPE_PIPE] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_LT_LT_DASH] = ACTIONS(805), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(805), + [anon_sym_RPAREN] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_LT_LT_LT] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_esac] = ACTIONS(805), + [anon_sym_AMP_AMP] = ACTIONS(805), + [anon_sym_SEMI_SEMI] = ACTIONS(805), + [anon_sym_AMP] = ACTIONS(805), }, [428] = { - [sym_command_substitution] = STATE(427), - [sym_string] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_word] = ACTIONS(2013), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [sym_ansii_c_string] = ACTIONS(2013), - [sym__special_character] = ACTIONS(2013), + [aux_sym__literal_repeat1] = STATE(397), + [sym_string] = STATE(396), + [sym_process_substitution] = STATE(396), + [sym_variable_assignment] = STATE(428), + [sym_subscript] = STATE(2464), + [sym_concatenation] = STATE(428), + [sym_expansion] = STATE(396), + [sym_command_substitution] = STATE(396), + [aux_sym_declaration_command_repeat1] = STATE(428), + [sym_simple_expansion] = STATE(396), + [sym_string_expansion] = STATE(396), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(2060), + [anon_sym_GT_LPAREN] = ACTIONS(2063), + [sym_number] = ACTIONS(2066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2069), + [anon_sym_PIPE_PIPE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [sym_word] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_LT_AMP] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(809), + [sym__special_character] = ACTIONS(2072), + [anon_sym_LT_LT_DASH] = ACTIONS(809), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(809), + [sym_raw_string] = ACTIONS(2066), + [sym_variable_name] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(809), + [sym_file_descriptor] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_LT_LT_LT] = ACTIONS(809), + [anon_sym_GT_AMP] = ACTIONS(809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2081), + [aux_sym__simple_variable_name_token1] = ACTIONS(2084), + [anon_sym_LT_LPAREN] = ACTIONS(2063), + [sym_ansii_c_string] = ACTIONS(2066), + [anon_sym_AMP_AMP] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(809), }, [429] = { - [aux_sym_concatenation_repeat1] = STATE(429), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_EQ_EQ] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [sym_command_substitution] = STATE(399), + [aux_sym__literal_repeat1] = STATE(400), + [sym_string] = STATE(399), + [aux_sym_unset_command_repeat1] = STATE(429), + [sym_process_substitution] = STATE(399), + [sym_simple_expansion] = STATE(399), + [sym_string_expansion] = STATE(399), + [sym_concatenation] = STATE(429), + [sym_expansion] = STATE(399), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_AMP_GT_GT] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(2087), + [anon_sym_LT_LT] = ACTIONS(843), + [anon_sym_BQUOTE] = ACTIONS(2090), + [anon_sym_GT_LPAREN] = ACTIONS(2093), + [sym_number] = ACTIONS(2096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [sym_word] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(843), + [anon_sym_LT_AMP] = ACTIONS(843), + [anon_sym_GT_GT] = ACTIONS(843), + [sym__special_character] = ACTIONS(2102), + [anon_sym_LT_LT_DASH] = ACTIONS(843), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(843), + [sym_raw_string] = ACTIONS(2096), + [anon_sym_RPAREN] = ACTIONS(843), + [sym_file_descriptor] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_AMP_GT] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_LT_LT_LT] = ACTIONS(843), + [anon_sym_GT_AMP] = ACTIONS(843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2108), + [aux_sym__simple_variable_name_token1] = ACTIONS(2111), + [anon_sym_LT_LPAREN] = ACTIONS(2093), + [sym_ansii_c_string] = ACTIONS(2096), + [anon_sym_AMP_AMP] = ACTIONS(843), + [anon_sym_SEMI_SEMI] = ACTIONS(843), + [anon_sym_PIPE_AMP] = ACTIONS(843), }, [430] = { - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(791), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LF] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(791), - [sym_file_descriptor] = ACTIONS(793), - [anon_sym_AMP_GT] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_BQUOTE] = ACTIONS(791), - [anon_sym_esac] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - }, - [431] = { - [aux_sym__literal_repeat1] = STATE(398), - [sym_string] = STATE(397), - [sym_process_substitution] = STATE(397), - [sym_variable_assignment] = STATE(431), - [sym_subscript] = STATE(2464), - [sym_concatenation] = STATE(431), - [sym_expansion] = STATE(397), - [sym_command_substitution] = STATE(397), - [aux_sym_declaration_command_repeat1] = STATE(431), - [sym_simple_expansion] = STATE(397), - [sym_string_expansion] = STATE(397), - [sym_word] = ACTIONS(2020), - [anon_sym_AMP_GT_GT] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_LT_AMP] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [sym__special_character] = ACTIONS(2029), - [anon_sym_LT_LT_DASH] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [aux_sym__simple_variable_name_token1] = ACTIONS(2035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2038), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(798), - [sym_raw_string] = ACTIONS(2020), - [sym_variable_name] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [sym_file_descriptor] = ACTIONS(818), - [anon_sym_AMP_GT] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(2044), - [anon_sym_LT_LT_LT] = ACTIONS(798), - [anon_sym_GT_AMP] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(2047), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_ansii_c_string] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - }, - [432] = { - [sym_command_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), - [sym_string] = STATE(400), - [aux_sym_unset_command_repeat1] = STATE(432), - [sym_process_substitution] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_concatenation] = STATE(432), - [sym_expansion] = STATE(400), - [sym_word] = ACTIONS(2050), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(2053), - [anon_sym_LT_LT] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [sym__special_character] = ACTIONS(2059), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2062), - [aux_sym__simple_variable_name_token1] = ACTIONS(2065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_SEMI] = ACTIONS(832), - [sym_raw_string] = ACTIONS(2050), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [sym_file_descriptor] = ACTIONS(852), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(2071), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(2074), - [anon_sym_GT_LPAREN] = ACTIONS(2056), - [sym_ansii_c_string] = ACTIONS(2050), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - }, - [433] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [anon_sym_EQ_TILDE] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_EQ_EQ] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), - }, - [434] = { - [anon_sym_AMP_GT_GT] = ACTIONS(866), - [anon_sym_LT_LT] = ACTIONS(866), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(866), - [anon_sym_PIPE] = ACTIONS(866), - [anon_sym_LT] = ACTIONS(866), - [anon_sym_LT_AMP] = ACTIONS(866), - [anon_sym_GT_GT] = ACTIONS(866), - [anon_sym_LT_LT_DASH] = ACTIONS(866), - [anon_sym_LF] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(866), - [anon_sym_RPAREN] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_GT] = ACTIONS(866), - [sym_file_descriptor] = ACTIONS(868), - [anon_sym_AMP_GT] = ACTIONS(866), - [anon_sym_LT_LT_LT] = ACTIONS(866), - [anon_sym_GT_AMP] = ACTIONS(866), - [anon_sym_BQUOTE] = ACTIONS(866), - [anon_sym_esac] = ACTIONS(866), - [anon_sym_AMP_AMP] = ACTIONS(866), - [anon_sym_SEMI_SEMI] = ACTIONS(866), - [anon_sym_PIPE_AMP] = ACTIONS(866), - }, - [435] = { - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), - }, - [436] = { - [sym_heredoc_body] = STATE(1408), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(870), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), - }, - [437] = { + [anon_sym_AMP] = ACTIONS(874), [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), [anon_sym_LT_LT] = ACTIONS(874), - [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), [anon_sym_LT] = ACTIONS(874), [anon_sym_LT_AMP] = ACTIONS(874), [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(876), [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), [anon_sym_RPAREN] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), [anon_sym_LT_LT_LT] = ACTIONS(874), [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), [anon_sym_AMP_AMP] = ACTIONS(874), [anon_sym_SEMI_SEMI] = ACTIONS(874), [anon_sym_PIPE_AMP] = ACTIONS(874), }, + [431] = { + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_EQ_TILDE] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), + }, + [432] = { + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), + }, + [433] = { + [sym_command_substitution] = STATE(432), + [sym_string] = STATE(432), + [sym_process_substitution] = STATE(432), + [sym_simple_expansion] = STATE(432), + [sym_string_expansion] = STATE(432), + [sym_expansion] = STATE(432), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2114), + [anon_sym_DOLLAR] = ACTIONS(2116), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(2118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_word] = ACTIONS(2118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [sym_ansii_c_string] = ACTIONS(2114), + [sym__special_character] = ACTIONS(2114), + }, + [434] = { + [aux_sym_concatenation_repeat1] = STATE(434), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), + }, + [435] = { + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_EQ_TILDE] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), + }, + [436] = { + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_EQ_TILDE] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + }, + [437] = { + [anon_sym_PIPE_AMP] = ACTIONS(963), + [anon_sym_AMP_GT_GT] = ACTIONS(963), + [anon_sym_LT_LT] = ACTIONS(963), + [anon_sym_BQUOTE] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_LT_AMP] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_LT_LT_DASH] = ACTIONS(963), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [sym_file_descriptor] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_AMP_GT] = ACTIONS(963), + [anon_sym_LT_LT_LT] = ACTIONS(963), + [anon_sym_GT_AMP] = ACTIONS(963), + [anon_sym_esac] = ACTIONS(963), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_SEMI_SEMI] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + }, [438] = { - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_RBRACK] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(625), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(625), - [sym_test_operator] = ACTIONS(621), - [anon_sym_EQ_TILDE] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [439] = { + [sym_heredoc_body] = STATE(1419), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(967), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + }, + [440] = { + [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + }, + [441] = { + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_PLUS_EQ] = ACTIONS(637), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(639), + [anon_sym_RBRACK] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(641), + [anon_sym_EQ] = ACTIONS(641), + [sym_test_operator] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_EQ_TILDE] = ACTIONS(643), + [anon_sym_DASH_DASH] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_DASH_EQ] = ACTIONS(637), + }, + [442] = { [sym_command_substitution] = STATE(407), - [sym_unary_expression] = STATE(477), - [sym_postfix_expression] = STATE(477), + [sym_unary_expression] = STATE(480), + [sym_postfix_expression] = STATE(480), [sym_string] = STATE(407), [aux_sym__literal_repeat1] = STATE(409), [sym_process_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(477), + [sym_parenthesized_expression] = STATE(480), [sym_simple_expansion] = STATE(407), [sym_string_expansion] = STATE(407), - [sym__expression] = STATE(477), - [sym_binary_expression] = STATE(477), - [sym_concatenation] = STATE(477), + [sym__expression] = STATE(480), + [sym_binary_expression] = STATE(480), + [sym_concatenation] = STATE(480), [sym_expansion] = STATE(407), - [sym_word] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_test_operator] = ACTIONS(293), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(283), - [sym__special_character] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(283), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_test_operator] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(293), + [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym_number] = ACTIONS(297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_word] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(285), + [sym__special_character] = ACTIONS(305), }, - [440] = { - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_PLUS_EQ] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_RBRACK] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_PIPE_PIPE] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [sym_test_operator] = ACTIONS(904), - [anon_sym_EQ_TILDE] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_AMP_AMP] = ACTIONS(904), - [anon_sym_DASH_EQ] = ACTIONS(904), + [443] = { + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_RBRACK] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1003), + [sym_test_operator] = ACTIONS(1001), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_PIPE_PIPE] = ACTIONS(1001), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_EQ_TILDE] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_AMP_AMP] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), }, - [441] = { + [444] = { [sym_command_substitution] = STATE(407), - [sym_unary_expression] = STATE(477), - [sym_postfix_expression] = STATE(477), + [sym_unary_expression] = STATE(480), + [sym_postfix_expression] = STATE(480), [sym_string] = STATE(407), [aux_sym__literal_repeat1] = STATE(409), [sym_process_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(477), + [sym_parenthesized_expression] = STATE(480), [sym_simple_expansion] = STATE(407), [sym_string_expansion] = STATE(407), - [sym__expression] = STATE(477), - [sym_binary_expression] = STATE(477), - [sym_concatenation] = STATE(477), + [sym__expression] = STATE(480), + [sym_binary_expression] = STATE(480), + [sym_concatenation] = STATE(480), [sym_expansion] = STATE(407), - [sym_word] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_test_operator] = ACTIONS(293), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(283), - [sym__special_character] = ACTIONS(297), - [sym_regex] = ACTIONS(2077), - }, - [442] = { - [anon_sym_AMP_GT_GT] = ACTIONS(910), - [anon_sym_LT_LT] = ACTIONS(910), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(910), - [anon_sym_PIPE] = ACTIONS(910), - [anon_sym_LT] = ACTIONS(910), - [anon_sym_LT_AMP] = ACTIONS(910), - [anon_sym_GT_GT] = ACTIONS(910), - [anon_sym_LT_LT_DASH] = ACTIONS(910), - [anon_sym_LF] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(910), - [anon_sym_RPAREN] = ACTIONS(910), - [anon_sym_AMP] = ACTIONS(910), - [anon_sym_GT] = ACTIONS(910), - [sym_file_descriptor] = ACTIONS(912), - [anon_sym_AMP_GT] = ACTIONS(910), - [anon_sym_LT_LT_LT] = ACTIONS(910), - [anon_sym_GT_AMP] = ACTIONS(910), - [anon_sym_BQUOTE] = ACTIONS(910), - [anon_sym_esac] = ACTIONS(910), - [anon_sym_AMP_AMP] = ACTIONS(910), - [anon_sym_SEMI_SEMI] = ACTIONS(910), - [anon_sym_PIPE_AMP] = ACTIONS(910), - }, - [443] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), - }, - [444] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(283), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_test_operator] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(293), + [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym_number] = ACTIONS(297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_word] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(285), + [sym__special_character] = ACTIONS(305), + [sym_regex] = ACTIONS(2123), }, [445] = { - [aux_sym_concatenation_repeat1] = STATE(1033), - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [sym__concat] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_PIPE_AMP] = ACTIONS(1007), + [anon_sym_AMP_GT_GT] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1007), + [anon_sym_BQUOTE] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_LT_AMP] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1007), + [anon_sym_LT_LT_DASH] = ACTIONS(1007), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [sym_file_descriptor] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_AMP_GT] = ACTIONS(1007), + [anon_sym_LT_LT_LT] = ACTIONS(1007), + [anon_sym_GT_AMP] = ACTIONS(1007), + [anon_sym_esac] = ACTIONS(1007), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_SEMI_SEMI] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1007), }, [446] = { - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [447] = { - [aux_sym__literal_repeat1] = STATE(1071), - [sym_word] = ACTIONS(1006), - [anon_sym_AMP_GT_GT] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1006), - [anon_sym_LT_LPAREN] = ACTIONS(1006), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_AMP] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(1006), - [sym__special_character] = ACTIONS(2081), - [anon_sym_LT_LT_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_raw_string] = ACTIONS(1006), - [sym_variable_name] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [sym_file_descriptor] = ACTIONS(1010), - [anon_sym_AMP_GT] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [anon_sym_LT_LT_LT] = ACTIONS(1006), - [anon_sym_GT_AMP] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1006), - [anon_sym_GT_LPAREN] = ACTIONS(1006), - [sym_ansii_c_string] = ACTIONS(1006), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_SEMI_SEMI] = ACTIONS(1006), - [anon_sym_PIPE_AMP] = ACTIONS(1006), + [aux_sym_concatenation_repeat1] = STATE(1036), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [sym__concat] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [448] = { - [aux_sym_concatenation_repeat1] = STATE(1001), - [anon_sym_LT_LT_DASH] = ACTIONS(1026), - [anon_sym_AMP_GT_GT] = ACTIONS(1026), - [anon_sym_LF] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_LT_LT] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1026), - [sym_file_descriptor] = ACTIONS(1024), - [anon_sym_AMP_GT] = ACTIONS(1026), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [ts_builtin_sym_end] = ACTIONS(1024), - [anon_sym_LT_LT_LT] = ACTIONS(1026), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_GT_AMP] = ACTIONS(1026), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_AMP] = ACTIONS(1026), - [anon_sym_GT_GT] = ACTIONS(1026), - [sym__concat] = ACTIONS(1131), - [anon_sym_AMP_AMP] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1026), - [anon_sym_PIPE_AMP] = ACTIONS(1026), + [aux_sym__literal_repeat1] = STATE(1071), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_number] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [sym_word] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [sym__special_character] = ACTIONS(2127), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [sym_variable_name] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1037), + [sym_file_descriptor] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [sym_ansii_c_string] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), }, [449] = { - [aux_sym__literal_repeat1] = STATE(1039), - [anon_sym_LT_LT_DASH] = ACTIONS(1030), - [anon_sym_AMP_GT_GT] = ACTIONS(1030), - [anon_sym_LF] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_LT_LT] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_GT] = ACTIONS(1030), - [sym_file_descriptor] = ACTIONS(1028), - [anon_sym_AMP_GT] = ACTIONS(1030), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1030), - [ts_builtin_sym_end] = ACTIONS(1028), - [anon_sym_LT_LT_LT] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_GT_AMP] = ACTIONS(1030), - [anon_sym_LT] = ACTIONS(1030), - [anon_sym_LT_AMP] = ACTIONS(1030), - [anon_sym_GT_GT] = ACTIONS(1030), - [anon_sym_AMP_AMP] = ACTIONS(1030), - [sym__special_character] = ACTIONS(1137), - [anon_sym_SEMI_SEMI] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1030), + [aux_sym_concatenation_repeat1] = STATE(1004), + [anon_sym_LT_LT_DASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1057), + [anon_sym_AMP_GT_GT] = ACTIONS(1057), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [sym_file_descriptor] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_AMP_GT] = ACTIONS(1057), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1055), + [anon_sym_LT_LT_LT] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_GT_AMP] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_LT_AMP] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1057), + [sym__concat] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [anon_sym_SEMI_SEMI] = ACTIONS(1057), + [anon_sym_PIPE_AMP] = ACTIONS(1057), }, [450] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1026), - [anon_sym_AMP_GT_GT] = ACTIONS(1026), - [anon_sym_LF] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_LT_LT] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1026), - [sym_file_descriptor] = ACTIONS(1024), - [anon_sym_AMP_GT] = ACTIONS(1026), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [ts_builtin_sym_end] = ACTIONS(1024), - [anon_sym_LT_LT_LT] = ACTIONS(1026), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_GT_AMP] = ACTIONS(1026), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_AMP] = ACTIONS(1026), - [anon_sym_GT_GT] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1026), - [anon_sym_PIPE_AMP] = ACTIONS(1026), + [aux_sym__literal_repeat1] = STATE(1039), + [anon_sym_LT_LT_DASH] = ACTIONS(1061), + [anon_sym_AMP] = ACTIONS(1061), + [anon_sym_AMP_GT_GT] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_LT_LT] = ACTIONS(1061), + [sym_file_descriptor] = ACTIONS(1059), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_AMP_GT] = ACTIONS(1061), + [anon_sym_PIPE_PIPE] = ACTIONS(1061), + [ts_builtin_sym_end] = ACTIONS(1059), + [anon_sym_LT_LT_LT] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(1061), + [anon_sym_GT_AMP] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_LT_AMP] = ACTIONS(1061), + [anon_sym_GT_GT] = ACTIONS(1061), + [anon_sym_AMP_AMP] = ACTIONS(1061), + [sym__special_character] = ACTIONS(1166), + [anon_sym_SEMI_SEMI] = ACTIONS(1061), + [anon_sym_PIPE_AMP] = ACTIONS(1061), }, [451] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1057), + [anon_sym_AMP_GT_GT] = ACTIONS(1057), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [sym_file_descriptor] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_AMP_GT] = ACTIONS(1057), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1055), + [anon_sym_LT_LT_LT] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_GT_AMP] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_LT_AMP] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [anon_sym_SEMI_SEMI] = ACTIONS(1057), + [anon_sym_PIPE_AMP] = ACTIONS(1057), }, [452] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_EQ_TILDE] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_EQ_EQ] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_EQ_TILDE] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_EQ_EQ] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [453] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [454] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1089), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_LT_AMP] = ACTIONS(1089), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_LT_LT_DASH] = ACTIONS(1089), - [anon_sym_LF] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1089), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_GT] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1091), - [anon_sym_AMP_GT] = ACTIONS(1089), - [anon_sym_LT_LT_LT] = ACTIONS(1089), - [anon_sym_GT_AMP] = ACTIONS(1089), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_esac] = ACTIONS(1089), - [anon_sym_AMP_AMP] = ACTIONS(1089), - [anon_sym_SEMI_SEMI] = ACTIONS(1089), - [anon_sym_PIPE_AMP] = ACTIONS(1089), + [anon_sym_PIPE_AMP] = ACTIONS(1118), + [anon_sym_AMP_GT_GT] = ACTIONS(1118), + [anon_sym_LT_LT] = ACTIONS(1118), + [anon_sym_BQUOTE] = ACTIONS(1118), + [anon_sym_PIPE_PIPE] = ACTIONS(1118), + [anon_sym_PIPE] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1118), + [anon_sym_LT_AMP] = ACTIONS(1118), + [anon_sym_GT_GT] = ACTIONS(1118), + [anon_sym_LT_LT_DASH] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_RPAREN] = ACTIONS(1118), + [sym_file_descriptor] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1118), + [anon_sym_AMP_GT] = ACTIONS(1118), + [anon_sym_LT_LT_LT] = ACTIONS(1118), + [anon_sym_GT_AMP] = ACTIONS(1118), + [anon_sym_esac] = ACTIONS(1118), + [anon_sym_AMP_AMP] = ACTIONS(1118), + [anon_sym_SEMI_SEMI] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), }, [455] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_LF] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [sym_file_descriptor] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1093), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), + [anon_sym_PIPE_AMP] = ACTIONS(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_LT_AMP] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1122), + [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_RPAREN] = ACTIONS(1122), + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_AMP_GT] = ACTIONS(1122), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_GT_AMP] = ACTIONS(1122), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), }, [456] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_GT] = ACTIONS(1093), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1122), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_LT_AMP] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1122), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1122), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_AMP_GT] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_GT_AMP] = ACTIONS(1122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_PIPE_AMP] = ACTIONS(1122), }, [457] = { - [anon_sym_LF] = ACTIONS(1099), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_BQUOTE] = ACTIONS(1097), - [anon_sym_esac] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1097), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI_SEMI] = ACTIONS(1097), + [anon_sym_LF] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_esac] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), }, [458] = { - [anon_sym_RPAREN] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_LF] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_SEMI_SEMI] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2129), [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_SEMI_SEMI] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2133), }, [459] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1119), - [anon_sym_LT_LT] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1119), - [anon_sym_LT_AMP] = ACTIONS(1119), - [anon_sym_GT_GT] = ACTIONS(1119), - [anon_sym_LT_LT_DASH] = ACTIONS(1119), - [anon_sym_LF] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_GT] = ACTIONS(1119), - [sym_file_descriptor] = ACTIONS(1121), - [anon_sym_AMP_GT] = ACTIONS(1119), - [anon_sym_LT_LT_LT] = ACTIONS(1119), - [anon_sym_GT_AMP] = ACTIONS(1119), - [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_esac] = ACTIONS(1119), - [anon_sym_AMP_AMP] = ACTIONS(1119), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_PIPE_AMP] = ACTIONS(1119), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_GT_GT] = ACTIONS(1148), + [anon_sym_LT_LT] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_LT_AMP] = ACTIONS(1148), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_LT_LT_DASH] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_RPAREN] = ACTIONS(1148), + [sym_file_descriptor] = ACTIONS(1150), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_AMP_GT] = ACTIONS(1148), + [anon_sym_LT_LT_LT] = ACTIONS(1148), + [anon_sym_GT_AMP] = ACTIONS(1148), + [anon_sym_esac] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [460] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_AMP_GT_GT] = ACTIONS(1123), - [anon_sym_LT_LT] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_LT_AMP] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [anon_sym_LT_LT_DASH] = ACTIONS(1123), - [anon_sym_LF] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(1123), - [sym_file_descriptor] = ACTIONS(1125), - [anon_sym_AMP_GT] = ACTIONS(1123), - [anon_sym_LT_LT_LT] = ACTIONS(1123), - [anon_sym_GT_AMP] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_SEMI_SEMI] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), }, [461] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1123), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(1123), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_SEMI_SEMI] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(491), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(1152), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(491), }, [462] = { - [aux_sym_concatenation_repeat1] = STATE(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1127), - [anon_sym_LT_LT] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1127), - [sym__concat] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_LT_AMP] = ACTIONS(1127), - [anon_sym_GT_GT] = ACTIONS(1127), - [anon_sym_LT_LT_DASH] = ACTIONS(1127), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1127), - [anon_sym_RPAREN] = ACTIONS(1127), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1127), - [sym_file_descriptor] = ACTIONS(1129), - [anon_sym_AMP_GT] = ACTIONS(1127), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_GT_AMP] = ACTIONS(1127), - [anon_sym_BQUOTE] = ACTIONS(1127), - [anon_sym_AMP_AMP] = ACTIONS(1127), - [anon_sym_SEMI_SEMI] = ACTIONS(1127), - [anon_sym_PIPE_AMP] = ACTIONS(1127), + [aux_sym_concatenation_repeat1] = STATE(1068), + [anon_sym_PIPE_AMP] = ACTIONS(1156), + [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [anon_sym_LT_LT] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [sym__concat] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_LT_AMP] = ACTIONS(1156), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [sym_file_descriptor] = ACTIONS(1158), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_AMP_GT] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_GT_AMP] = ACTIONS(1156), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), }, [463] = { [aux_sym__literal_repeat1] = STATE(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [sym__special_character] = ACTIONS(2091), - [anon_sym_LT_LT_DASH] = ACTIONS(1133), - [anon_sym_LF] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [sym_file_descriptor] = ACTIONS(1135), - [anon_sym_AMP_GT] = ACTIONS(1133), - [anon_sym_LT_LT_LT] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_esac] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_SEMI_SEMI] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_GT_GT] = ACTIONS(1162), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_LT_AMP] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [sym__special_character] = ACTIONS(2137), + [anon_sym_LT_LT_DASH] = ACTIONS(1162), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1162), + [sym_file_descriptor] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_AMP_GT] = ACTIONS(1162), + [anon_sym_LT_LT_LT] = ACTIONS(1162), + [anon_sym_GT_AMP] = ACTIONS(1162), + [anon_sym_esac] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_SEMI_SEMI] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), }, [464] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1127), - [anon_sym_LT_LT] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_LT_AMP] = ACTIONS(1127), - [anon_sym_GT_GT] = ACTIONS(1127), - [anon_sym_LT_LT_DASH] = ACTIONS(1127), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1127), - [anon_sym_RPAREN] = ACTIONS(1127), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1127), - [sym_file_descriptor] = ACTIONS(1129), - [anon_sym_AMP_GT] = ACTIONS(1127), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_GT_AMP] = ACTIONS(1127), - [anon_sym_BQUOTE] = ACTIONS(1127), - [anon_sym_esac] = ACTIONS(1127), - [anon_sym_AMP_AMP] = ACTIONS(1127), - [anon_sym_SEMI_SEMI] = ACTIONS(1127), - [anon_sym_PIPE_AMP] = ACTIONS(1127), + [anon_sym_PIPE_AMP] = ACTIONS(1156), + [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [anon_sym_LT_LT] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_LT_AMP] = ACTIONS(1156), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1156), + [sym_file_descriptor] = ACTIONS(1158), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_AMP_GT] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_GT_AMP] = ACTIONS(1156), + [anon_sym_esac] = ACTIONS(1156), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), }, [465] = { [sym_heredoc_redirect] = STATE(465), [aux_sym_redirected_statement_repeat1] = STATE(465), [sym_herestring_redirect] = STATE(465), [sym_file_redirect] = STATE(465), - [anon_sym_AMP_GT_GT] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2096), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_LT_AMP] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_LT_LT_DASH] = ACTIONS(2096), - [anon_sym_LF] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym_RPAREN] = ACTIONS(1147), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_GT] = ACTIONS(2093), - [sym_file_descriptor] = ACTIONS(2099), - [anon_sym_AMP_GT] = ACTIONS(2093), - [anon_sym_LT_LT_LT] = ACTIONS(2102), - [anon_sym_GT_AMP] = ACTIONS(2093), - [anon_sym_BQUOTE] = ACTIONS(1147), - [anon_sym_AMP_AMP] = ACTIONS(1147), - [anon_sym_SEMI_SEMI] = ACTIONS(1147), - [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1171), + [anon_sym_AMP_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2142), + [anon_sym_BQUOTE] = ACTIONS(1171), + [anon_sym_PIPE_PIPE] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_LT_AMP] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT_DASH] = ACTIONS(2142), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [sym_file_descriptor] = ACTIONS(2145), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_AMP_GT] = ACTIONS(2139), + [anon_sym_LT_LT_LT] = ACTIONS(2148), + [anon_sym_GT_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_SEMI_SEMI] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), }, [466] = { - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_declare] = ACTIONS(636), - [sym_variable_name] = ACTIONS(638), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_while] = ACTIONS(636), - [anon_sym_SEMI_SEMI] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_local] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [anon_sym_case] = ACTIONS(636), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [sym_file_descriptor] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_word] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [anon_sym_RPAREN] = ACTIONS(1142), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_while] = ACTIONS(652), + [anon_sym_SEMI_SEMI] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_local] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_case] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(652), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [467] = { [sym_heredoc_body] = STATE(492), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(870), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(967), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_RPAREN] = ACTIONS(1142), + [anon_sym_GT] = ACTIONS(652), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [468] = { - [sym_command_substitution] = STATE(423), + [sym_command_substitution] = STATE(424), [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(423), - [sym_process_substitution] = STATE(423), - [sym_simple_expansion] = STATE(423), - [sym_string_expansion] = STATE(423), + [sym_string] = STATE(424), + [sym_process_substitution] = STATE(424), + [sym_simple_expansion] = STATE(424), + [sym_string_expansion] = STATE(424), [aux_sym_command_repeat2] = STATE(472), [sym_concatenation] = STATE(472), - [sym_expansion] = STATE(423), - [sym_word] = ACTIONS(1968), - [anon_sym_AMP_GT_GT] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LT] = ACTIONS(1155), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [anon_sym_PIPE] = ACTIONS(1155), - [anon_sym_LT] = ACTIONS(1155), - [anon_sym_LT_AMP] = ACTIONS(1155), - [anon_sym_GT_GT] = ACTIONS(1155), - [anon_sym_EQ_TILDE] = ACTIONS(1972), + [sym_expansion] = STATE(424), + [anon_sym_PIPE_AMP] = ACTIONS(1184), + [anon_sym_AMP_GT_GT] = ACTIONS(1184), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(2010), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_number] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [sym_word] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_LT_AMP] = ACTIONS(1184), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_EQ_TILDE] = ACTIONS(2018), [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1155), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_RPAREN] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_GT] = ACTIONS(1155), - [sym_file_descriptor] = ACTIONS(1157), - [anon_sym_AMP_GT] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1978), - [anon_sym_LT_LT_LT] = ACTIONS(1155), - [anon_sym_GT_AMP] = ACTIONS(1155), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1155), - [anon_sym_SEMI_SEMI] = ACTIONS(1155), - [anon_sym_PIPE_AMP] = ACTIONS(1155), + [anon_sym_LT_LT_DASH] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(2014), + [anon_sym_RPAREN] = ACTIONS(1184), + [sym_file_descriptor] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1184), + [anon_sym_AMP_GT] = ACTIONS(1184), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(1184), + [anon_sym_GT_AMP] = ACTIONS(1184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [sym_ansii_c_string] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(1184), + [anon_sym_SEMI_SEMI] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), }, [469] = { - [aux_sym_concatenation_repeat1] = STATE(393), - [sym_word] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1159), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [sym__concat] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_LF] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT] = ACTIONS(1159), - [sym_file_descriptor] = ACTIONS(1161), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), - [sym_ansii_c_string] = ACTIONS(1159), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1188), + [anon_sym_GT_LPAREN] = ACTIONS(1188), + [sym_number] = ACTIONS(1188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [sym_word] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1188), + [sym__special_character] = ACTIONS(1188), + [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(1188), + [anon_sym_RPAREN] = ACTIONS(1188), + [sym_file_descriptor] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), + [anon_sym_LT_LPAREN] = ACTIONS(1188), + [sym_ansii_c_string] = ACTIONS(1188), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [anon_sym_PIPE_AMP] = ACTIONS(1188), }, [470] = { - [sym_word] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1159), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_LF] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT] = ACTIONS(1159), - [sym_file_descriptor] = ACTIONS(1161), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), - [sym_ansii_c_string] = ACTIONS(1159), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), + [aux_sym_concatenation_repeat1] = STATE(405), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1188), + [anon_sym_GT_LPAREN] = ACTIONS(1188), + [sym_number] = ACTIONS(1188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [sym__concat] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1188), + [sym_word] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1188), + [sym__special_character] = ACTIONS(1188), + [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(1188), + [anon_sym_RPAREN] = ACTIONS(1188), + [sym_file_descriptor] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), + [anon_sym_LT_LPAREN] = ACTIONS(1188), + [sym_ansii_c_string] = ACTIONS(1188), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [anon_sym_PIPE_AMP] = ACTIONS(1188), }, [471] = { [aux_sym__literal_repeat1] = STATE(413), - [sym_word] = ACTIONS(1163), - [anon_sym_AMP_GT_GT] = ACTIONS(1163), - [anon_sym_DOLLAR] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_LT_LPAREN] = ACTIONS(1163), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_LT_AMP] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [sym__special_character] = ACTIONS(1958), - [anon_sym_LT_LT_DASH] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_LF] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1163), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1165), - [anon_sym_AMP_GT] = ACTIONS(1163), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [anon_sym_LT_LT_LT] = ACTIONS(1163), - [anon_sym_GT_AMP] = ACTIONS(1163), - [anon_sym_BQUOTE] = ACTIONS(1163), - [anon_sym_GT_LPAREN] = ACTIONS(1163), - [sym_ansii_c_string] = ACTIONS(1163), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1163), - [anon_sym_PIPE_AMP] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_GT_LPAREN] = ACTIONS(1192), + [sym_number] = ACTIONS(1192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [sym_word] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_AMP] = ACTIONS(1192), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_EQ_TILDE] = ACTIONS(1192), + [sym__special_character] = ACTIONS(2000), + [anon_sym_LT_LT_DASH] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [sym_raw_string] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1192), + [sym_file_descriptor] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_AMP_GT] = ACTIONS(1192), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_GT_AMP] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1192), + [sym_ansii_c_string] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_SEMI_SEMI] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), }, [472] = { - [sym_command_substitution] = STATE(423), + [sym_command_substitution] = STATE(424), [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(423), - [sym_process_substitution] = STATE(423), - [sym_simple_expansion] = STATE(423), - [sym_string_expansion] = STATE(423), + [sym_string] = STATE(424), + [sym_process_substitution] = STATE(424), + [sym_simple_expansion] = STATE(424), + [sym_string_expansion] = STATE(424), [aux_sym_command_repeat2] = STATE(472), [sym_concatenation] = STATE(472), - [sym_expansion] = STATE(423), - [sym_word] = ACTIONS(2105), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(2111), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(2114), - [sym__special_character] = ACTIONS(2117), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2123), - [anon_sym_LF] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT] = ACTIONS(1159), - [sym_file_descriptor] = ACTIONS(1161), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(2114), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(2129), - [anon_sym_GT_LPAREN] = ACTIONS(2111), - [sym_ansii_c_string] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), + [sym_expansion] = STATE(424), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(2154), + [anon_sym_GT_LPAREN] = ACTIONS(2157), + [sym_number] = ACTIONS(2160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [sym_word] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(2166), + [sym__special_character] = ACTIONS(2169), + [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(2160), + [anon_sym_RPAREN] = ACTIONS(1188), + [sym_file_descriptor] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2175), + [anon_sym_LT_LPAREN] = ACTIONS(2157), + [sym_ansii_c_string] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [anon_sym_PIPE_AMP] = ACTIONS(1188), }, [473] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_LT_AMP] = ACTIONS(1194), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_LT_LT_DASH] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), - [sym_file_descriptor] = ACTIONS(1196), - [anon_sym_AMP_GT] = ACTIONS(1194), - [anon_sym_LT_LT_LT] = ACTIONS(1194), - [anon_sym_GT_AMP] = ACTIONS(1194), - [anon_sym_BQUOTE] = ACTIONS(1194), - [anon_sym_esac] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_SEMI_SEMI] = ACTIONS(1194), - [anon_sym_PIPE_AMP] = ACTIONS(1194), + [sym_string] = STATE(404), + [anon_sym__] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [sym__special_character] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_GT_AMP] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2178), + [sym_ansii_c_string] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [anon_sym_POUND] = ACTIONS(2180), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(2180), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [474] = { - [sym_string] = STATE(405), - [sym_word] = ACTIONS(1198), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2132), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym__] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1978), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2134), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(2132), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_QMARK] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [475] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1210), - [anon_sym_LT_LT] = ACTIONS(1210), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1210), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_LT_AMP] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(1210), - [anon_sym_LT_LT_DASH] = ACTIONS(1210), - [anon_sym_LF] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_RPAREN] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [sym_file_descriptor] = ACTIONS(1212), - [anon_sym_AMP_GT] = ACTIONS(1210), - [anon_sym_LT_LT_LT] = ACTIONS(1210), - [anon_sym_GT_AMP] = ACTIONS(1210), - [anon_sym_BQUOTE] = ACTIONS(1210), - [anon_sym_esac] = ACTIONS(1210), - [anon_sym_AMP_AMP] = ACTIONS(1210), - [anon_sym_SEMI_SEMI] = ACTIONS(1210), - [anon_sym_PIPE_AMP] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [anon_sym_EQ_TILDE] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_EQ_EQ] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [476] = { - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_RBRACK] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [sym_test_operator] = ACTIONS(1244), - [anon_sym_EQ_TILDE] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [477] = { - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1250), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [sym_test_operator] = ACTIONS(1248), - [anon_sym_EQ_TILDE] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1310), + [anon_sym_BQUOTE] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1310), + [anon_sym_GT_GT] = ACTIONS(1310), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_RPAREN] = ACTIONS(1310), + [sym_file_descriptor] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1310), + [anon_sym_AMP_GT] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_GT_AMP] = ACTIONS(1310), + [anon_sym_esac] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_SEMI_SEMI] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), }, [478] = { - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1250), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [sym_test_operator] = ACTIONS(1248), - [anon_sym_EQ_TILDE] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), + [anon_sym_PIPE_AMP] = ACTIONS(1318), + [anon_sym_AMP_GT_GT] = ACTIONS(1318), + [anon_sym_LT_LT] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [anon_sym_PIPE_PIPE] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_LT_AMP] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1318), + [anon_sym_LT_LT_DASH] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1318), + [sym_file_descriptor] = ACTIONS(1320), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_AMP_GT] = ACTIONS(1318), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_GT_AMP] = ACTIONS(1318), + [anon_sym_esac] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1318), + [anon_sym_SEMI_SEMI] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), }, [479] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1352), + [anon_sym_PLUS_EQ] = ACTIONS(1352), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_RBRACK] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [sym_test_operator] = ACTIONS(1352), + [anon_sym_EQ_EQ] = ACTIONS(1352), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_EQ_TILDE] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_LT_EQ] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_DASH_EQ] = ACTIONS(1352), }, [480] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_EQ_TILDE] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_EQ_EQ] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_BANG_EQ] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1356), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_DASH_EQ] = ACTIONS(1356), }, [481] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [anon_sym_EQ_TILDE] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_EQ_EQ] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_BANG_EQ] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1356), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_DASH_EQ] = ACTIONS(1356), }, [482] = { - [aux_sym_concatenation_repeat1] = STATE(1161), - [sym_word] = ACTIONS(1333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1333), - [sym_raw_string] = ACTIONS(1333), - [anon_sym_LF] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_LT_LPAREN] = ACTIONS(1333), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1333), - [sym__concat] = ACTIONS(2138), - [anon_sym_BQUOTE] = ACTIONS(1333), - [anon_sym_GT_LPAREN] = ACTIONS(1333), - [sym_ansii_c_string] = ACTIONS(1333), - [sym__special_character] = ACTIONS(1333), - [anon_sym_SEMI_SEMI] = ACTIONS(1333), + [aux_sym_concatenation_repeat1] = STATE(1164), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1362), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [sym_number] = ACTIONS(1362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym__concat] = ACTIONS(2184), + [sym_word] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [sym_ansii_c_string] = ACTIONS(1362), + [sym__special_character] = ACTIONS(1362), + [anon_sym_SEMI_SEMI] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), }, [483] = { - [sym_word] = ACTIONS(1335), - [anon_sym_AMP_GT_GT] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1335), - [anon_sym_LT_LPAREN] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_LT_AMP] = ACTIONS(1335), - [anon_sym_GT_GT] = ACTIONS(1335), - [sym__special_character] = ACTIONS(1335), - [anon_sym_LT_LT_DASH] = ACTIONS(1335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), - [anon_sym_LF] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [sym_raw_string] = ACTIONS(1335), - [sym_variable_name] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [sym_file_descriptor] = ACTIONS(1337), - [anon_sym_AMP_GT] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_LT_LT_LT] = ACTIONS(1335), - [anon_sym_GT_AMP] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_GT_LPAREN] = ACTIONS(1335), - [sym_ansii_c_string] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_number] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [sym_word] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [sym__special_character] = ACTIONS(1366), + [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [sym_variable_name] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1366), + [sym_file_descriptor] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [sym_ansii_c_string] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_SEMI_SEMI] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), }, [484] = { [aux_sym__literal_repeat1] = STATE(1199), - [sym_word] = ACTIONS(1341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1341), - [sym_raw_string] = ACTIONS(1341), - [anon_sym_LF] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_DOLLAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_LT_LPAREN] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1341), - [anon_sym_BQUOTE] = ACTIONS(1341), - [anon_sym_GT_LPAREN] = ACTIONS(1341), - [sym_ansii_c_string] = ACTIONS(1341), - [sym__special_character] = ACTIONS(2140), - [anon_sym_SEMI_SEMI] = ACTIONS(1341), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1372), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_GT_LPAREN] = ACTIONS(1372), + [sym_number] = ACTIONS(1372), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_word] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [sym_ansii_c_string] = ACTIONS(1372), + [sym__special_character] = ACTIONS(2186), + [anon_sym_SEMI_SEMI] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), }, [485] = { - [sym_word] = ACTIONS(2142), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1347), - [sym_raw_string] = ACTIONS(1347), - [anon_sym_COLON] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_COLON_DASH] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(1347), - [anon_sym_LT_LPAREN] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [sym__concat] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1347), - [anon_sym_GT_LPAREN] = ACTIONS(1347), - [sym_ansii_c_string] = ACTIONS(1347), - [anon_sym_COLON_QMARK] = ACTIONS(2142), - [sym__special_character] = ACTIONS(2142), + [anon_sym_PERCENT] = ACTIONS(2188), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1378), + [sym_raw_string] = ACTIONS(1378), + [anon_sym_SLASH] = ACTIONS(1378), + [anon_sym_DOLLAR] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_EQ] = ACTIONS(2188), + [anon_sym_COLON_DASH] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [anon_sym_COLON_QMARK] = ACTIONS(2188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1378), + [anon_sym_BQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [anon_sym_GT_LPAREN] = ACTIONS(1378), + [sym__concat] = ACTIONS(2190), + [sym_word] = ACTIONS(2188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1378), + [anon_sym_LT_LPAREN] = ACTIONS(1378), + [sym_ansii_c_string] = ACTIONS(1378), + [anon_sym_COLON] = ACTIONS(2188), + [sym__special_character] = ACTIONS(2188), }, [486] = { - [sym_word] = ACTIONS(2146), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1357), - [sym_raw_string] = ACTIONS(1357), - [anon_sym_COLON] = ACTIONS(2146), - [anon_sym_DOLLAR] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_EQ] = ACTIONS(2146), - [anon_sym_PERCENT] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(1357), - [anon_sym_COLON_DASH] = ACTIONS(2146), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_LT_LPAREN] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [sym__concat] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1357), - [anon_sym_GT_LPAREN] = ACTIONS(1357), - [sym_ansii_c_string] = ACTIONS(1357), - [anon_sym_COLON_QMARK] = ACTIONS(2146), - [sym__special_character] = ACTIONS(2146), + [anon_sym_PERCENT] = ACTIONS(2192), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1388), + [sym_raw_string] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_EQ] = ACTIONS(2192), + [anon_sym_COLON_DASH] = ACTIONS(2192), + [sym_number] = ACTIONS(2192), + [anon_sym_COLON_QMARK] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1388), + [anon_sym_BQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [anon_sym_GT_LPAREN] = ACTIONS(1388), + [sym__concat] = ACTIONS(2194), + [sym_word] = ACTIONS(2192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1388), + [anon_sym_LT_LPAREN] = ACTIONS(1388), + [sym_ansii_c_string] = ACTIONS(1388), + [anon_sym_COLON] = ACTIONS(2192), + [sym__special_character] = ACTIONS(2192), }, [487] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_TILDE] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [anon_sym_EQ_TILDE] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_EQ_EQ] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [488] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_LT_AMP] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [anon_sym_LT_LT_DASH] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [sym_file_descriptor] = ACTIONS(1371), - [anon_sym_AMP_GT] = ACTIONS(1369), - [anon_sym_LT_LT_LT] = ACTIONS(1369), - [anon_sym_GT_AMP] = ACTIONS(1369), - [anon_sym_BQUOTE] = ACTIONS(1369), - [anon_sym_esac] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1369), - [anon_sym_SEMI_SEMI] = ACTIONS(1369), - [anon_sym_PIPE_AMP] = ACTIONS(1369), + [anon_sym_PIPE_AMP] = ACTIONS(1420), + [anon_sym_AMP_GT_GT] = ACTIONS(1420), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), + [anon_sym_PIPE_PIPE] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_LT_AMP] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_LT_LT_DASH] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1420), + [sym_file_descriptor] = ACTIONS(1422), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_AMP_GT] = ACTIONS(1420), + [anon_sym_LT_LT_LT] = ACTIONS(1420), + [anon_sym_GT_AMP] = ACTIONS(1420), + [anon_sym_esac] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_SEMI_SEMI] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), }, [489] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT] = ACTIONS(1395), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_LT_AMP] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_DASH] = ACTIONS(1395), - [anon_sym_LF] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [sym_file_descriptor] = ACTIONS(1397), - [anon_sym_AMP_GT] = ACTIONS(1395), - [anon_sym_LT_LT_LT] = ACTIONS(1395), - [anon_sym_GT_AMP] = ACTIONS(1395), - [anon_sym_BQUOTE] = ACTIONS(1395), - [anon_sym_esac] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_SEMI_SEMI] = ACTIONS(1395), - [anon_sym_PIPE_AMP] = ACTIONS(1395), + [anon_sym_PIPE_AMP] = ACTIONS(1424), + [anon_sym_AMP_GT_GT] = ACTIONS(1424), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_LT_AMP] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1424), + [anon_sym_LT_LT_DASH] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [sym_file_descriptor] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_AMP_GT] = ACTIONS(1424), + [anon_sym_LT_LT_LT] = ACTIONS(1424), + [anon_sym_GT_AMP] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1424), + [anon_sym_SEMI_SEMI] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), }, [490] = { - [anon_sym_LF] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_BQUOTE] = ACTIONS(1407), - [anon_sym_esac] = ACTIONS(1407), - [anon_sym_RPAREN] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI_SEMI] = ACTIONS(1407), + [anon_sym_LF] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_esac] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_SEMI_SEMI] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), }, [491] = { - [sym_word] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1417), - [anon_sym_typeset] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_LT_LPAREN] = ACTIONS(1417), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1415), - [sym__special_character] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1417), - [sym_raw_string] = ACTIONS(1417), - [anon_sym_declare] = ACTIONS(1415), - [sym_variable_name] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1419), - [anon_sym_readonly] = ACTIONS(1415), - [anon_sym_unset] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_GT_AMP] = ACTIONS(1417), - [sym_ansii_c_string] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_SEMI_SEMI] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_local] = ACTIONS(1415), - [anon_sym_unsetenv] = ACTIONS(1415), - [anon_sym_function] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1417), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [sym_file_descriptor] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_GT_LPAREN] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_AMP_GT_GT] = ACTIONS(1446), + [anon_sym_typeset] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_GT_LPAREN] = ACTIONS(1446), + [sym_word] = ACTIONS(1444), + [anon_sym_LT_AMP] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), + [sym_raw_string] = ACTIONS(1446), + [anon_sym_declare] = ACTIONS(1444), + [sym_variable_name] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_GT_AMP] = ACTIONS(1446), + [sym_ansii_c_string] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_SEMI_SEMI] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_local] = ACTIONS(1444), + [anon_sym_unsetenv] = ACTIONS(1444), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [sym_file_descriptor] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_AMP_GT] = ACTIONS(1444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_LT_LPAREN] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), }, [492] = { - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_LF] = ACTIONS(2154), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_SEMI_SEMI] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(2196), [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_SEMI_SEMI] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), }, [493] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1425), - [anon_sym_LT_LT] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1425), - [anon_sym_LT_AMP] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_LT_LT_DASH] = ACTIONS(1425), - [anon_sym_LF] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_RPAREN] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_GT] = ACTIONS(1425), - [sym_file_descriptor] = ACTIONS(1427), - [anon_sym_AMP_GT] = ACTIONS(1425), - [anon_sym_LT_LT_LT] = ACTIONS(1425), - [anon_sym_GT_AMP] = ACTIONS(1425), - [anon_sym_BQUOTE] = ACTIONS(1425), - [anon_sym_esac] = ACTIONS(1425), - [anon_sym_AMP_AMP] = ACTIONS(1425), - [anon_sym_SEMI_SEMI] = ACTIONS(1425), - [anon_sym_PIPE_AMP] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [anon_sym_EQ_TILDE] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [494] = { - [anon_sym_LPAREN] = ACTIONS(1415), - [sym_word] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1417), - [anon_sym_local] = ACTIONS(1415), - [anon_sym_typeset] = ACTIONS(1415), - [anon_sym_unsetenv] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_LT_LPAREN] = ACTIONS(1417), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_LT_AMP] = ACTIONS(1417), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1415), - [sym__special_character] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1417), - [sym_raw_string] = ACTIONS(1417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1417), - [sym_file_descriptor] = ACTIONS(1417), - [sym_variable_name] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_readonly] = ACTIONS(1415), - [anon_sym_unset] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_GT_AMP] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_GT_LPAREN] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [sym_ansii_c_string] = ACTIONS(1417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [anon_sym_EQ_TILDE] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [495] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1437), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1437), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_LT_AMP] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_LT_LT_DASH] = ACTIONS(1437), - [anon_sym_LF] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [sym_file_descriptor] = ACTIONS(1439), - [anon_sym_AMP_GT] = ACTIONS(1437), - [anon_sym_LT_LT_LT] = ACTIONS(1437), - [anon_sym_GT_AMP] = ACTIONS(1437), - [anon_sym_BQUOTE] = ACTIONS(1437), - [anon_sym_esac] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_SEMI_SEMI] = ACTIONS(1437), - [anon_sym_PIPE_AMP] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_EQ_TILDE] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [496] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1532), - [anon_sym_LT_LT] = ACTIONS(1532), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_LT_AMP] = ACTIONS(1532), - [anon_sym_GT_GT] = ACTIONS(1532), - [anon_sym_LT_LT_DASH] = ACTIONS(1532), - [anon_sym_LF] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_GT] = ACTIONS(1532), - [sym_file_descriptor] = ACTIONS(1534), - [anon_sym_AMP_GT] = ACTIONS(1532), - [anon_sym_LT_LT_LT] = ACTIONS(1532), - [anon_sym_GT_AMP] = ACTIONS(1532), - [anon_sym_BQUOTE] = ACTIONS(1532), - [anon_sym_esac] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1532), - [anon_sym_SEMI_SEMI] = ACTIONS(1532), - [anon_sym_PIPE_AMP] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_EQ_TILDE] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [497] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1544), - [anon_sym_LT_LT] = ACTIONS(1544), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_LT_AMP] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1544), - [anon_sym_LT_LT_DASH] = ACTIONS(1544), - [anon_sym_LF] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1544), - [sym_file_descriptor] = ACTIONS(1546), - [anon_sym_AMP_GT] = ACTIONS(1544), - [anon_sym_LT_LT_LT] = ACTIONS(1544), - [anon_sym_GT_AMP] = ACTIONS(1544), - [anon_sym_BQUOTE] = ACTIONS(1544), - [anon_sym_esac] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1544), - [anon_sym_SEMI_SEMI] = ACTIONS(1544), - [anon_sym_PIPE_AMP] = ACTIONS(1544), + [anon_sym_PIPE_AMP] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_esac] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), }, [498] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [anon_sym_EQ_TILDE] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_EQ_EQ] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_AMP_GT_GT] = ACTIONS(1446), + [anon_sym_local] = ACTIONS(1444), + [anon_sym_typeset] = ACTIONS(1444), + [anon_sym_unsetenv] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_GT_LPAREN] = ACTIONS(1446), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_LT_AMP] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1444), + [sym_word] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), + [sym_raw_string] = ACTIONS(1446), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [sym_variable_name] = ACTIONS(1446), + [sym_file_descriptor] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_AMP_GT] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_GT_AMP] = ACTIONS(1446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_LT_LPAREN] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [sym_ansii_c_string] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), }, [499] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [anon_sym_EQ_TILDE] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_EQ_EQ] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_PIPE_AMP] = ACTIONS(1498), + [anon_sym_AMP_GT_GT] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_BQUOTE] = ACTIONS(1498), + [anon_sym_PIPE_PIPE] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_LT_AMP] = ACTIONS(1498), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_LT_LT_DASH] = ACTIONS(1498), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [sym_file_descriptor] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1498), + [anon_sym_AMP_GT] = ACTIONS(1498), + [anon_sym_LT_LT_LT] = ACTIONS(1498), + [anon_sym_GT_AMP] = ACTIONS(1498), + [anon_sym_esac] = ACTIONS(1498), + [anon_sym_AMP_AMP] = ACTIONS(1498), + [anon_sym_SEMI_SEMI] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), }, [500] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [anon_sym_EQ_TILDE] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_PIPE_AMP] = ACTIONS(1596), + [anon_sym_AMP_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_LT_AMP] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT_DASH] = ACTIONS(1596), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [sym_file_descriptor] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_AMP_GT] = ACTIONS(1596), + [anon_sym_LT_LT_LT] = ACTIONS(1596), + [anon_sym_GT_AMP] = ACTIONS(1596), + [anon_sym_esac] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_SEMI_SEMI] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), }, [501] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [anon_sym_EQ_TILDE] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_PIPE_AMP] = ACTIONS(1608), + [anon_sym_AMP_GT_GT] = ACTIONS(1608), + [anon_sym_LT_LT] = ACTIONS(1608), + [anon_sym_BQUOTE] = ACTIONS(1608), + [anon_sym_PIPE_PIPE] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_LT_AMP] = ACTIONS(1608), + [anon_sym_GT_GT] = ACTIONS(1608), + [anon_sym_LT_LT_DASH] = ACTIONS(1608), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1608), + [sym_file_descriptor] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1608), + [anon_sym_AMP_GT] = ACTIONS(1608), + [anon_sym_LT_LT_LT] = ACTIONS(1608), + [anon_sym_GT_AMP] = ACTIONS(1608), + [anon_sym_esac] = ACTIONS(1608), + [anon_sym_AMP_AMP] = ACTIONS(1608), + [anon_sym_SEMI_SEMI] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), }, [502] = { - [sym_word] = ACTIONS(1582), - [anon_sym_AMP_GT_GT] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_LT_AMP] = ACTIONS(1582), - [anon_sym_GT_GT] = ACTIONS(1582), - [sym__special_character] = ACTIONS(1582), - [anon_sym_LT_LT_DASH] = ACTIONS(1582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1582), - [anon_sym_LF] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [sym_raw_string] = ACTIONS(1582), - [sym_variable_name] = ACTIONS(1584), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [sym_file_descriptor] = ACTIONS(1584), - [anon_sym_AMP_GT] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_LT_LT_LT] = ACTIONS(1582), - [anon_sym_GT_AMP] = ACTIONS(1582), - [anon_sym_BQUOTE] = ACTIONS(1582), - [anon_sym_GT_LPAREN] = ACTIONS(1582), - [sym_ansii_c_string] = ACTIONS(1582), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_SEMI_SEMI] = ACTIONS(1582), - [anon_sym_PIPE_AMP] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_AMP_GT_GT] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_LT_LT] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_GT_LPAREN] = ACTIONS(1614), + [sym_number] = ACTIONS(1614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [sym_word] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_LT_AMP] = ACTIONS(1614), + [anon_sym_GT_GT] = ACTIONS(1614), + [sym__special_character] = ACTIONS(1614), + [anon_sym_LT_LT_DASH] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [sym_raw_string] = ACTIONS(1614), + [sym_variable_name] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1614), + [sym_file_descriptor] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_AMP_GT] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_LT_LT_LT] = ACTIONS(1614), + [anon_sym_GT_AMP] = ACTIONS(1614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), + [anon_sym_LT_LPAREN] = ACTIONS(1614), + [sym_ansii_c_string] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_SEMI_SEMI] = ACTIONS(1614), + [anon_sym_PIPE_AMP] = ACTIONS(1614), }, [503] = { [sym_command_substitution] = STATE(482), @@ -21149,1185 +21582,1208 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(482), [sym_concatenation] = STATE(503), [sym_expansion] = STATE(482), - [sym_word] = ACTIONS(2156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2162), - [sym_raw_string] = ACTIONS(2156), - [anon_sym_LF] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_LPAREN] = ACTIONS(2170), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_BQUOTE] = ACTIONS(2176), - [anon_sym_GT_LPAREN] = ACTIONS(2170), - [sym_ansii_c_string] = ACTIONS(2156), - [sym__special_character] = ACTIONS(2179), - [anon_sym_SEMI_SEMI] = ACTIONS(2165), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2202), + [anon_sym_LF] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_BQUOTE] = ACTIONS(2210), + [anon_sym_GT_LPAREN] = ACTIONS(2213), + [sym_number] = ACTIONS(2202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2219), + [sym_word] = ACTIONS(2202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2222), + [anon_sym_LT_LPAREN] = ACTIONS(2213), + [sym_ansii_c_string] = ACTIONS(2202), + [sym__special_character] = ACTIONS(2225), + [anon_sym_SEMI_SEMI] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), }, [504] = { - [sym_word] = ACTIONS(2182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1612), - [sym_raw_string] = ACTIONS(1612), - [anon_sym_COLON] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_EQ] = ACTIONS(2182), - [anon_sym_PERCENT] = ACTIONS(2182), - [anon_sym_POUND] = ACTIONS(1612), - [anon_sym_COLON_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(1612), - [anon_sym_LT_LPAREN] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1612), - [anon_sym_GT_LPAREN] = ACTIONS(1612), - [sym_ansii_c_string] = ACTIONS(1612), - [anon_sym_COLON_QMARK] = ACTIONS(2182), - [sym__special_character] = ACTIONS(2182), + [anon_sym_PERCENT] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1647), + [sym_raw_string] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_COLON_DASH] = ACTIONS(2228), + [sym_number] = ACTIONS(2228), + [anon_sym_COLON_QMARK] = ACTIONS(2228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_GT_LPAREN] = ACTIONS(1647), + [sym_word] = ACTIONS(2228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), + [anon_sym_LT_LPAREN] = ACTIONS(1647), + [sym_ansii_c_string] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(2228), + [sym__special_character] = ACTIONS(2228), }, [505] = { - [sym_word] = ACTIONS(2182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1612), - [sym_raw_string] = ACTIONS(1612), - [anon_sym_COLON] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_EQ] = ACTIONS(2182), - [anon_sym_PERCENT] = ACTIONS(2182), - [anon_sym_POUND] = ACTIONS(1612), - [anon_sym_COLON_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(1612), - [anon_sym_LT_LPAREN] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym__concat] = ACTIONS(2184), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1612), - [anon_sym_GT_LPAREN] = ACTIONS(1612), - [sym_ansii_c_string] = ACTIONS(1612), - [anon_sym_COLON_QMARK] = ACTIONS(2182), - [sym__special_character] = ACTIONS(2182), + [anon_sym_PERCENT] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1647), + [sym_raw_string] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_COLON_DASH] = ACTIONS(2228), + [sym_number] = ACTIONS(2228), + [anon_sym_COLON_QMARK] = ACTIONS(2228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_GT_LPAREN] = ACTIONS(1647), + [sym__concat] = ACTIONS(2230), + [sym_word] = ACTIONS(2228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), + [anon_sym_LT_LPAREN] = ACTIONS(1647), + [sym_ansii_c_string] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(2228), + [sym__special_character] = ACTIONS(2228), }, [506] = { - [sym_word] = ACTIONS(2186), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1616), - [sym_raw_string] = ACTIONS(1616), - [anon_sym_COLON] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_PERCENT] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(1616), - [anon_sym_COLON_DASH] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_LT_LPAREN] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1616), - [anon_sym_GT_LPAREN] = ACTIONS(1616), - [sym_ansii_c_string] = ACTIONS(1616), - [anon_sym_COLON_QMARK] = ACTIONS(2186), - [sym__special_character] = ACTIONS(2186), + [anon_sym_PERCENT] = ACTIONS(2232), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1651), + [sym_raw_string] = ACTIONS(1651), + [anon_sym_SLASH] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2232), + [anon_sym_COLON_DASH] = ACTIONS(2232), + [sym_number] = ACTIONS(2232), + [anon_sym_COLON_QMARK] = ACTIONS(2232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1651), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_GT_LPAREN] = ACTIONS(1651), + [sym_word] = ACTIONS(2232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1651), + [anon_sym_LT_LPAREN] = ACTIONS(1651), + [sym_ansii_c_string] = ACTIONS(1651), + [anon_sym_COLON] = ACTIONS(2232), + [sym__special_character] = ACTIONS(2232), }, [507] = { - [sym_word] = ACTIONS(2186), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1616), - [sym_raw_string] = ACTIONS(1616), - [anon_sym_COLON] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_PERCENT] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(1616), - [anon_sym_COLON_DASH] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_LT_LPAREN] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1616), - [sym__concat] = ACTIONS(2188), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1616), - [anon_sym_GT_LPAREN] = ACTIONS(1616), - [sym_ansii_c_string] = ACTIONS(1616), - [anon_sym_COLON_QMARK] = ACTIONS(2186), - [sym__special_character] = ACTIONS(2186), + [anon_sym_PERCENT] = ACTIONS(2232), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1651), + [sym_raw_string] = ACTIONS(1651), + [anon_sym_SLASH] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2232), + [anon_sym_COLON_DASH] = ACTIONS(2232), + [sym_number] = ACTIONS(2232), + [anon_sym_COLON_QMARK] = ACTIONS(2232), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1651), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_GT_LPAREN] = ACTIONS(1651), + [sym__concat] = ACTIONS(2234), + [sym_word] = ACTIONS(2232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1651), + [anon_sym_LT_LPAREN] = ACTIONS(1651), + [sym_ansii_c_string] = ACTIONS(1651), + [anon_sym_COLON] = ACTIONS(2232), + [sym__special_character] = ACTIONS(2232), }, [508] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1626), - [anon_sym_LT_LT] = ACTIONS(1626), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_LT_AMP] = ACTIONS(1626), - [anon_sym_GT_GT] = ACTIONS(1626), - [anon_sym_LT_LT_DASH] = ACTIONS(1626), - [anon_sym_LF] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_RPAREN] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_GT] = ACTIONS(1626), - [sym_file_descriptor] = ACTIONS(1628), - [anon_sym_AMP_GT] = ACTIONS(1626), - [anon_sym_LT_LT_LT] = ACTIONS(1626), - [anon_sym_GT_AMP] = ACTIONS(1626), - [anon_sym_BQUOTE] = ACTIONS(1626), - [anon_sym_esac] = ACTIONS(1626), - [anon_sym_AMP_AMP] = ACTIONS(1626), - [anon_sym_SEMI_SEMI] = ACTIONS(1626), - [anon_sym_PIPE_AMP] = ACTIONS(1626), + [anon_sym_PIPE_AMP] = ACTIONS(1661), + [anon_sym_AMP_GT_GT] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(1661), + [anon_sym_BQUOTE] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_AMP] = ACTIONS(1661), + [anon_sym_GT_GT] = ACTIONS(1661), + [anon_sym_LT_LT_DASH] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [sym_file_descriptor] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_AMP_GT] = ACTIONS(1661), + [anon_sym_LT_LT_LT] = ACTIONS(1661), + [anon_sym_GT_AMP] = ACTIONS(1661), + [anon_sym_esac] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_SEMI_SEMI] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1661), }, [509] = { - [anon_sym_LF] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_BQUOTE] = ACTIONS(1630), - [anon_sym_esac] = ACTIONS(1630), - [anon_sym_RPAREN] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1630), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI_SEMI] = ACTIONS(1630), + [anon_sym_LF] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_esac] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_BQUOTE] = ACTIONS(1667), + [anon_sym_SEMI_SEMI] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1667), }, [510] = { - [sym_word] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1417), - [anon_sym_typeset] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_LT_LPAREN] = ACTIONS(1417), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1415), - [sym__special_character] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1417), - [sym_raw_string] = ACTIONS(1417), - [anon_sym_declare] = ACTIONS(1415), - [sym_variable_name] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_readonly] = ACTIONS(1415), - [anon_sym_unset] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_GT_AMP] = ACTIONS(1417), - [sym_ansii_c_string] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_SEMI_SEMI] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_local] = ACTIONS(1415), - [anon_sym_unsetenv] = ACTIONS(1415), - [anon_sym_function] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1417), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [sym_file_descriptor] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_GT_LPAREN] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_AMP_GT_GT] = ACTIONS(1446), + [anon_sym_typeset] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_GT_LPAREN] = ACTIONS(1446), + [sym_word] = ACTIONS(1444), + [anon_sym_LT_AMP] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), + [sym_raw_string] = ACTIONS(1446), + [anon_sym_declare] = ACTIONS(1444), + [sym_variable_name] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1686), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_GT_AMP] = ACTIONS(1446), + [sym_ansii_c_string] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_SEMI_SEMI] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_local] = ACTIONS(1444), + [anon_sym_unsetenv] = ACTIONS(1444), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [sym_file_descriptor] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_AMP_GT] = ACTIONS(1444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_LT_LPAREN] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), }, [511] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [sym_file_descriptor] = ACTIONS(1661), - [anon_sym_AMP_GT] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [anon_sym_esac] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_EQ_TILDE] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [512] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1665), - [anon_sym_LT_LT] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_LT_AMP] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_LT_LT_DASH] = ACTIONS(1665), - [anon_sym_LF] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_GT] = ACTIONS(1665), - [sym_file_descriptor] = ACTIONS(1667), - [anon_sym_AMP_GT] = ACTIONS(1665), - [anon_sym_LT_LT_LT] = ACTIONS(1665), - [anon_sym_GT_AMP] = ACTIONS(1665), - [anon_sym_BQUOTE] = ACTIONS(1665), - [anon_sym_esac] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1665), - [anon_sym_SEMI_SEMI] = ACTIONS(1665), - [anon_sym_PIPE_AMP] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [anon_sym_EQ_TILDE] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [anon_sym_RPAREN] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [513] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_LT_AMP] = ACTIONS(1735), - [anon_sym_GT_GT] = ACTIONS(1735), - [anon_sym_LT_LT_DASH] = ACTIONS(1735), - [anon_sym_LF] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1735), - [sym_file_descriptor] = ACTIONS(1737), - [anon_sym_AMP_GT] = ACTIONS(1735), - [anon_sym_LT_LT_LT] = ACTIONS(1735), - [anon_sym_GT_AMP] = ACTIONS(1735), - [anon_sym_BQUOTE] = ACTIONS(1735), - [anon_sym_esac] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_SEMI_SEMI] = ACTIONS(1735), - [anon_sym_PIPE_AMP] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [anon_sym_EQ_TILDE] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [anon_sym_RPAREN] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_EQ_EQ] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [514] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [anon_sym_EQ_TILDE] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_EQ_EQ] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [anon_sym_EQ_TILDE] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_EQ_EQ] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [515] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1714), + [anon_sym_AMP_GT_GT] = ACTIONS(1714), + [anon_sym_LT_LT] = ACTIONS(1714), + [anon_sym_BQUOTE] = ACTIONS(1714), + [anon_sym_PIPE_PIPE] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_LT_AMP] = ACTIONS(1714), + [anon_sym_GT_GT] = ACTIONS(1714), + [anon_sym_LT_LT_DASH] = ACTIONS(1714), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [sym_file_descriptor] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_AMP_GT] = ACTIONS(1714), + [anon_sym_LT_LT_LT] = ACTIONS(1714), + [anon_sym_GT_AMP] = ACTIONS(1714), + [anon_sym_esac] = ACTIONS(1714), + [anon_sym_AMP_AMP] = ACTIONS(1714), + [anon_sym_SEMI_SEMI] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), }, [516] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [anon_sym_EQ_TILDE] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_EQ_EQ] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_PIPE_AMP] = ACTIONS(1720), + [anon_sym_AMP_GT_GT] = ACTIONS(1720), + [anon_sym_LT_LT] = ACTIONS(1720), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_LT_AMP] = ACTIONS(1720), + [anon_sym_GT_GT] = ACTIONS(1720), + [anon_sym_LT_LT_DASH] = ACTIONS(1720), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1720), + [sym_file_descriptor] = ACTIONS(1722), + [anon_sym_GT] = ACTIONS(1720), + [anon_sym_AMP_GT] = ACTIONS(1720), + [anon_sym_LT_LT_LT] = ACTIONS(1720), + [anon_sym_GT_AMP] = ACTIONS(1720), + [anon_sym_esac] = ACTIONS(1720), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_SEMI_SEMI] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1720), }, [517] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [anon_sym_EQ_TILDE] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_EQ_EQ] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_PIPE_AMP] = ACTIONS(1797), + [anon_sym_AMP_GT_GT] = ACTIONS(1797), + [anon_sym_LT_LT] = ACTIONS(1797), + [anon_sym_BQUOTE] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_LT_AMP] = ACTIONS(1797), + [anon_sym_GT_GT] = ACTIONS(1797), + [anon_sym_LT_LT_DASH] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1797), + [sym_file_descriptor] = ACTIONS(1799), + [anon_sym_GT] = ACTIONS(1797), + [anon_sym_AMP_GT] = ACTIONS(1797), + [anon_sym_LT_LT_LT] = ACTIONS(1797), + [anon_sym_GT_AMP] = ACTIONS(1797), + [anon_sym_esac] = ACTIONS(1797), + [anon_sym_AMP_AMP] = ACTIONS(1797), + [anon_sym_SEMI_SEMI] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1797), }, [518] = { - [sym_word] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), - [sym_raw_string] = ACTIONS(1761), - [anon_sym_COLON] = ACTIONS(2190), - [anon_sym_DOLLAR] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(1761), - [anon_sym_COLON_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_LT_LPAREN] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1761), - [anon_sym_GT_LPAREN] = ACTIONS(1761), - [sym_ansii_c_string] = ACTIONS(1761), - [anon_sym_COLON_QMARK] = ACTIONS(2190), - [sym__special_character] = ACTIONS(2190), + [anon_sym_PERCENT] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1803), + [sym_raw_string] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_COLON_DASH] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [anon_sym_COLON_QMARK] = ACTIONS(2236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1803), + [anon_sym_BQUOTE] = ACTIONS(1803), + [anon_sym_DQUOTE] = ACTIONS(1803), + [anon_sym_GT_LPAREN] = ACTIONS(1803), + [sym_word] = ACTIONS(2236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1803), + [anon_sym_LT_LPAREN] = ACTIONS(1803), + [sym_ansii_c_string] = ACTIONS(1803), + [anon_sym_COLON] = ACTIONS(2236), + [sym__special_character] = ACTIONS(2236), }, [519] = { - [sym_word] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_COLON] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_EQ] = ACTIONS(2192), - [anon_sym_PERCENT] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(1763), - [anon_sym_COLON_DASH] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_ansii_c_string] = ACTIONS(1763), - [anon_sym_COLON_QMARK] = ACTIONS(2192), - [sym__special_character] = ACTIONS(2192), + [anon_sym_PERCENT] = ACTIONS(2238), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1805), + [sym_raw_string] = ACTIONS(1805), + [anon_sym_SLASH] = ACTIONS(1805), + [anon_sym_DOLLAR] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_EQ] = ACTIONS(2238), + [anon_sym_COLON_DASH] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [anon_sym_COLON_QMARK] = ACTIONS(2238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1805), + [anon_sym_GT_LPAREN] = ACTIONS(1805), + [sym_word] = ACTIONS(2238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1805), + [anon_sym_LT_LPAREN] = ACTIONS(1805), + [sym_ansii_c_string] = ACTIONS(1805), + [anon_sym_COLON] = ACTIONS(2238), + [sym__special_character] = ACTIONS(2238), }, [520] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1765), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_LT_AMP] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [sym_file_descriptor] = ACTIONS(1767), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_LT_LT_LT] = ACTIONS(1765), - [anon_sym_GT_AMP] = ACTIONS(1765), - [anon_sym_BQUOTE] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1765), - [anon_sym_PIPE_AMP] = ACTIONS(1765), + [anon_sym_PIPE_AMP] = ACTIONS(1807), + [anon_sym_AMP_GT_GT] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_BQUOTE] = ACTIONS(1807), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_LT_AMP] = ACTIONS(1807), + [anon_sym_GT_GT] = ACTIONS(1807), + [anon_sym_LT_LT_DASH] = ACTIONS(1807), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_RPAREN] = ACTIONS(1807), + [sym_file_descriptor] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1807), + [anon_sym_AMP_GT] = ACTIONS(1807), + [anon_sym_LT_LT_LT] = ACTIONS(1807), + [anon_sym_GT_AMP] = ACTIONS(1807), + [anon_sym_esac] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_SEMI_SEMI] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), }, [521] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_LT_AMP] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1769), - [anon_sym_LT_LT_DASH] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [sym_file_descriptor] = ACTIONS(1771), - [anon_sym_AMP_GT] = ACTIONS(1769), - [anon_sym_LT_LT_LT] = ACTIONS(1769), - [anon_sym_GT_AMP] = ACTIONS(1769), - [anon_sym_BQUOTE] = ACTIONS(1769), - [anon_sym_esac] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_SEMI_SEMI] = ACTIONS(1769), - [anon_sym_PIPE_AMP] = ACTIONS(1769), + [anon_sym_PIPE_AMP] = ACTIONS(1815), + [anon_sym_AMP_GT_GT] = ACTIONS(1815), + [anon_sym_LT_LT] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1815), + [anon_sym_PIPE_PIPE] = ACTIONS(1815), + [anon_sym_PIPE] = ACTIONS(1815), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_LT_AMP] = ACTIONS(1815), + [anon_sym_GT_GT] = ACTIONS(1815), + [anon_sym_LT_LT_DASH] = ACTIONS(1815), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1817), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(1815), + [sym_file_descriptor] = ACTIONS(1817), + [anon_sym_GT] = ACTIONS(1815), + [anon_sym_AMP_GT] = ACTIONS(1815), + [anon_sym_LT_LT_LT] = ACTIONS(1815), + [anon_sym_GT_AMP] = ACTIONS(1815), + [anon_sym_esac] = ACTIONS(1815), + [anon_sym_AMP_AMP] = ACTIONS(1815), + [anon_sym_SEMI_SEMI] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1815), }, [522] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(1783), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_LT_AMP] = ACTIONS(1783), - [anon_sym_GT_GT] = ACTIONS(1783), - [anon_sym_LT_LT_DASH] = ACTIONS(1783), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1783), - [sym_file_descriptor] = ACTIONS(1785), - [anon_sym_AMP_GT] = ACTIONS(1783), - [anon_sym_LT_LT_LT] = ACTIONS(1783), - [anon_sym_GT_AMP] = ACTIONS(1783), - [anon_sym_BQUOTE] = ACTIONS(1783), - [anon_sym_esac] = ACTIONS(1783), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_SEMI_SEMI] = ACTIONS(1783), - [anon_sym_PIPE_AMP] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [anon_sym_EQ_TILDE] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [anon_sym_RPAREN] = ACTIONS(1819), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_EQ_EQ] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [523] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_LT_AMP] = ACTIONS(1787), - [anon_sym_GT_GT] = ACTIONS(1787), - [anon_sym_LT_LT_DASH] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1787), - [sym_file_descriptor] = ACTIONS(1789), - [anon_sym_AMP_GT] = ACTIONS(1787), - [anon_sym_LT_LT_LT] = ACTIONS(1787), - [anon_sym_GT_AMP] = ACTIONS(1787), - [anon_sym_BQUOTE] = ACTIONS(1787), - [anon_sym_esac] = ACTIONS(1787), - [anon_sym_AMP_AMP] = ACTIONS(1787), - [anon_sym_SEMI_SEMI] = ACTIONS(1787), - [anon_sym_PIPE_AMP] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [anon_sym_EQ_TILDE] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [anon_sym_RPAREN] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_EQ_EQ] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [524] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1824), - [anon_sym_LT_LT] = ACTIONS(1824), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1824), - [anon_sym_LT_AMP] = ACTIONS(1824), - [anon_sym_GT_GT] = ACTIONS(1824), - [anon_sym_LT_LT_DASH] = ACTIONS(1824), - [anon_sym_LF] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_GT] = ACTIONS(1824), - [sym_file_descriptor] = ACTIONS(1826), - [anon_sym_AMP_GT] = ACTIONS(1824), - [anon_sym_LT_LT_LT] = ACTIONS(1824), - [anon_sym_GT_AMP] = ACTIONS(1824), - [anon_sym_BQUOTE] = ACTIONS(1824), - [anon_sym_esac] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_SEMI_SEMI] = ACTIONS(1824), - [anon_sym_PIPE_AMP] = ACTIONS(1824), + [anon_sym_PIPE_AMP] = ACTIONS(1833), + [anon_sym_AMP_GT_GT] = ACTIONS(1833), + [anon_sym_LT_LT] = ACTIONS(1833), + [anon_sym_BQUOTE] = ACTIONS(1833), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_LT_AMP] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1833), + [anon_sym_LT_LT_DASH] = ACTIONS(1833), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_RPAREN] = ACTIONS(1833), + [sym_file_descriptor] = ACTIONS(1835), + [anon_sym_GT] = ACTIONS(1833), + [anon_sym_AMP_GT] = ACTIONS(1833), + [anon_sym_LT_LT_LT] = ACTIONS(1833), + [anon_sym_GT_AMP] = ACTIONS(1833), + [anon_sym_esac] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1833), + [anon_sym_SEMI_SEMI] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1833), }, [525] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [anon_sym_EQ_TILDE] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_EQ_EQ] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_PIPE_AMP] = ACTIONS(1837), + [anon_sym_AMP_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_BQUOTE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_LT_AMP] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_DASH] = ACTIONS(1837), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [sym_file_descriptor] = ACTIONS(1839), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_AMP_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_AMP] = ACTIONS(1837), + [anon_sym_esac] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_SEMI_SEMI] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), }, [526] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [anon_sym_EQ_TILDE] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1874), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_BQUOTE] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [anon_sym_esac] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), }, [527] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_LT_AMP] = ACTIONS(1838), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_LT_LT_DASH] = ACTIONS(1838), - [anon_sym_LF] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(1838), - [sym_file_descriptor] = ACTIONS(1840), - [anon_sym_AMP_GT] = ACTIONS(1838), - [anon_sym_LT_LT_LT] = ACTIONS(1838), - [anon_sym_GT_AMP] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_esac] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_SEMI_SEMI] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), + [anon_sym_PIPE_AMP] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1880), + [anon_sym_LT_LT] = ACTIONS(1880), + [anon_sym_BQUOTE] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_LT_AMP] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1880), + [anon_sym_LT_LT_DASH] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [sym_file_descriptor] = ACTIONS(1882), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_LT_LT_LT] = ACTIONS(1880), + [anon_sym_GT_AMP] = ACTIONS(1880), + [anon_sym_esac] = ACTIONS(1880), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_SEMI_SEMI] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), }, [528] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1846), - [anon_sym_LT_LT] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_LT_AMP] = ACTIONS(1846), - [anon_sym_GT_GT] = ACTIONS(1846), - [anon_sym_LT_LT_DASH] = ACTIONS(1846), - [anon_sym_LF] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1846), - [sym_file_descriptor] = ACTIONS(1848), - [anon_sym_AMP_GT] = ACTIONS(1846), - [anon_sym_LT_LT_LT] = ACTIONS(1846), - [anon_sym_GT_AMP] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_esac] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_SEMI_SEMI] = ACTIONS(1846), - [anon_sym_PIPE_AMP] = ACTIONS(1846), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_GT_GT] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_LT_AMP] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1888), + [anon_sym_LT_LT_DASH] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [sym_file_descriptor] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_AMP_GT] = ACTIONS(1888), + [anon_sym_LT_LT_LT] = ACTIONS(1888), + [anon_sym_GT_AMP] = ACTIONS(1888), + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), }, [529] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [anon_sym_BQUOTE] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1920), + [anon_sym_AMP_GT_GT] = ACTIONS(1920), + [anon_sym_LT_LT] = ACTIONS(1920), + [anon_sym_BQUOTE] = ACTIONS(1920), + [anon_sym_PIPE_PIPE] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_LT_AMP] = ACTIONS(1920), + [anon_sym_GT_GT] = ACTIONS(1920), + [anon_sym_LT_LT_DASH] = ACTIONS(1920), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_RPAREN] = ACTIONS(1920), + [sym_file_descriptor] = ACTIONS(1922), + [anon_sym_GT] = ACTIONS(1920), + [anon_sym_AMP_GT] = ACTIONS(1920), + [anon_sym_LT_LT_LT] = ACTIONS(1920), + [anon_sym_GT_AMP] = ACTIONS(1920), + [anon_sym_esac] = ACTIONS(1920), + [anon_sym_AMP_AMP] = ACTIONS(1920), + [anon_sym_SEMI_SEMI] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), }, [530] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1882), - [anon_sym_LT_LT] = ACTIONS(1882), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_LT_AMP] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_LT_LT_DASH] = ACTIONS(1882), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_GT] = ACTIONS(1882), - [sym_file_descriptor] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1882), - [anon_sym_LT_LT_LT] = ACTIONS(1882), - [anon_sym_GT_AMP] = ACTIONS(1882), - [anon_sym_BQUOTE] = ACTIONS(1882), - [anon_sym_esac] = ACTIONS(1882), - [anon_sym_AMP_AMP] = ACTIONS(1882), - [anon_sym_SEMI_SEMI] = ACTIONS(1882), - [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_esac] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), }, [531] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1904), - [anon_sym_LT_LT] = ACTIONS(1904), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1904), - [anon_sym_LT] = ACTIONS(1904), - [anon_sym_LT_AMP] = ACTIONS(1904), - [anon_sym_GT_GT] = ACTIONS(1904), - [anon_sym_LT_LT_DASH] = ACTIONS(1904), - [anon_sym_LF] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_RPAREN] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_GT] = ACTIONS(1904), - [sym_file_descriptor] = ACTIONS(1906), - [anon_sym_AMP_GT] = ACTIONS(1904), - [anon_sym_LT_LT_LT] = ACTIONS(1904), - [anon_sym_GT_AMP] = ACTIONS(1904), - [anon_sym_BQUOTE] = ACTIONS(1904), - [anon_sym_esac] = ACTIONS(1904), - [anon_sym_AMP_AMP] = ACTIONS(1904), - [anon_sym_SEMI_SEMI] = ACTIONS(1904), - [anon_sym_PIPE_AMP] = ACTIONS(1904), + [anon_sym_PIPE_AMP] = ACTIONS(1946), + [anon_sym_AMP_GT_GT] = ACTIONS(1946), + [anon_sym_LT_LT] = ACTIONS(1946), + [anon_sym_BQUOTE] = ACTIONS(1946), + [anon_sym_PIPE_PIPE] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_LT] = ACTIONS(1946), + [anon_sym_LT_AMP] = ACTIONS(1946), + [anon_sym_GT_GT] = ACTIONS(1946), + [anon_sym_LT_LT_DASH] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [sym_file_descriptor] = ACTIONS(1948), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_AMP_GT] = ACTIONS(1946), + [anon_sym_LT_LT_LT] = ACTIONS(1946), + [anon_sym_GT_AMP] = ACTIONS(1946), + [anon_sym_esac] = ACTIONS(1946), + [anon_sym_AMP_AMP] = ACTIONS(1946), + [anon_sym_SEMI_SEMI] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), }, [532] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1912), - [anon_sym_LT_LT] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_LT_AMP] = ACTIONS(1912), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_LT_LT_DASH] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_GT] = ACTIONS(1912), - [sym_file_descriptor] = ACTIONS(1914), - [anon_sym_AMP_GT] = ACTIONS(1912), - [anon_sym_LT_LT_LT] = ACTIONS(1912), - [anon_sym_GT_AMP] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_esac] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), + [anon_sym_PIPE_AMP] = ACTIONS(1954), + [anon_sym_AMP_GT_GT] = ACTIONS(1954), + [anon_sym_LT_LT] = ACTIONS(1954), + [anon_sym_BQUOTE] = ACTIONS(1954), + [anon_sym_PIPE_PIPE] = ACTIONS(1954), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_LT_AMP] = ACTIONS(1954), + [anon_sym_GT_GT] = ACTIONS(1954), + [anon_sym_LT_LT_DASH] = ACTIONS(1954), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_RPAREN] = ACTIONS(1954), + [sym_file_descriptor] = ACTIONS(1956), + [anon_sym_GT] = ACTIONS(1954), + [anon_sym_AMP_GT] = ACTIONS(1954), + [anon_sym_LT_LT_LT] = ACTIONS(1954), + [anon_sym_GT_AMP] = ACTIONS(1954), + [anon_sym_esac] = ACTIONS(1954), + [anon_sym_AMP_AMP] = ACTIONS(1954), + [anon_sym_SEMI_SEMI] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), }, [533] = { - [aux_sym_concatenation_repeat1] = STATE(1193), - [sym_word] = ACTIONS(61), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_AMP_GT_GT] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_LT_LT] = ACTIONS(61), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [sym__concat] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_LT_AMP] = ACTIONS(61), - [anon_sym_GT_GT] = ACTIONS(61), - [anon_sym_EQ_TILDE] = ACTIONS(61), - [sym__special_character] = ACTIONS(61), - [anon_sym_LT_LT_DASH] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_LF] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(61), - [sym_raw_string] = ACTIONS(61), - [sym_file_descriptor] = ACTIONS(67), - [anon_sym_AMP] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(61), - [anon_sym_AMP_GT] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT_LT_LT] = ACTIONS(61), - [anon_sym_GT_AMP] = ACTIONS(61), - [anon_sym_BQUOTE] = ACTIONS(61), - [anon_sym_esac] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_ansii_c_string] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_SEMI_SEMI] = ACTIONS(61), - [anon_sym_PIPE_AMP] = ACTIONS(61), + [sym_command_substitution] = STATE(396), + [aux_sym__literal_repeat1] = STATE(397), + [sym_string] = STATE(396), + [aux_sym_declaration_command_repeat1] = STATE(551), + [sym_process_substitution] = STATE(396), + [sym_simple_expansion] = STATE(396), + [sym_subscript] = STATE(2464), + [sym_string_expansion] = STATE(396), + [sym_variable_assignment] = STATE(551), + [sym_concatenation] = STATE(551), + [sym_expansion] = STATE(396), + [anon_sym_PIPE_AMP] = ACTIONS(129), + [anon_sym_AMP_GT_GT] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_LT_LT] = ACTIONS(129), + [anon_sym_BQUOTE] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(1962), + [sym_number] = ACTIONS(1964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1966), + [anon_sym_PIPE_PIPE] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [sym_word] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_AMP] = ACTIONS(129), + [anon_sym_GT_GT] = ACTIONS(129), + [sym__special_character] = ACTIONS(1968), + [anon_sym_LT_LT_DASH] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(129), + [sym_raw_string] = ACTIONS(1964), + [sym_variable_name] = ACTIONS(1970), + [sym_file_descriptor] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_AMP_GT] = ACTIONS(129), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_LT_LT_LT] = ACTIONS(129), + [anon_sym_GT_AMP] = ACTIONS(129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [aux_sym__simple_variable_name_token1] = ACTIONS(2240), + [anon_sym_LT_LPAREN] = ACTIONS(1962), + [sym_ansii_c_string] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(129), + [anon_sym_SEMI_SEMI] = ACTIONS(129), + [anon_sym_AMP] = ACTIONS(129), }, [534] = { - [sym_command_substitution] = STATE(397), - [aux_sym__literal_repeat1] = STATE(398), - [sym_string] = STATE(397), - [aux_sym_declaration_command_repeat1] = STATE(552), - [sym_process_substitution] = STATE(397), - [sym_simple_expansion] = STATE(397), - [sym_subscript] = STATE(2464), - [sym_string_expansion] = STATE(397), - [sym_variable_assignment] = STATE(552), - [sym_concatenation] = STATE(552), - [sym_expansion] = STATE(397), - [sym_word] = ACTIONS(1920), - [anon_sym_AMP_GT_GT] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_LT_LT] = ACTIONS(133), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_LT_AMP] = ACTIONS(133), - [anon_sym_GT_GT] = ACTIONS(133), - [sym__special_character] = ACTIONS(1926), - [anon_sym_LT_LT_DASH] = ACTIONS(133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [aux_sym__simple_variable_name_token1] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1932), - [anon_sym_LF] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(133), - [sym_raw_string] = ACTIONS(1920), - [sym_variable_name] = ACTIONS(1934), - [sym_file_descriptor] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_AMP_GT] = ACTIONS(133), - [anon_sym_DQUOTE] = ACTIONS(1936), - [anon_sym_LT_LT_LT] = ACTIONS(133), - [anon_sym_GT_AMP] = ACTIONS(133), - [anon_sym_BQUOTE] = ACTIONS(133), - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [sym_ansii_c_string] = ACTIONS(1920), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_SEMI_SEMI] = ACTIONS(133), - [anon_sym_PIPE_AMP] = ACTIONS(133), + [sym_command_substitution] = STATE(399), + [aux_sym__literal_repeat1] = STATE(400), + [sym_string] = STATE(399), + [aux_sym_unset_command_repeat1] = STATE(554), + [sym_process_substitution] = STATE(399), + [sym_simple_expansion] = STATE(399), + [sym_string_expansion] = STATE(399), + [sym_concatenation] = STATE(554), + [sym_expansion] = STATE(399), + [anon_sym_PIPE_AMP] = ACTIONS(153), + [anon_sym_AMP_GT_GT] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_LT_LT] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1986), + [anon_sym_PIPE_PIPE] = ACTIONS(153), + [anon_sym_PIPE] = ACTIONS(153), + [sym_word] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_AMP] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(153), + [sym__special_character] = ACTIONS(1988), + [anon_sym_LT_LT_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(167), + [anon_sym_SEMI] = ACTIONS(153), + [sym_raw_string] = ACTIONS(1984), + [sym_file_descriptor] = ACTIONS(167), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_AMP_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_LT_LT_LT] = ACTIONS(153), + [anon_sym_GT_AMP] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [aux_sym__simple_variable_name_token1] = ACTIONS(2242), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [sym_ansii_c_string] = ACTIONS(1984), + [anon_sym_AMP_AMP] = ACTIONS(153), + [anon_sym_SEMI_SEMI] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), }, [535] = { - [sym_command_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), - [sym_string] = STATE(400), - [aux_sym_unset_command_repeat1] = STATE(555), - [sym_process_substitution] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_concatenation] = STATE(555), - [sym_expansion] = STATE(400), - [sym_word] = ACTIONS(1940), - [anon_sym_AMP_GT_GT] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_LT_LT] = ACTIONS(157), - [anon_sym_LT_LPAREN] = ACTIONS(1944), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(157), - [anon_sym_LT] = ACTIONS(157), - [anon_sym_LT_AMP] = ACTIONS(157), - [anon_sym_GT_GT] = ACTIONS(157), - [sym__special_character] = ACTIONS(1946), - [anon_sym_LT_LT_DASH] = ACTIONS(157), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1948), - [aux_sym__simple_variable_name_token1] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), - [anon_sym_LF] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(157), - [sym_raw_string] = ACTIONS(1940), - [sym_file_descriptor] = ACTIONS(171), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(157), - [anon_sym_AMP_GT] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_LT_LT_LT] = ACTIONS(157), - [anon_sym_GT_AMP] = ACTIONS(157), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_GT_LPAREN] = ACTIONS(1944), - [sym_ansii_c_string] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_SEMI_SEMI] = ACTIONS(157), - [anon_sym_PIPE_AMP] = ACTIONS(157), - }, - [536] = { - [aux_sym_concatenation_repeat1] = STATE(546), - [sym_word] = ACTIONS(191), - [anon_sym_AMP_GT_GT] = ACTIONS(191), + [aux_sym_concatenation_repeat1] = STATE(1196), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_AMP_GT_GT] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(191), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [sym__special_character] = ACTIONS(191), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(191), - [sym_raw_string] = ACTIONS(191), - [sym_variable_name] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(191), - [anon_sym_GT_AMP] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_GT_LPAREN] = ACTIONS(191), - [sym_ansii_c_string] = ACTIONS(191), - }, - [537] = { - [aux_sym_concatenation_repeat1] = STATE(1193), - [sym_word] = ACTIONS(61), - [anon_sym_AMP_GT_GT] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_LT_LT] = ACTIONS(61), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [sym__concat] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_LT_AMP] = ACTIONS(61), - [anon_sym_GT_GT] = ACTIONS(61), - [anon_sym_EQ_TILDE] = ACTIONS(61), - [sym__special_character] = ACTIONS(61), - [anon_sym_LT_LT_DASH] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_LF] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(61), - [sym_raw_string] = ACTIONS(61), - [sym_file_descriptor] = ACTIONS(67), - [anon_sym_AMP] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(61), - [anon_sym_AMP_GT] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT_LT_LT] = ACTIONS(61), - [anon_sym_GT_AMP] = ACTIONS(61), - [anon_sym_BQUOTE] = ACTIONS(61), - [anon_sym_esac] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_ansii_c_string] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_SEMI_SEMI] = ACTIONS(61), - [anon_sym_PIPE_AMP] = ACTIONS(61), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_number] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [sym__concat] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(189), + [sym_word] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_LT_AMP] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_LT_LT_DASH] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_LT_LT_LT] = ACTIONS(189), + [anon_sym_GT_AMP] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), + [anon_sym_esac] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), + }, + [536] = { + [aux_sym_concatenation_repeat1] = STATE(1196), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_AMP_GT_GT] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_number] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [sym__concat] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(189), + [sym_word] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_LT_AMP] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_LT_LT_DASH] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_LT_LT_LT] = ACTIONS(189), + [anon_sym_GT_AMP] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), + [anon_sym_esac] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), + }, + [537] = { + [aux_sym_concatenation_repeat1] = STATE(558), + [anon_sym_AMP_GT_GT] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [sym__concat] = ACTIONS(365), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(213), + [anon_sym_GT_GT] = ACTIONS(213), + [sym__special_character] = ACTIONS(213), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(213), + [sym_variable_name] = ACTIONS(213), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_GT_AMP] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [sym_ansii_c_string] = ACTIONS(213), }, [538] = { [aux_sym__literal_repeat1] = STATE(539), - [sym_string] = STATE(537), - [sym_process_substitution] = STATE(537), + [sym_string] = STATE(535), + [sym_process_substitution] = STATE(535), [sym_test_command] = STATE(410), [aux_sym_command_repeat1] = STATE(544), [sym_subscript] = STATE(2455), [sym_variable_assignment] = STATE(544), [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), [sym_command] = STATE(410), [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), + [sym_simple_expansion] = STATE(535), + [sym_string_expansion] = STATE(535), [sym_subshell] = STATE(410), [sym_file_redirect] = STATE(544), - [anon_sym_LPAREN] = ACTIONS(71), - [sym_word] = ACTIONS(1685), - [anon_sym_AMP_GT_GT] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [sym_variable_name] = ACTIONS(243), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(25), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [sym__special_character] = ACTIONS(1683), + [sym_raw_string] = ACTIONS(1748), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(257), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_AMP_GT] = ACTIONS(29), + [sym_number] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_word] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(1748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym__special_character] = ACTIONS(1746), }, [539] = { [aux_sym__literal_repeat1] = STATE(1231), - [sym_word] = ACTIONS(299), - [anon_sym_AMP_GT_GT] = ACTIONS(299), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_LT_LT] = ACTIONS(299), - [anon_sym_LT_LPAREN] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(299), - [anon_sym_PIPE] = ACTIONS(299), - [anon_sym_LT] = ACTIONS(299), - [anon_sym_LT_AMP] = ACTIONS(299), - [anon_sym_GT_GT] = ACTIONS(299), - [anon_sym_EQ_TILDE] = ACTIONS(299), - [sym__special_character] = ACTIONS(2200), - [anon_sym_LT_LT_DASH] = ACTIONS(299), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_LF] = ACTIONS(303), - [anon_sym_SEMI] = ACTIONS(299), - [sym_raw_string] = ACTIONS(299), - [sym_file_descriptor] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(299), - [anon_sym_GT] = ACTIONS(299), - [anon_sym_AMP_GT] = ACTIONS(299), - [anon_sym_EQ_EQ] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(299), - [anon_sym_LT_LT_LT] = ACTIONS(299), - [anon_sym_GT_AMP] = ACTIONS(299), - [anon_sym_BQUOTE] = ACTIONS(299), - [anon_sym_esac] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(299), - [sym_ansii_c_string] = ACTIONS(299), - [anon_sym_AMP_AMP] = ACTIONS(299), - [anon_sym_SEMI_SEMI] = ACTIONS(299), - [anon_sym_PIPE_AMP] = ACTIONS(299), + [anon_sym_AMP] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(307), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_BQUOTE] = ACTIONS(307), + [anon_sym_GT_LPAREN] = ACTIONS(307), + [sym_number] = ACTIONS(307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(307), + [anon_sym_PIPE_PIPE] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(307), + [sym_word] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_LT_AMP] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [sym__special_character] = ACTIONS(2246), + [anon_sym_LT_LT_DASH] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(307), + [sym_raw_string] = ACTIONS(307), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(307), + [anon_sym_LT_LT_LT] = ACTIONS(307), + [anon_sym_GT_AMP] = ACTIONS(307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(307), + [anon_sym_esac] = ACTIONS(307), + [anon_sym_LT_LPAREN] = ACTIONS(307), + [sym_ansii_c_string] = ACTIONS(307), + [anon_sym_AMP_AMP] = ACTIONS(307), + [anon_sym_SEMI_SEMI] = ACTIONS(307), + [anon_sym_PIPE_AMP] = ACTIONS(307), }, [540] = { [sym_heredoc_redirect] = STATE(2622), [aux_sym_redirected_statement_repeat1] = STATE(2622), [sym_herestring_redirect] = STATE(2622), [sym_file_redirect] = STATE(2622), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_AMP_GT_GT] = ACTIONS(2202), - [anon_sym_LF] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2206), - [sym_file_descriptor] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_AMP_GT] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_LT_LT_LT] = ACTIONS(2212), - [anon_sym_GT_AMP] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_esac] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2254), + [sym_file_descriptor] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_AMP_GT] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2258), + [anon_sym_LT_LT_LT] = ACTIONS(2260), + [anon_sym_GT_AMP] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_esac] = ACTIONS(2006), + [anon_sym_LT_AMP] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_SEMI_SEMI] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2254), }, [541] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2222), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(2222), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_SEMI_SEMI] = ACTIONS(2222), - [anon_sym_PIPE_AMP] = ACTIONS(2218), + [anon_sym_AMP] = ACTIONS(2262), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(2266), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(2264), + [anon_sym_SEMI_SEMI] = ACTIONS(2262), + [anon_sym_PIPE_AMP] = ACTIONS(2266), }, [542] = { - [sym_word] = ACTIONS(61), - [anon_sym_AMP_GT_GT] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_LT_LT] = ACTIONS(61), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_LT_AMP] = ACTIONS(61), - [anon_sym_GT_GT] = ACTIONS(61), - [anon_sym_EQ_TILDE] = ACTIONS(61), - [sym__special_character] = ACTIONS(61), - [anon_sym_LT_LT_DASH] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_LF] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(61), - [sym_raw_string] = ACTIONS(61), - [sym_file_descriptor] = ACTIONS(67), - [anon_sym_AMP] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(61), - [anon_sym_AMP_GT] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT_LT_LT] = ACTIONS(61), - [anon_sym_GT_AMP] = ACTIONS(61), - [anon_sym_BQUOTE] = ACTIONS(61), - [anon_sym_esac] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_ansii_c_string] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_SEMI_SEMI] = ACTIONS(61), - [anon_sym_PIPE_AMP] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_AMP_GT_GT] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_number] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [sym_word] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_LT_AMP] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_LT_LT_DASH] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(193), + [anon_sym_SEMI] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_LT_LT_LT] = ACTIONS(189), + [anon_sym_GT_AMP] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), + [anon_sym_esac] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), }, [543] = { [aux_sym__literal_repeat1] = STATE(386), @@ -22338,8 +22794,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(570), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(101), [sym_redirected_statement] = STATE(569), [sym_for_statement] = STATE(569), @@ -22348,8 +22804,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(569), [sym_unset_command] = STATE(569), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), [sym_c_style_for_statement] = STATE(569), [sym_while_statement] = STATE(569), @@ -22358,701 +22814,760 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(569), [sym_command] = STATE(569), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [544] = { - [sym_command_substitution] = STATE(537), + [sym_command_substitution] = STATE(535), [aux_sym__literal_repeat1] = STATE(539), - [sym_expansion] = STATE(537), - [sym_string] = STATE(537), + [sym_expansion] = STATE(535), + [sym_string] = STATE(535), [sym_command_name] = STATE(653), - [sym_process_substitution] = STATE(537), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), + [sym_process_substitution] = STATE(535), + [sym_simple_expansion] = STATE(535), + [sym_string_expansion] = STATE(535), [sym_subscript] = STATE(2455), [sym_variable_assignment] = STATE(103), [aux_sym_command_repeat1] = STATE(103), [sym_concatenation] = STATE(542), [sym_file_redirect] = STATE(103), - [sym_word] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [sym_raw_string] = ACTIONS(1685), - [sym_variable_name] = ACTIONS(243), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(25), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym__special_character] = ACTIONS(2224), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1748), + [sym_variable_name] = ACTIONS(257), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_AMP_GT] = ACTIONS(29), + [sym_number] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_word] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(1748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [sym__special_character] = ACTIONS(2270), }, [545] = { - [sym_command_substitution] = STATE(423), + [sym_command_substitution] = STATE(424), [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(423), - [sym_process_substitution] = STATE(423), - [sym_simple_expansion] = STATE(423), - [sym_string_expansion] = STATE(423), + [sym_string] = STATE(424), + [sym_process_substitution] = STATE(424), + [sym_simple_expansion] = STATE(424), + [sym_string_expansion] = STATE(424), [aux_sym_command_repeat2] = STATE(575), [sym_concatenation] = STATE(575), - [sym_expansion] = STATE(423), - [sym_word] = ACTIONS(1968), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_EQ_TILDE] = ACTIONS(1972), + [sym_expansion] = STATE(424), + [anon_sym_PIPE_AMP] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(341), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(341), + [anon_sym_BQUOTE] = ACTIONS(341), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_number] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(341), + [sym_word] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_AMP] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(2018), [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_SEMI] = ACTIONS(335), - [sym_raw_string] = ACTIONS(1968), - [sym_file_descriptor] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(335), - [anon_sym_EQ_EQ] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1978), - [anon_sym_LT_LT_LT] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_SEMI_SEMI] = ACTIONS(335), - [anon_sym_PIPE_AMP] = ACTIONS(335), + [anon_sym_LT_LT_DASH] = ACTIONS(341), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(341), + [sym_raw_string] = ACTIONS(2014), + [sym_file_descriptor] = ACTIONS(353), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(341), + [anon_sym_GT_AMP] = ACTIONS(341), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [sym_ansii_c_string] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_SEMI_SEMI] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), }, [546] = { - [aux_sym_concatenation_repeat1] = STATE(578), - [sym_word] = ACTIONS(359), - [anon_sym_AMP_GT_GT] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(359), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [sym__special_character] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [sym_raw_string] = ACTIONS(359), - [sym_variable_name] = ACTIONS(359), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_GT_AMP] = ACTIONS(359), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_GT_LPAREN] = ACTIONS(359), - [sym_ansii_c_string] = ACTIONS(359), + [aux_sym_concatenation_repeat1] = STATE(1068), + [anon_sym_PIPE_AMP] = ACTIONS(363), + [anon_sym_AMP_GT_GT] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [sym__concat] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_AMP] = ACTIONS(363), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_LT_LT_DASH] = ACTIONS(363), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [sym_file_descriptor] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_AMP_GT] = ACTIONS(363), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_GT_AMP] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_SEMI_SEMI] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(363), }, [547] = { - [aux_sym_concatenation_repeat1] = STATE(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(365), - [anon_sym_LT_LT] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(365), - [sym__concat] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_AMP] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_LT_LT_DASH] = ACTIONS(365), - [anon_sym_LF] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(365), - [anon_sym_RPAREN] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_GT] = ACTIONS(365), - [sym_file_descriptor] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(365), - [anon_sym_LT_LT_LT] = ACTIONS(365), - [anon_sym_GT_AMP] = ACTIONS(365), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_AMP_AMP] = ACTIONS(365), - [anon_sym_SEMI_SEMI] = ACTIONS(365), - [anon_sym_PIPE_AMP] = ACTIONS(365), + [aux_sym__literal_repeat1] = STATE(1103), + [anon_sym_PIPE_AMP] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(369), + [sym__special_character] = ACTIONS(2137), + [anon_sym_LT_LT_DASH] = ACTIONS(369), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_RPAREN] = ACTIONS(369), + [sym_file_descriptor] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_LT_LT_LT] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [anon_sym_esac] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_SEMI_SEMI] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(369), }, [548] = { - [aux_sym__literal_repeat1] = STATE(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_LT] = ACTIONS(371), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [sym__special_character] = ACTIONS(2091), - [anon_sym_LT_LT_DASH] = ACTIONS(371), - [anon_sym_LF] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(371), - [anon_sym_RPAREN] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [sym_file_descriptor] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_LT_LT_LT] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [anon_sym_BQUOTE] = ACTIONS(371), - [anon_sym_esac] = ACTIONS(371), - [anon_sym_AMP_AMP] = ACTIONS(371), - [anon_sym_SEMI_SEMI] = ACTIONS(371), - [anon_sym_PIPE_AMP] = ACTIONS(371), + [anon_sym_PIPE_AMP] = ACTIONS(363), + [anon_sym_AMP_GT_GT] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_BQUOTE] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_LT_AMP] = ACTIONS(363), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_LT_LT_DASH] = ACTIONS(363), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [sym_file_descriptor] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_AMP_GT] = ACTIONS(363), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_GT_AMP] = ACTIONS(363), + [anon_sym_esac] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_SEMI_SEMI] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(363), }, [549] = { - [anon_sym_AMP_GT_GT] = ACTIONS(365), - [anon_sym_LT_LT] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(365), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_LT_AMP] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_LT_LT_DASH] = ACTIONS(365), - [anon_sym_LF] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(365), - [anon_sym_RPAREN] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_GT] = ACTIONS(365), - [sym_file_descriptor] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(365), - [anon_sym_LT_LT_LT] = ACTIONS(365), - [anon_sym_GT_AMP] = ACTIONS(365), - [anon_sym_BQUOTE] = ACTIONS(365), - [anon_sym_esac] = ACTIONS(365), - [anon_sym_AMP_AMP] = ACTIONS(365), - [anon_sym_SEMI_SEMI] = ACTIONS(365), - [anon_sym_PIPE_AMP] = ACTIONS(365), + [aux_sym_concatenation_repeat1] = STATE(1228), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_AMP_GT_GT] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(373), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [sym_number] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [sym__concat] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(373), + [sym_word] = ACTIONS(373), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_LT_AMP] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [sym__special_character] = ACTIONS(373), + [anon_sym_LT_LT_DASH] = ACTIONS(373), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(373), + [sym_raw_string] = ACTIONS(373), + [sym_variable_name] = ACTIONS(377), + [sym_file_descriptor] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_AMP_GT] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_LT_LT_LT] = ACTIONS(373), + [anon_sym_GT_AMP] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_esac] = ACTIONS(373), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [sym_ansii_c_string] = ACTIONS(373), + [aux_sym__simple_variable_name_token1] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_SEMI_SEMI] = ACTIONS(373), + [anon_sym_PIPE_AMP] = ACTIONS(373), }, [550] = { - [aux_sym_concatenation_repeat1] = STATE(1225), - [sym_word] = ACTIONS(375), - [anon_sym_AMP_GT_GT] = ACTIONS(375), - [anon_sym_DOLLAR] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_LT_LPAREN] = ACTIONS(375), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_LT_AMP] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [sym__special_character] = ACTIONS(375), - [anon_sym_LT_LT_DASH] = ACTIONS(375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), - [aux_sym__simple_variable_name_token1] = ACTIONS(375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), - [anon_sym_LF] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(375), - [sym_raw_string] = ACTIONS(375), - [sym_variable_name] = ACTIONS(379), - [sym_file_descriptor] = ACTIONS(379), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_AMP_GT] = ACTIONS(375), - [anon_sym_DQUOTE] = ACTIONS(375), - [anon_sym_LT_LT_LT] = ACTIONS(375), - [anon_sym_GT_AMP] = ACTIONS(375), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_esac] = ACTIONS(375), - [anon_sym_GT_LPAREN] = ACTIONS(375), - [sym_ansii_c_string] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_SEMI_SEMI] = ACTIONS(375), - [anon_sym_PIPE_AMP] = ACTIONS(375), + [aux_sym__literal_repeat1] = STATE(1263), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_AMP_GT_GT] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_number] = ACTIONS(379), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(379), + [sym_word] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT_AMP] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [sym__special_character] = ACTIONS(2274), + [anon_sym_LT_LT_DASH] = ACTIONS(379), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(379), + [sym_raw_string] = ACTIONS(379), + [sym_variable_name] = ACTIONS(383), + [sym_file_descriptor] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_AMP_GT] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_LT_LT_LT] = ACTIONS(379), + [anon_sym_GT_AMP] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(379), + [anon_sym_esac] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [sym_ansii_c_string] = ACTIONS(379), + [aux_sym__simple_variable_name_token1] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_SEMI_SEMI] = ACTIONS(379), + [anon_sym_PIPE_AMP] = ACTIONS(379), }, [551] = { - [aux_sym__literal_repeat1] = STATE(1263), - [sym_word] = ACTIONS(381), - [anon_sym_AMP_GT_GT] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_LT_LPAREN] = ACTIONS(381), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_LT_AMP] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [sym__special_character] = ACTIONS(2230), - [anon_sym_LT_LT_DASH] = ACTIONS(381), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [aux_sym__simple_variable_name_token1] = ACTIONS(381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(381), - [sym_raw_string] = ACTIONS(381), - [sym_variable_name] = ACTIONS(385), - [sym_file_descriptor] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_AMP_GT] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(381), - [anon_sym_LT_LT_LT] = ACTIONS(381), - [anon_sym_GT_AMP] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(381), - [anon_sym_esac] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(381), - [sym_ansii_c_string] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_SEMI_SEMI] = ACTIONS(381), - [anon_sym_PIPE_AMP] = ACTIONS(381), + [sym_command_substitution] = STATE(396), + [aux_sym__literal_repeat1] = STATE(397), + [sym_string] = STATE(396), + [aux_sym_declaration_command_repeat1] = STATE(428), + [sym_process_substitution] = STATE(396), + [sym_simple_expansion] = STATE(396), + [sym_subscript] = STATE(2464), + [sym_string_expansion] = STATE(396), + [sym_variable_assignment] = STATE(428), + [sym_concatenation] = STATE(428), + [sym_expansion] = STATE(396), + [anon_sym_PIPE_AMP] = ACTIONS(385), + [anon_sym_AMP_GT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(385), + [anon_sym_GT_LPAREN] = ACTIONS(1962), + [sym_number] = ACTIONS(1964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1966), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [sym_word] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [sym__special_character] = ACTIONS(1968), + [anon_sym_LT_LT_DASH] = ACTIONS(385), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(385), + [sym_raw_string] = ACTIONS(1964), + [sym_variable_name] = ACTIONS(1970), + [sym_file_descriptor] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_LT_LT_LT] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [aux_sym__simple_variable_name_token1] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(1962), + [sym_ansii_c_string] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_SEMI_SEMI] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(385), }, [552] = { - [sym_command_substitution] = STATE(397), - [aux_sym__literal_repeat1] = STATE(398), - [sym_string] = STATE(397), - [aux_sym_declaration_command_repeat1] = STATE(431), - [sym_process_substitution] = STATE(397), - [sym_simple_expansion] = STATE(397), - [sym_subscript] = STATE(2464), - [sym_string_expansion] = STATE(397), - [sym_variable_assignment] = STATE(431), - [sym_concatenation] = STATE(431), - [sym_expansion] = STATE(397), - [sym_word] = ACTIONS(1920), - [anon_sym_AMP_GT_GT] = ACTIONS(387), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_LT_AMP] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [sym__special_character] = ACTIONS(1926), - [anon_sym_LT_LT_DASH] = ACTIONS(387), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), - [aux_sym__simple_variable_name_token1] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1932), - [anon_sym_LF] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(387), - [sym_raw_string] = ACTIONS(1920), - [sym_variable_name] = ACTIONS(1934), - [sym_file_descriptor] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_AMP_GT] = ACTIONS(387), - [anon_sym_DQUOTE] = ACTIONS(1936), - [anon_sym_LT_LT_LT] = ACTIONS(387), - [anon_sym_GT_AMP] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [sym_ansii_c_string] = ACTIONS(1920), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_SEMI_SEMI] = ACTIONS(387), - [anon_sym_PIPE_AMP] = ACTIONS(387), + [aux_sym_concatenation_repeat1] = STATE(1260), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_number] = ACTIONS(391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [sym__concat] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(391), + [sym_word] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [sym__special_character] = ACTIONS(391), + [anon_sym_LT_LT_DASH] = ACTIONS(391), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(391), + [sym_raw_string] = ACTIONS(391), + [sym_file_descriptor] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_AMP_GT] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(391), + [anon_sym_LT_LT_LT] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_esac] = ACTIONS(391), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [sym_ansii_c_string] = ACTIONS(391), + [aux_sym__simple_variable_name_token1] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_SEMI_SEMI] = ACTIONS(391), + [anon_sym_PIPE_AMP] = ACTIONS(391), }, [553] = { - [aux_sym_concatenation_repeat1] = STATE(1257), - [sym_word] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [sym__concat] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_LT_AMP] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [sym__special_character] = ACTIONS(393), - [anon_sym_LT_LT_DASH] = ACTIONS(393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(393), - [aux_sym__simple_variable_name_token1] = ACTIONS(393), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), - [anon_sym_LF] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(393), - [sym_raw_string] = ACTIONS(393), - [sym_file_descriptor] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_LT_LT_LT] = ACTIONS(393), - [anon_sym_GT_AMP] = ACTIONS(393), - [anon_sym_BQUOTE] = ACTIONS(393), - [anon_sym_esac] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), - [sym_ansii_c_string] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_SEMI_SEMI] = ACTIONS(393), - [anon_sym_PIPE_AMP] = ACTIONS(393), + [aux_sym__literal_repeat1] = STATE(1295), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_AMP_GT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_BQUOTE] = ACTIONS(397), + [anon_sym_GT_LPAREN] = ACTIONS(397), + [sym_number] = ACTIONS(397), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [sym_word] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_LT_AMP] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [sym__special_character] = ACTIONS(2278), + [anon_sym_LT_LT_DASH] = ACTIONS(397), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(397), + [sym_raw_string] = ACTIONS(397), + [sym_file_descriptor] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_AMP_GT] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_LT_LT_LT] = ACTIONS(397), + [anon_sym_GT_AMP] = ACTIONS(397), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), + [anon_sym_esac] = ACTIONS(397), + [anon_sym_LT_LPAREN] = ACTIONS(397), + [sym_ansii_c_string] = ACTIONS(397), + [aux_sym__simple_variable_name_token1] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(397), + [anon_sym_PIPE_AMP] = ACTIONS(397), }, [554] = { - [aux_sym__literal_repeat1] = STATE(1295), - [sym_word] = ACTIONS(399), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_LT_LPAREN] = ACTIONS(399), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [sym__special_character] = ACTIONS(2234), - [anon_sym_LT_LT_DASH] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(399), - [aux_sym__simple_variable_name_token1] = ACTIONS(399), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_LF] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(399), - [sym_raw_string] = ACTIONS(399), - [sym_file_descriptor] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_AMP_GT] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_LT_LT_LT] = ACTIONS(399), - [anon_sym_GT_AMP] = ACTIONS(399), - [anon_sym_BQUOTE] = ACTIONS(399), - [anon_sym_esac] = ACTIONS(399), - [anon_sym_GT_LPAREN] = ACTIONS(399), - [sym_ansii_c_string] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_SEMI_SEMI] = ACTIONS(399), - [anon_sym_PIPE_AMP] = ACTIONS(399), + [sym_command_substitution] = STATE(399), + [aux_sym__literal_repeat1] = STATE(400), + [sym_string] = STATE(399), + [aux_sym_unset_command_repeat1] = STATE(429), + [sym_process_substitution] = STATE(399), + [sym_simple_expansion] = STATE(399), + [sym_string_expansion] = STATE(399), + [sym_concatenation] = STATE(429), + [sym_expansion] = STATE(399), + [anon_sym_PIPE_AMP] = ACTIONS(403), + [anon_sym_AMP_GT_GT] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_GT_LPAREN] = ACTIONS(1982), + [sym_number] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1986), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [sym_word] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_LT_AMP] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [sym__special_character] = ACTIONS(1988), + [anon_sym_LT_LT_DASH] = ACTIONS(403), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(403), + [sym_raw_string] = ACTIONS(1984), + [sym_file_descriptor] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_AMP_GT] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_LT_LT_LT] = ACTIONS(403), + [anon_sym_GT_AMP] = ACTIONS(403), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [aux_sym__simple_variable_name_token1] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(1982), + [sym_ansii_c_string] = ACTIONS(1984), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), }, [555] = { - [sym_command_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), - [sym_string] = STATE(400), - [aux_sym_unset_command_repeat1] = STATE(432), - [sym_process_substitution] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_concatenation] = STATE(432), - [sym_expansion] = STATE(400), - [sym_word] = ACTIONS(1940), - [anon_sym_AMP_GT_GT] = ACTIONS(405), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_LT_LPAREN] = ACTIONS(1944), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(405), - [anon_sym_PIPE] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_LT_AMP] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [sym__special_character] = ACTIONS(1946), - [anon_sym_LT_LT_DASH] = ACTIONS(405), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1948), - [aux_sym__simple_variable_name_token1] = ACTIONS(1994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), - [anon_sym_LF] = ACTIONS(409), - [anon_sym_SEMI] = ACTIONS(405), - [sym_raw_string] = ACTIONS(1940), - [sym_file_descriptor] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_AMP_GT] = ACTIONS(405), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_LT_LT_LT] = ACTIONS(405), - [anon_sym_GT_AMP] = ACTIONS(405), - [anon_sym_BQUOTE] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(1944), - [sym_ansii_c_string] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(405), - [anon_sym_SEMI_SEMI] = ACTIONS(405), - [anon_sym_PIPE_AMP] = ACTIONS(405), + [anon_sym_AMP_GT_GT] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(411), + [anon_sym_GT_LPAREN] = ACTIONS(411), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), + [sym__concat] = ACTIONS(411), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(411), + [sym__special_character] = ACTIONS(411), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(411), + [sym_variable_name] = ACTIONS(411), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), + [anon_sym_LT_LPAREN] = ACTIONS(411), + [sym_ansii_c_string] = ACTIONS(411), }, [556] = { + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(415), + [anon_sym_GT_LPAREN] = ACTIONS(415), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), + [sym__concat] = ACTIONS(415), [sym_word] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_variable_name] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(413), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(415), + [sym__special_character] = ACTIONS(415), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(415), + [sym_variable_name] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), + [anon_sym_LT_LPAREN] = ACTIONS(415), + [sym_ansii_c_string] = ACTIONS(415), }, [557] = { + [anon_sym_AMP_GT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_GT_LPAREN] = ACTIONS(419), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [sym__concat] = ACTIONS(419), [sym_word] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_variable_name] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(419), + [sym__special_character] = ACTIONS(419), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(419), + [sym_variable_name] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_GT_AMP] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_LT_LPAREN] = ACTIONS(419), + [sym_ansii_c_string] = ACTIONS(419), }, [558] = { - [sym_word] = ACTIONS(421), - [anon_sym_AMP_GT_GT] = ACTIONS(421), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(421), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(421), - [anon_sym_GT_GT] = ACTIONS(421), - [sym__special_character] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [sym_raw_string] = ACTIONS(421), - [sym_variable_name] = ACTIONS(421), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_RPAREN] = ACTIONS(421), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_GT_AMP] = ACTIONS(421), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_GT_LPAREN] = ACTIONS(421), - [sym_ansii_c_string] = ACTIONS(421), + [aux_sym_concatenation_repeat1] = STATE(582), + [anon_sym_AMP_GT_GT] = ACTIONS(433), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(433), + [anon_sym_GT_LPAREN] = ACTIONS(433), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(433), + [sym__concat] = ACTIONS(2280), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(433), + [anon_sym_GT_GT] = ACTIONS(433), + [sym__special_character] = ACTIONS(433), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(433), + [sym_variable_name] = ACTIONS(433), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(433), + [anon_sym_GT_AMP] = ACTIONS(433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(433), + [anon_sym_LT_LPAREN] = ACTIONS(433), + [sym_ansii_c_string] = ACTIONS(433), }, [559] = { - [aux_sym_concatenation_repeat1] = STATE(969), - [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_PLUS_EQ] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(473), - [anon_sym_SEMI] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_GT] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(473), - [anon_sym_AMP] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(473), - [anon_sym_PIPE_PIPE] = ACTIONS(473), - [anon_sym_GT_EQ] = ACTIONS(473), - [sym__concat] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(473), - [sym_test_operator] = ACTIONS(473), - [anon_sym_EQ_TILDE] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_AMP_AMP] = ACTIONS(473), - [anon_sym_LT_EQ] = ACTIONS(473), - [anon_sym_SEMI_SEMI] = ACTIONS(473), - [anon_sym_DASH_EQ] = ACTIONS(473), + [aux_sym_concatenation_repeat1] = STATE(972), + [anon_sym_BANG_EQ] = ACTIONS(531), + [anon_sym_PLUS_EQ] = ACTIONS(531), + [anon_sym_AMP] = ACTIONS(531), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(531), + [anon_sym_SEMI] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_GT] = ACTIONS(531), + [anon_sym_EQ] = ACTIONS(531), + [sym_test_operator] = ACTIONS(531), + [anon_sym_EQ_EQ] = ACTIONS(531), + [anon_sym_PIPE_PIPE] = ACTIONS(531), + [anon_sym_GT_EQ] = ACTIONS(531), + [sym__concat] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_EQ_TILDE] = ACTIONS(531), + [anon_sym_DASH_DASH] = ACTIONS(531), + [anon_sym_AMP_AMP] = ACTIONS(531), + [anon_sym_LT_EQ] = ACTIONS(531), + [anon_sym_SEMI_SEMI] = ACTIONS(531), + [anon_sym_DASH_EQ] = ACTIONS(531), }, [560] = { [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(582), - [sym_postfix_expression] = STATE(582), + [sym_unary_expression] = STATE(585), + [sym_postfix_expression] = STATE(585), [sym_string] = STATE(559), [aux_sym__literal_repeat1] = STATE(561), [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(582), + [sym_parenthesized_expression] = STATE(585), [sym_simple_expansion] = STATE(559), [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(582), - [sym_binary_expression] = STATE(582), - [sym_concatenation] = STATE(582), + [sym__expression] = STATE(585), + [sym_binary_expression] = STATE(585), + [sym_concatenation] = STATE(585), [sym_expansion] = STATE(559), - [sym_word] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), - [sym_raw_string] = ACTIONS(2244), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_LT_LPAREN] = ACTIONS(2246), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2248), - [sym_test_operator] = ACTIONS(2250), - [anon_sym_BQUOTE] = ACTIONS(2252), - [anon_sym_GT_LPAREN] = ACTIONS(2246), - [sym_ansii_c_string] = ACTIONS(2244), - [sym__special_character] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2284), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(615), + [sym_test_operator] = ACTIONS(2288), + [anon_sym_BQUOTE] = ACTIONS(2290), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [sym_word] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2298), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [sym_ansii_c_string] = ACTIONS(2286), + [sym__special_character] = ACTIONS(2300), }, [561] = { [aux_sym__literal_repeat1] = STATE(1007), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [sym__special_character] = ACTIONS(2256), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(479), - [sym_test_operator] = ACTIONS(479), - [anon_sym_EQ_TILDE] = ACTIONS(479), - [anon_sym_DASH_DASH] = ACTIONS(479), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_SEMI_SEMI] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(537), + [sym__special_character] = ACTIONS(2302), + [anon_sym_LF] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(537), + [sym_test_operator] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(537), + [anon_sym_EQ_TILDE] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_SEMI_SEMI] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), }, [562] = { - [sym_word] = ACTIONS(581), - [anon_sym_AMP_GT_GT] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(581), - [anon_sym_GT_GT] = ACTIONS(581), - [sym__special_character] = ACTIONS(581), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(581), - [sym_raw_string] = ACTIONS(581), - [sym_variable_name] = ACTIONS(581), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(581), - [anon_sym_GT_AMP] = ACTIONS(581), - [anon_sym_BQUOTE] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), - [sym_ansii_c_string] = ACTIONS(581), + [anon_sym_AMP_GT_GT] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(597), + [anon_sym_GT_LPAREN] = ACTIONS(597), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(597), + [sym__concat] = ACTIONS(597), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [sym__special_character] = ACTIONS(597), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(597), + [sym_variable_name] = ACTIONS(597), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_GT_AMP] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_LT_LPAREN] = ACTIONS(597), + [sym_ansii_c_string] = ACTIONS(597), }, [563] = { - [sym_word] = ACTIONS(191), - [anon_sym_AMP_GT_GT] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(191), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [sym__special_character] = ACTIONS(191), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(191), - [sym_raw_string] = ACTIONS(191), - [sym_variable_name] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(191), - [anon_sym_GT_AMP] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_GT_LPAREN] = ACTIONS(191), - [sym_ansii_c_string] = ACTIONS(191), + [anon_sym_AMP_GT_GT] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(213), + [anon_sym_GT_GT] = ACTIONS(213), + [sym__special_character] = ACTIONS(213), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(213), + [sym_variable_name] = ACTIONS(213), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_GT_AMP] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [sym_ansii_c_string] = ACTIONS(213), }, [564] = { [aux_sym__literal_repeat1] = STATE(564), - [sym_word] = ACTIONS(634), - [anon_sym_AMP_GT_GT] = ACTIONS(634), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(634), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(634), - [sym__special_character] = ACTIONS(2258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(634), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), - [sym_raw_string] = ACTIONS(634), - [sym_variable_name] = ACTIONS(634), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_RPAREN] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_GT_AMP] = ACTIONS(634), - [anon_sym_BQUOTE] = ACTIONS(634), - [anon_sym_GT_LPAREN] = ACTIONS(634), - [sym_ansii_c_string] = ACTIONS(634), + [anon_sym_AMP_GT_GT] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_GT_LPAREN] = ACTIONS(650), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(650), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [sym__special_character] = ACTIONS(2304), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(650), + [sym_variable_name] = ACTIONS(650), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_GT_AMP] = ACTIONS(650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), + [anon_sym_LT_LPAREN] = ACTIONS(650), + [sym_ansii_c_string] = ACTIONS(650), }, [565] = { + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + }, + [566] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(455), [sym_function_definition] = STATE(455), @@ -23061,8 +23576,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(597), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [sym_redirected_statement] = STATE(455), [sym_for_statement] = STATE(455), [sym_compound_statement] = STATE(455), @@ -23070,8 +23585,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(455), [sym_unset_command] = STATE(455), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), [sym_c_style_for_statement] = STATE(455), [sym_while_statement] = STATE(455), @@ -23080,132 +23595,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(455), [sym_command] = STATE(455), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [566] = { - [sym_heredoc_body] = STATE(1466), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(870), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(644), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [567] = { - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(644), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [sym_heredoc_body] = STATE(1466), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(967), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [568] = { [aux_sym__literal_repeat1] = STATE(386), @@ -23216,8 +23692,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(600), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [sym_redirected_statement] = STATE(599), [sym_for_statement] = STATE(599), [sym_compound_statement] = STATE(599), @@ -23225,8 +23701,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(599), [sym_unset_command] = STATE(599), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), [sym_c_style_for_statement] = STATE(599), [sym_while_statement] = STATE(599), @@ -23235,2116 +23711,2171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(599), [sym_command] = STATE(599), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [569] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_PIPE_AMP] = ACTIONS(2218), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LF] = ACTIONS(2261), - [anon_sym_SEMI] = ACTIONS(2263), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_AMP_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_BQUOTE] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_SEMI_SEMI] = ACTIONS(2263), - [anon_sym_LT_LT_DASH] = ACTIONS(441), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(2264), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(2264), + [anon_sym_SEMI_SEMI] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), }, [570] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(2261), - [anon_sym_SEMI] = ACTIONS(2263), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(2007), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_SEMI_SEMI] = ACTIONS(2263), - [anon_sym_PIPE_AMP] = ACTIONS(2218), + [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(2049), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(2266), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(2264), + [anon_sym_SEMI_SEMI] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), }, [571] = { - [sym_command_substitution] = STATE(423), + [sym_command_substitution] = STATE(424), [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(423), - [sym_process_substitution] = STATE(423), - [sym_simple_expansion] = STATE(423), - [sym_string_expansion] = STATE(423), + [sym_string] = STATE(424), + [sym_process_substitution] = STATE(424), + [sym_simple_expansion] = STATE(424), + [sym_string_expansion] = STATE(424), [aux_sym_command_repeat2] = STATE(603), [sym_concatenation] = STATE(603), - [sym_expansion] = STATE(423), - [sym_word] = ACTIONS(1968), - [anon_sym_AMP_GT_GT] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LT] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(750), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_AMP] = ACTIONS(750), - [anon_sym_GT_GT] = ACTIONS(750), - [anon_sym_EQ_TILDE] = ACTIONS(1972), + [sym_expansion] = STATE(424), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(771), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_number] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [sym_word] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(2018), [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(750), - [sym_raw_string] = ACTIONS(1968), - [sym_file_descriptor] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_AMP_GT] = ACTIONS(750), - [anon_sym_EQ_EQ] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1978), - [anon_sym_LT_LT_LT] = ACTIONS(750), - [anon_sym_GT_AMP] = ACTIONS(750), - [anon_sym_BQUOTE] = ACTIONS(750), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(750), - [anon_sym_SEMI_SEMI] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(750), + [anon_sym_LT_LT_DASH] = ACTIONS(771), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [sym_raw_string] = ACTIONS(2014), + [sym_file_descriptor] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [sym_ansii_c_string] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_SEMI_SEMI] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), }, [572] = { - [aux_sym_concatenation_repeat1] = STATE(1193), - [sym_word] = ACTIONS(770), - [anon_sym_AMP_GT_GT] = ACTIONS(770), - [anon_sym_DOLLAR] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(770), - [anon_sym_LT_LPAREN] = ACTIONS(770), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(770), - [sym__concat] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_AMP] = ACTIONS(770), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_EQ_TILDE] = ACTIONS(770), - [sym__special_character] = ACTIONS(770), - [anon_sym_LT_LT_DASH] = ACTIONS(770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(770), - [anon_sym_LF] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(770), - [sym_raw_string] = ACTIONS(770), - [sym_file_descriptor] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_AMP_GT] = ACTIONS(770), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_DQUOTE] = ACTIONS(770), - [anon_sym_LT_LT_LT] = ACTIONS(770), - [anon_sym_GT_AMP] = ACTIONS(770), - [anon_sym_BQUOTE] = ACTIONS(770), - [anon_sym_esac] = ACTIONS(770), - [anon_sym_GT_LPAREN] = ACTIONS(770), - [sym_ansii_c_string] = ACTIONS(770), - [anon_sym_AMP_AMP] = ACTIONS(770), - [anon_sym_SEMI_SEMI] = ACTIONS(770), - [anon_sym_PIPE_AMP] = ACTIONS(770), + [sym_command_substitution] = STATE(605), + [aux_sym__literal_repeat1] = STATE(606), + [sym_string] = STATE(605), + [sym_process_substitution] = STATE(605), + [sym_simple_expansion] = STATE(605), + [sym_string_expansion] = STATE(605), + [sym_concatenation] = STATE(604), + [sym_expansion] = STATE(605), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2311), + [sym_word] = ACTIONS(2313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_ansii_c_string] = ACTIONS(2311), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1736), + [sym_regex] = ACTIONS(2315), + [sym__special_character] = ACTIONS(2270), + [sym_number] = ACTIONS(2313), }, [573] = { - [sym_command_substitution] = STATE(604), - [aux_sym__literal_repeat1] = STATE(606), - [sym_string] = STATE(604), - [sym_process_substitution] = STATE(604), - [sym_simple_expansion] = STATE(604), - [sym_string_expansion] = STATE(604), - [sym_concatenation] = STATE(605), - [sym_expansion] = STATE(604), - [sym_word] = ACTIONS(2265), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [sym_raw_string] = ACTIONS(2265), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_DOLLAR] = ACTIONS(1679), - [sym_ansii_c_string] = ACTIONS(2265), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym__special_character] = ACTIONS(2224), - [sym_regex] = ACTIONS(2267), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1196), + [anon_sym_AMP] = ACTIONS(797), + [anon_sym_AMP_GT_GT] = ACTIONS(797), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_LT_LT] = ACTIONS(797), + [anon_sym_BQUOTE] = ACTIONS(797), + [anon_sym_GT_LPAREN] = ACTIONS(797), + [sym_number] = ACTIONS(797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), + [anon_sym_PIPE_PIPE] = ACTIONS(797), + [sym__concat] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(797), + [sym_word] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(797), + [anon_sym_LT_AMP] = ACTIONS(797), + [anon_sym_GT_GT] = ACTIONS(797), + [anon_sym_EQ_TILDE] = ACTIONS(797), + [sym__special_character] = ACTIONS(797), + [anon_sym_LT_LT_DASH] = ACTIONS(797), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_SEMI] = ACTIONS(797), + [sym_raw_string] = ACTIONS(797), + [sym_file_descriptor] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(797), + [anon_sym_AMP_GT] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [anon_sym_LT_LT_LT] = ACTIONS(797), + [anon_sym_GT_AMP] = ACTIONS(797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(797), + [anon_sym_esac] = ACTIONS(797), + [anon_sym_LT_LPAREN] = ACTIONS(797), + [sym_ansii_c_string] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(797), + [anon_sym_SEMI_SEMI] = ACTIONS(797), + [anon_sym_PIPE_AMP] = ACTIONS(797), }, [574] = { [aux_sym__literal_repeat1] = STATE(1231), - [sym_word] = ACTIONS(778), - [anon_sym_AMP_GT_GT] = ACTIONS(778), - [anon_sym_DOLLAR] = ACTIONS(778), - [anon_sym_LT_LT] = ACTIONS(778), - [anon_sym_LT_LPAREN] = ACTIONS(778), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(778), - [anon_sym_PIPE] = ACTIONS(778), - [anon_sym_LT] = ACTIONS(778), - [anon_sym_LT_AMP] = ACTIONS(778), - [anon_sym_GT_GT] = ACTIONS(778), - [anon_sym_EQ_TILDE] = ACTIONS(778), - [sym__special_character] = ACTIONS(2200), - [anon_sym_LT_LT_DASH] = ACTIONS(778), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), - [anon_sym_LF] = ACTIONS(780), - [anon_sym_SEMI] = ACTIONS(778), - [sym_raw_string] = ACTIONS(778), - [sym_file_descriptor] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(778), - [anon_sym_GT] = ACTIONS(778), - [anon_sym_AMP_GT] = ACTIONS(778), - [anon_sym_EQ_EQ] = ACTIONS(778), - [anon_sym_DQUOTE] = ACTIONS(778), - [anon_sym_LT_LT_LT] = ACTIONS(778), - [anon_sym_GT_AMP] = ACTIONS(778), - [anon_sym_BQUOTE] = ACTIONS(778), - [anon_sym_esac] = ACTIONS(778), - [anon_sym_GT_LPAREN] = ACTIONS(778), - [sym_ansii_c_string] = ACTIONS(778), - [anon_sym_AMP_AMP] = ACTIONS(778), - [anon_sym_SEMI_SEMI] = ACTIONS(778), - [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_LT_LT] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_GT_LPAREN] = ACTIONS(801), + [sym_number] = ACTIONS(801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(801), + [anon_sym_PIPE_PIPE] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [sym_word] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(801), + [anon_sym_GT_GT] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [sym__special_character] = ACTIONS(2246), + [anon_sym_LT_LT_DASH] = ACTIONS(801), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [sym_raw_string] = ACTIONS(801), + [sym_file_descriptor] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_AMP_GT] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_LT_LT_LT] = ACTIONS(801), + [anon_sym_GT_AMP] = ACTIONS(801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_esac] = ACTIONS(801), + [anon_sym_LT_LPAREN] = ACTIONS(801), + [sym_ansii_c_string] = ACTIONS(801), + [anon_sym_AMP_AMP] = ACTIONS(801), + [anon_sym_SEMI_SEMI] = ACTIONS(801), + [anon_sym_PIPE_AMP] = ACTIONS(801), }, [575] = { - [sym_command_substitution] = STATE(423), + [sym_command_substitution] = STATE(424), [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(423), - [sym_process_substitution] = STATE(423), - [sym_simple_expansion] = STATE(423), - [sym_string_expansion] = STATE(423), + [sym_string] = STATE(424), + [sym_process_substitution] = STATE(424), + [sym_simple_expansion] = STATE(424), + [sym_string_expansion] = STATE(424), [aux_sym_command_repeat2] = STATE(472), [sym_concatenation] = STATE(472), - [sym_expansion] = STATE(423), - [sym_word] = ACTIONS(1968), - [anon_sym_AMP_GT_GT] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LT] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(750), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_AMP] = ACTIONS(750), - [anon_sym_GT_GT] = ACTIONS(750), - [anon_sym_EQ_TILDE] = ACTIONS(1972), + [sym_expansion] = STATE(424), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(771), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_number] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [sym_word] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(2018), [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(750), - [sym_raw_string] = ACTIONS(1968), - [sym_file_descriptor] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_AMP_GT] = ACTIONS(750), - [anon_sym_EQ_EQ] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1978), - [anon_sym_LT_LT_LT] = ACTIONS(750), - [anon_sym_GT_AMP] = ACTIONS(750), - [anon_sym_BQUOTE] = ACTIONS(750), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(750), - [anon_sym_SEMI_SEMI] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(750), + [anon_sym_LT_LT_DASH] = ACTIONS(771), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [sym_raw_string] = ACTIONS(2014), + [sym_file_descriptor] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [sym_ansii_c_string] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_SEMI_SEMI] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), }, [576] = { - [sym_word] = ACTIONS(784), - [anon_sym_AMP_GT_GT] = ACTIONS(784), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(784), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(784), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(784), - [anon_sym_GT_GT] = ACTIONS(784), - [sym__special_character] = ACTIONS(784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), - [sym_raw_string] = ACTIONS(784), - [sym_variable_name] = ACTIONS(784), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(784), - [anon_sym_GT_AMP] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(784), - [anon_sym_GT_LPAREN] = ACTIONS(784), - [sym_ansii_c_string] = ACTIONS(784), + [sym_command_substitution] = STATE(549), + [aux_sym__literal_repeat1] = STATE(550), + [sym_string] = STATE(549), + [aux_sym_declaration_command_repeat1] = STATE(576), + [sym_process_substitution] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_subscript] = STATE(2482), + [sym_string_expansion] = STATE(549), + [sym_variable_assignment] = STATE(576), + [sym_concatenation] = STATE(576), + [sym_expansion] = STATE(549), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(2317), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(2320), + [anon_sym_GT_LPAREN] = ACTIONS(2323), + [sym_number] = ACTIONS(2326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2329), + [anon_sym_PIPE_PIPE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [sym_word] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_LT_AMP] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(809), + [sym__special_character] = ACTIONS(2332), + [anon_sym_LT_LT_DASH] = ACTIONS(809), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(809), + [sym_raw_string] = ACTIONS(2326), + [sym_variable_name] = ACTIONS(2335), + [sym_file_descriptor] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(2338), + [anon_sym_LT_LT_LT] = ACTIONS(809), + [anon_sym_GT_AMP] = ACTIONS(809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2341), + [anon_sym_esac] = ACTIONS(809), + [anon_sym_LT_LPAREN] = ACTIONS(2323), + [sym_ansii_c_string] = ACTIONS(2326), + [aux_sym__simple_variable_name_token1] = ACTIONS(2344), + [anon_sym_AMP_AMP] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(809), }, [577] = { - [sym_command_substitution] = STATE(576), - [sym_string] = STATE(576), - [sym_process_substitution] = STATE(576), - [sym_simple_expansion] = STATE(576), - [sym_string_expansion] = STATE(576), - [sym_expansion] = STATE(576), - [sym_word] = ACTIONS(2269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_LT_LPAREN] = ACTIONS(123), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(123), - [sym_ansii_c_string] = ACTIONS(2269), - [sym__special_character] = ACTIONS(2269), + [sym_command_substitution] = STATE(552), + [aux_sym__literal_repeat1] = STATE(553), + [sym_string] = STATE(552), + [aux_sym_unset_command_repeat1] = STATE(577), + [sym_process_substitution] = STATE(552), + [sym_simple_expansion] = STATE(552), + [sym_string_expansion] = STATE(552), + [sym_concatenation] = STATE(577), + [sym_expansion] = STATE(552), + [anon_sym_AMP] = ACTIONS(843), + [anon_sym_AMP_GT_GT] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(2347), + [anon_sym_LT_LT] = ACTIONS(843), + [anon_sym_BQUOTE] = ACTIONS(2350), + [anon_sym_GT_LPAREN] = ACTIONS(2353), + [sym_number] = ACTIONS(2356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2359), + [anon_sym_PIPE_PIPE] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [sym_word] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(843), + [anon_sym_LT_AMP] = ACTIONS(843), + [anon_sym_GT_GT] = ACTIONS(843), + [sym__special_character] = ACTIONS(2362), + [anon_sym_LT_LT_DASH] = ACTIONS(843), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(843), + [sym_raw_string] = ACTIONS(2356), + [sym_file_descriptor] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_AMP_GT] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(2365), + [anon_sym_LT_LT_LT] = ACTIONS(843), + [anon_sym_GT_AMP] = ACTIONS(843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), + [anon_sym_esac] = ACTIONS(843), + [anon_sym_LT_LPAREN] = ACTIONS(2353), + [sym_ansii_c_string] = ACTIONS(2356), + [aux_sym__simple_variable_name_token1] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(843), + [anon_sym_SEMI_SEMI] = ACTIONS(843), + [anon_sym_PIPE_AMP] = ACTIONS(843), }, [578] = { - [aux_sym_concatenation_repeat1] = STATE(578), - [sym_word] = ACTIONS(784), - [anon_sym_AMP_GT_GT] = ACTIONS(784), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(784), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(784), - [anon_sym_GT_GT] = ACTIONS(784), - [sym__special_character] = ACTIONS(784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), - [sym_raw_string] = ACTIONS(784), - [sym_variable_name] = ACTIONS(784), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(784), - [anon_sym_GT_AMP] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(784), - [anon_sym_GT_LPAREN] = ACTIONS(784), - [sym_ansii_c_string] = ACTIONS(784), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [sym__concat] = ACTIONS(876), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), }, [579] = { - [sym_command_substitution] = STATE(550), - [aux_sym__literal_repeat1] = STATE(551), - [sym_string] = STATE(550), - [aux_sym_declaration_command_repeat1] = STATE(579), - [sym_process_substitution] = STATE(550), - [sym_simple_expansion] = STATE(550), - [sym_subscript] = STATE(2482), - [sym_string_expansion] = STATE(550), - [sym_variable_assignment] = STATE(579), - [sym_concatenation] = STATE(579), - [sym_expansion] = STATE(550), - [sym_word] = ACTIONS(2276), - [anon_sym_AMP_GT_GT] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(2282), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_LT_AMP] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [sym__special_character] = ACTIONS(2285), - [anon_sym_LT_LT_DASH] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2288), - [aux_sym__simple_variable_name_token1] = ACTIONS(2291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(798), - [sym_raw_string] = ACTIONS(2276), - [sym_variable_name] = ACTIONS(2297), - [sym_file_descriptor] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_AMP_GT] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_LT_LT_LT] = ACTIONS(798), - [anon_sym_GT_AMP] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(2303), - [anon_sym_esac] = ACTIONS(798), - [anon_sym_GT_LPAREN] = ACTIONS(2282), - [sym_ansii_c_string] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [sym__concat] = ACTIONS(880), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(880), + [sym_variable_name] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), }, [580] = { - [sym_command_substitution] = STATE(553), - [aux_sym__literal_repeat1] = STATE(554), - [sym_string] = STATE(553), - [aux_sym_unset_command_repeat1] = STATE(580), - [sym_process_substitution] = STATE(553), - [sym_simple_expansion] = STATE(553), - [sym_string_expansion] = STATE(553), - [sym_concatenation] = STATE(580), - [sym_expansion] = STATE(553), - [sym_word] = ACTIONS(2306), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(2312), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [sym__special_character] = ACTIONS(2315), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2318), - [aux_sym__simple_variable_name_token1] = ACTIONS(2321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2324), - [anon_sym_LF] = ACTIONS(852), - [anon_sym_SEMI] = ACTIONS(832), - [sym_raw_string] = ACTIONS(2306), - [sym_file_descriptor] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(2327), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(2330), - [anon_sym_esac] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(2312), - [sym_ansii_c_string] = ACTIONS(2306), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [sym__concat] = ACTIONS(884), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), }, [581] = { - [sym_word] = ACTIONS(862), - [anon_sym_AMP_GT_GT] = ACTIONS(862), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(862), - [anon_sym_GT_GT] = ACTIONS(862), - [sym__special_character] = ACTIONS(862), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(862), - [sym_raw_string] = ACTIONS(862), - [sym_variable_name] = ACTIONS(862), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(862), - [anon_sym_GT_AMP] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_ansii_c_string] = ACTIONS(862), + [sym_command_substitution] = STATE(580), + [sym_string] = STATE(580), + [sym_process_substitution] = STATE(580), + [sym_simple_expansion] = STATE(580), + [sym_string_expansion] = STATE(580), + [sym_expansion] = STATE(580), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2376), + [anon_sym_BQUOTE] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(117), + [sym_number] = ACTIONS(2378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_word] = ACTIONS(2378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [sym_ansii_c_string] = ACTIONS(2374), + [sym__special_character] = ACTIONS(2374), }, [582] = { - [anon_sym_BANG_EQ] = ACTIONS(1079), - [anon_sym_PLUS_EQ] = ACTIONS(1079), - [anon_sym_LF] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_AMP] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [sym_test_operator] = ACTIONS(1079), - [anon_sym_EQ_TILDE] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_AMP_AMP] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_SEMI_SEMI] = ACTIONS(902), - [anon_sym_DASH_EQ] = ACTIONS(1079), + [aux_sym_concatenation_repeat1] = STATE(582), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [sym__concat] = ACTIONS(2380), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), }, [583] = { + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [sym__concat] = ACTIONS(907), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(907), + [sym_variable_name] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + }, + [584] = { + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [sym__concat] = ACTIONS(959), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(959), + [sym_variable_name] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + }, + [585] = { + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(999), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [sym_test_operator] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_EQ_TILDE] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(999), + [anon_sym_DASH_EQ] = ACTIONS(1090), + }, + [586] = { [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(610), - [sym_postfix_expression] = STATE(610), + [sym_unary_expression] = STATE(613), + [sym_postfix_expression] = STATE(613), [sym_string] = STATE(559), [aux_sym__literal_repeat1] = STATE(561), [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(610), + [sym_parenthesized_expression] = STATE(613), [sym_simple_expansion] = STATE(559), [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(610), - [sym_binary_expression] = STATE(610), - [sym_concatenation] = STATE(610), + [sym__expression] = STATE(613), + [sym_binary_expression] = STATE(613), + [sym_concatenation] = STATE(613), [sym_expansion] = STATE(559), - [sym_word] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), - [sym_raw_string] = ACTIONS(2244), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_LT_LPAREN] = ACTIONS(2246), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2248), - [sym_test_operator] = ACTIONS(2250), - [anon_sym_BQUOTE] = ACTIONS(2252), - [anon_sym_GT_LPAREN] = ACTIONS(2246), - [sym_ansii_c_string] = ACTIONS(2244), - [sym__special_character] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2284), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(615), + [sym_test_operator] = ACTIONS(2288), + [anon_sym_BQUOTE] = ACTIONS(2290), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [sym_word] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2298), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [sym_ansii_c_string] = ACTIONS(2286), + [sym__special_character] = ACTIONS(2300), }, - [584] = { - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_PLUS_EQ] = ACTIONS(906), - [anon_sym_LF] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_PIPE_PIPE] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [sym_test_operator] = ACTIONS(906), - [anon_sym_EQ_TILDE] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(906), - [anon_sym_AMP_AMP] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_SEMI_SEMI] = ACTIONS(906), - [anon_sym_DASH_EQ] = ACTIONS(906), + [587] = { + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1003), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1003), + [sym_test_operator] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_EQ_TILDE] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_DASH_EQ] = ACTIONS(1003), }, - [585] = { + [588] = { [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(610), - [sym_postfix_expression] = STATE(610), + [sym_unary_expression] = STATE(613), + [sym_postfix_expression] = STATE(613), [sym_string] = STATE(559), [aux_sym__literal_repeat1] = STATE(561), [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(610), + [sym_parenthesized_expression] = STATE(613), [sym_simple_expansion] = STATE(559), [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(610), - [sym_binary_expression] = STATE(610), - [sym_concatenation] = STATE(610), + [sym__expression] = STATE(613), + [sym_binary_expression] = STATE(613), + [sym_concatenation] = STATE(613), [sym_expansion] = STATE(559), - [sym_word] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), - [sym_raw_string] = ACTIONS(2244), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_LT_LPAREN] = ACTIONS(2246), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2248), - [sym_test_operator] = ACTIONS(2250), - [anon_sym_BQUOTE] = ACTIONS(2252), - [anon_sym_GT_LPAREN] = ACTIONS(2246), - [sym_ansii_c_string] = ACTIONS(2244), - [sym__special_character] = ACTIONS(2254), - [sym_regex] = ACTIONS(2333), - }, - [586] = { - [sym_word] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(922), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(922), - [sym__special_character] = ACTIONS(922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(922), - [sym_raw_string] = ACTIONS(922), - [sym_variable_name] = ACTIONS(922), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(922), - [anon_sym_GT_AMP] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(922), - [anon_sym_GT_LPAREN] = ACTIONS(922), - [sym_ansii_c_string] = ACTIONS(922), - }, - [587] = { - [sym_word] = ACTIONS(972), - [anon_sym_AMP_GT_GT] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(972), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [sym__special_character] = ACTIONS(972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), - [sym_raw_string] = ACTIONS(972), - [sym_variable_name] = ACTIONS(972), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(972), - [anon_sym_GT_AMP] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_GT_LPAREN] = ACTIONS(972), - [sym_ansii_c_string] = ACTIONS(972), - }, - [588] = { - [aux_sym_concatenation_repeat1] = STATE(638), - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [sym__concat] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [aux_sym__simple_variable_name_token1] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(2284), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(615), + [sym_test_operator] = ACTIONS(2288), + [anon_sym_BQUOTE] = ACTIONS(2290), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [sym_word] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2298), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [sym_ansii_c_string] = ACTIONS(2286), + [sym__special_character] = ACTIONS(2300), + [sym_regex] = ACTIONS(2383), }, [589] = { - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [aux_sym__simple_variable_name_token1] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [ts_builtin_sym_end] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [aux_sym__simple_variable_name_token1] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [590] = { - [aux_sym__literal_repeat1] = STATE(646), - [sym_word] = ACTIONS(1006), - [anon_sym_AMP_GT_GT] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1006), - [anon_sym_LT_LPAREN] = ACTIONS(1006), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_AMP] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(1006), - [sym__special_character] = ACTIONS(383), - [anon_sym_LT_LT_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), - [aux_sym__simple_variable_name_token1] = ACTIONS(1006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_raw_string] = ACTIONS(1006), - [sym_variable_name] = ACTIONS(1010), - [sym_file_descriptor] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_AMP_GT] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [anon_sym_LT_LT_LT] = ACTIONS(1006), - [anon_sym_GT_AMP] = ACTIONS(1006), - [ts_builtin_sym_end] = ACTIONS(1010), - [anon_sym_BQUOTE] = ACTIONS(1006), - [anon_sym_GT_LPAREN] = ACTIONS(1006), - [sym_ansii_c_string] = ACTIONS(1006), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_SEMI_SEMI] = ACTIONS(1006), - [anon_sym_PIPE_AMP] = ACTIONS(1006), + [aux_sym_concatenation_repeat1] = STATE(643), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [sym__concat] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [ts_builtin_sym_end] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [aux_sym__simple_variable_name_token1] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [591] = { - [aux_sym_concatenation_repeat1] = STATE(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1026), - [anon_sym_LT_LT] = ACTIONS(1026), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [sym__concat] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_AMP] = ACTIONS(1026), - [anon_sym_GT_GT] = ACTIONS(1026), - [anon_sym_LT_LT_DASH] = ACTIONS(1026), - [anon_sym_LF] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1026), - [sym_file_descriptor] = ACTIONS(1024), - [anon_sym_AMP_GT] = ACTIONS(1026), - [anon_sym_LT_LT_LT] = ACTIONS(1026), - [anon_sym_GT_AMP] = ACTIONS(1026), - [anon_sym_BQUOTE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1026), - [anon_sym_PIPE_AMP] = ACTIONS(1026), + [aux_sym__literal_repeat1] = STATE(646), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_number] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [sym_word] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [sym__special_character] = ACTIONS(381), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [sym_variable_name] = ACTIONS(1041), + [sym_file_descriptor] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [ts_builtin_sym_end] = ACTIONS(1041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [aux_sym__simple_variable_name_token1] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [sym_ansii_c_string] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), }, [592] = { - [aux_sym__literal_repeat1] = STATE(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(1030), - [anon_sym_LT_LT] = ACTIONS(1030), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_LT] = ACTIONS(1030), - [anon_sym_LT_AMP] = ACTIONS(1030), - [anon_sym_GT_GT] = ACTIONS(1030), - [sym__special_character] = ACTIONS(2091), - [anon_sym_LT_LT_DASH] = ACTIONS(1030), - [anon_sym_LF] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_GT] = ACTIONS(1030), - [sym_file_descriptor] = ACTIONS(1028), - [anon_sym_AMP_GT] = ACTIONS(1030), - [anon_sym_LT_LT_LT] = ACTIONS(1030), - [anon_sym_GT_AMP] = ACTIONS(1030), - [anon_sym_BQUOTE] = ACTIONS(1030), - [anon_sym_esac] = ACTIONS(1030), - [anon_sym_AMP_AMP] = ACTIONS(1030), - [anon_sym_SEMI_SEMI] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1030), + [aux_sym_concatenation_repeat1] = STATE(1068), + [anon_sym_PIPE_AMP] = ACTIONS(1057), + [anon_sym_AMP_GT_GT] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1057), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [sym__concat] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_LT_AMP] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_LT_LT_DASH] = ACTIONS(1057), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1057), + [sym_file_descriptor] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_AMP_GT] = ACTIONS(1057), + [anon_sym_LT_LT_LT] = ACTIONS(1057), + [anon_sym_GT_AMP] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [anon_sym_SEMI_SEMI] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1057), }, [593] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1026), - [anon_sym_LT_LT] = ACTIONS(1026), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_AMP] = ACTIONS(1026), - [anon_sym_GT_GT] = ACTIONS(1026), - [anon_sym_LT_LT_DASH] = ACTIONS(1026), - [anon_sym_LF] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1026), - [sym_file_descriptor] = ACTIONS(1024), - [anon_sym_AMP_GT] = ACTIONS(1026), - [anon_sym_LT_LT_LT] = ACTIONS(1026), - [anon_sym_GT_AMP] = ACTIONS(1026), - [anon_sym_BQUOTE] = ACTIONS(1026), - [anon_sym_esac] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1026), - [anon_sym_PIPE_AMP] = ACTIONS(1026), + [aux_sym__literal_repeat1] = STATE(1103), + [anon_sym_PIPE_AMP] = ACTIONS(1061), + [anon_sym_AMP_GT_GT] = ACTIONS(1061), + [anon_sym_LT_LT] = ACTIONS(1061), + [anon_sym_BQUOTE] = ACTIONS(1061), + [anon_sym_PIPE_PIPE] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_LT_AMP] = ACTIONS(1061), + [anon_sym_GT_GT] = ACTIONS(1061), + [sym__special_character] = ACTIONS(2137), + [anon_sym_LT_LT_DASH] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1061), + [sym_file_descriptor] = ACTIONS(1059), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_AMP_GT] = ACTIONS(1061), + [anon_sym_LT_LT_LT] = ACTIONS(1061), + [anon_sym_GT_AMP] = ACTIONS(1061), + [anon_sym_esac] = ACTIONS(1061), + [anon_sym_AMP_AMP] = ACTIONS(1061), + [anon_sym_SEMI_SEMI] = ACTIONS(1061), + [anon_sym_AMP] = ACTIONS(1061), }, [594] = { - [sym_word] = ACTIONS(1034), - [anon_sym_AMP_GT_GT] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1034), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1034), - [anon_sym_GT_GT] = ACTIONS(1034), - [sym__special_character] = ACTIONS(1034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1034), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1034), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_GT_AMP] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1034), - [anon_sym_GT_LPAREN] = ACTIONS(1034), - [sym_ansii_c_string] = ACTIONS(1034), + [anon_sym_PIPE_AMP] = ACTIONS(1057), + [anon_sym_AMP_GT_GT] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1057), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_LT_AMP] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_LT_LT_DASH] = ACTIONS(1057), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1057), + [sym_file_descriptor] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_AMP_GT] = ACTIONS(1057), + [anon_sym_LT_LT_LT] = ACTIONS(1057), + [anon_sym_GT_AMP] = ACTIONS(1057), + [anon_sym_esac] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [anon_sym_SEMI_SEMI] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1057), }, [595] = { - [sym_word] = ACTIONS(1038), - [anon_sym_AMP_GT_GT] = ACTIONS(1038), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1038), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1038), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1038), - [sym__special_character] = ACTIONS(1038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), - [sym_raw_string] = ACTIONS(1038), - [sym_variable_name] = ACTIONS(1038), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1038), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1038), - [anon_sym_GT_AMP] = ACTIONS(1038), - [anon_sym_BQUOTE] = ACTIONS(1038), - [anon_sym_GT_LPAREN] = ACTIONS(1038), - [sym_ansii_c_string] = ACTIONS(1038), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1065), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), }, [596] = { - [sym_word] = ACTIONS(1034), - [anon_sym_AMP_GT_GT] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1034), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1034), - [anon_sym_GT_GT] = ACTIONS(1034), - [sym__special_character] = ACTIONS(1034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1034), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1034), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_GT_AMP] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1034), - [anon_sym_GT_LPAREN] = ACTIONS(1034), - [sym_ansii_c_string] = ACTIONS(1034), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [sym__concat] = ACTIONS(876), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), }, [597] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_GT] = ACTIONS(1093), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1122), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1122), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_LT_AMP] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1122), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_AMP_GT] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_GT_AMP] = ACTIONS(1122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_PIPE_AMP] = ACTIONS(1122), }, [598] = { + [anon_sym_AMP] = ACTIONS(2385), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2335), - [anon_sym_LF] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_SEMI_SEMI] = ACTIONS(2083), - [anon_sym_esac] = ACTIONS(2083), + [anon_sym_LF] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_SEMI_SEMI] = ACTIONS(2129), + [anon_sym_esac] = ACTIONS(2129), }, [599] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_LT_LT_DASH] = ACTIONS(1123), - [anon_sym_AMP_GT_GT] = ACTIONS(1123), - [anon_sym_LF] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(1123), - [sym_file_descriptor] = ACTIONS(1125), - [anon_sym_AMP_GT] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_LT_LT_LT] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_GT_AMP] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_LT_AMP] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_SEMI_SEMI] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(2218), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(2266), }, [600] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1123), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(1123), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_SEMI_SEMI] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(2218), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(2266), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(2266), }, [601] = { - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(1113), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(1142), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [602] = { [sym_heredoc_body] = STATE(1468), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(870), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(1113), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(1142), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(967), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), }, [603] = { - [sym_command_substitution] = STATE(423), + [sym_command_substitution] = STATE(424), [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(423), - [sym_process_substitution] = STATE(423), - [sym_simple_expansion] = STATE(423), - [sym_string_expansion] = STATE(423), + [sym_string] = STATE(424), + [sym_process_substitution] = STATE(424), + [sym_simple_expansion] = STATE(424), + [sym_string_expansion] = STATE(424), [aux_sym_command_repeat2] = STATE(472), [sym_concatenation] = STATE(472), - [sym_expansion] = STATE(423), - [sym_word] = ACTIONS(1968), - [anon_sym_AMP_GT_GT] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LT] = ACTIONS(1155), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [anon_sym_PIPE] = ACTIONS(1155), - [anon_sym_LT] = ACTIONS(1155), - [anon_sym_LT_AMP] = ACTIONS(1155), - [anon_sym_GT_GT] = ACTIONS(1155), - [anon_sym_EQ_TILDE] = ACTIONS(1972), + [sym_expansion] = STATE(424), + [anon_sym_PIPE_AMP] = ACTIONS(1184), + [anon_sym_AMP_GT_GT] = ACTIONS(1184), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(1184), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_number] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [sym_word] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_LT_AMP] = ACTIONS(1184), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_EQ_TILDE] = ACTIONS(2018), [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_LF] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1155), - [sym_raw_string] = ACTIONS(1968), - [sym_file_descriptor] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_GT] = ACTIONS(1155), - [anon_sym_AMP_GT] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1978), - [anon_sym_LT_LT_LT] = ACTIONS(1155), - [anon_sym_GT_AMP] = ACTIONS(1155), - [anon_sym_BQUOTE] = ACTIONS(1155), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1155), - [anon_sym_SEMI_SEMI] = ACTIONS(1155), - [anon_sym_PIPE_AMP] = ACTIONS(1155), + [anon_sym_LT_LT_DASH] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(2014), + [sym_file_descriptor] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1184), + [anon_sym_AMP_GT] = ACTIONS(1184), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(1184), + [anon_sym_GT_AMP] = ACTIONS(1184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [sym_ansii_c_string] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(1184), + [anon_sym_SEMI_SEMI] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), }, [604] = { - [aux_sym_concatenation_repeat1] = STATE(1193), - [sym_word] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1159), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [sym__concat] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_LF] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_file_descriptor] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT] = ACTIONS(1159), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_esac] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), - [sym_ansii_c_string] = ACTIONS(1159), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1188), + [anon_sym_GT_LPAREN] = ACTIONS(1188), + [sym_number] = ACTIONS(1188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [sym_word] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1188), + [sym__special_character] = ACTIONS(1188), + [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(1188), + [sym_file_descriptor] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), + [anon_sym_esac] = ACTIONS(1188), + [anon_sym_LT_LPAREN] = ACTIONS(1188), + [sym_ansii_c_string] = ACTIONS(1188), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [anon_sym_PIPE_AMP] = ACTIONS(1188), }, [605] = { - [sym_word] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1159), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_LF] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_file_descriptor] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT] = ACTIONS(1159), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_esac] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), - [sym_ansii_c_string] = ACTIONS(1159), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), + [aux_sym_concatenation_repeat1] = STATE(1196), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1188), + [anon_sym_GT_LPAREN] = ACTIONS(1188), + [sym_number] = ACTIONS(1188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [sym__concat] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(1188), + [sym_word] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1188), + [sym__special_character] = ACTIONS(1188), + [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(1188), + [sym_file_descriptor] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), + [anon_sym_esac] = ACTIONS(1188), + [anon_sym_LT_LPAREN] = ACTIONS(1188), + [sym_ansii_c_string] = ACTIONS(1188), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [anon_sym_PIPE_AMP] = ACTIONS(1188), }, [606] = { [aux_sym__literal_repeat1] = STATE(1231), - [sym_word] = ACTIONS(1163), - [anon_sym_AMP_GT_GT] = ACTIONS(1163), - [anon_sym_DOLLAR] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_LT_LPAREN] = ACTIONS(1163), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_LT_AMP] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [sym__special_character] = ACTIONS(2200), - [anon_sym_LT_LT_DASH] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_LF] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1163), - [sym_raw_string] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1163), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [anon_sym_LT_LT_LT] = ACTIONS(1163), - [anon_sym_GT_AMP] = ACTIONS(1163), - [anon_sym_BQUOTE] = ACTIONS(1163), - [anon_sym_esac] = ACTIONS(1163), - [anon_sym_GT_LPAREN] = ACTIONS(1163), - [sym_ansii_c_string] = ACTIONS(1163), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1163), - [anon_sym_PIPE_AMP] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_GT_LPAREN] = ACTIONS(1192), + [sym_number] = ACTIONS(1192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [sym_word] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_AMP] = ACTIONS(1192), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_EQ_TILDE] = ACTIONS(1192), + [sym__special_character] = ACTIONS(2246), + [anon_sym_LT_LT_DASH] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [sym_raw_string] = ACTIONS(1192), + [sym_file_descriptor] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_AMP_GT] = ACTIONS(1192), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_GT_AMP] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), + [anon_sym_esac] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1192), + [sym_ansii_c_string] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_SEMI_SEMI] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), }, [607] = { - [sym_command_substitution] = STATE(572), + [sym_command_substitution] = STATE(573), [aux_sym__literal_repeat1] = STATE(574), - [sym_string] = STATE(572), - [sym_process_substitution] = STATE(572), - [sym_simple_expansion] = STATE(572), - [sym_string_expansion] = STATE(572), + [sym_string] = STATE(573), + [sym_process_substitution] = STATE(573), + [sym_simple_expansion] = STATE(573), + [sym_string_expansion] = STATE(573), [aux_sym_command_repeat2] = STATE(607), [sym_concatenation] = STATE(607), - [sym_expansion] = STATE(572), - [sym_word] = ACTIONS(2339), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(2342), - [anon_sym_LT_LT] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(2345), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_GT] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(2348), - [sym__special_character] = ACTIONS(2351), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2354), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2357), - [anon_sym_LF] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(2339), - [sym_file_descriptor] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT] = ACTIONS(1159), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_EQ_EQ] = ACTIONS(2348), - [anon_sym_DQUOTE] = ACTIONS(2360), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(2363), - [anon_sym_esac] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(2345), - [sym_ansii_c_string] = ACTIONS(2339), - [anon_sym_AMP_AMP] = ACTIONS(1159), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), + [sym_expansion] = STATE(573), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(2389), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2395), + [sym_number] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2401), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [sym_word] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(2404), + [sym__special_character] = ACTIONS(2407), + [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(2398), + [sym_file_descriptor] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2413), + [anon_sym_esac] = ACTIONS(1188), + [anon_sym_LT_LPAREN] = ACTIONS(2395), + [sym_ansii_c_string] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [anon_sym_PIPE_AMP] = ACTIONS(1188), }, [608] = { - [sym_string] = STATE(558), - [sym_word] = ACTIONS(1198), - [anon_sym_AMP_GT_GT] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(2366), - [anon_sym_DASH] = ACTIONS(2366), - [anon_sym_LT_LPAREN] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2368), - [anon_sym__] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1202), - [anon_sym_GT_GT] = ACTIONS(1202), - [sym__special_character] = ACTIONS(1202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1202), - [aux_sym__simple_variable_name_token1] = ACTIONS(2370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(2366), - [sym_variable_name] = ACTIONS(1202), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_QMARK] = ACTIONS(2370), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1202), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(125), - [anon_sym_GT_AMP] = ACTIONS(1202), - [anon_sym_BQUOTE] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_GT_LPAREN] = ACTIONS(1202), - [sym_ansii_c_string] = ACTIONS(1202), - [anon_sym_0] = ACTIONS(2370), + [sym_string] = STATE(557), + [anon_sym__] = ACTIONS(2416), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2416), + [sym_word] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2420), + [sym_raw_string] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2418), + [sym_variable_name] = ACTIONS(1227), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_GT_AMP] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2416), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2416), }, [609] = { - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_LF] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [sym_test_operator] = ACTIONS(1246), - [anon_sym_EQ_TILDE] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_SEMI_SEMI] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), + [anon_sym_AMP_GT_GT] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1233), + [anon_sym_GT_LPAREN] = ACTIONS(1233), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), + [sym__concat] = ACTIONS(1233), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [sym__special_character] = ACTIONS(1233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1233), + [sym_variable_name] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1233), + [anon_sym_GT_AMP] = ACTIONS(1233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), + [anon_sym_LT_LPAREN] = ACTIONS(1233), + [sym_ansii_c_string] = ACTIONS(1233), }, [610] = { - [anon_sym_BANG_EQ] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1250), - [anon_sym_LF] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [sym_test_operator] = ACTIONS(1250), - [anon_sym_EQ_TILDE] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1250), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_SEMI_SEMI] = ACTIONS(1250), - [anon_sym_DASH_EQ] = ACTIONS(1250), + [anon_sym_AMP_GT_GT] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_GT_LPAREN] = ACTIONS(1292), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), + [sym__concat] = ACTIONS(1292), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [sym__special_character] = ACTIONS(1292), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1292), + [sym_variable_name] = ACTIONS(1292), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1292), + [anon_sym_GT_AMP] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_LT_LPAREN] = ACTIONS(1292), + [sym_ansii_c_string] = ACTIONS(1292), }, [611] = { - [anon_sym_BANG_EQ] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1250), - [anon_sym_LF] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [sym_test_operator] = ACTIONS(1250), - [anon_sym_EQ_TILDE] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1250), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_SEMI_SEMI] = ACTIONS(1250), - [anon_sym_DASH_EQ] = ACTIONS(1250), + [anon_sym_AMP_GT_GT] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1302), + [anon_sym_GT_LPAREN] = ACTIONS(1302), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1302), + [sym__special_character] = ACTIONS(1302), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1302), + [sym_variable_name] = ACTIONS(1302), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1302), + [anon_sym_GT_AMP] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), + [anon_sym_LT_LPAREN] = ACTIONS(1302), + [sym_ansii_c_string] = ACTIONS(1302), }, [612] = { - [sym_word] = ACTIONS(1254), - [anon_sym_AMP_GT_GT] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1254), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1254), - [anon_sym_GT_GT] = ACTIONS(1254), - [sym__special_character] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1254), - [sym_variable_name] = ACTIONS(1254), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [anon_sym_GT_AMP] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1254), - [anon_sym_GT_LPAREN] = ACTIONS(1254), - [sym_ansii_c_string] = ACTIONS(1254), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_PLUS_EQ] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [sym_test_operator] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_EQ_TILDE] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_SEMI_SEMI] = ACTIONS(1354), + [anon_sym_DASH_EQ] = ACTIONS(1354), }, [613] = { - [sym_word] = ACTIONS(1303), - [anon_sym_AMP_GT_GT] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1303), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1303), - [anon_sym_GT_GT] = ACTIONS(1303), - [sym__special_character] = ACTIONS(1303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), - [sym_raw_string] = ACTIONS(1303), - [sym_variable_name] = ACTIONS(1303), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_RPAREN] = ACTIONS(1303), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1303), - [anon_sym_GT_AMP] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1303), - [anon_sym_GT_LPAREN] = ACTIONS(1303), - [sym_ansii_c_string] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), }, [614] = { - [sym_word] = ACTIONS(1321), - [anon_sym_AMP_GT_GT] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1321), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1321), - [anon_sym_GT_GT] = ACTIONS(1321), - [sym__special_character] = ACTIONS(1321), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1321), - [sym_raw_string] = ACTIONS(1321), - [sym_variable_name] = ACTIONS(1321), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_GT_AMP] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_GT_LPAREN] = ACTIONS(1321), - [sym_ansii_c_string] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), }, [615] = { - [sym_word] = ACTIONS(1335), - [anon_sym_AMP_GT_GT] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1335), - [anon_sym_LT_LPAREN] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_LT_AMP] = ACTIONS(1335), - [anon_sym_GT_GT] = ACTIONS(1335), - [sym__special_character] = ACTIONS(1335), - [anon_sym_LT_LT_DASH] = ACTIONS(1335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1335), - [aux_sym__simple_variable_name_token1] = ACTIONS(1335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), - [anon_sym_LF] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [sym_raw_string] = ACTIONS(1335), - [sym_variable_name] = ACTIONS(1337), - [sym_file_descriptor] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_AMP_GT] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_LT_LT_LT] = ACTIONS(1335), - [anon_sym_GT_AMP] = ACTIONS(1335), - [ts_builtin_sym_end] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_GT_LPAREN] = ACTIONS(1335), - [sym_ansii_c_string] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_number] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [sym_word] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [sym__special_character] = ACTIONS(1366), + [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [sym_variable_name] = ACTIONS(1368), + [sym_file_descriptor] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [ts_builtin_sym_end] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [aux_sym__simple_variable_name_token1] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [sym_ansii_c_string] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_SEMI_SEMI] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), }, [616] = { - [sym_word] = ACTIONS(1367), - [anon_sym_AMP_GT_GT] = ACTIONS(1367), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1367), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1367), - [anon_sym_GT_GT] = ACTIONS(1367), - [sym__special_character] = ACTIONS(1367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1367), - [sym_raw_string] = ACTIONS(1367), - [sym_variable_name] = ACTIONS(1367), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_GT_AMP] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [anon_sym_GT_LPAREN] = ACTIONS(1367), - [sym_ansii_c_string] = ACTIONS(1367), + [anon_sym_AMP_GT_GT] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1398), + [anon_sym_GT_LPAREN] = ACTIONS(1398), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1398), + [sym__concat] = ACTIONS(1398), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1398), + [anon_sym_GT_GT] = ACTIONS(1398), + [sym__special_character] = ACTIONS(1398), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1398), + [sym_variable_name] = ACTIONS(1398), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1398), + [anon_sym_GT_AMP] = ACTIONS(1398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1398), + [anon_sym_LT_LPAREN] = ACTIONS(1398), + [sym_ansii_c_string] = ACTIONS(1398), }, [617] = { - [anon_sym_LPAREN] = ACTIONS(1415), - [sym_word] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1417), - [anon_sym_local] = ACTIONS(1415), - [anon_sym_typeset] = ACTIONS(1415), - [anon_sym_unsetenv] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_LT_LPAREN] = ACTIONS(1417), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_LT_AMP] = ACTIONS(1417), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1415), - [sym__special_character] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1417), - [sym_raw_string] = ACTIONS(1417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1417), - [sym_file_descriptor] = ACTIONS(1417), - [sym_variable_name] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_readonly] = ACTIONS(1415), - [anon_sym_unset] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_GT_AMP] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1419), - [anon_sym_GT_LPAREN] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [sym_ansii_c_string] = ACTIONS(1417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_AMP_GT_GT] = ACTIONS(1446), + [anon_sym_local] = ACTIONS(1444), + [anon_sym_typeset] = ACTIONS(1444), + [anon_sym_unsetenv] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_GT_LPAREN] = ACTIONS(1446), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_LT_AMP] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1444), + [sym_word] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), + [sym_raw_string] = ACTIONS(1446), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [sym_variable_name] = ACTIONS(1446), + [sym_file_descriptor] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_AMP_GT] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_GT_AMP] = ACTIONS(1446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_LT_LPAREN] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [sym_ansii_c_string] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), }, [618] = { + [anon_sym_AMP] = ACTIONS(2424), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2374), - [anon_sym_LF] = ACTIONS(2376), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_SEMI_SEMI] = ACTIONS(2150), - [anon_sym_esac] = ACTIONS(2150), + [anon_sym_LF] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_SEMI_SEMI] = ACTIONS(2196), + [anon_sym_esac] = ACTIONS(2196), }, [619] = { - [sym_word] = ACTIONS(1552), - [anon_sym_AMP_GT_GT] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1552), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1552), - [sym__special_character] = ACTIONS(1552), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1552), - [sym_raw_string] = ACTIONS(1552), - [sym_variable_name] = ACTIONS(1552), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_GT_AMP] = ACTIONS(1552), - [anon_sym_BQUOTE] = ACTIONS(1552), - [anon_sym_GT_LPAREN] = ACTIONS(1552), - [sym_ansii_c_string] = ACTIONS(1552), + [anon_sym_AMP_GT_GT] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1456), + [anon_sym_GT_LPAREN] = ACTIONS(1456), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1456), + [sym__concat] = ACTIONS(1456), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1456), + [anon_sym_GT_GT] = ACTIONS(1456), + [sym__special_character] = ACTIONS(1456), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1456), + [sym_variable_name] = ACTIONS(1456), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1456), + [anon_sym_GT_AMP] = ACTIONS(1456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1456), + [anon_sym_LT_LPAREN] = ACTIONS(1456), + [sym_ansii_c_string] = ACTIONS(1456), }, [620] = { - [sym_word] = ACTIONS(1564), - [anon_sym_AMP_GT_GT] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1564), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1564), - [sym__special_character] = ACTIONS(1564), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1564), - [sym_raw_string] = ACTIONS(1564), - [sym_variable_name] = ACTIONS(1564), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1564), - [anon_sym_GT_AMP] = ACTIONS(1564), - [anon_sym_BQUOTE] = ACTIONS(1564), - [anon_sym_GT_LPAREN] = ACTIONS(1564), - [sym_ansii_c_string] = ACTIONS(1564), + [anon_sym_AMP_GT_GT] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_GT_LPAREN] = ACTIONS(1468), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1468), + [sym__concat] = ACTIONS(1468), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1468), + [anon_sym_GT_GT] = ACTIONS(1468), + [sym__special_character] = ACTIONS(1468), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1468), + [sym_variable_name] = ACTIONS(1468), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_GT_AMP] = ACTIONS(1468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1468), + [anon_sym_LT_LPAREN] = ACTIONS(1468), + [sym_ansii_c_string] = ACTIONS(1468), }, [621] = { - [sym_word] = ACTIONS(1574), - [anon_sym_AMP_GT_GT] = ACTIONS(1574), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1574), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1574), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1574), - [anon_sym_GT_GT] = ACTIONS(1574), - [sym__special_character] = ACTIONS(1574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1574), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1574), - [sym_raw_string] = ACTIONS(1574), - [sym_variable_name] = ACTIONS(1574), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_RPAREN] = ACTIONS(1574), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_GT_AMP] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1574), - [anon_sym_GT_LPAREN] = ACTIONS(1574), - [sym_ansii_c_string] = ACTIONS(1574), + [anon_sym_AMP_GT_GT] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_GT_LPAREN] = ACTIONS(1478), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1478), + [sym__concat] = ACTIONS(1478), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1478), + [anon_sym_GT_GT] = ACTIONS(1478), + [sym__special_character] = ACTIONS(1478), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1478), + [sym_variable_name] = ACTIONS(1478), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1478), + [anon_sym_GT_AMP] = ACTIONS(1478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1478), + [anon_sym_LT_LPAREN] = ACTIONS(1478), + [sym_ansii_c_string] = ACTIONS(1478), }, [622] = { - [sym_word] = ACTIONS(1578), - [anon_sym_AMP_GT_GT] = ACTIONS(1578), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1578), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1578), - [anon_sym_GT_GT] = ACTIONS(1578), - [sym__special_character] = ACTIONS(1578), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1578), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1578), - [sym_raw_string] = ACTIONS(1578), - [sym_variable_name] = ACTIONS(1578), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_RPAREN] = ACTIONS(1578), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1578), - [anon_sym_GT_AMP] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1578), - [anon_sym_GT_LPAREN] = ACTIONS(1578), - [sym_ansii_c_string] = ACTIONS(1578), + [anon_sym_AMP_GT_GT] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_GT_LPAREN] = ACTIONS(1482), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1482), + [sym__concat] = ACTIONS(1482), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1482), + [anon_sym_GT_GT] = ACTIONS(1482), + [sym__special_character] = ACTIONS(1482), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1482), + [sym_variable_name] = ACTIONS(1482), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1482), + [anon_sym_GT_AMP] = ACTIONS(1482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), + [anon_sym_LT_LPAREN] = ACTIONS(1482), + [sym_ansii_c_string] = ACTIONS(1482), }, [623] = { - [sym_word] = ACTIONS(1582), - [anon_sym_AMP_GT_GT] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_LT_AMP] = ACTIONS(1582), - [anon_sym_GT_GT] = ACTIONS(1582), - [sym__special_character] = ACTIONS(1582), - [anon_sym_LT_LT_DASH] = ACTIONS(1582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1582), - [aux_sym__simple_variable_name_token1] = ACTIONS(1582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1582), - [anon_sym_LF] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [sym_raw_string] = ACTIONS(1582), - [sym_variable_name] = ACTIONS(1584), - [sym_file_descriptor] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_AMP_GT] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_LT_LT_LT] = ACTIONS(1582), - [anon_sym_GT_AMP] = ACTIONS(1582), - [ts_builtin_sym_end] = ACTIONS(1584), - [anon_sym_BQUOTE] = ACTIONS(1582), - [anon_sym_GT_LPAREN] = ACTIONS(1582), - [sym_ansii_c_string] = ACTIONS(1582), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_SEMI_SEMI] = ACTIONS(1582), - [anon_sym_PIPE_AMP] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_AMP_GT_GT] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_LT_LT] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_GT_LPAREN] = ACTIONS(1614), + [sym_number] = ACTIONS(1614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [sym_word] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_LT_AMP] = ACTIONS(1614), + [anon_sym_GT_GT] = ACTIONS(1614), + [sym__special_character] = ACTIONS(1614), + [anon_sym_LT_LT_DASH] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [sym_raw_string] = ACTIONS(1614), + [sym_variable_name] = ACTIONS(1616), + [sym_file_descriptor] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_AMP_GT] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_LT_LT_LT] = ACTIONS(1614), + [anon_sym_GT_AMP] = ACTIONS(1614), + [ts_builtin_sym_end] = ACTIONS(1616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), + [aux_sym__simple_variable_name_token1] = ACTIONS(1614), + [anon_sym_LT_LPAREN] = ACTIONS(1614), + [sym_ansii_c_string] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_SEMI_SEMI] = ACTIONS(1614), + [anon_sym_PIPE_AMP] = ACTIONS(1614), }, [624] = { - [anon_sym_LPAREN] = ACTIONS(1415), - [sym_word] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1417), - [anon_sym_local] = ACTIONS(1415), - [anon_sym_typeset] = ACTIONS(1415), - [anon_sym_unsetenv] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_LT_LPAREN] = ACTIONS(1417), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_LT_AMP] = ACTIONS(1417), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1415), - [sym__special_character] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1417), - [sym_raw_string] = ACTIONS(1417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1417), - [sym_file_descriptor] = ACTIONS(1417), - [sym_variable_name] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_readonly] = ACTIONS(1415), - [anon_sym_unset] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_GT_AMP] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1651), - [anon_sym_GT_LPAREN] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [sym_ansii_c_string] = ACTIONS(1417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_AMP_GT_GT] = ACTIONS(1446), + [anon_sym_local] = ACTIONS(1444), + [anon_sym_typeset] = ACTIONS(1444), + [anon_sym_unsetenv] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1686), + [anon_sym_GT_LPAREN] = ACTIONS(1446), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_LT_AMP] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1444), + [sym_word] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), + [sym_raw_string] = ACTIONS(1446), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [sym_variable_name] = ACTIONS(1446), + [sym_file_descriptor] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_AMP_GT] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_GT_AMP] = ACTIONS(1446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_LT_LPAREN] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [sym_ansii_c_string] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), }, [625] = { - [sym_word] = ACTIONS(1743), - [anon_sym_AMP_GT_GT] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1743), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1743), - [anon_sym_GT_GT] = ACTIONS(1743), - [sym__special_character] = ACTIONS(1743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1743), - [sym_raw_string] = ACTIONS(1743), - [sym_variable_name] = ACTIONS(1743), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_RPAREN] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_GT_AMP] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1743), - [anon_sym_GT_LPAREN] = ACTIONS(1743), - [sym_ansii_c_string] = ACTIONS(1743), + [anon_sym_AMP_GT_GT] = ACTIONS(1690), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1690), + [anon_sym_GT_LPAREN] = ACTIONS(1690), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1690), + [sym__concat] = ACTIONS(1690), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1690), + [anon_sym_GT_GT] = ACTIONS(1690), + [sym__special_character] = ACTIONS(1690), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1690), + [sym_variable_name] = ACTIONS(1690), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_RPAREN] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_GT_AMP] = ACTIONS(1690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1690), + [anon_sym_LT_LPAREN] = ACTIONS(1690), + [sym_ansii_c_string] = ACTIONS(1690), }, [626] = { - [sym_word] = ACTIONS(1749), - [anon_sym_AMP_GT_GT] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1749), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1749), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1749), - [anon_sym_GT_GT] = ACTIONS(1749), - [sym__special_character] = ACTIONS(1749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1749), - [sym_raw_string] = ACTIONS(1749), - [sym_variable_name] = ACTIONS(1749), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1749), - [anon_sym_GT_AMP] = ACTIONS(1749), - [anon_sym_BQUOTE] = ACTIONS(1749), - [anon_sym_GT_LPAREN] = ACTIONS(1749), - [sym_ansii_c_string] = ACTIONS(1749), + [anon_sym_AMP_GT_GT] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_GT_LPAREN] = ACTIONS(1696), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1696), + [sym__concat] = ACTIONS(1696), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1696), + [anon_sym_GT_GT] = ACTIONS(1696), + [sym__special_character] = ACTIONS(1696), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1696), + [sym_variable_name] = ACTIONS(1696), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_GT_AMP] = ACTIONS(1696), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), + [anon_sym_LT_LPAREN] = ACTIONS(1696), + [sym_ansii_c_string] = ACTIONS(1696), }, [627] = { - [sym_word] = ACTIONS(1753), - [anon_sym_AMP_GT_GT] = ACTIONS(1753), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1753), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1753), - [anon_sym_GT_GT] = ACTIONS(1753), - [sym__special_character] = ACTIONS(1753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1753), - [sym_raw_string] = ACTIONS(1753), - [sym_variable_name] = ACTIONS(1753), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_RPAREN] = ACTIONS(1753), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1753), - [anon_sym_GT_AMP] = ACTIONS(1753), - [anon_sym_BQUOTE] = ACTIONS(1753), - [anon_sym_GT_LPAREN] = ACTIONS(1753), - [sym_ansii_c_string] = ACTIONS(1753), + [anon_sym_AMP_GT_GT] = ACTIONS(1700), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1700), + [anon_sym_GT_LPAREN] = ACTIONS(1700), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1700), + [sym__concat] = ACTIONS(1700), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1700), + [anon_sym_GT_GT] = ACTIONS(1700), + [sym__special_character] = ACTIONS(1700), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1700), + [sym_variable_name] = ACTIONS(1700), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1700), + [anon_sym_GT_AMP] = ACTIONS(1700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), + [anon_sym_LT_LPAREN] = ACTIONS(1700), + [sym_ansii_c_string] = ACTIONS(1700), }, [628] = { - [sym_word] = ACTIONS(1759), - [anon_sym_AMP_GT_GT] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1759), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1759), - [anon_sym_GT_GT] = ACTIONS(1759), - [sym__special_character] = ACTIONS(1759), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1759), - [sym_raw_string] = ACTIONS(1759), - [sym_variable_name] = ACTIONS(1759), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1759), - [anon_sym_GT_AMP] = ACTIONS(1759), - [anon_sym_BQUOTE] = ACTIONS(1759), - [anon_sym_GT_LPAREN] = ACTIONS(1759), - [sym_ansii_c_string] = ACTIONS(1759), + [anon_sym_AMP_GT_GT] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1706), + [anon_sym_GT_LPAREN] = ACTIONS(1706), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), + [sym__concat] = ACTIONS(1706), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1706), + [anon_sym_GT_GT] = ACTIONS(1706), + [sym__special_character] = ACTIONS(1706), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1706), + [sym_variable_name] = ACTIONS(1706), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_GT_AMP] = ACTIONS(1706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1706), + [anon_sym_LT_LPAREN] = ACTIONS(1706), + [sym_ansii_c_string] = ACTIONS(1706), }, [629] = { - [sym_word] = ACTIONS(1832), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_GT] = ACTIONS(1832), - [sym__special_character] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [sym_raw_string] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_ansii_c_string] = ACTIONS(1832), + [anon_sym_AMP_GT_GT] = ACTIONS(1821), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1821), + [anon_sym_GT_LPAREN] = ACTIONS(1821), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), + [sym__concat] = ACTIONS(1821), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1821), + [anon_sym_GT_GT] = ACTIONS(1821), + [sym__special_character] = ACTIONS(1821), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1821), + [sym_variable_name] = ACTIONS(1821), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_RPAREN] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_GT_AMP] = ACTIONS(1821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), + [anon_sym_LT_LPAREN] = ACTIONS(1821), + [sym_ansii_c_string] = ACTIONS(1821), }, [630] = { - [sym_word] = ACTIONS(1836), - [anon_sym_AMP_GT_GT] = ACTIONS(1836), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1836), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1836), - [sym__special_character] = ACTIONS(1836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1836), - [sym_raw_string] = ACTIONS(1836), - [sym_variable_name] = ACTIONS(1836), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_RPAREN] = ACTIONS(1836), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1836), - [anon_sym_GT_AMP] = ACTIONS(1836), - [anon_sym_BQUOTE] = ACTIONS(1836), - [anon_sym_GT_LPAREN] = ACTIONS(1836), - [sym_ansii_c_string] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1825), + [anon_sym_GT_LPAREN] = ACTIONS(1825), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1825), + [sym__concat] = ACTIONS(1825), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1825), + [anon_sym_GT_GT] = ACTIONS(1825), + [sym__special_character] = ACTIONS(1825), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1825), + [sym_variable_name] = ACTIONS(1825), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_RPAREN] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1825), + [anon_sym_GT_AMP] = ACTIONS(1825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1825), + [anon_sym_LT_LPAREN] = ACTIONS(1825), + [sym_ansii_c_string] = ACTIONS(1825), }, [631] = { - [sym_command_substitution] = STATE(550), - [aux_sym__literal_repeat1] = STATE(551), - [sym_string] = STATE(550), - [aux_sym_declaration_command_repeat1] = STATE(639), - [sym_process_substitution] = STATE(550), - [sym_simple_expansion] = STATE(550), + [sym_command_substitution] = STATE(549), + [aux_sym__literal_repeat1] = STATE(550), + [sym_string] = STATE(549), + [aux_sym_declaration_command_repeat1] = STATE(638), + [sym_process_substitution] = STATE(549), + [sym_simple_expansion] = STATE(549), [sym_subscript] = STATE(2482), - [sym_string_expansion] = STATE(550), - [sym_variable_assignment] = STATE(639), - [sym_concatenation] = STATE(639), - [sym_expansion] = STATE(550), - [sym_word] = ACTIONS(2378), - [anon_sym_AMP_GT_GT] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(2380), - [anon_sym_LT_LT] = ACTIONS(133), - [anon_sym_LT_LPAREN] = ACTIONS(2382), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(133), - [anon_sym_LT_AMP] = ACTIONS(133), - [anon_sym_GT_GT] = ACTIONS(133), - [sym__special_character] = ACTIONS(2384), - [anon_sym_LT_LT_DASH] = ACTIONS(133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2386), - [aux_sym__simple_variable_name_token1] = ACTIONS(2388), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2390), - [anon_sym_LF] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(133), - [sym_raw_string] = ACTIONS(2378), - [sym_variable_name] = ACTIONS(2392), - [sym_file_descriptor] = ACTIONS(147), - [anon_sym_AMP] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_AMP_GT] = ACTIONS(133), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_LT_LT_LT] = ACTIONS(133), - [anon_sym_GT_AMP] = ACTIONS(133), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_esac] = ACTIONS(133), - [anon_sym_GT_LPAREN] = ACTIONS(2382), - [sym_ansii_c_string] = ACTIONS(2378), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_SEMI_SEMI] = ACTIONS(133), - [anon_sym_PIPE_AMP] = ACTIONS(133), + [sym_string_expansion] = STATE(549), + [sym_variable_assignment] = STATE(638), + [sym_concatenation] = STATE(638), + [sym_expansion] = STATE(549), + [anon_sym_PIPE_AMP] = ACTIONS(129), + [anon_sym_AMP_GT_GT] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(2428), + [anon_sym_LT_LT] = ACTIONS(129), + [anon_sym_BQUOTE] = ACTIONS(2430), + [anon_sym_GT_LPAREN] = ACTIONS(2432), + [sym_number] = ACTIONS(2434), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [sym_word] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_AMP] = ACTIONS(129), + [anon_sym_GT_GT] = ACTIONS(129), + [sym__special_character] = ACTIONS(2438), + [anon_sym_LT_LT_DASH] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(129), + [sym_raw_string] = ACTIONS(2434), + [sym_variable_name] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_AMP_GT] = ACTIONS(129), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_LT_LT_LT] = ACTIONS(129), + [anon_sym_GT_AMP] = ACTIONS(129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2444), + [anon_sym_esac] = ACTIONS(129), + [aux_sym__simple_variable_name_token1] = ACTIONS(2446), + [sym_ansii_c_string] = ACTIONS(2434), + [anon_sym_LT_LPAREN] = ACTIONS(2432), + [anon_sym_AMP_AMP] = ACTIONS(129), + [anon_sym_SEMI_SEMI] = ACTIONS(129), + [anon_sym_AMP] = ACTIONS(129), }, [632] = { - [sym_command_substitution] = STATE(553), - [aux_sym__literal_repeat1] = STATE(554), - [sym_string] = STATE(553), - [aux_sym_unset_command_repeat1] = STATE(640), - [sym_process_substitution] = STATE(553), - [sym_simple_expansion] = STATE(553), - [sym_string_expansion] = STATE(553), - [sym_concatenation] = STATE(640), - [sym_expansion] = STATE(553), - [sym_word] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(2400), - [anon_sym_LT_LT] = ACTIONS(157), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(157), - [anon_sym_LT] = ACTIONS(157), - [anon_sym_LT_AMP] = ACTIONS(157), - [anon_sym_GT_GT] = ACTIONS(157), - [sym__special_character] = ACTIONS(2404), - [anon_sym_LT_LT_DASH] = ACTIONS(157), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2406), - [aux_sym__simple_variable_name_token1] = ACTIONS(2408), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2410), - [anon_sym_LF] = ACTIONS(171), - [anon_sym_SEMI] = ACTIONS(157), - [sym_raw_string] = ACTIONS(2398), - [sym_file_descriptor] = ACTIONS(171), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(157), - [anon_sym_AMP_GT] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2412), - [anon_sym_LT_LT_LT] = ACTIONS(157), - [anon_sym_GT_AMP] = ACTIONS(157), - [anon_sym_BQUOTE] = ACTIONS(2414), - [anon_sym_esac] = ACTIONS(157), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_ansii_c_string] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_SEMI_SEMI] = ACTIONS(157), - [anon_sym_PIPE_AMP] = ACTIONS(157), + [sym_command_substitution] = STATE(552), + [aux_sym__literal_repeat1] = STATE(553), + [sym_string] = STATE(552), + [aux_sym_unset_command_repeat1] = STATE(639), + [sym_process_substitution] = STATE(552), + [sym_simple_expansion] = STATE(552), + [sym_string_expansion] = STATE(552), + [sym_concatenation] = STATE(639), + [sym_expansion] = STATE(552), + [anon_sym_PIPE_AMP] = ACTIONS(153), + [anon_sym_AMP_GT_GT] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_LT_LT] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(2450), + [anon_sym_GT_LPAREN] = ACTIONS(2452), + [sym_number] = ACTIONS(2454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [anon_sym_PIPE_PIPE] = ACTIONS(153), + [anon_sym_PIPE] = ACTIONS(153), + [sym_word] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_AMP] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(153), + [sym__special_character] = ACTIONS(2458), + [anon_sym_LT_LT_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(167), + [anon_sym_SEMI] = ACTIONS(153), + [sym_raw_string] = ACTIONS(2454), + [sym_file_descriptor] = ACTIONS(167), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_AMP_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_LT_LT_LT] = ACTIONS(153), + [anon_sym_GT_AMP] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2462), + [anon_sym_esac] = ACTIONS(153), + [aux_sym__simple_variable_name_token1] = ACTIONS(2464), + [sym_ansii_c_string] = ACTIONS(2454), + [anon_sym_LT_LPAREN] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(153), + [anon_sym_SEMI_SEMI] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(153), }, [633] = { - [aux_sym_concatenation_repeat1] = STATE(638), - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(643), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [634] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LF] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(1960), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_AMP_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2002), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(2006), + [anon_sym_PIPE_AMP] = ACTIONS(491), }, [635] = { [sym_heredoc_redirect] = STATE(2622), [aux_sym_redirected_statement_repeat1] = STATE(2622), [sym_herestring_redirect] = STATE(2622), [sym_file_redirect] = STATE(2622), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2206), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(2212), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_esac] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(2258), + [anon_sym_PIPE] = ACTIONS(2248), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2254), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(2260), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_esac] = ACTIONS(2006), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_SEMI_SEMI] = ACTIONS(2006), + [anon_sym_PIPE_AMP] = ACTIONS(2248), }, [636] = { [aux_sym__literal_repeat1] = STATE(539), @@ -25355,8 +25886,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(652), [sym_subscript] = STATE(2473), [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), [aux_sym__statements_repeat1] = STATE(101), [sym_redirected_statement] = STATE(651), [sym_for_statement] = STATE(651), @@ -25365,8 +25896,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(651), [sym_unset_command] = STATE(651), [sym_file_redirect] = STATE(544), - [sym_string] = STATE(537), - [sym_process_substitution] = STATE(537), + [sym_string] = STATE(535), + [sym_process_substitution] = STATE(535), [aux_sym_command_repeat1] = STATE(544), [sym_c_style_for_statement] = STATE(651), [sym_while_statement] = STATE(651), @@ -25375,444 +25906,499 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(651), [sym_command] = STATE(651), [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), - [sym_word] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(1675), - [anon_sym_typeset] = ACTIONS(1675), - [anon_sym_unsetenv] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(535), + [sym_string_expansion] = STATE(535), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1730), + [anon_sym_typeset] = ACTIONS(1730), + [anon_sym_unsetenv] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [sym_number] = ACTIONS(1740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(1675), - [sym__special_character] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1730), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(1746), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1675), - [sym_variable_name] = ACTIONS(1691), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_unset] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_raw_string] = ACTIONS(1748), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1730), + [sym_variable_name] = ACTIONS(1752), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(1730), + [anon_sym_unset] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [637] = { - [sym_command_substitution] = STATE(572), + [sym_command_substitution] = STATE(573), [aux_sym__literal_repeat1] = STATE(574), - [sym_string] = STATE(572), - [sym_process_substitution] = STATE(572), - [sym_simple_expansion] = STATE(572), - [sym_string_expansion] = STATE(572), + [sym_string] = STATE(573), + [sym_process_substitution] = STATE(573), + [sym_simple_expansion] = STATE(573), + [sym_string_expansion] = STATE(573), [aux_sym_command_repeat2] = STATE(654), [sym_concatenation] = STATE(654), - [sym_expansion] = STATE(572), - [sym_word] = ACTIONS(2418), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_LT_LPAREN] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_PIPE] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_EQ_TILDE] = ACTIONS(2422), - [sym__special_character] = ACTIONS(1683), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2426), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_SEMI] = ACTIONS(335), - [sym_raw_string] = ACTIONS(2418), - [sym_file_descriptor] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(335), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2428), - [anon_sym_LT_LT_LT] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_BQUOTE] = ACTIONS(2430), - [anon_sym_esac] = ACTIONS(335), - [anon_sym_GT_LPAREN] = ACTIONS(2420), - [sym_ansii_c_string] = ACTIONS(2418), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_SEMI_SEMI] = ACTIONS(335), - [anon_sym_PIPE_AMP] = ACTIONS(335), + [sym_expansion] = STATE(573), + [anon_sym_PIPE_AMP] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(341), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_LT_LT] = ACTIONS(341), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_GT_LPAREN] = ACTIONS(2470), + [sym_number] = ACTIONS(2472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(341), + [sym_word] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_AMP] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(341), + [anon_sym_EQ_TILDE] = ACTIONS(2476), + [sym__special_character] = ACTIONS(1746), + [anon_sym_LT_LT_DASH] = ACTIONS(341), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(341), + [sym_raw_string] = ACTIONS(2472), + [sym_file_descriptor] = ACTIONS(353), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_LT_LT_LT] = ACTIONS(341), + [anon_sym_GT_AMP] = ACTIONS(341), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2480), + [anon_sym_esac] = ACTIONS(341), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [sym_ansii_c_string] = ACTIONS(2472), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_SEMI_SEMI] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(341), }, [638] = { - [aux_sym_concatenation_repeat1] = STATE(657), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [aux_sym__simple_variable_name_token1] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [sym_variable_name] = ACTIONS(359), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [ts_builtin_sym_end] = ACTIONS(359), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [sym_command_substitution] = STATE(549), + [aux_sym__literal_repeat1] = STATE(550), + [sym_string] = STATE(549), + [aux_sym_declaration_command_repeat1] = STATE(576), + [sym_process_substitution] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_subscript] = STATE(2482), + [sym_string_expansion] = STATE(549), + [sym_variable_assignment] = STATE(576), + [sym_concatenation] = STATE(576), + [sym_expansion] = STATE(549), + [anon_sym_PIPE_AMP] = ACTIONS(385), + [anon_sym_AMP_GT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(2428), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(2430), + [anon_sym_GT_LPAREN] = ACTIONS(2432), + [sym_number] = ACTIONS(2434), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [sym_word] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [sym__special_character] = ACTIONS(2438), + [anon_sym_LT_LT_DASH] = ACTIONS(385), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(385), + [sym_raw_string] = ACTIONS(2434), + [sym_variable_name] = ACTIONS(2440), + [sym_file_descriptor] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_LT_LT_LT] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2444), + [anon_sym_esac] = ACTIONS(385), + [aux_sym__simple_variable_name_token1] = ACTIONS(2482), + [sym_ansii_c_string] = ACTIONS(2434), + [anon_sym_LT_LPAREN] = ACTIONS(2432), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_SEMI_SEMI] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(385), }, [639] = { - [sym_command_substitution] = STATE(550), - [aux_sym__literal_repeat1] = STATE(551), - [sym_string] = STATE(550), - [aux_sym_declaration_command_repeat1] = STATE(579), - [sym_process_substitution] = STATE(550), - [sym_simple_expansion] = STATE(550), - [sym_subscript] = STATE(2482), - [sym_string_expansion] = STATE(550), - [sym_variable_assignment] = STATE(579), - [sym_concatenation] = STATE(579), - [sym_expansion] = STATE(550), - [sym_word] = ACTIONS(2378), - [anon_sym_AMP_GT_GT] = ACTIONS(387), - [anon_sym_DOLLAR] = ACTIONS(2380), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_LT_LPAREN] = ACTIONS(2382), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_LT_AMP] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [sym__special_character] = ACTIONS(2384), - [anon_sym_LT_LT_DASH] = ACTIONS(387), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2386), - [aux_sym__simple_variable_name_token1] = ACTIONS(2434), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2390), - [anon_sym_LF] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(387), - [sym_raw_string] = ACTIONS(2378), - [sym_variable_name] = ACTIONS(2392), - [sym_file_descriptor] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_AMP_GT] = ACTIONS(387), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_LT_LT_LT] = ACTIONS(387), - [anon_sym_GT_AMP] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_esac] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(2382), - [sym_ansii_c_string] = ACTIONS(2378), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_SEMI_SEMI] = ACTIONS(387), - [anon_sym_PIPE_AMP] = ACTIONS(387), + [sym_command_substitution] = STATE(552), + [aux_sym__literal_repeat1] = STATE(553), + [sym_string] = STATE(552), + [aux_sym_unset_command_repeat1] = STATE(577), + [sym_process_substitution] = STATE(552), + [sym_simple_expansion] = STATE(552), + [sym_string_expansion] = STATE(552), + [sym_concatenation] = STATE(577), + [sym_expansion] = STATE(552), + [anon_sym_PIPE_AMP] = ACTIONS(403), + [anon_sym_AMP_GT_GT] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(2450), + [anon_sym_GT_LPAREN] = ACTIONS(2452), + [sym_number] = ACTIONS(2454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [sym_word] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_LT_AMP] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [sym__special_character] = ACTIONS(2458), + [anon_sym_LT_LT_DASH] = ACTIONS(403), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(403), + [sym_raw_string] = ACTIONS(2454), + [sym_file_descriptor] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_AMP_GT] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_LT_LT_LT] = ACTIONS(403), + [anon_sym_GT_AMP] = ACTIONS(403), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2462), + [anon_sym_esac] = ACTIONS(403), + [aux_sym__simple_variable_name_token1] = ACTIONS(2484), + [sym_ansii_c_string] = ACTIONS(2454), + [anon_sym_LT_LPAREN] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), }, [640] = { - [sym_command_substitution] = STATE(553), - [aux_sym__literal_repeat1] = STATE(554), - [sym_string] = STATE(553), - [aux_sym_unset_command_repeat1] = STATE(580), - [sym_process_substitution] = STATE(553), - [sym_simple_expansion] = STATE(553), - [sym_string_expansion] = STATE(553), - [sym_concatenation] = STATE(580), - [sym_expansion] = STATE(553), - [sym_word] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(405), - [anon_sym_DOLLAR] = ACTIONS(2400), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(405), - [anon_sym_PIPE] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_LT_AMP] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [sym__special_character] = ACTIONS(2404), - [anon_sym_LT_LT_DASH] = ACTIONS(405), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2406), - [aux_sym__simple_variable_name_token1] = ACTIONS(2436), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2410), - [anon_sym_LF] = ACTIONS(409), - [anon_sym_SEMI] = ACTIONS(405), - [sym_raw_string] = ACTIONS(2398), - [sym_file_descriptor] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_AMP_GT] = ACTIONS(405), - [anon_sym_DQUOTE] = ACTIONS(2412), - [anon_sym_LT_LT_LT] = ACTIONS(405), - [anon_sym_GT_AMP] = ACTIONS(405), - [anon_sym_BQUOTE] = ACTIONS(2414), - [anon_sym_esac] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_ansii_c_string] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(405), - [anon_sym_SEMI_SEMI] = ACTIONS(405), - [anon_sym_PIPE_AMP] = ACTIONS(405), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_variable_name] = ACTIONS(411), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [ts_builtin_sym_end] = ACTIONS(411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [641] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [aux_sym__simple_variable_name_token1] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [sym_variable_name] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [ts_builtin_sym_end] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_variable_name] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [ts_builtin_sym_end] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [aux_sym__simple_variable_name_token1] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [642] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [aux_sym__simple_variable_name_token1] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_variable_name] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [ts_builtin_sym_end] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [sym_variable_name] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [ts_builtin_sym_end] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [aux_sym__simple_variable_name_token1] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [643] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [aux_sym__simple_variable_name_token1] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [sym_variable_name] = ACTIONS(421), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [ts_builtin_sym_end] = ACTIONS(421), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(659), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [sym_variable_name] = ACTIONS(433), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [ts_builtin_sym_end] = ACTIONS(433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [aux_sym__simple_variable_name_token1] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [644] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [aux_sym__simple_variable_name_token1] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [sym_variable_name] = ACTIONS(581), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [ts_builtin_sym_end] = ACTIONS(581), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_variable_name] = ACTIONS(597), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [ts_builtin_sym_end] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [aux_sym__simple_variable_name_token1] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [645] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [646] = { [aux_sym__literal_repeat1] = STATE(646), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [sym__special_character] = ACTIONS(2438), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [aux_sym__simple_variable_name_token1] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [sym_variable_name] = ACTIONS(634), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [ts_builtin_sym_end] = ACTIONS(634), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [sym__special_character] = ACTIONS(2488), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [sym_variable_name] = ACTIONS(650), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [ts_builtin_sym_end] = ACTIONS(650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [aux_sym__simple_variable_name_token1] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [647] = { + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_esac] = ACTIONS(2049), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_SEMI_SEMI] = ACTIONS(656), + }, + [648] = { [aux_sym__literal_repeat1] = STATE(539), [sym_if_statement] = STATE(2623), [sym_function_definition] = STATE(2623), @@ -25821,8 +26407,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(667), [sym_subscript] = STATE(2473), [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), [sym_redirected_statement] = STATE(2623), [sym_for_statement] = STATE(2623), [sym_compound_statement] = STATE(2623), @@ -25830,8 +26416,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2623), [sym_unset_command] = STATE(2623), [sym_file_redirect] = STATE(544), - [sym_string] = STATE(537), - [sym_process_substitution] = STATE(537), + [sym_string] = STATE(535), + [sym_process_substitution] = STATE(535), [aux_sym_command_repeat1] = STATE(544), [sym_c_style_for_statement] = STATE(2623), [sym_while_statement] = STATE(2623), @@ -25840,136 +26426,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(2623), [sym_command] = STATE(2623), [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), - [sym_word] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(1675), - [anon_sym_typeset] = ACTIONS(1675), - [anon_sym_unsetenv] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(535), + [sym_string_expansion] = STATE(535), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1730), + [anon_sym_typeset] = ACTIONS(1730), + [anon_sym_unsetenv] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [sym_number] = ACTIONS(1740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(1675), - [sym__special_character] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1730), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(1746), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1675), - [sym_variable_name] = ACTIONS(1691), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_unset] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [648] = { - [sym_heredoc_body] = STATE(598), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(870), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_esac] = ACTIONS(2007), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(644), + [sym_raw_string] = ACTIONS(1748), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1730), + [sym_variable_name] = ACTIONS(1752), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(1730), + [anon_sym_unset] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [649] = { - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_esac] = ACTIONS(2007), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(644), + [sym_heredoc_body] = STATE(598), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(967), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_esac] = ACTIONS(2049), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_SEMI_SEMI] = ACTIONS(656), }, [650] = { [aux_sym__literal_repeat1] = STATE(539), @@ -25980,8 +26525,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(670), [sym_subscript] = STATE(2473), [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(537), - [sym_command_substitution] = STATE(537), + [sym_expansion] = STATE(535), + [sym_command_substitution] = STATE(535), [sym_redirected_statement] = STATE(669), [sym_for_statement] = STATE(669), [sym_compound_statement] = STATE(669), @@ -25989,8 +26534,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(669), [sym_unset_command] = STATE(669), [sym_file_redirect] = STATE(544), - [sym_string] = STATE(537), - [sym_process_substitution] = STATE(537), + [sym_string] = STATE(535), + [sym_process_substitution] = STATE(535), [aux_sym_command_repeat1] = STATE(544), [sym_c_style_for_statement] = STATE(669), [sym_while_statement] = STATE(669), @@ -25999,19926 +26544,20384 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(669), [sym_command] = STATE(669), [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(537), - [sym_string_expansion] = STATE(537), - [sym_word] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(1675), - [anon_sym_typeset] = ACTIONS(1675), - [anon_sym_unsetenv] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(535), + [sym_string_expansion] = STATE(535), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1730), + [anon_sym_typeset] = ACTIONS(1730), + [anon_sym_unsetenv] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [sym_number] = ACTIONS(1740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(1675), - [sym__special_character] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1730), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(1746), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1675), - [sym_variable_name] = ACTIONS(1691), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_unset] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_raw_string] = ACTIONS(1748), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1730), + [sym_variable_name] = ACTIONS(1752), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(1730), + [anon_sym_unset] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [651] = { [sym_heredoc_redirect] = STATE(2622), [aux_sym_redirected_statement_repeat1] = STATE(2622), [sym_herestring_redirect] = STATE(2622), [sym_file_redirect] = STATE(2622), - [anon_sym_PIPE_AMP] = ACTIONS(2214), - [anon_sym_AMP_GT_GT] = ACTIONS(2202), - [anon_sym_LF] = ACTIONS(2441), - [anon_sym_SEMI] = ACTIONS(2443), - [sym_file_descriptor] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_AMP_GT] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_LT_LT_LT] = ACTIONS(2212), - [anon_sym_GT_AMP] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_esac] = ACTIONS(2007), - [anon_sym_LT_AMP] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_SEMI_SEMI] = ACTIONS(2007), - [anon_sym_LT_LT_DASH] = ACTIONS(441), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_AMP_GT_GT] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2493), + [sym_file_descriptor] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_AMP_GT] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2258), + [anon_sym_LT_LT_LT] = ACTIONS(2260), + [anon_sym_GT_AMP] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_esac] = ACTIONS(2049), + [anon_sym_LT_AMP] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_SEMI_SEMI] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2493), }, [652] = { [sym_heredoc_redirect] = STATE(2622), [aux_sym_redirected_statement_repeat1] = STATE(2622), [sym_herestring_redirect] = STATE(2622), [sym_file_redirect] = STATE(2622), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(2441), - [anon_sym_SEMI] = ACTIONS(2443), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(2212), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_esac] = ACTIONS(2007), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_SEMI_SEMI] = ACTIONS(2007), - [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(2258), + [anon_sym_PIPE] = ACTIONS(2248), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2493), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(2260), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_esac] = ACTIONS(2049), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(2258), + [anon_sym_SEMI_SEMI] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2493), }, [653] = { - [sym_command_substitution] = STATE(572), + [sym_command_substitution] = STATE(573), [aux_sym__literal_repeat1] = STATE(574), - [sym_string] = STATE(572), - [sym_process_substitution] = STATE(572), - [sym_simple_expansion] = STATE(572), - [sym_string_expansion] = STATE(572), + [sym_string] = STATE(573), + [sym_process_substitution] = STATE(573), + [sym_simple_expansion] = STATE(573), + [sym_string_expansion] = STATE(573), [aux_sym_command_repeat2] = STATE(673), [sym_concatenation] = STATE(673), - [sym_expansion] = STATE(572), - [sym_word] = ACTIONS(2418), - [anon_sym_AMP_GT_GT] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LT] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(750), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_AMP] = ACTIONS(750), - [anon_sym_GT_GT] = ACTIONS(750), - [anon_sym_EQ_TILDE] = ACTIONS(2422), - [sym__special_character] = ACTIONS(1683), - [anon_sym_LT_LT_DASH] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2426), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(750), - [sym_raw_string] = ACTIONS(2418), - [sym_file_descriptor] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_AMP_GT] = ACTIONS(750), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2428), - [anon_sym_LT_LT_LT] = ACTIONS(750), - [anon_sym_GT_AMP] = ACTIONS(750), - [anon_sym_BQUOTE] = ACTIONS(2430), - [anon_sym_esac] = ACTIONS(750), - [anon_sym_GT_LPAREN] = ACTIONS(2420), - [sym_ansii_c_string] = ACTIONS(2418), - [anon_sym_AMP_AMP] = ACTIONS(750), - [anon_sym_SEMI_SEMI] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(750), + [sym_expansion] = STATE(573), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_GT_LPAREN] = ACTIONS(2470), + [sym_number] = ACTIONS(2472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [sym_word] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(2476), + [sym__special_character] = ACTIONS(1746), + [anon_sym_LT_LT_DASH] = ACTIONS(771), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [sym_raw_string] = ACTIONS(2472), + [sym_file_descriptor] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_LT_LT_LT] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2480), + [anon_sym_esac] = ACTIONS(771), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [sym_ansii_c_string] = ACTIONS(2472), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_SEMI_SEMI] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), }, [654] = { - [sym_command_substitution] = STATE(572), + [sym_command_substitution] = STATE(573), [aux_sym__literal_repeat1] = STATE(574), - [sym_string] = STATE(572), - [sym_process_substitution] = STATE(572), - [sym_simple_expansion] = STATE(572), - [sym_string_expansion] = STATE(572), + [sym_string] = STATE(573), + [sym_process_substitution] = STATE(573), + [sym_simple_expansion] = STATE(573), + [sym_string_expansion] = STATE(573), [aux_sym_command_repeat2] = STATE(607), [sym_concatenation] = STATE(607), - [sym_expansion] = STATE(572), - [sym_word] = ACTIONS(2418), - [anon_sym_AMP_GT_GT] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LT] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(750), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_AMP] = ACTIONS(750), - [anon_sym_GT_GT] = ACTIONS(750), - [anon_sym_EQ_TILDE] = ACTIONS(2422), - [sym__special_character] = ACTIONS(1683), - [anon_sym_LT_LT_DASH] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2426), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(750), - [sym_raw_string] = ACTIONS(2418), - [sym_file_descriptor] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(750), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_AMP_GT] = ACTIONS(750), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2428), - [anon_sym_LT_LT_LT] = ACTIONS(750), - [anon_sym_GT_AMP] = ACTIONS(750), - [anon_sym_BQUOTE] = ACTIONS(2430), - [anon_sym_esac] = ACTIONS(750), - [anon_sym_GT_LPAREN] = ACTIONS(2420), - [sym_ansii_c_string] = ACTIONS(2418), - [anon_sym_AMP_AMP] = ACTIONS(750), - [anon_sym_SEMI_SEMI] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(750), + [sym_expansion] = STATE(573), + [anon_sym_PIPE_AMP] = ACTIONS(771), + [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_GT_LPAREN] = ACTIONS(2470), + [sym_number] = ACTIONS(2472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [sym_word] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_AMP] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_EQ_TILDE] = ACTIONS(2476), + [sym__special_character] = ACTIONS(1746), + [anon_sym_LT_LT_DASH] = ACTIONS(771), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [sym_raw_string] = ACTIONS(2472), + [sym_file_descriptor] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_AMP_GT] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_LT_LT_LT] = ACTIONS(771), + [anon_sym_GT_AMP] = ACTIONS(771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2480), + [anon_sym_esac] = ACTIONS(771), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [sym_ansii_c_string] = ACTIONS(2472), + [anon_sym_AMP_AMP] = ACTIONS(771), + [anon_sym_SEMI_SEMI] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), }, [655] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [ts_builtin_sym_end] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), - }, - [656] = { - [sym_command_substitution] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_string] = STATE(655), - [sym_process_substitution] = STATE(655), - [sym_expansion] = STATE(655), - [sym_word] = ACTIONS(2445), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2451), - [sym_raw_string] = ACTIONS(2445), - [anon_sym_BQUOTE] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_GT_LPAREN] = ACTIONS(2457), - [sym_ansii_c_string] = ACTIONS(2445), - [anon_sym_LT_LPAREN] = ACTIONS(2457), - [sym__special_character] = ACTIONS(2445), - [sym_comment] = ACTIONS(19), - }, - [657] = { - [aux_sym_concatenation_repeat1] = STATE(657), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [ts_builtin_sym_end] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), - }, - [658] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [aux_sym__simple_variable_name_token1] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [sym_variable_name] = ACTIONS(862), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [ts_builtin_sym_end] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), - }, - [659] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [aux_sym__simple_variable_name_token1] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [sym_variable_name] = ACTIONS(922), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), - }, - [660] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [aux_sym__simple_variable_name_token1] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [sym_variable_name] = ACTIONS(972), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [ts_builtin_sym_end] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), - }, + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), + }, + [656] = { + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [sym_variable_name] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [ts_builtin_sym_end] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [aux_sym__simple_variable_name_token1] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), + }, + [657] = { + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), + }, + [658] = { + [sym_command_substitution] = STATE(657), + [sym_simple_expansion] = STATE(657), + [sym_string_expansion] = STATE(657), + [sym_string] = STATE(657), + [sym_process_substitution] = STATE(657), + [sym_expansion] = STATE(657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2499), + [sym_word] = ACTIONS(2501), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2503), + [anon_sym_DOLLAR] = ACTIONS(2505), + [anon_sym_LT_LPAREN] = ACTIONS(2507), + [sym_ansii_c_string] = ACTIONS(2499), + [anon_sym_BQUOTE] = ACTIONS(2509), + [anon_sym_GT_LPAREN] = ACTIONS(2507), + [sym__special_character] = ACTIONS(2499), + [sym_number] = ACTIONS(2501), + }, + [659] = { + [aux_sym_concatenation_repeat1] = STATE(659), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), + }, + [660] = { + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [sym_variable_name] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [ts_builtin_sym_end] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [aux_sym__simple_variable_name_token1] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), + }, [661] = { - [aux_sym_concatenation_repeat1] = STATE(546), - [sym_word] = ACTIONS(986), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), - [anon_sym_AMP_GT_GT] = ACTIONS(986), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(986), - [sym_raw_string] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(982), - [sym_file_descriptor] = ACTIONS(986), - [sym_variable_name] = ACTIONS(986), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(986), - [anon_sym_AMP_GT] = ACTIONS(982), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__concat] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(986), - [anon_sym_GT_GT] = ACTIONS(986), - [sym_ansii_c_string] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(986), - [anon_sym_GT_LPAREN] = ACTIONS(986), - [sym__special_character] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [sym_variable_name] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [ts_builtin_sym_end] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [aux_sym__simple_variable_name_token1] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [662] = { - [sym_word] = ACTIONS(986), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), - [anon_sym_AMP_GT_GT] = ACTIONS(986), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(986), - [sym_raw_string] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(982), - [sym_file_descriptor] = ACTIONS(986), - [sym_variable_name] = ACTIONS(986), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(986), - [anon_sym_AMP_GT] = ACTIONS(982), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(986), - [anon_sym_GT_AMP] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(986), - [anon_sym_GT_GT] = ACTIONS(986), - [sym_ansii_c_string] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(986), - [anon_sym_GT_LPAREN] = ACTIONS(986), - [sym__special_character] = ACTIONS(986), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), }, [663] = { - [aux_sym__literal_repeat1] = STATE(564), - [sym_word] = ACTIONS(1010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1010), - [anon_sym_AMP_GT_GT] = ACTIONS(1010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1010), - [sym_raw_string] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1006), - [sym_file_descriptor] = ACTIONS(1010), - [sym_variable_name] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_LT_LPAREN] = ACTIONS(1010), - [anon_sym_AMP_GT] = ACTIONS(1006), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(1010), - [anon_sym_GT_AMP] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_AMP] = ACTIONS(1010), - [anon_sym_GT_GT] = ACTIONS(1010), - [sym_ansii_c_string] = ACTIONS(1010), - [anon_sym_BQUOTE] = ACTIONS(1010), - [anon_sym_GT_LPAREN] = ACTIONS(1010), - [sym__special_character] = ACTIONS(373), + [aux_sym_concatenation_repeat1] = STATE(558), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__concat] = ACTIONS(365), + [anon_sym_GT_AMP] = ACTIONS(1033), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), }, [664] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [aux_sym__literal_repeat1] = STATE(564), + [anon_sym_AMP_GT_GT] = ACTIONS(1041), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1037), + [sym_file_descriptor] = ACTIONS(1041), + [sym_variable_name] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1041), + [anon_sym_AMP_GT] = ACTIONS(1037), + [sym_number] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [anon_sym_GT_AMP] = ACTIONS(1041), + [sym_word] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [sym_ansii_c_string] = ACTIONS(1041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1041), + [anon_sym_LT_LPAREN] = ACTIONS(1041), + [sym__special_character] = ACTIONS(371), }, [665] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [aux_sym__simple_variable_name_token1] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [sym_variable_name] = ACTIONS(1038), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [ts_builtin_sym_end] = ACTIONS(1038), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [sym_variable_name] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [ts_builtin_sym_end] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [aux_sym__simple_variable_name_token1] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [666] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [667] = { [sym_heredoc_redirect] = STATE(2622), [aux_sym_redirected_statement_repeat1] = STATE(2622), [sym_herestring_redirect] = STATE(2622), [sym_file_redirect] = STATE(2622), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_GT] = ACTIONS(1093), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_esac] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1122), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_LT_AMP] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1122), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_AMP_GT] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_GT_AMP] = ACTIONS(1122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_esac] = ACTIONS(1122), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_PIPE_AMP] = ACTIONS(1122), }, [668] = { - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_LF] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_SEMI_SEMI] = ACTIONS(2083), [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_SEMI_SEMI] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2133), }, [669] = { [sym_heredoc_redirect] = STATE(2622), [aux_sym_redirected_statement_repeat1] = STATE(2622), [sym_herestring_redirect] = STATE(2622), [sym_file_redirect] = STATE(2622), - [anon_sym_LT_LT_DASH] = ACTIONS(1123), - [anon_sym_AMP_GT_GT] = ACTIONS(1123), - [anon_sym_LF] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(1123), - [sym_file_descriptor] = ACTIONS(1125), - [anon_sym_AMP_GT] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_LT_LT_LT] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_GT_AMP] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_esac] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [anon_sym_LT_AMP] = ACTIONS(1123), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_SEMI_SEMI] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_esac] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(2248), }, [670] = { [sym_heredoc_redirect] = STATE(2622), [aux_sym_redirected_statement_repeat1] = STATE(2622), [sym_herestring_redirect] = STATE(2622), [sym_file_redirect] = STATE(2622), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1123), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(1123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1123), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(1123), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_esac] = ACTIONS(1123), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(1123), - [anon_sym_SEMI_SEMI] = ACTIONS(1123), - [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(2248), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_esac] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(2248), }, [671] = { - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_esac] = ACTIONS(2083), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_esac] = ACTIONS(2129), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_SEMI_SEMI] = ACTIONS(1142), }, [672] = { [sym_heredoc_body] = STATE(618), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(870), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_esac] = ACTIONS(2083), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(967), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_esac] = ACTIONS(2129), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_SEMI_SEMI] = ACTIONS(1142), }, [673] = { - [sym_command_substitution] = STATE(572), + [sym_command_substitution] = STATE(573), [aux_sym__literal_repeat1] = STATE(574), - [sym_string] = STATE(572), - [sym_process_substitution] = STATE(572), - [sym_simple_expansion] = STATE(572), - [sym_string_expansion] = STATE(572), + [sym_string] = STATE(573), + [sym_process_substitution] = STATE(573), + [sym_simple_expansion] = STATE(573), + [sym_string_expansion] = STATE(573), [aux_sym_command_repeat2] = STATE(607), [sym_concatenation] = STATE(607), - [sym_expansion] = STATE(572), - [sym_word] = ACTIONS(2418), - [anon_sym_AMP_GT_GT] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_LT_LT] = ACTIONS(1155), - [anon_sym_LT_LPAREN] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [anon_sym_PIPE] = ACTIONS(1155), - [anon_sym_LT] = ACTIONS(1155), - [anon_sym_LT_AMP] = ACTIONS(1155), - [anon_sym_GT_GT] = ACTIONS(1155), - [anon_sym_EQ_TILDE] = ACTIONS(2422), - [sym__special_character] = ACTIONS(1683), - [anon_sym_LT_LT_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2426), - [anon_sym_LF] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1155), - [sym_raw_string] = ACTIONS(2418), - [sym_file_descriptor] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_GT] = ACTIONS(1155), - [anon_sym_AMP_GT] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2428), - [anon_sym_LT_LT_LT] = ACTIONS(1155), - [anon_sym_GT_AMP] = ACTIONS(1155), - [anon_sym_BQUOTE] = ACTIONS(2430), - [anon_sym_esac] = ACTIONS(1155), - [anon_sym_GT_LPAREN] = ACTIONS(2420), - [sym_ansii_c_string] = ACTIONS(2418), - [anon_sym_AMP_AMP] = ACTIONS(1155), - [anon_sym_SEMI_SEMI] = ACTIONS(1155), - [anon_sym_PIPE_AMP] = ACTIONS(1155), + [sym_expansion] = STATE(573), + [anon_sym_PIPE_AMP] = ACTIONS(1184), + [anon_sym_AMP_GT_GT] = ACTIONS(1184), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_LT_LT] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_GT_LPAREN] = ACTIONS(2470), + [sym_number] = ACTIONS(2472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [sym_word] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_LT_AMP] = ACTIONS(1184), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_EQ_TILDE] = ACTIONS(2476), + [sym__special_character] = ACTIONS(1746), + [anon_sym_LT_LT_DASH] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(2472), + [sym_file_descriptor] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1184), + [anon_sym_AMP_GT] = ACTIONS(1184), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_LT_LT_LT] = ACTIONS(1184), + [anon_sym_GT_AMP] = ACTIONS(1184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2480), + [anon_sym_esac] = ACTIONS(1184), + [anon_sym_LT_LPAREN] = ACTIONS(2470), + [sym_ansii_c_string] = ACTIONS(2472), + [anon_sym_AMP_AMP] = ACTIONS(1184), + [anon_sym_SEMI_SEMI] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), }, [674] = { - [sym_string] = STATE(643), - [sym_word] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2462), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2462), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2462), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2464), - [sym_variable_name] = ACTIONS(1202), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(151), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [ts_builtin_sym_end] = ACTIONS(1202), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(642), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym__] = ACTIONS(2514), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2514), + [sym__special_character] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [sym_raw_string] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2516), + [sym_variable_name] = ACTIONS(1227), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2514), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(147), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [ts_builtin_sym_end] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2514), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [sym_ansii_c_string] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [675] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [aux_sym__simple_variable_name_token1] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_variable_name] = ACTIONS(1254), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_variable_name] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [ts_builtin_sym_end] = ACTIONS(1233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [aux_sym__simple_variable_name_token1] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [676] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [aux_sym__simple_variable_name_token1] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [sym_variable_name] = ACTIONS(1303), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [ts_builtin_sym_end] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_variable_name] = ACTIONS(1292), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [aux_sym__simple_variable_name_token1] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [677] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [aux_sym__simple_variable_name_token1] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [sym_variable_name] = ACTIONS(1321), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [ts_builtin_sym_end] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_variable_name] = ACTIONS(1302), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [aux_sym__simple_variable_name_token1] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [678] = { - [sym_word] = ACTIONS(1337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1337), - [anon_sym_AMP_GT_GT] = ACTIONS(1337), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1337), - [sym_raw_string] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1335), - [sym_file_descriptor] = ACTIONS(1337), - [sym_variable_name] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_LT_LPAREN] = ACTIONS(1337), - [anon_sym_AMP_GT] = ACTIONS(1335), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_GT_AMP] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_LT_AMP] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [sym_ansii_c_string] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_GT_LPAREN] = ACTIONS(1337), - [sym__special_character] = ACTIONS(1337), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1366), + [sym_file_descriptor] = ACTIONS(1368), + [sym_variable_name] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1366), + [sym_number] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [sym_word] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [sym_ansii_c_string] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), }, [679] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [aux_sym__simple_variable_name_token1] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [sym_variable_name] = ACTIONS(1367), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [ts_builtin_sym_end] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [sym_variable_name] = ACTIONS(1398), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [aux_sym__simple_variable_name_token1] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [680] = { - [anon_sym_LPAREN] = ACTIONS(1415), - [sym_word] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1417), - [anon_sym_local] = ACTIONS(1415), - [anon_sym_typeset] = ACTIONS(1415), - [anon_sym_unsetenv] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_LT_LPAREN] = ACTIONS(1417), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_LT_AMP] = ACTIONS(1417), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1415), - [sym__special_character] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1417), - [sym_raw_string] = ACTIONS(1417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1417), - [sym_file_descriptor] = ACTIONS(1417), - [sym_variable_name] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_readonly] = ACTIONS(1415), - [anon_sym_unset] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_GT_AMP] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_esac] = ACTIONS(2150), - [anon_sym_GT_LPAREN] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [sym_ansii_c_string] = ACTIONS(1417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), - [anon_sym_SEMI_SEMI] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_AMP_GT_GT] = ACTIONS(1446), + [anon_sym_local] = ACTIONS(1444), + [anon_sym_typeset] = ACTIONS(1444), + [anon_sym_unsetenv] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_GT_LPAREN] = ACTIONS(1446), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_LT_AMP] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1444), + [sym_word] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), + [sym_raw_string] = ACTIONS(1446), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [sym_variable_name] = ACTIONS(1446), + [sym_file_descriptor] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_AMP_GT] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_GT_AMP] = ACTIONS(1446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_esac] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [sym_ansii_c_string] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym_SEMI_SEMI] = ACTIONS(1448), }, [681] = { - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_LF] = ACTIONS(2154), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_SEMI_SEMI] = ACTIONS(2150), [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_SEMI_SEMI] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2200), }, [682] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [aux_sym__simple_variable_name_token1] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [sym_variable_name] = ACTIONS(1552), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [sym_variable_name] = ACTIONS(1456), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [aux_sym__simple_variable_name_token1] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [683] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [aux_sym__simple_variable_name_token1] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [sym_variable_name] = ACTIONS(1564), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [ts_builtin_sym_end] = ACTIONS(1564), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [sym_variable_name] = ACTIONS(1468), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [aux_sym__simple_variable_name_token1] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [684] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [aux_sym__simple_variable_name_token1] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [sym_variable_name] = ACTIONS(1574), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [ts_builtin_sym_end] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_variable_name] = ACTIONS(1478), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [aux_sym__simple_variable_name_token1] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [685] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [aux_sym__simple_variable_name_token1] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [sym_variable_name] = ACTIONS(1578), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [ts_builtin_sym_end] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [sym_variable_name] = ACTIONS(1482), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [aux_sym__simple_variable_name_token1] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [686] = { - [sym_word] = ACTIONS(1584), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1584), - [anon_sym_AMP_GT_GT] = ACTIONS(1584), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1584), - [sym_raw_string] = ACTIONS(1584), - [anon_sym_DOLLAR] = ACTIONS(1582), - [sym_file_descriptor] = ACTIONS(1584), - [sym_variable_name] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1584), - [anon_sym_AMP_GT] = ACTIONS(1582), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(1584), - [anon_sym_GT_AMP] = ACTIONS(1584), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_LT_AMP] = ACTIONS(1584), - [anon_sym_GT_GT] = ACTIONS(1584), - [sym_ansii_c_string] = ACTIONS(1584), - [anon_sym_BQUOTE] = ACTIONS(1584), - [anon_sym_GT_LPAREN] = ACTIONS(1584), - [sym__special_character] = ACTIONS(1584), + [anon_sym_AMP_GT_GT] = ACTIONS(1616), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1614), + [sym_file_descriptor] = ACTIONS(1616), + [sym_variable_name] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_AMP_GT] = ACTIONS(1614), + [sym_number] = ACTIONS(1614), + [anon_sym_GT_LPAREN] = ACTIONS(1616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [anon_sym_GT_AMP] = ACTIONS(1616), + [sym_word] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_LT_AMP] = ACTIONS(1616), + [anon_sym_GT_GT] = ACTIONS(1616), + [sym_ansii_c_string] = ACTIONS(1616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1616), + [anon_sym_LT_LPAREN] = ACTIONS(1616), + [sym__special_character] = ACTIONS(1616), }, [687] = { - [anon_sym_LPAREN] = ACTIONS(1415), - [sym_word] = ACTIONS(1415), - [anon_sym_AMP_GT_GT] = ACTIONS(1417), - [anon_sym_local] = ACTIONS(1415), - [anon_sym_typeset] = ACTIONS(1415), - [anon_sym_unsetenv] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_LT_LPAREN] = ACTIONS(1417), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_LT_AMP] = ACTIONS(1417), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_export] = ACTIONS(1415), - [sym__special_character] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1417), - [sym_raw_string] = ACTIONS(1417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1417), - [sym_file_descriptor] = ACTIONS(1417), - [sym_variable_name] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_AMP_GT] = ACTIONS(1415), - [anon_sym_readonly] = ACTIONS(1415), - [anon_sym_unset] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_GT_AMP] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_esac] = ACTIONS(2468), - [anon_sym_GT_LPAREN] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [sym_ansii_c_string] = ACTIONS(1417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), - [anon_sym_SEMI_SEMI] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_AMP_GT_GT] = ACTIONS(1446), + [anon_sym_local] = ACTIONS(1444), + [anon_sym_typeset] = ACTIONS(1444), + [anon_sym_unsetenv] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_GT_LPAREN] = ACTIONS(1446), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_LT_AMP] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1444), + [sym_word] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), + [sym_raw_string] = ACTIONS(1446), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [sym_variable_name] = ACTIONS(1446), + [sym_file_descriptor] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_AMP_GT] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_GT_AMP] = ACTIONS(1446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_esac] = ACTIONS(2520), + [anon_sym_LT_LPAREN] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [sym_ansii_c_string] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym_SEMI_SEMI] = ACTIONS(1686), }, [688] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [aux_sym__simple_variable_name_token1] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [sym_variable_name] = ACTIONS(1743), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [ts_builtin_sym_end] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [sym_variable_name] = ACTIONS(1690), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [ts_builtin_sym_end] = ACTIONS(1690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [aux_sym__simple_variable_name_token1] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [689] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [aux_sym__simple_variable_name_token1] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [sym_variable_name] = ACTIONS(1749), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [ts_builtin_sym_end] = ACTIONS(1749), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [sym_variable_name] = ACTIONS(1696), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [aux_sym__simple_variable_name_token1] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [690] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [aux_sym__simple_variable_name_token1] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [sym_variable_name] = ACTIONS(1753), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [ts_builtin_sym_end] = ACTIONS(1753), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [sym_variable_name] = ACTIONS(1700), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [aux_sym__simple_variable_name_token1] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [691] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [aux_sym__simple_variable_name_token1] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [sym_variable_name] = ACTIONS(1759), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [ts_builtin_sym_end] = ACTIONS(1759), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [sym_variable_name] = ACTIONS(1706), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [aux_sym__simple_variable_name_token1] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [692] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [aux_sym__simple_variable_name_token1] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [sym_variable_name] = ACTIONS(1832), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [sym_variable_name] = ACTIONS(1821), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [ts_builtin_sym_end] = ACTIONS(1821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [aux_sym__simple_variable_name_token1] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [693] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [aux_sym__simple_variable_name_token1] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [sym_variable_name] = ACTIONS(1836), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [ts_builtin_sym_end] = ACTIONS(1836), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [sym_variable_name] = ACTIONS(1825), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [ts_builtin_sym_end] = ACTIONS(1825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [aux_sym__simple_variable_name_token1] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [694] = { - [aux_sym_concatenation_repeat1] = STATE(696), - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(699), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [695] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(1960), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(491), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2002), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(2006), + [anon_sym_PIPE_AMP] = ACTIONS(491), }, [696] = { - [aux_sym_concatenation_repeat1] = STATE(707), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2470), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [aux_sym__simple_variable_name_token1] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [ts_builtin_sym_end] = ACTIONS(359), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [ts_builtin_sym_end] = ACTIONS(411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [697] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [aux_sym__simple_variable_name_token1] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [ts_builtin_sym_end] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [ts_builtin_sym_end] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [aux_sym__simple_variable_name_token1] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [698] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [aux_sym__simple_variable_name_token1] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [ts_builtin_sym_end] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [ts_builtin_sym_end] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [aux_sym__simple_variable_name_token1] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [699] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [aux_sym__simple_variable_name_token1] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [ts_builtin_sym_end] = ACTIONS(421), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(709), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [ts_builtin_sym_end] = ACTIONS(433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [aux_sym__simple_variable_name_token1] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [700] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [aux_sym__simple_variable_name_token1] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [ts_builtin_sym_end] = ACTIONS(581), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [ts_builtin_sym_end] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [aux_sym__simple_variable_name_token1] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [701] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [702] = { [aux_sym__literal_repeat1] = STATE(702), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [sym__special_character] = ACTIONS(2472), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [aux_sym__simple_variable_name_token1] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [ts_builtin_sym_end] = ACTIONS(634), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [sym__special_character] = ACTIONS(2524), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [ts_builtin_sym_end] = ACTIONS(650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [aux_sym__simple_variable_name_token1] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [703] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_PIPE_AMP] = ACTIONS(431), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2005), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_AMP_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(2007), - [anon_sym_LT_LT_DASH] = ACTIONS(441), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2047), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2047), }, [704] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2005), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(2007), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(491), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2047), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2047), }, [705] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [ts_builtin_sym_end] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [706] = { - [sym_command_substitution] = STATE(705), - [sym_simple_expansion] = STATE(705), - [sym_string_expansion] = STATE(705), - [sym_string] = STATE(705), - [sym_process_substitution] = STATE(705), - [sym_expansion] = STATE(705), - [sym_word] = ACTIONS(2477), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2483), - [sym_raw_string] = ACTIONS(2477), - [anon_sym_BQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_GT_LPAREN] = ACTIONS(2489), - [sym_ansii_c_string] = ACTIONS(2477), - [anon_sym_LT_LPAREN] = ACTIONS(2489), - [sym__special_character] = ACTIONS(2477), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [ts_builtin_sym_end] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [aux_sym__simple_variable_name_token1] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), }, [707] = { - [aux_sym_concatenation_repeat1] = STATE(707), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2491), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [ts_builtin_sym_end] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [708] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [aux_sym__simple_variable_name_token1] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [ts_builtin_sym_end] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), + [sym_command_substitution] = STATE(707), + [sym_simple_expansion] = STATE(707), + [sym_string_expansion] = STATE(707), + [sym_string] = STATE(707), + [sym_process_substitution] = STATE(707), + [sym_expansion] = STATE(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2533), + [sym_word] = ACTIONS(2535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2539), + [anon_sym_LT_LPAREN] = ACTIONS(2541), + [sym_ansii_c_string] = ACTIONS(2533), + [anon_sym_BQUOTE] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2541), + [sym__special_character] = ACTIONS(2533), + [sym_number] = ACTIONS(2535), }, [709] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [aux_sym__simple_variable_name_token1] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(709), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [710] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [aux_sym__simple_variable_name_token1] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [ts_builtin_sym_end] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [ts_builtin_sym_end] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [aux_sym__simple_variable_name_token1] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), }, [711] = { - [aux_sym_concatenation_repeat1] = STATE(841), - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [sym__concat] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [aux_sym__simple_variable_name_token1] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [ts_builtin_sym_end] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [aux_sym__simple_variable_name_token1] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [712] = { - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [aux_sym__simple_variable_name_token1] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [aux_sym__simple_variable_name_token1] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [713] = { - [aux_sym__literal_repeat1] = STATE(847), - [sym_word] = ACTIONS(1006), - [anon_sym_AMP_GT_GT] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1006), - [anon_sym_LT_LPAREN] = ACTIONS(1006), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_AMP] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(1006), - [sym__special_character] = ACTIONS(1986), - [anon_sym_LT_LT_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), - [aux_sym__simple_variable_name_token1] = ACTIONS(1006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_raw_string] = ACTIONS(1006), - [sym_variable_name] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [sym_file_descriptor] = ACTIONS(1010), - [anon_sym_AMP_GT] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [anon_sym_LT_LT_LT] = ACTIONS(1006), - [anon_sym_GT_AMP] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1006), - [anon_sym_GT_LPAREN] = ACTIONS(1006), - [sym_ansii_c_string] = ACTIONS(1006), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_SEMI_SEMI] = ACTIONS(1006), - [anon_sym_PIPE_AMP] = ACTIONS(1006), + [aux_sym_concatenation_repeat1] = STATE(844), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [sym__concat] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1031), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [aux_sym__simple_variable_name_token1] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [714] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [aux_sym__literal_repeat1] = STATE(847), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_number] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [sym_word] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [sym__special_character] = ACTIONS(2026), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [sym_variable_name] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1037), + [sym_file_descriptor] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [aux_sym__simple_variable_name_token1] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [sym_ansii_c_string] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), }, [715] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [aux_sym__simple_variable_name_token1] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [ts_builtin_sym_end] = ACTIONS(1038), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [ts_builtin_sym_end] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [aux_sym__simple_variable_name_token1] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [716] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - }, - [717] = { - [sym_string] = STATE(699), - [sym_word] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2494), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2494), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2494), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2494), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2496), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(2494), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [ts_builtin_sym_end] = ACTIONS(1202), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), - }, - [718] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [aux_sym__simple_variable_name_token1] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), - }, - [719] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [aux_sym__simple_variable_name_token1] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [ts_builtin_sym_end] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), - }, + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), + }, + [717] = { + [sym_string] = STATE(698), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym__] = ACTIONS(2548), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(2550), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(2550), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2548), + [sym__special_character] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2550), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [sym_raw_string] = ACTIONS(2552), + [anon_sym_BANG] = ACTIONS(2550), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [ts_builtin_sym_end] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2548), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [sym_ansii_c_string] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), + }, + [718] = { + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [ts_builtin_sym_end] = ACTIONS(1233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [aux_sym__simple_variable_name_token1] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), + }, + [719] = { + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [aux_sym__simple_variable_name_token1] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), + }, [720] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [aux_sym__simple_variable_name_token1] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [ts_builtin_sym_end] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [aux_sym__simple_variable_name_token1] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [721] = { - [sym_word] = ACTIONS(1335), - [anon_sym_AMP_GT_GT] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1335), - [anon_sym_LT_LPAREN] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_LT_AMP] = ACTIONS(1335), - [anon_sym_GT_GT] = ACTIONS(1335), - [sym__special_character] = ACTIONS(1335), - [anon_sym_LT_LT_DASH] = ACTIONS(1335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1335), - [aux_sym__simple_variable_name_token1] = ACTIONS(1335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), - [anon_sym_LF] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [sym_raw_string] = ACTIONS(1335), - [sym_variable_name] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [sym_file_descriptor] = ACTIONS(1337), - [anon_sym_AMP_GT] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_LT_LT_LT] = ACTIONS(1335), - [anon_sym_GT_AMP] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_GT_LPAREN] = ACTIONS(1335), - [sym_ansii_c_string] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_number] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [sym_word] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [sym__special_character] = ACTIONS(1366), + [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [sym_variable_name] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1366), + [sym_file_descriptor] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [aux_sym__simple_variable_name_token1] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [sym_ansii_c_string] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_SEMI_SEMI] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), }, [722] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [aux_sym__simple_variable_name_token1] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [ts_builtin_sym_end] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [aux_sym__simple_variable_name_token1] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [723] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [aux_sym__simple_variable_name_token1] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [aux_sym__simple_variable_name_token1] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [724] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [aux_sym__simple_variable_name_token1] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [ts_builtin_sym_end] = ACTIONS(1564), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [aux_sym__simple_variable_name_token1] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [725] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [aux_sym__simple_variable_name_token1] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [ts_builtin_sym_end] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [aux_sym__simple_variable_name_token1] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [726] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [aux_sym__simple_variable_name_token1] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [ts_builtin_sym_end] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [aux_sym__simple_variable_name_token1] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [727] = { - [sym_word] = ACTIONS(1582), - [anon_sym_AMP_GT_GT] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_LT_AMP] = ACTIONS(1582), - [anon_sym_GT_GT] = ACTIONS(1582), - [sym__special_character] = ACTIONS(1582), - [anon_sym_LT_LT_DASH] = ACTIONS(1582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1582), - [aux_sym__simple_variable_name_token1] = ACTIONS(1582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1582), - [anon_sym_LF] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [sym_raw_string] = ACTIONS(1582), - [sym_variable_name] = ACTIONS(1584), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [sym_file_descriptor] = ACTIONS(1584), - [anon_sym_AMP_GT] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_LT_LT_LT] = ACTIONS(1582), - [anon_sym_GT_AMP] = ACTIONS(1582), - [anon_sym_BQUOTE] = ACTIONS(1582), - [anon_sym_GT_LPAREN] = ACTIONS(1582), - [sym_ansii_c_string] = ACTIONS(1582), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_SEMI_SEMI] = ACTIONS(1582), - [anon_sym_PIPE_AMP] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_AMP_GT_GT] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_LT_LT] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_GT_LPAREN] = ACTIONS(1614), + [sym_number] = ACTIONS(1614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [sym_word] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_LT_AMP] = ACTIONS(1614), + [anon_sym_GT_GT] = ACTIONS(1614), + [sym__special_character] = ACTIONS(1614), + [anon_sym_LT_LT_DASH] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [sym_raw_string] = ACTIONS(1614), + [sym_variable_name] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1614), + [sym_file_descriptor] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_AMP_GT] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_LT_LT_LT] = ACTIONS(1614), + [anon_sym_GT_AMP] = ACTIONS(1614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), + [aux_sym__simple_variable_name_token1] = ACTIONS(1614), + [anon_sym_LT_LPAREN] = ACTIONS(1614), + [sym_ansii_c_string] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_SEMI_SEMI] = ACTIONS(1614), + [anon_sym_PIPE_AMP] = ACTIONS(1614), }, [728] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [aux_sym__simple_variable_name_token1] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [ts_builtin_sym_end] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [ts_builtin_sym_end] = ACTIONS(1690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [aux_sym__simple_variable_name_token1] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [729] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [aux_sym__simple_variable_name_token1] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [ts_builtin_sym_end] = ACTIONS(1749), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [aux_sym__simple_variable_name_token1] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [730] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [aux_sym__simple_variable_name_token1] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [ts_builtin_sym_end] = ACTIONS(1753), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [aux_sym__simple_variable_name_token1] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [731] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [aux_sym__simple_variable_name_token1] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [ts_builtin_sym_end] = ACTIONS(1759), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [aux_sym__simple_variable_name_token1] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [732] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [aux_sym__simple_variable_name_token1] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [ts_builtin_sym_end] = ACTIONS(1821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [aux_sym__simple_variable_name_token1] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [733] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [aux_sym__simple_variable_name_token1] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [ts_builtin_sym_end] = ACTIONS(1836), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [ts_builtin_sym_end] = ACTIONS(1825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [aux_sym__simple_variable_name_token1] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [734] = { - [aux_sym_concatenation_repeat1] = STATE(735), + [aux_sym_concatenation_repeat1] = STATE(738), + [anon_sym_SEMI_SEMI] = ACTIONS(211), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(457), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_in] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), + [sym__concat] = ACTIONS(515), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_in] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), }, [735] = { - [aux_sym_concatenation_repeat1] = STATE(744), + [anon_sym_AMP] = ACTIONS(409), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(355), - [sym__concat] = ACTIONS(2500), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_in] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), + [sym__concat] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [anon_sym_in] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), }, [736] = { + [anon_sym_AMP] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_in] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), + [sym__concat] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_in] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), }, [737] = { + [anon_sym_AMP] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_in] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), + [sym__concat] = ACTIONS(419), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_in] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), }, [738] = { + [aux_sym_concatenation_repeat1] = STATE(746), + [anon_sym_AMP] = ACTIONS(429), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_in] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), + [sym__concat] = ACTIONS(2554), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [anon_sym_in] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), }, [739] = { + [anon_sym_AMP] = ACTIONS(595), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_in] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), + [sym__concat] = ACTIONS(597), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_in] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), }, [740] = { - [sym__special_character] = ACTIONS(189), + [sym__special_character] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_in] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_in] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), }, [741] = { [aux_sym__literal_repeat1] = STATE(741), - [sym__special_character] = ACTIONS(2502), + [sym__special_character] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(645), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_in] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_in] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), }, [742] = { + [anon_sym_AMP] = ACTIONS(874), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_in] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), + [sym__concat] = ACTIONS(876), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_in] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), }, [743] = { - [sym_command_substitution] = STATE(742), - [sym_simple_expansion] = STATE(742), - [sym_string_expansion] = STATE(742), - [sym_string] = STATE(742), - [sym_process_substitution] = STATE(742), - [sym_expansion] = STATE(742), - [sym_word] = ACTIONS(2505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(199), - [sym_raw_string] = ACTIONS(2505), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(2507), - [anon_sym_GT_LPAREN] = ACTIONS(205), - [sym_ansii_c_string] = ACTIONS(2505), - [anon_sym_LT_LPAREN] = ACTIONS(205), - [sym__special_character] = ACTIONS(2505), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(880), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_in] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), }, [744] = { - [aux_sym_concatenation_repeat1] = STATE(744), + [anon_sym_AMP] = ACTIONS(882), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(782), - [sym__concat] = ACTIONS(2509), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_in] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), + [sym__concat] = ACTIONS(884), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), }, [745] = { - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_in] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), + [sym_command_substitution] = STATE(744), + [sym_simple_expansion] = STATE(744), + [sym_string_expansion] = STATE(744), + [sym_string] = STATE(744), + [sym_process_substitution] = STATE(744), + [sym_expansion] = STATE(744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2559), + [sym_word] = ACTIONS(2561), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(2563), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [sym_ansii_c_string] = ACTIONS(2559), + [anon_sym_BQUOTE] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym__special_character] = ACTIONS(2559), + [sym_number] = ACTIONS(2561), }, [746] = { + [aux_sym_concatenation_repeat1] = STATE(746), + [anon_sym_AMP] = ACTIONS(882), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), + [sym__concat] = ACTIONS(2565), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), }, [747] = { + [anon_sym_AMP] = ACTIONS(905), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_in] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), + [sym__concat] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_in] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), }, [748] = { - [aux_sym_concatenation_repeat1] = STATE(1289), - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [sym__concat] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_esac] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_in] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), }, [749] = { - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_esac] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_esac] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [750] = { - [aux_sym__literal_repeat1] = STATE(1324), - [sym_word] = ACTIONS(1006), - [anon_sym_AMP_GT_GT] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1006), - [anon_sym_LT_LPAREN] = ACTIONS(1006), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_AMP] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(1006), - [sym__special_character] = ACTIONS(2514), - [anon_sym_LT_LT_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_raw_string] = ACTIONS(1006), - [sym_variable_name] = ACTIONS(1010), - [sym_file_descriptor] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_AMP_GT] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [anon_sym_LT_LT_LT] = ACTIONS(1006), - [anon_sym_GT_AMP] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1006), - [anon_sym_esac] = ACTIONS(1006), - [anon_sym_GT_LPAREN] = ACTIONS(1006), - [sym_ansii_c_string] = ACTIONS(1006), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_SEMI_SEMI] = ACTIONS(1006), - [anon_sym_PIPE_AMP] = ACTIONS(1006), + [aux_sym_concatenation_repeat1] = STATE(1292), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [sym__concat] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_esac] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [751] = { - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_in] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [aux_sym__literal_repeat1] = STATE(1324), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_number] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [sym_word] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [sym__special_character] = ACTIONS(2570), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [sym_variable_name] = ACTIONS(1041), + [sym_file_descriptor] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_esac] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [sym_ansii_c_string] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), }, [752] = { + [anon_sym_AMP] = ACTIONS(1063), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_in] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), + [sym__concat] = ACTIONS(1065), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_in] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), }, [753] = { + [anon_sym_AMP] = ACTIONS(874), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_in] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [sym__concat] = ACTIONS(876), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_in] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), }, [754] = { - [sym_string] = STATE(738), - [aux_sym__simple_variable_name_token1] = ACTIONS(2516), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(2518), - [sym_raw_string] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2518), - [sym_comment] = ACTIONS(3), - [anon_sym_in] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2522), - [anon_sym__] = ACTIONS(2516), - [anon_sym_AT] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2516), + [sym_string] = STATE(737), + [anon_sym__] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2574), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(2574), + [sym_raw_string] = ACTIONS(2576), + [anon_sym_DOLLAR] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2574), + [anon_sym_in] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_0] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2572), + [aux_sym__simple_variable_name_token1] = ACTIONS(2572), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), }, [755] = { + [anon_sym_AMP] = ACTIONS(1231), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [sym__concat] = ACTIONS(1233), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_in] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), }, [756] = { + [anon_sym_AMP] = ACTIONS(1290), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_in] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), + [sym__concat] = ACTIONS(1292), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_in] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), }, [757] = { + [anon_sym_AMP] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_in] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), + [sym__concat] = ACTIONS(1302), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_in] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), }, [758] = { - [sym_word] = ACTIONS(1335), - [anon_sym_AMP_GT_GT] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1335), - [anon_sym_LT_LPAREN] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_LT_AMP] = ACTIONS(1335), - [anon_sym_GT_GT] = ACTIONS(1335), - [sym__special_character] = ACTIONS(1335), - [anon_sym_LT_LT_DASH] = ACTIONS(1335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), - [anon_sym_LF] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [sym_raw_string] = ACTIONS(1335), - [sym_variable_name] = ACTIONS(1337), - [sym_file_descriptor] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_AMP_GT] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_LT_LT_LT] = ACTIONS(1335), - [anon_sym_GT_AMP] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_esac] = ACTIONS(1335), - [anon_sym_GT_LPAREN] = ACTIONS(1335), - [sym_ansii_c_string] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_number] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [sym_word] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [sym__special_character] = ACTIONS(1366), + [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [sym_variable_name] = ACTIONS(1368), + [sym_file_descriptor] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_esac] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [sym_ansii_c_string] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_SEMI_SEMI] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), }, [759] = { + [anon_sym_AMP] = ACTIONS(1396), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_in] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), + [sym__concat] = ACTIONS(1398), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_in] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), }, [760] = { + [anon_sym_AMP] = ACTIONS(1454), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_in] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), + [sym__concat] = ACTIONS(1456), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_in] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), }, [761] = { + [anon_sym_AMP] = ACTIONS(1466), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_in] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), + [sym__concat] = ACTIONS(1468), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_in] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), }, [762] = { + [anon_sym_AMP] = ACTIONS(1476), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), + [sym__concat] = ACTIONS(1478), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_in] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), }, [763] = { + [anon_sym_AMP] = ACTIONS(1480), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_in] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), + [sym__concat] = ACTIONS(1482), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_in] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), }, [764] = { - [sym_word] = ACTIONS(1582), - [anon_sym_AMP_GT_GT] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_LT_AMP] = ACTIONS(1582), - [anon_sym_GT_GT] = ACTIONS(1582), - [sym__special_character] = ACTIONS(1582), - [anon_sym_LT_LT_DASH] = ACTIONS(1582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1582), - [anon_sym_LF] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [sym_raw_string] = ACTIONS(1582), - [sym_variable_name] = ACTIONS(1584), - [sym_file_descriptor] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_AMP_GT] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_LT_LT_LT] = ACTIONS(1582), - [anon_sym_GT_AMP] = ACTIONS(1582), - [anon_sym_BQUOTE] = ACTIONS(1582), - [anon_sym_esac] = ACTIONS(1582), - [anon_sym_GT_LPAREN] = ACTIONS(1582), - [sym_ansii_c_string] = ACTIONS(1582), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_SEMI_SEMI] = ACTIONS(1582), - [anon_sym_PIPE_AMP] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_AMP_GT_GT] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_LT_LT] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_GT_LPAREN] = ACTIONS(1614), + [sym_number] = ACTIONS(1614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [sym_word] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_LT_AMP] = ACTIONS(1614), + [anon_sym_GT_GT] = ACTIONS(1614), + [sym__special_character] = ACTIONS(1614), + [anon_sym_LT_LT_DASH] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [sym_raw_string] = ACTIONS(1614), + [sym_variable_name] = ACTIONS(1616), + [sym_file_descriptor] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_AMP_GT] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_LT_LT_LT] = ACTIONS(1614), + [anon_sym_GT_AMP] = ACTIONS(1614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), + [anon_sym_esac] = ACTIONS(1614), + [anon_sym_LT_LPAREN] = ACTIONS(1614), + [sym_ansii_c_string] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_SEMI_SEMI] = ACTIONS(1614), + [anon_sym_PIPE_AMP] = ACTIONS(1614), }, [765] = { + [anon_sym_AMP] = ACTIONS(1688), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_in] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), + [sym__concat] = ACTIONS(1690), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), }, [766] = { + [anon_sym_AMP] = ACTIONS(1694), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [sym__concat] = ACTIONS(1696), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), }, [767] = { + [anon_sym_AMP] = ACTIONS(1698), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), + [sym__concat] = ACTIONS(1700), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_in] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), }, [768] = { + [anon_sym_AMP] = ACTIONS(1704), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_in] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), + [sym__concat] = ACTIONS(1706), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), }, [769] = { + [anon_sym_AMP] = ACTIONS(1819), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_in] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), + [sym__concat] = ACTIONS(1821), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_in] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), }, [770] = { + [anon_sym_AMP] = ACTIONS(1823), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_in] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [sym__concat] = ACTIONS(1825), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_in] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), }, [771] = { - [aux_sym_concatenation_repeat1] = STATE(772), - [anon_sym_PLUS_EQ] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(191), - [anon_sym_RBRACK_RBRACK] = ACTIONS(191), - [sym__concat] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(189), - [sym_test_operator] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(191), - [sym__special_character] = ACTIONS(189), - [anon_sym_DASH_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_GT_EQ] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(191), + [aux_sym_concatenation_repeat1] = STATE(775), + [anon_sym_PLUS_EQ] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_RPAREN_RPAREN] = ACTIONS(213), + [anon_sym_PIPE_PIPE] = ACTIONS(213), + [anon_sym_RBRACK_RBRACK] = ACTIONS(213), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [sym__special_character] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(213), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(213), }, [772] = { - [aux_sym_concatenation_repeat1] = STATE(781), - [anon_sym_PLUS_EQ] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(355), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(359), - [anon_sym_PIPE_PIPE] = ACTIONS(359), - [anon_sym_RBRACK_RBRACK] = ACTIONS(359), - [sym__concat] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(355), - [sym_test_operator] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_EQ_TILDE] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(359), - [anon_sym_LT_EQ] = ACTIONS(359), - [anon_sym_DASH_EQ] = ACTIONS(359), - [anon_sym_BANG_EQ] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(359), - [anon_sym_GT_EQ] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_PLUS_PLUS] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_RPAREN_RPAREN] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(411), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_EQ_TILDE] = ACTIONS(411), + [anon_sym_DASH_DASH] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(409), + [sym_test_operator] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(411), }, [773] = { - [anon_sym_PLUS_EQ] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(411), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_RBRACK_RBRACK] = ACTIONS(413), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [sym_test_operator] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_EQ_TILDE] = ACTIONS(413), - [anon_sym_DASH_DASH] = ACTIONS(413), - [anon_sym_LT_EQ] = ACTIONS(413), - [anon_sym_DASH_EQ] = ACTIONS(413), - [anon_sym_BANG_EQ] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_EQ] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_GT_EQ] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(415), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_RPAREN_RPAREN] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_RBRACK_RBRACK] = ACTIONS(415), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_DASH_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ] = ACTIONS(415), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(413), + [sym_test_operator] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(415), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(415), }, [774] = { - [anon_sym_PLUS_EQ] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(415), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_RBRACK_RBRACK] = ACTIONS(417), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [sym_test_operator] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_EQ_TILDE] = ACTIONS(417), - [anon_sym_DASH_DASH] = ACTIONS(417), - [anon_sym_LT_EQ] = ACTIONS(417), - [anon_sym_DASH_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_EQ] = ACTIONS(415), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_RPAREN_RPAREN] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_RBRACK_RBRACK] = ACTIONS(419), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(417), + [sym_test_operator] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(419), }, [775] = { - [anon_sym_PLUS_EQ] = ACTIONS(421), - [anon_sym_PLUS_PLUS] = ACTIONS(421), - [anon_sym_DASH] = ACTIONS(419), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(421), - [anon_sym_PIPE_PIPE] = ACTIONS(421), - [anon_sym_RBRACK_RBRACK] = ACTIONS(421), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [sym_test_operator] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_EQ_TILDE] = ACTIONS(421), - [anon_sym_DASH_DASH] = ACTIONS(421), - [anon_sym_LT_EQ] = ACTIONS(421), - [anon_sym_DASH_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_GT_EQ] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(421), + [aux_sym_concatenation_repeat1] = STATE(783), + [anon_sym_PLUS_EQ] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_RPAREN_RPAREN] = ACTIONS(433), + [anon_sym_PIPE_PIPE] = ACTIONS(433), + [anon_sym_RBRACK_RBRACK] = ACTIONS(433), + [sym__concat] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_EQ_TILDE] = ACTIONS(433), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_DASH_EQ] = ACTIONS(433), + [anon_sym_BANG_EQ] = ACTIONS(433), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(429), + [sym_test_operator] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(433), }, [776] = { - [anon_sym_PLUS_EQ] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(579), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(581), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_RBRACK_RBRACK] = ACTIONS(581), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [sym_test_operator] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_EQ_TILDE] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(581), - [anon_sym_DASH_EQ] = ACTIONS(581), - [anon_sym_BANG_EQ] = ACTIONS(581), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_GT_EQ] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_RPAREN_RPAREN] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_RBRACK_RBRACK] = ACTIONS(597), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_EQ_TILDE] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_DASH_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(595), + [sym_test_operator] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(595), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(597), }, [777] = { - [anon_sym_PLUS_EQ] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(191), - [anon_sym_RBRACK_RBRACK] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(189), - [sym_test_operator] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(191), - [sym__special_character] = ACTIONS(189), - [anon_sym_DASH_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_GT_EQ] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_PLUS_EQ] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_RPAREN_RPAREN] = ACTIONS(213), + [anon_sym_PIPE_PIPE] = ACTIONS(213), + [anon_sym_RBRACK_RBRACK] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [sym__special_character] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ] = ACTIONS(213), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(213), }, [778] = { [aux_sym__literal_repeat1] = STATE(778), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(634), - [anon_sym_DASH] = ACTIONS(629), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(634), - [anon_sym_PIPE_PIPE] = ACTIONS(634), - [anon_sym_RBRACK_RBRACK] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(629), - [sym_test_operator] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_EQ_TILDE] = ACTIONS(634), - [anon_sym_DASH_DASH] = ACTIONS(634), - [anon_sym_LT_EQ] = ACTIONS(634), - [sym__special_character] = ACTIONS(2526), - [anon_sym_DASH_EQ] = ACTIONS(634), - [anon_sym_BANG_EQ] = ACTIONS(634), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_EQ] = ACTIONS(629), - [anon_sym_EQ_EQ] = ACTIONS(634), - [anon_sym_GT_EQ] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(634), + [anon_sym_PLUS_EQ] = ACTIONS(650), + [anon_sym_PLUS_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_RPAREN_RPAREN] = ACTIONS(650), + [anon_sym_PIPE_PIPE] = ACTIONS(650), + [anon_sym_RBRACK_RBRACK] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_EQ_TILDE] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(650), + [sym__special_character] = ACTIONS(2582), + [anon_sym_DASH_EQ] = ACTIONS(650), + [anon_sym_BANG_EQ] = ACTIONS(650), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(645), + [sym_test_operator] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_EQ] = ACTIONS(645), + [anon_sym_EQ_EQ] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(650), }, [779] = { - [anon_sym_PLUS_EQ] = ACTIONS(784), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(782), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(784), - [anon_sym_PIPE_PIPE] = ACTIONS(784), - [anon_sym_RBRACK_RBRACK] = ACTIONS(784), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [sym_test_operator] = ACTIONS(784), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_LT_EQ] = ACTIONS(784), - [anon_sym_DASH_EQ] = ACTIONS(784), - [anon_sym_BANG_EQ] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(782), - [anon_sym_EQ_EQ] = ACTIONS(784), - [anon_sym_GT_EQ] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PLUS_EQ] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_RPAREN_RPAREN] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [anon_sym_RBRACK_RBRACK] = ACTIONS(876), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_DASH_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_test_operator] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(876), }, [780] = { - [sym_command_substitution] = STATE(779), - [sym_string] = STATE(779), - [sym_process_substitution] = STATE(779), - [sym_simple_expansion] = STATE(779), - [sym_string_expansion] = STATE(779), - [sym_expansion] = STATE(779), - [sym_word] = ACTIONS(2529), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(2531), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(2529), - [sym__special_character] = ACTIONS(2529), + [anon_sym_PLUS_EQ] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_RPAREN_RPAREN] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [anon_sym_RBRACK_RBRACK] = ACTIONS(880), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_DASH_DASH] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_DASH_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(878), + [sym_test_operator] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(880), }, [781] = { - [aux_sym_concatenation_repeat1] = STATE(781), - [anon_sym_PLUS_EQ] = ACTIONS(784), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(782), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(784), - [anon_sym_PIPE_PIPE] = ACTIONS(784), - [anon_sym_RBRACK_RBRACK] = ACTIONS(784), - [sym__concat] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(782), - [sym_test_operator] = ACTIONS(784), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_LT_EQ] = ACTIONS(784), - [anon_sym_DASH_EQ] = ACTIONS(784), - [anon_sym_BANG_EQ] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(782), - [anon_sym_EQ_EQ] = ACTIONS(784), - [anon_sym_GT_EQ] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PLUS_EQ] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_RPAREN_RPAREN] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [anon_sym_RBRACK_RBRACK] = ACTIONS(884), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_DASH_EQ] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(884), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_test_operator] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_GT_EQ] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(884), }, [782] = { - [anon_sym_PLUS_EQ] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_DASH] = ACTIONS(860), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(862), - [anon_sym_PIPE_PIPE] = ACTIONS(862), - [anon_sym_RBRACK_RBRACK] = ACTIONS(862), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [sym_test_operator] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_DASH_DASH] = ACTIONS(862), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_DASH_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_EQ] = ACTIONS(860), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(862), + [sym_command_substitution] = STATE(781), + [sym_string] = STATE(781), + [sym_process_substitution] = STATE(781), + [sym_simple_expansion] = STATE(781), + [sym_string_expansion] = STATE(781), + [sym_expansion] = STATE(781), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2585), + [anon_sym_DOLLAR] = ACTIONS(2587), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(2589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(2589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(2585), + [sym__special_character] = ACTIONS(2585), }, [783] = { - [anon_sym_PLUS_EQ] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(922), - [anon_sym_PIPE_PIPE] = ACTIONS(922), - [anon_sym_RBRACK_RBRACK] = ACTIONS(922), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [sym_test_operator] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_DASH_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(922), + [aux_sym_concatenation_repeat1] = STATE(783), + [anon_sym_PLUS_EQ] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_RPAREN_RPAREN] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [anon_sym_RBRACK_RBRACK] = ACTIONS(884), + [sym__concat] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_DASH_EQ] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(884), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_test_operator] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_GT_EQ] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(884), }, [784] = { - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(972), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_RBRACK_RBRACK] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [sym_test_operator] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_PLUS_EQ] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_RPAREN_RPAREN] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_RBRACK_RBRACK] = ACTIONS(907), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_DASH_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(905), + [sym_test_operator] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_EQ] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(907), }, [785] = { - [aux_sym_concatenation_repeat1] = STATE(1225), - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [aux_sym__simple_variable_name_token1] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_esac] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_RPAREN_RPAREN] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_RBRACK_RBRACK] = ACTIONS(959), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_DASH_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(957), + [sym_test_operator] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_EQ] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), }, [786] = { - [sym_word] = ACTIONS(982), - [anon_sym_AMP_GT_GT] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_AMP] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [sym__special_character] = ACTIONS(982), - [anon_sym_LT_LT_DASH] = ACTIONS(982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(982), - [aux_sym__simple_variable_name_token1] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), - [anon_sym_LF] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(982), - [sym_raw_string] = ACTIONS(982), - [sym_variable_name] = ACTIONS(986), - [sym_file_descriptor] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_AMP_GT] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_GT_AMP] = ACTIONS(982), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_esac] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_ansii_c_string] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_SEMI_SEMI] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_esac] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [aux_sym__simple_variable_name_token1] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [787] = { - [aux_sym__literal_repeat1] = STATE(1263), - [sym_word] = ACTIONS(1006), - [anon_sym_AMP_GT_GT] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1006), - [anon_sym_LT_LPAREN] = ACTIONS(1006), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_AMP] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(1006), - [sym__special_character] = ACTIONS(2230), - [anon_sym_LT_LT_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), - [aux_sym__simple_variable_name_token1] = ACTIONS(1006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1006), - [anon_sym_LF] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1006), - [sym_raw_string] = ACTIONS(1006), - [sym_variable_name] = ACTIONS(1010), - [sym_file_descriptor] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_AMP_GT] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [anon_sym_LT_LT_LT] = ACTIONS(1006), - [anon_sym_GT_AMP] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1006), - [anon_sym_esac] = ACTIONS(1006), - [anon_sym_GT_LPAREN] = ACTIONS(1006), - [sym_ansii_c_string] = ACTIONS(1006), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_SEMI_SEMI] = ACTIONS(1006), - [anon_sym_PIPE_AMP] = ACTIONS(1006), + [aux_sym_concatenation_repeat1] = STATE(1228), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1031), + [anon_sym_GT_LPAREN] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [sym__concat] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(1031), + [sym_word] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [sym__special_character] = ACTIONS(1031), + [anon_sym_LT_LT_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1031), + [sym_variable_name] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_LT_LT_LT] = ACTIONS(1031), + [anon_sym_GT_AMP] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_esac] = ACTIONS(1031), + [anon_sym_LT_LPAREN] = ACTIONS(1031), + [sym_ansii_c_string] = ACTIONS(1031), + [aux_sym__simple_variable_name_token1] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1031), }, [788] = { - [anon_sym_PLUS_EQ] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [sym_test_operator] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_LT_EQ] = ACTIONS(1034), - [anon_sym_DASH_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), + [aux_sym__literal_repeat1] = STATE(1263), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_number] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [sym_word] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [sym__special_character] = ACTIONS(2274), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [sym_variable_name] = ACTIONS(1041), + [sym_file_descriptor] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_esac] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [sym_ansii_c_string] = ACTIONS(1037), + [aux_sym__simple_variable_name_token1] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), }, [789] = { - [anon_sym_PLUS_EQ] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1038), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1038), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [sym_test_operator] = ACTIONS(1038), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_EQ_TILDE] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_DASH_EQ] = ACTIONS(1038), - [anon_sym_BANG_EQ] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1036), - [anon_sym_EQ_EQ] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1065), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1065), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_EQ_TILDE] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_LT_EQ] = ACTIONS(1065), + [anon_sym_DASH_EQ] = ACTIONS(1065), + [anon_sym_BANG_EQ] = ACTIONS(1065), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1063), + [sym_test_operator] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_EQ] = ACTIONS(1063), + [anon_sym_EQ_EQ] = ACTIONS(1065), + [anon_sym_GT_EQ] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1065), }, [790] = { - [anon_sym_PLUS_EQ] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [sym_test_operator] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_LT_EQ] = ACTIONS(1034), - [anon_sym_DASH_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_RPAREN_RPAREN] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [anon_sym_RBRACK_RBRACK] = ACTIONS(876), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_DASH_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_test_operator] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(876), }, [791] = { - [sym_string] = STATE(775), - [anon_sym_PLUS_EQ] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2538), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2536), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1202), - [anon_sym_PIPE_PIPE] = ACTIONS(1202), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1202), - [anon_sym__] = ACTIONS(2540), - [anon_sym_AT] = ACTIONS(2542), - [sym_test_operator] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_LT_EQ] = ACTIONS(1202), - [anon_sym_DASH_EQ] = ACTIONS(1202), - [anon_sym_BANG_EQ] = ACTIONS(1202), - [aux_sym__simple_variable_name_token1] = ACTIONS(2540), - [sym_raw_string] = ACTIONS(2544), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1202), - [anon_sym_GT_EQ] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_AMP_AMP] = ACTIONS(1202), - [anon_sym_0] = ACTIONS(2540), + [sym_string] = STATE(774), + [anon_sym__] = ACTIONS(2594), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2600), + [anon_sym_PIPE] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2596), + [sym_raw_string] = ACTIONS(2602), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_AT] = ACTIONS(2600), + [sym_test_operator] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2600), }, [792] = { - [anon_sym_PLUS_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1254), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [sym_test_operator] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_DASH_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1233), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_DASH_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1231), + [sym_test_operator] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1233), }, [793] = { - [anon_sym_PLUS_EQ] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1301), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1303), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1303), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [sym_test_operator] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_EQ_TILDE] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_LT_EQ] = ACTIONS(1303), - [anon_sym_DASH_EQ] = ACTIONS(1303), - [anon_sym_BANG_EQ] = ACTIONS(1303), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1301), - [anon_sym_EQ_EQ] = ACTIONS(1303), - [anon_sym_GT_EQ] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1303), + [anon_sym_PLUS_EQ] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1292), + [anon_sym_PIPE_PIPE] = ACTIONS(1292), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1292), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_EQ_TILDE] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1292), + [anon_sym_DASH_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1290), + [sym_test_operator] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_EQ] = ACTIONS(1290), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1292), }, [794] = { - [anon_sym_PLUS_EQ] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1321), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1321), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [sym_test_operator] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_EQ_TILDE] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_DASH_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PLUS_EQ] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_DASH_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1300), + [sym_test_operator] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1302), }, [795] = { - [sym_word] = ACTIONS(1335), - [anon_sym_AMP_GT_GT] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1335), - [anon_sym_LT_LPAREN] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_LT_AMP] = ACTIONS(1335), - [anon_sym_GT_GT] = ACTIONS(1335), - [sym__special_character] = ACTIONS(1335), - [anon_sym_LT_LT_DASH] = ACTIONS(1335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1335), - [aux_sym__simple_variable_name_token1] = ACTIONS(1335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), - [anon_sym_LF] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [sym_raw_string] = ACTIONS(1335), - [sym_variable_name] = ACTIONS(1337), - [sym_file_descriptor] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_AMP_GT] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_LT_LT_LT] = ACTIONS(1335), - [anon_sym_GT_AMP] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_esac] = ACTIONS(1335), - [anon_sym_GT_LPAREN] = ACTIONS(1335), - [sym_ansii_c_string] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_number] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [sym_word] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [sym__special_character] = ACTIONS(1366), + [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [sym_variable_name] = ACTIONS(1368), + [sym_file_descriptor] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_esac] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [sym_ansii_c_string] = ACTIONS(1366), + [aux_sym__simple_variable_name_token1] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_SEMI_SEMI] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), }, [796] = { - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1365), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1367), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [sym_test_operator] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_EQ_TILDE] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_EQ] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), + [anon_sym_PLUS_EQ] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1398), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_EQ_TILDE] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_DASH_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1396), + [sym_test_operator] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1398), }, [797] = { - [anon_sym_PLUS_EQ] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1550), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1552), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1552), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [sym_test_operator] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_DASH_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1550), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_GT_EQ] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1456), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1456), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_EQ_TILDE] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1456), + [anon_sym_DASH_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1454), + [sym_test_operator] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_GT_EQ] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1456), }, [798] = { - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1562), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1564), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1564), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [sym_test_operator] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_EQ_TILDE] = ACTIONS(1564), - [anon_sym_DASH_DASH] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_EQ_EQ] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1564), + [anon_sym_PLUS_EQ] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1468), + [anon_sym_PIPE_PIPE] = ACTIONS(1468), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1468), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_EQ_TILDE] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_DASH_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1466), + [sym_test_operator] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1468), }, [799] = { - [anon_sym_PLUS_EQ] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1572), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1574), - [anon_sym_PIPE_PIPE] = ACTIONS(1574), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1574), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [sym_test_operator] = ACTIONS(1574), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_EQ_TILDE] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1574), - [anon_sym_LT_EQ] = ACTIONS(1574), - [anon_sym_DASH_EQ] = ACTIONS(1574), - [anon_sym_BANG_EQ] = ACTIONS(1574), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1574), - [anon_sym_GT_EQ] = ACTIONS(1574), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1574), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1478), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1478), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_EQ_TILDE] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1476), + [sym_test_operator] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1478), }, [800] = { - [anon_sym_PLUS_EQ] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_DASH] = ACTIONS(1576), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1578), - [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1578), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [sym_test_operator] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_EQ_TILDE] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_LT_EQ] = ACTIONS(1578), - [anon_sym_DASH_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_RPAREN] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_EQ] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_GT_EQ] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1482), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1482), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_EQ_TILDE] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1480), + [sym_test_operator] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1482), }, [801] = { - [sym_word] = ACTIONS(1582), - [anon_sym_AMP_GT_GT] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1582), - [anon_sym_LT_LT] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_LT_AMP] = ACTIONS(1582), - [anon_sym_GT_GT] = ACTIONS(1582), - [sym__special_character] = ACTIONS(1582), - [anon_sym_LT_LT_DASH] = ACTIONS(1582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1582), - [aux_sym__simple_variable_name_token1] = ACTIONS(1582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1582), - [anon_sym_LF] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [sym_raw_string] = ACTIONS(1582), - [sym_variable_name] = ACTIONS(1584), - [sym_file_descriptor] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1582), - [anon_sym_AMP_GT] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_LT_LT_LT] = ACTIONS(1582), - [anon_sym_GT_AMP] = ACTIONS(1582), - [anon_sym_BQUOTE] = ACTIONS(1582), - [anon_sym_esac] = ACTIONS(1582), - [anon_sym_GT_LPAREN] = ACTIONS(1582), - [sym_ansii_c_string] = ACTIONS(1582), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_SEMI_SEMI] = ACTIONS(1582), - [anon_sym_PIPE_AMP] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_AMP_GT_GT] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_LT_LT] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_GT_LPAREN] = ACTIONS(1614), + [sym_number] = ACTIONS(1614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [sym_word] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_LT_AMP] = ACTIONS(1614), + [anon_sym_GT_GT] = ACTIONS(1614), + [sym__special_character] = ACTIONS(1614), + [anon_sym_LT_LT_DASH] = ACTIONS(1614), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [sym_raw_string] = ACTIONS(1614), + [sym_variable_name] = ACTIONS(1616), + [sym_file_descriptor] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_AMP_GT] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_LT_LT_LT] = ACTIONS(1614), + [anon_sym_GT_AMP] = ACTIONS(1614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), + [anon_sym_esac] = ACTIONS(1614), + [anon_sym_LT_LPAREN] = ACTIONS(1614), + [sym_ansii_c_string] = ACTIONS(1614), + [aux_sym__simple_variable_name_token1] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_SEMI_SEMI] = ACTIONS(1614), + [anon_sym_PIPE_AMP] = ACTIONS(1614), }, [802] = { - [anon_sym_PLUS_EQ] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1741), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1743), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1743), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [sym_test_operator] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_EQ_TILDE] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1743), - [anon_sym_DASH_EQ] = ACTIONS(1743), - [anon_sym_BANG_EQ] = ACTIONS(1743), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_EQ] = ACTIONS(1741), - [anon_sym_EQ_EQ] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PLUS_EQ] = ACTIONS(1690), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1690), + [anon_sym_PIPE_PIPE] = ACTIONS(1690), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1690), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_EQ_TILDE] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_LT_EQ] = ACTIONS(1690), + [anon_sym_DASH_EQ] = ACTIONS(1690), + [anon_sym_BANG_EQ] = ACTIONS(1690), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1688), + [sym_test_operator] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ] = ACTIONS(1690), + [anon_sym_GT_EQ] = ACTIONS(1690), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1690), }, [803] = { - [anon_sym_PLUS_EQ] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1749), - [anon_sym_PIPE_PIPE] = ACTIONS(1749), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1749), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [sym_test_operator] = ACTIONS(1749), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1749), - [anon_sym_DASH_EQ] = ACTIONS(1749), - [anon_sym_BANG_EQ] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_EQ] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1749), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1696), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_EQ_TILDE] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1696), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1694), + [sym_test_operator] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1696), }, [804] = { - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1751), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1753), - [anon_sym_PIPE_PIPE] = ACTIONS(1753), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1753), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [sym_test_operator] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_EQ_TILDE] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [anon_sym_LT_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_BANG_EQ] = ACTIONS(1753), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_EQ] = ACTIONS(1751), - [anon_sym_EQ_EQ] = ACTIONS(1753), - [anon_sym_GT_EQ] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1753), + [anon_sym_PLUS_EQ] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1700), + [anon_sym_PIPE_PIPE] = ACTIONS(1700), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1700), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_EQ_TILDE] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_LT_EQ] = ACTIONS(1700), + [anon_sym_DASH_EQ] = ACTIONS(1700), + [anon_sym_BANG_EQ] = ACTIONS(1700), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1698), + [sym_test_operator] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_EQ] = ACTIONS(1698), + [anon_sym_EQ_EQ] = ACTIONS(1700), + [anon_sym_GT_EQ] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1700), }, [805] = { - [anon_sym_PLUS_EQ] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1757), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1759), - [anon_sym_PIPE_PIPE] = ACTIONS(1759), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1759), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [sym_test_operator] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_EQ_TILDE] = ACTIONS(1759), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_LT_EQ] = ACTIONS(1759), - [anon_sym_DASH_EQ] = ACTIONS(1759), - [anon_sym_BANG_EQ] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_EQ] = ACTIONS(1757), - [anon_sym_EQ_EQ] = ACTIONS(1759), - [anon_sym_GT_EQ] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1759), + [anon_sym_PLUS_EQ] = ACTIONS(1706), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1706), + [anon_sym_PIPE_PIPE] = ACTIONS(1706), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1706), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_EQ_TILDE] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_LT_EQ] = ACTIONS(1706), + [anon_sym_DASH_EQ] = ACTIONS(1706), + [anon_sym_BANG_EQ] = ACTIONS(1706), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1704), + [sym_test_operator] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_EQ] = ACTIONS(1704), + [anon_sym_EQ_EQ] = ACTIONS(1706), + [anon_sym_GT_EQ] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1706), }, [806] = { - [anon_sym_PLUS_EQ] = ACTIONS(1832), - [anon_sym_PLUS_PLUS] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [sym_test_operator] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_EQ_TILDE] = ACTIONS(1832), - [anon_sym_DASH_DASH] = ACTIONS(1832), - [anon_sym_LT_EQ] = ACTIONS(1832), - [anon_sym_DASH_EQ] = ACTIONS(1832), - [anon_sym_BANG_EQ] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_EQ_EQ] = ACTIONS(1832), - [anon_sym_GT_EQ] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PLUS_EQ] = ACTIONS(1821), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1821), + [anon_sym_PIPE_PIPE] = ACTIONS(1821), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1821), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_EQ_TILDE] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [anon_sym_LT_EQ] = ACTIONS(1821), + [anon_sym_DASH_EQ] = ACTIONS(1821), + [anon_sym_BANG_EQ] = ACTIONS(1821), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1819), + [sym_test_operator] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_EQ] = ACTIONS(1819), + [anon_sym_EQ_EQ] = ACTIONS(1821), + [anon_sym_GT_EQ] = ACTIONS(1821), + [anon_sym_PLUS] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1821), }, [807] = { - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1836), - [anon_sym_PIPE_PIPE] = ACTIONS(1836), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1836), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [sym_test_operator] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_EQ_TILDE] = ACTIONS(1836), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1836), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_EQ_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1836), + [anon_sym_PLUS_EQ] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1825), + [anon_sym_PIPE_PIPE] = ACTIONS(1825), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1825), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_EQ_TILDE] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_LT_EQ] = ACTIONS(1825), + [anon_sym_DASH_EQ] = ACTIONS(1825), + [anon_sym_BANG_EQ] = ACTIONS(1825), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1823), + [sym_test_operator] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_EQ] = ACTIONS(1823), + [anon_sym_EQ_EQ] = ACTIONS(1825), + [anon_sym_GT_EQ] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1825), }, [808] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [anon_sym_BANG_EQ] = ACTIONS(191), - [anon_sym_PLUS_EQ] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(189), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(191), - [anon_sym_GT_EQ] = ACTIONS(191), - [sym__concat] = ACTIONS(1996), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [sym_test_operator] = ACTIONS(191), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(191), - [anon_sym_AMP_AMP] = ACTIONS(191), - [sym__special_character] = ACTIONS(189), - [anon_sym_DASH_EQ] = ACTIONS(191), + [aux_sym_concatenation_repeat1] = STATE(812), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(213), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_PIPE_PIPE] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [sym__concat] = ACTIONS(2038), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(213), + [sym__special_character] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(213), }, [809] = { - [aux_sym_concatenation_repeat1] = STATE(818), - [anon_sym_BANG_EQ] = ACTIONS(359), - [anon_sym_PLUS_EQ] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_EQ] = ACTIONS(355), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(359), - [anon_sym_PIPE_PIPE] = ACTIONS(359), - [anon_sym_GT_EQ] = ACTIONS(359), - [sym__concat] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [sym_test_operator] = ACTIONS(359), - [anon_sym_EQ_TILDE] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(359), - [anon_sym_LT_EQ] = ACTIONS(359), - [anon_sym_AMP_AMP] = ACTIONS(359), - [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [sym__string_content] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), }, [810] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(411), - [sym__string_content] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [sym__string_content] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), }, [811] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(415), - [sym__string_content] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [sym_comment] = ACTIONS(3), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(417), + [sym_test_operator] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT_EQ] = ACTIONS(419), + [sym__concat] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_EQ_TILDE] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), }, [812] = { - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_PLUS_EQ] = ACTIONS(421), - [anon_sym_PLUS_PLUS] = ACTIONS(421), - [anon_sym_RBRACK] = ACTIONS(421), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(419), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_PIPE_PIPE] = ACTIONS(421), - [anon_sym_GT_EQ] = ACTIONS(421), - [sym__concat] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [sym_test_operator] = ACTIONS(421), - [anon_sym_EQ_TILDE] = ACTIONS(421), - [anon_sym_DASH_DASH] = ACTIONS(421), - [anon_sym_LT_EQ] = ACTIONS(421), - [anon_sym_AMP_AMP] = ACTIONS(421), - [anon_sym_DASH_EQ] = ACTIONS(421), + [aux_sym_concatenation_repeat1] = STATE(820), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_PLUS_EQ] = ACTIONS(433), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_RBRACK] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(429), + [sym_test_operator] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_PIPE_PIPE] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(433), + [sym__concat] = ACTIONS(2604), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_EQ_TILDE] = ACTIONS(433), + [anon_sym_DASH_DASH] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(433), + [anon_sym_DASH_EQ] = ACTIONS(433), }, [813] = { - [anon_sym_BANG_EQ] = ACTIONS(581), - [anon_sym_PLUS_EQ] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(579), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_GT_EQ] = ACTIONS(581), - [sym__concat] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [sym_test_operator] = ACTIONS(581), - [anon_sym_EQ_TILDE] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(581), - [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(597), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_RBRACK] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(595), + [sym_test_operator] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [sym__concat] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_EQ_TILDE] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_DASH_EQ] = ACTIONS(597), }, [814] = { - [anon_sym_BANG_EQ] = ACTIONS(191), - [anon_sym_PLUS_EQ] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(189), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(191), - [anon_sym_GT_EQ] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [sym_test_operator] = ACTIONS(191), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(191), - [anon_sym_AMP_AMP] = ACTIONS(191), - [sym__special_character] = ACTIONS(189), - [anon_sym_DASH_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(213), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(213), + [anon_sym_RBRACK] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_PIPE_PIPE] = ACTIONS(213), + [anon_sym_GT_EQ] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(213), + [anon_sym_DASH_DASH] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(213), + [sym__special_character] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(213), }, [815] = { [aux_sym__literal_repeat1] = STATE(815), - [anon_sym_BANG_EQ] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(634), - [anon_sym_PLUS_PLUS] = ACTIONS(634), - [anon_sym_RBRACK] = ACTIONS(634), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_EQ] = ACTIONS(629), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(634), - [anon_sym_PIPE_PIPE] = ACTIONS(634), - [anon_sym_GT_EQ] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [sym_test_operator] = ACTIONS(634), - [anon_sym_EQ_TILDE] = ACTIONS(634), - [anon_sym_DASH_DASH] = ACTIONS(634), - [anon_sym_LT_EQ] = ACTIONS(634), - [anon_sym_AMP_AMP] = ACTIONS(634), - [sym__special_character] = ACTIONS(2548), - [anon_sym_DASH_EQ] = ACTIONS(634), + [anon_sym_BANG_EQ] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(650), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(650), + [anon_sym_RBRACK] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_EQ] = ACTIONS(645), + [sym_test_operator] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(650), + [anon_sym_PIPE_PIPE] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_EQ_TILDE] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(650), + [sym__special_character] = ACTIONS(2606), + [anon_sym_DASH_EQ] = ACTIONS(650), }, [816] = { - [anon_sym_BANG_EQ] = ACTIONS(784), - [anon_sym_PLUS_EQ] = ACTIONS(784), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_RBRACK] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(782), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(784), - [anon_sym_PIPE_PIPE] = ACTIONS(784), - [anon_sym_GT_EQ] = ACTIONS(784), - [sym__concat] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [sym_test_operator] = ACTIONS(784), - [anon_sym_EQ_TILDE] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_LT_EQ] = ACTIONS(784), - [anon_sym_AMP_AMP] = ACTIONS(784), - [anon_sym_DASH_EQ] = ACTIONS(784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [sym__string_content] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), }, [817] = { - [sym_command_substitution] = STATE(816), - [sym_simple_expansion] = STATE(816), - [sym_string_expansion] = STATE(816), - [sym_string] = STATE(816), - [sym_process_substitution] = STATE(816), - [sym_expansion] = STATE(816), - [sym_word] = ACTIONS(1351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(1351), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR] = ACTIONS(2551), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(1351), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [sym__special_character] = ACTIONS(1351), - [sym_comment] = ACTIONS(19), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(880), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_EQ] = ACTIONS(878), + [sym_test_operator] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [sym__concat] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_DASH_DASH] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_DASH_EQ] = ACTIONS(880), }, [818] = { - [aux_sym_concatenation_repeat1] = STATE(818), - [anon_sym_BANG_EQ] = ACTIONS(784), - [anon_sym_PLUS_EQ] = ACTIONS(784), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_RBRACK] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(782), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(784), - [anon_sym_PIPE_PIPE] = ACTIONS(784), - [anon_sym_GT_EQ] = ACTIONS(784), - [sym__concat] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [sym_test_operator] = ACTIONS(784), - [anon_sym_EQ_TILDE] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_LT_EQ] = ACTIONS(784), - [anon_sym_AMP_AMP] = ACTIONS(784), - [anon_sym_DASH_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(884), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_RBRACK] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [sym_test_operator] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [anon_sym_GT_EQ] = ACTIONS(884), + [sym__concat] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_DASH_EQ] = ACTIONS(884), }, [819] = { - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_PLUS_EQ] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_RBRACK] = ACTIONS(862), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_EQ] = ACTIONS(860), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_PIPE_PIPE] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(862), - [sym__concat] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [sym_test_operator] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_DASH_DASH] = ACTIONS(862), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_AMP_AMP] = ACTIONS(862), - [anon_sym_DASH_EQ] = ACTIONS(862), + [sym_command_substitution] = STATE(818), + [sym_simple_expansion] = STATE(818), + [sym_string_expansion] = STATE(818), + [sym_string] = STATE(818), + [sym_process_substitution] = STATE(818), + [sym_expansion] = STATE(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1382), + [sym_word] = ACTIONS(1384), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(2609), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(293), + [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym__special_character] = ACTIONS(1382), + [sym_number] = ACTIONS(1384), }, [820] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(920), - [sym__string_content] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [sym_comment] = ACTIONS(3), + [aux_sym_concatenation_repeat1] = STATE(820), + [anon_sym_BANG_EQ] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(884), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_RBRACK] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [sym_test_operator] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [anon_sym_GT_EQ] = ACTIONS(884), + [sym__concat] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_DASH_EQ] = ACTIONS(884), }, [821] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(970), - [sym__string_content] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [sym__string_content] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), }, [822] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym__string_content] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [sym__string_content] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), }, [823] = { - [anon_sym_BANG_EQ] = ACTIONS(1038), - [anon_sym_PLUS_EQ] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_RBRACK] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1036), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1038), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1038), - [sym__concat] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [sym_test_operator] = ACTIONS(1038), - [anon_sym_EQ_TILDE] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1038), - [anon_sym_DASH_EQ] = ACTIONS(1038), + [anon_sym_BANG_EQ] = ACTIONS(1065), + [anon_sym_PLUS_EQ] = ACTIONS(1065), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_RBRACK] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_EQ] = ACTIONS(1063), + [sym_test_operator] = ACTIONS(1065), + [anon_sym_EQ_EQ] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [anon_sym_GT_EQ] = ACTIONS(1065), + [sym__concat] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_EQ_TILDE] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_LT_EQ] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_DASH_EQ] = ACTIONS(1065), }, [824] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym__string_content] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [sym__string_content] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), }, [825] = { - [sym_string] = STATE(812), - [anon_sym_PLUS_EQ] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(2556), - [anon_sym_DASH] = ACTIONS(2558), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_PIPE_PIPE] = ACTIONS(1202), - [anon_sym__] = ACTIONS(2560), - [anon_sym_AT] = ACTIONS(2562), - [sym_test_operator] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_LT_EQ] = ACTIONS(1202), - [anon_sym_DASH_EQ] = ACTIONS(1202), - [anon_sym_BANG_EQ] = ACTIONS(1202), - [aux_sym__simple_variable_name_token1] = ACTIONS(2560), - [sym_raw_string] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2558), - [anon_sym_RBRACK] = ACTIONS(1202), - [anon_sym_QMARK] = ACTIONS(2562), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1202), - [anon_sym_GT_EQ] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_AMP_AMP] = ACTIONS(1202), - [anon_sym_0] = ACTIONS(2560), + [sym_string] = STATE(811), + [anon_sym__] = ACTIONS(2614), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2618), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2614), + [anon_sym_STAR] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2616), + [sym_raw_string] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2620), + [sym_test_operator] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2614), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2620), }, [826] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1252), - [sym__string_content] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [sym__string_content] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), }, [827] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1301), - [sym__string_content] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [sym__string_content] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), }, [828] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1319), - [sym__string_content] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [sym__string_content] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), }, [829] = { - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_RBRACK] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_EQ] = ACTIONS(1365), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [anon_sym_GT_EQ] = ACTIONS(1367), - [sym__concat] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [sym_test_operator] = ACTIONS(1367), - [anon_sym_EQ_TILDE] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(1398), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_RBRACK] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1396), + [sym_test_operator] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_GT_EQ] = ACTIONS(1398), + [sym__concat] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_EQ_TILDE] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_DASH_EQ] = ACTIONS(1398), }, [830] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym__string_content] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [sym__string_content] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), }, [831] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym__string_content] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [sym__string_content] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), }, [832] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1572), - [sym__string_content] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [sym__string_content] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), }, [833] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1576), - [sym__string_content] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [sym__string_content] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), }, [834] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1741), - [sym__string_content] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [sym__string_content] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), }, [835] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_BQUOTE] = ACTIONS(1747), - [sym__string_content] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [sym__string_content] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), }, [836] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym__string_content] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [sym__string_content] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), }, [837] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_BQUOTE] = ACTIONS(1757), - [sym__string_content] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [sym__string_content] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), }, [838] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1830), - [sym__string_content] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [sym__string_content] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), }, [839] = { - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_BQUOTE] = ACTIONS(1834), - [sym__string_content] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [sym__string_content] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), }, [840] = { - [aux_sym_concatenation_repeat1] = STATE(841), - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(844), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [841] = { - [aux_sym_concatenation_repeat1] = STATE(850), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2566), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [aux_sym__simple_variable_name_token1] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [sym_variable_name] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(411), + [anon_sym_RBRACK] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(409), + [sym_test_operator] = ACTIONS(411), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [sym__concat] = ACTIONS(411), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_EQ_TILDE] = ACTIONS(411), + [anon_sym_DASH_DASH] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), }, [842] = { - [anon_sym_BANG_EQ] = ACTIONS(413), - [anon_sym_PLUS_EQ] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(413), - [anon_sym_RBRACK] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_EQ] = ACTIONS(411), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_GT_EQ] = ACTIONS(413), - [sym__concat] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [sym_test_operator] = ACTIONS(413), - [anon_sym_EQ_TILDE] = ACTIONS(413), - [anon_sym_DASH_DASH] = ACTIONS(413), - [anon_sym_LT_EQ] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_DASH_EQ] = ACTIONS(413), - }, - [843] = { - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(417), - [anon_sym_RBRACK] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_EQ] = ACTIONS(415), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(417), - [sym__concat] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [sym_test_operator] = ACTIONS(417), - [anon_sym_EQ_TILDE] = ACTIONS(417), - [anon_sym_DASH_DASH] = ACTIONS(417), - [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(415), + [anon_sym_PLUS_EQ] = ACTIONS(415), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(415), + [anon_sym_RBRACK] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(413), + [sym_test_operator] = ACTIONS(415), + [anon_sym_EQ_EQ] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_GT_EQ] = ACTIONS(415), + [sym__concat] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_EQ_TILDE] = ACTIONS(415), + [anon_sym_DASH_DASH] = ACTIONS(415), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_DASH_EQ] = ACTIONS(415), + }, + [843] = { + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [sym_variable_name] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [aux_sym__simple_variable_name_token1] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_DASH_EQ] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [844] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [aux_sym__simple_variable_name_token1] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [sym_variable_name] = ACTIONS(421), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(852), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2624), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [sym_variable_name] = ACTIONS(433), + [anon_sym_RPAREN] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [aux_sym__simple_variable_name_token1] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [845] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [aux_sym__simple_variable_name_token1] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [sym_variable_name] = ACTIONS(581), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_variable_name] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [aux_sym__simple_variable_name_token1] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [846] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [847] = { [aux_sym__literal_repeat1] = STATE(847), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [sym__special_character] = ACTIONS(2568), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [aux_sym__simple_variable_name_token1] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [sym_variable_name] = ACTIONS(634), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [sym__special_character] = ACTIONS(2626), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [sym_variable_name] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(645), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [aux_sym__simple_variable_name_token1] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [848] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(876), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_RBRACK] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(874), + [sym_test_operator] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(876), + [sym__concat] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_DASH_EQ] = ACTIONS(876), }, [849] = { - [sym_command_substitution] = STATE(848), - [sym_string] = STATE(848), - [sym_process_substitution] = STATE(848), - [sym_simple_expansion] = STATE(848), - [sym_string_expansion] = STATE(848), - [sym_expansion] = STATE(848), - [sym_word] = ACTIONS(2571), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2575), - [sym_raw_string] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(2577), - [anon_sym_LT_LPAREN] = ACTIONS(2579), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2581), - [anon_sym_BQUOTE] = ACTIONS(2583), - [anon_sym_GT_LPAREN] = ACTIONS(2579), - [sym_ansii_c_string] = ACTIONS(2571), - [sym__special_character] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [sym_variable_name] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [aux_sym__simple_variable_name_token1] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), }, [850] = { - [aux_sym_concatenation_repeat1] = STATE(850), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [851] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [aux_sym__simple_variable_name_token1] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [sym_variable_name] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), + [sym_command_substitution] = STATE(850), + [sym_string] = STATE(850), + [sym_process_substitution] = STATE(850), + [sym_simple_expansion] = STATE(850), + [sym_string_expansion] = STATE(850), + [sym_expansion] = STATE(850), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2629), + [anon_sym_DOLLAR] = ACTIONS(2631), + [anon_sym_BQUOTE] = ACTIONS(2633), + [anon_sym_GT_LPAREN] = ACTIONS(2635), + [sym_number] = ACTIONS(2637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_word] = ACTIONS(2637), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2643), + [anon_sym_LT_LPAREN] = ACTIONS(2635), + [sym_ansii_c_string] = ACTIONS(2629), + [sym__special_character] = ACTIONS(2629), }, [852] = { - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_PLUS_EQ] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_RBRACK] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(920), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_PIPE_PIPE] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [sym__concat] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [sym_test_operator] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_AMP_AMP] = ACTIONS(922), - [anon_sym_DASH_EQ] = ACTIONS(922), + [aux_sym_concatenation_repeat1] = STATE(852), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [853] = { - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_EQ] = ACTIONS(970), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [sym_test_operator] = ACTIONS(972), - [anon_sym_EQ_TILDE] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(907), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_EQ] = ACTIONS(905), + [sym_test_operator] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [sym__concat] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_DASH_EQ] = ACTIONS(907), }, [854] = { - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_RBRACK] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [sym_test_operator] = ACTIONS(1034), - [anon_sym_EQ_TILDE] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_LT_EQ] = ACTIONS(1034), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_DASH_EQ] = ACTIONS(1034), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_PLUS_EQ] = ACTIONS(959), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_RBRACK] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_EQ] = ACTIONS(957), + [sym_test_operator] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [sym__concat] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_DASH_EQ] = ACTIONS(959), }, [855] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [aux_sym__simple_variable_name_token1] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [sym_variable_name] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [sym_variable_name] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [aux_sym__simple_variable_name_token1] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [856] = { - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_RBRACK] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [sym_test_operator] = ACTIONS(1034), - [anon_sym_EQ_TILDE] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_LT_EQ] = ACTIONS(1034), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_DASH_EQ] = ACTIONS(1034), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(876), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_RBRACK] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(874), + [sym_test_operator] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(876), + [sym__concat] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_DASH_EQ] = ACTIONS(876), }, [857] = { - [sym_string] = STATE(844), - [sym_word] = ACTIONS(1198), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym__] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2590), - [sym_raw_string] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_variable_name] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1936), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2590), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(2588), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(2588), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2590), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(843), + [anon_sym__] = ACTIONS(2648), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [sym__special_character] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(1223), + [sym_variable_name] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_GT_AMP] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2648), + [sym_ansii_c_string] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [anon_sym_POUND] = ACTIONS(2650), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(2650), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2648), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2648), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [858] = { - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_PLUS_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_RBRACK] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [sym__concat] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [sym_test_operator] = ACTIONS(1254), - [anon_sym_EQ_TILDE] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_DASH_EQ] = ACTIONS(1254), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_PLUS_EQ] = ACTIONS(1233), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [sym_test_operator] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [sym__concat] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_DASH_EQ] = ACTIONS(1233), }, [859] = { - [anon_sym_BANG_EQ] = ACTIONS(1303), - [anon_sym_PLUS_EQ] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [anon_sym_RBRACK] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1301), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1303), - [anon_sym_GT_EQ] = ACTIONS(1303), - [sym__concat] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [sym_test_operator] = ACTIONS(1303), - [anon_sym_EQ_TILDE] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_LT_EQ] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1303), - [anon_sym_DASH_EQ] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1292), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_RBRACK] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_EQ] = ACTIONS(1290), + [sym_test_operator] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_PIPE_PIPE] = ACTIONS(1292), + [anon_sym_GT_EQ] = ACTIONS(1292), + [sym__concat] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_EQ_TILDE] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1292), + [anon_sym_AMP_AMP] = ACTIONS(1292), + [anon_sym_DASH_EQ] = ACTIONS(1292), }, [860] = { - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_PLUS_EQ] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1319), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [sym__concat] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [sym_test_operator] = ACTIONS(1321), - [anon_sym_EQ_TILDE] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_AMP_AMP] = ACTIONS(1321), - [anon_sym_DASH_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_PLUS_EQ] = ACTIONS(1302), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_RBRACK] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [sym_test_operator] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_GT_EQ] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_DASH_EQ] = ACTIONS(1302), }, [861] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [aux_sym__simple_variable_name_token1] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [sym_variable_name] = ACTIONS(1367), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [sym_variable_name] = ACTIONS(1398), + [anon_sym_RPAREN] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [aux_sym__simple_variable_name_token1] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [862] = { - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_PLUS_EQ] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_RBRACK] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1550), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1552), - [anon_sym_GT_EQ] = ACTIONS(1552), - [sym__concat] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [sym_test_operator] = ACTIONS(1552), - [anon_sym_EQ_TILDE] = ACTIONS(1552), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1552), - [anon_sym_DASH_EQ] = ACTIONS(1552), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [sym_test_operator] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1456), + [anon_sym_GT_EQ] = ACTIONS(1456), + [sym__concat] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_EQ_TILDE] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_DASH_EQ] = ACTIONS(1456), }, [863] = { - [anon_sym_BANG_EQ] = ACTIONS(1564), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_RBRACK] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1562), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1564), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1564), - [sym__concat] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [sym_test_operator] = ACTIONS(1564), - [anon_sym_EQ_TILDE] = ACTIONS(1564), - [anon_sym_DASH_DASH] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_PLUS_EQ] = ACTIONS(1468), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1466), + [sym_test_operator] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_PIPE_PIPE] = ACTIONS(1468), + [anon_sym_GT_EQ] = ACTIONS(1468), + [sym__concat] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_EQ_TILDE] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_DASH_EQ] = ACTIONS(1468), }, [864] = { - [anon_sym_BANG_EQ] = ACTIONS(1574), - [anon_sym_PLUS_EQ] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_RBRACK] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(1572), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1574), - [anon_sym_PIPE_PIPE] = ACTIONS(1574), - [anon_sym_GT_EQ] = ACTIONS(1574), - [sym__concat] = ACTIONS(1574), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [sym_test_operator] = ACTIONS(1574), - [anon_sym_EQ_TILDE] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1574), - [anon_sym_LT_EQ] = ACTIONS(1574), - [anon_sym_AMP_AMP] = ACTIONS(1574), - [anon_sym_DASH_EQ] = ACTIONS(1574), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_RBRACK] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [sym_test_operator] = ACTIONS(1478), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [sym__concat] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_EQ_TILDE] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), }, [865] = { - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_PLUS_EQ] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1578), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_EQ] = ACTIONS(1576), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_GT_EQ] = ACTIONS(1578), - [sym__concat] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [sym_test_operator] = ACTIONS(1578), - [anon_sym_EQ_TILDE] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_LT_EQ] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1578), - [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [sym_test_operator] = ACTIONS(1482), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_GT_EQ] = ACTIONS(1482), + [sym__concat] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_EQ_TILDE] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), }, [866] = { - [anon_sym_BANG_EQ] = ACTIONS(1743), - [anon_sym_PLUS_EQ] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1743), - [anon_sym_RBRACK] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_EQ] = ACTIONS(1741), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1743), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1743), - [sym__concat] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [sym_test_operator] = ACTIONS(1743), - [anon_sym_EQ_TILDE] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1743), - [anon_sym_DASH_EQ] = ACTIONS(1743), + [anon_sym_BANG_EQ] = ACTIONS(1690), + [anon_sym_PLUS_EQ] = ACTIONS(1690), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_RBRACK] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_EQ] = ACTIONS(1688), + [sym_test_operator] = ACTIONS(1690), + [anon_sym_EQ_EQ] = ACTIONS(1690), + [anon_sym_PIPE_PIPE] = ACTIONS(1690), + [anon_sym_GT_EQ] = ACTIONS(1690), + [sym__concat] = ACTIONS(1690), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_EQ_TILDE] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_LT_EQ] = ACTIONS(1690), + [anon_sym_AMP_AMP] = ACTIONS(1690), + [anon_sym_DASH_EQ] = ACTIONS(1690), }, [867] = { - [anon_sym_BANG_EQ] = ACTIONS(1749), - [anon_sym_PLUS_EQ] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_RBRACK] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_EQ] = ACTIONS(1747), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1749), - [anon_sym_PIPE_PIPE] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(1749), - [sym__concat] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [sym_test_operator] = ACTIONS(1749), - [anon_sym_EQ_TILDE] = ACTIONS(1749), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1749), - [anon_sym_DASH_EQ] = ACTIONS(1749), + [anon_sym_BANG_EQ] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [sym_test_operator] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [sym__concat] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_EQ_TILDE] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), }, [868] = { - [anon_sym_BANG_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_RBRACK] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_EQ] = ACTIONS(1751), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1753), - [anon_sym_PIPE_PIPE] = ACTIONS(1753), - [anon_sym_GT_EQ] = ACTIONS(1753), - [sym__concat] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [sym_test_operator] = ACTIONS(1753), - [anon_sym_EQ_TILDE] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [anon_sym_LT_EQ] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1700), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_RBRACK] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_EQ] = ACTIONS(1698), + [sym_test_operator] = ACTIONS(1700), + [anon_sym_EQ_EQ] = ACTIONS(1700), + [anon_sym_PIPE_PIPE] = ACTIONS(1700), + [anon_sym_GT_EQ] = ACTIONS(1700), + [sym__concat] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_EQ_TILDE] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_LT_EQ] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1700), + [anon_sym_DASH_EQ] = ACTIONS(1700), }, [869] = { - [anon_sym_BANG_EQ] = ACTIONS(1759), - [anon_sym_PLUS_EQ] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(1759), - [anon_sym_RBRACK] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_EQ] = ACTIONS(1757), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1759), - [anon_sym_PIPE_PIPE] = ACTIONS(1759), - [anon_sym_GT_EQ] = ACTIONS(1759), - [sym__concat] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [sym_test_operator] = ACTIONS(1759), - [anon_sym_EQ_TILDE] = ACTIONS(1759), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_LT_EQ] = ACTIONS(1759), - [anon_sym_AMP_AMP] = ACTIONS(1759), - [anon_sym_DASH_EQ] = ACTIONS(1759), + [anon_sym_BANG_EQ] = ACTIONS(1706), + [anon_sym_PLUS_EQ] = ACTIONS(1706), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_RBRACK] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_EQ] = ACTIONS(1704), + [sym_test_operator] = ACTIONS(1706), + [anon_sym_EQ_EQ] = ACTIONS(1706), + [anon_sym_PIPE_PIPE] = ACTIONS(1706), + [anon_sym_GT_EQ] = ACTIONS(1706), + [sym__concat] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_EQ_TILDE] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_LT_EQ] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1706), + [anon_sym_DASH_EQ] = ACTIONS(1706), }, [870] = { - [anon_sym_BANG_EQ] = ACTIONS(1832), - [anon_sym_PLUS_EQ] = ACTIONS(1832), - [anon_sym_PLUS_PLUS] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_GT_EQ] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [sym_test_operator] = ACTIONS(1832), - [anon_sym_EQ_TILDE] = ACTIONS(1832), - [anon_sym_DASH_DASH] = ACTIONS(1832), - [anon_sym_LT_EQ] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_DASH_EQ] = ACTIONS(1832), + [anon_sym_BANG_EQ] = ACTIONS(1821), + [anon_sym_PLUS_EQ] = ACTIONS(1821), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_RBRACK] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_EQ] = ACTIONS(1819), + [sym_test_operator] = ACTIONS(1821), + [anon_sym_EQ_EQ] = ACTIONS(1821), + [anon_sym_PIPE_PIPE] = ACTIONS(1821), + [anon_sym_GT_EQ] = ACTIONS(1821), + [sym__concat] = ACTIONS(1821), + [anon_sym_PLUS] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_EQ_TILDE] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [anon_sym_LT_EQ] = ACTIONS(1821), + [anon_sym_AMP_AMP] = ACTIONS(1821), + [anon_sym_DASH_EQ] = ACTIONS(1821), }, [871] = { - [anon_sym_BANG_EQ] = ACTIONS(1836), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_RBRACK] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(1836), - [anon_sym_PIPE_PIPE] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [sym__concat] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [sym_test_operator] = ACTIONS(1836), - [anon_sym_EQ_TILDE] = ACTIONS(1836), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_AMP_AMP] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), + [anon_sym_BANG_EQ] = ACTIONS(1825), + [anon_sym_PLUS_EQ] = ACTIONS(1825), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_RBRACK] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_EQ] = ACTIONS(1823), + [sym_test_operator] = ACTIONS(1825), + [anon_sym_EQ_EQ] = ACTIONS(1825), + [anon_sym_PIPE_PIPE] = ACTIONS(1825), + [anon_sym_GT_EQ] = ACTIONS(1825), + [sym__concat] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_EQ_TILDE] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_LT_EQ] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1825), + [anon_sym_DASH_EQ] = ACTIONS(1825), }, [872] = { - [aux_sym_concatenation_repeat1] = STATE(873), - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(876), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [873] = { - [aux_sym_concatenation_repeat1] = STATE(882), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2594), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [aux_sym__simple_variable_name_token1] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [anon_sym_RPAREN] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_variable_name] = ACTIONS(411), + [anon_sym_RPAREN] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [874] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [aux_sym__simple_variable_name_token1] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [sym_variable_name] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_variable_name] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [aux_sym__simple_variable_name_token1] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [875] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [aux_sym__simple_variable_name_token1] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_variable_name] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [anon_sym_RPAREN] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [aux_sym__simple_variable_name_token1] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [876] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [aux_sym__simple_variable_name_token1] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(884), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2654), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [aux_sym__simple_variable_name_token1] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [877] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [aux_sym__simple_variable_name_token1] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [aux_sym__simple_variable_name_token1] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [878] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [879] = { [aux_sym__literal_repeat1] = STATE(879), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [sym__special_character] = ACTIONS(2596), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [aux_sym__simple_variable_name_token1] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [sym__special_character] = ACTIONS(2656), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [anon_sym_RPAREN] = ACTIONS(645), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [aux_sym__simple_variable_name_token1] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [880] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), - }, - [881] = { - [sym_command_substitution] = STATE(880), - [sym_string] = STATE(880), - [sym_process_substitution] = STATE(880), - [sym_simple_expansion] = STATE(880), - [sym_string_expansion] = STATE(880), - [sym_expansion] = STATE(880), - [sym_word] = ACTIONS(2599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2603), - [sym_raw_string] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_LT_LPAREN] = ACTIONS(2607), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_BQUOTE] = ACTIONS(2611), - [anon_sym_GT_LPAREN] = ACTIONS(2607), - [sym_ansii_c_string] = ACTIONS(2599), - [sym__special_character] = ACTIONS(2599), - }, - [882] = { - [aux_sym_concatenation_repeat1] = STATE(882), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), - }, - [883] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [aux_sym__simple_variable_name_token1] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), - }, - [884] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [aux_sym__simple_variable_name_token1] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [sym_variable_name] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), + }, + [881] = { + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [aux_sym__simple_variable_name_token1] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), + }, + [882] = { + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), + }, + [883] = { + [sym_command_substitution] = STATE(882), + [sym_string] = STATE(882), + [sym_process_substitution] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR] = ACTIONS(2661), + [anon_sym_BQUOTE] = ACTIONS(2663), + [anon_sym_GT_LPAREN] = ACTIONS(2665), + [sym_number] = ACTIONS(2667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_word] = ACTIONS(2667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2673), + [anon_sym_LT_LPAREN] = ACTIONS(2665), + [sym_ansii_c_string] = ACTIONS(2659), + [sym__special_character] = ACTIONS(2659), + }, + [884] = { + [aux_sym_concatenation_repeat1] = STATE(884), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [885] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [aux_sym__simple_variable_name_token1] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [sym_variable_name] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [sym_variable_name] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [aux_sym__simple_variable_name_token1] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), }, [886] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [sym_variable_name] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [aux_sym__simple_variable_name_token1] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [887] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [aux_sym__simple_variable_name_token1] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [aux_sym__simple_variable_name_token1] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [888] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [889] = { - [sym_string] = STATE(876), - [sym_word] = ACTIONS(1198), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym__] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2618), - [sym_raw_string] = ACTIONS(2620), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2618), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(2616), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2618), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(875), + [anon_sym__] = ACTIONS(2678), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2678), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [sym__special_character] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_GT_AMP] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2678), + [sym_ansii_c_string] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(2680), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2678), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2678), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [890] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [aux_sym__simple_variable_name_token1] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_variable_name] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_variable_name] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [aux_sym__simple_variable_name_token1] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [891] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [aux_sym__simple_variable_name_token1] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_variable_name] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [aux_sym__simple_variable_name_token1] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [892] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [aux_sym__simple_variable_name_token1] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [sym_variable_name] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_variable_name] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [aux_sym__simple_variable_name_token1] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [893] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [aux_sym__simple_variable_name_token1] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [aux_sym__simple_variable_name_token1] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [894] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [aux_sym__simple_variable_name_token1] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [sym_variable_name] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [sym_variable_name] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1454), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [aux_sym__simple_variable_name_token1] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [895] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [aux_sym__simple_variable_name_token1] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [sym_variable_name] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [sym_variable_name] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1466), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [aux_sym__simple_variable_name_token1] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [896] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [aux_sym__simple_variable_name_token1] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [sym_variable_name] = ACTIONS(1574), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_variable_name] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [aux_sym__simple_variable_name_token1] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [897] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [aux_sym__simple_variable_name_token1] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [sym_variable_name] = ACTIONS(1578), - [anon_sym_RPAREN] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [sym_variable_name] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1480), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [aux_sym__simple_variable_name_token1] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [898] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [aux_sym__simple_variable_name_token1] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [sym_variable_name] = ACTIONS(1743), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [sym_variable_name] = ACTIONS(1690), + [anon_sym_RPAREN] = ACTIONS(1688), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [aux_sym__simple_variable_name_token1] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [899] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [aux_sym__simple_variable_name_token1] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [sym_variable_name] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [sym_variable_name] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [aux_sym__simple_variable_name_token1] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [900] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [aux_sym__simple_variable_name_token1] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [sym_variable_name] = ACTIONS(1753), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [sym_variable_name] = ACTIONS(1700), + [anon_sym_RPAREN] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [aux_sym__simple_variable_name_token1] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [901] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [aux_sym__simple_variable_name_token1] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [sym_variable_name] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [sym_variable_name] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [aux_sym__simple_variable_name_token1] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [902] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [aux_sym__simple_variable_name_token1] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [sym_variable_name] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [sym_variable_name] = ACTIONS(1821), + [anon_sym_RPAREN] = ACTIONS(1819), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [aux_sym__simple_variable_name_token1] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [903] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [aux_sym__simple_variable_name_token1] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [sym_variable_name] = ACTIONS(1836), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [sym_variable_name] = ACTIONS(1825), + [anon_sym_RPAREN] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [aux_sym__simple_variable_name_token1] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [904] = { - [aux_sym_concatenation_repeat1] = STATE(905), - [sym_word] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(191), - [sym_raw_string] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(189), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_COLON_DASH] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(191), - [sym__concat] = ACTIONS(918), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_GT_LPAREN] = ACTIONS(191), - [sym_ansii_c_string] = ACTIONS(191), - [anon_sym_COLON_QMARK] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(908), + [anon_sym_PERCENT] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(213), + [sym_raw_string] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_COLON_DASH] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_COLON_QMARK] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym__concat] = ACTIONS(895), + [sym_word] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [sym_ansii_c_string] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), }, [905] = { - [aux_sym_concatenation_repeat1] = STATE(914), - [sym_word] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [sym_raw_string] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_EQ] = ACTIONS(355), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_COLON_DASH] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(359), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(359), - [sym__concat] = ACTIONS(2622), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_GT_LPAREN] = ACTIONS(359), - [sym_ansii_c_string] = ACTIONS(359), - [anon_sym_COLON_QMARK] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [anon_sym_RPAREN] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [906] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [aux_sym__simple_variable_name_token1] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [anon_sym_RPAREN] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [aux_sym__simple_variable_name_token1] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [907] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [aux_sym__simple_variable_name_token1] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_POUND] = ACTIONS(419), + [sym_raw_string] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_COLON_DASH] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_COLON_QMARK] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_GT_LPAREN] = ACTIONS(419), + [sym__concat] = ACTIONS(419), + [sym_word] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_LT_LPAREN] = ACTIONS(419), + [sym_ansii_c_string] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), }, [908] = { - [sym_word] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [sym_raw_string] = ACTIONS(421), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(419), - [anon_sym_POUND] = ACTIONS(421), - [anon_sym_COLON_DASH] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(421), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(421), - [sym__concat] = ACTIONS(421), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_GT_LPAREN] = ACTIONS(421), - [sym_ansii_c_string] = ACTIONS(421), - [anon_sym_COLON_QMARK] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(916), + [anon_sym_PERCENT] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(433), + [sym_raw_string] = ACTIONS(433), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_COLON_DASH] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_COLON_QMARK] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(433), + [anon_sym_BQUOTE] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(433), + [anon_sym_GT_LPAREN] = ACTIONS(433), + [sym__concat] = ACTIONS(2684), + [sym_word] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(433), + [anon_sym_LT_LPAREN] = ACTIONS(433), + [sym_ansii_c_string] = ACTIONS(433), + [anon_sym_COLON] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), }, [909] = { - [sym_word] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(581), - [sym_raw_string] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_POUND] = ACTIONS(581), - [anon_sym_COLON_DASH] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(581), - [sym__concat] = ACTIONS(581), - [anon_sym_BQUOTE] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), - [sym_ansii_c_string] = ACTIONS(581), - [anon_sym_COLON_QMARK] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(597), + [sym_raw_string] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_COLON_DASH] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_COLON_QMARK] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_GT_LPAREN] = ACTIONS(597), + [sym__concat] = ACTIONS(597), + [sym_word] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_LT_LPAREN] = ACTIONS(597), + [sym_ansii_c_string] = ACTIONS(597), + [anon_sym_COLON] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), }, [910] = { - [sym_word] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(191), - [sym_raw_string] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(189), - [anon_sym_POUND] = ACTIONS(191), - [anon_sym_COLON_DASH] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(191), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_GT_LPAREN] = ACTIONS(191), - [sym_ansii_c_string] = ACTIONS(191), - [anon_sym_COLON_QMARK] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), + [anon_sym_PERCENT] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(213), + [sym_raw_string] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_COLON_DASH] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_COLON_QMARK] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_word] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [sym_ansii_c_string] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), }, [911] = { [aux_sym__literal_repeat1] = STATE(911), - [sym_word] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(634), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), - [sym_raw_string] = ACTIONS(634), - [anon_sym_COLON] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_PERCENT] = ACTIONS(629), - [anon_sym_EQ] = ACTIONS(629), - [anon_sym_POUND] = ACTIONS(634), - [anon_sym_COLON_DASH] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(634), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_BQUOTE] = ACTIONS(634), - [anon_sym_GT_LPAREN] = ACTIONS(634), - [sym_ansii_c_string] = ACTIONS(634), - [anon_sym_COLON_QMARK] = ACTIONS(629), - [sym__special_character] = ACTIONS(2624), + [anon_sym_PERCENT] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(650), + [sym_raw_string] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_COLON_DASH] = ACTIONS(645), + [anon_sym_EQ] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_COLON_QMARK] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_GT_LPAREN] = ACTIONS(650), + [sym_word] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), + [anon_sym_LT_LPAREN] = ACTIONS(650), + [sym_ansii_c_string] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(645), + [sym__special_character] = ACTIONS(2686), }, [912] = { - [sym_word] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), - [sym_raw_string] = ACTIONS(784), - [anon_sym_COLON] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_RBRACE] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_PERCENT] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(784), - [anon_sym_COLON_DASH] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(784), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(784), - [sym__concat] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(784), - [anon_sym_GT_LPAREN] = ACTIONS(784), - [sym_ansii_c_string] = ACTIONS(784), - [anon_sym_COLON_QMARK] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [913] = { - [sym_command_substitution] = STATE(912), - [sym_simple_expansion] = STATE(912), - [sym_string_expansion] = STATE(912), - [sym_string] = STATE(912), - [sym_process_substitution] = STATE(912), - [sym_expansion] = STATE(912), - [sym_word] = ACTIONS(2627), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(2627), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(2627), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [sym__special_character] = ACTIONS(2627), - [sym_comment] = ACTIONS(19), + [anon_sym_PERCENT] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_COLON_DASH] = ACTIONS(878), + [anon_sym_EQ] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_COLON_QMARK] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym__concat] = ACTIONS(880), + [sym_word] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), }, [914] = { - [aux_sym_concatenation_repeat1] = STATE(914), - [sym_word] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), - [sym_raw_string] = ACTIONS(784), - [anon_sym_COLON] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_RBRACE] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_PERCENT] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(784), - [anon_sym_COLON_DASH] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(784), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(784), - [sym__concat] = ACTIONS(2631), - [anon_sym_BQUOTE] = ACTIONS(784), - [anon_sym_GT_LPAREN] = ACTIONS(784), - [sym_ansii_c_string] = ACTIONS(784), - [anon_sym_COLON_QMARK] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), + [anon_sym_PERCENT] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_COLON_DASH] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_COLON_QMARK] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym__concat] = ACTIONS(884), + [sym_word] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), }, [915] = { - [sym_word] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(862), - [sym_raw_string] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(862), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_PERCENT] = ACTIONS(860), - [anon_sym_EQ] = ACTIONS(860), - [anon_sym_POUND] = ACTIONS(862), - [anon_sym_COLON_DASH] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(862), - [sym__concat] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_ansii_c_string] = ACTIONS(862), - [anon_sym_COLON_QMARK] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), + [sym_command_substitution] = STATE(914), + [sym_simple_expansion] = STATE(914), + [sym_string_expansion] = STATE(914), + [sym_string] = STATE(914), + [sym_process_substitution] = STATE(914), + [sym_expansion] = STATE(914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(453), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2689), + [sym_word] = ACTIONS(2691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(2689), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym__special_character] = ACTIONS(2689), + [sym_number] = ACTIONS(2691), }, [916] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [aux_sym__simple_variable_name_token1] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(916), + [anon_sym_PERCENT] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_COLON_DASH] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_COLON_QMARK] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym__concat] = ACTIONS(2695), + [sym_word] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), }, [917] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [aux_sym__simple_variable_name_token1] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [aux_sym__simple_variable_name_token1] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), }, [918] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [aux_sym__simple_variable_name_token1] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [919] = { - [sym_word] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), - [sym_raw_string] = ACTIONS(1038), - [anon_sym_COLON] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(1038), - [anon_sym_COLON_DASH] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym__concat] = ACTIONS(1038), - [anon_sym_BQUOTE] = ACTIONS(1038), - [anon_sym_GT_LPAREN] = ACTIONS(1038), - [sym_ansii_c_string] = ACTIONS(1038), - [anon_sym_COLON_QMARK] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), + [anon_sym_PERCENT] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_COLON_DASH] = ACTIONS(1063), + [anon_sym_EQ] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_COLON_QMARK] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym__concat] = ACTIONS(1065), + [sym_word] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), }, [920] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [921] = { - [sym_string] = STATE(908), - [sym_word] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1202), - [aux_sym__simple_variable_name_token1] = ACTIONS(2634), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(2636), - [anon_sym_COLON] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(2638), - [anon_sym_DOLLAR] = ACTIONS(2638), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(2640), - [anon_sym_COLON_DASH] = ACTIONS(1198), - [anon_sym_LT_LPAREN] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym__] = ACTIONS(2634), - [anon_sym_AT] = ACTIONS(2634), - [anon_sym_BQUOTE] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(2634), - [anon_sym_GT_LPAREN] = ACTIONS(1202), - [sym_ansii_c_string] = ACTIONS(1202), - [anon_sym_COLON_QMARK] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2634), + [sym_string] = STATE(907), + [anon_sym__] = ACTIONS(2698), + [anon_sym_PERCENT] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2700), + [sym_raw_string] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_DOLLAR] = ACTIONS(2704), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_COLON_DASH] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_COLON_QMARK] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2698), + [sym_word] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2698), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [anon_sym_COLON] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2698), + [sym__special_character] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2698), }, [922] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [aux_sym__simple_variable_name_token1] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [aux_sym__simple_variable_name_token1] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [923] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [aux_sym__simple_variable_name_token1] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [aux_sym__simple_variable_name_token1] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [924] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [aux_sym__simple_variable_name_token1] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [aux_sym__simple_variable_name_token1] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [925] = { - [sym_word] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1367), - [sym_raw_string] = ACTIONS(1367), - [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_EQ] = ACTIONS(1365), - [anon_sym_POUND] = ACTIONS(1367), - [anon_sym_COLON_DASH] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym__concat] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [anon_sym_GT_LPAREN] = ACTIONS(1367), - [sym_ansii_c_string] = ACTIONS(1367), - [anon_sym_COLON_QMARK] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1398), + [sym_raw_string] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_COLON_DASH] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_COLON_QMARK] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1398), + [anon_sym_BQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [anon_sym_GT_LPAREN] = ACTIONS(1398), + [sym__concat] = ACTIONS(1398), + [sym_word] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1398), + [anon_sym_LT_LPAREN] = ACTIONS(1398), + [sym_ansii_c_string] = ACTIONS(1398), + [anon_sym_COLON] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), }, [926] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [aux_sym__simple_variable_name_token1] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [aux_sym__simple_variable_name_token1] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [927] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [aux_sym__simple_variable_name_token1] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [aux_sym__simple_variable_name_token1] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [928] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [aux_sym__simple_variable_name_token1] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [aux_sym__simple_variable_name_token1] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [929] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [aux_sym__simple_variable_name_token1] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [aux_sym__simple_variable_name_token1] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [930] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [aux_sym__simple_variable_name_token1] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [aux_sym__simple_variable_name_token1] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [931] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [aux_sym__simple_variable_name_token1] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [anon_sym_RPAREN] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [aux_sym__simple_variable_name_token1] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [932] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [aux_sym__simple_variable_name_token1] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [anon_sym_RPAREN] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [aux_sym__simple_variable_name_token1] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [933] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [aux_sym__simple_variable_name_token1] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [aux_sym__simple_variable_name_token1] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [934] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [aux_sym__simple_variable_name_token1] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [anon_sym_RPAREN] = ACTIONS(1819), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [aux_sym__simple_variable_name_token1] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [935] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [aux_sym__simple_variable_name_token1] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [anon_sym_RPAREN] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [aux_sym__simple_variable_name_token1] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [936] = { - [aux_sym_concatenation_repeat1] = STATE(937), - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(940), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [937] = { - [aux_sym_concatenation_repeat1] = STATE(946), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2642), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [sym_variable_name] = ACTIONS(359), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [ts_builtin_sym_end] = ACTIONS(359), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [anon_sym_PERCENT] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(411), + [sym_raw_string] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_COLON_DASH] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_COLON_QMARK] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_GT_LPAREN] = ACTIONS(411), + [sym__concat] = ACTIONS(411), + [sym_word] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), + [anon_sym_LT_LPAREN] = ACTIONS(411), + [sym_ansii_c_string] = ACTIONS(411), + [anon_sym_COLON] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), }, [938] = { - [sym_word] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [anon_sym_COLON] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_PERCENT] = ACTIONS(411), - [anon_sym_EQ] = ACTIONS(411), - [anon_sym_POUND] = ACTIONS(413), - [anon_sym_COLON_DASH] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym__concat] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_COLON_QMARK] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), + [anon_sym_POUND] = ACTIONS(415), + [sym_raw_string] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_COLON_DASH] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_COLON_QMARK] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), + [anon_sym_BQUOTE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_GT_LPAREN] = ACTIONS(415), + [sym__concat] = ACTIONS(415), + [sym_word] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), + [anon_sym_LT_LPAREN] = ACTIONS(415), + [sym_ansii_c_string] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), }, [939] = { - [sym_word] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [anon_sym_COLON] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(415), - [anon_sym_EQ] = ACTIONS(415), - [anon_sym_POUND] = ACTIONS(417), - [anon_sym_COLON_DASH] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(417), - [sym__concat] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), [anon_sym_BQUOTE] = ACTIONS(417), [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_COLON_QMARK] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - }, - [940] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [sym_variable_name] = ACTIONS(421), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [ts_builtin_sym_end] = ACTIONS(421), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [sym_variable_name] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [ts_builtin_sym_end] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), + }, + [940] = { + [aux_sym_concatenation_repeat1] = STATE(948), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [sym_variable_name] = ACTIONS(433), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [ts_builtin_sym_end] = ACTIONS(433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [941] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [sym_variable_name] = ACTIONS(581), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [ts_builtin_sym_end] = ACTIONS(581), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_variable_name] = ACTIONS(597), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [ts_builtin_sym_end] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [942] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [943] = { [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [sym__special_character] = ACTIONS(2644), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [sym_variable_name] = ACTIONS(634), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [ts_builtin_sym_end] = ACTIONS(634), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [sym__special_character] = ACTIONS(2708), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [sym_variable_name] = ACTIONS(650), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [ts_builtin_sym_end] = ACTIONS(650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [944] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [ts_builtin_sym_end] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_PERCENT] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_COLON_DASH] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_COLON_QMARK] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym__concat] = ACTIONS(876), + [sym_word] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_COLON] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), }, [945] = { - [sym_command_substitution] = STATE(944), - [sym_simple_expansion] = STATE(944), - [sym_string_expansion] = STATE(944), - [sym_string] = STATE(944), - [sym_process_substitution] = STATE(944), - [sym_expansion] = STATE(944), - [sym_word] = ACTIONS(2647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(551), - [anon_sym_DQUOTE] = ACTIONS(547), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(549), - [sym_raw_string] = ACTIONS(2647), - [anon_sym_BQUOTE] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_GT_LPAREN] = ACTIONS(557), - [sym_ansii_c_string] = ACTIONS(2647), - [anon_sym_LT_LPAREN] = ACTIONS(557), - [sym__special_character] = ACTIONS(2647), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [sym_variable_name] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [ts_builtin_sym_end] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), }, [946] = { - [aux_sym_concatenation_repeat1] = STATE(946), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2651), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [ts_builtin_sym_end] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [947] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [sym_variable_name] = ACTIONS(862), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [ts_builtin_sym_end] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), + [sym_command_substitution] = STATE(946), + [sym_simple_expansion] = STATE(946), + [sym_string_expansion] = STATE(946), + [sym_string] = STATE(946), + [sym_process_substitution] = STATE(946), + [sym_expansion] = STATE(946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2711), + [sym_word] = ACTIONS(2713), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), + [anon_sym_DOLLAR] = ACTIONS(2715), + [anon_sym_LT_LPAREN] = ACTIONS(563), + [sym_ansii_c_string] = ACTIONS(2711), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_GT_LPAREN] = ACTIONS(563), + [sym__special_character] = ACTIONS(2711), + [sym_number] = ACTIONS(2713), }, [948] = { - [sym_word] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(922), - [sym_raw_string] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(922), - [anon_sym_COLON_DASH] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__concat] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(922), - [anon_sym_GT_LPAREN] = ACTIONS(922), - [sym_ansii_c_string] = ACTIONS(922), - [anon_sym_COLON_QMARK] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(948), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [949] = { - [sym_word] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), - [sym_raw_string] = ACTIONS(972), - [anon_sym_COLON] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PERCENT] = ACTIONS(970), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(972), - [anon_sym_COLON_DASH] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_GT_LPAREN] = ACTIONS(972), - [sym_ansii_c_string] = ACTIONS(972), - [anon_sym_COLON_QMARK] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_COLON_DASH] = ACTIONS(905), + [anon_sym_EQ] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_COLON_QMARK] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym__concat] = ACTIONS(907), + [sym_word] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), }, [950] = { - [sym_word] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1034), - [anon_sym_COLON] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PERCENT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(1034), - [anon_sym_COLON_DASH] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1034), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1034), - [anon_sym_GT_LPAREN] = ACTIONS(1034), - [sym_ansii_c_string] = ACTIONS(1034), - [anon_sym_COLON_QMARK] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_COLON_DASH] = ACTIONS(957), + [anon_sym_EQ] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_COLON_QMARK] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym__concat] = ACTIONS(959), + [sym_word] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_COLON] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), }, [951] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [sym_variable_name] = ACTIONS(1038), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [ts_builtin_sym_end] = ACTIONS(1038), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [sym_variable_name] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [ts_builtin_sym_end] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [952] = { - [sym_word] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1034), - [anon_sym_COLON] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PERCENT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(1034), - [anon_sym_COLON_DASH] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1034), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1034), - [anon_sym_GT_LPAREN] = ACTIONS(1034), - [sym_ansii_c_string] = ACTIONS(1034), - [anon_sym_COLON_QMARK] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_COLON_DASH] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_COLON_QMARK] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym__concat] = ACTIONS(876), + [sym_word] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_COLON] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), }, [953] = { - [sym_string] = STATE(940), - [sym_word] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2654), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2656), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2654), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2656), - [sym_variable_name] = ACTIONS(1202), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(2654), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [ts_builtin_sym_end] = ACTIONS(1202), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2654), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(939), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym__] = ACTIONS(2720), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2720), + [anon_sym_DOLLAR] = ACTIONS(2722), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(2722), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2720), + [sym__special_character] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [sym_raw_string] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(2722), + [sym_variable_name] = ACTIONS(1227), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [ts_builtin_sym_end] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2720), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [sym_ansii_c_string] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [954] = { - [sym_word] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1254), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(1254), - [anon_sym_COLON_DASH] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym__concat] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1254), - [anon_sym_GT_LPAREN] = ACTIONS(1254), - [sym_ansii_c_string] = ACTIONS(1254), - [anon_sym_COLON_QMARK] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), + [anon_sym_PERCENT] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1233), + [sym_raw_string] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_COLON_DASH] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_COLON_QMARK] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), + [anon_sym_BQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [anon_sym_GT_LPAREN] = ACTIONS(1233), + [sym__concat] = ACTIONS(1233), + [sym_word] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), + [anon_sym_LT_LPAREN] = ACTIONS(1233), + [sym_ansii_c_string] = ACTIONS(1233), + [anon_sym_COLON] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), }, [955] = { - [sym_word] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), - [sym_raw_string] = ACTIONS(1303), - [anon_sym_COLON] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PERCENT] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1301), - [anon_sym_POUND] = ACTIONS(1303), - [anon_sym_COLON_DASH] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1303), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1303), - [sym__concat] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1303), - [anon_sym_GT_LPAREN] = ACTIONS(1303), - [sym_ansii_c_string] = ACTIONS(1303), - [anon_sym_COLON_QMARK] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), + [anon_sym_PERCENT] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1292), + [sym_raw_string] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_COLON_DASH] = ACTIONS(1290), + [anon_sym_EQ] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_COLON_QMARK] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [anon_sym_GT_LPAREN] = ACTIONS(1292), + [sym__concat] = ACTIONS(1292), + [sym_word] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_LT_LPAREN] = ACTIONS(1292), + [sym_ansii_c_string] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), }, [956] = { - [sym_word] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1321), - [sym_raw_string] = ACTIONS(1321), - [anon_sym_COLON] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_COLON_DASH] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym__concat] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_GT_LPAREN] = ACTIONS(1321), - [sym_ansii_c_string] = ACTIONS(1321), - [anon_sym_COLON_QMARK] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1302), + [sym_raw_string] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_COLON_DASH] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_COLON_QMARK] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), + [anon_sym_BQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [anon_sym_GT_LPAREN] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), + [sym_word] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), + [anon_sym_LT_LPAREN] = ACTIONS(1302), + [sym_ansii_c_string] = ACTIONS(1302), + [anon_sym_COLON] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), }, [957] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [sym_variable_name] = ACTIONS(1367), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [ts_builtin_sym_end] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [sym_variable_name] = ACTIONS(1398), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1398), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [958] = { - [sym_word] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1552), - [sym_raw_string] = ACTIONS(1552), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_PERCENT] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1552), - [anon_sym_COLON_DASH] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1552), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__concat] = ACTIONS(1552), - [anon_sym_BQUOTE] = ACTIONS(1552), - [anon_sym_GT_LPAREN] = ACTIONS(1552), - [sym_ansii_c_string] = ACTIONS(1552), - [anon_sym_COLON_QMARK] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), + [anon_sym_PERCENT] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1456), + [sym_raw_string] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_COLON_DASH] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_COLON_QMARK] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [anon_sym_GT_LPAREN] = ACTIONS(1456), + [sym__concat] = ACTIONS(1456), + [sym_word] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1456), + [anon_sym_LT_LPAREN] = ACTIONS(1456), + [sym_ansii_c_string] = ACTIONS(1456), + [anon_sym_COLON] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), }, [959] = { - [sym_word] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1564), - [sym_raw_string] = ACTIONS(1564), - [anon_sym_COLON] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_COLON_DASH] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1564), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym__concat] = ACTIONS(1564), - [anon_sym_BQUOTE] = ACTIONS(1564), - [anon_sym_GT_LPAREN] = ACTIONS(1564), - [sym_ansii_c_string] = ACTIONS(1564), - [anon_sym_COLON_QMARK] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), + [anon_sym_PERCENT] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1468), + [sym_raw_string] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_COLON_DASH] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_COLON_QMARK] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_GT_LPAREN] = ACTIONS(1468), + [sym__concat] = ACTIONS(1468), + [sym_word] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1468), + [anon_sym_LT_LPAREN] = ACTIONS(1468), + [sym_ansii_c_string] = ACTIONS(1468), + [anon_sym_COLON] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), }, [960] = { - [sym_word] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1574), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1574), - [sym_raw_string] = ACTIONS(1574), - [anon_sym_COLON] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_PERCENT] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(1574), - [anon_sym_COLON_DASH] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1574), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1574), - [sym__concat] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1574), - [anon_sym_GT_LPAREN] = ACTIONS(1574), - [sym_ansii_c_string] = ACTIONS(1574), - [anon_sym_COLON_QMARK] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), + [anon_sym_PERCENT] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1478), + [sym_raw_string] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_COLON_DASH] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_COLON_QMARK] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [anon_sym_GT_LPAREN] = ACTIONS(1478), + [sym__concat] = ACTIONS(1478), + [sym_word] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1478), + [anon_sym_LT_LPAREN] = ACTIONS(1478), + [sym_ansii_c_string] = ACTIONS(1478), + [anon_sym_COLON] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), }, [961] = { - [sym_word] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1578), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1578), - [sym_raw_string] = ACTIONS(1578), - [anon_sym_COLON] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_PERCENT] = ACTIONS(1576), - [anon_sym_EQ] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(1578), - [anon_sym_COLON_DASH] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1578), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1578), - [sym__concat] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1578), - [anon_sym_GT_LPAREN] = ACTIONS(1578), - [sym_ansii_c_string] = ACTIONS(1578), - [anon_sym_COLON_QMARK] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), + [anon_sym_PERCENT] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1482), + [sym_raw_string] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_COLON_DASH] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_COLON_QMARK] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [anon_sym_GT_LPAREN] = ACTIONS(1482), + [sym__concat] = ACTIONS(1482), + [sym_word] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), + [anon_sym_LT_LPAREN] = ACTIONS(1482), + [sym_ansii_c_string] = ACTIONS(1482), + [anon_sym_COLON] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), }, [962] = { - [sym_word] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1743), - [sym_raw_string] = ACTIONS(1743), - [anon_sym_COLON] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(1741), - [anon_sym_EQ] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(1743), - [anon_sym_COLON_DASH] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1743), - [sym__concat] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1743), - [anon_sym_GT_LPAREN] = ACTIONS(1743), - [sym_ansii_c_string] = ACTIONS(1743), - [anon_sym_COLON_QMARK] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), + [anon_sym_PERCENT] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1690), + [sym_raw_string] = ACTIONS(1690), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_COLON_DASH] = ACTIONS(1688), + [anon_sym_EQ] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_COLON_QMARK] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1690), + [anon_sym_BQUOTE] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_GT_LPAREN] = ACTIONS(1690), + [sym__concat] = ACTIONS(1690), + [sym_word] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1690), + [anon_sym_LT_LPAREN] = ACTIONS(1690), + [sym_ansii_c_string] = ACTIONS(1690), + [anon_sym_COLON] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), }, [963] = { - [sym_word] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1749), - [sym_raw_string] = ACTIONS(1749), - [anon_sym_COLON] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_PERCENT] = ACTIONS(1747), - [anon_sym_EQ] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(1749), - [anon_sym_COLON_DASH] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1749), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym__concat] = ACTIONS(1749), - [anon_sym_BQUOTE] = ACTIONS(1749), - [anon_sym_GT_LPAREN] = ACTIONS(1749), - [sym_ansii_c_string] = ACTIONS(1749), - [anon_sym_COLON_QMARK] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), + [anon_sym_PERCENT] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1696), + [sym_raw_string] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_COLON_DASH] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_COLON_QMARK] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_GT_LPAREN] = ACTIONS(1696), + [sym__concat] = ACTIONS(1696), + [sym_word] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), + [anon_sym_LT_LPAREN] = ACTIONS(1696), + [sym_ansii_c_string] = ACTIONS(1696), + [anon_sym_COLON] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), }, [964] = { - [sym_word] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1753), - [sym_raw_string] = ACTIONS(1753), - [anon_sym_COLON] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_PERCENT] = ACTIONS(1751), - [anon_sym_EQ] = ACTIONS(1751), - [anon_sym_POUND] = ACTIONS(1753), - [anon_sym_COLON_DASH] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1753), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1753), - [sym__concat] = ACTIONS(1753), - [anon_sym_BQUOTE] = ACTIONS(1753), - [anon_sym_GT_LPAREN] = ACTIONS(1753), - [sym_ansii_c_string] = ACTIONS(1753), - [anon_sym_COLON_QMARK] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), + [anon_sym_PERCENT] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1700), + [sym_raw_string] = ACTIONS(1700), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_COLON_DASH] = ACTIONS(1698), + [anon_sym_EQ] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_COLON_QMARK] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1700), + [anon_sym_DQUOTE] = ACTIONS(1700), + [anon_sym_GT_LPAREN] = ACTIONS(1700), + [sym__concat] = ACTIONS(1700), + [sym_word] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), + [anon_sym_LT_LPAREN] = ACTIONS(1700), + [sym_ansii_c_string] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), }, [965] = { - [sym_word] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1759), - [sym_raw_string] = ACTIONS(1759), - [anon_sym_COLON] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_PERCENT] = ACTIONS(1757), - [anon_sym_EQ] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_COLON_DASH] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__concat] = ACTIONS(1759), - [anon_sym_BQUOTE] = ACTIONS(1759), - [anon_sym_GT_LPAREN] = ACTIONS(1759), - [sym_ansii_c_string] = ACTIONS(1759), - [anon_sym_COLON_QMARK] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), + [anon_sym_PERCENT] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1706), + [sym_raw_string] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_COLON_DASH] = ACTIONS(1704), + [anon_sym_EQ] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_COLON_QMARK] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), + [anon_sym_BQUOTE] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_GT_LPAREN] = ACTIONS(1706), + [sym__concat] = ACTIONS(1706), + [sym_word] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1706), + [anon_sym_LT_LPAREN] = ACTIONS(1706), + [sym_ansii_c_string] = ACTIONS(1706), + [anon_sym_COLON] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), }, [966] = { - [sym_word] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_COLON] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PERCENT] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1832), - [anon_sym_COLON_DASH] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_ansii_c_string] = ACTIONS(1832), - [anon_sym_COLON_QMARK] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), + [anon_sym_PERCENT] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1821), + [sym_raw_string] = ACTIONS(1821), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_COLON_DASH] = ACTIONS(1819), + [anon_sym_EQ] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_COLON_QMARK] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), + [anon_sym_BQUOTE] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_GT_LPAREN] = ACTIONS(1821), + [sym__concat] = ACTIONS(1821), + [sym_word] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), + [anon_sym_LT_LPAREN] = ACTIONS(1821), + [sym_ansii_c_string] = ACTIONS(1821), + [anon_sym_COLON] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), }, [967] = { - [sym_word] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1836), - [sym_raw_string] = ACTIONS(1836), - [anon_sym_COLON] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1836), - [anon_sym_COLON_DASH] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1836), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym__concat] = ACTIONS(1836), - [anon_sym_BQUOTE] = ACTIONS(1836), - [anon_sym_GT_LPAREN] = ACTIONS(1836), - [sym_ansii_c_string] = ACTIONS(1836), - [anon_sym_COLON_QMARK] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), + [anon_sym_PERCENT] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1825), + [sym_raw_string] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_COLON_DASH] = ACTIONS(1823), + [anon_sym_EQ] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_COLON_QMARK] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1825), + [anon_sym_BQUOTE] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [anon_sym_GT_LPAREN] = ACTIONS(1825), + [sym__concat] = ACTIONS(1825), + [sym_word] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1825), + [anon_sym_LT_LPAREN] = ACTIONS(1825), + [sym_ansii_c_string] = ACTIONS(1825), + [anon_sym_COLON] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), }, [968] = { [aux_sym_concatenation_repeat1] = STATE(2432), - [anon_sym_RBRACK] = ACTIONS(191), - [sym__concat] = ACTIONS(191), - [sym__special_character] = ACTIONS(189), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(213), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(213), + [sym__special_character] = ACTIONS(211), }, [969] = { - [aux_sym_concatenation_repeat1] = STATE(978), - [anon_sym_BANG_EQ] = ACTIONS(355), - [anon_sym_PLUS_EQ] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(355), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_PLUS_PLUS] = ACTIONS(355), - [anon_sym_DASH] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_EQ] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [sym__concat] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [sym_test_operator] = ACTIONS(355), - [anon_sym_EQ_TILDE] = ACTIONS(355), - [anon_sym_DASH_DASH] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_variable_name] = ACTIONS(411), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [ts_builtin_sym_end] = ACTIONS(411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [970] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [sym_variable_name] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [ts_builtin_sym_end] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_variable_name] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [ts_builtin_sym_end] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [971] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_BANG_EQ] = ACTIONS(417), + [anon_sym_PLUS_EQ] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_variable_name] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [ts_builtin_sym_end] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_PLUS_PLUS] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(417), + [sym_test_operator] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_EQ_TILDE] = ACTIONS(417), + [anon_sym_DASH_DASH] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_DASH_EQ] = ACTIONS(417), }, [972] = { - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(980), + [anon_sym_BANG_EQ] = ACTIONS(429), + [anon_sym_PLUS_EQ] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT_EQ] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [sym_test_operator] = ACTIONS(419), - [anon_sym_EQ_TILDE] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_LF] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(429), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(429), + [sym_test_operator] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [anon_sym_GT_EQ] = ACTIONS(429), + [sym__concat] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_EQ_TILDE] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_LT_EQ] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_DASH_EQ] = ACTIONS(429), }, [973] = { - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_PLUS_EQ] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_PLUS_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [sym_test_operator] = ACTIONS(579), - [anon_sym_EQ_TILDE] = ACTIONS(579), - [anon_sym_DASH_DASH] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(595), + [sym_test_operator] = ACTIONS(595), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_EQ_TILDE] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), }, [974] = { - [anon_sym_RBRACK] = ACTIONS(191), - [sym__concat] = ACTIONS(191), - [sym__special_character] = ACTIONS(189), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(213), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(213), + [sym__special_character] = ACTIONS(211), }, [975] = { [aux_sym__literal_repeat1] = STATE(975), - [anon_sym_RBRACK] = ACTIONS(634), - [sym__concat] = ACTIONS(634), - [sym__special_character] = ACTIONS(2664), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(650), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(650), + [sym__special_character] = ACTIONS(2730), }, [976] = { - [anon_sym_BANG_EQ] = ACTIONS(782), - [anon_sym_PLUS_EQ] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(782), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(782), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [anon_sym_GT_EQ] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [sym_test_operator] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_LT_EQ] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_DASH_EQ] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [977] = { - [sym_command_substitution] = STATE(976), - [sym_simple_expansion] = STATE(976), - [sym_string_expansion] = STATE(976), - [sym_string] = STATE(976), - [sym_process_substitution] = STATE(976), - [sym_expansion] = STATE(976), - [sym_word] = ACTIONS(2667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), - [sym_raw_string] = ACTIONS(2667), - [anon_sym_BQUOTE] = ACTIONS(2252), - [anon_sym_DOLLAR] = ACTIONS(2669), - [anon_sym_GT_LPAREN] = ACTIONS(2246), - [sym_ansii_c_string] = ACTIONS(2667), - [anon_sym_LT_LPAREN] = ACTIONS(2246), - [sym__special_character] = ACTIONS(2667), - [sym_comment] = ACTIONS(19), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_EQ] = ACTIONS(878), + [sym_test_operator] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_EQ_TILDE] = ACTIONS(878), + [anon_sym_DASH_DASH] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), }, [978] = { - [aux_sym_concatenation_repeat1] = STATE(978), - [anon_sym_BANG_EQ] = ACTIONS(782), - [anon_sym_PLUS_EQ] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(782), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(782), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [anon_sym_GT_EQ] = ACTIONS(782), - [sym__concat] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [sym_test_operator] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_LT_EQ] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_DASH_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(882), + [anon_sym_PLUS_EQ] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_PLUS_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [sym_test_operator] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_DASH_EQ] = ACTIONS(882), }, [979] = { - [anon_sym_BANG_EQ] = ACTIONS(860), - [anon_sym_PLUS_EQ] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_PLUS_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_EQ] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(860), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [sym_test_operator] = ACTIONS(860), - [anon_sym_EQ_TILDE] = ACTIONS(860), - [anon_sym_DASH_DASH] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_DASH_EQ] = ACTIONS(860), + [sym_command_substitution] = STATE(978), + [sym_simple_expansion] = STATE(978), + [sym_string_expansion] = STATE(978), + [sym_string] = STATE(978), + [sym_process_substitution] = STATE(978), + [sym_expansion] = STATE(978), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2733), + [sym_word] = ACTIONS(2735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2298), + [anon_sym_DOLLAR] = ACTIONS(2737), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [sym_ansii_c_string] = ACTIONS(2733), + [anon_sym_BQUOTE] = ACTIONS(2290), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym__special_character] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), }, [980] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [sym_variable_name] = ACTIONS(922), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(980), + [anon_sym_BANG_EQ] = ACTIONS(882), + [anon_sym_PLUS_EQ] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_PLUS_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [sym_test_operator] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(882), + [sym__concat] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_DASH_EQ] = ACTIONS(882), }, [981] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [sym_variable_name] = ACTIONS(972), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [ts_builtin_sym_end] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [sym_variable_name] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [ts_builtin_sym_end] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), }, [982] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [sym_variable_name] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [ts_builtin_sym_end] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [983] = { - [anon_sym_BANG_EQ] = ACTIONS(1036), - [anon_sym_PLUS_EQ] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PLUS_PLUS] = ACTIONS(1036), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [anon_sym_GT_EQ] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [sym_test_operator] = ACTIONS(1036), - [anon_sym_EQ_TILDE] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_EQ] = ACTIONS(1063), + [sym_test_operator] = ACTIONS(1063), + [anon_sym_EQ_EQ] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [anon_sym_GT_EQ] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_EQ_TILDE] = ACTIONS(1063), + [anon_sym_DASH_DASH] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_LT_EQ] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_DASH_EQ] = ACTIONS(1063), }, [984] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [985] = { - [sym_string] = STATE(812), - [aux_sym__simple_variable_name_token1] = ACTIONS(2560), - [sym_raw_string] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_RBRACK] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(2556), - [anon_sym_QMARK] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2556), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym__concat] = ACTIONS(1202), - [anon_sym_AT] = ACTIONS(2562), - [anon_sym__] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_0] = ACTIONS(2560), + [sym_string] = STATE(811), + [anon_sym__] = ACTIONS(2614), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2616), + [sym_raw_string] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(2616), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym__concat] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2620), + [anon_sym_0] = ACTIONS(2614), + [aux_sym__simple_variable_name_token1] = ACTIONS(2614), + [anon_sym_QMARK] = ACTIONS(2620), }, [986] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_variable_name] = ACTIONS(1254), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_variable_name] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [ts_builtin_sym_end] = ACTIONS(1233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [987] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [sym_variable_name] = ACTIONS(1303), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [ts_builtin_sym_end] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_variable_name] = ACTIONS(1292), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [988] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [sym_variable_name] = ACTIONS(1321), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [ts_builtin_sym_end] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_variable_name] = ACTIONS(1302), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [989] = { - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_EQ] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [sym_test_operator] = ACTIONS(1365), - [anon_sym_EQ_TILDE] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1396), + [anon_sym_PLUS_EQ] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1396), + [sym_test_operator] = ACTIONS(1396), + [anon_sym_EQ_EQ] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [anon_sym_GT_EQ] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_EQ_TILDE] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_LT_EQ] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_DASH_EQ] = ACTIONS(1396), }, [990] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [sym_variable_name] = ACTIONS(1552), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [sym_variable_name] = ACTIONS(1456), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [991] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [sym_variable_name] = ACTIONS(1564), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [ts_builtin_sym_end] = ACTIONS(1564), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [sym_variable_name] = ACTIONS(1468), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [992] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [sym_variable_name] = ACTIONS(1574), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [ts_builtin_sym_end] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_variable_name] = ACTIONS(1478), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [993] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [sym_variable_name] = ACTIONS(1578), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [ts_builtin_sym_end] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [sym_variable_name] = ACTIONS(1482), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [994] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [sym_variable_name] = ACTIONS(1743), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [ts_builtin_sym_end] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [sym_variable_name] = ACTIONS(1690), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [ts_builtin_sym_end] = ACTIONS(1690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [995] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [sym_variable_name] = ACTIONS(1749), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [ts_builtin_sym_end] = ACTIONS(1749), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [sym_variable_name] = ACTIONS(1696), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [996] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [sym_variable_name] = ACTIONS(1753), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [ts_builtin_sym_end] = ACTIONS(1753), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [sym_variable_name] = ACTIONS(1700), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [997] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [sym_variable_name] = ACTIONS(1759), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [ts_builtin_sym_end] = ACTIONS(1759), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [sym_variable_name] = ACTIONS(1706), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [998] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [sym_variable_name] = ACTIONS(1832), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [sym_variable_name] = ACTIONS(1821), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [ts_builtin_sym_end] = ACTIONS(1821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [999] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [sym_variable_name] = ACTIONS(1836), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [ts_builtin_sym_end] = ACTIONS(1836), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [sym_variable_name] = ACTIONS(1825), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [ts_builtin_sym_end] = ACTIONS(1825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [1000] = { - [aux_sym_concatenation_repeat1] = STATE(969), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_PLUS_EQ] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [sym__concat] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [sym_test_operator] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_DASH_EQ] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(972), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_PLUS_EQ] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_LF] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(211), + [sym_test_operator] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [sym__concat] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(211), }, [1001] = { - [aux_sym_concatenation_repeat1] = STATE(1010), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP_GT] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [ts_builtin_sym_end] = ACTIONS(359), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [sym__concat] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(409), + [anon_sym_PLUS_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(409), + [sym_test_operator] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_EQ_TILDE] = ACTIONS(409), + [anon_sym_DASH_DASH] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_LT_EQ] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_DASH_EQ] = ACTIONS(409), }, [1002] = { - [anon_sym_BANG_EQ] = ACTIONS(411), - [anon_sym_PLUS_EQ] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_PLUS_PLUS] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_EQ] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [anon_sym_GT_EQ] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [sym_test_operator] = ACTIONS(411), - [anon_sym_EQ_TILDE] = ACTIONS(411), - [anon_sym_DASH_DASH] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_LT_EQ] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_PLUS_PLUS] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(413), + [sym_test_operator] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_EQ_TILDE] = ACTIONS(413), + [anon_sym_DASH_DASH] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_DASH_EQ] = ACTIONS(413), }, [1003] = { - [anon_sym_BANG_EQ] = ACTIONS(415), - [anon_sym_PLUS_EQ] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_EQ] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), + [anon_sym_LT_LT_DASH] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_GT_EQ] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [sym_test_operator] = ACTIONS(415), - [anon_sym_EQ_TILDE] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_DASH_EQ] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [ts_builtin_sym_end] = ACTIONS(419), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [1004] = { - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP_GT] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [ts_builtin_sym_end] = ACTIONS(421), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(1012), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [ts_builtin_sym_end] = ACTIONS(433), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [sym__concat] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [1005] = { - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP_GT] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [ts_builtin_sym_end] = ACTIONS(581), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [ts_builtin_sym_end] = ACTIONS(597), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [1006] = { - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_PLUS_EQ] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_PLUS_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [sym_test_operator] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_DASH_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_PLUS_EQ] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_LF] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_EQ] = ACTIONS(211), + [sym_test_operator] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(211), }, [1007] = { [aux_sym__literal_repeat1] = STATE(1007), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_PLUS_EQ] = ACTIONS(629), - [sym__special_character] = ACTIONS(2676), - [anon_sym_LF] = ACTIONS(629), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_PLUS_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_EQ] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [sym_test_operator] = ACTIONS(629), - [anon_sym_EQ_TILDE] = ACTIONS(629), - [anon_sym_DASH_DASH] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_DASH_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(645), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [sym__special_character] = ACTIONS(2744), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_LF] = ACTIONS(645), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_EQ] = ACTIONS(645), + [sym_test_operator] = ACTIONS(645), + [anon_sym_EQ_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_GT_EQ] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_EQ_TILDE] = ACTIONS(645), + [anon_sym_DASH_DASH] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_LT_EQ] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), }, [1008] = { - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [ts_builtin_sym_end] = ACTIONS(784), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_PLUS_EQ] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(874), + [sym_test_operator] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [anon_sym_DASH_DASH] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_DASH_EQ] = ACTIONS(874), }, [1009] = { - [sym_command_substitution] = STATE(1008), - [sym_simple_expansion] = STATE(1008), - [sym_string_expansion] = STATE(1008), - [sym_string] = STATE(1008), - [sym_process_substitution] = STATE(1008), - [sym_expansion] = STATE(1008), - [sym_word] = ACTIONS(2679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [sym_raw_string] = ACTIONS(2679), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_DOLLAR] = ACTIONS(2681), - [anon_sym_GT_LPAREN] = ACTIONS(660), - [sym_ansii_c_string] = ACTIONS(2679), - [anon_sym_LT_LPAREN] = ACTIONS(660), - [sym__special_character] = ACTIONS(2679), - [sym_comment] = ACTIONS(19), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [ts_builtin_sym_end] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), }, [1010] = { - [aux_sym_concatenation_repeat1] = STATE(1010), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [ts_builtin_sym_end] = ACTIONS(784), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__concat] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1011] = { - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP_GT] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [ts_builtin_sym_end] = ACTIONS(862), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), + [sym_command_substitution] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_string_expansion] = STATE(1010), + [sym_string] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [sym_expansion] = STATE(1010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2747), + [sym_word] = ACTIONS(2749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(2751), + [anon_sym_LT_LPAREN] = ACTIONS(676), + [sym_ansii_c_string] = ACTIONS(2747), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_GT_LPAREN] = ACTIONS(676), + [sym__special_character] = ACTIONS(2747), + [sym_number] = ACTIONS(2749), }, [1012] = { - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_PLUS_EQ] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [anon_sym_GT_EQ] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [sym_test_operator] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_DASH_EQ] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(1012), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__concat] = ACTIONS(2753), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1013] = { - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [sym_test_operator] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_DASH_EQ] = ACTIONS(970), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_PLUS_EQ] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_EQ] = ACTIONS(905), + [sym_test_operator] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_EQ_TILDE] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_DASH_EQ] = ACTIONS(905), }, [1014] = { - [anon_sym_BANG_EQ] = ACTIONS(1032), - [anon_sym_PLUS_EQ] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [anon_sym_GT_EQ] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [sym_test_operator] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_LT_EQ] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_DASH_EQ] = ACTIONS(1032), + [anon_sym_BANG_EQ] = ACTIONS(957), + [anon_sym_PLUS_EQ] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_EQ] = ACTIONS(957), + [sym_test_operator] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_GT_EQ] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_EQ_TILDE] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_LT_EQ] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_DASH_EQ] = ACTIONS(957), }, [1015] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP_GT] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [ts_builtin_sym_end] = ACTIONS(1038), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [ts_builtin_sym_end] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [1016] = { - [anon_sym_BANG_EQ] = ACTIONS(1032), - [anon_sym_PLUS_EQ] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [anon_sym_GT_EQ] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [sym_test_operator] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_LT_EQ] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_DASH_EQ] = ACTIONS(1032), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_PLUS_EQ] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(874), + [sym_test_operator] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [anon_sym_DASH_DASH] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_DASH_EQ] = ACTIONS(874), }, [1017] = { - [sym_string] = STATE(972), - [anon_sym_PLUS_EQ] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2686), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2686), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2688), - [anon_sym_AT] = ACTIONS(2688), - [sym_test_operator] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_DASH_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2688), - [anon_sym_LF] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(2686), - [sym_raw_string] = ACTIONS(2690), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2688), + [sym_string] = STATE(971), + [anon_sym__] = ACTIONS(2756), + [anon_sym_PLUS_EQ] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym_DASH_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2760), + [anon_sym_AT] = ACTIONS(2756), + [sym_test_operator] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), }, [1018] = { - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [sym_test_operator] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [sym_test_operator] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), }, [1019] = { - [anon_sym_BANG_EQ] = ACTIONS(1301), - [anon_sym_PLUS_EQ] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_GT_EQ] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [sym_test_operator] = ACTIONS(1301), - [anon_sym_EQ_TILDE] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_LT_EQ] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_DASH_EQ] = ACTIONS(1301), + [anon_sym_BANG_EQ] = ACTIONS(1290), + [anon_sym_PLUS_EQ] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_EQ] = ACTIONS(1290), + [sym_test_operator] = ACTIONS(1290), + [anon_sym_EQ_EQ] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [anon_sym_GT_EQ] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_EQ_TILDE] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_LT_EQ] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_DASH_EQ] = ACTIONS(1290), }, [1020] = { - [anon_sym_BANG_EQ] = ACTIONS(1319), - [anon_sym_PLUS_EQ] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1319), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [anon_sym_GT_EQ] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [sym_test_operator] = ACTIONS(1319), - [anon_sym_EQ_TILDE] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_LT_EQ] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [sym_test_operator] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), }, [1021] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP_GT] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [ts_builtin_sym_end] = ACTIONS(1367), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1398), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [1022] = { - [anon_sym_BANG_EQ] = ACTIONS(1550), - [anon_sym_PLUS_EQ] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1550), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [sym_test_operator] = ACTIONS(1550), - [anon_sym_EQ_TILDE] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_DASH_EQ] = ACTIONS(1550), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_PLUS_EQ] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [sym_test_operator] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [anon_sym_GT_EQ] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_EQ_TILDE] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_LT_EQ] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_DASH_EQ] = ACTIONS(1454), }, [1023] = { - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_PLUS_EQ] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [anon_sym_GT_EQ] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [sym_test_operator] = ACTIONS(1562), - [anon_sym_EQ_TILDE] = ACTIONS(1562), - [anon_sym_DASH_DASH] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_LT_EQ] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_DASH_EQ] = ACTIONS(1562), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1466), + [sym_test_operator] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_GT_EQ] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_EQ_TILDE] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_LT_EQ] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), }, [1024] = { - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_PLUS_EQ] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [anon_sym_GT_EQ] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [sym_test_operator] = ACTIONS(1572), - [anon_sym_EQ_TILDE] = ACTIONS(1572), - [anon_sym_DASH_DASH] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_DASH_EQ] = ACTIONS(1572), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_PLUS_EQ] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [sym_test_operator] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [anon_sym_GT_EQ] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_EQ_TILDE] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_DASH_EQ] = ACTIONS(1476), }, [1025] = { - [anon_sym_BANG_EQ] = ACTIONS(1576), - [anon_sym_PLUS_EQ] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_EQ] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1576), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [anon_sym_GT_EQ] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [sym_test_operator] = ACTIONS(1576), - [anon_sym_EQ_TILDE] = ACTIONS(1576), - [anon_sym_DASH_DASH] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_LT_EQ] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_BANG_EQ] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [sym_test_operator] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [anon_sym_GT_EQ] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_EQ_TILDE] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_LT_EQ] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_DASH_EQ] = ACTIONS(1480), }, [1026] = { - [anon_sym_BANG_EQ] = ACTIONS(1741), - [anon_sym_PLUS_EQ] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_EQ] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [sym_test_operator] = ACTIONS(1741), - [anon_sym_EQ_TILDE] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_LT_EQ] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_DASH_EQ] = ACTIONS(1741), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_PLUS_EQ] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PLUS_PLUS] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_EQ] = ACTIONS(1688), + [sym_test_operator] = ACTIONS(1688), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [anon_sym_GT_EQ] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_EQ_TILDE] = ACTIONS(1688), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_DASH_EQ] = ACTIONS(1688), }, [1027] = { - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_PLUS_EQ] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_EQ] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [anon_sym_GT_EQ] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [sym_test_operator] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_DASH_EQ] = ACTIONS(1747), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_PLUS_EQ] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_PLUS_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [sym_test_operator] = ACTIONS(1694), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [anon_sym_GT_EQ] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_EQ_TILDE] = ACTIONS(1694), + [anon_sym_DASH_DASH] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_LT_EQ] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_DASH_EQ] = ACTIONS(1694), }, [1028] = { - [anon_sym_BANG_EQ] = ACTIONS(1751), - [anon_sym_PLUS_EQ] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_EQ] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1751), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [anon_sym_GT_EQ] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [sym_test_operator] = ACTIONS(1751), - [anon_sym_EQ_TILDE] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_LT_EQ] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_DASH_EQ] = ACTIONS(1751), + [anon_sym_BANG_EQ] = ACTIONS(1698), + [anon_sym_PLUS_EQ] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_PLUS_PLUS] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_EQ] = ACTIONS(1698), + [sym_test_operator] = ACTIONS(1698), + [anon_sym_EQ_EQ] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [anon_sym_GT_EQ] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_EQ_TILDE] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_LT_EQ] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_DASH_EQ] = ACTIONS(1698), }, [1029] = { - [anon_sym_BANG_EQ] = ACTIONS(1757), - [anon_sym_PLUS_EQ] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_EQ] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1757), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [sym_test_operator] = ACTIONS(1757), - [anon_sym_EQ_TILDE] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_LT_EQ] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_DASH_EQ] = ACTIONS(1757), + [anon_sym_BANG_EQ] = ACTIONS(1704), + [anon_sym_PLUS_EQ] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_EQ] = ACTIONS(1704), + [sym_test_operator] = ACTIONS(1704), + [anon_sym_EQ_EQ] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [anon_sym_GT_EQ] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_EQ_TILDE] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_LT_EQ] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_DASH_EQ] = ACTIONS(1704), }, [1030] = { - [anon_sym_BANG_EQ] = ACTIONS(1830), - [anon_sym_PLUS_EQ] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1830), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_PLUS_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1830), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [anon_sym_GT_EQ] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [sym_test_operator] = ACTIONS(1830), - [anon_sym_EQ_TILDE] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_LT_EQ] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_DASH_EQ] = ACTIONS(1830), + [anon_sym_BANG_EQ] = ACTIONS(1819), + [anon_sym_PLUS_EQ] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(1819), + [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_EQ] = ACTIONS(1819), + [sym_test_operator] = ACTIONS(1819), + [anon_sym_EQ_EQ] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [anon_sym_GT_EQ] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PLUS] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_EQ_TILDE] = ACTIONS(1819), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_LT_EQ] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_DASH_EQ] = ACTIONS(1819), }, [1031] = { - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_PLUS_EQ] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [anon_sym_GT_EQ] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [sym_test_operator] = ACTIONS(1834), - [anon_sym_EQ_TILDE] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_LT_EQ] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_DASH_EQ] = ACTIONS(1834), + [anon_sym_BANG_EQ] = ACTIONS(1823), + [anon_sym_PLUS_EQ] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_EQ] = ACTIONS(1823), + [sym_test_operator] = ACTIONS(1823), + [anon_sym_EQ_EQ] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [anon_sym_GT_EQ] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_EQ_TILDE] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_DASH_EQ] = ACTIONS(1823), }, [1032] = { - [aux_sym_concatenation_repeat1] = STATE(1001), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(191), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__concat] = ACTIONS(1131), - [anon_sym_AMP_AMP] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(1004), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(213), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__concat] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1033] = { - [aux_sym_concatenation_repeat1] = STATE(1042), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [sym_variable_name] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [ts_builtin_sym_end] = ACTIONS(411), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [1034] = { - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_LT_LT_DASH] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [ts_builtin_sym_end] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [ts_builtin_sym_end] = ACTIONS(415), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [1035] = { - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [ts_builtin_sym_end] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [sym_variable_name] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [1036] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [sym_variable_name] = ACTIONS(421), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(1044), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [sym_variable_name] = ACTIONS(433), + [anon_sym_RPAREN] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [1037] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [sym_variable_name] = ACTIONS(581), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_variable_name] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [1038] = { - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(191), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(213), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1039] = { [aux_sym__literal_repeat1] = STATE(1039), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP_GT] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [ts_builtin_sym_end] = ACTIONS(634), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [sym__special_character] = ACTIONS(2694), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [ts_builtin_sym_end] = ACTIONS(650), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [sym__special_character] = ACTIONS(2764), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [1040] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1041] = { - [sym_command_substitution] = STATE(1040), - [sym_string] = STATE(1040), - [sym_process_substitution] = STATE(1040), - [sym_simple_expansion] = STATE(1040), - [sym_string_expansion] = STATE(1040), - [sym_expansion] = STATE(1040), - [sym_word] = ACTIONS(2697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2697), - [anon_sym_DOLLAR] = ACTIONS(2703), - [anon_sym_LT_LPAREN] = ACTIONS(2705), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_GT_LPAREN] = ACTIONS(2705), - [sym_ansii_c_string] = ACTIONS(2697), - [sym__special_character] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [sym_variable_name] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), }, [1042] = { - [aux_sym_concatenation_repeat1] = STATE(1042), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2711), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1043] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [sym_variable_name] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), + [sym_command_substitution] = STATE(1042), + [sym_string] = STATE(1042), + [sym_process_substitution] = STATE(1042), + [sym_simple_expansion] = STATE(1042), + [sym_string_expansion] = STATE(1042), + [sym_expansion] = STATE(1042), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2767), + [anon_sym_DOLLAR] = ACTIONS(2769), + [anon_sym_BQUOTE] = ACTIONS(2771), + [anon_sym_GT_LPAREN] = ACTIONS(2773), + [sym_number] = ACTIONS(2775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_word] = ACTIONS(2775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2781), + [anon_sym_LT_LPAREN] = ACTIONS(2773), + [sym_ansii_c_string] = ACTIONS(2767), + [sym__special_character] = ACTIONS(2767), }, [1044] = { - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP_GT] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(1044), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1045] = { - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP_GT] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [ts_builtin_sym_end] = ACTIONS(972), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [ts_builtin_sym_end] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), }, [1046] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [ts_builtin_sym_end] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [1047] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [sym_variable_name] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [sym_variable_name] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [1048] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1049] = { - [sym_string] = STATE(1004), - [anon_sym_0] = ACTIONS(2714), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2716), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2716), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2714), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(2716), - [sym_raw_string] = ACTIONS(2718), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_AMP_GT] = ACTIONS(1198), - [ts_builtin_sym_end] = ACTIONS(1202), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(2720), - [anon_sym_STAR] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(1003), + [anon_sym__] = ACTIONS(2786), + [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2786), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2788), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(2788), + [sym_raw_string] = ACTIONS(2790), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2786), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [ts_builtin_sym_end] = ACTIONS(1227), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(2792), + [aux_sym__simple_variable_name_token1] = ACTIONS(2786), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), }, [1050] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP_GT] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [ts_builtin_sym_end] = ACTIONS(1233), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [1051] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP_GT] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [ts_builtin_sym_end] = ACTIONS(1303), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1292), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [1052] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP_GT] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [ts_builtin_sym_end] = ACTIONS(1321), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1302), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1053] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [sym_variable_name] = ACTIONS(1367), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [sym_variable_name] = ACTIONS(1398), + [anon_sym_RPAREN] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [1054] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP_GT] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [ts_builtin_sym_end] = ACTIONS(1552), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1456), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [1055] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP_GT] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [ts_builtin_sym_end] = ACTIONS(1564), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [1056] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP_GT] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [ts_builtin_sym_end] = ACTIONS(1574), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [1057] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP_GT] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [ts_builtin_sym_end] = ACTIONS(1578), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1482), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [1058] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP_GT] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [ts_builtin_sym_end] = ACTIONS(1743), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [ts_builtin_sym_end] = ACTIONS(1690), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [1059] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP_GT] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [ts_builtin_sym_end] = ACTIONS(1749), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [1060] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP_GT] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [ts_builtin_sym_end] = ACTIONS(1753), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [1061] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP_GT] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [ts_builtin_sym_end] = ACTIONS(1759), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [1062] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [ts_builtin_sym_end] = ACTIONS(1821), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [1063] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP_GT] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [ts_builtin_sym_end] = ACTIONS(1836), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [ts_builtin_sym_end] = ACTIONS(1825), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [1064] = { - [aux_sym_concatenation_repeat1] = STATE(1033), - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(1036), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1065] = { - [aux_sym_concatenation_repeat1] = STATE(1074), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_RPAREN] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_variable_name] = ACTIONS(411), + [anon_sym_RPAREN] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [1066] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [sym_variable_name] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), - }, - [1067] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_variable_name] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), + }, + [1067] = { + [anon_sym_PIPE_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_variable_name] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_RPAREN] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [anon_sym_esac] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(417), }, [1068] = { - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_esac] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(1076), + [anon_sym_PIPE_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), }, [1069] = { - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_esac] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_PIPE_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_esac] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(595), }, [1070] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1071] = { [aux_sym__literal_repeat1] = STATE(1071), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [sym__special_character] = ACTIONS(2724), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [sym_variable_name] = ACTIONS(634), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [sym__special_character] = ACTIONS(2796), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [sym_variable_name] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(645), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [1072] = { - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_esac] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1073] = { - [sym_command_substitution] = STATE(1072), - [sym_string] = STATE(1072), - [sym_process_substitution] = STATE(1072), - [sym_simple_expansion] = STATE(1072), - [sym_string_expansion] = STATE(1072), - [sym_expansion] = STATE(1072), - [sym_word] = ACTIONS(2727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2731), - [sym_raw_string] = ACTIONS(2727), - [anon_sym_DOLLAR] = ACTIONS(2733), - [anon_sym_LT_LPAREN] = ACTIONS(2735), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_BQUOTE] = ACTIONS(2739), - [anon_sym_GT_LPAREN] = ACTIONS(2735), - [sym_ansii_c_string] = ACTIONS(2727), - [sym__special_character] = ACTIONS(2727), + [anon_sym_PIPE_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_esac] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(878), }, [1074] = { - [aux_sym_concatenation_repeat1] = STATE(1074), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_esac] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), }, [1075] = { - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_esac] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), + [sym_command_substitution] = STATE(1074), + [sym_string] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2799), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2805), + [sym_number] = ACTIONS(2807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_word] = ACTIONS(2807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), + [anon_sym_LT_LPAREN] = ACTIONS(2805), + [sym_ansii_c_string] = ACTIONS(2799), + [sym__special_character] = ACTIONS(2799), }, [1076] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [sym_variable_name] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(1076), + [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2815), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), }, [1077] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [sym_variable_name] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [sym_variable_name] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), }, [1078] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [sym_variable_name] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [1079] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_esac] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_esac] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1063), }, [1080] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1081] = { - [sym_string] = STATE(1036), - [sym_word] = ACTIONS(1198), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym__] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2746), - [sym_raw_string] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_variable_name] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(2750), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2746), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(2744), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2746), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(2744), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_QMARK] = ACTIONS(2746), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2746), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(1035), + [anon_sym__] = ACTIONS(2818), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [sym__special_character] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(1223), + [sym_variable_name] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(2824), + [anon_sym_GT_AMP] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2818), + [sym_ansii_c_string] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(2820), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [1082] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_variable_name] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_variable_name] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [1083] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_variable_name] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [1084] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [sym_variable_name] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_variable_name] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1085] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_esac] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_esac] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), }, [1086] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [sym_variable_name] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [sym_variable_name] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1454), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [1087] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [sym_variable_name] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [sym_variable_name] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1466), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [1088] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [sym_variable_name] = ACTIONS(1574), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_variable_name] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [1089] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [sym_variable_name] = ACTIONS(1578), - [anon_sym_RPAREN] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [sym_variable_name] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1480), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [1090] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [sym_variable_name] = ACTIONS(1743), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [sym_variable_name] = ACTIONS(1690), + [anon_sym_RPAREN] = ACTIONS(1688), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [1091] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [sym_variable_name] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [sym_variable_name] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [1092] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [sym_variable_name] = ACTIONS(1753), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [sym_variable_name] = ACTIONS(1700), + [anon_sym_RPAREN] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [1093] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [sym_variable_name] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [sym_variable_name] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [1094] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [sym_variable_name] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [sym_variable_name] = ACTIONS(1821), + [anon_sym_RPAREN] = ACTIONS(1819), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [1095] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [sym_variable_name] = ACTIONS(1836), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [sym_variable_name] = ACTIONS(1825), + [anon_sym_RPAREN] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [1096] = { - [aux_sym_concatenation_repeat1] = STATE(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(1068), + [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), }, [1097] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(359), - [sym__concat] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [anon_sym_RPAREN] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_esac] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(409), }, [1098] = { - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), + [anon_sym_PIPE_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_RPAREN] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_esac] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_esac] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(413), }, [1099] = { - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_esac] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(419), + [sym__concat] = ACTIONS(419), }, [1100] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(421), - [sym__concat] = ACTIONS(421), + [aux_sym_concatenation_repeat1] = STATE(1108), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(433), + [sym__concat] = ACTIONS(2826), }, [1101] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(581), - [sym__concat] = ACTIONS(581), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(597), + [sym__concat] = ACTIONS(597), }, [1102] = { - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), }, [1103] = { [aux_sym__literal_repeat1] = STATE(1103), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [sym__special_character] = ACTIONS(2754), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_esac] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_PIPE_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [sym__special_character] = ACTIONS(2828), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_RPAREN] = ACTIONS(645), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [anon_sym_esac] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(645), }, [1104] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(784), - [sym__concat] = ACTIONS(784), + [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_esac] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), }, [1105] = { - [sym_command_substitution] = STATE(1104), - [sym_simple_expansion] = STATE(1104), - [sym_string_expansion] = STATE(1104), - [sym_string] = STATE(1104), - [sym_process_substitution] = STATE(1104), - [sym_expansion] = STATE(1104), - [sym_word] = ACTIONS(2757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(2757), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(2759), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(2757), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym__special_character] = ACTIONS(2757), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(880), + [sym__concat] = ACTIONS(880), }, [1106] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(784), - [sym__concat] = ACTIONS(2761), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(884), + [sym__concat] = ACTIONS(884), }, [1107] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(862), - [sym__concat] = ACTIONS(862), + [sym_command_substitution] = STATE(1106), + [sym_simple_expansion] = STATE(1106), + [sym_string_expansion] = STATE(1106), + [sym_string] = STATE(1106), + [sym_process_substitution] = STATE(1106), + [sym_expansion] = STATE(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2831), + [sym_word] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(2835), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym__special_character] = ACTIONS(2831), + [sym_number] = ACTIONS(2833), }, [1108] = { - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_esac] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(1108), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(884), + [sym__concat] = ACTIONS(2837), }, [1109] = { - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_esac] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_PIPE_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [anon_sym_esac] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(905), }, [1110] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_esac] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(957), }, [1111] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1038), - [sym__concat] = ACTIONS(1038), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1065), }, [1112] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_esac] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), }, [1113] = { - [sym_string] = STATE(1068), - [anon_sym_0] = ACTIONS(2764), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2766), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2764), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(2766), - [sym_raw_string] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2770), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(1067), + [anon_sym__] = ACTIONS(2840), + [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2840), + [anon_sym_DOLLAR] = ACTIONS(2842), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(2842), + [sym_raw_string] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(1223), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), }, [1114] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_esac] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_esac] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), }, [1115] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_esac] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_esac] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), }, [1116] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_esac] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), }, [1117] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1367), - [sym__concat] = ACTIONS(1367), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1398), + [sym__concat] = ACTIONS(1398), }, [1118] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_esac] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_PIPE_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [anon_sym_esac] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), }, [1119] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_esac] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_PIPE_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [anon_sym_esac] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), }, [1120] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_esac] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_PIPE_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_esac] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), }, [1121] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_esac] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [anon_sym_esac] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), }, [1122] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_esac] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_PIPE_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_esac] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), }, [1123] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_esac] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_RPAREN] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_esac] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), }, [1124] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_esac] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_RPAREN] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [anon_sym_esac] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), }, [1125] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_esac] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_esac] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), }, [1126] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_esac] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_RPAREN] = ACTIONS(1819), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [anon_sym_esac] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1819), }, [1127] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_RPAREN] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [anon_sym_esac] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1823), }, [1128] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(191), - [sym__concat] = ACTIONS(1313), - [sym__special_character] = ACTIONS(189), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [anon_sym_RBRACE] = ACTIONS(213), + [sym__concat] = ACTIONS(1294), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(211), }, [1129] = { - [aux_sym_concatenation_repeat1] = STATE(1138), - [sym_word] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(359), - [sym_raw_string] = ACTIONS(359), - [sym__concat] = ACTIONS(2772), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_RPAREN] = ACTIONS(359), - [sym_ansii_c_string] = ACTIONS(359), - [anon_sym_LT_LPAREN] = ACTIONS(359), - [anon_sym_GT_LPAREN] = ACTIONS(359), - [sym__special_character] = ACTIONS(359), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(411), + [sym__concat] = ACTIONS(411), }, [1130] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(413), - [sym__concat] = ACTIONS(413), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(415), + [sym__concat] = ACTIONS(415), }, [1131] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(417), - [sym__concat] = ACTIONS(417), - }, - [1132] = { - [sym_word] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [sym_raw_string] = ACTIONS(421), - [sym__concat] = ACTIONS(421), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(421), - [sym_ansii_c_string] = ACTIONS(421), - [anon_sym_LT_LPAREN] = ACTIONS(421), - [anon_sym_GT_LPAREN] = ACTIONS(421), - [sym__special_character] = ACTIONS(421), - [sym_comment] = ACTIONS(19), - }, - [1133] = { - [sym_word] = ACTIONS(581), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(581), - [sym_raw_string] = ACTIONS(581), - [sym__concat] = ACTIONS(581), - [anon_sym_BQUOTE] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_RPAREN] = ACTIONS(581), - [sym_ansii_c_string] = ACTIONS(581), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), - [sym__special_character] = ACTIONS(581), - [sym_comment] = ACTIONS(19), - }, - [1134] = { - [sym__special_character] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(191), - [sym_comment] = ACTIONS(19), - }, + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_GT_LPAREN] = ACTIONS(419), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [sym__concat] = ACTIONS(419), + [sym_word] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_LT_LPAREN] = ACTIONS(419), + [sym_ansii_c_string] = ACTIONS(419), + [sym__special_character] = ACTIONS(419), + }, + [1132] = { + [aux_sym_concatenation_repeat1] = STATE(1140), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(433), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_BQUOTE] = ACTIONS(433), + [anon_sym_GT_LPAREN] = ACTIONS(433), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(433), + [sym__concat] = ACTIONS(2848), + [sym_word] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(433), + [anon_sym_LT_LPAREN] = ACTIONS(433), + [sym_ansii_c_string] = ACTIONS(433), + [sym__special_character] = ACTIONS(433), + }, + [1133] = { + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(597), + [anon_sym_GT_LPAREN] = ACTIONS(597), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(597), + [sym__concat] = ACTIONS(597), + [sym_word] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_LT_LPAREN] = ACTIONS(597), + [sym_ansii_c_string] = ACTIONS(597), + [sym__special_character] = ACTIONS(597), + }, + [1134] = { + [sym__special_character] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(213), + [sym_comment] = ACTIONS(41), + }, [1135] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(634), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(650), + [sym_comment] = ACTIONS(41), }, [1136] = { - [sym_word] = ACTIONS(784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), - [sym_raw_string] = ACTIONS(784), - [sym__concat] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(784), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(784), - [sym_ansii_c_string] = ACTIONS(784), - [anon_sym_LT_LPAREN] = ACTIONS(784), - [anon_sym_GT_LPAREN] = ACTIONS(784), - [sym__special_character] = ACTIONS(784), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(876), + [sym__concat] = ACTIONS(876), }, [1137] = { - [sym_command_substitution] = STATE(1136), - [sym_simple_expansion] = STATE(1136), - [sym_string_expansion] = STATE(1136), - [sym_string] = STATE(1136), - [sym_process_substitution] = STATE(1136), - [sym_expansion] = STATE(1136), - [sym_word] = ACTIONS(2777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(2777), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(2779), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [sym_ansii_c_string] = ACTIONS(2777), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [sym__special_character] = ACTIONS(2777), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [sym__concat] = ACTIONS(880), + [sym_word] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), }, [1138] = { - [aux_sym_concatenation_repeat1] = STATE(1138), - [sym_word] = ACTIONS(784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), - [sym_raw_string] = ACTIONS(784), - [sym__concat] = ACTIONS(2781), - [anon_sym_BQUOTE] = ACTIONS(784), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(784), - [sym_ansii_c_string] = ACTIONS(784), - [anon_sym_LT_LPAREN] = ACTIONS(784), - [anon_sym_GT_LPAREN] = ACTIONS(784), - [sym__special_character] = ACTIONS(784), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [sym__concat] = ACTIONS(884), + [sym_word] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), }, [1139] = { - [sym_word] = ACTIONS(862), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(862), - [anon_sym_DQUOTE] = ACTIONS(862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(862), - [sym_raw_string] = ACTIONS(862), - [sym__concat] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_RPAREN] = ACTIONS(862), - [sym_ansii_c_string] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym__special_character] = ACTIONS(862), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(1138), + [sym_simple_expansion] = STATE(1138), + [sym_string_expansion] = STATE(1138), + [sym_string] = STATE(1138), + [sym_process_substitution] = STATE(1138), + [sym_expansion] = STATE(1138), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2853), + [sym_word] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(2857), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(2853), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_GT_LPAREN] = ACTIONS(1023), + [sym__special_character] = ACTIONS(2853), + [sym_number] = ACTIONS(2855), }, [1140] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(922), - [sym__concat] = ACTIONS(922), + [aux_sym_concatenation_repeat1] = STATE(1140), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [sym__concat] = ACTIONS(2859), + [sym_word] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), }, [1141] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(972), - [sym__concat] = ACTIONS(972), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(907), + [sym__concat] = ACTIONS(907), }, [1142] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(959), + [sym__concat] = ACTIONS(959), }, [1143] = { - [sym_word] = ACTIONS(1038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), - [sym_raw_string] = ACTIONS(1038), - [sym__concat] = ACTIONS(1038), - [anon_sym_BQUOTE] = ACTIONS(1038), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1038), - [sym_ansii_c_string] = ACTIONS(1038), - [anon_sym_LT_LPAREN] = ACTIONS(1038), - [anon_sym_GT_LPAREN] = ACTIONS(1038), - [sym__special_character] = ACTIONS(1038), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1065), + [sym_word] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), }, [1144] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(876), + [sym__concat] = ACTIONS(876), }, [1145] = { - [sym_string] = STATE(1100), - [aux_sym__simple_variable_name_token1] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_AT] = ACTIONS(2786), - [anon_sym__] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2786), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(2788), - [sym_raw_string] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_0] = ACTIONS(2784), + [sym_string] = STATE(1099), + [anon_sym__] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_0] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2864), + [aux_sym__simple_variable_name_token1] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2864), + [sym_raw_string] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2866), }, [1146] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1254), - [sym__concat] = ACTIONS(1254), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1233), + [sym__concat] = ACTIONS(1233), }, [1147] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1303), - [sym__concat] = ACTIONS(1303), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1292), + [sym__concat] = ACTIONS(1292), }, [1148] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1321), - [sym__concat] = ACTIONS(1321), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), }, [1149] = { - [sym_word] = ACTIONS(1367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1367), - [sym_raw_string] = ACTIONS(1367), - [sym__concat] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1367), - [sym_ansii_c_string] = ACTIONS(1367), - [anon_sym_LT_LPAREN] = ACTIONS(1367), - [anon_sym_GT_LPAREN] = ACTIONS(1367), - [sym__special_character] = ACTIONS(1367), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_BQUOTE] = ACTIONS(1398), + [anon_sym_GT_LPAREN] = ACTIONS(1398), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym__concat] = ACTIONS(1398), + [sym_word] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1398), + [anon_sym_LT_LPAREN] = ACTIONS(1398), + [sym_ansii_c_string] = ACTIONS(1398), + [sym__special_character] = ACTIONS(1398), }, [1150] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1552), - [sym__concat] = ACTIONS(1552), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1456), + [sym__concat] = ACTIONS(1456), }, [1151] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1564), - [sym__concat] = ACTIONS(1564), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1468), + [sym__concat] = ACTIONS(1468), }, [1152] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1574), - [sym__concat] = ACTIONS(1574), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1478), + [sym__concat] = ACTIONS(1478), }, [1153] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1578), - [sym__concat] = ACTIONS(1578), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1482), + [sym__concat] = ACTIONS(1482), }, [1154] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1743), - [sym__concat] = ACTIONS(1743), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1690), + [sym__concat] = ACTIONS(1690), }, [1155] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1749), - [sym__concat] = ACTIONS(1749), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1696), + [sym__concat] = ACTIONS(1696), }, [1156] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1753), - [sym__concat] = ACTIONS(1753), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1700), + [sym__concat] = ACTIONS(1700), }, [1157] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1759), - [sym__concat] = ACTIONS(1759), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1706), + [sym__concat] = ACTIONS(1706), }, [1158] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1821), + [sym__concat] = ACTIONS(1821), }, [1159] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(1836), - [sym__concat] = ACTIONS(1836), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1825), + [sym__concat] = ACTIONS(1825), }, [1160] = { - [aux_sym_concatenation_repeat1] = STATE(1129), - [sym_word] = ACTIONS(191), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(191), - [sym_raw_string] = ACTIONS(191), - [sym__concat] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_RPAREN] = ACTIONS(191), - [sym_ansii_c_string] = ACTIONS(191), - [anon_sym_LT_LPAREN] = ACTIONS(191), - [anon_sym_GT_LPAREN] = ACTIONS(191), - [sym__special_character] = ACTIONS(191), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1132), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [sym__concat] = ACTIONS(1364), + [sym_word] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [sym_ansii_c_string] = ACTIONS(213), + [sym__special_character] = ACTIONS(213), }, [1161] = { - [aux_sym_concatenation_repeat1] = STATE(1170), - [sym_word] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(355), - [sym__concat] = ACTIONS(2792), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(411), + [anon_sym_GT_LPAREN] = ACTIONS(411), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(411), + [sym__concat] = ACTIONS(411), + [sym_word] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), + [anon_sym_LT_LPAREN] = ACTIONS(411), + [sym_ansii_c_string] = ACTIONS(411), + [sym__special_character] = ACTIONS(411), }, [1162] = { + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_BQUOTE] = ACTIONS(415), + [anon_sym_GT_LPAREN] = ACTIONS(415), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym__concat] = ACTIONS(415), [sym_word] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym__concat] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_RPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), + [anon_sym_LT_LPAREN] = ACTIONS(415), + [sym_ansii_c_string] = ACTIONS(415), + [sym__special_character] = ACTIONS(415), }, [1163] = { - [sym_word] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(417), - [sym__concat] = ACTIONS(417), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_RPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [sym_word] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), [sym__special_character] = ACTIONS(417), - [sym_comment] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(417), }, [1164] = { - [sym_word] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(1172), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(429), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [sym__concat] = ACTIONS(2870), + [sym_word] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), }, [1165] = { - [sym_word] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(595), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [sym_word] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(595), }, [1166] = { - [sym_word] = ACTIONS(191), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(191), - [sym_raw_string] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_RPAREN] = ACTIONS(191), - [sym_ansii_c_string] = ACTIONS(191), - [anon_sym_LT_LPAREN] = ACTIONS(191), - [anon_sym_GT_LPAREN] = ACTIONS(191), - [sym__special_character] = ACTIONS(191), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(213), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(213), + [sym_word] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(213), + [sym_ansii_c_string] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [sym__special_character] = ACTIONS(213), + [sym_number] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(213), }, [1167] = { [aux_sym__literal_repeat1] = STATE(1167), - [sym_word] = ACTIONS(634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), - [sym_raw_string] = ACTIONS(634), - [anon_sym_BQUOTE] = ACTIONS(634), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(634), - [sym_ansii_c_string] = ACTIONS(634), - [anon_sym_LT_LPAREN] = ACTIONS(634), - [anon_sym_GT_LPAREN] = ACTIONS(634), - [sym__special_character] = ACTIONS(2794), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(650), + [anon_sym_DQUOTE] = ACTIONS(650), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(650), + [sym_word] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_RPAREN] = ACTIONS(650), + [sym_ansii_c_string] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_LT_LPAREN] = ACTIONS(650), + [sym__special_character] = ACTIONS(2872), + [sym_number] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(650), }, [1168] = { - [sym_word] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [sym__concat] = ACTIONS(876), + [sym_word] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), }, [1169] = { - [sym_command_substitution] = STATE(1168), - [sym_simple_expansion] = STATE(1168), - [sym_string_expansion] = STATE(1168), - [sym_string] = STATE(1168), - [sym_process_substitution] = STATE(1168), - [sym_expansion] = STATE(1168), - [sym_word] = ACTIONS(2797), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [sym_raw_string] = ACTIONS(2797), - [anon_sym_BQUOTE] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(2799), - [anon_sym_GT_LPAREN] = ACTIONS(1073), - [sym_ansii_c_string] = ACTIONS(2797), - [anon_sym_LT_LPAREN] = ACTIONS(1073), - [sym__special_character] = ACTIONS(2797), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(878), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [sym_word] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(878), }, [1170] = { - [aux_sym_concatenation_repeat1] = STATE(1170), - [sym_word] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(782), - [sym__concat] = ACTIONS(2801), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [sym_word] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), }, [1171] = { - [sym_word] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), + [sym_command_substitution] = STATE(1170), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_string] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [sym_expansion] = STATE(1170), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2875), + [sym_word] = ACTIONS(2877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(2879), + [anon_sym_LT_LPAREN] = ACTIONS(1110), + [sym_ansii_c_string] = ACTIONS(2875), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_GT_LPAREN] = ACTIONS(1110), + [sym__special_character] = ACTIONS(2875), + [sym_number] = ACTIONS(2877), }, [1172] = { - [sym_word] = ACTIONS(922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(922), - [sym_raw_string] = ACTIONS(922), - [sym__concat] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(922), - [sym_ansii_c_string] = ACTIONS(922), - [anon_sym_LT_LPAREN] = ACTIONS(922), - [anon_sym_GT_LPAREN] = ACTIONS(922), - [sym__special_character] = ACTIONS(922), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1172), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [sym__concat] = ACTIONS(2881), + [sym_word] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), }, [1173] = { - [sym_word] = ACTIONS(972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), - [sym_raw_string] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_RPAREN] = ACTIONS(972), - [sym_ansii_c_string] = ACTIONS(972), - [anon_sym_LT_LPAREN] = ACTIONS(972), - [anon_sym_GT_LPAREN] = ACTIONS(972), - [sym__special_character] = ACTIONS(972), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__concat] = ACTIONS(907), + [sym_word] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), }, [1174] = { - [sym_word] = ACTIONS(1034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1034), - [sym_ansii_c_string] = ACTIONS(1034), - [anon_sym_LT_LPAREN] = ACTIONS(1034), - [anon_sym_GT_LPAREN] = ACTIONS(1034), - [sym__special_character] = ACTIONS(1034), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__concat] = ACTIONS(959), + [sym_word] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), }, [1175] = { - [sym_word] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [sym_word] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1063), }, [1176] = { - [sym_word] = ACTIONS(1034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1034), - [sym_ansii_c_string] = ACTIONS(1034), - [anon_sym_LT_LPAREN] = ACTIONS(1034), - [anon_sym_GT_LPAREN] = ACTIONS(1034), - [sym__special_character] = ACTIONS(1034), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [sym__concat] = ACTIONS(876), + [sym_word] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), }, [1177] = { - [sym_string] = STATE(1132), - [sym_word] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1202), - [aux_sym__simple_variable_name_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_RPAREN] = ACTIONS(1202), - [anon_sym_QMARK] = ACTIONS(2804), - [anon_sym_LT_LPAREN] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(2808), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym__] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_BQUOTE] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_GT_LPAREN] = ACTIONS(1202), - [sym_ansii_c_string] = ACTIONS(1202), - [sym__special_character] = ACTIONS(1202), - [anon_sym_0] = ACTIONS(2804), + [sym_string] = STATE(1131), + [anon_sym__] = ACTIONS(2884), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2886), + [sym_raw_string] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2890), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2884), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1013), + [anon_sym_0] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2884), + [sym_word] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2884), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2884), }, [1178] = { - [sym_word] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1254), - [sym__concat] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1254), - [sym_ansii_c_string] = ACTIONS(1254), - [anon_sym_LT_LPAREN] = ACTIONS(1254), - [anon_sym_GT_LPAREN] = ACTIONS(1254), - [sym__special_character] = ACTIONS(1254), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_BQUOTE] = ACTIONS(1233), + [anon_sym_GT_LPAREN] = ACTIONS(1233), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__concat] = ACTIONS(1233), + [sym_word] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), + [anon_sym_LT_LPAREN] = ACTIONS(1233), + [sym_ansii_c_string] = ACTIONS(1233), + [sym__special_character] = ACTIONS(1233), }, [1179] = { - [sym_word] = ACTIONS(1303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), - [sym_raw_string] = ACTIONS(1303), - [sym__concat] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_RPAREN] = ACTIONS(1303), - [sym_ansii_c_string] = ACTIONS(1303), - [anon_sym_LT_LPAREN] = ACTIONS(1303), - [anon_sym_GT_LPAREN] = ACTIONS(1303), - [sym__special_character] = ACTIONS(1303), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_GT_LPAREN] = ACTIONS(1292), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym__concat] = ACTIONS(1292), + [sym_word] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_LT_LPAREN] = ACTIONS(1292), + [sym_ansii_c_string] = ACTIONS(1292), + [sym__special_character] = ACTIONS(1292), }, [1180] = { - [sym_word] = ACTIONS(1321), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1321), - [sym_raw_string] = ACTIONS(1321), - [sym__concat] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1321), - [sym_ansii_c_string] = ACTIONS(1321), - [anon_sym_LT_LPAREN] = ACTIONS(1321), - [anon_sym_GT_LPAREN] = ACTIONS(1321), - [sym__special_character] = ACTIONS(1321), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_BQUOTE] = ACTIONS(1302), + [anon_sym_GT_LPAREN] = ACTIONS(1302), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym__concat] = ACTIONS(1302), + [sym_word] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), + [anon_sym_LT_LPAREN] = ACTIONS(1302), + [sym_ansii_c_string] = ACTIONS(1302), + [sym__special_character] = ACTIONS(1302), }, [1181] = { - [sym_word] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1396), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [sym_word] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), }, [1182] = { - [sym_word] = ACTIONS(1552), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1552), - [sym_raw_string] = ACTIONS(1552), - [sym__concat] = ACTIONS(1552), - [anon_sym_BQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1552), - [sym_ansii_c_string] = ACTIONS(1552), - [anon_sym_LT_LPAREN] = ACTIONS(1552), - [anon_sym_GT_LPAREN] = ACTIONS(1552), - [sym__special_character] = ACTIONS(1552), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [anon_sym_GT_LPAREN] = ACTIONS(1456), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym__concat] = ACTIONS(1456), + [sym_word] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1456), + [anon_sym_LT_LPAREN] = ACTIONS(1456), + [sym_ansii_c_string] = ACTIONS(1456), + [sym__special_character] = ACTIONS(1456), }, [1183] = { - [sym_word] = ACTIONS(1564), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1564), - [sym_raw_string] = ACTIONS(1564), - [sym__concat] = ACTIONS(1564), - [anon_sym_BQUOTE] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1564), - [sym_ansii_c_string] = ACTIONS(1564), - [anon_sym_LT_LPAREN] = ACTIONS(1564), - [anon_sym_GT_LPAREN] = ACTIONS(1564), - [sym__special_character] = ACTIONS(1564), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_GT_LPAREN] = ACTIONS(1468), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym__concat] = ACTIONS(1468), + [sym_word] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1468), + [anon_sym_LT_LPAREN] = ACTIONS(1468), + [sym_ansii_c_string] = ACTIONS(1468), + [sym__special_character] = ACTIONS(1468), }, [1184] = { - [sym_word] = ACTIONS(1574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1574), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1574), - [sym_raw_string] = ACTIONS(1574), - [sym__concat] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1574), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1574), - [sym_ansii_c_string] = ACTIONS(1574), - [anon_sym_LT_LPAREN] = ACTIONS(1574), - [anon_sym_GT_LPAREN] = ACTIONS(1574), - [sym__special_character] = ACTIONS(1574), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_GT_LPAREN] = ACTIONS(1478), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym__concat] = ACTIONS(1478), + [sym_word] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1478), + [anon_sym_LT_LPAREN] = ACTIONS(1478), + [sym_ansii_c_string] = ACTIONS(1478), + [sym__special_character] = ACTIONS(1478), }, [1185] = { - [sym_word] = ACTIONS(1578), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1578), - [anon_sym_DQUOTE] = ACTIONS(1578), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1578), - [sym_raw_string] = ACTIONS(1578), - [sym__concat] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1578), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1578), - [sym_ansii_c_string] = ACTIONS(1578), - [anon_sym_LT_LPAREN] = ACTIONS(1578), - [anon_sym_GT_LPAREN] = ACTIONS(1578), - [sym__special_character] = ACTIONS(1578), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_GT_LPAREN] = ACTIONS(1482), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym__concat] = ACTIONS(1482), + [sym_word] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), + [anon_sym_LT_LPAREN] = ACTIONS(1482), + [sym_ansii_c_string] = ACTIONS(1482), + [sym__special_character] = ACTIONS(1482), }, [1186] = { - [sym_word] = ACTIONS(1743), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1743), - [sym_raw_string] = ACTIONS(1743), - [sym__concat] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1743), - [sym_ansii_c_string] = ACTIONS(1743), - [anon_sym_LT_LPAREN] = ACTIONS(1743), - [anon_sym_GT_LPAREN] = ACTIONS(1743), - [sym__special_character] = ACTIONS(1743), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1690), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1690), + [anon_sym_BQUOTE] = ACTIONS(1690), + [anon_sym_GT_LPAREN] = ACTIONS(1690), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [sym__concat] = ACTIONS(1690), + [sym_word] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1690), + [anon_sym_LT_LPAREN] = ACTIONS(1690), + [sym_ansii_c_string] = ACTIONS(1690), + [sym__special_character] = ACTIONS(1690), }, [1187] = { - [sym_word] = ACTIONS(1749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1749), - [sym_raw_string] = ACTIONS(1749), - [sym__concat] = ACTIONS(1749), - [anon_sym_BQUOTE] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1749), - [sym_ansii_c_string] = ACTIONS(1749), - [anon_sym_LT_LPAREN] = ACTIONS(1749), - [anon_sym_GT_LPAREN] = ACTIONS(1749), - [sym__special_character] = ACTIONS(1749), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_GT_LPAREN] = ACTIONS(1696), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [sym__concat] = ACTIONS(1696), + [sym_word] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), + [anon_sym_LT_LPAREN] = ACTIONS(1696), + [sym_ansii_c_string] = ACTIONS(1696), + [sym__special_character] = ACTIONS(1696), }, [1188] = { - [sym_word] = ACTIONS(1753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1753), - [sym_raw_string] = ACTIONS(1753), - [sym__concat] = ACTIONS(1753), - [anon_sym_BQUOTE] = ACTIONS(1753), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_RPAREN] = ACTIONS(1753), - [sym_ansii_c_string] = ACTIONS(1753), - [anon_sym_LT_LPAREN] = ACTIONS(1753), - [anon_sym_GT_LPAREN] = ACTIONS(1753), - [sym__special_character] = ACTIONS(1753), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1700), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1700), + [anon_sym_GT_LPAREN] = ACTIONS(1700), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1700), + [anon_sym_DQUOTE] = ACTIONS(1700), + [sym__concat] = ACTIONS(1700), + [sym_word] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), + [anon_sym_LT_LPAREN] = ACTIONS(1700), + [sym_ansii_c_string] = ACTIONS(1700), + [sym__special_character] = ACTIONS(1700), }, [1189] = { - [sym_word] = ACTIONS(1759), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1759), - [sym_raw_string] = ACTIONS(1759), - [sym__concat] = ACTIONS(1759), - [anon_sym_BQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1759), - [sym_ansii_c_string] = ACTIONS(1759), - [anon_sym_LT_LPAREN] = ACTIONS(1759), - [anon_sym_GT_LPAREN] = ACTIONS(1759), - [sym__special_character] = ACTIONS(1759), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_BQUOTE] = ACTIONS(1706), + [anon_sym_GT_LPAREN] = ACTIONS(1706), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [sym__concat] = ACTIONS(1706), + [sym_word] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1706), + [anon_sym_LT_LPAREN] = ACTIONS(1706), + [sym_ansii_c_string] = ACTIONS(1706), + [sym__special_character] = ACTIONS(1706), }, [1190] = { - [sym_word] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [sym_raw_string] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1832), - [sym_ansii_c_string] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym__special_character] = ACTIONS(1832), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1821), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_RPAREN] = ACTIONS(1821), + [anon_sym_BQUOTE] = ACTIONS(1821), + [anon_sym_GT_LPAREN] = ACTIONS(1821), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [sym__concat] = ACTIONS(1821), + [sym_word] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), + [anon_sym_LT_LPAREN] = ACTIONS(1821), + [sym_ansii_c_string] = ACTIONS(1821), + [sym__special_character] = ACTIONS(1821), }, [1191] = { - [sym_word] = ACTIONS(1836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1836), - [anon_sym_DQUOTE] = ACTIONS(1836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1836), - [sym_raw_string] = ACTIONS(1836), - [sym__concat] = ACTIONS(1836), - [anon_sym_BQUOTE] = ACTIONS(1836), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1836), - [sym_ansii_c_string] = ACTIONS(1836), - [anon_sym_LT_LPAREN] = ACTIONS(1836), - [anon_sym_GT_LPAREN] = ACTIONS(1836), - [sym__special_character] = ACTIONS(1836), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_RPAREN] = ACTIONS(1825), + [anon_sym_BQUOTE] = ACTIONS(1825), + [anon_sym_GT_LPAREN] = ACTIONS(1825), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym__concat] = ACTIONS(1825), + [sym_word] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1825), + [anon_sym_LT_LPAREN] = ACTIONS(1825), + [sym_ansii_c_string] = ACTIONS(1825), + [sym__special_character] = ACTIONS(1825), }, [1192] = { - [aux_sym_concatenation_repeat1] = STATE(1161), - [sym_word] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(189), - [sym__concat] = ACTIONS(2138), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(1164), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(211), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [sym__concat] = ACTIONS(2184), + [sym_word] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), }, [1193] = { - [aux_sym_concatenation_repeat1] = STATE(1202), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [anon_sym_EQ_TILDE] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_esac] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(409), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [sym_word] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(409), }, [1194] = { - [sym_word] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), + [sym_raw_string] = ACTIONS(413), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [sym_word] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(413), }, [1195] = { - [sym_word] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_EQ_TILDE] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [anon_sym_esac] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [1196] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_EQ_TILDE] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_esac] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(1204), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2892), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_EQ_TILDE] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [anon_sym_esac] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [1197] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_EQ_TILDE] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_esac] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [anon_sym_EQ_TILDE] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [anon_sym_esac] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [1198] = { - [sym_word] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), + [sym_raw_string] = ACTIONS(211), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), }, [1199] = { [aux_sym__literal_repeat1] = STATE(1199), - [sym_word] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [sym__special_character] = ACTIONS(2814), - [anon_sym_SEMI_SEMI] = ACTIONS(629), + [sym_raw_string] = ACTIONS(645), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [sym__special_character] = ACTIONS(2894), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(645), }, [1200] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_EQ_EQ] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_esac] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [sym_word] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), }, [1201] = { - [sym_command_substitution] = STATE(1200), - [sym_simple_expansion] = STATE(1200), - [sym_string_expansion] = STATE(1200), - [sym_string] = STATE(1200), - [sym_process_substitution] = STATE(1200), - [sym_expansion] = STATE(1200), - [sym_word] = ACTIONS(2817), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [sym_raw_string] = ACTIONS(2817), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_DOLLAR] = ACTIONS(2819), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(2817), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym__special_character] = ACTIONS(2817), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_EQ_TILDE] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_esac] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), }, [1202] = { - [aux_sym_concatenation_repeat1] = STATE(1202), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2821), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_EQ_TILDE] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_EQ_EQ] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_esac] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1203] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [anon_sym_EQ_TILDE] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_EQ_EQ] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_esac] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), + [sym_command_substitution] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_string] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [sym_expansion] = STATE(1202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2897), + [sym_word] = ACTIONS(2899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(2901), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [sym_ansii_c_string] = ACTIONS(2897), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [sym__special_character] = ACTIONS(2897), + [sym_number] = ACTIONS(2899), }, [1204] = { - [sym_word] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(1204), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_EQ_TILDE] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1205] = { - [sym_word] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [sym_word] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(905), }, [1206] = { - [sym_word] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [sym_word] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(957), }, [1207] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [anon_sym_EQ_TILDE] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_EQ_EQ] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_esac] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_EQ_TILDE] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_EQ_EQ] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_esac] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [1208] = { - [sym_word] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [sym_word] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), }, [1209] = { - [sym_string] = STATE(1164), - [sym_word] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(2826), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2828), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym__] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_ansii_c_string] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2824), + [sym_string] = STATE(1163), + [anon_sym__] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(2906), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2908), + [sym_raw_string] = ACTIONS(2910), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(2908), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1414), + [anon_sym_0] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [sym_word] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2906), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [sym_ansii_c_string] = ACTIONS(1223), + [sym__special_character] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), }, [1210] = { - [sym_word] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1231), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [sym_word] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), }, [1211] = { - [sym_word] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1290), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [sym_word] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), }, [1212] = { - [sym_word] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [sym_word] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), }, [1213] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [anon_sym_EQ_TILDE] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_esac] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [anon_sym_EQ_TILDE] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_EQ_EQ] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_esac] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [1214] = { - [sym_word] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1454), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [sym_word] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), }, [1215] = { - [sym_word] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1466), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [sym_word] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), }, [1216] = { - [sym_word] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1476), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [sym_word] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), }, [1217] = { - [sym_word] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1480), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [sym_word] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), }, [1218] = { - [sym_word] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1688), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [sym_word] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), }, [1219] = { - [sym_word] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [sym_word] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), }, [1220] = { - [sym_word] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1698), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [sym_word] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), }, [1221] = { - [sym_word] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [sym_word] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), }, [1222] = { - [sym_word] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [sym_word] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1819), }, [1223] = { - [sym_word] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1823), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [sym_word] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1823), }, [1224] = { - [aux_sym_concatenation_repeat1] = STATE(1193), - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(1196), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1225] = { - [aux_sym_concatenation_repeat1] = STATE(1234), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [aux_sym__simple_variable_name_token1] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [sym_variable_name] = ACTIONS(359), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_esac] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(411), + [sym__heredoc_body_end] = ACTIONS(411), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), + [sym__heredoc_body_middle] = ACTIONS(411), }, [1226] = { - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [sym__heredoc_body_end] = ACTIONS(413), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(413), - [sym__heredoc_body_middle] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(415), + [sym__heredoc_body_end] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), + [sym__heredoc_body_middle] = ACTIONS(415), }, [1227] = { - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [sym__heredoc_body_end] = ACTIONS(417), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), [anon_sym_BQUOTE] = ACTIONS(417), - [sym__heredoc_body_middle] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [sym_variable_name] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [anon_sym_esac] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [aux_sym__simple_variable_name_token1] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [1228] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [aux_sym__simple_variable_name_token1] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [sym_variable_name] = ACTIONS(421), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_esac] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(1236), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2912), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [sym_variable_name] = ACTIONS(433), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [anon_sym_esac] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [aux_sym__simple_variable_name_token1] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [1229] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [aux_sym__simple_variable_name_token1] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [sym_variable_name] = ACTIONS(581), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_esac] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_variable_name] = ACTIONS(597), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [anon_sym_esac] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [aux_sym__simple_variable_name_token1] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [1230] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [anon_sym_EQ_TILDE] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1231] = { [aux_sym__literal_repeat1] = STATE(1231), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [anon_sym_EQ_TILDE] = ACTIONS(629), - [sym__special_character] = ACTIONS(2832), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_esac] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [anon_sym_EQ_TILDE] = ACTIONS(645), + [sym__special_character] = ACTIONS(2914), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_EQ_EQ] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [anon_sym_esac] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [1232] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_esac] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(876), + [sym__heredoc_body_end] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [sym__heredoc_body_middle] = ACTIONS(876), }, [1233] = { - [sym_command_substitution] = STATE(1232), - [sym_simple_expansion] = STATE(1232), - [sym_string_expansion] = STATE(1232), - [sym_string] = STATE(1232), - [sym_process_substitution] = STATE(1232), - [sym_expansion] = STATE(1232), - [sym_word] = ACTIONS(2835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(2835), - [anon_sym_BQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2845), - [anon_sym_GT_LPAREN] = ACTIONS(2847), - [sym_ansii_c_string] = ACTIONS(2835), - [anon_sym_LT_LPAREN] = ACTIONS(2847), - [sym__special_character] = ACTIONS(2835), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [sym_variable_name] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_esac] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [aux_sym__simple_variable_name_token1] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), }, [1234] = { - [aux_sym_concatenation_repeat1] = STATE(1234), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2849), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_esac] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1235] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [aux_sym__simple_variable_name_token1] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [sym_variable_name] = ACTIONS(862), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_esac] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), + [sym_command_substitution] = STATE(1234), + [sym_simple_expansion] = STATE(1234), + [sym_string_expansion] = STATE(1234), + [sym_string] = STATE(1234), + [sym_process_substitution] = STATE(1234), + [sym_expansion] = STATE(1234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2919), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2921), + [sym_word] = ACTIONS(2923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2925), + [anon_sym_DOLLAR] = ACTIONS(2927), + [anon_sym_LT_LPAREN] = ACTIONS(2929), + [sym_ansii_c_string] = ACTIONS(2921), + [anon_sym_BQUOTE] = ACTIONS(2931), + [anon_sym_GT_LPAREN] = ACTIONS(2929), + [sym__special_character] = ACTIONS(2921), + [sym_number] = ACTIONS(2923), }, [1236] = { - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(922), - [sym__heredoc_body_end] = ACTIONS(922), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(922), - [sym__heredoc_body_middle] = ACTIONS(922), + [aux_sym_concatenation_repeat1] = STATE(1236), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2933), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1237] = { - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), - [sym__heredoc_body_end] = ACTIONS(972), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(972), - [sym__heredoc_body_middle] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(907), + [sym__heredoc_body_end] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [sym__heredoc_body_middle] = ACTIONS(907), }, [1238] = { - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [sym__heredoc_body_end] = ACTIONS(1034), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1034), - [sym__heredoc_body_middle] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(959), + [sym__heredoc_body_end] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [sym__heredoc_body_middle] = ACTIONS(959), }, [1239] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [aux_sym__simple_variable_name_token1] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [sym_variable_name] = ACTIONS(1038), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_esac] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [sym_variable_name] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_esac] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [aux_sym__simple_variable_name_token1] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [1240] = { - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [sym__heredoc_body_end] = ACTIONS(1034), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1034), - [sym__heredoc_body_middle] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(876), + [sym__heredoc_body_end] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [sym__heredoc_body_middle] = ACTIONS(876), }, [1241] = { - [sym_string] = STATE(1196), - [sym_word] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2852), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2854), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(2852), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(2428), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_esac] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(1195), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym__] = ACTIONS(2936), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2936), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [sym__special_character] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2938), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [sym_raw_string] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2938), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2936), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_esac] = ACTIONS(1223), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [sym_ansii_c_string] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [1242] = { - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [sym__heredoc_body_end] = ACTIONS(1254), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1254), - [sym__heredoc_body_middle] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1233), + [sym__heredoc_body_end] = ACTIONS(1233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), + [sym__heredoc_body_middle] = ACTIONS(1233), }, [1243] = { - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), - [sym__heredoc_body_end] = ACTIONS(1303), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1303), - [sym__heredoc_body_middle] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1292), + [sym__heredoc_body_end] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [sym__heredoc_body_middle] = ACTIONS(1292), }, [1244] = { - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1321), - [sym__heredoc_body_end] = ACTIONS(1321), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1321), - [sym__heredoc_body_middle] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym__heredoc_body_end] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), + [sym__heredoc_body_middle] = ACTIONS(1302), }, [1245] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [aux_sym__simple_variable_name_token1] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [sym_variable_name] = ACTIONS(1367), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_esac] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [sym_variable_name] = ACTIONS(1398), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_esac] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [aux_sym__simple_variable_name_token1] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [1246] = { - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1552), - [sym__heredoc_body_end] = ACTIONS(1552), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1552), - [sym__heredoc_body_middle] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1456), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1456), + [sym__heredoc_body_end] = ACTIONS(1456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1456), + [sym__heredoc_body_middle] = ACTIONS(1456), }, [1247] = { - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1564), - [sym__heredoc_body_end] = ACTIONS(1564), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1564), - [sym__heredoc_body_middle] = ACTIONS(1564), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1468), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1468), + [sym__heredoc_body_end] = ACTIONS(1468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1468), + [sym__heredoc_body_middle] = ACTIONS(1468), }, [1248] = { - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1574), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1574), - [sym__heredoc_body_end] = ACTIONS(1574), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1574), - [sym__heredoc_body_middle] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1478), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1478), + [sym__heredoc_body_end] = ACTIONS(1478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1478), + [sym__heredoc_body_middle] = ACTIONS(1478), }, [1249] = { - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1578), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1578), - [sym__heredoc_body_end] = ACTIONS(1578), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1578), - [sym__heredoc_body_middle] = ACTIONS(1578), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1482), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1482), + [sym__heredoc_body_end] = ACTIONS(1482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), + [sym__heredoc_body_middle] = ACTIONS(1482), }, [1250] = { - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1743), - [sym__heredoc_body_end] = ACTIONS(1743), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1743), - [sym__heredoc_body_middle] = ACTIONS(1743), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1690), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1690), + [sym__heredoc_body_end] = ACTIONS(1690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1690), + [sym__heredoc_body_middle] = ACTIONS(1690), }, [1251] = { - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1749), - [sym__heredoc_body_end] = ACTIONS(1749), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1749), - [sym__heredoc_body_middle] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1696), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1696), + [sym__heredoc_body_end] = ACTIONS(1696), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), + [sym__heredoc_body_middle] = ACTIONS(1696), }, [1252] = { - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1753), - [sym__heredoc_body_end] = ACTIONS(1753), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1753), - [sym__heredoc_body_middle] = ACTIONS(1753), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1700), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1700), + [sym__heredoc_body_end] = ACTIONS(1700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), + [sym__heredoc_body_middle] = ACTIONS(1700), }, [1253] = { - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1759), - [sym__heredoc_body_end] = ACTIONS(1759), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1759), - [sym__heredoc_body_middle] = ACTIONS(1759), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1706), + [sym__heredoc_body_end] = ACTIONS(1706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1706), + [sym__heredoc_body_middle] = ACTIONS(1706), }, [1254] = { - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [sym__heredoc_body_end] = ACTIONS(1832), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1832), - [sym__heredoc_body_middle] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1821), + [sym__heredoc_body_end] = ACTIONS(1821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), + [sym__heredoc_body_middle] = ACTIONS(1821), }, [1255] = { - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1836), - [sym__heredoc_body_end] = ACTIONS(1836), - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(1836), - [sym__heredoc_body_middle] = ACTIONS(1836), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1825), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1825), + [sym__heredoc_body_end] = ACTIONS(1825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1825), + [sym__heredoc_body_middle] = ACTIONS(1825), }, [1256] = { - [aux_sym_concatenation_repeat1] = STATE(1225), - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(1228), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1257] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [aux_sym__simple_variable_name_token1] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_esac] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_EQ_TILDE] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_esac] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [1258] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_EQ_TILDE] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [anon_sym_EQ_TILDE] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_esac] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_esac] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [1259] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [anon_sym_EQ_TILDE] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_esac] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [anon_sym_esac] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [aux_sym__simple_variable_name_token1] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [1260] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [aux_sym__simple_variable_name_token1] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_esac] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(1268), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [anon_sym_esac] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [aux_sym__simple_variable_name_token1] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [1261] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [aux_sym__simple_variable_name_token1] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_esac] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [anon_sym_esac] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [aux_sym__simple_variable_name_token1] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [1262] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1263] = { [aux_sym__literal_repeat1] = STATE(1263), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [sym__special_character] = ACTIONS(2860), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [aux_sym__simple_variable_name_token1] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [sym_variable_name] = ACTIONS(634), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_esac] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [sym__special_character] = ACTIONS(2944), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [sym_variable_name] = ACTIONS(650), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [anon_sym_esac] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [aux_sym__simple_variable_name_token1] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [1264] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_esac] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_esac] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1265] = { - [sym_command_substitution] = STATE(1264), - [sym_simple_expansion] = STATE(1264), - [sym_string_expansion] = STATE(1264), - [sym_string] = STATE(1264), - [sym_process_substitution] = STATE(1264), - [sym_expansion] = STATE(1264), - [sym_word] = ACTIONS(2863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), - [sym_raw_string] = ACTIONS(2863), - [anon_sym_BQUOTE] = ACTIONS(2871), - [anon_sym_DOLLAR] = ACTIONS(2873), - [anon_sym_GT_LPAREN] = ACTIONS(2875), - [sym_ansii_c_string] = ACTIONS(2863), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [sym__special_character] = ACTIONS(2863), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_esac] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [aux_sym__simple_variable_name_token1] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), }, [1266] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [aux_sym__simple_variable_name_token1] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_esac] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1267] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [aux_sym__simple_variable_name_token1] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_esac] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), + [sym_command_substitution] = STATE(1266), + [sym_simple_expansion] = STATE(1266), + [sym_string_expansion] = STATE(1266), + [sym_string] = STATE(1266), + [sym_process_substitution] = STATE(1266), + [sym_expansion] = STATE(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2951), + [sym_word] = ACTIONS(2953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [sym_ansii_c_string] = ACTIONS(2951), + [anon_sym_BQUOTE] = ACTIONS(2961), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym__special_character] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), }, [1268] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [anon_sym_EQ_TILDE] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_esac] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(1268), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2963), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [aux_sym__simple_variable_name_token1] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1269] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_esac] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_EQ_TILDE] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [anon_sym_esac] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), }, [1270] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_EQ_TILDE] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_esac] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [1271] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [aux_sym__simple_variable_name_token1] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_esac] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_esac] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [aux_sym__simple_variable_name_token1] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [1272] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_esac] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1273] = { - [sym_string] = STATE(1228), - [sym_word] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2880), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2882), - [sym_variable_name] = ACTIONS(1202), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_esac] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(1227), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym__] = ACTIONS(2966), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2968), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(2968), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2966), + [sym__special_character] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2968), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [sym_raw_string] = ACTIONS(2970), + [anon_sym_BANG] = ACTIONS(2968), + [sym_variable_name] = ACTIONS(1227), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_esac] = ACTIONS(1223), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [sym_ansii_c_string] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [1274] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_esac] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_esac] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [1275] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_EQ_TILDE] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_EQ_EQ] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_esac] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [anon_sym_EQ_TILDE] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_EQ_EQ] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [anon_sym_esac] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [1276] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [anon_sym_EQ_TILDE] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_EQ_EQ] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_esac] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1277] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [aux_sym__simple_variable_name_token1] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_esac] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_esac] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [aux_sym__simple_variable_name_token1] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [1278] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [anon_sym_EQ_TILDE] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_EQ_EQ] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_esac] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [anon_sym_EQ_TILDE] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_esac] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [1279] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [anon_sym_EQ_TILDE] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_EQ_EQ] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_esac] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [anon_sym_EQ_TILDE] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_esac] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [1280] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [anon_sym_EQ_TILDE] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_esac] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_EQ_TILDE] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_esac] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [1281] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [anon_sym_EQ_TILDE] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_EQ_EQ] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_esac] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_EQ_TILDE] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_esac] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [1282] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [anon_sym_EQ_TILDE] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_EQ_EQ] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_esac] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_EQ_TILDE] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [anon_sym_esac] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [1283] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_esac] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [anon_sym_EQ_TILDE] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_esac] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [1284] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [anon_sym_EQ_TILDE] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_EQ_EQ] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_esac] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [anon_sym_EQ_TILDE] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_EQ_EQ] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [anon_sym_esac] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [1285] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [anon_sym_EQ_TILDE] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_EQ_EQ] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_esac] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [anon_sym_EQ_TILDE] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_EQ_EQ] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_esac] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [1286] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [anon_sym_EQ_TILDE] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_EQ_EQ] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_esac] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [anon_sym_EQ_TILDE] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_EQ_EQ] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [anon_sym_esac] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [1287] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [anon_sym_EQ_TILDE] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [anon_sym_EQ_TILDE] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_EQ_EQ] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [anon_sym_esac] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [1288] = { - [aux_sym_concatenation_repeat1] = STATE(1257), - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(1260), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1289] = { - [aux_sym_concatenation_repeat1] = STATE(1298), - [sym_word] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [sym__concat] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [sym__special_character] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [sym_raw_string] = ACTIONS(355), - [sym_variable_name] = ACTIONS(359), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [anon_sym_AMP_GT] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_BQUOTE] = ACTIONS(355), - [anon_sym_esac] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_ansii_c_string] = ACTIONS(355), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_variable_name] = ACTIONS(411), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_esac] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [1290] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [aux_sym__simple_variable_name_token1] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [sym_variable_name] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_esac] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_variable_name] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_esac] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [aux_sym__simple_variable_name_token1] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [1291] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(417), + [anon_sym_DOLLAR] = ACTIONS(417), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(417), + [anon_sym_GT_LPAREN] = ACTIONS(417), + [sym_number] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_PIPE_PIPE] = ACTIONS(417), + [sym__concat] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(417), + [sym_word] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_LT_AMP] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [sym__special_character] = ACTIONS(417), + [anon_sym_LT_LT_DASH] = ACTIONS(417), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [aux_sym__simple_variable_name_token1] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_variable_name] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_esac] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(417), + [sym_raw_string] = ACTIONS(417), + [sym_variable_name] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(417), + [anon_sym_DQUOTE] = ACTIONS(417), + [anon_sym_LT_LT_LT] = ACTIONS(417), + [anon_sym_GT_AMP] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), + [anon_sym_esac] = ACTIONS(417), + [anon_sym_LT_LPAREN] = ACTIONS(417), + [sym_ansii_c_string] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(417), + [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_PIPE_AMP] = ACTIONS(417), }, [1292] = { - [sym_word] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [sym__concat] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [sym_variable_name] = ACTIONS(421), - [sym_file_descriptor] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_esac] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), + [aux_sym_concatenation_repeat1] = STATE(1300), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_number] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [sym__concat] = ACTIONS(2972), + [anon_sym_PIPE] = ACTIONS(429), + [sym_word] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [sym__special_character] = ACTIONS(429), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [sym_raw_string] = ACTIONS(429), + [sym_variable_name] = ACTIONS(433), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [anon_sym_esac] = ACTIONS(429), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [sym_ansii_c_string] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [1293] = { - [sym_word] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [sym__concat] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [sym__special_character] = ACTIONS(579), - [anon_sym_LT_LT_DASH] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [sym_raw_string] = ACTIONS(579), - [sym_variable_name] = ACTIONS(581), - [sym_file_descriptor] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_LT_LT_LT] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(579), - [anon_sym_esac] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(579), - [sym_ansii_c_string] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [sym__concat] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(595), + [sym_word] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_variable_name] = ACTIONS(597), + [sym_file_descriptor] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_LT_LT_LT] = ACTIONS(595), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), + [anon_sym_esac] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_PIPE_AMP] = ACTIONS(595), }, [1294] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [aux_sym__simple_variable_name_token1] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1295] = { [aux_sym__literal_repeat1] = STATE(1295), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [sym__special_character] = ACTIONS(2888), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [aux_sym__simple_variable_name_token1] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_esac] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [sym__special_character] = ACTIONS(2974), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [anon_sym_esac] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [aux_sym__simple_variable_name_token1] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [1296] = { - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_esac] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_esac] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1297] = { - [sym_command_substitution] = STATE(1296), - [sym_simple_expansion] = STATE(1296), - [sym_string_expansion] = STATE(1296), - [sym_string] = STATE(1296), - [sym_process_substitution] = STATE(1296), - [sym_expansion] = STATE(1296), - [sym_word] = ACTIONS(2891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2891), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2901), - [anon_sym_GT_LPAREN] = ACTIONS(2903), - [sym_ansii_c_string] = ACTIONS(2891), - [anon_sym_LT_LPAREN] = ACTIONS(2903), - [sym__special_character] = ACTIONS(2891), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [sym__concat] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(878), + [sym_word] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [anon_sym_LT_LT_DASH] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [sym_variable_name] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_esac] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(878), + [anon_sym_PIPE_AMP] = ACTIONS(878), }, [1298] = { - [aux_sym_concatenation_repeat1] = STATE(1298), - [sym_word] = ACTIONS(782), - [anon_sym_AMP_GT_GT] = ACTIONS(782), - [anon_sym_DOLLAR] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(782), - [anon_sym_LT_LPAREN] = ACTIONS(782), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(782), - [sym__concat] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_AMP] = ACTIONS(782), - [anon_sym_GT_GT] = ACTIONS(782), - [sym__special_character] = ACTIONS(782), - [anon_sym_LT_LT_DASH] = ACTIONS(782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), - [anon_sym_LF] = ACTIONS(784), - [anon_sym_SEMI] = ACTIONS(782), - [sym_raw_string] = ACTIONS(782), - [sym_variable_name] = ACTIONS(784), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_AMP_GT] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(782), - [anon_sym_LT_LT_LT] = ACTIONS(782), - [anon_sym_GT_AMP] = ACTIONS(782), - [anon_sym_BQUOTE] = ACTIONS(782), - [anon_sym_esac] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(782), - [sym_ansii_c_string] = ACTIONS(782), - [anon_sym_AMP_AMP] = ACTIONS(782), - [anon_sym_SEMI_SEMI] = ACTIONS(782), - [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1299] = { - [sym_word] = ACTIONS(860), - [anon_sym_AMP_GT_GT] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_LT_LT] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(860), - [sym__concat] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_AMP] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(860), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(860), - [anon_sym_LF] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(860), - [sym_raw_string] = ACTIONS(860), - [sym_variable_name] = ACTIONS(862), - [sym_file_descriptor] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_AMP_GT] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_LT_LT_LT] = ACTIONS(860), - [anon_sym_GT_AMP] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_esac] = ACTIONS(860), - [anon_sym_GT_LPAREN] = ACTIONS(860), - [sym_ansii_c_string] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(860), - [anon_sym_SEMI_SEMI] = ACTIONS(860), - [anon_sym_PIPE_AMP] = ACTIONS(860), + [sym_command_substitution] = STATE(1298), + [sym_simple_expansion] = STATE(1298), + [sym_string_expansion] = STATE(1298), + [sym_string] = STATE(1298), + [sym_process_substitution] = STATE(1298), + [sym_expansion] = STATE(1298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2981), + [sym_word] = ACTIONS(2983), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [anon_sym_LT_LPAREN] = ACTIONS(2989), + [sym_ansii_c_string] = ACTIONS(2981), + [anon_sym_BQUOTE] = ACTIONS(2991), + [anon_sym_GT_LPAREN] = ACTIONS(2989), + [sym__special_character] = ACTIONS(2981), + [sym_number] = ACTIONS(2983), }, [1300] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [aux_sym__simple_variable_name_token1] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [sym_variable_name] = ACTIONS(922), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_esac] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(1300), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__concat] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(882), + [sym_word] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_AMP_GT] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_esac] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), }, [1301] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [aux_sym__simple_variable_name_token1] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [sym_variable_name] = ACTIONS(972), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_esac] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [sym_variable_name] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [anon_sym_esac] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [aux_sym__simple_variable_name_token1] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), }, [1302] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [sym_variable_name] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_esac] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [aux_sym__simple_variable_name_token1] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [1303] = { - [sym_word] = ACTIONS(1036), - [anon_sym_AMP_GT_GT] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [sym__concat] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_AMP] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1036), - [sym__special_character] = ACTIONS(1036), - [anon_sym_LT_LT_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1036), - [sym_variable_name] = ACTIONS(1038), - [sym_file_descriptor] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_AMP_GT] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_GT_AMP] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_esac] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(1036), - [sym_ansii_c_string] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_SEMI_SEMI] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym__concat] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1063), + [sym_variable_name] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_esac] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), }, [1304] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_esac] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1305] = { - [sym_string] = STATE(1260), - [sym_word] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2908), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2910), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2908), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2910), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(2412), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_esac] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(1259), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym__] = ACTIONS(2996), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2996), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2996), + [sym__special_character] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [sym_raw_string] = ACTIONS(3000), + [anon_sym_BANG] = ACTIONS(2998), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2996), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_esac] = ACTIONS(1223), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [sym_ansii_c_string] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2996), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [1306] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [aux_sym__simple_variable_name_token1] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_variable_name] = ACTIONS(1254), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_esac] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_variable_name] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_esac] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [aux_sym__simple_variable_name_token1] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [1307] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [aux_sym__simple_variable_name_token1] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [sym_variable_name] = ACTIONS(1303), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_esac] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_variable_name] = ACTIONS(1292), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [anon_sym_esac] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [aux_sym__simple_variable_name_token1] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [1308] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [aux_sym__simple_variable_name_token1] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [sym_variable_name] = ACTIONS(1321), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_esac] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_variable_name] = ACTIONS(1302), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [aux_sym__simple_variable_name_token1] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1309] = { - [sym_word] = ACTIONS(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(1365), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_LT_LPAREN] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [sym__concat] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_LT_AMP] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [sym__special_character] = ACTIONS(1365), - [anon_sym_LT_LT_DASH] = ACTIONS(1365), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [sym_raw_string] = ACTIONS(1365), - [sym_variable_name] = ACTIONS(1367), - [sym_file_descriptor] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_AMP_GT] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_LT_LT_LT] = ACTIONS(1365), - [anon_sym_GT_AMP] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [anon_sym_esac] = ACTIONS(1365), - [anon_sym_GT_LPAREN] = ACTIONS(1365), - [sym_ansii_c_string] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_PIPE_AMP] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_number] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [sym__concat] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [sym__special_character] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1396), + [sym_variable_name] = ACTIONS(1398), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), + [anon_sym_esac] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [sym_ansii_c_string] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [1310] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [aux_sym__simple_variable_name_token1] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [sym_variable_name] = ACTIONS(1552), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_esac] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [sym_variable_name] = ACTIONS(1456), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_esac] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [aux_sym__simple_variable_name_token1] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [1311] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [aux_sym__simple_variable_name_token1] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [sym_variable_name] = ACTIONS(1564), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_esac] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [sym_variable_name] = ACTIONS(1468), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_esac] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [aux_sym__simple_variable_name_token1] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [1312] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [aux_sym__simple_variable_name_token1] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [sym_variable_name] = ACTIONS(1574), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_esac] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_variable_name] = ACTIONS(1478), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_esac] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [aux_sym__simple_variable_name_token1] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [1313] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [aux_sym__simple_variable_name_token1] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [sym_variable_name] = ACTIONS(1578), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_esac] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [sym_variable_name] = ACTIONS(1482), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_esac] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [aux_sym__simple_variable_name_token1] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [1314] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [aux_sym__simple_variable_name_token1] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [sym_variable_name] = ACTIONS(1743), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_esac] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [sym_variable_name] = ACTIONS(1690), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [anon_sym_esac] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [aux_sym__simple_variable_name_token1] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [1315] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [aux_sym__simple_variable_name_token1] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [sym_variable_name] = ACTIONS(1749), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_esac] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [sym_variable_name] = ACTIONS(1696), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_esac] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [aux_sym__simple_variable_name_token1] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [1316] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [aux_sym__simple_variable_name_token1] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [sym_variable_name] = ACTIONS(1753), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_esac] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [sym_variable_name] = ACTIONS(1700), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [anon_sym_esac] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [aux_sym__simple_variable_name_token1] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [1317] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [aux_sym__simple_variable_name_token1] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [sym_variable_name] = ACTIONS(1759), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_esac] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [sym_variable_name] = ACTIONS(1706), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_esac] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [aux_sym__simple_variable_name_token1] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [1318] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [aux_sym__simple_variable_name_token1] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [sym_variable_name] = ACTIONS(1832), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_esac] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [sym_variable_name] = ACTIONS(1821), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [anon_sym_esac] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [aux_sym__simple_variable_name_token1] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [1319] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [aux_sym__simple_variable_name_token1] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [sym_variable_name] = ACTIONS(1836), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [sym_variable_name] = ACTIONS(1825), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [anon_sym_esac] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [aux_sym__simple_variable_name_token1] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [1320] = { - [aux_sym_concatenation_repeat1] = STATE(1289), - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(1292), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [sym__concat] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1321] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [aux_sym__simple_variable_name_token1] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_esac] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_esac] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [1322] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [aux_sym__simple_variable_name_token1] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_esac] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_esac] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [aux_sym__simple_variable_name_token1] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [1323] = { - [sym_word] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_variable_name] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_variable_name] = ACTIONS(213), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1324] = { [aux_sym__literal_repeat1] = STATE(1324), - [sym_word] = ACTIONS(629), - [anon_sym_AMP_GT_GT] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_PIPE] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_AMP] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(629), - [sym__special_character] = ACTIONS(2914), - [anon_sym_LT_LT_DASH] = ACTIONS(629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), - [anon_sym_LF] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(629), - [sym_raw_string] = ACTIONS(629), - [sym_variable_name] = ACTIONS(634), - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_AMP_GT] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_LT_LT_LT] = ACTIONS(629), - [anon_sym_GT_AMP] = ACTIONS(629), - [anon_sym_BQUOTE] = ACTIONS(629), - [anon_sym_esac] = ACTIONS(629), - [anon_sym_GT_LPAREN] = ACTIONS(629), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(629), - [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_BQUOTE] = ACTIONS(645), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [sym_number] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [sym_word] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_AMP] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(645), + [sym__special_character] = ACTIONS(3002), + [anon_sym_LT_LT_DASH] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(645), + [sym_raw_string] = ACTIONS(645), + [sym_variable_name] = ACTIONS(650), + [sym_file_descriptor] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_LT_LT_LT] = ACTIONS(645), + [anon_sym_GT_AMP] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), + [anon_sym_esac] = ACTIONS(645), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(645), + [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_PIPE_AMP] = ACTIONS(645), }, [1325] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [aux_sym__simple_variable_name_token1] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_esac] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_esac] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1326] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [aux_sym__simple_variable_name_token1] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_esac] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [anon_sym_esac] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [aux_sym__simple_variable_name_token1] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), }, [1327] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_esac] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [aux_sym__simple_variable_name_token1] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [1328] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_esac] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [aux_sym__simple_variable_name_token1] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1329] = { - [sym_string] = STATE(1292), - [sym_word] = ACTIONS(1198), - [anon_sym_0] = ACTIONS(2917), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [sym__special_character] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2919), - [sym_variable_name] = ACTIONS(1202), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(2923), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_esac] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), - [sym_ansii_c_string] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(1291), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym__] = ACTIONS(3005), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_DOLLAR] = ACTIONS(3007), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [sym_number] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(1223), + [sym_word] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(3005), + [sym__special_character] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3007), + [sym_variable_name] = ACTIONS(1227), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(3011), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_esac] = ACTIONS(1223), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [sym_ansii_c_string] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), }, [1330] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [aux_sym__simple_variable_name_token1] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_esac] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_esac] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [aux_sym__simple_variable_name_token1] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [1331] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [aux_sym__simple_variable_name_token1] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_esac] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [anon_sym_esac] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [aux_sym__simple_variable_name_token1] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [1332] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [aux_sym__simple_variable_name_token1] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_esac] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [aux_sym__simple_variable_name_token1] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1333] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [aux_sym__simple_variable_name_token1] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_esac] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_esac] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [aux_sym__simple_variable_name_token1] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [1334] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [aux_sym__simple_variable_name_token1] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_esac] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_esac] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [aux_sym__simple_variable_name_token1] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [1335] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [aux_sym__simple_variable_name_token1] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_esac] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_esac] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [aux_sym__simple_variable_name_token1] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [1336] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [aux_sym__simple_variable_name_token1] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_esac] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_esac] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [aux_sym__simple_variable_name_token1] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [1337] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [aux_sym__simple_variable_name_token1] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_esac] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [anon_sym_esac] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [aux_sym__simple_variable_name_token1] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [1338] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [aux_sym__simple_variable_name_token1] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_esac] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_esac] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [aux_sym__simple_variable_name_token1] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [1339] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [aux_sym__simple_variable_name_token1] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_esac] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [anon_sym_esac] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [aux_sym__simple_variable_name_token1] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [1340] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [aux_sym__simple_variable_name_token1] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_esac] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_esac] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [aux_sym__simple_variable_name_token1] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [1341] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [aux_sym__simple_variable_name_token1] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_esac] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [anon_sym_esac] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [aux_sym__simple_variable_name_token1] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [1342] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [aux_sym__simple_variable_name_token1] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [anon_sym_esac] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [aux_sym__simple_variable_name_token1] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [1343] = { - [sym_word] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(411), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(409), + [sym_word] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(409), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [sym__concat] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [anon_sym_LT_LT_DASH] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [sym_variable_name] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_esac] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_SEMI_SEMI] = ACTIONS(411), - [anon_sym_PIPE_AMP] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_variable_name] = ACTIONS(411), + [sym_file_descriptor] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_AMP_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_esac] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, [1344] = { - [sym_word] = ACTIONS(415), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_word] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [sym__concat] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_variable_name] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_esac] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_variable_name] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_esac] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [1345] = { - [sym_word] = ACTIONS(920), - [anon_sym_AMP_GT_GT] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(920), - [anon_sym_LT_LPAREN] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(920), - [sym__concat] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_AMP] = ACTIONS(920), - [anon_sym_GT_GT] = ACTIONS(920), - [sym__special_character] = ACTIONS(920), - [anon_sym_LT_LT_DASH] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_LF] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(920), - [sym_raw_string] = ACTIONS(920), - [sym_variable_name] = ACTIONS(922), - [sym_file_descriptor] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_AMP_GT] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_LT_LT_LT] = ACTIONS(920), - [anon_sym_GT_AMP] = ACTIONS(920), - [anon_sym_BQUOTE] = ACTIONS(920), - [anon_sym_esac] = ACTIONS(920), - [anon_sym_GT_LPAREN] = ACTIONS(920), - [sym_ansii_c_string] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(920), - [anon_sym_SEMI_SEMI] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_esac] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1346] = { - [sym_word] = ACTIONS(970), - [anon_sym_AMP_GT_GT] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_LT_LPAREN] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_AMP] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [sym__special_character] = ACTIONS(970), - [anon_sym_LT_LT_DASH] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_LF] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [sym_raw_string] = ACTIONS(970), - [sym_variable_name] = ACTIONS(972), - [sym_file_descriptor] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_AMP_GT] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LT_LT_LT] = ACTIONS(970), - [anon_sym_GT_AMP] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(970), - [anon_sym_esac] = ACTIONS(970), - [anon_sym_GT_LPAREN] = ACTIONS(970), - [sym_ansii_c_string] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI_SEMI] = ACTIONS(970), - [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_AMP_GT_GT] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_GT_LPAREN] = ACTIONS(905), + [sym_number] = ACTIONS(905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [sym__concat] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(905), + [sym_word] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_LT_AMP] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [sym__special_character] = ACTIONS(905), + [anon_sym_LT_LT_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [sym_raw_string] = ACTIONS(905), + [sym_variable_name] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_AMP_GT] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_LT_LT_LT] = ACTIONS(905), + [anon_sym_GT_AMP] = ACTIONS(905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), + [anon_sym_esac] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(905), + [sym_ansii_c_string] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(905), + [anon_sym_PIPE_AMP] = ACTIONS(905), }, [1347] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [sym__concat] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(957), + [sym_word] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [sym__special_character] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [sym_raw_string] = ACTIONS(957), + [sym_variable_name] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_esac] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [sym_ansii_c_string] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), }, [1348] = { - [sym_word] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_GT_LPAREN] = ACTIONS(874), + [sym_number] = ACTIONS(874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [sym__concat] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(874), + [sym_word] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [sym__special_character] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(874), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [sym_raw_string] = ACTIONS(874), + [sym_variable_name] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_LT_LT_LT] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), + [anon_sym_esac] = ACTIONS(874), + [anon_sym_LT_LPAREN] = ACTIONS(874), + [sym_ansii_c_string] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(874), }, [1349] = { - [sym_string] = STATE(1068), - [anon_sym_0] = ACTIONS(2764), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(2766), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym__] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [aux_sym__simple_variable_name_token1] = ACTIONS(2764), - [anon_sym_LF] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(2766), - [sym_raw_string] = ACTIONS(2768), - [sym_file_descriptor] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_AMP_GT] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(2770), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_esac] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_SEMI_SEMI] = ACTIONS(1198), - [anon_sym_PIPE_AMP] = ACTIONS(1198), + [sym_string] = STATE(1067), + [anon_sym__] = ACTIONS(2840), + [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(2840), + [anon_sym_DOLLAR] = ACTIONS(2842), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_0] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(2842), + [sym_raw_string] = ACTIONS(2844), + [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [anon_sym_esac] = ACTIONS(1223), + [aux_sym__simple_variable_name_token1] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), }, [1350] = { - [sym_word] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [sym__concat] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_variable_name] = ACTIONS(1254), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_esac] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_ansii_c_string] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [sym__concat] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [sym_word] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_variable_name] = ACTIONS(1233), + [sym_file_descriptor] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_esac] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), }, [1351] = { - [sym_word] = ACTIONS(1301), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_GT] = ACTIONS(1301), - [sym__special_character] = ACTIONS(1301), - [anon_sym_LT_LT_DASH] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [sym_raw_string] = ACTIONS(1301), - [sym_variable_name] = ACTIONS(1303), - [sym_file_descriptor] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_LT_LT_LT] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_esac] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_ansii_c_string] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_SEMI_SEMI] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_number] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [sym__concat] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1290), + [sym_word] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1290), + [anon_sym_GT_GT] = ACTIONS(1290), + [sym__special_character] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_variable_name] = ACTIONS(1292), + [sym_file_descriptor] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_AMP_GT] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_GT_AMP] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), + [anon_sym_esac] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [sym_ansii_c_string] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), }, [1352] = { - [sym_word] = ACTIONS(1319), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1319), - [anon_sym_LT_LPAREN] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1319), - [sym__concat] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_GT] = ACTIONS(1319), - [sym__special_character] = ACTIONS(1319), - [anon_sym_LT_LT_DASH] = ACTIONS(1319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1319), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [sym_raw_string] = ACTIONS(1319), - [sym_variable_name] = ACTIONS(1321), - [sym_file_descriptor] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_AMP_GT] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_esac] = ACTIONS(1319), - [anon_sym_GT_LPAREN] = ACTIONS(1319), - [sym_ansii_c_string] = ACTIONS(1319), - [anon_sym_AMP_AMP] = ACTIONS(1319), - [anon_sym_SEMI_SEMI] = ACTIONS(1319), - [anon_sym_PIPE_AMP] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym__concat] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1300), + [sym_variable_name] = ACTIONS(1302), + [sym_file_descriptor] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1353] = { - [sym_word] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym__concat] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [sym__special_character] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [sym_variable_name] = ACTIONS(1552), - [sym_file_descriptor] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_esac] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_ansii_c_string] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_AMP_GT_GT] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_GT_LPAREN] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [sym__concat] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1454), + [sym_word] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_AMP] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [sym__special_character] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(1454), + [sym_variable_name] = ACTIONS(1456), + [sym_file_descriptor] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_AMP_GT] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_GT_AMP] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_esac] = ACTIONS(1454), + [anon_sym_LT_LPAREN] = ACTIONS(1454), + [sym_ansii_c_string] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(1454), }, [1354] = { - [sym_word] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LPAREN] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [sym__concat] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_AMP] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1562), - [sym__special_character] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1562), - [anon_sym_LF] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [sym_raw_string] = ACTIONS(1562), - [sym_variable_name] = ACTIONS(1564), - [sym_file_descriptor] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_LT_LT_LT] = ACTIONS(1562), - [anon_sym_GT_AMP] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [anon_sym_esac] = ACTIONS(1562), - [anon_sym_GT_LPAREN] = ACTIONS(1562), - [sym_ansii_c_string] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1562), - [anon_sym_PIPE_AMP] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_AMP_GT_GT] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1466), + [sym_word] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_LT_AMP] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [sym__special_character] = ACTIONS(1466), + [anon_sym_LT_LT_DASH] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [sym_variable_name] = ACTIONS(1468), + [sym_file_descriptor] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_AMP_GT] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_GT_AMP] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_esac] = ACTIONS(1466), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [anon_sym_PIPE_AMP] = ACTIONS(1466), }, [1355] = { - [sym_word] = ACTIONS(1572), - [anon_sym_AMP_GT_GT] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_LT_LPAREN] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [sym__concat] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_LT_AMP] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1572), - [sym__special_character] = ACTIONS(1572), - [anon_sym_LT_LT_DASH] = ACTIONS(1572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1572), - [anon_sym_LF] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [sym_raw_string] = ACTIONS(1572), - [sym_variable_name] = ACTIONS(1574), - [sym_file_descriptor] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_AMP_GT] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [anon_sym_LT_LT_LT] = ACTIONS(1572), - [anon_sym_GT_AMP] = ACTIONS(1572), - [anon_sym_BQUOTE] = ACTIONS(1572), - [anon_sym_esac] = ACTIONS(1572), - [anon_sym_GT_LPAREN] = ACTIONS(1572), - [sym_ansii_c_string] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_SEMI_SEMI] = ACTIONS(1572), - [anon_sym_PIPE_AMP] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [sym_word] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_variable_name] = ACTIONS(1478), + [sym_file_descriptor] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_esac] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1476), }, [1356] = { - [sym_word] = ACTIONS(1576), - [anon_sym_AMP_GT_GT] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_LT_LT] = ACTIONS(1576), - [anon_sym_LT_LPAREN] = ACTIONS(1576), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1576), - [sym__concat] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_LT_AMP] = ACTIONS(1576), - [anon_sym_GT_GT] = ACTIONS(1576), - [sym__special_character] = ACTIONS(1576), - [anon_sym_LT_LT_DASH] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_LF] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [sym_raw_string] = ACTIONS(1576), - [sym_variable_name] = ACTIONS(1578), - [sym_file_descriptor] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_AMP_GT] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [anon_sym_LT_LT_LT] = ACTIONS(1576), - [anon_sym_GT_AMP] = ACTIONS(1576), - [anon_sym_BQUOTE] = ACTIONS(1576), - [anon_sym_esac] = ACTIONS(1576), - [anon_sym_GT_LPAREN] = ACTIONS(1576), - [sym_ansii_c_string] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1576), - [anon_sym_SEMI_SEMI] = ACTIONS(1576), - [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(1480), + [sym_number] = ACTIONS(1480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__concat] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1480), + [sym_word] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_LT_AMP] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [sym__special_character] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_raw_string] = ACTIONS(1480), + [sym_variable_name] = ACTIONS(1482), + [sym_file_descriptor] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_AMP_GT] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_GT_AMP] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_esac] = ACTIONS(1480), + [anon_sym_LT_LPAREN] = ACTIONS(1480), + [sym_ansii_c_string] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [1357] = { - [sym_word] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_LT_LPAREN] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [sym__concat] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym__special_character] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_raw_string] = ACTIONS(1741), - [sym_variable_name] = ACTIONS(1743), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_esac] = ACTIONS(1741), - [anon_sym_GT_LPAREN] = ACTIONS(1741), - [sym_ansii_c_string] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_GT_LPAREN] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [sym__concat] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1688), + [sym_word] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_AMP] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1688), + [sym__special_character] = ACTIONS(1688), + [anon_sym_LT_LT_DASH] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1688), + [sym_variable_name] = ACTIONS(1690), + [sym_file_descriptor] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_AMP_GT] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_LT_LT_LT] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), + [anon_sym_esac] = ACTIONS(1688), + [anon_sym_LT_LPAREN] = ACTIONS(1688), + [sym_ansii_c_string] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_PIPE_AMP] = ACTIONS(1688), }, [1358] = { - [sym_word] = ACTIONS(1747), - [anon_sym_AMP_GT_GT] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [sym__concat] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_LT_AMP] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1747), - [sym__special_character] = ACTIONS(1747), - [anon_sym_LT_LT_DASH] = ACTIONS(1747), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), - [anon_sym_LF] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_raw_string] = ACTIONS(1747), - [sym_variable_name] = ACTIONS(1749), - [sym_file_descriptor] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_AMP_GT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_LT_LT_LT] = ACTIONS(1747), - [anon_sym_GT_AMP] = ACTIONS(1747), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_esac] = ACTIONS(1747), - [anon_sym_GT_LPAREN] = ACTIONS(1747), - [sym_ansii_c_string] = ACTIONS(1747), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1694), + [sym_word] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [sym_variable_name] = ACTIONS(1696), + [sym_file_descriptor] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_AMP_GT] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_esac] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1694), }, [1359] = { - [sym_word] = ACTIONS(1751), - [anon_sym_AMP_GT_GT] = ACTIONS(1751), - [anon_sym_DOLLAR] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [sym__concat] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_LT_AMP] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1751), - [sym__special_character] = ACTIONS(1751), - [anon_sym_LT_LT_DASH] = ACTIONS(1751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1751), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_raw_string] = ACTIONS(1751), - [sym_variable_name] = ACTIONS(1753), - [sym_file_descriptor] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_AMP_GT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_LT_LT_LT] = ACTIONS(1751), - [anon_sym_GT_AMP] = ACTIONS(1751), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_esac] = ACTIONS(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1751), - [sym_ansii_c_string] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_GT_LPAREN] = ACTIONS(1698), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [sym__concat] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1698), + [sym_word] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_LT_AMP] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [sym__special_character] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(1698), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [sym_raw_string] = ACTIONS(1698), + [sym_variable_name] = ACTIONS(1700), + [sym_file_descriptor] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_LT_LT_LT] = ACTIONS(1698), + [anon_sym_GT_AMP] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), + [anon_sym_esac] = ACTIONS(1698), + [anon_sym_LT_LPAREN] = ACTIONS(1698), + [sym_ansii_c_string] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [1360] = { - [sym_word] = ACTIONS(1757), - [anon_sym_AMP_GT_GT] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_LT_LPAREN] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [sym__concat] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_AMP] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym__special_character] = ACTIONS(1757), - [anon_sym_LT_LT_DASH] = ACTIONS(1757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1757), - [sym_raw_string] = ACTIONS(1757), - [sym_variable_name] = ACTIONS(1759), - [sym_file_descriptor] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_AMP_GT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_LT_LT_LT] = ACTIONS(1757), - [anon_sym_GT_AMP] = ACTIONS(1757), - [anon_sym_BQUOTE] = ACTIONS(1757), - [anon_sym_esac] = ACTIONS(1757), - [anon_sym_GT_LPAREN] = ACTIONS(1757), - [sym_ansii_c_string] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_SEMI_SEMI] = ACTIONS(1757), - [anon_sym_PIPE_AMP] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_LT_LT] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1704), + [sym_word] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [sym_variable_name] = ACTIONS(1706), + [sym_file_descriptor] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_AMP_GT] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_esac] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), }, [1361] = { - [sym_word] = ACTIONS(1830), - [anon_sym_AMP_GT_GT] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_LT_LPAREN] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_AMP] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1830), - [sym__special_character] = ACTIONS(1830), - [anon_sym_LT_LT_DASH] = ACTIONS(1830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1830), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [sym_raw_string] = ACTIONS(1830), - [sym_variable_name] = ACTIONS(1832), - [sym_file_descriptor] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_AMP_GT] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_LT_LT_LT] = ACTIONS(1830), - [anon_sym_GT_AMP] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_esac] = ACTIONS(1830), - [anon_sym_GT_LPAREN] = ACTIONS(1830), - [sym_ansii_c_string] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_SEMI_SEMI] = ACTIONS(1830), - [anon_sym_PIPE_AMP] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_number] = ACTIONS(1819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [sym__concat] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [sym_word] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), + [sym__special_character] = ACTIONS(1819), + [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1819), + [sym_variable_name] = ACTIONS(1821), + [sym_file_descriptor] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_AMP_GT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_GT_AMP] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), + [anon_sym_esac] = ACTIONS(1819), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), }, [1362] = { - [sym_word] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LPAREN] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [sym__concat] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_AMP] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1834), - [sym__special_character] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1834), - [sym_variable_name] = ACTIONS(1836), - [sym_file_descriptor] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_LT_LT_LT] = ACTIONS(1834), - [anon_sym_GT_AMP] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_GT_LPAREN] = ACTIONS(1834), - [sym_ansii_c_string] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1834), - [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1823), + [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), + [anon_sym_PIPE_PIPE] = ACTIONS(1823), + [sym__concat] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1823), + [sym_word] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_AMP] = ACTIONS(1823), + [anon_sym_GT_GT] = ACTIONS(1823), + [sym__special_character] = ACTIONS(1823), + [anon_sym_LT_LT_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_raw_string] = ACTIONS(1823), + [sym_variable_name] = ACTIONS(1825), + [sym_file_descriptor] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_AMP_GT] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_LT_LT_LT] = ACTIONS(1823), + [anon_sym_GT_AMP] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), + [anon_sym_esac] = ACTIONS(1823), + [anon_sym_LT_LPAREN] = ACTIONS(1823), + [sym_ansii_c_string] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [1363] = { - [sym_command_substitution] = STATE(394), - [aux_sym__literal_repeat1] = STATE(395), - [sym_string] = STATE(394), - [sym_process_substitution] = STATE(394), - [sym_simple_expansion] = STATE(394), - [sym_string_expansion] = STATE(394), - [sym_concatenation] = STATE(396), - [sym_expansion] = STATE(394), - [sym_word] = ACTIONS(2925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [sym_raw_string] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_DOLLAR] = ACTIONS(658), - [sym_ansii_c_string] = ACTIONS(2925), - [anon_sym_GT_LPAREN] = ACTIONS(660), - [anon_sym_LT_LPAREN] = ACTIONS(660), - [sym__special_character] = ACTIONS(662), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(393), + [aux_sym__literal_repeat1] = STATE(394), + [sym_string] = STATE(393), + [sym_process_substitution] = STATE(393), + [sym_simple_expansion] = STATE(393), + [sym_string_expansion] = STATE(393), + [sym_concatenation] = STATE(395), + [sym_expansion] = STATE(393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3013), + [sym_word] = ACTIONS(3015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(674), + [sym_ansii_c_string] = ACTIONS(3013), + [anon_sym_LT_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [sym__special_character] = ACTIONS(680), + [sym_number] = ACTIONS(3015), + [anon_sym_GT_LPAREN] = ACTIONS(676), }, [1364] = { - [sym_string] = STATE(405), - [aux_sym__simple_variable_name_token1] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2929), - [anon_sym_DOLLAR] = ACTIONS(2929), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2929), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym__] = ACTIONS(2134), - [anon_sym_AT] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_0] = ACTIONS(2134), + [sym_string] = STATE(404), + [anon_sym__] = ACTIONS(2178), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3017), + [sym_raw_string] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_DOLLAR] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_0] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(3021), + [aux_sym__simple_variable_name_token1] = ACTIONS(2178), + [anon_sym_QMARK] = ACTIONS(3021), }, [1365] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_negated_command] = STATE(56), - [sym_test_command] = STATE(56), - [sym_variable_assignment] = STATE(57), + [sym_if_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_negated_command] = STATE(61), + [sym_test_command] = STATE(61), + [sym_variable_assignment] = STATE(62), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [aux_sym__statements_repeat1] = STATE(1373), - [sym_redirected_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_compound_statement] = STATE(56), - [sym_subshell] = STATE(56), - [sym_declaration_command] = STATE(56), - [sym_unset_command] = STATE(56), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [aux_sym__statements_repeat1] = STATE(1376), + [sym_redirected_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_compound_statement] = STATE(61), + [sym_subshell] = STATE(61), + [sym_declaration_command] = STATE(61), + [sym_unset_command] = STATE(61), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_pipeline] = STATE(56), - [sym_list] = STATE(56), - [sym_command] = STATE(56), + [sym_c_style_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_case_statement] = STATE(61), + [sym_pipeline] = STATE(61), + [sym_list] = STATE(61), + [sym_command] = STATE(61), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [1366] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1382), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1381), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3025), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_BQUOTE] = ACTIONS(273), }, [1367] = { - [sym_command_substitution] = STATE(427), - [sym_string] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_word] = ACTIONS(2013), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [sym_ansii_c_string] = ACTIONS(2013), - [sym__special_character] = ACTIONS(2013), + [anon_sym_RPAREN] = ACTIONS(3029), + [sym_comment] = ACTIONS(41), }, [1368] = { - [anon_sym_RPAREN] = ACTIONS(2939), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(3031), }, [1369] = { - [anon_sym_RPAREN] = ACTIONS(2941), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(3033), + [sym_comment] = ACTIONS(41), }, [1370] = { - [sym_compound_statement] = STATE(434), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(432), + [sym_string] = STATE(432), + [sym_process_substitution] = STATE(432), + [sym_simple_expansion] = STATE(432), + [sym_string_expansion] = STATE(432), + [sym_expansion] = STATE(432), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2114), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(2118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_word] = ACTIONS(2118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [sym_ansii_c_string] = ACTIONS(2114), + [sym__special_character] = ACTIONS(2114), }, [1371] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1390), + [sym_concatenation] = STATE(1390), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3035), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3037), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3039), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_EQ] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3035), + }, + [1372] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1395), + [sym_concatenation] = STATE(1395), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3043), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3045), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3047), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3043), + }, + [1373] = { + [sym_compound_statement] = STATE(437), + [anon_sym_LPAREN] = ACTIONS(3051), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(83), + }, + [1374] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_PIPE_AMP] = ACTIONS(431), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LF] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2947), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_AMP_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(2947), - [anon_sym_LT_LT_DASH] = ACTIONS(441), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3055), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), }, - [1372] = { + [1375] = { [sym_heredoc_redirect] = STATE(418), [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [sym_word] = ACTIONS(323), - [anon_sym_AMP_GT_GT] = ACTIONS(323), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [sym__special_character] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), - [sym_raw_string] = ACTIONS(323), - [anon_sym_LF] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2947), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(323), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(323), - [anon_sym_BQUOTE] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_ansii_c_string] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_SEMI_SEMI] = ACTIONS(2947), - [anon_sym_PIPE_AMP] = ACTIONS(431), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(491), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3055), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), }, - [1373] = { + [1376] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_negated_command] = STATE(56), - [sym_test_command] = STATE(56), - [sym_variable_assignment] = STATE(57), + [sym_if_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_negated_command] = STATE(61), + [sym_test_command] = STATE(61), + [sym_variable_assignment] = STATE(62), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(421), - [sym_redirected_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_compound_statement] = STATE(56), - [sym_subshell] = STATE(56), - [sym_declaration_command] = STATE(56), - [sym_unset_command] = STATE(56), + [sym_redirected_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_compound_statement] = STATE(61), + [sym_subshell] = STATE(61), + [sym_declaration_command] = STATE(61), + [sym_unset_command] = STATE(61), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_pipeline] = STATE(56), - [sym_list] = STATE(56), - [sym_command] = STATE(56), + [sym_c_style_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_case_statement] = STATE(61), + [sym_pipeline] = STATE(61), + [sym_list] = STATE(61), + [sym_command] = STATE(61), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [1374] = { - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [sym_test_operator] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(483), - }, - [1375] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1393), - [sym_concatenation] = STATE(1393), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_COLON_DASH] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2957), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - }, - [1376] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1398), - [sym_concatenation] = STATE(1398), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(2961), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2963), - [anon_sym_COLON_DASH] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2965), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(2961), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_EQ] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3057), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [1377] = { - [sym_command_substitution] = STATE(445), - [aux_sym__literal_repeat1] = STATE(447), - [sym_string] = STATE(445), - [sym_array] = STATE(446), - [sym_process_substitution] = STATE(445), - [sym_simple_expansion] = STATE(445), - [sym_string_expansion] = STATE(445), - [sym_concatenation] = STATE(446), - [sym_expansion] = STATE(445), - [sym_word] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2705), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_GT_LPAREN] = ACTIONS(2705), - [sym_ansii_c_string] = ACTIONS(2969), - [sym__special_character] = ACTIONS(2975), - [sym__empty_value] = ACTIONS(2977), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [sym_test_operator] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_AMP_AMP] = ACTIONS(541), }, [1378] = { - [sym_command_substitution] = STATE(448), - [aux_sym__literal_repeat1] = STATE(449), - [sym_string] = STATE(448), - [sym_process_substitution] = STATE(448), - [sym_simple_expansion] = STATE(448), - [sym_string_expansion] = STATE(448), - [sym_concatenation] = STATE(450), - [sym_expansion] = STATE(448), - [sym_word] = ACTIONS(2979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [sym_raw_string] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_DOLLAR] = ACTIONS(658), - [sym_ansii_c_string] = ACTIONS(2979), - [anon_sym_GT_LPAREN] = ACTIONS(660), - [anon_sym_LT_LPAREN] = ACTIONS(660), - [sym__special_character] = ACTIONS(662), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(447), + [aux_sym__literal_repeat1] = STATE(448), + [sym_string] = STATE(447), + [sym_array] = STATE(446), + [sym_process_substitution] = STATE(447), + [sym_simple_expansion] = STATE(447), + [sym_string_expansion] = STATE(447), + [sym_concatenation] = STATE(446), + [sym_expansion] = STATE(447), + [anon_sym_LPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3063), + [anon_sym_DOLLAR] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(2771), + [anon_sym_GT_LPAREN] = ACTIONS(2773), + [sym_number] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_word] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2781), + [anon_sym_LT_LPAREN] = ACTIONS(2773), + [sym_ansii_c_string] = ACTIONS(3063), + [sym__special_character] = ACTIONS(3069), + [sym__empty_value] = ACTIONS(3071), }, [1379] = { - [sym_word] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), + [sym_command_substitution] = STATE(449), + [aux_sym__literal_repeat1] = STATE(450), + [sym_string] = STATE(449), + [sym_process_substitution] = STATE(449), + [sym_simple_expansion] = STATE(449), + [sym_string_expansion] = STATE(449), + [sym_concatenation] = STATE(451), + [sym_expansion] = STATE(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3073), + [sym_word] = ACTIONS(3075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(674), + [sym_ansii_c_string] = ACTIONS(3073), + [anon_sym_LT_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [sym__special_character] = ACTIONS(680), + [sym_number] = ACTIONS(3075), + [anon_sym_GT_LPAREN] = ACTIONS(676), }, [1380] = { - [anon_sym_RPAREN] = ACTIONS(2981), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1381] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(2983), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), - }, - [1382] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(2983), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(2985), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3077), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3079), + [anon_sym_BQUOTE] = ACTIONS(273), + }, + [1382] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), }, [1383] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(41), }, [1384] = { [sym_do_group] = STATE(454), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(2989), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(3083), }, [1385] = { - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(625), - [sym_comment] = ACTIONS(19), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [sym_test_operator] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_EQ_TILDE] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(625), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_EQ_TILDE] = ACTIONS(643), + [anon_sym_DASH_DASH] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_DASH_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACK] = ACTIONS(3059), + [sym_test_operator] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(641), + [anon_sym_EQ] = ACTIONS(641), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_AMP_AMP] = ACTIONS(637), }, [1386] = { - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2951), - [sym_test_operator] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(483), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [sym_test_operator] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_AMP_AMP] = ACTIONS(541), }, [1387] = { - [sym_heredoc_start] = ACTIONS(2991), - [sym_comment] = ACTIONS(19), + [sym_heredoc_start] = ACTIONS(3085), + [sym_comment] = ACTIONS(41), }, [1388] = { [sym_command_substitution] = STATE(462), @@ -45929,334 +46932,343 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(462), [sym_concatenation] = STATE(464), [sym_expansion] = STATE(462), - [sym_word] = ACTIONS(2993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2731), - [sym_raw_string] = ACTIONS(2993), - [anon_sym_DOLLAR] = ACTIONS(2995), - [anon_sym_LT_LPAREN] = ACTIONS(2735), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_BQUOTE] = ACTIONS(2739), - [anon_sym_GT_LPAREN] = ACTIONS(2735), - [sym_ansii_c_string] = ACTIONS(2993), - [sym__special_character] = ACTIONS(2997), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2805), + [sym_number] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_word] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), + [anon_sym_LT_LPAREN] = ACTIONS(2805), + [sym_ansii_c_string] = ACTIONS(3087), + [sym__special_character] = ACTIONS(3093), }, [1389] = { - [sym_compound_statement] = STATE(473), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1408), + [sym_concatenation] = STATE(1408), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3095), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3097), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3095), + [sym_regex] = ACTIONS(3101), }, [1390] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_elif_clause] = STATE(1410), - [sym_else_clause] = STATE(1409), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_if_statement_repeat1] = STATE(1410), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(1411), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_elif] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_fi] = ACTIONS(2999), - [anon_sym_else] = ACTIONS(880), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1391] = { - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [sym_test_operator] = ACTIONS(483), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1408), + [sym_concatenation] = STATE(1408), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3095), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3097), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3103), + [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3095), }, [1392] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1415), - [sym_concatenation] = STATE(1415), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3003), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_COLON_DASH] = ACTIONS(3003), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [sym_regex] = ACTIONS(3009), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1412), + [sym_concatenation] = STATE(1412), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3105), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3107), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3109), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_EQ] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3105), }, [1393] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(1413), + [aux_sym__literal_repeat1] = STATE(1414), + [sym_string] = STATE(1413), + [sym_process_substitution] = STATE(1413), + [sym_simple_expansion] = STATE(1413), + [sym_string_expansion] = STATE(1413), + [sym_concatenation] = STATE(1415), + [sym_expansion] = STATE(1413), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3113), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(3115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(3115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3113), + [sym__special_character] = ACTIONS(947), }, [1394] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1415), - [sym_concatenation] = STATE(1415), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3003), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_COLON_DASH] = ACTIONS(3003), - [anon_sym_SLASH] = ACTIONS(3011), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3003), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1417), + [sym_concatenation] = STATE(1417), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3117), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3119), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3121), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3117), + [sym_regex] = ACTIONS(3123), }, [1395] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1419), - [sym_concatenation] = STATE(1419), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3013), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3015), - [anon_sym_COLON_DASH] = ACTIONS(3013), - [anon_sym_SLASH] = ACTIONS(3017), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3013), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3121), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1396] = { - [sym_command_substitution] = STATE(1420), - [aux_sym__literal_repeat1] = STATE(1421), - [sym_string] = STATE(1420), - [sym_process_substitution] = STATE(1420), - [sym_simple_expansion] = STATE(1420), - [sym_string_expansion] = STATE(1420), - [sym_concatenation] = STATE(1422), - [sym_expansion] = STATE(1420), - [sym_word] = ACTIONS(3021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(3021), - [sym__special_character] = ACTIONS(968), + [sym_compound_statement] = STATE(477), + [anon_sym_LBRACE] = ACTIONS(83), + [sym_comment] = ACTIONS(41), }, [1397] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1424), - [sym_concatenation] = STATE(1424), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3025), - [anon_sym_COLON_DASH] = ACTIONS(3023), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3023), - [sym_regex] = ACTIONS(3029), + [aux_sym__literal_repeat1] = STATE(386), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), + [sym_subscript] = STATE(2407), + [sym_concatenation] = STATE(389), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_elif_clause] = STATE(1421), + [sym_else_clause] = STATE(1420), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), + [sym_file_redirect] = STATE(391), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_if_statement_repeat1] = STATE(1421), + [aux_sym_command_repeat1] = STATE(391), + [aux_sym__statements2] = STATE(1422), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), + [sym_command_name] = STATE(392), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_elif] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_fi] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(977), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [1398] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [sym_test_operator] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), }, [1399] = { [sym_command_substitution] = STATE(221), @@ -46268,554 +47280,567 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(1425), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [sym_ansii_c_string] = ACTIONS(988), - [sym__special_character] = ACTIONS(1004), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(3129), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_GT_LPAREN] = ACTIONS(1023), + [sym_number] = ACTIONS(1017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1015), + [sym__special_character] = ACTIONS(1029), }, [1400] = { [aux_sym_concatenation_repeat1] = STATE(2432), - [anon_sym_RBRACK] = ACTIONS(3033), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(3035), + [anon_sym_RBRACK] = ACTIONS(3131), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(3133), }, [1401] = { [aux_sym__literal_repeat1] = STATE(975), - [anon_sym_RBRACK] = ACTIONS(3037), - [sym__concat] = ACTIONS(3039), - [sym__special_character] = ACTIONS(1020), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(3135), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(3137), + [sym__special_character] = ACTIONS(1051), }, [1402] = { - [anon_sym_RBRACK] = ACTIONS(3033), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(3041), + [anon_sym_RBRACK] = ACTIONS(3131), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(3139), }, [1403] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(3141), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1404] = { [sym_do_group] = STATE(488), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(2989), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(3083), }, [1405] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [aux_sym__statements2] = STATE(1429), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [anon_sym_done] = ACTIONS(3045), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_done] = ACTIONS(3143), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [1406] = { [sym_command_substitution] = STATE(1430), [sym_simple_expansion] = STATE(1430), [sym_expansion] = STATE(1430), [aux_sym_heredoc_body_repeat1] = STATE(1430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), - [sym__heredoc_body_end] = ACTIONS(3047), - [anon_sym_BQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1101), - [sym_comment] = ACTIONS(19), - [sym__heredoc_body_middle] = ACTIONS(3049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), + [sym_comment] = ACTIONS(41), + [sym__heredoc_body_end] = ACTIONS(3145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1134), + [sym__heredoc_body_middle] = ACTIONS(3147), }, [1407] = { - [sym_compound_statement] = STATE(493), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1431), + [sym_concatenation] = STATE(1431), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3149), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3151), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3149), }, [1408] = { - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_SEMI_SEMI] = ACTIONS(3051), - [sym_comment] = ACTIONS(3), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1409] = { - [sym_comment] = ACTIONS(19), - [anon_sym_fi] = ACTIONS(3055), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1431), + [sym_concatenation] = STATE(1431), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3149), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3151), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3149), + [sym_regex] = ACTIONS(3155), }, [1410] = { - [aux_sym_if_statement_repeat1] = STATE(252), - [sym_elif_clause] = STATE(252), - [sym_else_clause] = STATE(1431), - [anon_sym_elif] = ACTIONS(1222), - [anon_sym_fi] = ACTIONS(3055), - [anon_sym_else] = ACTIONS(1224), - [sym_comment] = ACTIONS(19), - }, - [1411] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_elif_clause] = STATE(1432), - [sym_else_clause] = STATE(1431), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_if_statement_repeat1] = STATE(1432), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(255), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_elif] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_fi] = ACTIONS(3057), - [anon_sym_else] = ACTIONS(880), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_command_substitution] = STATE(1433), + [aux_sym__literal_repeat1] = STATE(1434), + [sym_string] = STATE(1433), + [sym_process_substitution] = STATE(1433), + [sym_simple_expansion] = STATE(1433), + [sym_string_expansion] = STATE(1433), + [sym_concatenation] = STATE(1435), + [sym_expansion] = STATE(1433), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(3159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(3159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3157), + [sym__special_character] = ACTIONS(947), + }, + [1411] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1437), + [sym_concatenation] = STATE(1437), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3161), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3161), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3161), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3163), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3161), + [sym_regex] = ACTIONS(3167), }, [1412] = { - [aux_sym__literal_repeat1] = STATE(259), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(1434), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_command_substitution] = STATE(257), - [sym_case_item] = STATE(2423), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(2423), - [sym_word] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_esac] = ACTIONS(3059), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(1234), - [sym__special_character] = ACTIONS(231), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1413] = { - [aux_sym__literal_repeat1] = STATE(259), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(1436), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_command_substitution] = STATE(257), - [sym_case_item] = STATE(2424), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(2424), - [sym_word] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_esac] = ACTIONS(3061), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(1234), - [sym__special_character] = ACTIONS(231), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3153), + [sym__concat] = ACTIONS(1294), }, [1414] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1437), - [sym_concatenation] = STATE(1437), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3065), - [anon_sym_COLON_DASH] = ACTIONS(3063), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3063), + [aux_sym__literal_repeat1] = STATE(1135), + [anon_sym_RBRACE] = ACTIONS(3169), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1415] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(3153), + [sym_comment] = ACTIONS(41), }, [1416] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1437), - [sym_concatenation] = STATE(1437), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3063), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3065), - [anon_sym_COLON_DASH] = ACTIONS(3063), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_EQ] = ACTIONS(3063), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3063), - [sym_regex] = ACTIONS(3069), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1438), + [sym_concatenation] = STATE(1438), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3171), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3173), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3171), }, [1417] = { - [sym_command_substitution] = STATE(1439), - [aux_sym__literal_repeat1] = STATE(1440), - [sym_string] = STATE(1439), - [sym_process_substitution] = STATE(1439), - [sym_simple_expansion] = STATE(1439), - [sym_string_expansion] = STATE(1439), - [sym_concatenation] = STATE(1441), - [sym_expansion] = STATE(1439), - [sym_word] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(3071), - [sym__special_character] = ACTIONS(968), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1418] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1443), - [sym_concatenation] = STATE(1443), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3075), - [anon_sym_COLON_DASH] = ACTIONS(3073), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_EQ] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [sym_regex] = ACTIONS(3079), + [sym_compound_statement] = STATE(497), + [anon_sym_LBRACE] = ACTIONS(83), + [sym_comment] = ACTIONS(41), }, [1419] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3177), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_SEMI_SEMI] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3179), }, [1420] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(3067), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(3181), }, [1421] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3081), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [aux_sym_if_statement_repeat1] = STATE(264), + [sym_elif_clause] = STATE(264), + [sym_else_clause] = STATE(1439), + [anon_sym_elif] = ACTIONS(1330), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(1332), }, [1422] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3067), + [aux_sym__literal_repeat1] = STATE(386), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), + [sym_subscript] = STATE(2407), + [sym_concatenation] = STATE(389), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_elif_clause] = STATE(1440), + [sym_else_clause] = STATE(1439), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), + [sym_file_redirect] = STATE(391), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_if_statement_repeat1] = STATE(1440), + [aux_sym_command_repeat1] = STATE(391), + [aux_sym__statements2] = STATE(267), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), + [sym_command_name] = STATE(392), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_elif] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_fi] = ACTIONS(3183), + [anon_sym_else] = ACTIONS(977), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [1423] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1444), - [sym_concatenation] = STATE(1444), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3085), - [anon_sym_COLON_DASH] = ACTIONS(3083), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3083), + [aux_sym__literal_repeat1] = STATE(271), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(1442), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [sym_command_substitution] = STATE(269), + [sym_case_item] = STATE(2423), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(2423), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_esac] = ACTIONS(3185), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(1340), + [sym__special_character] = ACTIONS(255), }, [1424] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [aux_sym__literal_repeat1] = STATE(271), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(1444), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [sym_command_substitution] = STATE(269), + [sym_case_item] = STATE(2424), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(2424), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_esac] = ACTIONS(3187), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(1340), + [sym__special_character] = ACTIONS(255), }, [1425] = { [sym_command_substitution] = STATE(221), @@ -46827,566 +47852,579 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(280), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [sym_ansii_c_string] = ACTIONS(988), - [sym__special_character] = ACTIONS(1004), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_GT_LPAREN] = ACTIONS(1023), + [sym_number] = ACTIONS(1017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1015), + [sym__special_character] = ACTIONS(1029), }, [1426] = { - [sym_command_substitution] = STATE(816), - [sym_simple_expansion] = STATE(816), - [sym_string_expansion] = STATE(816), - [sym_string] = STATE(816), - [sym_process_substitution] = STATE(816), - [sym_expansion] = STATE(816), - [sym_word] = ACTIONS(1351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(1351), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(1351), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [anon_sym_RBRACK] = ACTIONS(3091), - [sym__special_character] = ACTIONS(1355), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(818), + [sym_simple_expansion] = STATE(818), + [sym_string_expansion] = STATE(818), + [sym_string] = STATE(818), + [sym_process_substitution] = STATE(818), + [sym_expansion] = STATE(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1382), + [sym_word] = ACTIONS(1384), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(3191), + [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym__special_character] = ACTIONS(1384), + [sym_number] = ACTIONS(1384), }, [1427] = { - [anon_sym_RBRACK] = ACTIONS(3093), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(3193), + [sym_comment] = ACTIONS(41), }, [1428] = { - [anon_sym_RBRACK] = ACTIONS(3091), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(3191), + [sym_comment] = ACTIONS(41), }, [1429] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_negated_command] = STATE(194), - [sym_test_command] = STATE(194), - [sym_variable_assignment] = STATE(195), + [sym_if_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_negated_command] = STATE(209), + [sym_test_command] = STATE(209), + [sym_variable_assignment] = STATE(210), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_compound_statement] = STATE(194), - [sym_subshell] = STATE(194), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_compound_statement] = STATE(209), + [sym_subshell] = STATE(209), + [sym_declaration_command] = STATE(209), + [sym_unset_command] = STATE(209), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(255), - [sym_c_style_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), + [aux_sym__statements2] = STATE(267), + [sym_c_style_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_pipeline] = STATE(209), + [sym_list] = STATE(209), + [sym_command] = STATE(209), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [anon_sym_done] = ACTIONS(3095), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_done] = ACTIONS(3195), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [1430] = { [sym_command_substitution] = STATE(292), [sym_simple_expansion] = STATE(292), [sym_expansion] = STATE(292), [aux_sym_heredoc_body_repeat1] = STATE(292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), - [sym__heredoc_body_end] = ACTIONS(3097), - [anon_sym_BQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1101), - [sym_comment] = ACTIONS(19), - [sym__heredoc_body_middle] = ACTIONS(1413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), + [sym_comment] = ACTIONS(41), + [sym__heredoc_body_end] = ACTIONS(3197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1134), + [sym__heredoc_body_middle] = ACTIONS(1442), }, [1431] = { - [sym_comment] = ACTIONS(19), - [anon_sym_fi] = ACTIONS(3099), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1432] = { - [aux_sym_if_statement_repeat1] = STATE(252), - [sym_elif_clause] = STATE(252), - [sym_else_clause] = STATE(1447), - [anon_sym_elif] = ACTIONS(1222), - [anon_sym_fi] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(1224), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1447), + [sym_concatenation] = STATE(1447), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3201), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3201), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3203), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3201), }, [1433] = { - [aux_sym__literal_repeat1] = STATE(259), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(1448), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_command_substitution] = STATE(257), - [sym_case_item] = STATE(2427), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(2427), - [sym_word] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_esac] = ACTIONS(3101), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(1234), - [sym__special_character] = ACTIONS(231), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3199), + [sym__concat] = ACTIONS(1294), }, [1434] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(3103), + [aux_sym__literal_repeat1] = STATE(1135), + [anon_sym_RBRACE] = ACTIONS(3205), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1435] = { - [aux_sym__literal_repeat1] = STATE(259), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(1449), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_command_substitution] = STATE(257), - [sym_case_item] = STATE(2428), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(2428), - [sym_word] = ACTIONS(1232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_esac] = ACTIONS(3105), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(1234), - [sym__special_character] = ACTIONS(231), + [anon_sym_RBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(41), }, [1436] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(3107), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1448), + [sym_concatenation] = STATE(1448), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3207), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3207), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3207), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3209), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_EQ] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3207), }, [1437] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1438] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1450), - [sym_concatenation] = STATE(1450), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3111), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3111), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_COLON_DASH] = ACTIONS(3111), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_EQ] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3111), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1439] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(3109), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(3215), }, [1440] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3115), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [aux_sym_if_statement_repeat1] = STATE(264), + [sym_elif_clause] = STATE(264), + [sym_else_clause] = STATE(1449), + [anon_sym_elif] = ACTIONS(1330), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(1332), }, [1441] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3109), + [aux_sym__literal_repeat1] = STATE(271), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(1450), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [sym_command_substitution] = STATE(269), + [sym_case_item] = STATE(2427), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(2427), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_esac] = ACTIONS(3217), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(1340), + [sym__special_character] = ACTIONS(255), }, [1442] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1451), - [sym_concatenation] = STATE(1451), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3119), - [anon_sym_COLON_DASH] = ACTIONS(3117), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3117), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_EQ] = ACTIONS(3117), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3117), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(3219), }, [1443] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [aux_sym__literal_repeat1] = STATE(271), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(1451), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [sym_command_substitution] = STATE(269), + [sym_case_item] = STATE(2428), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(2428), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_esac] = ACTIONS(3221), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(1340), + [sym__special_character] = ACTIONS(255), }, [1444] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(3223), }, [1445] = { [sym_do_group] = STATE(520), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(2989), + [sym_compound_statement] = STATE(520), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3083), }, [1446] = { [sym_do_group] = STATE(521), - [sym_compound_statement] = STATE(521), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_do] = ACTIONS(2989), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(3083), }, [1447] = { - [sym_comment] = ACTIONS(19), - [anon_sym_fi] = ACTIONS(3127), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1448] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(3129), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1449] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(3131), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(3231), }, [1450] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(3233), }, [1451] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(3235), }, [1452] = { [sym_do_group] = STATE(527), [sym_compound_statement] = STATE(527), + [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(3083), }, [1453] = { [sym_do_group] = STATE(527), [sym_compound_statement] = STATE(527), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_do] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3083), }, [1454] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(3139), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(3239), }, [1455] = { - [sym_comment] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(3141), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(3241), }, [1456] = { [sym_do_group] = STATE(530), [sym_compound_statement] = STATE(530), + [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(3083), }, [1457] = { [sym_do_group] = STATE(530), [sym_compound_statement] = STATE(530), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3083), }, [1458] = { [sym_do_group] = STATE(531), [sym_compound_statement] = STATE(531), + [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(3083), }, [1459] = { [sym_do_group] = STATE(531), [sym_compound_statement] = STATE(531), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3083), }, [1460] = { [sym_do_group] = STATE(532), [sym_compound_statement] = STATE(532), + [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(19), - [anon_sym_do] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(3083), }, [1461] = { [aux_sym__literal_repeat1] = STATE(386), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [sym_test_command] = STATE(410), [aux_sym_command_repeat1] = STATE(1464), [sym_subscript] = STATE(2455), [sym_variable_assignment] = STATE(1464), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [sym_command] = STATE(410), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), [sym_subshell] = STATE(410), [sym_file_redirect] = STATE(1464), - [anon_sym_LPAREN] = ACTIONS(71), - [sym_word] = ACTIONS(93), - [anon_sym_AMP_GT_GT] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [sym_variable_name] = ACTIONS(243), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [anon_sym_AMP_GT] = ACTIONS(25), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(257), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_AMP_GT] = ACTIONS(29), + [sym_number] = ACTIONS(75), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_word] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), [sym__special_character] = ACTIONS(85), }, [1462] = { @@ -47394,27 +48432,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_redirected_statement_repeat1] = STATE(418), [sym_herestring_redirect] = STATE(418), [sym_file_redirect] = STATE(418), - [anon_sym_SEMI_SEMI] = ACTIONS(2222), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_LF] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2222), - [sym_file_descriptor] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(2222), - [anon_sym_AMP_GT] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_PIPE_AMP] = ACTIONS(2218), + [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_SEMI_SEMI] = ACTIONS(2262), + [anon_sym_AMP_GT_GT] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_file_descriptor] = ACTIONS(499), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_AMP_GT] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(2264), + [anon_sym_LT_LT_LT] = ACTIONS(503), + [anon_sym_GT_AMP] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_LT_AMP] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(2264), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(2262), }, [1463] = { [aux_sym__literal_repeat1] = STATE(386), @@ -47425,8 +48463,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(704), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(101), [sym_redirected_statement] = STATE(703), [sym_for_statement] = STATE(703), @@ -47435,8 +48473,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(703), [sym_unset_command] = STATE(703), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym_c_style_for_statement] = STATE(703), [sym_while_statement] = STATE(703), @@ -47445,625 +48483,621 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(703), [sym_command] = STATE(703), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [1464] = { - [sym_command_substitution] = STATE(384), + [sym_command_substitution] = STATE(382), [aux_sym__literal_repeat1] = STATE(386), - [sym_expansion] = STATE(384), - [sym_string] = STATE(384), + [sym_expansion] = STATE(382), + [sym_string] = STATE(382), [sym_command_name] = STATE(571), - [sym_process_substitution] = STATE(384), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), + [sym_process_substitution] = STATE(382), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), [sym_subscript] = STATE(2455), [sym_variable_assignment] = STATE(103), [aux_sym_command_repeat1] = STATE(103), [sym_concatenation] = STATE(389), [sym_file_redirect] = STATE(103), - [sym_word] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(93), - [sym_variable_name] = ACTIONS(243), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [anon_sym_AMP_GT] = ACTIONS(25), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), + [sym_variable_name] = ACTIONS(257), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_AMP_GT] = ACTIONS(29), + [sym_number] = ACTIONS(75), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_word] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [sym__special_character] = ACTIONS(1966), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [sym__special_character] = ACTIONS(2008), }, [1465] = { [sym_heredoc_body] = STATE(668), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(870), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(967), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_SEMI_SEMI] = ACTIONS(656), }, [1466] = { [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LF] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_BQUOTE] = ACTIONS(2083), - [anon_sym_SEMI_SEMI] = ACTIONS(3147), + [anon_sym_BQUOTE] = ACTIONS(2129), + [anon_sym_LF] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_SEMI_SEMI] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), }, [1467] = { [sym_heredoc_body] = STATE(681), - [anon_sym_LPAREN] = ACTIONS(636), - [sym_word] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(638), - [anon_sym_local] = ACTIONS(636), - [anon_sym_typeset] = ACTIONS(636), - [anon_sym_unsetenv] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(636), - [anon_sym_LT_LPAREN] = ACTIONS(638), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_export] = ACTIONS(636), - [sym__simple_heredoc_body] = ACTIONS(870), - [sym__special_character] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LPAREN_LPAREN] = ACTIONS(638), - [sym_raw_string] = ACTIONS(638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_declare] = ACTIONS(636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(638), - [sym_file_descriptor] = ACTIONS(638), - [sym_variable_name] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(636), - [sym__heredoc_body_beginning] = ACTIONS(872), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_readonly] = ACTIONS(636), - [anon_sym_unset] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_GT_AMP] = ACTIONS(638), - [anon_sym_BQUOTE] = ACTIONS(638), - [anon_sym_GT_LPAREN] = ACTIONS(638), - [anon_sym_for] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [sym_ansii_c_string] = ACTIONS(638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(654), + [anon_sym_local] = ACTIONS(652), + [anon_sym_typeset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), + [anon_sym_function] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_AMP] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_export] = ACTIONS(652), + [sym_word] = ACTIONS(652), + [sym__simple_heredoc_body] = ACTIONS(967), + [sym__special_character] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_case] = ACTIONS(652), + [anon_sym_LPAREN_LPAREN] = ACTIONS(654), + [sym_raw_string] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_declare] = ACTIONS(652), + [sym_variable_name] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(652), + [anon_sym_readonly] = ACTIONS(652), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_GT_AMP] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(654), + [anon_sym_for] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_SEMI_SEMI] = ACTIONS(1142), }, [1468] = { [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LF] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_BQUOTE] = ACTIONS(2150), - [anon_sym_SEMI_SEMI] = ACTIONS(3151), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LF] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_SEMI_SEMI] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), }, [1469] = { - [sym_command_substitution] = STATE(816), - [sym_simple_expansion] = STATE(816), - [sym_string_expansion] = STATE(816), - [sym_string] = STATE(816), - [sym_process_substitution] = STATE(816), - [sym_expansion] = STATE(816), - [sym_word] = ACTIONS(1351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(1351), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR] = ACTIONS(3155), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(1351), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [sym__special_character] = ACTIONS(1351), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(818), + [sym_simple_expansion] = STATE(818), + [sym_string_expansion] = STATE(818), + [sym_string] = STATE(818), + [sym_process_substitution] = STATE(818), + [sym_expansion] = STATE(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1382), + [sym_word] = ACTIONS(1384), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(3255), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(293), + [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym__special_character] = ACTIONS(1382), + [sym_number] = ACTIONS(1384), }, [1470] = { - [sym_command_substitution] = STATE(1072), - [sym_simple_expansion] = STATE(1072), - [sym_string_expansion] = STATE(1072), - [sym_string] = STATE(1072), - [sym_process_substitution] = STATE(1072), - [sym_expansion] = STATE(1072), - [sym_word] = ACTIONS(2727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2731), - [sym_raw_string] = ACTIONS(2727), - [anon_sym_BQUOTE] = ACTIONS(2739), - [anon_sym_DOLLAR] = ACTIONS(3157), - [anon_sym_GT_LPAREN] = ACTIONS(2735), - [sym_ansii_c_string] = ACTIONS(2727), - [anon_sym_LT_LPAREN] = ACTIONS(2735), - [sym__special_character] = ACTIONS(2727), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_string] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [sym_expansion] = STATE(1074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2799), + [sym_word] = ACTIONS(2807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_LT_LPAREN] = ACTIONS(2805), + [sym_ansii_c_string] = ACTIONS(2799), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2805), + [sym__special_character] = ACTIONS(2799), + [sym_number] = ACTIONS(2807), }, [1471] = { - [sym_command_substitution] = STATE(547), - [aux_sym__literal_repeat1] = STATE(548), - [sym_string] = STATE(547), - [sym_process_substitution] = STATE(547), - [sym_simple_expansion] = STATE(547), - [sym_string_expansion] = STATE(547), - [sym_concatenation] = STATE(549), - [sym_expansion] = STATE(547), - [sym_word] = ACTIONS(3159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2731), - [sym_raw_string] = ACTIONS(3159), - [anon_sym_DOLLAR] = ACTIONS(2995), - [anon_sym_LT_LPAREN] = ACTIONS(2735), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_BQUOTE] = ACTIONS(2739), - [anon_sym_GT_LPAREN] = ACTIONS(2735), - [sym_ansii_c_string] = ACTIONS(3159), - [sym__special_character] = ACTIONS(2997), + [sym_command_substitution] = STATE(546), + [aux_sym__literal_repeat1] = STATE(547), + [sym_string] = STATE(546), + [sym_process_substitution] = STATE(546), + [sym_simple_expansion] = STATE(546), + [sym_string_expansion] = STATE(546), + [sym_concatenation] = STATE(548), + [sym_expansion] = STATE(546), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2805), + [sym_number] = ACTIONS(3261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_word] = ACTIONS(3261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), + [anon_sym_LT_LPAREN] = ACTIONS(2805), + [sym_ansii_c_string] = ACTIONS(3259), + [sym__special_character] = ACTIONS(3093), }, [1472] = { - [sym_string] = STATE(558), - [aux_sym__simple_variable_name_token1] = ACTIONS(2370), - [sym_raw_string] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2368), - [anon_sym_DQUOTE] = ACTIONS(125), - [anon_sym__] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_0] = ACTIONS(2370), + [sym_string] = STATE(557), + [anon_sym__] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2420), + [sym_raw_string] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_DOLLAR] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_0] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(3263), + [aux_sym__simple_variable_name_token1] = ACTIONS(2416), + [anon_sym_QMARK] = ACTIONS(3263), }, [1473] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1483), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1482), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3265), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(273), }, [1474] = { - [sym_command_substitution] = STATE(576), - [sym_string] = STATE(576), - [sym_process_substitution] = STATE(576), - [sym_simple_expansion] = STATE(576), - [sym_string_expansion] = STATE(576), - [sym_expansion] = STATE(576), - [sym_word] = ACTIONS(2269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(121), - [anon_sym_LT_LPAREN] = ACTIONS(123), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_GT_LPAREN] = ACTIONS(123), - [sym_ansii_c_string] = ACTIONS(2269), - [sym__special_character] = ACTIONS(2269), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(3269), }, [1475] = { - [anon_sym_RPAREN] = ACTIONS(3167), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(3271), + [sym_comment] = ACTIONS(41), }, [1476] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1487), - [sym_concatenation] = STATE(1487), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3169), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3171), - [anon_sym_COLON_DASH] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3173), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3169), + [sym_command_substitution] = STATE(580), + [sym_string] = STATE(580), + [sym_process_substitution] = STATE(580), + [sym_simple_expansion] = STATE(580), + [sym_string_expansion] = STATE(580), + [sym_expansion] = STATE(580), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(117), + [sym_number] = ACTIONS(2378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_word] = ACTIONS(2378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [sym_ansii_c_string] = ACTIONS(2374), + [sym__special_character] = ACTIONS(2374), }, [1477] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(1492), - [sym_concatenation] = STATE(1492), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3179), - [anon_sym_COLON_DASH] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3181), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_EQ] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3177), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1486), + [sym_concatenation] = STATE(1486), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3273), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3273), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3275), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_EQ] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3273), }, [1478] = { - [sym_command_substitution] = STATE(588), - [aux_sym__literal_repeat1] = STATE(590), - [sym_string] = STATE(588), - [sym_array] = STATE(589), - [sym_process_substitution] = STATE(588), - [sym_simple_expansion] = STATE(588), - [sym_string_expansion] = STATE(588), - [sym_concatenation] = STATE(589), - [sym_expansion] = STATE(588), - [sym_word] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(2449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2451), - [sym_raw_string] = ACTIONS(3185), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2447), - [anon_sym_BQUOTE] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(135), - [sym_ansii_c_string] = ACTIONS(3185), - [anon_sym_GT_LPAREN] = ACTIONS(2457), - [anon_sym_LT_LPAREN] = ACTIONS(2457), - [sym__special_character] = ACTIONS(3189), - [sym__empty_value] = ACTIONS(3191), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1491), + [sym_concatenation] = STATE(1491), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3281), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3281), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3283), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3281), }, [1479] = { - [sym_command_substitution] = STATE(591), - [aux_sym__literal_repeat1] = STATE(592), - [sym_string] = STATE(591), - [sym_process_substitution] = STATE(591), - [sym_simple_expansion] = STATE(591), - [sym_string_expansion] = STATE(591), - [sym_concatenation] = STATE(593), - [sym_expansion] = STATE(591), - [sym_word] = ACTIONS(3193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2731), - [sym_raw_string] = ACTIONS(3193), - [anon_sym_DOLLAR] = ACTIONS(2995), - [anon_sym_LT_LPAREN] = ACTIONS(2735), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_BQUOTE] = ACTIONS(2739), - [anon_sym_GT_LPAREN] = ACTIONS(2735), - [sym_ansii_c_string] = ACTIONS(3193), - [sym__special_character] = ACTIONS(2997), + [sym_command_substitution] = STATE(590), + [aux_sym__literal_repeat1] = STATE(591), + [sym_string] = STATE(590), + [sym_array] = STATE(589), + [sym_process_substitution] = STATE(590), + [sym_simple_expansion] = STATE(590), + [sym_string_expansion] = STATE(590), + [sym_concatenation] = STATE(589), + [sym_expansion] = STATE(590), + [anon_sym_LPAREN] = ACTIONS(3289), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3291), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_BQUOTE] = ACTIONS(2509), + [anon_sym_GT_LPAREN] = ACTIONS(2507), + [sym_number] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_word] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2503), + [anon_sym_LT_LPAREN] = ACTIONS(2507), + [sym_ansii_c_string] = ACTIONS(3291), + [sym__special_character] = ACTIONS(3295), + [sym__empty_value] = ACTIONS(3297), }, [1480] = { - [sym_word] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), + [sym_command_substitution] = STATE(592), + [aux_sym__literal_repeat1] = STATE(593), + [sym_string] = STATE(592), + [sym_process_substitution] = STATE(592), + [sym_simple_expansion] = STATE(592), + [sym_string_expansion] = STATE(592), + [sym_concatenation] = STATE(594), + [sym_expansion] = STATE(592), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2805), + [sym_number] = ACTIONS(3301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_word] = ACTIONS(3301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), + [anon_sym_LT_LPAREN] = ACTIONS(2805), + [sym_ansii_c_string] = ACTIONS(3299), + [sym__special_character] = ACTIONS(3093), }, [1481] = { - [anon_sym_RPAREN] = ACTIONS(3195), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1482] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), - }, - [1483] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(3199), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3303), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3305), + [anon_sym_BQUOTE] = ACTIONS(273), + }, + [1483] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(3307), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), }, [1484] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(3201), + [anon_sym_RPAREN] = ACTIONS(3307), + [sym_comment] = ACTIONS(41), }, [1485] = { - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [sym_test_operator] = ACTIONS(483), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - }, - [1486] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1496), [sym_concatenation] = STATE(1496), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3205), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3207), - [anon_sym_COLON_DASH] = ACTIONS(3205), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_EQ] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3205), - [sym_regex] = ACTIONS(3211), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3309), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3309), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3311), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3313), + [anon_sym_EQ] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3309), + [sym_regex] = ACTIONS(3315), }, - [1487] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [1486] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3313), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, - [1488] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1487] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1496), [sym_concatenation] = STATE(1496), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3205), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3207), - [anon_sym_COLON_DASH] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3213), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_EQ] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3205), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3309), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3309), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3311), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3313), + [anon_sym_EQ] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3309), }, - [1489] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1488] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1500), [sym_concatenation] = STATE(1500), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3217), - [anon_sym_COLON_DASH] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3219), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3215), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_EQ] = ACTIONS(3215), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3215), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3319), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3319), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3321), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_EQ] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3319), }, - [1490] = { + [1489] = { [sym_command_substitution] = STATE(1501), [aux_sym__literal_repeat1] = STATE(1502), [sym_string] = STATE(1501), @@ -48072,82 +49106,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1501), [sym_concatenation] = STATE(1503), [sym_expansion] = STATE(1501), - [sym_word] = ACTIONS(3223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(3223), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(3313), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(3329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(3329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3327), + [sym__special_character] = ACTIONS(947), }, - [1491] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1490] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1505), [sym_concatenation] = STATE(1505), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3225), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3227), - [anon_sym_COLON_DASH] = ACTIONS(3225), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3225), - [sym_regex] = ACTIONS(3231), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3331), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3331), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3333), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_EQ] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3331), + [sym_regex] = ACTIONS(3337), + }, + [1491] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1492] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_RPAREN] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [sym_test_operator] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), }, [1493] = { [sym_command_substitution] = STATE(221), @@ -48159,128 +49217,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(1506), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [sym_ansii_c_string] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(3233), - [sym__special_character] = ACTIONS(1004), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [sym_ansii_c_string] = ACTIONS(1015), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(3341), + [sym__special_character] = ACTIONS(1029), + [sym_number] = ACTIONS(1017), + [anon_sym_GT_LPAREN] = ACTIONS(1023), }, [1494] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1495] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1507), [sym_concatenation] = STATE(1507), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3237), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3239), - [anon_sym_COLON_DASH] = ACTIONS(3237), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_EQ] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3237), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3345), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3345), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3347), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3345), }, [1496] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1497] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1507), [sym_concatenation] = STATE(1507), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3237), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3239), - [anon_sym_COLON_DASH] = ACTIONS(3237), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_EQ] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3237), - [sym_regex] = ACTIONS(3243), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3345), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3345), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3347), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3345), + [sym_regex] = ACTIONS(3351), }, [1498] = { [sym_command_substitution] = STATE(1509), @@ -48291,160 +49353,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1509), [sym_concatenation] = STATE(1511), [sym_expansion] = STATE(1509), - [sym_word] = ACTIONS(3245), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3245), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(3245), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(3355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(3355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3353), + [sym__special_character] = ACTIONS(947), }, [1499] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1513), [sym_concatenation] = STATE(1513), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3247), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3249), - [anon_sym_COLON_DASH] = ACTIONS(3247), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3247), - [sym_regex] = ACTIONS(3253), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3357), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3357), + [sym_regex] = ACTIONS(3363), }, [1500] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1501] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(3241), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3349), + [sym__concat] = ACTIONS(1294), }, [1502] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3255), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(3365), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1503] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3349), + [sym_comment] = ACTIONS(41), }, [1504] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1514), [sym_concatenation] = STATE(1514), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3257), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3259), - [anon_sym_COLON_DASH] = ACTIONS(3257), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3257), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3367), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3367), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3369), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_EQ] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3367), }, [1505] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1506] = { [sym_command_substitution] = STATE(221), @@ -48456,581 +49523,598 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(280), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [sym_ansii_c_string] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(3263), - [sym__special_character] = ACTIONS(1004), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [sym_ansii_c_string] = ACTIONS(1015), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(3373), + [sym__special_character] = ACTIONS(1029), + [sym_number] = ACTIONS(1017), + [anon_sym_GT_LPAREN] = ACTIONS(1023), }, [1507] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1508] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1515), [sym_concatenation] = STATE(1515), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3267), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3269), - [anon_sym_COLON_DASH] = ACTIONS(3267), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_EQ] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3267), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3377), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3377), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3379), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3377), }, [1509] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(3265), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3375), + [sym__concat] = ACTIONS(1294), }, [1510] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3271), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(3381), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1511] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(41), }, [1512] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1516), [sym_concatenation] = STATE(1516), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3273), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3275), - [anon_sym_COLON_DASH] = ACTIONS(3273), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_EQ] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3273), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3383), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3383), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3385), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3383), }, [1513] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1514] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1515] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1516] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1517] = { - [sym_string] = STATE(643), - [anon_sym_DQUOTE] = ACTIONS(2449), - [aux_sym__simple_variable_name_token1] = ACTIONS(2462), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym__] = ACTIONS(2462), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3287), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3287), - [sym_raw_string] = ACTIONS(3289), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3287), - [anon_sym_0] = ACTIONS(2462), + [sym_string] = STATE(642), + [anon_sym__] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_0] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(3395), + [aux_sym__simple_variable_name_token1] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3395), + [sym_raw_string] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3397), }, [1518] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1527), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1526), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(3401), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [1519] = { - [sym_command_substitution] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_string] = STATE(655), - [sym_process_substitution] = STATE(655), - [sym_expansion] = STATE(655), - [sym_word] = ACTIONS(2445), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2451), - [sym_raw_string] = ACTIONS(2445), - [anon_sym_BQUOTE] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_GT_LPAREN] = ACTIONS(2457), - [sym_ansii_c_string] = ACTIONS(2445), - [anon_sym_LT_LPAREN] = ACTIONS(2457), - [sym__special_character] = ACTIONS(2445), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(3405), }, [1520] = { - [anon_sym_RPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(3407), + [sym_comment] = ACTIONS(41), }, [1521] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(657), + [sym_simple_expansion] = STATE(657), + [sym_string_expansion] = STATE(657), + [sym_string] = STATE(657), + [sym_process_substitution] = STATE(657), + [sym_expansion] = STATE(657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2499), + [sym_word] = ACTIONS(2501), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2503), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LT_LPAREN] = ACTIONS(2507), + [sym_ansii_c_string] = ACTIONS(2499), + [anon_sym_BQUOTE] = ACTIONS(2509), + [anon_sym_GT_LPAREN] = ACTIONS(2507), + [sym__special_character] = ACTIONS(2499), + [sym_number] = ACTIONS(2501), + }, + [1522] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1530), [sym_concatenation] = STATE(1530), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3297), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_PERCENT] = ACTIONS(3297), - [anon_sym_POUND] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_COLON_DASH] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3297), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3409), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3411), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3415), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3409), + [sym__special_character] = ACTIONS(459), }, - [1522] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1523] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1535), [sym_concatenation] = STATE(1535), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3305), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3305), - [anon_sym_PERCENT] = ACTIONS(3305), - [anon_sym_POUND] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_COLON_DASH] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3305), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3417), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3419), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3423), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3417), + [sym__special_character] = ACTIONS(459), }, - [1523] = { - [sym_command_substitution] = STATE(661), - [aux_sym__literal_repeat1] = STATE(663), - [sym_string] = STATE(661), + [1524] = { + [sym_command_substitution] = STATE(663), + [aux_sym__literal_repeat1] = STATE(664), + [sym_string] = STATE(663), [sym_array] = STATE(662), - [sym_process_substitution] = STATE(661), - [sym_simple_expansion] = STATE(661), - [sym_string_expansion] = STATE(661), + [sym_process_substitution] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_string_expansion] = STATE(663), [sym_concatenation] = STATE(662), - [sym_expansion] = STATE(661), - [sym_word] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(3313), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(117), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(121), - [sym_ansii_c_string] = ACTIONS(3313), - [anon_sym_GT_LPAREN] = ACTIONS(123), - [anon_sym_LT_LPAREN] = ACTIONS(123), - [sym__special_character] = ACTIONS(129), - [sym__empty_value] = ACTIONS(3317), - [sym_comment] = ACTIONS(19), - }, - [1524] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(3319), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(663), + [anon_sym_LPAREN] = ACTIONS(3425), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3427), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [anon_sym_GT_LPAREN] = ACTIONS(117), + [sym_number] = ACTIONS(3429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_word] = ACTIONS(3429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(117), + [sym_ansii_c_string] = ACTIONS(3427), + [sym__special_character] = ACTIONS(127), + [sym__empty_value] = ACTIONS(3431), }, [1525] = { - [anon_sym_RPAREN] = ACTIONS(3319), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(3433), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1526] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [1527] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(3323), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(3435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [1527] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [1528] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(3325), + [anon_sym_RPAREN] = ACTIONS(3437), + [sym_comment] = ACTIONS(41), }, [1529] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1539), [sym_concatenation] = STATE(1539), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_COLON_DASH] = ACTIONS(3327), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3327), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3333), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3439), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3441), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_COLON_DASH] = ACTIONS(3439), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3439), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3439), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3445), }, [1530] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1531] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1539), [sym_concatenation] = STATE(1539), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_COLON_DASH] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3327), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3439), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3441), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3439), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3443), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3439), + [sym__special_character] = ACTIONS(459), }, [1532] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1543), [sym_concatenation] = STATE(1543), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3337), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3337), - [anon_sym_PERCENT] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3341), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_COLON_DASH] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3337), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3449), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3451), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3449), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3455), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3449), + [sym__special_character] = ACTIONS(459), }, [1533] = { [sym_command_substitution] = STATE(1544), @@ -49041,82 +50125,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1544), [sym_concatenation] = STATE(1546), [sym_expansion] = STATE(1544), - [sym_word] = ACTIONS(3345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3345), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(3345), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(3329), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3457), + [sym_word] = ACTIONS(3459), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(3457), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(3443), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(3459), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1534] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1548), [sym_concatenation] = STATE(1548), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_POUND] = ACTIONS(3351), - [anon_sym_COLON_DASH] = ACTIONS(3347), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3347), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3353), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3461), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3463), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_COLON_DASH] = ACTIONS(3461), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3461), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3461), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3467), }, [1535] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1536] = { [sym_command_substitution] = STATE(221), @@ -49128,128 +50215,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(1549), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [sym_ansii_c_string] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(3355), - [sym__special_character] = ACTIONS(1004), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [sym_ansii_c_string] = ACTIONS(1015), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(3469), + [sym__special_character] = ACTIONS(1029), + [sym_number] = ACTIONS(1017), + [anon_sym_GT_LPAREN] = ACTIONS(1023), }, [1537] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(3471), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1538] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1550), [sym_concatenation] = STATE(1550), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_POUND] = ACTIONS(3363), - [anon_sym_COLON_DASH] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3473), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3475), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3473), + [anon_sym_COLON_DASH] = ACTIONS(3473), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3473), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3473), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3473), + [sym__special_character] = ACTIONS(459), }, [1539] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1540] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1550), [sym_concatenation] = STATE(1550), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_POUND] = ACTIONS(3363), - [anon_sym_COLON_DASH] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3359), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3365), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3473), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3475), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3473), + [anon_sym_COLON_DASH] = ACTIONS(3473), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3473), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3473), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3473), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3479), }, [1541] = { [sym_command_substitution] = STATE(1552), @@ -49260,160 +50351,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1552), [sym_concatenation] = STATE(1554), [sym_expansion] = STATE(1552), - [sym_word] = ACTIONS(3367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3367), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(3367), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(3361), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3481), + [sym_word] = ACTIONS(3483), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(3481), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(3477), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(3483), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1542] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1556), [sym_concatenation] = STATE(1556), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_POUND] = ACTIONS(3373), - [anon_sym_COLON_DASH] = ACTIONS(3369), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3369), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3375), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3485), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3487), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3485), + [anon_sym_COLON_DASH] = ACTIONS(3485), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3485), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3485), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3491), }, [1543] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1544] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3361), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3477), + [sym__concat] = ACTIONS(1294), }, [1545] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(3377), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(3493), + [sym_comment] = ACTIONS(41), }, [1546] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3477), + [sym_comment] = ACTIONS(41), }, [1547] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1557), [sym_concatenation] = STATE(1557), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_POUND] = ACTIONS(3383), - [anon_sym_COLON_DASH] = ACTIONS(3379), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3495), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3497), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3495), + [anon_sym_COLON_DASH] = ACTIONS(3495), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3495), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3495), + [sym__special_character] = ACTIONS(459), }, [1548] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1549] = { [sym_command_substitution] = STATE(221), @@ -49425,581 +50521,598 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(280), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [sym_ansii_c_string] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(3385), - [sym__special_character] = ACTIONS(1004), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [sym_ansii_c_string] = ACTIONS(1015), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(3501), + [sym__special_character] = ACTIONS(1029), + [sym_number] = ACTIONS(1017), + [anon_sym_GT_LPAREN] = ACTIONS(1023), }, [1550] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1551] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1558), [sym_concatenation] = STATE(1558), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_PERCENT] = ACTIONS(3389), - [anon_sym_POUND] = ACTIONS(3391), - [anon_sym_COLON_DASH] = ACTIONS(3389), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3389), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3505), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3507), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_COLON_DASH] = ACTIONS(3505), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3505), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3505), + [sym__special_character] = ACTIONS(459), }, [1552] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3387), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3503), + [sym__concat] = ACTIONS(1294), }, [1553] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(3393), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(3509), + [sym_comment] = ACTIONS(41), }, [1554] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3503), + [sym_comment] = ACTIONS(41), }, [1555] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1559), [sym_concatenation] = STATE(1559), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_POUND] = ACTIONS(3399), - [anon_sym_COLON_DASH] = ACTIONS(3395), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3395), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3511), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3513), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3511), + [anon_sym_COLON_DASH] = ACTIONS(3511), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3511), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3511), + [sym__special_character] = ACTIONS(459), }, [1556] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1557] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1558] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3519), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1559] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1560] = { - [sym_string] = STATE(699), - [anon_sym_DQUOTE] = ACTIONS(2481), - [aux_sym__simple_variable_name_token1] = ACTIONS(2494), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym__] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3409), - [sym_raw_string] = ACTIONS(3411), + [sym_string] = STATE(698), + [anon_sym__] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_POUND] = ACTIONS(3523), + [anon_sym_STAR] = ACTIONS(3525), + [anon_sym_0] = ACTIONS(2548), + [anon_sym_BANG] = ACTIONS(3523), + [aux_sym__simple_variable_name_token1] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_AT] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3523), + [sym_raw_string] = ACTIONS(3527), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3409), - [anon_sym_0] = ACTIONS(2494), + [anon_sym_QMARK] = ACTIONS(3525), }, [1561] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1570), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1569), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(3529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3531), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [1562] = { - [sym_command_substitution] = STATE(705), - [sym_simple_expansion] = STATE(705), - [sym_string_expansion] = STATE(705), - [sym_string] = STATE(705), - [sym_process_substitution] = STATE(705), - [sym_expansion] = STATE(705), - [sym_word] = ACTIONS(2477), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2483), - [sym_raw_string] = ACTIONS(2477), - [anon_sym_BQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(159), - [anon_sym_GT_LPAREN] = ACTIONS(2489), - [sym_ansii_c_string] = ACTIONS(2477), - [anon_sym_LT_LPAREN] = ACTIONS(2489), - [sym__special_character] = ACTIONS(2477), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(3533), }, [1563] = { - [anon_sym_RPAREN] = ACTIONS(3417), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(3535), + [sym_comment] = ACTIONS(41), }, [1564] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(707), + [sym_simple_expansion] = STATE(707), + [sym_string_expansion] = STATE(707), + [sym_string] = STATE(707), + [sym_process_substitution] = STATE(707), + [sym_expansion] = STATE(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2533), + [sym_word] = ACTIONS(2535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LT_LPAREN] = ACTIONS(2541), + [sym_ansii_c_string] = ACTIONS(2533), + [anon_sym_BQUOTE] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2541), + [sym__special_character] = ACTIONS(2533), + [sym_number] = ACTIONS(2535), + }, + [1565] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1573), [sym_concatenation] = STATE(1573), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_POUND] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_COLON_DASH] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3419), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3537), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3539), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3537), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3537), + [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3537), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3543), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3537), + [sym__special_character] = ACTIONS(459), }, - [1565] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1566] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1578), [sym_concatenation] = STATE(1578), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_POUND] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_COLON_DASH] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3427), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3547), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3549), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3545), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3551), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3545), + [sym__special_character] = ACTIONS(459), }, - [1566] = { - [sym_command_substitution] = STATE(711), - [aux_sym__literal_repeat1] = STATE(713), - [sym_string] = STATE(711), + [1567] = { + [sym_command_substitution] = STATE(713), + [aux_sym__literal_repeat1] = STATE(714), + [sym_string] = STATE(713), [sym_array] = STATE(712), - [sym_process_substitution] = STATE(711), - [sym_simple_expansion] = STATE(711), - [sym_string_expansion] = STATE(711), + [sym_process_substitution] = STATE(713), + [sym_simple_expansion] = STATE(713), + [sym_string_expansion] = STATE(713), [sym_concatenation] = STATE(712), - [sym_expansion] = STATE(711), - [sym_word] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2575), - [sym_raw_string] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_LT_LPAREN] = ACTIONS(2579), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2581), - [anon_sym_BQUOTE] = ACTIONS(2583), - [anon_sym_GT_LPAREN] = ACTIONS(2579), - [sym_ansii_c_string] = ACTIONS(3435), - [sym__special_character] = ACTIONS(3439), - [sym__empty_value] = ACTIONS(3441), - }, - [1567] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(3443), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(713), + [anon_sym_LPAREN] = ACTIONS(3553), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3555), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_BQUOTE] = ACTIONS(2633), + [anon_sym_GT_LPAREN] = ACTIONS(2635), + [sym_number] = ACTIONS(3557), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_word] = ACTIONS(3557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2643), + [anon_sym_LT_LPAREN] = ACTIONS(2635), + [sym_ansii_c_string] = ACTIONS(3555), + [sym__special_character] = ACTIONS(3559), + [sym__empty_value] = ACTIONS(3561), }, [1568] = { - [anon_sym_RPAREN] = ACTIONS(3443), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(3563), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1569] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [1570] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(3565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3563), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [1570] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(3567), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [1571] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(3449), + [anon_sym_RPAREN] = ACTIONS(3567), + [sym_comment] = ACTIONS(41), }, [1572] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1582), [sym_concatenation] = STATE(1582), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_POUND] = ACTIONS(3455), - [anon_sym_COLON_DASH] = ACTIONS(3451), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3457), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3569), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3571), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(3569), + [anon_sym_COLON_DASH] = ACTIONS(3569), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3569), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3569), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3569), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3575), }, [1573] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1574] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1582), [sym_concatenation] = STATE(1582), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_POUND] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_COLON_DASH] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3569), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3571), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3577), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3569), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3569), + [anon_sym_EQ] = ACTIONS(3569), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3573), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3569), + [sym__special_character] = ACTIONS(459), }, [1575] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1586), [sym_concatenation] = STATE(1586), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3463), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_POUND] = ACTIONS(3465), - [anon_sym_SLASH] = ACTIONS(3467), - [anon_sym_COLON_DASH] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(513), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3579), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(3581), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3579), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3579), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3579), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3585), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3579), + [sym__special_character] = ACTIONS(459), }, [1576] = { [sym_command_substitution] = STATE(1587), @@ -50010,82 +51123,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1587), [sym_concatenation] = STATE(1589), [sym_expansion] = STATE(1587), - [sym_word] = ACTIONS(3469), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3469), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(3469), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(3453), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3587), + [sym_word] = ACTIONS(3589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(3587), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(3573), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(3589), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1577] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1591), [sym_concatenation] = STATE(1591), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3471), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_PERCENT] = ACTIONS(3471), - [anon_sym_POUND] = ACTIONS(3475), - [anon_sym_COLON_DASH] = ACTIONS(3471), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3471), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3477), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3591), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3593), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3591), + [anon_sym_COLON_DASH] = ACTIONS(3591), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3591), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3591), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3591), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3597), }, [1578] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1579] = { [sym_command_substitution] = STATE(221), @@ -50097,128 +51213,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(1592), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(3479), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [sym_ansii_c_string] = ACTIONS(988), - [sym__special_character] = ACTIONS(1004), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(3599), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_GT_LPAREN] = ACTIONS(1023), + [sym_number] = ACTIONS(1017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1015), + [sym__special_character] = ACTIONS(1029), }, [1580] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(3481), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(3601), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1581] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1593), [sym_concatenation] = STATE(1593), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3483), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3483), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_POUND] = ACTIONS(3487), - [anon_sym_COLON_DASH] = ACTIONS(3483), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3483), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3603), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3605), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_COLON_DASH] = ACTIONS(3603), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3603), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3603), + [sym__special_character] = ACTIONS(459), }, [1582] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1583] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1593), [sym_concatenation] = STATE(1593), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3483), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3483), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_POUND] = ACTIONS(3487), - [anon_sym_COLON_DASH] = ACTIONS(3483), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3483), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3489), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3603), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3605), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3607), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_COLON_DASH] = ACTIONS(3603), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3603), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3603), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3609), }, [1584] = { [sym_command_substitution] = STATE(1595), @@ -50229,160 +51349,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1595), [sym_concatenation] = STATE(1597), [sym_expansion] = STATE(1595), - [sym_word] = ACTIONS(3491), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3491), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(3491), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(3485), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3611), + [sym_word] = ACTIONS(3613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(3611), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(3607), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(3613), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1585] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1599), [sym_concatenation] = STATE(1599), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_POUND] = ACTIONS(3497), - [anon_sym_COLON_DASH] = ACTIONS(3493), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3499), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3615), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3617), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3615), + [anon_sym_COLON_DASH] = ACTIONS(3615), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3615), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3615), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3615), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3621), }, [1586] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1587] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3485), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3607), + [sym__concat] = ACTIONS(1294), }, [1588] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(3501), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(3623), + [sym_comment] = ACTIONS(41), }, [1589] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(3607), + [sym_comment] = ACTIONS(41), }, [1590] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1600), [sym_concatenation] = STATE(1600), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3503), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_PERCENT] = ACTIONS(3503), - [anon_sym_POUND] = ACTIONS(3507), - [anon_sym_COLON_DASH] = ACTIONS(3503), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3503), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3625), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3627), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(3625), + [anon_sym_COLON_DASH] = ACTIONS(3625), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3625), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3625), + [sym__special_character] = ACTIONS(459), }, [1591] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1592] = { [sym_command_substitution] = STATE(221), @@ -50394,581 +51519,598 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(280), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(3509), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [sym_ansii_c_string] = ACTIONS(988), - [sym__special_character] = ACTIONS(1004), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(3631), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_GT_LPAREN] = ACTIONS(1023), + [sym_number] = ACTIONS(1017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1015), + [sym__special_character] = ACTIONS(1029), }, [1593] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1594] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1601), [sym_concatenation] = STATE(1601), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3513), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3513), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_PERCENT] = ACTIONS(3513), - [anon_sym_POUND] = ACTIONS(3515), - [anon_sym_COLON_DASH] = ACTIONS(3513), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3513), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3635), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3637), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3635), + [anon_sym_COLON_DASH] = ACTIONS(3635), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3635), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3635), + [sym__special_character] = ACTIONS(459), }, [1595] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3511), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3633), + [sym__concat] = ACTIONS(1294), }, [1596] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(3517), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(3639), + [sym_comment] = ACTIONS(41), }, [1597] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3511), + [anon_sym_RBRACE] = ACTIONS(3633), + [sym_comment] = ACTIONS(41), }, [1598] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1602), [sym_concatenation] = STATE(1602), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_PERCENT] = ACTIONS(3519), - [anon_sym_POUND] = ACTIONS(3523), - [anon_sym_COLON_DASH] = ACTIONS(3519), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3519), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3641), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3643), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3645), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_COLON_DASH] = ACTIONS(3641), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3641), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3641), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3641), + [sym__special_character] = ACTIONS(459), }, [1599] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3645), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1600] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1601] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3527), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3649), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1602] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3529), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1603] = { - [sym_string] = STATE(738), - [anon_sym_DQUOTE] = ACTIONS(197), - [aux_sym__simple_variable_name_token1] = ACTIONS(2516), - [anon_sym_AT] = ACTIONS(3531), - [anon_sym__] = ACTIONS(2516), - [anon_sym_BANG] = ACTIONS(3533), - [anon_sym_STAR] = ACTIONS(3531), - [anon_sym_DOLLAR] = ACTIONS(3533), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3533), - [sym_raw_string] = ACTIONS(3535), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3533), - [anon_sym_0] = ACTIONS(2516), + [sym_string] = STATE(737), + [anon_sym__] = ACTIONS(2572), + [anon_sym_DQUOTE] = ACTIONS(217), + [anon_sym_POUND] = ACTIONS(3653), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_0] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(3653), + [aux_sym__simple_variable_name_token1] = ACTIONS(2572), + [anon_sym_DOLLAR] = ACTIONS(3653), + [anon_sym_AT] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3653), + [sym_raw_string] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3655), }, [1604] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1613), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(3537), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3539), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1612), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3661), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [1605] = { - [sym_command_substitution] = STATE(742), - [sym_simple_expansion] = STATE(742), - [sym_string_expansion] = STATE(742), - [sym_string] = STATE(742), - [sym_process_substitution] = STATE(742), - [sym_expansion] = STATE(742), - [sym_word] = ACTIONS(2505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(199), - [sym_raw_string] = ACTIONS(2505), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_GT_LPAREN] = ACTIONS(205), - [sym_ansii_c_string] = ACTIONS(2505), - [anon_sym_LT_LPAREN] = ACTIONS(205), - [sym__special_character] = ACTIONS(2505), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(3663), }, [1606] = { - [anon_sym_RPAREN] = ACTIONS(3541), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(3665), + [sym_comment] = ACTIONS(41), }, [1607] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(744), + [sym_simple_expansion] = STATE(744), + [sym_string_expansion] = STATE(744), + [sym_string] = STATE(744), + [sym_process_substitution] = STATE(744), + [sym_expansion] = STATE(744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2559), + [sym_word] = ACTIONS(2561), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [sym_ansii_c_string] = ACTIONS(2559), + [anon_sym_BQUOTE] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym__special_character] = ACTIONS(2559), + [sym_number] = ACTIONS(2561), + }, + [1608] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1616), [sym_concatenation] = STATE(1616), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_PERCENT] = ACTIONS(3543), - [anon_sym_POUND] = ACTIONS(3547), - [anon_sym_SLASH] = ACTIONS(3549), - [anon_sym_COLON_DASH] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3667), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3669), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(3667), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3673), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3667), + [sym__special_character] = ACTIONS(459), }, - [1608] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1609] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1621), [sym_concatenation] = STATE(1621), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3551), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3553), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3551), - [anon_sym_PERCENT] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3555), - [anon_sym_SLASH] = ACTIONS(3557), - [anon_sym_COLON_DASH] = ACTIONS(3551), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3551), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3675), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3677), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3679), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3675), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3681), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3675), + [sym__special_character] = ACTIONS(459), }, - [1609] = { - [sym_command_substitution] = STATE(748), - [aux_sym__literal_repeat1] = STATE(750), - [sym_string] = STATE(748), + [1610] = { + [sym_command_substitution] = STATE(750), + [aux_sym__literal_repeat1] = STATE(751), + [sym_string] = STATE(750), [sym_array] = STATE(749), - [sym_process_substitution] = STATE(748), - [sym_simple_expansion] = STATE(748), - [sym_string_expansion] = STATE(748), + [sym_process_substitution] = STATE(750), + [sym_simple_expansion] = STATE(750), + [sym_string_expansion] = STATE(750), [sym_concatenation] = STATE(749), - [sym_expansion] = STATE(748), - [sym_word] = ACTIONS(3559), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(3559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2893), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(3563), - [sym_ansii_c_string] = ACTIONS(3559), - [anon_sym_GT_LPAREN] = ACTIONS(2903), - [anon_sym_LT_LPAREN] = ACTIONS(2903), - [sym__special_character] = ACTIONS(3565), - [sym__empty_value] = ACTIONS(3567), - [sym_comment] = ACTIONS(19), - }, - [1610] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(3569), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(750), + [anon_sym_LPAREN] = ACTIONS(3683), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3685), + [anon_sym_DOLLAR] = ACTIONS(3687), + [anon_sym_BQUOTE] = ACTIONS(2991), + [anon_sym_GT_LPAREN] = ACTIONS(2989), + [sym_number] = ACTIONS(3689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_word] = ACTIONS(3689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2989), + [sym_ansii_c_string] = ACTIONS(3685), + [sym__special_character] = ACTIONS(3691), + [sym__empty_value] = ACTIONS(3693), }, [1611] = { - [anon_sym_RPAREN] = ACTIONS(3569), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(3695), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1612] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(3571), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [1613] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3695), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [1613] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [1614] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(3575), + [anon_sym_RPAREN] = ACTIONS(3699), + [sym_comment] = ACTIONS(41), }, [1615] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1625), [sym_concatenation] = STATE(1625), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3577), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3577), - [anon_sym_PERCENT] = ACTIONS(3577), - [anon_sym_POUND] = ACTIONS(3581), - [anon_sym_COLON_DASH] = ACTIONS(3577), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3577), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3583), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3701), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3703), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_COLON_DASH] = ACTIONS(3701), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3701), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3707), }, [1616] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1617] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1625), [sym_concatenation] = STATE(1625), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3577), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3577), - [anon_sym_PERCENT] = ACTIONS(3577), - [anon_sym_POUND] = ACTIONS(3581), - [anon_sym_SLASH] = ACTIONS(3585), - [anon_sym_COLON_DASH] = ACTIONS(3577), - [anon_sym_DQUOTE] = ACTIONS(513), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3701), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3577), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(3703), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3709), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3705), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3701), + [sym__special_character] = ACTIONS(459), }, [1618] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1629), [sym_concatenation] = STATE(1629), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3587), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3589), - [anon_sym_DASH] = ACTIONS(3587), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3587), - [anon_sym_PERCENT] = ACTIONS(3587), - [anon_sym_POUND] = ACTIONS(3591), - [anon_sym_SLASH] = ACTIONS(3593), - [anon_sym_COLON_DASH] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3587), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3711), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3713), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3715), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3711), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3711), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3717), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3711), + [sym__special_character] = ACTIONS(459), }, [1619] = { [sym_command_substitution] = STATE(1630), @@ -50979,82 +52121,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1630), [sym_concatenation] = STATE(1632), [sym_expansion] = STATE(1630), - [sym_word] = ACTIONS(3595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3595), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(3595), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(3579), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3719), + [sym_word] = ACTIONS(3721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(3719), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(3705), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(3721), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1620] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1634), [sym_concatenation] = STATE(1634), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(3597), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_PERCENT] = ACTIONS(3597), - [anon_sym_POUND] = ACTIONS(3601), - [anon_sym_COLON_DASH] = ACTIONS(3597), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3597), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3603), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3723), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3725), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3727), + [anon_sym_DASH] = ACTIONS(3723), + [anon_sym_COLON_DASH] = ACTIONS(3723), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3723), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3723), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3729), }, [1621] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3599), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3727), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1622] = { [sym_command_substitution] = STATE(221), @@ -51066,128 +52211,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(1635), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [sym_ansii_c_string] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(3605), - [sym__special_character] = ACTIONS(1004), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [sym_ansii_c_string] = ACTIONS(1015), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(3731), + [sym__special_character] = ACTIONS(1029), + [sym_number] = ACTIONS(1017), + [anon_sym_GT_LPAREN] = ACTIONS(1023), }, [1623] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(3607), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(3733), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1624] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1636), [sym_concatenation] = STATE(1636), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_POUND] = ACTIONS(3613), - [anon_sym_COLON_DASH] = ACTIONS(3609), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3735), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3737), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3739), + [anon_sym_DASH] = ACTIONS(3735), + [anon_sym_COLON_DASH] = ACTIONS(3735), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3735), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3735), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3735), + [sym__special_character] = ACTIONS(459), }, [1625] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3739), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1626] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1636), [sym_concatenation] = STATE(1636), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3609), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3611), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3609), - [anon_sym_PERCENT] = ACTIONS(3609), - [anon_sym_POUND] = ACTIONS(3613), - [anon_sym_COLON_DASH] = ACTIONS(3609), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3615), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3735), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3737), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3739), + [anon_sym_DASH] = ACTIONS(3735), + [anon_sym_COLON_DASH] = ACTIONS(3735), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3735), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3735), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3735), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3741), }, [1627] = { [sym_command_substitution] = STATE(1638), @@ -51198,160 +52347,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1638), [sym_concatenation] = STATE(1640), [sym_expansion] = STATE(1638), - [sym_word] = ACTIONS(3617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3617), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(3617), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(3611), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3743), + [sym_word] = ACTIONS(3745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(3743), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(3739), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(3745), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1628] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1642), [sym_concatenation] = STATE(1642), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_POUND] = ACTIONS(3623), - [anon_sym_COLON_DASH] = ACTIONS(3619), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3619), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3625), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3747), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3749), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3751), + [anon_sym_DASH] = ACTIONS(3747), + [anon_sym_COLON_DASH] = ACTIONS(3747), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3747), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3747), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3747), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3753), }, [1629] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3751), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1630] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3611), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3739), + [sym__concat] = ACTIONS(1294), }, [1631] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(3627), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(3755), + [sym_comment] = ACTIONS(41), }, [1632] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3611), + [anon_sym_RBRACE] = ACTIONS(3739), + [sym_comment] = ACTIONS(41), }, [1633] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1643), [sym_concatenation] = STATE(1643), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3629), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3629), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_PERCENT] = ACTIONS(3629), - [anon_sym_POUND] = ACTIONS(3633), - [anon_sym_COLON_DASH] = ACTIONS(3629), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3629), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3757), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3759), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3761), + [anon_sym_DASH] = ACTIONS(3757), + [anon_sym_COLON_DASH] = ACTIONS(3757), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3757), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3757), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3757), + [sym__special_character] = ACTIONS(459), }, [1634] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3761), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1635] = { [sym_command_substitution] = STATE(221), @@ -51363,581 +52517,598 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(280), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [sym_ansii_c_string] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(3635), - [sym__special_character] = ACTIONS(1004), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [sym_ansii_c_string] = ACTIONS(1015), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(3763), + [sym__special_character] = ACTIONS(1029), + [sym_number] = ACTIONS(1017), + [anon_sym_GT_LPAREN] = ACTIONS(1023), }, [1636] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1637] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1644), [sym_concatenation] = STATE(1644), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3637), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_POUND] = ACTIONS(3641), - [anon_sym_COLON_DASH] = ACTIONS(3639), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3767), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3769), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_COLON_DASH] = ACTIONS(3767), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3767), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3767), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3767), + [sym__special_character] = ACTIONS(459), }, [1638] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3637), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3765), + [sym__concat] = ACTIONS(1294), }, [1639] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(3643), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(3771), + [sym_comment] = ACTIONS(41), }, [1640] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3637), + [anon_sym_RBRACE] = ACTIONS(3765), + [sym_comment] = ACTIONS(41), }, [1641] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1645), [sym_concatenation] = STATE(1645), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_PERCENT] = ACTIONS(3645), - [anon_sym_POUND] = ACTIONS(3649), - [anon_sym_COLON_DASH] = ACTIONS(3645), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3645), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3773), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3775), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3777), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_COLON_DASH] = ACTIONS(3773), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3773), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3773), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3773), + [sym__special_character] = ACTIONS(459), }, [1642] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3777), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1643] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3779), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1644] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3781), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1645] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3783), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1646] = { - [sym_string] = STATE(775), - [aux_sym__simple_variable_name_token1] = ACTIONS(2540), - [sym_raw_string] = ACTIONS(2544), - [anon_sym_BANG] = ACTIONS(2536), - [anon_sym_DOLLAR] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2536), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2536), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym__] = ACTIONS(2540), - [anon_sym_AT] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_0] = ACTIONS(2540), + [sym_string] = STATE(774), + [anon_sym__] = ACTIONS(2594), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2596), + [sym_raw_string] = ACTIONS(2602), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_0] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2600), + [aux_sym__simple_variable_name_token1] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2600), }, [1647] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1656), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(3659), - [sym_comment] = ACTIONS(3), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1655), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3785), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3787), + [anon_sym_BQUOTE] = ACTIONS(273), }, [1648] = { - [sym_command_substitution] = STATE(779), - [sym_string] = STATE(779), - [sym_process_substitution] = STATE(779), - [sym_simple_expansion] = STATE(779), - [sym_string_expansion] = STATE(779), - [sym_expansion] = STATE(779), - [sym_word] = ACTIONS(2529), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(2529), - [sym__special_character] = ACTIONS(2529), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(3789), }, [1649] = { - [anon_sym_RPAREN] = ACTIONS(3661), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(3791), + [sym_comment] = ACTIONS(41), }, [1650] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(781), + [sym_string] = STATE(781), + [sym_process_substitution] = STATE(781), + [sym_simple_expansion] = STATE(781), + [sym_string_expansion] = STATE(781), + [sym_expansion] = STATE(781), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2585), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(2589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(2589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(2585), + [sym__special_character] = ACTIONS(2585), + }, + [1651] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1659), [sym_concatenation] = STATE(1659), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3663), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3663), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3665), - [anon_sym_COLON_DASH] = ACTIONS(3663), - [anon_sym_SLASH] = ACTIONS(3667), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(3669), - [anon_sym_EQ] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3663), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3793), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3793), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3795), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3797), + [anon_sym_RBRACE] = ACTIONS(3799), + [anon_sym_EQ] = ACTIONS(3793), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3793), }, - [1651] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1652] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1664), [sym_concatenation] = STATE(1664), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3671), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3673), - [anon_sym_COLON_DASH] = ACTIONS(3671), - [anon_sym_SLASH] = ACTIONS(3675), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3671), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3671), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3801), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3801), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3801), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3803), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3805), + [anon_sym_RBRACE] = ACTIONS(3807), + [anon_sym_EQ] = ACTIONS(3801), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3801), }, - [1652] = { - [sym_command_substitution] = STATE(785), - [aux_sym__literal_repeat1] = STATE(787), - [sym_string] = STATE(785), + [1653] = { + [sym_command_substitution] = STATE(787), + [aux_sym__literal_repeat1] = STATE(788), + [sym_string] = STATE(787), [sym_array] = STATE(786), - [sym_process_substitution] = STATE(785), - [sym_simple_expansion] = STATE(785), - [sym_string_expansion] = STATE(785), + [sym_process_substitution] = STATE(787), + [sym_simple_expansion] = STATE(787), + [sym_string_expansion] = STATE(787), [sym_concatenation] = STATE(786), - [sym_expansion] = STATE(785), - [sym_word] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_DQUOTE] = ACTIONS(2839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(3679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2837), - [anon_sym_BQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2380), - [sym_ansii_c_string] = ACTIONS(3679), - [anon_sym_GT_LPAREN] = ACTIONS(2847), - [anon_sym_LT_LPAREN] = ACTIONS(2847), - [sym__special_character] = ACTIONS(3683), - [sym__empty_value] = ACTIONS(3685), - [sym_comment] = ACTIONS(19), - }, - [1653] = { - [sym_word] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(3687), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), + [sym_expansion] = STATE(787), + [anon_sym_LPAREN] = ACTIONS(3809), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3811), + [anon_sym_DOLLAR] = ACTIONS(2428), + [anon_sym_BQUOTE] = ACTIONS(2931), + [anon_sym_GT_LPAREN] = ACTIONS(2929), + [sym_number] = ACTIONS(3813), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2919), + [sym_word] = ACTIONS(3813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2925), + [anon_sym_LT_LPAREN] = ACTIONS(2929), + [sym_ansii_c_string] = ACTIONS(3811), + [sym__special_character] = ACTIONS(3815), + [sym__empty_value] = ACTIONS(3817), }, [1654] = { - [anon_sym_RPAREN] = ACTIONS(3687), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(3819), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1655] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(3689), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), - }, - [1656] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(3691), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3819), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3821), + [anon_sym_BQUOTE] = ACTIONS(273), + }, + [1656] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(3823), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), }, [1657] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(3693), + [anon_sym_RPAREN] = ACTIONS(3823), + [sym_comment] = ACTIONS(41), }, [1658] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1668), [sym_concatenation] = STATE(1668), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3695), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3695), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_COLON_DASH] = ACTIONS(3695), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3695), - [anon_sym_RBRACE] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3695), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3695), - [sym_regex] = ACTIONS(3701), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3825), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3825), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3827), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3825), + [sym_regex] = ACTIONS(3831), }, [1659] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1660] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1668), [sym_concatenation] = STATE(1668), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3695), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3695), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3697), - [anon_sym_COLON_DASH] = ACTIONS(3695), - [anon_sym_SLASH] = ACTIONS(3703), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3695), - [anon_sym_RBRACE] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3695), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3695), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3825), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3825), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3827), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3833), + [anon_sym_RBRACE] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3825), }, [1661] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1672), [sym_concatenation] = STATE(1672), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3705), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3707), - [anon_sym_COLON_DASH] = ACTIONS(3705), - [anon_sym_SLASH] = ACTIONS(3709), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_RBRACE] = ACTIONS(3711), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3705), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3835), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3835), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3837), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3839), + [anon_sym_RBRACE] = ACTIONS(3841), + [anon_sym_EQ] = ACTIONS(3835), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3835), }, [1662] = { [sym_command_substitution] = STATE(1673), @@ -51948,82 +53119,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1673), [sym_concatenation] = STATE(1675), [sym_expansion] = STATE(1673), - [sym_word] = ACTIONS(3713), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3713), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(3699), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(3713), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3843), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(3829), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(3845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(3845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3843), + [sym__special_character] = ACTIONS(947), }, [1663] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1677), [sym_concatenation] = STATE(1677), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3715), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3717), - [anon_sym_COLON_DASH] = ACTIONS(3715), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3715), - [anon_sym_RBRACE] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3715), - [sym_regex] = ACTIONS(3721), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3847), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3847), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3851), + [anon_sym_EQ] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3847), + [sym_regex] = ACTIONS(3853), }, [1664] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3851), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1665] = { [sym_command_substitution] = STATE(221), @@ -52035,128 +53209,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(1678), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [sym_ansii_c_string] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(3723), - [sym__special_character] = ACTIONS(1004), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [sym_ansii_c_string] = ACTIONS(1015), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(3855), + [sym__special_character] = ACTIONS(1029), + [sym_number] = ACTIONS(1017), + [anon_sym_GT_LPAREN] = ACTIONS(1023), }, [1666] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(3725), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1667] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1679), [sym_concatenation] = STATE(1679), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3727), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3727), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3729), - [anon_sym_COLON_DASH] = ACTIONS(3727), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3727), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(3727), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3727), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3861), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3859), }, [1668] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1669] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1679), [sym_concatenation] = STATE(1679), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3727), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3727), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3729), - [anon_sym_COLON_DASH] = ACTIONS(3727), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3727), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(3727), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3727), - [sym_regex] = ACTIONS(3733), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3859), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3861), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3859), + [sym_regex] = ACTIONS(3865), }, [1670] = { [sym_command_substitution] = STATE(1681), @@ -52167,160 +53345,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1681), [sym_concatenation] = STATE(1683), [sym_expansion] = STATE(1681), - [sym_word] = ACTIONS(3735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(3735), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3867), + [sym__special_character] = ACTIONS(947), }, [1671] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1685), [sym_concatenation] = STATE(1685), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3737), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3737), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3739), - [anon_sym_COLON_DASH] = ACTIONS(3737), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3737), - [anon_sym_RBRACE] = ACTIONS(3741), - [anon_sym_EQ] = ACTIONS(3737), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3737), - [sym_regex] = ACTIONS(3743), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3871), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3871), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3873), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3875), + [anon_sym_EQ] = ACTIONS(3871), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3871), + [sym_regex] = ACTIONS(3877), }, [1672] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3741), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3875), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1673] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(3731), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3863), + [sym__concat] = ACTIONS(1294), }, [1674] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3745), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(3879), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1675] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_RBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(41), }, [1676] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1686), [sym_concatenation] = STATE(1686), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3747), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3747), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3881), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3881), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3749), - [anon_sym_COLON_DASH] = ACTIONS(3747), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3747), - [anon_sym_RBRACE] = ACTIONS(3751), - [anon_sym_EQ] = ACTIONS(3747), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3747), + [anon_sym_POUND] = ACTIONS(3883), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3885), + [anon_sym_EQ] = ACTIONS(3881), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3881), }, [1677] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3751), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3885), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1678] = { [sym_command_substitution] = STATE(221), @@ -52332,556 +53515,572 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(221), [sym_concatenation] = STATE(280), [sym_expansion] = STATE(221), - [sym_word] = ACTIONS(988), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [sym_ansii_c_string] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(3753), - [sym__special_character] = ACTIONS(1004), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1015), + [sym_word] = ACTIONS(1017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [sym_ansii_c_string] = ACTIONS(1015), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(3887), + [sym__special_character] = ACTIONS(1029), + [sym_number] = ACTIONS(1017), + [anon_sym_GT_LPAREN] = ACTIONS(1023), }, [1679] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3889), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1680] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1687), [sym_concatenation] = STATE(1687), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3757), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3757), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3759), - [anon_sym_COLON_DASH] = ACTIONS(3757), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3757), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_EQ] = ACTIONS(3757), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3757), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3891), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3891), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3891), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3893), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3889), + [anon_sym_EQ] = ACTIONS(3891), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3891), }, [1681] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(3755), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3889), + [sym__concat] = ACTIONS(1294), }, [1682] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3761), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(3895), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1683] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3755), + [anon_sym_RBRACE] = ACTIONS(3889), + [sym_comment] = ACTIONS(41), }, [1684] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1688), [sym_concatenation] = STATE(1688), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3763), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3763), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3765), - [anon_sym_COLON_DASH] = ACTIONS(3763), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3763), - [anon_sym_RBRACE] = ACTIONS(3767), - [anon_sym_EQ] = ACTIONS(3763), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3763), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3897), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3897), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3897), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3899), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3897), }, [1685] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3767), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1686] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3903), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1687] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3771), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3905), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1688] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3773), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3907), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1689] = { - [sym_string] = STATE(812), - [aux_sym__simple_variable_name_token1] = ACTIONS(2560), - [sym_raw_string] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_DOLLAR] = ACTIONS(2556), - [anon_sym_QMARK] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2556), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym__] = ACTIONS(2560), - [anon_sym_AT] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_0] = ACTIONS(2560), + [sym_string] = STATE(811), + [anon_sym__] = ACTIONS(2614), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2616), + [sym_raw_string] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_DOLLAR] = ACTIONS(2616), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(301), + [anon_sym_0] = ACTIONS(2614), + [anon_sym_STAR] = ACTIONS(2620), + [aux_sym__simple_variable_name_token1] = ACTIONS(2614), + [anon_sym_QMARK] = ACTIONS(2620), }, [1690] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1698), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(3777), - [sym_comment] = ACTIONS(3), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1697), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(273), }, [1691] = { - [sym_command_substitution] = STATE(816), - [sym_string] = STATE(816), - [sym_process_substitution] = STATE(816), - [sym_simple_expansion] = STATE(816), - [sym_string_expansion] = STATE(816), - [sym_expansion] = STATE(816), - [sym_word] = ACTIONS(1351), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(1351), - [sym__special_character] = ACTIONS(1351), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(3913), }, [1692] = { - [anon_sym_RPAREN] = ACTIONS(3779), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(3915), + [sym_comment] = ACTIONS(41), }, [1693] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(818), + [sym_string] = STATE(818), + [sym_process_substitution] = STATE(818), + [sym_simple_expansion] = STATE(818), + [sym_string_expansion] = STATE(818), + [sym_expansion] = STATE(818), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(293), + [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym_number] = ACTIONS(1384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_word] = ACTIONS(1384), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(1382), + [sym__special_character] = ACTIONS(1382), + }, + [1694] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1701), [sym_concatenation] = STATE(1701), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3781), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3783), - [anon_sym_DASH] = ACTIONS(3781), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3781), - [anon_sym_PERCENT] = ACTIONS(3781), - [anon_sym_POUND] = ACTIONS(3785), - [anon_sym_SLASH] = ACTIONS(3787), - [anon_sym_COLON_DASH] = ACTIONS(3781), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3781), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3917), + [anon_sym_EQ] = ACTIONS(3917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3917), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3923), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3917), + [sym__special_character] = ACTIONS(459), }, - [1694] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1695] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1706), [sym_concatenation] = STATE(1706), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3789), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3791), - [anon_sym_DASH] = ACTIONS(3789), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3789), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_POUND] = ACTIONS(3793), - [anon_sym_SLASH] = ACTIONS(3795), - [anon_sym_COLON_DASH] = ACTIONS(3789), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3789), - [sym__special_character] = ACTIONS(517), - }, - [1695] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(3797), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3925), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3927), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3925), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3931), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3925), + [sym__special_character] = ACTIONS(459), }, [1696] = { - [anon_sym_RPAREN] = ACTIONS(3797), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1697] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(3799), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), - }, - [1698] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3799), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(3801), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3933), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3935), + [anon_sym_BQUOTE] = ACTIONS(273), + }, + [1698] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [1699] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(3803), + [anon_sym_RPAREN] = ACTIONS(3937), + [sym_comment] = ACTIONS(41), }, [1700] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1709), [sym_concatenation] = STATE(1709), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3805), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3807), - [anon_sym_DASH] = ACTIONS(3805), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3805), - [anon_sym_PERCENT] = ACTIONS(3805), - [anon_sym_POUND] = ACTIONS(3809), - [anon_sym_COLON_DASH] = ACTIONS(3805), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3805), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3811), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3939), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_DASH] = ACTIONS(3939), + [anon_sym_COLON_DASH] = ACTIONS(3939), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3939), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3939), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3945), }, [1701] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3807), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1702] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1709), [sym_concatenation] = STATE(1709), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3805), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3807), - [anon_sym_DASH] = ACTIONS(3805), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3805), - [anon_sym_PERCENT] = ACTIONS(3805), - [anon_sym_POUND] = ACTIONS(3809), - [anon_sym_SLASH] = ACTIONS(3813), - [anon_sym_COLON_DASH] = ACTIONS(3805), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3805), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3939), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3939), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3939), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3943), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3939), + [sym__special_character] = ACTIONS(459), }, [1703] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1713), [sym_concatenation] = STATE(1713), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3815), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3815), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3815), - [anon_sym_PERCENT] = ACTIONS(3815), - [anon_sym_POUND] = ACTIONS(3819), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_COLON_DASH] = ACTIONS(3815), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3815), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3949), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3951), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3953), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3949), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(3955), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3949), + [sym__special_character] = ACTIONS(459), }, [1704] = { [sym_command_substitution] = STATE(1714), @@ -52892,191 +54091,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1714), [sym_concatenation] = STATE(1716), [sym_expansion] = STATE(1714), - [sym_word] = ACTIONS(3823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3823), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(3823), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(3807), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3957), + [sym_word] = ACTIONS(3959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(3957), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(3943), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(3959), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1705] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1718), [sym_concatenation] = STATE(1718), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3825), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3825), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_PERCENT] = ACTIONS(3825), - [anon_sym_POUND] = ACTIONS(3829), - [anon_sym_COLON_DASH] = ACTIONS(3825), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3961), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3825), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3831), + [anon_sym_POUND] = ACTIONS(3963), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_COLON_DASH] = ACTIONS(3961), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3961), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3961), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3967), }, [1706] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1707] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(3833), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1708] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1719), [sym_concatenation] = STATE(1719), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3835), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3837), - [anon_sym_DASH] = ACTIONS(3835), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3835), - [anon_sym_PERCENT] = ACTIONS(3835), - [anon_sym_POUND] = ACTIONS(3839), - [anon_sym_COLON_DASH] = ACTIONS(3835), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3835), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3971), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3975), + [anon_sym_DASH] = ACTIONS(3971), + [anon_sym_COLON_DASH] = ACTIONS(3971), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3971), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3971), + [sym__special_character] = ACTIONS(459), }, [1709] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3837), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3975), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1710] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1719), [sym_concatenation] = STATE(1719), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3835), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3837), - [anon_sym_DASH] = ACTIONS(3835), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3835), - [anon_sym_PERCENT] = ACTIONS(3835), - [anon_sym_POUND] = ACTIONS(3839), - [anon_sym_COLON_DASH] = ACTIONS(3835), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3835), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3841), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3971), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3973), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3975), + [anon_sym_DASH] = ACTIONS(3971), + [anon_sym_COLON_DASH] = ACTIONS(3971), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3971), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3971), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3977), }, [1711] = { [sym_command_substitution] = STATE(1721), @@ -53087,697 +54292,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1721), [sym_concatenation] = STATE(1723), [sym_expansion] = STATE(1721), - [sym_word] = ACTIONS(3843), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3843), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(3843), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(3837), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3979), + [sym_word] = ACTIONS(3981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(3979), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(3975), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(3981), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1712] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1725), [sym_concatenation] = STATE(1725), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3845), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_POUND] = ACTIONS(3849), - [anon_sym_COLON_DASH] = ACTIONS(3845), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3983), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3845), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(3851), + [anon_sym_POUND] = ACTIONS(3985), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3983), + [anon_sym_COLON_DASH] = ACTIONS(3983), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3983), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3983), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3983), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3989), }, [1713] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1714] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3837), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3975), + [sym__concat] = ACTIONS(1294), }, [1715] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(3853), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(3991), + [sym_comment] = ACTIONS(41), }, [1716] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3837), + [anon_sym_RBRACE] = ACTIONS(3975), + [sym_comment] = ACTIONS(41), }, [1717] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1726), [sym_concatenation] = STATE(1726), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3855), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3855), - [anon_sym_PERCENT] = ACTIONS(3855), - [anon_sym_POUND] = ACTIONS(3859), - [anon_sym_COLON_DASH] = ACTIONS(3855), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3855), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3995), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_COLON_DASH] = ACTIONS(3993), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3993), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3993), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3993), + [sym__special_character] = ACTIONS(459), }, [1718] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1719] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1720] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1727), [sym_concatenation] = STATE(1727), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3863), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3863), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_POUND] = ACTIONS(3865), - [anon_sym_COLON_DASH] = ACTIONS(3863), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3863), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4001), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4003), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_COLON_DASH] = ACTIONS(4001), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4001), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4001), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4001), + [sym__special_character] = ACTIONS(459), }, [1721] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3861), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3999), + [sym__concat] = ACTIONS(1294), }, [1722] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(3867), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(4005), + [sym_comment] = ACTIONS(41), }, [1723] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3999), + [sym_comment] = ACTIONS(41), }, [1724] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1728), [sym_concatenation] = STATE(1728), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3869), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(3869), - [anon_sym_PERCENT] = ACTIONS(3869), - [anon_sym_POUND] = ACTIONS(3873), - [anon_sym_COLON_DASH] = ACTIONS(3869), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4007), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3869), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(4009), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_DASH] = ACTIONS(4007), + [anon_sym_COLON_DASH] = ACTIONS(4007), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4007), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4007), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4007), + [sym__special_character] = ACTIONS(459), }, [1725] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1726] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1727] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3877), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1728] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1729] = { - [sym_string] = STATE(844), - [aux_sym__simple_variable_name_token1] = ACTIONS(2590), - [sym_raw_string] = ACTIONS(3881), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_DOLLAR] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3885), - [anon_sym_DASH] = ACTIONS(3883), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3883), - [anon_sym_DQUOTE] = ACTIONS(2581), - [anon_sym__] = ACTIONS(2590), - [anon_sym_AT] = ACTIONS(3885), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_0] = ACTIONS(2590), + [sym_string] = STATE(843), + [anon_sym__] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4019), + [sym_raw_string] = ACTIONS(4021), + [anon_sym_BANG] = ACTIONS(4019), + [anon_sym_DOLLAR] = ACTIONS(4019), + [anon_sym_AT] = ACTIONS(4023), + [anon_sym_DASH] = ACTIONS(4019), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_0] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(4023), + [aux_sym__simple_variable_name_token1] = ACTIONS(2648), + [anon_sym_QMARK] = ACTIONS(4023), }, [1730] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1738), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1737), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4025), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(4027), + [anon_sym_BQUOTE] = ACTIONS(273), }, [1731] = { - [sym_command_substitution] = STATE(848), - [sym_string] = STATE(848), - [sym_process_substitution] = STATE(848), - [sym_simple_expansion] = STATE(848), - [sym_string_expansion] = STATE(848), - [sym_expansion] = STATE(848), - [sym_word] = ACTIONS(2571), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2575), - [sym_raw_string] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_LT_LPAREN] = ACTIONS(2579), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2581), - [anon_sym_BQUOTE] = ACTIONS(2583), - [anon_sym_GT_LPAREN] = ACTIONS(2579), - [sym_ansii_c_string] = ACTIONS(2571), - [sym__special_character] = ACTIONS(2571), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4029), }, [1732] = { - [anon_sym_RPAREN] = ACTIONS(3891), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(4031), + [sym_comment] = ACTIONS(41), }, [1733] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(850), + [sym_string] = STATE(850), + [sym_process_substitution] = STATE(850), + [sym_simple_expansion] = STATE(850), + [sym_string_expansion] = STATE(850), + [sym_expansion] = STATE(850), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2629), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_BQUOTE] = ACTIONS(2633), + [anon_sym_GT_LPAREN] = ACTIONS(2635), + [sym_number] = ACTIONS(2637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_word] = ACTIONS(2637), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2643), + [anon_sym_LT_LPAREN] = ACTIONS(2635), + [sym_ansii_c_string] = ACTIONS(2629), + [sym__special_character] = ACTIONS(2629), + }, + [1734] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1741), [sym_concatenation] = STATE(1741), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3893), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3895), - [anon_sym_COLON_DASH] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3897), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_RBRACE] = ACTIONS(3899), - [anon_sym_EQ] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3893), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4033), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4033), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4033), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4035), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4039), + [anon_sym_EQ] = ACTIONS(4033), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4033), }, - [1734] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1735] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1746), [sym_concatenation] = STATE(1746), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3901), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3901), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3903), - [anon_sym_COLON_DASH] = ACTIONS(3901), - [anon_sym_SLASH] = ACTIONS(3905), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3901), - [anon_sym_RBRACE] = ACTIONS(3907), - [anon_sym_EQ] = ACTIONS(3901), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3901), - }, - [1735] = { - [sym_word] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4041), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4041), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4041), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4043), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4045), + [anon_sym_RBRACE] = ACTIONS(4047), + [anon_sym_EQ] = ACTIONS(4041), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4041), }, [1736] = { - [anon_sym_RPAREN] = ACTIONS(3909), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(4049), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1737] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(3911), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), - }, - [1738] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(3913), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4049), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(4051), + [anon_sym_BQUOTE] = ACTIONS(273), + }, + [1738] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4053), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), }, [1739] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(4053), + [sym_comment] = ACTIONS(41), }, [1740] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1749), [sym_concatenation] = STATE(1749), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3917), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3919), - [anon_sym_COLON_DASH] = ACTIONS(3917), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3917), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_EQ] = ACTIONS(3917), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3917), - [sym_regex] = ACTIONS(3923), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4055), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4055), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4055), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4057), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4059), + [anon_sym_EQ] = ACTIONS(4055), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4055), + [sym_regex] = ACTIONS(4061), }, [1741] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4059), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1742] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1749), [sym_concatenation] = STATE(1749), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3917), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3919), - [anon_sym_COLON_DASH] = ACTIONS(3917), - [anon_sym_SLASH] = ACTIONS(3925), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3917), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_EQ] = ACTIONS(3917), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3917), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4055), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4055), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4055), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4057), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4063), + [anon_sym_RBRACE] = ACTIONS(4059), + [anon_sym_EQ] = ACTIONS(4055), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4055), }, [1743] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1753), [sym_concatenation] = STATE(1753), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3927), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3927), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3929), - [anon_sym_COLON_DASH] = ACTIONS(3927), - [anon_sym_SLASH] = ACTIONS(3931), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3927), - [anon_sym_RBRACE] = ACTIONS(3933), - [anon_sym_EQ] = ACTIONS(3927), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3927), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4065), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4069), + [anon_sym_RBRACE] = ACTIONS(4071), + [anon_sym_EQ] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4065), }, [1744] = { [sym_command_substitution] = STATE(1754), @@ -53788,191 +55013,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1754), [sym_concatenation] = STATE(1756), [sym_expansion] = STATE(1754), - [sym_word] = ACTIONS(3935), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3935), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(3921), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(3935), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4073), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(4059), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(4075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(4075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4073), + [sym__special_character] = ACTIONS(947), }, [1745] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1758), [sym_concatenation] = STATE(1758), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3937), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3937), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3939), - [anon_sym_COLON_DASH] = ACTIONS(3937), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3937), - [anon_sym_RBRACE] = ACTIONS(3941), - [anon_sym_EQ] = ACTIONS(3937), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3937), - [sym_regex] = ACTIONS(3943), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4077), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4077), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4079), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_EQ] = ACTIONS(4077), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4077), + [sym_regex] = ACTIONS(4083), }, [1746] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3941), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1747] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(3945), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(4085), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1748] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1759), [sym_concatenation] = STATE(1759), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3947), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3949), - [anon_sym_COLON_DASH] = ACTIONS(3947), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3947), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3947), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4087), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4087), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4089), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4091), + [anon_sym_EQ] = ACTIONS(4087), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4087), }, [1749] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4091), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1750] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1759), [sym_concatenation] = STATE(1759), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3947), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3949), - [anon_sym_COLON_DASH] = ACTIONS(3947), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3947), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3947), - [sym_regex] = ACTIONS(3953), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4087), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4087), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4089), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4091), + [anon_sym_EQ] = ACTIONS(4087), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4087), + [sym_regex] = ACTIONS(4093), }, [1751] = { [sym_command_substitution] = STATE(1761), @@ -53983,697 +55214,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1761), [sym_concatenation] = STATE(1763), [sym_expansion] = STATE(1761), - [sym_word] = ACTIONS(3955), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(3955), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(3955), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4095), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(4091), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(4097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(4097), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4095), + [sym__special_character] = ACTIONS(947), }, [1752] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1765), [sym_concatenation] = STATE(1765), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3957), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3957), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3959), - [anon_sym_COLON_DASH] = ACTIONS(3957), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3961), - [anon_sym_EQ] = ACTIONS(3957), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3957), - [sym_regex] = ACTIONS(3963), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4099), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4099), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4099), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4101), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(4099), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4099), + [sym_regex] = ACTIONS(4105), }, [1753] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3961), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1754] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(3951), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4091), + [sym__concat] = ACTIONS(1294), }, [1755] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3965), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(4107), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1756] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3951), + [anon_sym_RBRACE] = ACTIONS(4091), + [sym_comment] = ACTIONS(41), }, [1757] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1766), [sym_concatenation] = STATE(1766), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3967), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3967), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3969), - [anon_sym_COLON_DASH] = ACTIONS(3967), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3967), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_EQ] = ACTIONS(3967), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3967), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4109), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4109), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4109), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4111), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4113), + [anon_sym_EQ] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4109), }, [1758] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3971), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4113), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1759] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3973), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4115), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1760] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1767), [sym_concatenation] = STATE(1767), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3975), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3977), - [anon_sym_COLON_DASH] = ACTIONS(3975), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(3973), - [anon_sym_EQ] = ACTIONS(3975), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3975), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4117), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4117), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4117), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4119), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4115), + [anon_sym_EQ] = ACTIONS(4117), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4117), }, [1761] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(3973), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4115), + [sym__concat] = ACTIONS(1294), }, [1762] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3979), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(4121), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1763] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(3973), + [anon_sym_RBRACE] = ACTIONS(4115), + [sym_comment] = ACTIONS(41), }, [1764] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1768), [sym_concatenation] = STATE(1768), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(3981), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(3981), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3983), - [anon_sym_COLON_DASH] = ACTIONS(3981), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(3981), - [anon_sym_RBRACE] = ACTIONS(3985), - [anon_sym_EQ] = ACTIONS(3981), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(3981), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4123), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4123), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4125), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4123), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4123), }, [1765] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3985), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1766] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3987), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1767] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1768] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(3991), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4133), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1769] = { - [sym_string] = STATE(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(2618), - [sym_raw_string] = ACTIONS(3993), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_QMARK] = ACTIONS(3997), - [anon_sym_DASH] = ACTIONS(3995), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3995), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym__] = ACTIONS(2618), - [anon_sym_AT] = ACTIONS(3997), - [anon_sym_STAR] = ACTIONS(3997), - [anon_sym_0] = ACTIONS(2618), + [sym_string] = STATE(875), + [anon_sym__] = ACTIONS(2678), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4135), + [sym_raw_string] = ACTIONS(4137), + [anon_sym_BANG] = ACTIONS(4135), + [anon_sym_DOLLAR] = ACTIONS(4135), + [anon_sym_AT] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4135), + [anon_sym_DQUOTE] = ACTIONS(2671), + [anon_sym_0] = ACTIONS(2678), + [anon_sym_STAR] = ACTIONS(4139), + [aux_sym__simple_variable_name_token1] = ACTIONS(2678), + [anon_sym_QMARK] = ACTIONS(4139), }, [1770] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1778), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(3999), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(4001), - [sym_comment] = ACTIONS(3), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1777), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4141), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(4143), + [anon_sym_BQUOTE] = ACTIONS(273), }, [1771] = { - [sym_command_substitution] = STATE(880), - [sym_string] = STATE(880), - [sym_process_substitution] = STATE(880), - [sym_simple_expansion] = STATE(880), - [sym_string_expansion] = STATE(880), - [sym_expansion] = STATE(880), - [sym_word] = ACTIONS(2599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2603), - [sym_raw_string] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_LT_LPAREN] = ACTIONS(2607), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_BQUOTE] = ACTIONS(2611), - [anon_sym_GT_LPAREN] = ACTIONS(2607), - [sym_ansii_c_string] = ACTIONS(2599), - [sym__special_character] = ACTIONS(2599), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4145), }, [1772] = { - [anon_sym_RPAREN] = ACTIONS(4003), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(4147), + [sym_comment] = ACTIONS(41), }, [1773] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(882), + [sym_string] = STATE(882), + [sym_process_substitution] = STATE(882), + [sym_simple_expansion] = STATE(882), + [sym_string_expansion] = STATE(882), + [sym_expansion] = STATE(882), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_BQUOTE] = ACTIONS(2663), + [anon_sym_GT_LPAREN] = ACTIONS(2665), + [sym_number] = ACTIONS(2667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_word] = ACTIONS(2667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2673), + [anon_sym_LT_LPAREN] = ACTIONS(2665), + [sym_ansii_c_string] = ACTIONS(2659), + [sym__special_character] = ACTIONS(2659), + }, + [1774] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1781), [sym_concatenation] = STATE(1781), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4005), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4007), - [anon_sym_COLON_DASH] = ACTIONS(4005), - [anon_sym_SLASH] = ACTIONS(4009), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4005), - [anon_sym_RBRACE] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4005), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4149), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4149), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4149), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4151), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4153), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_EQ] = ACTIONS(4149), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4149), }, - [1774] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1775] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1786), [sym_concatenation] = STATE(1786), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4013), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4015), - [anon_sym_COLON_DASH] = ACTIONS(4013), - [anon_sym_SLASH] = ACTIONS(4017), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4013), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4013), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4013), - }, - [1775] = { - [sym_word] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4157), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4157), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4157), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4159), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4163), + [anon_sym_EQ] = ACTIONS(4157), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4157), }, [1776] = { - [anon_sym_RPAREN] = ACTIONS(4021), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(4165), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1777] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(4023), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), - }, - [1778] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(4025), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4165), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_BQUOTE] = ACTIONS(273), + }, + [1778] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4169), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), }, [1779] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(4027), + [anon_sym_RPAREN] = ACTIONS(4169), + [sym_comment] = ACTIONS(41), }, [1780] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1789), [sym_concatenation] = STATE(1789), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4029), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4031), - [anon_sym_COLON_DASH] = ACTIONS(4029), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4029), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_EQ] = ACTIONS(4029), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4029), - [sym_regex] = ACTIONS(4035), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4171), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4171), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4173), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4171), + [sym_regex] = ACTIONS(4177), }, [1781] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1782] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1789), [sym_concatenation] = STATE(1789), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4029), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4031), - [anon_sym_COLON_DASH] = ACTIONS(4029), - [anon_sym_SLASH] = ACTIONS(4037), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4029), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_EQ] = ACTIONS(4029), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4029), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4171), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4171), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4173), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4171), }, [1783] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1793), [sym_concatenation] = STATE(1793), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4039), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4039), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4041), - [anon_sym_COLON_DASH] = ACTIONS(4039), - [anon_sym_SLASH] = ACTIONS(4043), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4039), - [anon_sym_RBRACE] = ACTIONS(4045), - [anon_sym_EQ] = ACTIONS(4039), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4039), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4181), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4181), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4181), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4183), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4181), }, [1784] = { [sym_command_substitution] = STATE(1794), @@ -54684,191 +55935,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1794), [sym_concatenation] = STATE(1796), [sym_expansion] = STATE(1794), - [sym_word] = ACTIONS(4047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4047), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(4047), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4189), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(4191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(4191), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4189), + [sym__special_character] = ACTIONS(947), }, [1785] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1798), [sym_concatenation] = STATE(1798), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4049), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4049), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4051), - [anon_sym_COLON_DASH] = ACTIONS(4049), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4053), - [anon_sym_EQ] = ACTIONS(4049), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4049), - [sym_regex] = ACTIONS(4055), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4193), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4193), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4193), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4195), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4193), + [sym_regex] = ACTIONS(4199), }, [1786] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4053), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1787] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(4057), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1788] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1799), [sym_concatenation] = STATE(1799), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4059), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4059), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4061), - [anon_sym_COLON_DASH] = ACTIONS(4059), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4059), - [anon_sym_RBRACE] = ACTIONS(4063), - [anon_sym_EQ] = ACTIONS(4059), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4059), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4203), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4203), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4205), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4207), + [anon_sym_EQ] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4203), }, [1789] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4063), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4207), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1790] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1799), [sym_concatenation] = STATE(1799), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4059), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4059), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4061), - [anon_sym_COLON_DASH] = ACTIONS(4059), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4059), - [anon_sym_RBRACE] = ACTIONS(4063), - [anon_sym_EQ] = ACTIONS(4059), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4059), - [sym_regex] = ACTIONS(4065), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4203), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4203), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4205), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4207), + [anon_sym_EQ] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4203), + [sym_regex] = ACTIONS(4209), }, [1791] = { [sym_command_substitution] = STATE(1801), @@ -54879,697 +56136,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1801), [sym_concatenation] = STATE(1803), [sym_expansion] = STATE(1801), - [sym_word] = ACTIONS(4067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4067), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(4063), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(4067), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(4207), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(4213), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(4213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4211), + [sym__special_character] = ACTIONS(947), }, [1792] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1805), [sym_concatenation] = STATE(1805), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4069), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4069), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4071), - [anon_sym_COLON_DASH] = ACTIONS(4069), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4069), - [anon_sym_RBRACE] = ACTIONS(4073), - [anon_sym_EQ] = ACTIONS(4069), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4069), - [sym_regex] = ACTIONS(4075), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4215), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4215), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4217), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4215), + [sym_regex] = ACTIONS(4221), }, [1793] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4073), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1794] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(4063), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4207), + [sym__concat] = ACTIONS(1294), }, [1795] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4077), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(4223), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1796] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4063), + [anon_sym_RBRACE] = ACTIONS(4207), + [sym_comment] = ACTIONS(41), }, [1797] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1806), [sym_concatenation] = STATE(1806), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4079), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4079), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4081), - [anon_sym_COLON_DASH] = ACTIONS(4079), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4079), - [anon_sym_RBRACE] = ACTIONS(4083), - [anon_sym_EQ] = ACTIONS(4079), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4079), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4225), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4225), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4227), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(4225), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4225), }, [1798] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4083), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1799] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1800] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1807), [sym_concatenation] = STATE(1807), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4087), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4087), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4233), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4233), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4089), - [anon_sym_COLON_DASH] = ACTIONS(4087), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4087), - [anon_sym_RBRACE] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4087), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4087), + [anon_sym_POUND] = ACTIONS(4235), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4233), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4233), }, [1801] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(4085), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4231), + [sym__concat] = ACTIONS(1294), }, [1802] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4091), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(4237), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1803] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4231), + [sym_comment] = ACTIONS(41), }, [1804] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1808), [sym_concatenation] = STATE(1808), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4093), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4093), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4095), - [anon_sym_COLON_DASH] = ACTIONS(4093), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4093), - [anon_sym_RBRACE] = ACTIONS(4097), - [anon_sym_EQ] = ACTIONS(4093), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4093), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4239), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4239), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4241), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4239), }, [1805] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4097), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1806] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4099), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4245), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1807] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1808] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1809] = { - [sym_string] = STATE(908), - [anon_sym_DQUOTE] = ACTIONS(513), - [aux_sym__simple_variable_name_token1] = ACTIONS(2634), - [anon_sym_AT] = ACTIONS(4105), - [anon_sym__] = ACTIONS(2634), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(4105), - [anon_sym_DOLLAR] = ACTIONS(2640), - [anon_sym_QMARK] = ACTIONS(4105), - [anon_sym_DASH] = ACTIONS(2640), - [sym_raw_string] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2640), - [anon_sym_0] = ACTIONS(2634), + [sym_string] = STATE(907), + [anon_sym__] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_0] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2700), + [aux_sym__simple_variable_name_token1] = ACTIONS(2698), + [anon_sym_DOLLAR] = ACTIONS(2700), + [anon_sym_AT] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(2700), + [sym_raw_string] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4251), }, [1810] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1818), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4109), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1817), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [1811] = { - [sym_command_substitution] = STATE(912), - [sym_simple_expansion] = STATE(912), - [sym_string_expansion] = STATE(912), - [sym_string] = STATE(912), - [sym_process_substitution] = STATE(912), - [sym_expansion] = STATE(912), - [sym_word] = ACTIONS(2627), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(2627), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(2627), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [sym__special_character] = ACTIONS(2627), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4257), }, [1812] = { - [anon_sym_RPAREN] = ACTIONS(4111), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym_comment] = ACTIONS(41), }, [1813] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(914), + [sym_simple_expansion] = STATE(914), + [sym_string_expansion] = STATE(914), + [sym_string] = STATE(914), + [sym_process_substitution] = STATE(914), + [sym_expansion] = STATE(914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(453), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2689), + [sym_word] = ACTIONS(2691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(2689), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym__special_character] = ACTIONS(2689), + [sym_number] = ACTIONS(2691), + }, + [1814] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1821), [sym_concatenation] = STATE(1821), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4113), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4113), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4115), - [anon_sym_COLON_DASH] = ACTIONS(4113), - [anon_sym_SLASH] = ACTIONS(4117), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4113), - [anon_sym_RBRACE] = ACTIONS(4119), - [anon_sym_EQ] = ACTIONS(4113), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4113), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4261), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4261), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4263), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4261), }, - [1814] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1815] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1826), [sym_concatenation] = STATE(1826), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4121), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4121), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4123), - [anon_sym_COLON_DASH] = ACTIONS(4121), - [anon_sym_SLASH] = ACTIONS(4125), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4121), - }, - [1815] = { - [sym_word] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(4129), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4269), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4269), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4271), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4269), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4269), }, [1816] = { - [anon_sym_RPAREN] = ACTIONS(4129), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(4277), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1817] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4131), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [1818] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4131), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [1818] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), }, [1819] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(4135), + [anon_sym_RPAREN] = ACTIONS(4281), + [sym_comment] = ACTIONS(41), }, [1820] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1829), [sym_concatenation] = STATE(1829), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4137), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4137), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4139), - [anon_sym_COLON_DASH] = ACTIONS(4137), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4137), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_EQ] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4137), - [sym_regex] = ACTIONS(4143), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4283), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4283), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4285), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4283), + [sym_regex] = ACTIONS(4289), }, [1821] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1822] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1829), [sym_concatenation] = STATE(1829), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4137), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4137), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4139), - [anon_sym_COLON_DASH] = ACTIONS(4137), - [anon_sym_SLASH] = ACTIONS(4145), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4137), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_EQ] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4137), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4283), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4283), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4285), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4291), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4283), }, [1823] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1833), [sym_concatenation] = STATE(1833), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4147), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4149), - [anon_sym_COLON_DASH] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4151), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4147), - [anon_sym_RBRACE] = ACTIONS(4153), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4147), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4293), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4293), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4295), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4293), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4293), }, [1824] = { [sym_command_substitution] = STATE(1834), @@ -55580,191 +56857,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1834), [sym_concatenation] = STATE(1836), [sym_expansion] = STATE(1834), - [sym_word] = ACTIONS(4155), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4155), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(4155), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(4303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(4303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4301), + [sym__special_character] = ACTIONS(947), }, [1825] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1838), [sym_concatenation] = STATE(1838), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4157), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4157), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4159), - [anon_sym_COLON_DASH] = ACTIONS(4157), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4157), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4157), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4157), - [sym_regex] = ACTIONS(4163), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4305), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4305), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4307), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_EQ] = ACTIONS(4305), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4305), + [sym_regex] = ACTIONS(4311), }, [1826] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1827] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4165), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(4313), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1828] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1839), [sym_concatenation] = STATE(1839), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4167), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4167), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4169), - [anon_sym_COLON_DASH] = ACTIONS(4167), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4167), - [anon_sym_RBRACE] = ACTIONS(4171), - [anon_sym_EQ] = ACTIONS(4167), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4167), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4315), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4315), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4315), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4315), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4317), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_EQ] = ACTIONS(4315), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4315), }, [1829] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4171), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1830] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1839), [sym_concatenation] = STATE(1839), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4167), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4167), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4169), - [anon_sym_COLON_DASH] = ACTIONS(4167), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4167), - [anon_sym_RBRACE] = ACTIONS(4171), - [anon_sym_EQ] = ACTIONS(4167), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4167), - [sym_regex] = ACTIONS(4173), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4315), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4315), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4315), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4315), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4317), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_EQ] = ACTIONS(4315), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4315), + [sym_regex] = ACTIONS(4321), }, [1831] = { [sym_command_substitution] = STATE(1841), @@ -55775,697 +57058,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1841), [sym_concatenation] = STATE(1843), [sym_expansion] = STATE(1841), - [sym_word] = ACTIONS(4175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4175), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(4171), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(4175), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4323), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(4325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(4325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4323), + [sym__special_character] = ACTIONS(947), }, [1832] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1845), [sym_concatenation] = STATE(1845), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4177), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4177), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4179), - [anon_sym_COLON_DASH] = ACTIONS(4177), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4177), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4177), - [sym_regex] = ACTIONS(4183), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4327), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4329), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4327), + [sym_regex] = ACTIONS(4333), }, [1833] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1834] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(4171), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4319), + [sym__concat] = ACTIONS(1294), }, [1835] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4185), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(4335), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1836] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4171), + [anon_sym_RBRACE] = ACTIONS(4319), + [sym_comment] = ACTIONS(41), }, [1837] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1846), [sym_concatenation] = STATE(1846), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4187), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4189), - [anon_sym_COLON_DASH] = ACTIONS(4187), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_EQ] = ACTIONS(4187), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4187), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4337), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4337), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4337), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4339), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4337), }, [1838] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1839] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4193), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1840] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1847), [sym_concatenation] = STATE(1847), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4195), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4195), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4197), - [anon_sym_COLON_DASH] = ACTIONS(4195), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4195), - [anon_sym_RBRACE] = ACTIONS(4193), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4195), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4345), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4345), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4347), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4345), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4345), }, [1841] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(4193), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4343), + [sym__concat] = ACTIONS(1294), }, [1842] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4199), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(4349), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [1843] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4193), + [anon_sym_RBRACE] = ACTIONS(4343), + [sym_comment] = ACTIONS(41), }, [1844] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1848), [sym_concatenation] = STATE(1848), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4201), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4203), - [anon_sym_COLON_DASH] = ACTIONS(4201), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4201), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_EQ] = ACTIONS(4201), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4201), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4351), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4351), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4351), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4353), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4351), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4351), }, [1845] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1846] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4207), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1847] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1848] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4211), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [1849] = { - [sym_string] = STATE(940), - [anon_sym_DQUOTE] = ACTIONS(547), - [aux_sym__simple_variable_name_token1] = ACTIONS(2654), - [anon_sym_AT] = ACTIONS(4213), - [anon_sym__] = ACTIONS(2654), - [anon_sym_BANG] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4213), - [anon_sym_DOLLAR] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4213), - [anon_sym_DASH] = ACTIONS(4215), - [sym_raw_string] = ACTIONS(4217), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4215), - [anon_sym_0] = ACTIONS(2654), + [sym_string] = STATE(939), + [anon_sym__] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_POUND] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4365), + [anon_sym_0] = ACTIONS(2720), + [anon_sym_BANG] = ACTIONS(4363), + [aux_sym__simple_variable_name_token1] = ACTIONS(2720), + [anon_sym_DOLLAR] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_DASH] = ACTIONS(4363), + [sym_raw_string] = ACTIONS(4367), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4365), }, [1850] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1858), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1857), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4371), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [1851] = { - [sym_command_substitution] = STATE(944), - [sym_simple_expansion] = STATE(944), - [sym_string_expansion] = STATE(944), - [sym_string] = STATE(944), - [sym_process_substitution] = STATE(944), - [sym_expansion] = STATE(944), - [sym_word] = ACTIONS(2647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(551), - [anon_sym_DQUOTE] = ACTIONS(547), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(549), - [sym_raw_string] = ACTIONS(2647), - [anon_sym_BQUOTE] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(555), - [anon_sym_GT_LPAREN] = ACTIONS(557), - [sym_ansii_c_string] = ACTIONS(2647), - [anon_sym_LT_LPAREN] = ACTIONS(557), - [sym__special_character] = ACTIONS(2647), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4373), }, [1852] = { - [anon_sym_RPAREN] = ACTIONS(4223), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(4375), + [sym_comment] = ACTIONS(41), }, [1853] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(946), + [sym_simple_expansion] = STATE(946), + [sym_string_expansion] = STATE(946), + [sym_string] = STATE(946), + [sym_process_substitution] = STATE(946), + [sym_expansion] = STATE(946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2711), + [sym_word] = ACTIONS(2713), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), + [anon_sym_DOLLAR] = ACTIONS(559), + [anon_sym_LT_LPAREN] = ACTIONS(563), + [sym_ansii_c_string] = ACTIONS(2711), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_GT_LPAREN] = ACTIONS(563), + [sym__special_character] = ACTIONS(2711), + [sym_number] = ACTIONS(2713), + }, + [1854] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1861), [sym_concatenation] = STATE(1861), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4225), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_DASH] = ACTIONS(4225), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_POUND] = ACTIONS(4229), - [anon_sym_SLASH] = ACTIONS(4231), - [anon_sym_COLON_DASH] = ACTIONS(4225), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4225), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4377), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4379), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4381), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4377), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4377), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4377), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4383), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4377), + [sym__special_character] = ACTIONS(459), }, - [1854] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1855] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1866), [sym_concatenation] = STATE(1866), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4233), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4235), - [anon_sym_DASH] = ACTIONS(4233), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4233), - [anon_sym_PERCENT] = ACTIONS(4233), - [anon_sym_POUND] = ACTIONS(4237), - [anon_sym_SLASH] = ACTIONS(4239), - [anon_sym_COLON_DASH] = ACTIONS(4233), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4233), - [sym__special_character] = ACTIONS(517), - }, - [1855] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(4241), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4385), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4387), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(4385), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4391), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4385), + [sym__special_character] = ACTIONS(459), }, [1856] = { - [anon_sym_RPAREN] = ACTIONS(4241), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(4393), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1857] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4243), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [1858] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4245), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4243), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4395), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [1858] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [1859] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym_comment] = ACTIONS(41), }, [1860] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1869), [sym_concatenation] = STATE(1869), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4251), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4253), - [anon_sym_COLON_DASH] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4249), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4255), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4399), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4401), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_COLON_DASH] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4399), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4399), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4399), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4405), }, [1861] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4251), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1862] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1869), [sym_concatenation] = STATE(1869), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4251), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4253), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON_DASH] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4249), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4399), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4401), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4399), + [anon_sym_EQ] = ACTIONS(4399), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4403), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4399), + [sym__special_character] = ACTIONS(459), }, [1863] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1873), [sym_concatenation] = STATE(1873), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4259), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4259), - [anon_sym_PERCENT] = ACTIONS(4259), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_SLASH] = ACTIONS(4265), - [anon_sym_COLON_DASH] = ACTIONS(4259), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4259), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4409), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4411), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(4409), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4409), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4415), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4409), + [sym__special_character] = ACTIONS(459), }, [1864] = { [sym_command_substitution] = STATE(1874), @@ -56476,191 +57779,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1874), [sym_concatenation] = STATE(1876), [sym_expansion] = STATE(1874), - [sym_word] = ACTIONS(4267), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4267), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(4267), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(4251), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4417), + [sym_word] = ACTIONS(4419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(4417), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(4403), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(4419), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1865] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1878), [sym_concatenation] = STATE(1878), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4269), - [anon_sym_PERCENT] = ACTIONS(4269), - [anon_sym_POUND] = ACTIONS(4273), - [anon_sym_COLON_DASH] = ACTIONS(4269), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4269), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4275), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4421), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4423), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_COLON_DASH] = ACTIONS(4421), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4421), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4421), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4421), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4427), }, [1866] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1867] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(4429), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1868] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1879), [sym_concatenation] = STATE(1879), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_POUND] = ACTIONS(4283), - [anon_sym_COLON_DASH] = ACTIONS(4279), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4279), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4431), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4433), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4431), + [anon_sym_COLON_DASH] = ACTIONS(4431), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4431), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4431), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4431), + [sym__special_character] = ACTIONS(459), }, [1869] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1870] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1879), [sym_concatenation] = STATE(1879), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4279), - [anon_sym_PERCENT] = ACTIONS(4279), - [anon_sym_POUND] = ACTIONS(4283), - [anon_sym_COLON_DASH] = ACTIONS(4279), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4279), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4285), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4431), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4433), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4431), + [anon_sym_COLON_DASH] = ACTIONS(4431), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4431), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4431), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4431), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4437), }, [1871] = { [sym_command_substitution] = STATE(1881), @@ -56671,697 +57980,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1881), [sym_concatenation] = STATE(1883), [sym_expansion] = STATE(1881), - [sym_word] = ACTIONS(4287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4287), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(4287), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(4281), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4439), + [sym_word] = ACTIONS(4441), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(4439), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(4435), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(4441), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1872] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1885), [sym_concatenation] = STATE(1885), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4289), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4293), - [anon_sym_COLON_DASH] = ACTIONS(4289), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4289), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4295), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4443), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4445), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_COLON_DASH] = ACTIONS(4443), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4443), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4443), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4449), }, [1873] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1874] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4281), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4435), + [sym__concat] = ACTIONS(1294), }, [1875] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(4297), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(4451), + [sym_comment] = ACTIONS(41), }, [1876] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4435), + [sym_comment] = ACTIONS(41), }, [1877] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1886), [sym_concatenation] = STATE(1886), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4299), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_POUND] = ACTIONS(4303), - [anon_sym_COLON_DASH] = ACTIONS(4299), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4299), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4453), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4455), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4453), + [anon_sym_COLON_DASH] = ACTIONS(4453), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4453), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4453), + [sym__special_character] = ACTIONS(459), }, [1878] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1879] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4459), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1880] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1887), [sym_concatenation] = STATE(1887), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4307), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4307), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4307), - [anon_sym_PERCENT] = ACTIONS(4307), - [anon_sym_POUND] = ACTIONS(4309), - [anon_sym_COLON_DASH] = ACTIONS(4307), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4307), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4461), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4463), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4459), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_COLON_DASH] = ACTIONS(4461), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4461), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4461), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4461), + [sym__special_character] = ACTIONS(459), }, [1881] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4305), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4459), + [sym__concat] = ACTIONS(1294), }, [1882] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(4311), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(4465), + [sym_comment] = ACTIONS(41), }, [1883] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4459), + [sym_comment] = ACTIONS(41), }, [1884] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1888), [sym_concatenation] = STATE(1888), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4313), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4313), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4313), - [anon_sym_PERCENT] = ACTIONS(4313), - [anon_sym_POUND] = ACTIONS(4317), - [anon_sym_COLON_DASH] = ACTIONS(4313), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4313), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4467), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4469), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4467), + [anon_sym_COLON_DASH] = ACTIONS(4467), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4467), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4467), + [sym__special_character] = ACTIONS(459), }, [1885] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1886] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4473), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1887] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1888] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1889] = { - [sym_string] = STATE(972), - [anon_sym_DQUOTE] = ACTIONS(2248), - [aux_sym__simple_variable_name_token1] = ACTIONS(2688), - [anon_sym_AT] = ACTIONS(4325), - [anon_sym__] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_DOLLAR] = ACTIONS(4327), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4327), - [sym_raw_string] = ACTIONS(4329), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4327), - [anon_sym_0] = ACTIONS(2688), + [sym_string] = STATE(971), + [anon_sym__] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_POUND] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4481), + [anon_sym_0] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__simple_variable_name_token1] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_AT] = ACTIONS(4481), + [anon_sym_DASH] = ACTIONS(4479), + [sym_raw_string] = ACTIONS(4483), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4481), }, [1890] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1898), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1897), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4485), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4487), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [1891] = { - [sym_command_substitution] = STATE(976), - [sym_simple_expansion] = STATE(976), - [sym_string_expansion] = STATE(976), - [sym_string] = STATE(976), - [sym_process_substitution] = STATE(976), - [sym_expansion] = STATE(976), - [sym_word] = ACTIONS(2667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), - [sym_raw_string] = ACTIONS(2667), - [anon_sym_BQUOTE] = ACTIONS(2252), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_GT_LPAREN] = ACTIONS(2246), - [sym_ansii_c_string] = ACTIONS(2667), - [anon_sym_LT_LPAREN] = ACTIONS(2246), - [sym__special_character] = ACTIONS(2667), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4489), }, [1892] = { - [anon_sym_RPAREN] = ACTIONS(4335), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(4491), + [sym_comment] = ACTIONS(41), }, [1893] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(978), + [sym_simple_expansion] = STATE(978), + [sym_string_expansion] = STATE(978), + [sym_string] = STATE(978), + [sym_process_substitution] = STATE(978), + [sym_expansion] = STATE(978), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2733), + [sym_word] = ACTIONS(2735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2298), + [anon_sym_DOLLAR] = ACTIONS(615), + [anon_sym_LT_LPAREN] = ACTIONS(2292), + [sym_ansii_c_string] = ACTIONS(2733), + [anon_sym_BQUOTE] = ACTIONS(2290), + [anon_sym_GT_LPAREN] = ACTIONS(2292), + [sym__special_character] = ACTIONS(2733), + [sym_number] = ACTIONS(2735), + }, + [1894] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1901), [sym_concatenation] = STATE(1901), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4337), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4337), - [anon_sym_PERCENT] = ACTIONS(4337), - [anon_sym_POUND] = ACTIONS(4341), - [anon_sym_SLASH] = ACTIONS(4343), - [anon_sym_COLON_DASH] = ACTIONS(4337), - [anon_sym_DQUOTE] = ACTIONS(513), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4493), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4337), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(4495), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4493), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4499), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4493), + [sym__special_character] = ACTIONS(459), }, - [1894] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1895] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1906), [sym_concatenation] = STATE(1906), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4345), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4345), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4345), - [anon_sym_PERCENT] = ACTIONS(4345), - [anon_sym_POUND] = ACTIONS(4349), - [anon_sym_SLASH] = ACTIONS(4351), - [anon_sym_COLON_DASH] = ACTIONS(4345), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4345), - [sym__special_character] = ACTIONS(517), - }, - [1895] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4501), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4503), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4501), + [anon_sym_EQ] = ACTIONS(4501), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4501), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4507), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4501), + [sym__special_character] = ACTIONS(459), }, [1896] = { - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(4509), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1897] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [1898] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [1898] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4513), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [1899] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(4359), + [anon_sym_RPAREN] = ACTIONS(4513), + [sym_comment] = ACTIONS(41), }, [1900] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1909), [sym_concatenation] = STATE(1909), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4361), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(4361), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4361), - [anon_sym_PERCENT] = ACTIONS(4361), - [anon_sym_POUND] = ACTIONS(4365), - [anon_sym_COLON_DASH] = ACTIONS(4361), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4361), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4367), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4515), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4517), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_COLON_DASH] = ACTIONS(4515), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4515), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4515), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4521), }, [1901] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1902] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1909), [sym_concatenation] = STATE(1909), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4361), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(4361), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4361), - [anon_sym_PERCENT] = ACTIONS(4361), - [anon_sym_POUND] = ACTIONS(4365), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_COLON_DASH] = ACTIONS(4361), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4361), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4515), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4517), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4519), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4515), + [sym__special_character] = ACTIONS(459), }, [1903] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1913), [sym_concatenation] = STATE(1913), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4371), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4371), - [anon_sym_PERCENT] = ACTIONS(4371), - [anon_sym_POUND] = ACTIONS(4375), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_COLON_DASH] = ACTIONS(4371), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4371), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4525), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4527), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4531), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4525), + [sym__special_character] = ACTIONS(459), }, [1904] = { [sym_command_substitution] = STATE(1914), @@ -57372,191 +58701,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1914), [sym_concatenation] = STATE(1916), [sym_expansion] = STATE(1914), - [sym_word] = ACTIONS(4379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4379), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(4379), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(4363), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4533), + [sym_word] = ACTIONS(4535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(4533), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(4519), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(4535), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1905] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1918), [sym_concatenation] = STATE(1918), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4381), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4381), - [anon_sym_PERCENT] = ACTIONS(4381), - [anon_sym_POUND] = ACTIONS(4385), - [anon_sym_COLON_DASH] = ACTIONS(4381), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4381), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4387), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4537), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4539), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4537), + [anon_sym_COLON_DASH] = ACTIONS(4537), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4537), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4537), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4537), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4543), }, [1906] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1907] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4389), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(4545), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1908] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1919), [sym_concatenation] = STATE(1919), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4391), - [anon_sym_PERCENT] = ACTIONS(4391), - [anon_sym_POUND] = ACTIONS(4395), - [anon_sym_COLON_DASH] = ACTIONS(4391), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4391), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4547), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4549), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_COLON_DASH] = ACTIONS(4547), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4547), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4547), + [sym__special_character] = ACTIONS(459), }, [1909] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1910] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1919), [sym_concatenation] = STATE(1919), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4391), - [anon_sym_PERCENT] = ACTIONS(4391), - [anon_sym_POUND] = ACTIONS(4395), - [anon_sym_COLON_DASH] = ACTIONS(4391), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4391), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4397), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4547), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4549), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_COLON_DASH] = ACTIONS(4547), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4547), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4547), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4553), }, [1911] = { [sym_command_substitution] = STATE(1921), @@ -57567,697 +58902,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1921), [sym_concatenation] = STATE(1923), [sym_expansion] = STATE(1921), - [sym_word] = ACTIONS(4399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4399), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(4399), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(4393), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4555), + [sym_word] = ACTIONS(4557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(4555), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(4551), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(4557), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1912] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1925), [sym_concatenation] = STATE(1925), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4401), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4401), - [anon_sym_PERCENT] = ACTIONS(4401), - [anon_sym_POUND] = ACTIONS(4405), - [anon_sym_COLON_DASH] = ACTIONS(4401), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4401), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4407), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4559), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4561), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_COLON_DASH] = ACTIONS(4559), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4559), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4559), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4565), }, [1913] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1914] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4393), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4551), + [sym__concat] = ACTIONS(1294), }, [1915] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(4409), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(4567), + [sym_comment] = ACTIONS(41), }, [1916] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4393), + [anon_sym_RBRACE] = ACTIONS(4551), + [sym_comment] = ACTIONS(41), }, [1917] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1926), [sym_concatenation] = STATE(1926), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4411), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4411), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4411), - [anon_sym_PERCENT] = ACTIONS(4411), - [anon_sym_POUND] = ACTIONS(4415), - [anon_sym_COLON_DASH] = ACTIONS(4411), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4411), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4569), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4571), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_COLON_DASH] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4569), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4569), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4569), + [sym__special_character] = ACTIONS(459), }, [1918] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1919] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1920] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1927), [sym_concatenation] = STATE(1927), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_POUND] = ACTIONS(4421), - [anon_sym_COLON_DASH] = ACTIONS(4419), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4577), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4579), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_COLON_DASH] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4577), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4577), + [sym__special_character] = ACTIONS(459), }, [1921] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4417), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4575), + [sym__concat] = ACTIONS(1294), }, [1922] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(4423), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(4581), + [sym_comment] = ACTIONS(41), }, [1923] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4417), + [anon_sym_RBRACE] = ACTIONS(4575), + [sym_comment] = ACTIONS(41), }, [1924] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1928), [sym_concatenation] = STATE(1928), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4425), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4425), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4425), - [anon_sym_PERCENT] = ACTIONS(4425), - [anon_sym_POUND] = ACTIONS(4429), - [anon_sym_COLON_DASH] = ACTIONS(4425), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4425), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4583), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4585), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_COLON_DASH] = ACTIONS(4583), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4583), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4583), + [sym__special_character] = ACTIONS(459), }, [1925] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1926] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1927] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1928] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1929] = { - [sym_string] = STATE(1004), - [anon_sym_DQUOTE] = ACTIONS(652), - [aux_sym__simple_variable_name_token1] = ACTIONS(2714), - [anon_sym_AT] = ACTIONS(4437), - [anon_sym__] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(4439), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_DOLLAR] = ACTIONS(4439), - [anon_sym_QMARK] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4439), - [sym_raw_string] = ACTIONS(4441), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4439), - [anon_sym_0] = ACTIONS(2714), + [sym_string] = STATE(1003), + [anon_sym__] = ACTIONS(2786), + [anon_sym_DQUOTE] = ACTIONS(666), + [anon_sym_POUND] = ACTIONS(4595), + [anon_sym_STAR] = ACTIONS(4597), + [anon_sym_0] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__simple_variable_name_token1] = ACTIONS(2786), + [anon_sym_DOLLAR] = ACTIONS(4595), + [anon_sym_AT] = ACTIONS(4597), + [anon_sym_DASH] = ACTIONS(4595), + [sym_raw_string] = ACTIONS(4599), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4597), }, [1930] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1938), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4443), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1937), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4603), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [1931] = { - [sym_command_substitution] = STATE(1008), - [sym_simple_expansion] = STATE(1008), - [sym_string_expansion] = STATE(1008), - [sym_string] = STATE(1008), - [sym_process_substitution] = STATE(1008), - [sym_expansion] = STATE(1008), - [sym_word] = ACTIONS(2679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [sym_raw_string] = ACTIONS(2679), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_DOLLAR] = ACTIONS(658), - [anon_sym_GT_LPAREN] = ACTIONS(660), - [sym_ansii_c_string] = ACTIONS(2679), - [anon_sym_LT_LPAREN] = ACTIONS(660), - [sym__special_character] = ACTIONS(2679), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4605), }, [1932] = { - [anon_sym_RPAREN] = ACTIONS(4447), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(4607), + [sym_comment] = ACTIONS(41), }, [1933] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_string_expansion] = STATE(1010), + [sym_string] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [sym_expansion] = STATE(1010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2747), + [sym_word] = ACTIONS(2749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(674), + [anon_sym_LT_LPAREN] = ACTIONS(676), + [sym_ansii_c_string] = ACTIONS(2747), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_GT_LPAREN] = ACTIONS(676), + [sym__special_character] = ACTIONS(2747), + [sym_number] = ACTIONS(2749), + }, + [1934] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1941), [sym_concatenation] = STATE(1941), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4449), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4449), - [anon_sym_PERCENT] = ACTIONS(4449), - [anon_sym_POUND] = ACTIONS(4453), - [anon_sym_SLASH] = ACTIONS(4455), - [anon_sym_COLON_DASH] = ACTIONS(4449), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4449), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4609), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4611), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4613), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4609), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4609), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4615), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4609), + [sym__special_character] = ACTIONS(459), }, - [1934] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1935] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1946), [sym_concatenation] = STATE(1946), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_POUND] = ACTIONS(4461), - [anon_sym_SLASH] = ACTIONS(4463), - [anon_sym_COLON_DASH] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4457), - [sym__special_character] = ACTIONS(517), - }, - [1935] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(4465), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4617), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4619), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4621), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4617), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4617), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4623), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4617), + [sym__special_character] = ACTIONS(459), }, [1936] = { - [anon_sym_RPAREN] = ACTIONS(4465), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1937] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [1938] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4469), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4467), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [1938] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4629), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [1939] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(4471), + [anon_sym_RPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(41), }, [1940] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1949), [sym_concatenation] = STATE(1949), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4473), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_PERCENT] = ACTIONS(4473), - [anon_sym_POUND] = ACTIONS(4477), - [anon_sym_COLON_DASH] = ACTIONS(4473), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4473), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4479), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4631), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4633), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4631), + [anon_sym_COLON_DASH] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4631), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4631), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4637), }, [1941] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1942] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1949), [sym_concatenation] = STATE(1949), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4473), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4473), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_PERCENT] = ACTIONS(4473), - [anon_sym_POUND] = ACTIONS(4477), - [anon_sym_SLASH] = ACTIONS(4481), - [anon_sym_COLON_DASH] = ACTIONS(4473), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4473), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4631), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4633), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4631), + [anon_sym_EQ] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4635), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4631), + [sym__special_character] = ACTIONS(459), }, [1943] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1953), [sym_concatenation] = STATE(1953), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4483), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4485), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4483), - [anon_sym_PERCENT] = ACTIONS(4483), - [anon_sym_POUND] = ACTIONS(4487), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_COLON_DASH] = ACTIONS(4483), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4483), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4641), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4643), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4641), + [anon_sym_EQ] = ACTIONS(4641), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4647), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4641), + [sym__special_character] = ACTIONS(459), }, [1944] = { [sym_command_substitution] = STATE(1954), @@ -58268,191 +59623,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1954), [sym_concatenation] = STATE(1956), [sym_expansion] = STATE(1954), - [sym_word] = ACTIONS(4491), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4491), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(4491), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(4475), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4649), + [sym_word] = ACTIONS(4651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(4649), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(4635), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(4651), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1945] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1958), [sym_concatenation] = STATE(1958), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_POUND] = ACTIONS(4497), - [anon_sym_COLON_DASH] = ACTIONS(4493), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4653), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4493), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4655), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4657), + [anon_sym_DASH] = ACTIONS(4653), + [anon_sym_COLON_DASH] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4653), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4653), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4653), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4659), }, [1946] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4657), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1947] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4501), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(4661), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1948] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1959), [sym_concatenation] = STATE(1959), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4505), - [anon_sym_DASH] = ACTIONS(4503), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4503), - [anon_sym_PERCENT] = ACTIONS(4503), - [anon_sym_POUND] = ACTIONS(4507), - [anon_sym_COLON_DASH] = ACTIONS(4503), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4503), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4663), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4665), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_DASH] = ACTIONS(4663), + [anon_sym_COLON_DASH] = ACTIONS(4663), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4663), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4663), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4663), + [sym__special_character] = ACTIONS(459), }, [1949] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4505), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1950] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1959), [sym_concatenation] = STATE(1959), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4505), - [anon_sym_DASH] = ACTIONS(4503), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4503), - [anon_sym_PERCENT] = ACTIONS(4503), - [anon_sym_POUND] = ACTIONS(4507), - [anon_sym_COLON_DASH] = ACTIONS(4503), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4503), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4509), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4663), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4665), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_DASH] = ACTIONS(4663), + [anon_sym_COLON_DASH] = ACTIONS(4663), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4663), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4663), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4663), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4669), }, [1951] = { [sym_command_substitution] = STATE(1961), @@ -58463,697 +59824,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1961), [sym_concatenation] = STATE(1963), [sym_expansion] = STATE(1961), - [sym_word] = ACTIONS(4511), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4511), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(4511), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(4505), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4671), + [sym_word] = ACTIONS(4673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(4671), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(4667), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(4673), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1952] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1965), [sym_concatenation] = STATE(1965), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4513), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4515), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_PERCENT] = ACTIONS(4513), - [anon_sym_POUND] = ACTIONS(4517), - [anon_sym_COLON_DASH] = ACTIONS(4513), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4675), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4513), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4677), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4679), + [anon_sym_DASH] = ACTIONS(4675), + [anon_sym_COLON_DASH] = ACTIONS(4675), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4675), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4675), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4675), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4681), }, [1953] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4515), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4679), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1954] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4505), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4667), + [sym__concat] = ACTIONS(1294), }, [1955] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(4521), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(4683), + [sym_comment] = ACTIONS(41), }, [1956] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4667), + [sym_comment] = ACTIONS(41), }, [1957] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1966), [sym_concatenation] = STATE(1966), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4523), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4523), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4523), - [anon_sym_PERCENT] = ACTIONS(4523), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_COLON_DASH] = ACTIONS(4523), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4523), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4685), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4687), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4689), + [anon_sym_DASH] = ACTIONS(4685), + [anon_sym_COLON_DASH] = ACTIONS(4685), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4685), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4685), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4685), + [sym__special_character] = ACTIONS(459), }, [1958] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4689), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1959] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1960] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1967), [sym_concatenation] = STATE(1967), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_DASH] = ACTIONS(4531), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4533), - [anon_sym_COLON_DASH] = ACTIONS(4531), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4531), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4693), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4695), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4693), + [anon_sym_COLON_DASH] = ACTIONS(4693), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4693), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4693), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4693), + [sym__special_character] = ACTIONS(459), }, [1961] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4529), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4691), + [sym__concat] = ACTIONS(1294), }, [1962] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(4535), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(4697), + [sym_comment] = ACTIONS(41), }, [1963] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4691), + [sym_comment] = ACTIONS(41), }, [1964] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1968), [sym_concatenation] = STATE(1968), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4537), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4537), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4537), - [anon_sym_PERCENT] = ACTIONS(4537), - [anon_sym_POUND] = ACTIONS(4541), - [anon_sym_COLON_DASH] = ACTIONS(4537), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4537), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4699), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4701), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4699), + [anon_sym_COLON_DASH] = ACTIONS(4699), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4699), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4699), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4699), + [sym__special_character] = ACTIONS(459), }, [1965] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1966] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4543), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4705), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1967] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1968] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4709), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1969] = { - [sym_string] = STATE(1036), - [aux_sym__simple_variable_name_token1] = ACTIONS(2746), - [sym_raw_string] = ACTIONS(4549), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4551), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(2707), - [anon_sym__] = ACTIONS(2746), - [anon_sym_AT] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4553), - [anon_sym_0] = ACTIONS(2746), + [sym_string] = STATE(1035), + [anon_sym__] = ACTIONS(2818), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4711), + [sym_raw_string] = ACTIONS(4713), + [anon_sym_BANG] = ACTIONS(4711), + [anon_sym_DOLLAR] = ACTIONS(4711), + [anon_sym_AT] = ACTIONS(4715), + [anon_sym_DASH] = ACTIONS(4711), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_0] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(4715), + [aux_sym__simple_variable_name_token1] = ACTIONS(2818), + [anon_sym_QMARK] = ACTIONS(4715), }, [1970] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(1978), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4555), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(4557), - [sym_comment] = ACTIONS(3), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1977), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4717), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(4719), + [anon_sym_BQUOTE] = ACTIONS(273), }, [1971] = { - [sym_command_substitution] = STATE(1040), - [sym_string] = STATE(1040), - [sym_process_substitution] = STATE(1040), - [sym_simple_expansion] = STATE(1040), - [sym_string_expansion] = STATE(1040), - [sym_expansion] = STATE(1040), - [sym_word] = ACTIONS(2697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2697), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2705), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_GT_LPAREN] = ACTIONS(2705), - [sym_ansii_c_string] = ACTIONS(2697), - [sym__special_character] = ACTIONS(2697), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4721), }, [1972] = { - [anon_sym_RPAREN] = ACTIONS(4559), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(4723), + [sym_comment] = ACTIONS(41), }, [1973] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(1042), + [sym_string] = STATE(1042), + [sym_process_substitution] = STATE(1042), + [sym_simple_expansion] = STATE(1042), + [sym_string_expansion] = STATE(1042), + [sym_expansion] = STATE(1042), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2767), + [anon_sym_DOLLAR] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(2771), + [anon_sym_GT_LPAREN] = ACTIONS(2773), + [sym_number] = ACTIONS(2775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_word] = ACTIONS(2775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2781), + [anon_sym_LT_LPAREN] = ACTIONS(2773), + [sym_ansii_c_string] = ACTIONS(2767), + [sym__special_character] = ACTIONS(2767), + }, + [1974] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1981), [sym_concatenation] = STATE(1981), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4561), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4563), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4561), - [anon_sym_PERCENT] = ACTIONS(4561), - [anon_sym_POUND] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4561), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4725), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4727), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4729), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4725), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4725), + [anon_sym_EQ] = ACTIONS(4725), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4725), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4731), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4725), + [sym__special_character] = ACTIONS(459), }, - [1974] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [1975] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1986), [sym_concatenation] = STATE(1986), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4569), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4571), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4569), - [anon_sym_PERCENT] = ACTIONS(4569), - [anon_sym_POUND] = ACTIONS(4573), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON_DASH] = ACTIONS(4569), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4569), - [sym__special_character] = ACTIONS(517), - }, - [1975] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(4577), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4733), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4735), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4737), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4733), + [anon_sym_EQ] = ACTIONS(4733), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4733), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4739), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4733), + [sym__special_character] = ACTIONS(459), }, [1976] = { - [anon_sym_RPAREN] = ACTIONS(4577), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(4741), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1977] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(4579), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), - }, - [1978] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(4581), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4741), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(4743), + [anon_sym_BQUOTE] = ACTIONS(273), + }, + [1978] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [1979] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(4583), + [anon_sym_RPAREN] = ACTIONS(4745), + [sym_comment] = ACTIONS(41), }, [1980] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1989), [sym_concatenation] = STATE(1989), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4585), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4585), - [anon_sym_PERCENT] = ACTIONS(4585), - [anon_sym_POUND] = ACTIONS(4589), - [anon_sym_COLON_DASH] = ACTIONS(4585), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4585), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4591), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4747), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4749), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4747), + [anon_sym_COLON_DASH] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4747), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4747), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4753), }, [1981] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1982] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1989), [sym_concatenation] = STATE(1989), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4585), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4585), - [anon_sym_PERCENT] = ACTIONS(4585), - [anon_sym_POUND] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4593), - [anon_sym_COLON_DASH] = ACTIONS(4585), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4585), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4747), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4749), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4747), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4751), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4747), + [sym__special_character] = ACTIONS(459), }, [1983] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1993), [sym_concatenation] = STATE(1993), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4595), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4595), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_POUND] = ACTIONS(4599), - [anon_sym_SLASH] = ACTIONS(4601), - [anon_sym_COLON_DASH] = ACTIONS(4595), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4595), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4757), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4759), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4761), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4757), + [anon_sym_EQ] = ACTIONS(4757), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(4757), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(4763), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4757), + [sym__special_character] = ACTIONS(459), }, [1984] = { [sym_command_substitution] = STATE(1994), @@ -59164,191 +60545,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1994), [sym_concatenation] = STATE(1996), [sym_expansion] = STATE(1994), - [sym_word] = ACTIONS(4603), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4603), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(4603), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(4587), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4765), + [sym_word] = ACTIONS(4767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(4765), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(4751), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(4767), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1985] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1998), [sym_concatenation] = STATE(1998), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4605), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4607), - [anon_sym_DASH] = ACTIONS(4605), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4605), - [anon_sym_PERCENT] = ACTIONS(4605), - [anon_sym_POUND] = ACTIONS(4609), - [anon_sym_COLON_DASH] = ACTIONS(4605), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4605), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4611), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4769), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4771), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4773), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_COLON_DASH] = ACTIONS(4769), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4769), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4769), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4769), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4775), }, [1986] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4607), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4773), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1987] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(4613), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(4777), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1988] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1999), [sym_concatenation] = STATE(1999), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4615), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(4615), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4615), - [anon_sym_PERCENT] = ACTIONS(4615), - [anon_sym_POUND] = ACTIONS(4619), - [anon_sym_COLON_DASH] = ACTIONS(4615), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4779), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4615), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(4781), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4779), + [anon_sym_COLON_DASH] = ACTIONS(4779), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4779), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4779), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4779), + [sym__special_character] = ACTIONS(459), }, [1989] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1990] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(1999), [sym_concatenation] = STATE(1999), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4615), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(4615), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4615), - [anon_sym_PERCENT] = ACTIONS(4615), - [anon_sym_POUND] = ACTIONS(4619), - [anon_sym_COLON_DASH] = ACTIONS(4615), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4779), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4615), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4621), + [anon_sym_POUND] = ACTIONS(4781), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4779), + [anon_sym_COLON_DASH] = ACTIONS(4779), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4779), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4779), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4779), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4785), }, [1991] = { [sym_command_substitution] = STATE(2001), @@ -59359,697 +60746,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2001), [sym_concatenation] = STATE(2003), [sym_expansion] = STATE(2001), - [sym_word] = ACTIONS(4623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4623), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(4623), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(4617), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4787), + [sym_word] = ACTIONS(4789), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(4787), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(4783), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(4789), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [1992] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2005), [sym_concatenation] = STATE(2005), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4629), - [anon_sym_COLON_DASH] = ACTIONS(4625), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4625), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4631), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4791), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4793), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4795), + [anon_sym_DASH] = ACTIONS(4791), + [anon_sym_COLON_DASH] = ACTIONS(4791), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4791), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4791), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4791), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4797), }, [1993] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4795), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1994] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4617), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4783), + [sym__concat] = ACTIONS(1294), }, [1995] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(4633), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(4799), + [sym_comment] = ACTIONS(41), }, [1996] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4617), + [anon_sym_RBRACE] = ACTIONS(4783), + [sym_comment] = ACTIONS(41), }, [1997] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2006), [sym_concatenation] = STATE(2006), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4635), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4635), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4635), - [anon_sym_PERCENT] = ACTIONS(4635), - [anon_sym_POUND] = ACTIONS(4639), - [anon_sym_COLON_DASH] = ACTIONS(4635), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4635), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4801), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4803), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4805), + [anon_sym_DASH] = ACTIONS(4801), + [anon_sym_COLON_DASH] = ACTIONS(4801), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4801), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4801), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4801), + [sym__special_character] = ACTIONS(459), }, [1998] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4805), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [1999] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2000] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2007), [sym_concatenation] = STATE(2007), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4643), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4643), - [anon_sym_PERCENT] = ACTIONS(4643), - [anon_sym_POUND] = ACTIONS(4645), - [anon_sym_COLON_DASH] = ACTIONS(4643), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4643), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4809), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4811), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4809), + [anon_sym_COLON_DASH] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4809), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4809), + [sym__special_character] = ACTIONS(459), }, [2001] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4641), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4807), + [sym__concat] = ACTIONS(1294), }, [2002] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(4647), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(4813), + [sym_comment] = ACTIONS(41), }, [2003] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4641), + [anon_sym_RBRACE] = ACTIONS(4807), + [sym_comment] = ACTIONS(41), }, [2004] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2008), [sym_concatenation] = STATE(2008), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4649), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4651), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4649), - [anon_sym_PERCENT] = ACTIONS(4649), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_COLON_DASH] = ACTIONS(4649), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4649), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4815), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4817), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4815), + [anon_sym_COLON_DASH] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4815), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4815), + [sym__special_character] = ACTIONS(459), }, [2005] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4651), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2006] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4821), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2007] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4823), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2008] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4659), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2009] = { - [sym_string] = STATE(1068), - [aux_sym__simple_variable_name_token1] = ACTIONS(2764), - [sym_raw_string] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4663), - [anon_sym_DOLLAR] = ACTIONS(4663), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4663), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4663), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym__] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_0] = ACTIONS(2764), + [sym_string] = STATE(1067), + [anon_sym__] = ACTIONS(2840), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4827), + [sym_raw_string] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(4827), + [anon_sym_AT] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4827), + [anon_sym_DQUOTE] = ACTIONS(2811), + [anon_sym_0] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(4831), + [aux_sym__simple_variable_name_token1] = ACTIONS(2840), + [anon_sym_QMARK] = ACTIONS(4831), }, [2010] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(2018), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4667), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(4669), - [sym_comment] = ACTIONS(3), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(2017), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4833), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(4835), + [anon_sym_BQUOTE] = ACTIONS(273), }, [2011] = { - [sym_command_substitution] = STATE(1072), - [sym_string] = STATE(1072), - [sym_process_substitution] = STATE(1072), - [sym_simple_expansion] = STATE(1072), - [sym_string_expansion] = STATE(1072), - [sym_expansion] = STATE(1072), - [sym_word] = ACTIONS(2727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2731), - [sym_raw_string] = ACTIONS(2727), - [anon_sym_DOLLAR] = ACTIONS(2995), - [anon_sym_LT_LPAREN] = ACTIONS(2735), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_BQUOTE] = ACTIONS(2739), - [anon_sym_GT_LPAREN] = ACTIONS(2735), - [sym_ansii_c_string] = ACTIONS(2727), - [sym__special_character] = ACTIONS(2727), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4837), }, [2012] = { - [anon_sym_RPAREN] = ACTIONS(4671), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(4839), + [sym_comment] = ACTIONS(41), }, [2013] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(1074), + [sym_string] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2799), + [anon_sym_DOLLAR] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2805), + [sym_number] = ACTIONS(2807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_word] = ACTIONS(2807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), + [anon_sym_LT_LPAREN] = ACTIONS(2805), + [sym_ansii_c_string] = ACTIONS(2799), + [sym__special_character] = ACTIONS(2799), + }, + [2014] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2021), [sym_concatenation] = STATE(2021), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4673), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4675), - [anon_sym_COLON_DASH] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4677), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4673), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4841), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4841), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4843), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_RBRACE] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4841), }, - [2014] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [2015] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2026), [sym_concatenation] = STATE(2026), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4681), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4683), - [anon_sym_COLON_DASH] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4685), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4681), - }, - [2015] = { - [sym_word] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(4689), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4849), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4849), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4849), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4851), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4853), + [anon_sym_RBRACE] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4849), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4849), }, [2016] = { - [anon_sym_RPAREN] = ACTIONS(4689), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [2017] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(4691), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), - }, - [2018] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4857), [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(4859), + [anon_sym_BQUOTE] = ACTIONS(273), + }, + [2018] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), }, [2019] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_RPAREN] = ACTIONS(4861), + [sym_comment] = ACTIONS(41), }, [2020] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2029), [sym_concatenation] = STATE(2029), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4697), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4699), - [anon_sym_COLON_DASH] = ACTIONS(4697), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_RBRACE] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4697), - [sym_regex] = ACTIONS(4703), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4863), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4863), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4863), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4865), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4863), + [sym_regex] = ACTIONS(4869), }, [2021] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2022] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2029), [sym_concatenation] = STATE(2029), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4697), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4699), - [anon_sym_COLON_DASH] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4705), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_RBRACE] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4697), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4863), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4863), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4863), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4865), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4863), }, [2023] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2033), [sym_concatenation] = STATE(2033), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4707), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4707), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4709), - [anon_sym_COLON_DASH] = ACTIONS(4707), - [anon_sym_SLASH] = ACTIONS(4711), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4707), - [anon_sym_RBRACE] = ACTIONS(4713), - [anon_sym_EQ] = ACTIONS(4707), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4707), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4873), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4875), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_EQ] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4873), }, [2024] = { [sym_command_substitution] = STATE(2034), @@ -60060,191 +61467,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2034), [sym_concatenation] = STATE(2036), [sym_expansion] = STATE(2034), - [sym_word] = ACTIONS(4715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4715), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(4701), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(4715), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4881), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4881), + [sym__special_character] = ACTIONS(947), }, [2025] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2038), [sym_concatenation] = STATE(2038), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4717), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4717), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4719), - [anon_sym_COLON_DASH] = ACTIONS(4717), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4717), - [anon_sym_RBRACE] = ACTIONS(4721), - [anon_sym_EQ] = ACTIONS(4717), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4717), - [sym_regex] = ACTIONS(4723), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4885), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4885), + [sym_regex] = ACTIONS(4891), }, [2026] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4721), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2027] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(4725), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [2028] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2039), [sym_concatenation] = STATE(2039), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4727), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4727), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4729), - [anon_sym_COLON_DASH] = ACTIONS(4727), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4727), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_EQ] = ACTIONS(4727), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4727), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4895), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4895), }, [2029] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2030] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2039), [sym_concatenation] = STATE(2039), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4727), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4727), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4729), - [anon_sym_COLON_DASH] = ACTIONS(4727), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4727), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_EQ] = ACTIONS(4727), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4727), - [sym_regex] = ACTIONS(4733), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4895), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4895), + [sym_regex] = ACTIONS(4901), }, [2031] = { [sym_command_substitution] = STATE(2041), @@ -60255,697 +61668,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2041), [sym_concatenation] = STATE(2043), [sym_expansion] = STATE(2041), - [sym_word] = ACTIONS(4735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4735), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(4731), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(4735), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4903), + [sym__special_character] = ACTIONS(947), }, [2032] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2045), [sym_concatenation] = STATE(2045), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4737), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4737), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4739), - [anon_sym_COLON_DASH] = ACTIONS(4737), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4737), - [anon_sym_RBRACE] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4737), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4737), - [sym_regex] = ACTIONS(4743), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4907), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4907), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4907), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4909), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4907), + [sym_regex] = ACTIONS(4913), }, [2033] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2034] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(4731), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4899), + [sym__concat] = ACTIONS(1294), }, [2035] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4745), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(4915), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [2036] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4731), + [anon_sym_RBRACE] = ACTIONS(4899), + [sym_comment] = ACTIONS(41), }, [2037] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2046), [sym_concatenation] = STATE(2046), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4747), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4749), - [anon_sym_COLON_DASH] = ACTIONS(4747), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4747), - [anon_sym_RBRACE] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4747), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4921), + [anon_sym_EQ] = ACTIONS(4917), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4917), }, [2038] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4921), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2039] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4923), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2040] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2047), [sym_concatenation] = STATE(2047), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4755), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4755), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4757), - [anon_sym_COLON_DASH] = ACTIONS(4755), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4755), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_EQ] = ACTIONS(4755), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4755), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4925), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4925), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4927), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4923), + [anon_sym_EQ] = ACTIONS(4925), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4925), }, [2041] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(4753), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4923), + [sym__concat] = ACTIONS(1294), }, [2042] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4759), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(4929), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [2043] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4753), + [anon_sym_RBRACE] = ACTIONS(4923), + [sym_comment] = ACTIONS(41), }, [2044] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2048), [sym_concatenation] = STATE(2048), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4761), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4761), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4763), - [anon_sym_COLON_DASH] = ACTIONS(4761), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4761), - [anon_sym_RBRACE] = ACTIONS(4765), - [anon_sym_EQ] = ACTIONS(4761), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4761), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4931), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4931), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4931), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4933), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_EQ] = ACTIONS(4931), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4931), }, [2045] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4765), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2046] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2047] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2048] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4771), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2049] = { - [sym_string] = STATE(1100), - [anon_sym_DQUOTE] = ACTIONS(958), - [aux_sym__simple_variable_name_token1] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2786), - [anon_sym__] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2788), - [sym_raw_string] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_0] = ACTIONS(2784), + [sym_string] = STATE(1099), + [anon_sym__] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_0] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2864), + [aux_sym__simple_variable_name_token1] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [sym_raw_string] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2866), }, [2050] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(2058), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(2057), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4945), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [2051] = { - [sym_command_substitution] = STATE(1104), - [sym_simple_expansion] = STATE(1104), - [sym_string_expansion] = STATE(1104), - [sym_string] = STATE(1104), - [sym_process_substitution] = STATE(1104), - [sym_expansion] = STATE(1104), - [sym_word] = ACTIONS(2757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(2757), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(2757), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym__special_character] = ACTIONS(2757), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4947), }, [2052] = { - [anon_sym_RPAREN] = ACTIONS(4777), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(4949), + [sym_comment] = ACTIONS(41), }, [2053] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(1106), + [sym_simple_expansion] = STATE(1106), + [sym_string_expansion] = STATE(1106), + [sym_string] = STATE(1106), + [sym_process_substitution] = STATE(1106), + [sym_expansion] = STATE(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2831), + [sym_word] = ACTIONS(2833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(2831), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym__special_character] = ACTIONS(2831), + [sym_number] = ACTIONS(2833), + }, + [2054] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2061), [sym_concatenation] = STATE(2061), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4779), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4779), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4951), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4951), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4781), - [anon_sym_COLON_DASH] = ACTIONS(4779), - [anon_sym_SLASH] = ACTIONS(4783), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4779), - [anon_sym_RBRACE] = ACTIONS(4785), - [anon_sym_EQ] = ACTIONS(4779), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4779), + [anon_sym_POUND] = ACTIONS(4953), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_RBRACE] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4951), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4951), }, - [2054] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [2055] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2066), [sym_concatenation] = STATE(2066), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4787), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4787), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4789), - [anon_sym_COLON_DASH] = ACTIONS(4787), - [anon_sym_SLASH] = ACTIONS(4791), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4787), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_EQ] = ACTIONS(4787), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4787), - }, - [2055] = { - [sym_word] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4959), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_EQ] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4959), }, [2056] = { - [anon_sym_RPAREN] = ACTIONS(4795), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(4967), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2057] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [2058] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4967), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [2058] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), }, [2059] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(4801), + [anon_sym_RPAREN] = ACTIONS(4971), + [sym_comment] = ACTIONS(41), }, [2060] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2069), [sym_concatenation] = STATE(2069), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4803), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4803), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4805), - [anon_sym_COLON_DASH] = ACTIONS(4803), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4803), - [sym_regex] = ACTIONS(4809), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4973), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4973), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4975), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_EQ] = ACTIONS(4973), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4973), + [sym_regex] = ACTIONS(4979), }, [2061] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2062] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2069), [sym_concatenation] = STATE(2069), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4803), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4803), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4805), - [anon_sym_COLON_DASH] = ACTIONS(4803), - [anon_sym_SLASH] = ACTIONS(4811), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4803), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4973), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4973), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4975), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4981), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_EQ] = ACTIONS(4973), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4973), }, [2063] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2073), [sym_concatenation] = STATE(2073), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4813), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4813), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_COLON_DASH] = ACTIONS(4813), - [anon_sym_SLASH] = ACTIONS(4817), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4813), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_EQ] = ACTIONS(4813), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4813), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4983), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4983), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4983), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4985), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(4983), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4983), }, [2064] = { [sym_command_substitution] = STATE(2074), @@ -60956,191 +62389,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2074), [sym_concatenation] = STATE(2076), [sym_expansion] = STATE(2074), - [sym_word] = ACTIONS(4821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(4821), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4991), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(4993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(4993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4991), + [sym__special_character] = ACTIONS(947), }, [2065] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2078), [sym_concatenation] = STATE(2078), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4823), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4823), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4825), - [anon_sym_COLON_DASH] = ACTIONS(4823), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4823), - [anon_sym_RBRACE] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4823), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4823), - [sym_regex] = ACTIONS(4829), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4995), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4995), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4997), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_EQ] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4995), + [sym_regex] = ACTIONS(5001), }, [2066] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2067] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5003), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2068] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2079), [sym_concatenation] = STATE(2079), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4833), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_COLON_DASH] = ACTIONS(4833), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_RBRACE] = ACTIONS(4837), - [anon_sym_EQ] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4833), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5005), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(5005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(5005), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5007), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5009), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5005), }, [2069] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4837), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5009), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2070] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2079), [sym_concatenation] = STATE(2079), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4833), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4833), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_COLON_DASH] = ACTIONS(4833), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_RBRACE] = ACTIONS(4837), - [anon_sym_EQ] = ACTIONS(4833), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4833), - [sym_regex] = ACTIONS(4839), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5005), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(5005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(5005), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5007), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5009), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5005), + [sym_regex] = ACTIONS(5011), }, [2071] = { [sym_command_substitution] = STATE(2081), @@ -61151,697 +62590,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2081), [sym_concatenation] = STATE(2083), [sym_expansion] = STATE(2081), - [sym_word] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4841), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(4837), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [sym_ansii_c_string] = ACTIONS(4841), - [sym__special_character] = ACTIONS(968), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5013), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(5009), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_number] = ACTIONS(5015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_word] = ACTIONS(5015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5013), + [sym__special_character] = ACTIONS(947), }, [2072] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2085), [sym_concatenation] = STATE(2085), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4843), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4843), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4845), - [anon_sym_COLON_DASH] = ACTIONS(4843), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4843), - [anon_sym_RBRACE] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4843), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4843), - [sym_regex] = ACTIONS(4849), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5017), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5019), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5021), + [anon_sym_EQ] = ACTIONS(5017), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5017), + [sym_regex] = ACTIONS(5023), }, [2073] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5021), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2074] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(4837), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5009), + [sym__concat] = ACTIONS(1294), }, [2075] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4851), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(5025), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [2076] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4837), + [anon_sym_RBRACE] = ACTIONS(5009), + [sym_comment] = ACTIONS(41), }, [2077] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2086), [sym_concatenation] = STATE(2086), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4853), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4853), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4855), - [anon_sym_COLON_DASH] = ACTIONS(4853), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(4853), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4853), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5027), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5027), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(5027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(5027), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5029), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5027), }, [2078] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2079] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2080] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2087), [sym_concatenation] = STATE(2087), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4863), - [anon_sym_COLON_DASH] = ACTIONS(4861), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4861), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4861), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5035), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(5035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(5035), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5037), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5035), }, [2081] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [anon_sym_RBRACE] = ACTIONS(4859), - [sym__concat] = ACTIONS(1313), - [sym_comment] = ACTIONS(19), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5033), + [sym__concat] = ACTIONS(1294), }, [2082] = { [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4865), - [sym__special_character] = ACTIONS(1315), - [sym_comment] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(5039), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1296), }, [2083] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4859), + [anon_sym_RBRACE] = ACTIONS(5033), + [sym_comment] = ACTIONS(41), }, [2084] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2088), [sym_concatenation] = STATE(2088), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(4867), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(4867), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4869), - [anon_sym_COLON_DASH] = ACTIONS(4867), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4867), - [anon_sym_RBRACE] = ACTIONS(4871), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4867), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5041), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(5041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(5041), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5043), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_EQ] = ACTIONS(5041), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5041), }, [2085] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4871), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5045), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2086] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4873), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2087] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2088] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), }, [2089] = { - [sym_string] = STATE(1132), - [anon_sym_DQUOTE] = ACTIONS(992), - [aux_sym__simple_variable_name_token1] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(4879), - [anon_sym__] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(4879), - [anon_sym_DASH] = ACTIONS(2810), - [sym_raw_string] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_0] = ACTIONS(2804), + [sym_string] = STATE(1131), + [anon_sym__] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(5053), + [anon_sym_0] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2886), + [aux_sym__simple_variable_name_token1] = ACTIONS(2884), + [anon_sym_DOLLAR] = ACTIONS(2886), + [anon_sym_AT] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(2886), + [sym_raw_string] = ACTIONS(2888), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5053), }, [2090] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(2098), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(2097), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5057), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [2091] = { - [sym_command_substitution] = STATE(1136), - [sym_simple_expansion] = STATE(1136), - [sym_string_expansion] = STATE(1136), - [sym_string] = STATE(1136), - [sym_process_substitution] = STATE(1136), - [sym_expansion] = STATE(1136), - [sym_word] = ACTIONS(2777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), - [sym_raw_string] = ACTIONS(2777), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_GT_LPAREN] = ACTIONS(1000), - [sym_ansii_c_string] = ACTIONS(2777), - [anon_sym_LT_LPAREN] = ACTIONS(1000), - [sym__special_character] = ACTIONS(2777), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5059), }, [2092] = { - [anon_sym_RPAREN] = ACTIONS(4885), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(5061), + [sym_comment] = ACTIONS(41), }, [2093] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(2101), - [sym_concatenation] = STATE(2101), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4887), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4889), - [anon_sym_DASH] = ACTIONS(4887), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4887), - [anon_sym_PERCENT] = ACTIONS(4887), - [anon_sym_POUND] = ACTIONS(4891), - [anon_sym_SLASH] = ACTIONS(4893), - [anon_sym_COLON_DASH] = ACTIONS(4887), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4887), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(1138), + [sym_simple_expansion] = STATE(1138), + [sym_string_expansion] = STATE(1138), + [sym_string] = STATE(1138), + [sym_process_substitution] = STATE(1138), + [sym_expansion] = STATE(1138), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2853), + [sym_word] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(2853), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_GT_LPAREN] = ACTIONS(1023), + [sym__special_character] = ACTIONS(2853), + [sym_number] = ACTIONS(2855), }, [2094] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(2106), - [sym_concatenation] = STATE(2106), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_PERCENT] = ACTIONS(4895), - [anon_sym_POUND] = ACTIONS(4899), - [anon_sym_SLASH] = ACTIONS(4901), - [anon_sym_COLON_DASH] = ACTIONS(4895), - [anon_sym_DQUOTE] = ACTIONS(513), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(2101), + [sym_concatenation] = STATE(2101), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5063), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4895), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(5065), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5063), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5069), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5063), + [sym__special_character] = ACTIONS(459), }, [2095] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(2106), + [sym_concatenation] = STATE(2106), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5071), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5073), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5075), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5071), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5077), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5071), + [sym__special_character] = ACTIONS(459), }, [2096] = { - [anon_sym_RPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5079), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2097] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4905), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [2098] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5079), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [2098] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [2099] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(4909), + [anon_sym_RPAREN] = ACTIONS(5083), + [sym_comment] = ACTIONS(41), }, [2100] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2109), [sym_concatenation] = STATE(2109), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4911), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4911), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_PERCENT] = ACTIONS(4911), - [anon_sym_POUND] = ACTIONS(4915), - [anon_sym_COLON_DASH] = ACTIONS(4911), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4911), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4917), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5085), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5087), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_COLON_DASH] = ACTIONS(5085), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5085), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5085), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5091), }, [2101] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2102] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2109), [sym_concatenation] = STATE(2109), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4911), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4911), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_PERCENT] = ACTIONS(4911), - [anon_sym_POUND] = ACTIONS(4915), - [anon_sym_SLASH] = ACTIONS(4919), - [anon_sym_COLON_DASH] = ACTIONS(4911), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4911), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5085), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5087), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5085), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5089), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5085), + [sym__special_character] = ACTIONS(459), }, [2103] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2113), [sym_concatenation] = STATE(2113), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4921), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4921), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_PERCENT] = ACTIONS(4921), - [anon_sym_POUND] = ACTIONS(4925), - [anon_sym_SLASH] = ACTIONS(4927), - [anon_sym_COLON_DASH] = ACTIONS(4921), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4921), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5095), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5097), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5095), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5101), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5095), + [sym__special_character] = ACTIONS(459), }, [2104] = { [sym_command_substitution] = STATE(2114), @@ -61852,191 +63311,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2114), [sym_concatenation] = STATE(2116), [sym_expansion] = STATE(2114), - [sym_word] = ACTIONS(4929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4929), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(4929), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(4913), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5103), + [sym_word] = ACTIONS(5105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5103), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5089), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5105), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2105] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2118), [sym_concatenation] = STATE(2118), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4931), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_POUND] = ACTIONS(4935), - [anon_sym_COLON_DASH] = ACTIONS(4931), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4931), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4937), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5107), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5109), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_DASH] = ACTIONS(5107), + [anon_sym_COLON_DASH] = ACTIONS(5107), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5107), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5107), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5113), }, [2106] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2107] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5115), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2108] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2119), [sym_concatenation] = STATE(2119), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4941), - [anon_sym_PERCENT] = ACTIONS(4941), - [anon_sym_POUND] = ACTIONS(4945), - [anon_sym_COLON_DASH] = ACTIONS(4941), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4941), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5117), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5119), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_COLON_DASH] = ACTIONS(5117), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5117), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5117), + [sym__special_character] = ACTIONS(459), }, [2109] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2110] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2119), [sym_concatenation] = STATE(2119), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4941), - [anon_sym_PERCENT] = ACTIONS(4941), - [anon_sym_POUND] = ACTIONS(4945), - [anon_sym_COLON_DASH] = ACTIONS(4941), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4941), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4947), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5117), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5119), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_COLON_DASH] = ACTIONS(5117), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5117), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5117), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5123), }, [2111] = { [sym_command_substitution] = STATE(2121), @@ -62047,697 +63512,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2121), [sym_concatenation] = STATE(2123), [sym_expansion] = STATE(2121), - [sym_word] = ACTIONS(4949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(4949), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(4943), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5125), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5121), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5127), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2112] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2125), [sym_concatenation] = STATE(2125), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_COLON_DASH] = ACTIONS(4951), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4951), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(4957), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5129), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5131), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_DASH] = ACTIONS(5129), + [anon_sym_COLON_DASH] = ACTIONS(5129), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5129), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5129), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5135), }, [2113] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2114] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4943), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5121), + [sym__concat] = ACTIONS(1294), }, [2115] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(4959), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5137), + [sym_comment] = ACTIONS(41), }, [2116] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_RBRACE] = ACTIONS(5121), + [sym_comment] = ACTIONS(41), }, [2117] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2126), [sym_concatenation] = STATE(2126), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4961), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4961), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_POUND] = ACTIONS(4965), - [anon_sym_COLON_DASH] = ACTIONS(4961), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4961), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5139), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5141), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_COLON_DASH] = ACTIONS(5139), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5139), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5139), + [sym__special_character] = ACTIONS(459), }, [2118] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2119] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2120] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2127), [sym_concatenation] = STATE(2127), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4969), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_PERCENT] = ACTIONS(4969), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_COLON_DASH] = ACTIONS(4969), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4969), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5147), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5149), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5147), + [anon_sym_COLON_DASH] = ACTIONS(5147), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5147), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5147), + [sym__special_character] = ACTIONS(459), }, [2121] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4967), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5145), + [sym__concat] = ACTIONS(1294), }, [2122] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(4973), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5151), + [sym_comment] = ACTIONS(41), }, [2123] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(4967), + [anon_sym_RBRACE] = ACTIONS(5145), + [sym_comment] = ACTIONS(41), }, [2124] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2128), [sym_concatenation] = STATE(2128), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_COLON_DASH] = ACTIONS(4975), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4975), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5153), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5155), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_COLON_DASH] = ACTIONS(5153), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5153), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5153), + [sym__special_character] = ACTIONS(459), }, [2125] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2126] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4981), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2127] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2128] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2129] = { - [sym_string] = STATE(1164), - [anon_sym_DQUOTE] = ACTIONS(1065), - [aux_sym__simple_variable_name_token1] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(4987), - [anon_sym__] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(4989), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4989), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [sym_raw_string] = ACTIONS(4991), + [sym_string] = STATE(1163), + [anon_sym__] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5167), + [anon_sym_0] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(5165), + [aux_sym__simple_variable_name_token1] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(5165), + [anon_sym_AT] = ACTIONS(5167), + [anon_sym_DASH] = ACTIONS(5165), + [sym_raw_string] = ACTIONS(5169), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4989), - [anon_sym_0] = ACTIONS(2824), + [anon_sym_QMARK] = ACTIONS(5167), }, [2130] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(2138), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(4993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(2137), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5173), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [2131] = { - [sym_command_substitution] = STATE(1168), - [sym_simple_expansion] = STATE(1168), - [sym_string_expansion] = STATE(1168), - [sym_string] = STATE(1168), - [sym_process_substitution] = STATE(1168), - [sym_expansion] = STATE(1168), - [sym_word] = ACTIONS(2797), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [sym_raw_string] = ACTIONS(2797), - [anon_sym_BQUOTE] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1073), - [sym_ansii_c_string] = ACTIONS(2797), - [anon_sym_LT_LPAREN] = ACTIONS(1073), - [sym__special_character] = ACTIONS(2797), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5175), }, [2132] = { - [anon_sym_RPAREN] = ACTIONS(4997), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(5177), + [sym_comment] = ACTIONS(41), }, [2133] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(1170), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_string] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [sym_expansion] = STATE(1170), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2875), + [sym_word] = ACTIONS(2877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1110), + [sym_ansii_c_string] = ACTIONS(2875), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_GT_LPAREN] = ACTIONS(1110), + [sym__special_character] = ACTIONS(2875), + [sym_number] = ACTIONS(2877), + }, + [2134] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2141), [sym_concatenation] = STATE(2141), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5005), - [anon_sym_COLON_DASH] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(4999), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5179), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5181), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5183), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5179), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5185), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5179), + [sym__special_character] = ACTIONS(459), }, - [2134] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [2135] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2146), [sym_concatenation] = STATE(2146), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5009), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5013), - [anon_sym_COLON_DASH] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5007), - [sym__special_character] = ACTIONS(517), - }, - [2135] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5187), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5189), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5191), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5187), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5193), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5187), + [sym__special_character] = ACTIONS(459), }, [2136] = { - [anon_sym_RPAREN] = ACTIONS(5015), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5195), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2137] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [2138] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(5017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5195), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [2138] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [2139] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(5021), + [anon_sym_RPAREN] = ACTIONS(5199), + [sym_comment] = ACTIONS(41), }, [2140] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2149), [sym_concatenation] = STATE(2149), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_COLON_DASH] = ACTIONS(5023), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5023), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5029), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5201), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5203), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_COLON_DASH] = ACTIONS(5201), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5201), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5201), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5201), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5207), }, [2141] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2142] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2149), [sym_concatenation] = STATE(2149), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON_DASH] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5023), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5201), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5203), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5201), + [anon_sym_EQ] = ACTIONS(5201), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5201), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5205), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5201), + [sym__special_character] = ACTIONS(459), }, [2143] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2153), [sym_concatenation] = STATE(2153), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_POUND] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON_DASH] = ACTIONS(5033), - [anon_sym_DQUOTE] = ACTIONS(513), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5211), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5033), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(5213), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5215), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5211), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5211), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5217), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5211), + [sym__special_character] = ACTIONS(459), }, [2144] = { [sym_command_substitution] = STATE(2154), @@ -62748,191 +64233,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2154), [sym_concatenation] = STATE(2156), [sym_expansion] = STATE(2154), - [sym_word] = ACTIONS(5041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5041), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5025), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5219), + [sym_word] = ACTIONS(5221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5219), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5205), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5221), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2145] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2158), [sym_concatenation] = STATE(2158), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_COLON_DASH] = ACTIONS(5043), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5043), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5049), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5223), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5225), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(5223), + [anon_sym_COLON_DASH] = ACTIONS(5223), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5223), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5223), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5223), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5229), }, [2146] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5045), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5227), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2147] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5231), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2148] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2159), [sym_concatenation] = STATE(2159), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5053), - [anon_sym_PERCENT] = ACTIONS(5053), - [anon_sym_POUND] = ACTIONS(5057), - [anon_sym_COLON_DASH] = ACTIONS(5053), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5053), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5233), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5235), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_COLON_DASH] = ACTIONS(5233), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5233), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5233), + [sym__special_character] = ACTIONS(459), }, [2149] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2150] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2159), [sym_concatenation] = STATE(2159), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5053), - [anon_sym_PERCENT] = ACTIONS(5053), - [anon_sym_POUND] = ACTIONS(5057), - [anon_sym_COLON_DASH] = ACTIONS(5053), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5053), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5059), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5233), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5235), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_COLON_DASH] = ACTIONS(5233), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5233), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5233), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5239), }, [2151] = { [sym_command_substitution] = STATE(2161), @@ -62943,697 +64434,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2161), [sym_concatenation] = STATE(2163), [sym_expansion] = STATE(2161), - [sym_word] = ACTIONS(5061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5061), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5055), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5241), + [sym_word] = ACTIONS(5243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5241), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5237), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5243), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2152] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2165), [sym_concatenation] = STATE(2165), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_COLON_DASH] = ACTIONS(5063), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5245), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5063), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5069), + [anon_sym_POUND] = ACTIONS(5247), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_COLON_DASH] = ACTIONS(5245), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5245), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5245), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5245), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5251), }, [2153] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2154] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5055), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5237), + [sym__concat] = ACTIONS(1294), }, [2155] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5071), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5253), + [sym_comment] = ACTIONS(41), }, [2156] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5055), + [anon_sym_RBRACE] = ACTIONS(5237), + [sym_comment] = ACTIONS(41), }, [2157] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2166), [sym_concatenation] = STATE(2166), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5073), - [anon_sym_PERCENT] = ACTIONS(5073), - [anon_sym_POUND] = ACTIONS(5077), - [anon_sym_COLON_DASH] = ACTIONS(5073), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5073), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5255), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5257), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5259), + [anon_sym_DASH] = ACTIONS(5255), + [anon_sym_COLON_DASH] = ACTIONS(5255), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5255), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5255), + [sym__special_character] = ACTIONS(459), }, [2158] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5259), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2159] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2160] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2167), [sym_concatenation] = STATE(2167), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5081), - [anon_sym_PERCENT] = ACTIONS(5081), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_COLON_DASH] = ACTIONS(5081), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5081), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5263), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5265), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(5263), + [anon_sym_COLON_DASH] = ACTIONS(5263), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5263), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5263), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5263), + [sym__special_character] = ACTIONS(459), }, [2161] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5079), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5261), + [sym__concat] = ACTIONS(1294), }, [2162] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5085), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5267), + [sym_comment] = ACTIONS(41), }, [2163] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5261), + [sym_comment] = ACTIONS(41), }, [2164] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2168), [sym_concatenation] = STATE(2168), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5087), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_COLON_DASH] = ACTIONS(5087), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5087), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5269), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5271), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5269), + [anon_sym_COLON_DASH] = ACTIONS(5269), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5269), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5269), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5269), + [sym__special_character] = ACTIONS(459), }, [2165] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2166] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5275), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2167] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5277), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2168] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5279), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2169] = { - [sym_string] = STATE(1196), - [anon_sym_DQUOTE] = ACTIONS(1695), - [aux_sym__simple_variable_name_token1] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(5099), - [anon_sym__] = ACTIONS(2852), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [sym_raw_string] = ACTIONS(5103), + [sym_string] = STATE(1195), + [anon_sym__] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(5281), + [anon_sym_STAR] = ACTIONS(5283), + [anon_sym_0] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(5281), + [aux_sym__simple_variable_name_token1] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(5281), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_DASH] = ACTIONS(5281), + [sym_raw_string] = ACTIONS(5285), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5101), - [anon_sym_0] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(5283), }, [2170] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(2178), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(2177), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5289), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [2171] = { - [sym_command_substitution] = STATE(1200), - [sym_simple_expansion] = STATE(1200), - [sym_string_expansion] = STATE(1200), - [sym_string] = STATE(1200), - [sym_process_substitution] = STATE(1200), - [sym_expansion] = STATE(1200), - [sym_word] = ACTIONS(2817), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [sym_raw_string] = ACTIONS(2817), - [anon_sym_BQUOTE] = ACTIONS(1697), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(2817), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym__special_character] = ACTIONS(2817), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5291), }, [2172] = { - [anon_sym_RPAREN] = ACTIONS(5109), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(5293), + [sym_comment] = ACTIONS(41), }, [2173] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_string] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [sym_expansion] = STATE(1202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2897), + [sym_word] = ACTIONS(2899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_LT_LPAREN] = ACTIONS(1738), + [sym_ansii_c_string] = ACTIONS(2897), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_GT_LPAREN] = ACTIONS(1738), + [sym__special_character] = ACTIONS(2897), + [sym_number] = ACTIONS(2899), + }, + [2174] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2181), [sym_concatenation] = STATE(2181), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5111), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_COLON_DASH] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5111), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5295), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5297), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5299), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5295), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5295), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5295), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5301), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5295), + [sym__special_character] = ACTIONS(459), }, - [2174] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [2175] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2186), [sym_concatenation] = STATE(2186), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_COLON_DASH] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5119), - [sym__special_character] = ACTIONS(517), - }, - [2175] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5303), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5305), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5303), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5303), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5303), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5309), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5303), + [sym__special_character] = ACTIONS(459), }, [2176] = { - [anon_sym_RPAREN] = ACTIONS(5127), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5311), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2177] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [2178] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5311), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [2178] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5315), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [2179] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(5133), + [anon_sym_RPAREN] = ACTIONS(5315), + [sym_comment] = ACTIONS(41), }, [2180] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2189), [sym_concatenation] = STATE(2189), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_COLON_DASH] = ACTIONS(5135), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5135), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5141), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5317), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5319), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5321), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_COLON_DASH] = ACTIONS(5317), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5317), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5317), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5317), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5323), }, [2181] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5321), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2182] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2189), [sym_concatenation] = STATE(2189), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON_DASH] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5135), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5317), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5319), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5317), + [anon_sym_EQ] = ACTIONS(5317), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5317), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5317), + [sym__special_character] = ACTIONS(459), }, [2183] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2193), [sym_concatenation] = STATE(2193), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5145), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5145), - [anon_sym_PERCENT] = ACTIONS(5145), - [anon_sym_POUND] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON_DASH] = ACTIONS(5145), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5145), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5327), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5329), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5331), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5327), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5327), + [anon_sym_EQ] = ACTIONS(5327), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5327), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5333), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5327), + [sym__special_character] = ACTIONS(459), }, [2184] = { [sym_command_substitution] = STATE(2194), @@ -63644,191 +65155,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2194), [sym_concatenation] = STATE(2196), [sym_expansion] = STATE(2194), - [sym_word] = ACTIONS(5153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5153), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5137), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5335), + [sym_word] = ACTIONS(5337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5335), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5321), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5337), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2185] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2198), [sym_concatenation] = STATE(2198), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_COLON_DASH] = ACTIONS(5155), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5155), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5161), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5339), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5341), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5343), + [anon_sym_DASH] = ACTIONS(5339), + [anon_sym_COLON_DASH] = ACTIONS(5339), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5339), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5339), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5339), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5345), }, [2186] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5343), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2187] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5347), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2188] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2199), [sym_concatenation] = STATE(2199), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_PERCENT] = ACTIONS(5165), - [anon_sym_POUND] = ACTIONS(5169), - [anon_sym_COLON_DASH] = ACTIONS(5165), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5165), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5349), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5351), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5349), + [anon_sym_COLON_DASH] = ACTIONS(5349), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5349), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5349), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5349), + [sym__special_character] = ACTIONS(459), }, [2189] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2190] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2199), [sym_concatenation] = STATE(2199), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_PERCENT] = ACTIONS(5165), - [anon_sym_POUND] = ACTIONS(5169), - [anon_sym_COLON_DASH] = ACTIONS(5165), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5165), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5171), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5349), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5351), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5353), + [anon_sym_DASH] = ACTIONS(5349), + [anon_sym_COLON_DASH] = ACTIONS(5349), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5349), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5349), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5349), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5355), }, [2191] = { [sym_command_substitution] = STATE(2201), @@ -63839,697 +65356,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2201), [sym_concatenation] = STATE(2203), [sym_expansion] = STATE(2201), - [sym_word] = ACTIONS(5173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5173), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5167), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5357), + [sym_word] = ACTIONS(5359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5357), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5353), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5359), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2192] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2205), [sym_concatenation] = STATE(2205), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_COLON_DASH] = ACTIONS(5175), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5175), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5181), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5361), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5363), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5365), + [anon_sym_DASH] = ACTIONS(5361), + [anon_sym_COLON_DASH] = ACTIONS(5361), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5361), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5361), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5361), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5367), }, [2193] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5365), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2194] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5167), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5353), + [sym__concat] = ACTIONS(1294), }, [2195] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5183), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5369), + [sym_comment] = ACTIONS(41), }, [2196] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5353), + [sym_comment] = ACTIONS(41), }, [2197] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2206), [sym_concatenation] = STATE(2206), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5187), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5185), - [anon_sym_PERCENT] = ACTIONS(5185), - [anon_sym_POUND] = ACTIONS(5189), - [anon_sym_COLON_DASH] = ACTIONS(5185), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5371), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5185), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(5373), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5375), + [anon_sym_DASH] = ACTIONS(5371), + [anon_sym_COLON_DASH] = ACTIONS(5371), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5371), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5371), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5371), + [sym__special_character] = ACTIONS(459), }, [2198] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5187), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5375), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2199] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5191), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5377), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2200] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2207), [sym_concatenation] = STATE(2207), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5191), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5193), - [anon_sym_PERCENT] = ACTIONS(5193), - [anon_sym_POUND] = ACTIONS(5195), - [anon_sym_COLON_DASH] = ACTIONS(5193), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5193), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5379), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5381), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5377), + [anon_sym_DASH] = ACTIONS(5379), + [anon_sym_COLON_DASH] = ACTIONS(5379), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5379), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5379), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5379), + [sym__special_character] = ACTIONS(459), }, [2201] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5191), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5377), + [sym__concat] = ACTIONS(1294), }, [2202] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5197), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5383), + [sym_comment] = ACTIONS(41), }, [2203] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5191), + [anon_sym_RBRACE] = ACTIONS(5377), + [sym_comment] = ACTIONS(41), }, [2204] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2208), [sym_concatenation] = STATE(2208), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5199), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_PERCENT] = ACTIONS(5199), - [anon_sym_POUND] = ACTIONS(5203), - [anon_sym_COLON_DASH] = ACTIONS(5199), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5199), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5385), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5387), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5389), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_COLON_DASH] = ACTIONS(5385), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5385), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5385), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5385), + [sym__special_character] = ACTIONS(459), }, [2205] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5389), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2206] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5391), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2207] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5207), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5393), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2208] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5395), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2209] = { - [sym_string] = STATE(1228), - [anon_sym_DQUOTE] = ACTIONS(2839), - [aux_sym__simple_variable_name_token1] = ACTIONS(2880), - [anon_sym_AT] = ACTIONS(5211), - [anon_sym__] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5213), - [anon_sym_QMARK] = ACTIONS(5211), - [anon_sym_DASH] = ACTIONS(5213), - [sym_raw_string] = ACTIONS(5215), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5213), - [anon_sym_0] = ACTIONS(2880), + [sym_string] = STATE(1227), + [anon_sym__] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2919), + [anon_sym_POUND] = ACTIONS(5397), + [anon_sym_STAR] = ACTIONS(5399), + [anon_sym_0] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(5397), + [aux_sym__simple_variable_name_token1] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(5397), + [anon_sym_AT] = ACTIONS(5399), + [anon_sym_DASH] = ACTIONS(5397), + [sym_raw_string] = ACTIONS(5401), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5399), }, [2210] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(2218), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(5219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(2217), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5405), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [2211] = { - [sym_command_substitution] = STATE(1232), - [sym_simple_expansion] = STATE(1232), - [sym_string_expansion] = STATE(1232), - [sym_string] = STATE(1232), - [sym_process_substitution] = STATE(1232), - [sym_expansion] = STATE(1232), - [sym_word] = ACTIONS(2835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(2835), - [anon_sym_BQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2380), - [anon_sym_GT_LPAREN] = ACTIONS(2847), - [sym_ansii_c_string] = ACTIONS(2835), - [anon_sym_LT_LPAREN] = ACTIONS(2847), - [sym__special_character] = ACTIONS(2835), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5407), }, [2212] = { - [anon_sym_RPAREN] = ACTIONS(5221), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(5409), + [sym_comment] = ACTIONS(41), }, [2213] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(1234), + [sym_simple_expansion] = STATE(1234), + [sym_string_expansion] = STATE(1234), + [sym_string] = STATE(1234), + [sym_process_substitution] = STATE(1234), + [sym_expansion] = STATE(1234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2919), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2921), + [sym_word] = ACTIONS(2923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2925), + [anon_sym_DOLLAR] = ACTIONS(2428), + [anon_sym_LT_LPAREN] = ACTIONS(2929), + [sym_ansii_c_string] = ACTIONS(2921), + [anon_sym_BQUOTE] = ACTIONS(2931), + [anon_sym_GT_LPAREN] = ACTIONS(2929), + [sym__special_character] = ACTIONS(2921), + [sym_number] = ACTIONS(2923), + }, + [2214] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2221), [sym_concatenation] = STATE(2221), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_POUND] = ACTIONS(5227), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_COLON_DASH] = ACTIONS(5223), - [anon_sym_DQUOTE] = ACTIONS(513), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5411), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5223), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(5413), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5415), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5411), + [anon_sym_EQ] = ACTIONS(5411), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5411), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5417), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5411), + [sym__special_character] = ACTIONS(459), }, - [2214] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [2215] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2226), [sym_concatenation] = STATE(2226), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5231), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5233), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_PERCENT] = ACTIONS(5231), - [anon_sym_POUND] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5237), - [anon_sym_COLON_DASH] = ACTIONS(5231), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5231), - [sym__special_character] = ACTIONS(517), - }, - [2215] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(5239), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5419), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5421), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5423), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5419), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5419), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5419), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5425), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5419), + [sym__special_character] = ACTIONS(459), }, [2216] = { - [anon_sym_RPAREN] = ACTIONS(5239), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5427), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2217] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(5241), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [2218] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(5243), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(5241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5427), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [2218] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5431), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [2219] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(5245), + [anon_sym_RPAREN] = ACTIONS(5431), + [sym_comment] = ACTIONS(41), }, [2220] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2229), [sym_concatenation] = STATE(2229), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5249), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_PERCENT] = ACTIONS(5247), - [anon_sym_POUND] = ACTIONS(5251), - [anon_sym_COLON_DASH] = ACTIONS(5247), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5247), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5253), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5433), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5435), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_DASH] = ACTIONS(5433), + [anon_sym_COLON_DASH] = ACTIONS(5433), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5433), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5433), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5433), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5439), }, [2221] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5249), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2222] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2229), [sym_concatenation] = STATE(2229), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5249), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5247), - [anon_sym_PERCENT] = ACTIONS(5247), - [anon_sym_POUND] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_COLON_DASH] = ACTIONS(5247), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5247), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5433), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5435), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5441), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5433), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5433), + [anon_sym_EQ] = ACTIONS(5433), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5433), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5437), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5433), + [sym__special_character] = ACTIONS(459), }, [2223] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2233), [sym_concatenation] = STATE(2233), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5257), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5257), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5257), - [anon_sym_PERCENT] = ACTIONS(5257), - [anon_sym_POUND] = ACTIONS(5261), - [anon_sym_SLASH] = ACTIONS(5263), - [anon_sym_COLON_DASH] = ACTIONS(5257), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5257), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5443), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5445), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5443), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5443), + [anon_sym_EQ] = ACTIONS(5443), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5443), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5449), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5443), + [sym__special_character] = ACTIONS(459), }, [2224] = { [sym_command_substitution] = STATE(2234), @@ -64540,191 +66077,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2234), [sym_concatenation] = STATE(2236), [sym_expansion] = STATE(2234), - [sym_word] = ACTIONS(5265), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5265), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5265), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5249), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5451), + [sym_word] = ACTIONS(5453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5451), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5437), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5453), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2225] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2238), [sym_concatenation] = STATE(2238), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5267), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5267), - [anon_sym_PERCENT] = ACTIONS(5267), - [anon_sym_POUND] = ACTIONS(5271), - [anon_sym_COLON_DASH] = ACTIONS(5267), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5455), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5267), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5273), + [anon_sym_POUND] = ACTIONS(5457), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5459), + [anon_sym_DASH] = ACTIONS(5455), + [anon_sym_COLON_DASH] = ACTIONS(5455), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5455), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5455), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5455), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5461), }, [2226] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5459), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2227] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(5275), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5463), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2228] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2239), [sym_concatenation] = STATE(2239), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5277), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(5277), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5277), - [anon_sym_PERCENT] = ACTIONS(5277), - [anon_sym_POUND] = ACTIONS(5281), - [anon_sym_COLON_DASH] = ACTIONS(5277), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5277), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5465), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5467), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5469), + [anon_sym_DASH] = ACTIONS(5465), + [anon_sym_COLON_DASH] = ACTIONS(5465), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5465), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5465), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5465), + [sym__special_character] = ACTIONS(459), }, [2229] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5469), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2230] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2239), [sym_concatenation] = STATE(2239), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5277), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(5277), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5277), - [anon_sym_PERCENT] = ACTIONS(5277), - [anon_sym_POUND] = ACTIONS(5281), - [anon_sym_COLON_DASH] = ACTIONS(5277), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5277), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5283), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5465), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5467), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5469), + [anon_sym_DASH] = ACTIONS(5465), + [anon_sym_COLON_DASH] = ACTIONS(5465), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5465), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5465), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5465), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5471), }, [2231] = { [sym_command_substitution] = STATE(2241), @@ -64735,697 +66278,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2241), [sym_concatenation] = STATE(2243), [sym_expansion] = STATE(2241), - [sym_word] = ACTIONS(5285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5285), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5285), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5279), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5473), + [sym_word] = ACTIONS(5475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5473), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5469), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5475), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2232] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2245), [sym_concatenation] = STATE(2245), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_PERCENT] = ACTIONS(5287), - [anon_sym_POUND] = ACTIONS(5291), - [anon_sym_COLON_DASH] = ACTIONS(5287), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5287), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5293), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5477), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5479), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5481), + [anon_sym_DASH] = ACTIONS(5477), + [anon_sym_COLON_DASH] = ACTIONS(5477), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5477), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5477), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5477), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5483), }, [2233] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5289), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5481), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2234] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5279), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5469), + [sym__concat] = ACTIONS(1294), }, [2235] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5295), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5485), + [sym_comment] = ACTIONS(41), }, [2236] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5279), + [anon_sym_RBRACE] = ACTIONS(5469), + [sym_comment] = ACTIONS(41), }, [2237] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2246), [sym_concatenation] = STATE(2246), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5297), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_PERCENT] = ACTIONS(5297), - [anon_sym_POUND] = ACTIONS(5301), - [anon_sym_COLON_DASH] = ACTIONS(5297), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5297), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5487), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5489), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5491), + [anon_sym_DASH] = ACTIONS(5487), + [anon_sym_COLON_DASH] = ACTIONS(5487), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5487), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5487), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5487), + [sym__special_character] = ACTIONS(459), }, [2238] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5491), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2239] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5303), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5493), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2240] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2247), [sym_concatenation] = STATE(2247), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5303), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5305), - [anon_sym_PERCENT] = ACTIONS(5305), - [anon_sym_POUND] = ACTIONS(5307), - [anon_sym_COLON_DASH] = ACTIONS(5305), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5305), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5495), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5497), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5493), + [anon_sym_DASH] = ACTIONS(5495), + [anon_sym_COLON_DASH] = ACTIONS(5495), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5495), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5495), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5495), + [sym__special_character] = ACTIONS(459), }, [2241] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5303), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5493), + [sym__concat] = ACTIONS(1294), }, [2242] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5309), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5499), + [sym_comment] = ACTIONS(41), }, [2243] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5303), + [anon_sym_RBRACE] = ACTIONS(5493), + [sym_comment] = ACTIONS(41), }, [2244] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2248), [sym_concatenation] = STATE(2248), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5313), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5311), - [anon_sym_PERCENT] = ACTIONS(5311), - [anon_sym_POUND] = ACTIONS(5315), - [anon_sym_COLON_DASH] = ACTIONS(5311), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5311), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5501), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5503), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5505), + [anon_sym_DASH] = ACTIONS(5501), + [anon_sym_COLON_DASH] = ACTIONS(5501), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5501), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5501), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5501), + [sym__special_character] = ACTIONS(459), }, [2245] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5313), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5505), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2246] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5317), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5507), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2247] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5319), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5509), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2248] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5511), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2249] = { - [sym_string] = STATE(1260), - [anon_sym_DQUOTE] = ACTIONS(2867), - [aux_sym__simple_variable_name_token1] = ACTIONS(2908), - [anon_sym_AT] = ACTIONS(5323), - [anon_sym__] = ACTIONS(2908), - [anon_sym_BANG] = ACTIONS(5325), - [anon_sym_STAR] = ACTIONS(5323), - [anon_sym_DOLLAR] = ACTIONS(5325), - [anon_sym_QMARK] = ACTIONS(5323), - [anon_sym_DASH] = ACTIONS(5325), - [sym_raw_string] = ACTIONS(5327), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5325), - [anon_sym_0] = ACTIONS(2908), + [sym_string] = STATE(1259), + [anon_sym__] = ACTIONS(2996), + [anon_sym_DQUOTE] = ACTIONS(2949), + [anon_sym_POUND] = ACTIONS(5513), + [anon_sym_STAR] = ACTIONS(5515), + [anon_sym_0] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(5513), + [aux_sym__simple_variable_name_token1] = ACTIONS(2996), + [anon_sym_DOLLAR] = ACTIONS(5513), + [anon_sym_AT] = ACTIONS(5515), + [anon_sym_DASH] = ACTIONS(5513), + [sym_raw_string] = ACTIONS(5517), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5515), }, [2250] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(2258), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(5329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(5331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(2257), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5521), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [2251] = { - [sym_command_substitution] = STATE(1264), - [sym_simple_expansion] = STATE(1264), - [sym_string_expansion] = STATE(1264), - [sym_string] = STATE(1264), - [sym_process_substitution] = STATE(1264), - [sym_expansion] = STATE(1264), - [sym_word] = ACTIONS(2863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), - [sym_raw_string] = ACTIONS(2863), - [anon_sym_BQUOTE] = ACTIONS(2871), - [anon_sym_DOLLAR] = ACTIONS(2400), - [anon_sym_GT_LPAREN] = ACTIONS(2875), - [sym_ansii_c_string] = ACTIONS(2863), - [anon_sym_LT_LPAREN] = ACTIONS(2875), - [sym__special_character] = ACTIONS(2863), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5523), }, [2252] = { - [anon_sym_RPAREN] = ACTIONS(5333), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(5525), + [sym_comment] = ACTIONS(41), }, [2253] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(1266), + [sym_simple_expansion] = STATE(1266), + [sym_string_expansion] = STATE(1266), + [sym_string] = STATE(1266), + [sym_process_substitution] = STATE(1266), + [sym_expansion] = STATE(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2949), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2951), + [sym_word] = ACTIONS(2953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [sym_ansii_c_string] = ACTIONS(2951), + [anon_sym_BQUOTE] = ACTIONS(2961), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym__special_character] = ACTIONS(2951), + [sym_number] = ACTIONS(2953), + }, + [2254] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2261), [sym_concatenation] = STATE(2261), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5335), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_PERCENT] = ACTIONS(5335), - [anon_sym_POUND] = ACTIONS(5339), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_COLON_DASH] = ACTIONS(5335), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5335), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5527), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5529), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5531), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5527), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5527), + [anon_sym_EQ] = ACTIONS(5527), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5527), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5533), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5527), + [sym__special_character] = ACTIONS(459), }, - [2254] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [2255] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2266), [sym_concatenation] = STATE(2266), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5343), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_PERCENT] = ACTIONS(5343), - [anon_sym_POUND] = ACTIONS(5347), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_COLON_DASH] = ACTIONS(5343), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5343), - [sym__special_character] = ACTIONS(517), - }, - [2255] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(5351), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5535), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5537), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5539), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5535), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5535), + [anon_sym_EQ] = ACTIONS(5535), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5535), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5541), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5535), + [sym__special_character] = ACTIONS(459), }, [2256] = { - [anon_sym_RPAREN] = ACTIONS(5351), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5543), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2257] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [2258] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(5355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5543), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [2258] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5547), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [2259] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(5357), + [anon_sym_RPAREN] = ACTIONS(5547), + [sym_comment] = ACTIONS(41), }, [2260] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2269), [sym_concatenation] = STATE(2269), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5359), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_PERCENT] = ACTIONS(5359), - [anon_sym_POUND] = ACTIONS(5363), - [anon_sym_COLON_DASH] = ACTIONS(5359), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5549), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5359), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5365), + [anon_sym_POUND] = ACTIONS(5551), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5553), + [anon_sym_DASH] = ACTIONS(5549), + [anon_sym_COLON_DASH] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5549), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5549), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5549), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5555), }, [2261] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5553), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2262] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2269), [sym_concatenation] = STATE(2269), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5359), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_PERCENT] = ACTIONS(5359), - [anon_sym_POUND] = ACTIONS(5363), - [anon_sym_SLASH] = ACTIONS(5367), - [anon_sym_COLON_DASH] = ACTIONS(5359), - [anon_sym_DQUOTE] = ACTIONS(513), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5549), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5359), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(5551), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5549), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5549), + [anon_sym_EQ] = ACTIONS(5549), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5549), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5553), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5549), + [sym__special_character] = ACTIONS(459), }, [2263] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2273), [sym_concatenation] = STATE(2273), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5369), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_PERCENT] = ACTIONS(5369), - [anon_sym_POUND] = ACTIONS(5373), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_COLON_DASH] = ACTIONS(5369), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5369), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5559), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5561), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5563), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5559), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5559), + [anon_sym_EQ] = ACTIONS(5559), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5559), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5565), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5559), + [sym__special_character] = ACTIONS(459), }, [2264] = { [sym_command_substitution] = STATE(2274), @@ -65436,191 +66999,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2274), [sym_concatenation] = STATE(2276), [sym_expansion] = STATE(2274), - [sym_word] = ACTIONS(5377), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5377), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5377), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5361), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5567), + [sym_word] = ACTIONS(5569), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5553), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2265] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2278), [sym_concatenation] = STATE(2278), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5379), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5379), - [anon_sym_PERCENT] = ACTIONS(5379), - [anon_sym_POUND] = ACTIONS(5383), - [anon_sym_COLON_DASH] = ACTIONS(5379), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5379), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5385), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5571), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5573), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5575), + [anon_sym_DASH] = ACTIONS(5571), + [anon_sym_COLON_DASH] = ACTIONS(5571), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5571), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5571), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5571), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5577), }, [2266] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5575), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2267] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(5387), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5579), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2268] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2279), [sym_concatenation] = STATE(2279), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5389), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(5389), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5389), - [anon_sym_PERCENT] = ACTIONS(5389), - [anon_sym_POUND] = ACTIONS(5393), - [anon_sym_COLON_DASH] = ACTIONS(5389), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5389), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5581), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5583), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5585), + [anon_sym_DASH] = ACTIONS(5581), + [anon_sym_COLON_DASH] = ACTIONS(5581), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5581), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5581), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5581), + [sym__special_character] = ACTIONS(459), }, [2269] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5585), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2270] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2279), [sym_concatenation] = STATE(2279), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5389), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(5389), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5389), - [anon_sym_PERCENT] = ACTIONS(5389), - [anon_sym_POUND] = ACTIONS(5393), - [anon_sym_COLON_DASH] = ACTIONS(5389), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5389), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5395), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5581), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5583), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5585), + [anon_sym_DASH] = ACTIONS(5581), + [anon_sym_COLON_DASH] = ACTIONS(5581), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5581), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5581), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5581), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5587), }, [2271] = { [sym_command_substitution] = STATE(2281), @@ -65631,697 +67200,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2281), [sym_concatenation] = STATE(2283), [sym_expansion] = STATE(2281), - [sym_word] = ACTIONS(5397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5397), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5397), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5391), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5589), + [sym_word] = ACTIONS(5591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5589), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5585), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5591), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2272] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2285), [sym_concatenation] = STATE(2285), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5399), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5401), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5399), - [anon_sym_PERCENT] = ACTIONS(5399), - [anon_sym_POUND] = ACTIONS(5403), - [anon_sym_COLON_DASH] = ACTIONS(5399), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5399), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5405), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5593), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5595), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5597), + [anon_sym_DASH] = ACTIONS(5593), + [anon_sym_COLON_DASH] = ACTIONS(5593), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5593), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5593), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5593), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5599), }, [2273] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5401), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5597), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2274] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5391), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5585), + [sym__concat] = ACTIONS(1294), }, [2275] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5407), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5601), + [sym_comment] = ACTIONS(41), }, [2276] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5391), + [anon_sym_RBRACE] = ACTIONS(5585), + [sym_comment] = ACTIONS(41), }, [2277] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2286), [sym_concatenation] = STATE(2286), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5409), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5409), - [anon_sym_PERCENT] = ACTIONS(5409), - [anon_sym_POUND] = ACTIONS(5413), - [anon_sym_COLON_DASH] = ACTIONS(5409), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5603), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5409), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(5605), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5607), + [anon_sym_DASH] = ACTIONS(5603), + [anon_sym_COLON_DASH] = ACTIONS(5603), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5603), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5603), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5603), + [sym__special_character] = ACTIONS(459), }, [2278] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5607), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2279] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2280] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2287), [sym_concatenation] = STATE(2287), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5417), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(5417), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5417), - [anon_sym_PERCENT] = ACTIONS(5417), - [anon_sym_POUND] = ACTIONS(5419), - [anon_sym_COLON_DASH] = ACTIONS(5417), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5417), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5611), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5613), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5609), + [anon_sym_DASH] = ACTIONS(5611), + [anon_sym_COLON_DASH] = ACTIONS(5611), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5611), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5611), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5611), + [sym__special_character] = ACTIONS(459), }, [2281] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5415), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5609), + [sym__concat] = ACTIONS(1294), }, [2282] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5421), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5615), + [sym_comment] = ACTIONS(41), }, [2283] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5415), + [anon_sym_RBRACE] = ACTIONS(5609), + [sym_comment] = ACTIONS(41), }, [2284] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2288), [sym_concatenation] = STATE(2288), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5423), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5425), - [anon_sym_DASH] = ACTIONS(5423), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5423), - [anon_sym_PERCENT] = ACTIONS(5423), - [anon_sym_POUND] = ACTIONS(5427), - [anon_sym_COLON_DASH] = ACTIONS(5423), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5423), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5619), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5621), + [anon_sym_DASH] = ACTIONS(5617), + [anon_sym_COLON_DASH] = ACTIONS(5617), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5617), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5617), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5617), + [sym__special_character] = ACTIONS(459), }, [2285] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5425), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5621), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2286] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5429), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5623), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2287] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5625), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2288] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5433), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5627), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2289] = { - [sym_string] = STATE(1292), - [anon_sym_DQUOTE] = ACTIONS(2895), - [aux_sym__simple_variable_name_token1] = ACTIONS(2917), - [anon_sym_AT] = ACTIONS(5435), - [anon_sym__] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(5437), - [anon_sym_STAR] = ACTIONS(5435), - [anon_sym_DOLLAR] = ACTIONS(5437), - [anon_sym_QMARK] = ACTIONS(5435), - [anon_sym_DASH] = ACTIONS(5437), - [sym_raw_string] = ACTIONS(5439), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5437), - [anon_sym_0] = ACTIONS(2917), + [sym_string] = STATE(1291), + [anon_sym__] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_POUND] = ACTIONS(5629), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_0] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__simple_variable_name_token1] = ACTIONS(3005), + [anon_sym_DOLLAR] = ACTIONS(5629), + [anon_sym_AT] = ACTIONS(5631), + [anon_sym_DASH] = ACTIONS(5629), + [sym_raw_string] = ACTIONS(5633), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5631), }, [2290] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), - [aux_sym_string_repeat1] = STATE(2298), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(5441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(5443), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(2297), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5637), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [2291] = { - [sym_command_substitution] = STATE(1296), - [sym_simple_expansion] = STATE(1296), - [sym_string_expansion] = STATE(1296), - [sym_string] = STATE(1296), - [sym_process_substitution] = STATE(1296), - [sym_expansion] = STATE(1296), - [sym_word] = ACTIONS(2891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), - [sym_raw_string] = ACTIONS(2891), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(3563), - [anon_sym_GT_LPAREN] = ACTIONS(2903), - [sym_ansii_c_string] = ACTIONS(2891), - [anon_sym_LT_LPAREN] = ACTIONS(2903), - [sym__special_character] = ACTIONS(2891), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5639), }, [2292] = { - [anon_sym_RPAREN] = ACTIONS(5445), - [sym_comment] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(5641), + [sym_comment] = ACTIONS(41), }, [2293] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(1298), + [sym_simple_expansion] = STATE(1298), + [sym_string_expansion] = STATE(1298), + [sym_string] = STATE(1298), + [sym_process_substitution] = STATE(1298), + [sym_expansion] = STATE(1298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2981), + [sym_word] = ACTIONS(2983), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(3687), + [anon_sym_LT_LPAREN] = ACTIONS(2989), + [sym_ansii_c_string] = ACTIONS(2981), + [anon_sym_BQUOTE] = ACTIONS(2991), + [anon_sym_GT_LPAREN] = ACTIONS(2989), + [sym__special_character] = ACTIONS(2981), + [sym_number] = ACTIONS(2983), + }, + [2294] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2301), [sym_concatenation] = STATE(2301), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5447), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5449), - [anon_sym_DASH] = ACTIONS(5447), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5447), - [anon_sym_PERCENT] = ACTIONS(5447), - [anon_sym_POUND] = ACTIONS(5451), - [anon_sym_SLASH] = ACTIONS(5453), - [anon_sym_COLON_DASH] = ACTIONS(5447), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5447), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5645), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5643), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5643), + [anon_sym_EQ] = ACTIONS(5643), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5643), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5649), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5643), + [sym__special_character] = ACTIONS(459), }, - [2294] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [2295] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2306), [sym_concatenation] = STATE(2306), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5457), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5455), - [anon_sym_PERCENT] = ACTIONS(5455), - [anon_sym_POUND] = ACTIONS(5459), - [anon_sym_SLASH] = ACTIONS(5461), - [anon_sym_COLON_DASH] = ACTIONS(5455), - [anon_sym_DQUOTE] = ACTIONS(513), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5651), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5455), - [sym__special_character] = ACTIONS(517), - }, - [2295] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(5463), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [anon_sym_POUND] = ACTIONS(5653), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5655), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5651), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5651), + [anon_sym_EQ] = ACTIONS(5651), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5651), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5657), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5651), + [sym__special_character] = ACTIONS(459), }, [2296] = { - [anon_sym_RPAREN] = ACTIONS(5463), - [sym_comment] = ACTIONS(19), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5659), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2297] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(5465), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), - }, - [2298] = { - [sym_command_substitution] = STATE(82), - [sym_simple_expansion] = STATE(82), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(82), - [anon_sym_DOLLAR] = ACTIONS(5467), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(5465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(5661), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(5659), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym__string_content] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [2298] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5663), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [2299] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(5469), + [anon_sym_RPAREN] = ACTIONS(5663), + [sym_comment] = ACTIONS(41), }, [2300] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2309), [sym_concatenation] = STATE(2309), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5473), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5471), - [anon_sym_PERCENT] = ACTIONS(5471), - [anon_sym_POUND] = ACTIONS(5475), - [anon_sym_COLON_DASH] = ACTIONS(5471), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5471), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5477), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5665), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5667), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5665), + [anon_sym_COLON_DASH] = ACTIONS(5665), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5665), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5665), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5665), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5671), }, [2301] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5473), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2302] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2309), [sym_concatenation] = STATE(2309), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5471), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5473), - [anon_sym_DASH] = ACTIONS(5471), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5471), - [anon_sym_PERCENT] = ACTIONS(5471), - [anon_sym_POUND] = ACTIONS(5475), - [anon_sym_SLASH] = ACTIONS(5479), - [anon_sym_COLON_DASH] = ACTIONS(5471), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5471), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5665), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5667), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5665), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5665), + [anon_sym_EQ] = ACTIONS(5665), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5665), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5669), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5665), + [sym__special_character] = ACTIONS(459), }, [2303] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2313), [sym_concatenation] = STATE(2313), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5481), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5483), - [anon_sym_DASH] = ACTIONS(5481), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_PERCENT] = ACTIONS(5481), - [anon_sym_POUND] = ACTIONS(5485), - [anon_sym_SLASH] = ACTIONS(5487), - [anon_sym_COLON_DASH] = ACTIONS(5481), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5481), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5675), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5677), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5679), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5675), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5675), + [anon_sym_EQ] = ACTIONS(5675), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5675), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5681), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5675), + [sym__special_character] = ACTIONS(459), }, [2304] = { [sym_command_substitution] = STATE(2314), @@ -66332,191 +67921,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2314), [sym_concatenation] = STATE(2316), [sym_expansion] = STATE(2314), - [sym_word] = ACTIONS(5489), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5489), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5489), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5473), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5683), + [sym_word] = ACTIONS(5685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5683), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5669), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5685), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2305] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2318), [sym_concatenation] = STATE(2318), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5491), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5493), - [anon_sym_DASH] = ACTIONS(5491), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5491), - [anon_sym_PERCENT] = ACTIONS(5491), - [anon_sym_POUND] = ACTIONS(5495), - [anon_sym_COLON_DASH] = ACTIONS(5491), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5491), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5497), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5687), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5689), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5691), + [anon_sym_DASH] = ACTIONS(5687), + [anon_sym_COLON_DASH] = ACTIONS(5687), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5687), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5687), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5687), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5693), }, [2306] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5493), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5691), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2307] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(571), - [anon_sym__] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(5499), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [sym__string_content] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(5695), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [2308] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2319), [sym_concatenation] = STATE(2319), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5503), - [anon_sym_DASH] = ACTIONS(5501), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5501), - [anon_sym_PERCENT] = ACTIONS(5501), - [anon_sym_POUND] = ACTIONS(5505), - [anon_sym_COLON_DASH] = ACTIONS(5501), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5697), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5501), - [sym__special_character] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(5699), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_COLON_DASH] = ACTIONS(5697), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5697), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5697), + [sym__special_character] = ACTIONS(459), }, [2309] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5503), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2310] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2319), [sym_concatenation] = STATE(2319), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5503), - [anon_sym_DASH] = ACTIONS(5501), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5501), - [anon_sym_PERCENT] = ACTIONS(5501), - [anon_sym_POUND] = ACTIONS(5505), - [anon_sym_COLON_DASH] = ACTIONS(5501), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5697), [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5501), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5507), + [anon_sym_POUND] = ACTIONS(5699), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5697), + [anon_sym_COLON_DASH] = ACTIONS(5697), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5697), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5697), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5703), }, [2311] = { [sym_command_substitution] = STATE(2321), @@ -66527,616 +68122,635 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2321), [sym_concatenation] = STATE(2323), [sym_expansion] = STATE(2321), - [sym_word] = ACTIONS(5509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5509), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5509), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5503), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5705), + [sym_word] = ACTIONS(5707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5705), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5701), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5707), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2312] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2325), [sym_concatenation] = STATE(2325), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5511), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5511), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5511), - [anon_sym_PERCENT] = ACTIONS(5511), - [anon_sym_POUND] = ACTIONS(5515), - [anon_sym_COLON_DASH] = ACTIONS(5511), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5511), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5709), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5711), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5713), + [anon_sym_DASH] = ACTIONS(5709), + [anon_sym_COLON_DASH] = ACTIONS(5709), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5709), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5709), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5709), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5715), }, [2313] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5713), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2314] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5503), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5701), + [sym__concat] = ACTIONS(1294), }, [2315] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5519), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5717), + [sym_comment] = ACTIONS(41), }, [2316] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5503), + [anon_sym_RBRACE] = ACTIONS(5701), + [sym_comment] = ACTIONS(41), }, [2317] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2326), [sym_concatenation] = STATE(2326), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5521), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5523), - [anon_sym_DASH] = ACTIONS(5521), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5521), - [anon_sym_PERCENT] = ACTIONS(5521), - [anon_sym_POUND] = ACTIONS(5525), - [anon_sym_COLON_DASH] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5521), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5719), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5721), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5723), + [anon_sym_DASH] = ACTIONS(5719), + [anon_sym_COLON_DASH] = ACTIONS(5719), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5719), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5719), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5719), + [sym__special_character] = ACTIONS(459), }, [2318] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5523), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5723), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2319] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5527), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5725), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2320] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2327), [sym_concatenation] = STATE(2327), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5529), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5527), - [anon_sym_DASH] = ACTIONS(5529), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5529), - [anon_sym_PERCENT] = ACTIONS(5529), - [anon_sym_POUND] = ACTIONS(5531), - [anon_sym_COLON_DASH] = ACTIONS(5529), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5529), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5727), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5729), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5725), + [anon_sym_DASH] = ACTIONS(5727), + [anon_sym_COLON_DASH] = ACTIONS(5727), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5727), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5727), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5727), + [sym__special_character] = ACTIONS(459), }, [2321] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5527), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5725), + [sym__concat] = ACTIONS(1294), }, [2322] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5533), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5731), + [sym_comment] = ACTIONS(41), }, [2323] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5527), + [anon_sym_RBRACE] = ACTIONS(5725), + [sym_comment] = ACTIONS(41), }, [2324] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2328), [sym_concatenation] = STATE(2328), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5535), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_DASH] = ACTIONS(5535), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5535), - [anon_sym_PERCENT] = ACTIONS(5535), - [anon_sym_POUND] = ACTIONS(5539), - [anon_sym_COLON_DASH] = ACTIONS(5535), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5535), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5733), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5735), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_COLON_DASH] = ACTIONS(5733), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5733), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5733), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5733), + [sym__special_character] = ACTIONS(459), }, [2325] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2326] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5739), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2327] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5543), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5741), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2328] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5545), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5743), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2329] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5745), + }, + [2330] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2335), [sym_concatenation] = STATE(2335), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5547), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5549), - [anon_sym_DASH] = ACTIONS(5547), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5547), - [anon_sym_POUND] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5553), - [anon_sym_COLON_DASH] = ACTIONS(5547), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5547), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5747), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5749), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5751), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5747), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5747), + [anon_sym_EQ] = ACTIONS(5747), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5747), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5753), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5747), + [sym__special_character] = ACTIONS(459), }, - [2330] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [2331] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2340), [sym_concatenation] = STATE(2340), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5555), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5557), - [anon_sym_DASH] = ACTIONS(5555), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5555), - [anon_sym_PERCENT] = ACTIONS(5555), - [anon_sym_POUND] = ACTIONS(5559), - [anon_sym_SLASH] = ACTIONS(5561), - [anon_sym_COLON_DASH] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5555), - [sym__special_character] = ACTIONS(517), - }, - [2331] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(5563), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5755), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5757), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5759), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5755), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5755), + [anon_sym_EQ] = ACTIONS(5755), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5755), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5761), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5755), + [sym__special_character] = ACTIONS(459), }, [2332] = { - [anon_sym_RPAREN] = ACTIONS(5563), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5763), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [2333] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(5565), + [anon_sym_RPAREN] = ACTIONS(5763), + [sym_comment] = ACTIONS(41), }, [2334] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2342), [sym_concatenation] = STATE(2342), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5567), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5567), - [anon_sym_PERCENT] = ACTIONS(5567), - [anon_sym_POUND] = ACTIONS(5571), - [anon_sym_COLON_DASH] = ACTIONS(5567), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5567), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5573), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5765), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5767), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5769), + [anon_sym_DASH] = ACTIONS(5765), + [anon_sym_COLON_DASH] = ACTIONS(5765), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5765), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5765), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5765), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5771), }, [2335] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5769), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2336] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2342), [sym_concatenation] = STATE(2342), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5567), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5569), - [anon_sym_DASH] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5567), - [anon_sym_PERCENT] = ACTIONS(5567), - [anon_sym_POUND] = ACTIONS(5571), - [anon_sym_SLASH] = ACTIONS(5575), - [anon_sym_COLON_DASH] = ACTIONS(5567), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5567), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5765), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5767), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5773), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5765), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5765), + [anon_sym_EQ] = ACTIONS(5765), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5765), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5769), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5765), + [sym__special_character] = ACTIONS(459), }, [2337] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2346), [sym_concatenation] = STATE(2346), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5577), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5579), - [anon_sym_DASH] = ACTIONS(5577), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5577), - [anon_sym_PERCENT] = ACTIONS(5577), - [anon_sym_POUND] = ACTIONS(5581), - [anon_sym_SLASH] = ACTIONS(5583), - [anon_sym_COLON_DASH] = ACTIONS(5577), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5577), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5775), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5777), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5775), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5775), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5775), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5781), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5775), + [sym__special_character] = ACTIONS(459), }, [2338] = { [sym_command_substitution] = STATE(2347), @@ -67147,176 +68761,182 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2347), [sym_concatenation] = STATE(2349), [sym_expansion] = STATE(2347), - [sym_word] = ACTIONS(5585), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5585), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5585), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5569), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5783), + [sym_word] = ACTIONS(5785), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5783), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5769), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5785), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2339] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2351), [sym_concatenation] = STATE(2351), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5587), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5589), - [anon_sym_DASH] = ACTIONS(5587), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5587), - [anon_sym_PERCENT] = ACTIONS(5587), - [anon_sym_POUND] = ACTIONS(5591), - [anon_sym_COLON_DASH] = ACTIONS(5587), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5587), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5593), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5787), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5789), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(5787), + [anon_sym_COLON_DASH] = ACTIONS(5787), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5787), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5787), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5787), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5793), }, [2340] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5589), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5791), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2341] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2352), [sym_concatenation] = STATE(2352), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5595), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5597), - [anon_sym_DASH] = ACTIONS(5595), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5595), - [anon_sym_PERCENT] = ACTIONS(5595), - [anon_sym_POUND] = ACTIONS(5599), - [anon_sym_COLON_DASH] = ACTIONS(5595), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5595), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5795), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5797), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5799), + [anon_sym_DASH] = ACTIONS(5795), + [anon_sym_COLON_DASH] = ACTIONS(5795), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5795), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5795), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5795), + [sym__special_character] = ACTIONS(459), }, [2342] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5597), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5799), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2343] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2352), [sym_concatenation] = STATE(2352), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5595), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5597), - [anon_sym_DASH] = ACTIONS(5595), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5595), - [anon_sym_PERCENT] = ACTIONS(5595), - [anon_sym_POUND] = ACTIONS(5599), - [anon_sym_COLON_DASH] = ACTIONS(5595), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5595), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5601), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5795), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5797), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5799), + [anon_sym_DASH] = ACTIONS(5795), + [anon_sym_COLON_DASH] = ACTIONS(5795), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5795), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5795), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5795), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5801), }, [2344] = { [sym_command_substitution] = STATE(2354), @@ -67327,616 +68947,635 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2354), [sym_concatenation] = STATE(2356), [sym_expansion] = STATE(2354), - [sym_word] = ACTIONS(5603), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5603), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5603), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5597), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5803), + [sym_word] = ACTIONS(5805), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5803), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5799), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5805), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2345] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2358), [sym_concatenation] = STATE(2358), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5605), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5607), - [anon_sym_DASH] = ACTIONS(5605), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5605), - [anon_sym_PERCENT] = ACTIONS(5605), - [anon_sym_POUND] = ACTIONS(5609), - [anon_sym_COLON_DASH] = ACTIONS(5605), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5605), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5611), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5807), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5809), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_COLON_DASH] = ACTIONS(5807), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5807), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5807), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5807), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5813), }, [2346] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5607), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2347] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5597), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5799), + [sym__concat] = ACTIONS(1294), }, [2348] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5613), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5815), + [sym_comment] = ACTIONS(41), }, [2349] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5597), + [anon_sym_RBRACE] = ACTIONS(5799), + [sym_comment] = ACTIONS(41), }, [2350] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2359), [sym_concatenation] = STATE(2359), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5615), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5617), - [anon_sym_DASH] = ACTIONS(5615), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5615), - [anon_sym_POUND] = ACTIONS(5619), - [anon_sym_COLON_DASH] = ACTIONS(5615), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5615), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5817), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5819), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5821), + [anon_sym_DASH] = ACTIONS(5817), + [anon_sym_COLON_DASH] = ACTIONS(5817), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5817), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5817), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5817), + [sym__special_character] = ACTIONS(459), }, [2351] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5617), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5821), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2352] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5621), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5823), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2353] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2360), [sym_concatenation] = STATE(2360), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5623), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5621), - [anon_sym_DASH] = ACTIONS(5623), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5623), - [anon_sym_PERCENT] = ACTIONS(5623), - [anon_sym_POUND] = ACTIONS(5625), - [anon_sym_COLON_DASH] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5623), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5825), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5827), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5823), + [anon_sym_DASH] = ACTIONS(5825), + [anon_sym_COLON_DASH] = ACTIONS(5825), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5825), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5825), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5825), + [sym__special_character] = ACTIONS(459), }, [2354] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5621), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5823), + [sym__concat] = ACTIONS(1294), }, [2355] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5627), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5829), + [sym_comment] = ACTIONS(41), }, [2356] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5621), + [anon_sym_RBRACE] = ACTIONS(5823), + [sym_comment] = ACTIONS(41), }, [2357] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2361), [sym_concatenation] = STATE(2361), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5629), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5631), - [anon_sym_DASH] = ACTIONS(5629), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5629), - [anon_sym_PERCENT] = ACTIONS(5629), - [anon_sym_POUND] = ACTIONS(5633), - [anon_sym_COLON_DASH] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5629), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5831), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5833), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5835), + [anon_sym_DASH] = ACTIONS(5831), + [anon_sym_COLON_DASH] = ACTIONS(5831), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5831), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5831), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5831), + [sym__special_character] = ACTIONS(459), }, [2358] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5631), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5835), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2359] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5635), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2360] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5839), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2361] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5639), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2362] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5843), + }, + [2363] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2368), [sym_concatenation] = STATE(2368), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5641), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5641), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5641), - [anon_sym_PERCENT] = ACTIONS(5641), - [anon_sym_POUND] = ACTIONS(5645), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_COLON_DASH] = ACTIONS(5641), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5641), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5845), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5847), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5849), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5845), + [anon_sym_EQ] = ACTIONS(5845), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5845), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5851), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5845), + [sym__special_character] = ACTIONS(459), }, - [2363] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [2364] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2373), [sym_concatenation] = STATE(2373), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5649), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5651), - [anon_sym_DASH] = ACTIONS(5649), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5649), - [anon_sym_PERCENT] = ACTIONS(5649), - [anon_sym_POUND] = ACTIONS(5653), - [anon_sym_SLASH] = ACTIONS(5655), - [anon_sym_COLON_DASH] = ACTIONS(5649), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5649), - [sym__special_character] = ACTIONS(517), - }, - [2364] = { - [sym_word] = ACTIONS(325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [sym_variable_name] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(5657), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(325), - [anon_sym_GT_AMP] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_AMP] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [sym_ansii_c_string] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym__special_character] = ACTIONS(325), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5853), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5855), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5857), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5853), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5853), + [anon_sym_EQ] = ACTIONS(5853), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5853), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5859), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5853), + [sym__special_character] = ACTIONS(459), }, [2365] = { - [anon_sym_RPAREN] = ACTIONS(5657), - [sym_comment] = ACTIONS(19), + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5861), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, [2366] = { - [sym_comment] = ACTIONS(19), - [anon_sym_BQUOTE] = ACTIONS(5659), + [anon_sym_RPAREN] = ACTIONS(5861), + [sym_comment] = ACTIONS(41), }, [2367] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2375), [sym_concatenation] = STATE(2375), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_DASH] = ACTIONS(5661), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_PERCENT] = ACTIONS(5661), - [anon_sym_POUND] = ACTIONS(5665), - [anon_sym_COLON_DASH] = ACTIONS(5661), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5661), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5667), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5863), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5865), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5867), + [anon_sym_DASH] = ACTIONS(5863), + [anon_sym_COLON_DASH] = ACTIONS(5863), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5863), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5863), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5869), }, [2368] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5867), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2369] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2375), [sym_concatenation] = STATE(2375), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_DASH] = ACTIONS(5661), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_PERCENT] = ACTIONS(5661), - [anon_sym_POUND] = ACTIONS(5665), - [anon_sym_SLASH] = ACTIONS(5669), - [anon_sym_COLON_DASH] = ACTIONS(5661), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5661), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5863), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5865), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5871), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5863), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5863), + [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5863), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5867), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5863), + [sym__special_character] = ACTIONS(459), }, [2370] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2379), [sym_concatenation] = STATE(2379), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5671), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5673), - [anon_sym_DASH] = ACTIONS(5671), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5671), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_POUND] = ACTIONS(5675), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_COLON_DASH] = ACTIONS(5671), - [anon_sym_DQUOTE] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5671), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5873), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5875), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5877), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5873), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5873), + [anon_sym_EQ] = ACTIONS(5873), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5873), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5879), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5873), + [sym__special_character] = ACTIONS(459), }, [2371] = { [sym_command_substitution] = STATE(2380), @@ -67947,176 +69586,182 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2380), [sym_concatenation] = STATE(2382), [sym_expansion] = STATE(2380), - [sym_word] = ACTIONS(5679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5679), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5679), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5663), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5881), + [sym_word] = ACTIONS(5883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5881), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5867), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5883), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2372] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2384), [sym_concatenation] = STATE(2384), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5681), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5683), - [anon_sym_DASH] = ACTIONS(5681), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5681), - [anon_sym_PERCENT] = ACTIONS(5681), - [anon_sym_POUND] = ACTIONS(5685), - [anon_sym_COLON_DASH] = ACTIONS(5681), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5681), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5687), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5885), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5887), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(5885), + [anon_sym_COLON_DASH] = ACTIONS(5885), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5885), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5885), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5885), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5891), }, [2373] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5683), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5889), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2374] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2385), [sym_concatenation] = STATE(2385), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5689), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5689), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5689), - [anon_sym_PERCENT] = ACTIONS(5689), - [anon_sym_POUND] = ACTIONS(5693), - [anon_sym_COLON_DASH] = ACTIONS(5689), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5689), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5893), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5895), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_COLON_DASH] = ACTIONS(5893), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5893), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5893), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5893), + [sym__special_character] = ACTIONS(459), }, [2375] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2376] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2385), [sym_concatenation] = STATE(2385), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5689), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5689), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5689), - [anon_sym_PERCENT] = ACTIONS(5689), - [anon_sym_POUND] = ACTIONS(5693), - [anon_sym_COLON_DASH] = ACTIONS(5689), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5689), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5695), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5893), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5895), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_COLON_DASH] = ACTIONS(5893), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5893), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5893), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5893), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5899), }, [2377] = { [sym_command_substitution] = STATE(2387), @@ -68127,393 +69772,405 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2387), [sym_concatenation] = STATE(2389), [sym_expansion] = STATE(2387), - [sym_word] = ACTIONS(5697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(5697), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [sym_ansii_c_string] = ACTIONS(5697), - [anon_sym_GT_LPAREN] = ACTIONS(966), - [anon_sym_LT_LPAREN] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(5691), - [sym__special_character] = ACTIONS(968), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5901), + [sym_word] = ACTIONS(5903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [sym_ansii_c_string] = ACTIONS(5901), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5897), + [sym__special_character] = ACTIONS(947), + [sym_number] = ACTIONS(5903), + [anon_sym_GT_LPAREN] = ACTIONS(943), }, [2378] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2391), [sym_concatenation] = STATE(2391), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5699), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(5699), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5699), - [anon_sym_PERCENT] = ACTIONS(5699), - [anon_sym_POUND] = ACTIONS(5703), - [anon_sym_COLON_DASH] = ACTIONS(5699), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5699), - [sym__special_character] = ACTIONS(517), - [sym_regex] = ACTIONS(5705), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5905), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5907), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(5905), + [anon_sym_COLON_DASH] = ACTIONS(5905), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5905), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5905), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5911), }, [2379] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2380] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5691), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5897), + [sym__concat] = ACTIONS(1294), }, [2381] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5707), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5913), + [sym_comment] = ACTIONS(41), }, [2382] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5691), + [anon_sym_RBRACE] = ACTIONS(5897), + [sym_comment] = ACTIONS(41), }, [2383] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2392), [sym_concatenation] = STATE(2392), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5709), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5711), - [anon_sym_DASH] = ACTIONS(5709), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5709), - [anon_sym_PERCENT] = ACTIONS(5709), - [anon_sym_POUND] = ACTIONS(5713), - [anon_sym_COLON_DASH] = ACTIONS(5709), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5709), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_COLON_DASH] = ACTIONS(5915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5915), + [sym__special_character] = ACTIONS(459), }, [2384] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5711), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5919), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2385] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5715), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5921), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2386] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2393), [sym_concatenation] = STATE(2393), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5717), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5715), - [anon_sym_DASH] = ACTIONS(5717), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5717), - [anon_sym_PERCENT] = ACTIONS(5717), - [anon_sym_POUND] = ACTIONS(5719), - [anon_sym_COLON_DASH] = ACTIONS(5717), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5717), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5923), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5925), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5921), + [anon_sym_DASH] = ACTIONS(5923), + [anon_sym_COLON_DASH] = ACTIONS(5923), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5923), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5923), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5923), + [sym__special_character] = ACTIONS(459), }, [2387] = { - [aux_sym_concatenation_repeat1] = STATE(1097), - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5715), - [sym__concat] = ACTIONS(1313), + [aux_sym_concatenation_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5921), + [sym__concat] = ACTIONS(1294), }, [2388] = { [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(5721), - [sym_comment] = ACTIONS(19), + [sym__special_character] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(5927), + [sym_comment] = ACTIONS(41), }, [2389] = { - [sym_comment] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(5715), + [anon_sym_RBRACE] = ACTIONS(5921), + [sym_comment] = ACTIONS(41), }, [2390] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), [aux_sym_expansion_repeat1] = STATE(2394), [sym_concatenation] = STATE(2394), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(5723), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5725), - [anon_sym_DASH] = ACTIONS(5723), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5723), - [anon_sym_PERCENT] = ACTIONS(5723), - [anon_sym_POUND] = ACTIONS(5727), - [anon_sym_COLON_DASH] = ACTIONS(5723), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(5723), - [sym__special_character] = ACTIONS(517), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5929), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5931), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(5929), + [anon_sym_COLON_DASH] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5929), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5929), + [sym__special_character] = ACTIONS(459), }, [2391] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5725), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5933), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2392] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5729), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5935), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2393] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2394] = { - [sym_command_substitution] = STATE(133), - [aux_sym__literal_repeat1] = STATE(136), - [sym_string] = STATE(133), - [sym_process_substitution] = STATE(133), - [sym_simple_expansion] = STATE(133), - [sym_string_expansion] = STATE(133), - [aux_sym_expansion_repeat1] = STATE(209), - [sym_concatenation] = STATE(209), - [sym_expansion] = STATE(133), - [sym_word] = ACTIONS(493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(497), - [sym_raw_string] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(5733), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_COLON_DASH] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(499), - [anon_sym_COLON_QMARK] = ACTIONS(938), - [sym__special_character] = ACTIONS(517), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(917), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5939), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(915), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(915), + [sym__special_character] = ACTIONS(459), }, [2395] = { [aux_sym__literal_repeat1] = STATE(386), @@ -68524,8 +70181,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -68534,10 +70191,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1368), + [sym__statements] = STATE(1367), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -68545,49 +70202,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2396] = { + [aux_sym__literal_repeat1] = STATE(386), + [sym_if_statement] = STATE(1462), + [sym_function_definition] = STATE(1462), + [sym_negated_command] = STATE(1462), + [sym_test_command] = STATE(1462), + [sym_variable_assignment] = STATE(541), + [sym_subscript] = STATE(2407), + [sym_concatenation] = STATE(389), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [aux_sym__statements_repeat1] = STATE(543), + [sym_redirected_statement] = STATE(1462), + [sym_for_statement] = STATE(1462), + [sym_compound_statement] = STATE(1462), + [sym_subshell] = STATE(1462), + [sym_declaration_command] = STATE(1462), + [sym_unset_command] = STATE(1462), + [sym_file_redirect] = STATE(1464), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_command_repeat1] = STATE(1464), + [sym__statements] = STATE(1368), + [sym_c_style_for_statement] = STATE(1462), + [sym_while_statement] = STATE(1462), + [sym_case_statement] = STATE(1462), + [sym_pipeline] = STATE(1462), + [sym_list] = STATE(1462), + [sym_command] = STATE(1462), + [sym_command_name] = STATE(545), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(187), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + }, + [2397] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -68596,8 +70327,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -68606,8 +70337,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1369), [sym_c_style_for_statement] = STATE(387), @@ -68617,114 +70348,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2397] = { - [sym_word] = ACTIONS(5735), - [sym_comment] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2398] = { - [aux_sym__literal_repeat1] = STATE(68), - [sym_unary_expression] = STATE(1374), - [sym_postfix_expression] = STATE(1374), - [sym_string] = STATE(65), - [sym_process_substitution] = STATE(65), - [sym__expression] = STATE(1374), - [sym_binary_expression] = STATE(1374), - [sym_concatenation] = STATE(1374), - [sym_expansion] = STATE(65), - [sym_command_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(1374), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), + [sym_subscript] = STATE(1371), + [anon_sym__] = ACTIONS(5941), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5943), + [anon_sym_BANG] = ACTIONS(5943), + [sym_variable_name] = ACTIONS(5945), + [anon_sym_DOLLAR] = ACTIONS(5947), + [anon_sym_DASH] = ACTIONS(5947), + [anon_sym_AT] = ACTIONS(5949), + [anon_sym_0] = ACTIONS(5941), + [anon_sym_STAR] = ACTIONS(5949), + [aux_sym__simple_variable_name_token1] = ACTIONS(5941), + [anon_sym_QMARK] = ACTIONS(5949), }, [2399] = { - [sym_subscript] = STATE(1375), - [aux_sym__simple_variable_name_token1] = ACTIONS(5737), - [anon_sym_BANG] = ACTIONS(5739), - [sym_variable_name] = ACTIONS(5741), - [anon_sym_DOLLAR] = ACTIONS(5743), - [anon_sym_DASH] = ACTIONS(5743), - [anon_sym_QMARK] = ACTIONS(5745), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5739), - [anon_sym__] = ACTIONS(5737), - [anon_sym_AT] = ACTIONS(5745), - [anon_sym_STAR] = ACTIONS(5745), - [anon_sym_0] = ACTIONS(5737), + [sym_word] = ACTIONS(5951), + [sym_comment] = ACTIONS(41), }, [2400] = { - [anon_sym_PLUS_EQ] = ACTIONS(5747), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(5747), - [sym_comment] = ACTIONS(19), + [aux_sym__literal_repeat1] = STATE(73), + [sym_unary_expression] = STATE(1377), + [sym_postfix_expression] = STATE(1377), + [sym_string] = STATE(71), + [sym_process_substitution] = STATE(71), + [sym__expression] = STATE(1377), + [sym_binary_expression] = STATE(1377), + [sym_concatenation] = STATE(1377), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(1377), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [2401] = { - [anon_sym_AMP_GT_GT] = ACTIONS(5749), - [anon_sym_GT_AMP] = ACTIONS(5749), - [anon_sym_LT] = ACTIONS(5751), - [anon_sym_LT_AMP] = ACTIONS(5749), - [anon_sym_GT_GT] = ACTIONS(5749), - [anon_sym_GT] = ACTIONS(5751), - [anon_sym_AMP_GT] = ACTIONS(5751), - [sym_comment] = ACTIONS(19), + [anon_sym_PLUS_EQ] = ACTIONS(5953), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(5953), }, [2402] = { + [anon_sym_AMP_GT_GT] = ACTIONS(5955), + [sym_comment] = ACTIONS(41), + [anon_sym_GT_AMP] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5957), + [anon_sym_LT_AMP] = ACTIONS(5955), + [anon_sym_GT_GT] = ACTIONS(5955), + [anon_sym_GT] = ACTIONS(5957), + [anon_sym_AMP_GT] = ACTIONS(5957), + }, + [2403] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -68733,8 +70466,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -68742,202 +70475,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1379), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1382), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1380), + [sym__statements] = STATE(1383), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), [sym_pipeline] = STATE(387), [sym_list] = STATE(387), [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2403] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1383), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_command_name] = STATE(392), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2404] = { [aux_sym__literal_repeat1] = STATE(386), [sym__terminated_statement] = STATE(1384), - [sym_if_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_negated_command] = STATE(60), - [sym_test_command] = STATE(60), - [sym_variable_assignment] = STATE(61), + [sym_if_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_negated_command] = STATE(65), + [sym_test_command] = STATE(65), + [sym_variable_assignment] = STATE(66), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_compound_statement] = STATE(60), - [sym_subshell] = STATE(60), - [sym_declaration_command] = STATE(60), - [sym_unset_command] = STATE(60), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_compound_statement] = STATE(65), + [sym_subshell] = STATE(65), + [sym_declaration_command] = STATE(65), + [sym_unset_command] = STATE(65), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_case_statement] = STATE(60), - [sym_pipeline] = STATE(60), - [sym_list] = STATE(60), - [sym_command] = STATE(60), + [sym_c_style_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_case_statement] = STATE(65), + [sym_pipeline] = STATE(65), + [sym_list] = STATE(65), + [sym_command] = STATE(65), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2405] = { [aux_sym__literal_repeat1] = STATE(409), @@ -68953,112 +70616,115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1385), [sym_simple_expansion] = STATE(407), [sym_string_expansion] = STATE(407), - [sym_word] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_test_operator] = ACTIONS(293), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(283), - [sym__special_character] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(283), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_test_operator] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(293), + [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym_number] = ACTIONS(297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_word] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(285), + [sym__special_character] = ACTIONS(305), }, [2406] = { - [aux_sym__literal_repeat1] = STATE(68), + [aux_sym__literal_repeat1] = STATE(73), [sym_unary_expression] = STATE(1386), [sym_postfix_expression] = STATE(1386), - [sym_string] = STATE(65), - [sym_process_substitution] = STATE(65), + [sym_string] = STATE(71), + [sym_process_substitution] = STATE(71), [sym__expression] = STATE(1386), [sym_binary_expression] = STATE(1386), [sym_concatenation] = STATE(1386), - [sym_expansion] = STATE(65), - [sym_command_substitution] = STATE(65), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), [sym_parenthesized_expression] = STATE(1386), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [2407] = { - [anon_sym_PLUS_EQ] = ACTIONS(5747), - [anon_sym_EQ] = ACTIONS(5747), - [sym_comment] = ACTIONS(19), + [anon_sym_PLUS_EQ] = ACTIONS(5953), + [sym_comment] = ACTIONS(41), + [anon_sym_EQ] = ACTIONS(5953), }, [2408] = { - [anon_sym_RPAREN] = ACTIONS(5753), - [sym_comment] = ACTIONS(19), + [sym_subscript] = STATE(1391), + [anon_sym__] = ACTIONS(5959), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5963), + [anon_sym_DASH] = ACTIONS(5963), + [anon_sym_AT] = ACTIONS(5965), + [anon_sym_0] = ACTIONS(5959), + [anon_sym_STAR] = ACTIONS(5965), + [aux_sym__simple_variable_name_token1] = ACTIONS(5959), + [anon_sym_QMARK] = ACTIONS(5965), }, [2409] = { - [sym_comment] = ACTIONS(19), - [anon_sym_then] = ACTIONS(5755), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(5967), }, [2410] = { - [sym_command_substitution] = STATE(65), - [sym_unary_expression] = STATE(1391), - [sym_postfix_expression] = STATE(1391), - [sym_string] = STATE(65), - [aux_sym__literal_repeat1] = STATE(68), - [sym_process_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(1391), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym__expression] = STATE(1391), - [sym_binary_expression] = STATE(1391), - [sym_concatenation] = STATE(1391), - [sym_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), + [anon_sym_RPAREN] = ACTIONS(5969), + [sym_comment] = ACTIONS(41), }, [2411] = { - [sym_subscript] = STATE(1394), - [aux_sym__simple_variable_name_token1] = ACTIONS(5757), - [sym_variable_name] = ACTIONS(5759), - [anon_sym_DOLLAR] = ACTIONS(5761), - [anon_sym_DASH] = ACTIONS(5761), - [anon_sym_QMARK] = ACTIONS(5763), - [sym_comment] = ACTIONS(19), - [anon_sym__] = ACTIONS(5757), - [anon_sym_AT] = ACTIONS(5763), - [anon_sym_STAR] = ACTIONS(5763), - [anon_sym_0] = ACTIONS(5757), + [anon_sym_then] = ACTIONS(5971), + [sym_comment] = ACTIONS(41), }, [2412] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(5765), - [sym_comment] = ACTIONS(19), + [sym_command_substitution] = STATE(71), + [sym_unary_expression] = STATE(1398), + [sym_postfix_expression] = STATE(1398), + [sym_string] = STATE(71), + [aux_sym__literal_repeat1] = STATE(73), + [sym_process_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(1398), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym__expression] = STATE(1398), + [sym_binary_expression] = STATE(1398), + [sym_concatenation] = STATE(1398), + [sym_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [2413] = { [sym_command_substitution] = STATE(1400), @@ -69069,65 +70735,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(1400), [sym_concatenation] = STATE(1402), [sym_expansion] = STATE(1400), - [sym_word] = ACTIONS(5767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(279), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(281), - [sym_raw_string] = ACTIONS(5767), - [anon_sym_BQUOTE] = ACTIONS(295), - [anon_sym_DOLLAR] = ACTIONS(287), - [sym_ansii_c_string] = ACTIONS(5767), - [anon_sym_GT_LPAREN] = ACTIONS(289), - [anon_sym_LT_LPAREN] = ACTIONS(289), - [sym__special_character] = ACTIONS(565), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5973), + [sym_word] = ACTIONS(5975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), + [anon_sym_DOLLAR] = ACTIONS(289), + [sym_ansii_c_string] = ACTIONS(5973), + [anon_sym_LT_LPAREN] = ACTIONS(295), + [anon_sym_BQUOTE] = ACTIONS(293), + [sym__special_character] = ACTIONS(581), + [sym_number] = ACTIONS(5975), + [anon_sym_GT_LPAREN] = ACTIONS(295), }, [2414] = { - [anon_sym_LF] = ACTIONS(5769), - [anon_sym_SEMI] = ACTIONS(5771), - [anon_sym_AMP] = ACTIONS(5771), + [anon_sym_SEMI_SEMI] = ACTIONS(5977), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI_SEMI] = ACTIONS(5771), - [anon_sym_in] = ACTIONS(5773), + [anon_sym_LF] = ACTIONS(5979), + [anon_sym_SEMI] = ACTIONS(5977), + [anon_sym_in] = ACTIONS(5981), + [anon_sym_AMP] = ACTIONS(5977), }, [2415] = { - [anon_sym_RPAREN] = ACTIONS(5775), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(5983), }, [2416] = { - [anon_sym_LF] = ACTIONS(5777), - [anon_sym_SEMI] = ACTIONS(5779), - [anon_sym_AMP] = ACTIONS(5779), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI_SEMI] = ACTIONS(5779), + [anon_sym_RPAREN] = ACTIONS(5985), + [sym_comment] = ACTIONS(41), }, [2417] = { - [anon_sym_LF] = ACTIONS(5781), - [anon_sym_SEMI] = ACTIONS(5783), - [anon_sym_AMP] = ACTIONS(5783), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI_SEMI] = ACTIONS(5783), + [anon_sym_LF] = ACTIONS(5987), + [anon_sym_SEMI] = ACTIONS(5989), + [anon_sym_SEMI_SEMI] = ACTIONS(5989), + [anon_sym_AMP] = ACTIONS(5989), }, [2418] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(5785), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(5991), + [anon_sym_SEMI] = ACTIONS(5993), + [anon_sym_SEMI_SEMI] = ACTIONS(5993), + [anon_sym_AMP] = ACTIONS(5993), }, [2419] = { - [anon_sym_LF] = ACTIONS(5787), - [anon_sym_SEMI] = ACTIONS(5789), - [anon_sym_AMP] = ACTIONS(5789), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI_SEMI] = ACTIONS(5789), + [anon_sym_LF] = ACTIONS(5995), + [anon_sym_SEMI] = ACTIONS(5997), + [anon_sym_SEMI_SEMI] = ACTIONS(5997), + [anon_sym_AMP] = ACTIONS(5997), }, [2420] = { - [anon_sym_LF] = ACTIONS(5791), - [anon_sym_SEMI] = ACTIONS(5793), - [anon_sym_AMP] = ACTIONS(5793), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI_SEMI] = ACTIONS(5793), + [anon_sym_LF] = ACTIONS(5999), + [anon_sym_SEMI] = ACTIONS(6001), + [anon_sym_SEMI_SEMI] = ACTIONS(6001), + [anon_sym_AMP] = ACTIONS(6001), }, [2421] = { + [aux_sym__literal_repeat1] = STATE(73), + [sym_unary_expression] = STATE(2425), + [sym_postfix_expression] = STATE(2425), + [sym_string] = STATE(71), + [sym_process_substitution] = STATE(71), + [sym__expression] = STATE(2425), + [sym_binary_expression] = STATE(2425), + [sym_concatenation] = STATE(2425), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(2425), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6003), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), + }, + [2422] = { [sym_command_substitution] = STATE(482), [aux_sym__literal_repeat1] = STATE(484), [sym_string] = STATE(482), @@ -69137,335 +70836,311 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(482), [sym_concatenation] = STATE(503), [sym_expansion] = STATE(482), - [sym_word] = ACTIONS(1373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1377), - [sym_raw_string] = ACTIONS(1373), - [anon_sym_LF] = ACTIONS(5795), - [anon_sym_SEMI] = ACTIONS(5797), - [anon_sym_DOLLAR] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(5797), - [anon_sym_LT_LPAREN] = ACTIONS(1383), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1387), - [anon_sym_GT_LPAREN] = ACTIONS(1383), - [sym_ansii_c_string] = ACTIONS(1373), - [sym__special_character] = ACTIONS(1389), - [anon_sym_SEMI_SEMI] = ACTIONS(5797), - }, - [2422] = { - [aux_sym__literal_repeat1] = STATE(68), - [sym_unary_expression] = STATE(2425), - [sym_postfix_expression] = STATE(2425), - [sym_string] = STATE(65), - [sym_process_substitution] = STATE(65), - [sym__expression] = STATE(2425), - [sym_binary_expression] = STATE(2425), - [sym_concatenation] = STATE(2425), - [sym_expansion] = STATE(65), - [sym_command_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(2425), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5799), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1104), + [anon_sym_LF] = ACTIONS(6005), + [anon_sym_SEMI] = ACTIONS(6007), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_word] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1416), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1104), + [sym__special_character] = ACTIONS(1418), + [anon_sym_SEMI_SEMI] = ACTIONS(6007), + [anon_sym_AMP] = ACTIONS(6007), }, [2423] = { - [aux_sym__literal_repeat1] = STATE(259), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(1448), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_command_substitution] = STATE(257), - [sym_case_item] = STATE(306), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(306), - [sym_word] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(1234), - [sym__special_character] = ACTIONS(231), + [aux_sym__literal_repeat1] = STATE(271), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(1450), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [sym_command_substitution] = STATE(269), + [sym_case_item] = STATE(312), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(312), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(1340), + [sym__special_character] = ACTIONS(255), }, [2424] = { - [aux_sym__literal_repeat1] = STATE(259), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), - [sym_last_case_item] = STATE(1449), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_command_substitution] = STATE(257), - [sym_case_item] = STATE(306), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(306), - [sym_word] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(1234), - [sym__special_character] = ACTIONS(231), + [aux_sym__literal_repeat1] = STATE(271), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), + [sym_last_case_item] = STATE(1451), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [sym_command_substitution] = STATE(269), + [sym_case_item] = STATE(312), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(312), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(1340), + [sym__special_character] = ACTIONS(255), }, [2425] = { - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5801), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [sym_test_operator] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(483), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6009), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [sym_test_operator] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_AMP_AMP] = ACTIONS(541), }, [2426] = { - [aux_sym__literal_repeat1] = STATE(68), + [aux_sym__literal_repeat1] = STATE(73), [sym_unary_expression] = STATE(2429), [sym_postfix_expression] = STATE(2429), - [sym_string] = STATE(65), - [sym_process_substitution] = STATE(65), + [sym_string] = STATE(71), + [sym_process_substitution] = STATE(71), [sym__expression] = STATE(2429), [sym_binary_expression] = STATE(2429), [sym_concatenation] = STATE(2429), - [sym_expansion] = STATE(65), - [sym_command_substitution] = STATE(65), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), [sym_parenthesized_expression] = STATE(2429), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5801), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6009), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [2427] = { - [aux_sym__literal_repeat1] = STATE(259), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), + [aux_sym__literal_repeat1] = STATE(271), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), [sym_last_case_item] = STATE(1454), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_command_substitution] = STATE(257), - [sym_case_item] = STATE(306), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(306), - [sym_word] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(1234), - [sym__special_character] = ACTIONS(231), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [sym_command_substitution] = STATE(269), + [sym_case_item] = STATE(312), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(312), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(1340), + [sym__special_character] = ACTIONS(255), }, [2428] = { - [aux_sym__literal_repeat1] = STATE(259), - [sym_string] = STATE(257), - [sym_process_substitution] = STATE(257), + [aux_sym__literal_repeat1] = STATE(271), + [sym_string] = STATE(269), + [sym_process_substitution] = STATE(269), [sym_last_case_item] = STATE(1455), - [sym_concatenation] = STATE(262), - [sym_expansion] = STATE(257), - [sym_command_substitution] = STATE(257), - [sym_case_item] = STATE(306), - [sym_simple_expansion] = STATE(257), - [sym_string_expansion] = STATE(257), - [aux_sym_case_statement_repeat1] = STATE(306), - [sym_word] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(1234), - [sym__special_character] = ACTIONS(231), + [sym_concatenation] = STATE(274), + [sym_expansion] = STATE(269), + [sym_command_substitution] = STATE(269), + [sym_case_item] = STATE(312), + [sym_simple_expansion] = STATE(269), + [sym_string_expansion] = STATE(269), + [aux_sym_case_statement_repeat1] = STATE(312), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(1340), + [sym__special_character] = ACTIONS(255), }, [2429] = { - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5803), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [sym_test_operator] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(483), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6011), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [sym_test_operator] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_AMP_AMP] = ACTIONS(541), }, [2430] = { - [aux_sym__literal_repeat1] = STATE(68), + [aux_sym__literal_repeat1] = STATE(73), [sym_unary_expression] = STATE(2431), [sym_postfix_expression] = STATE(2431), - [sym_string] = STATE(65), - [sym_process_substitution] = STATE(65), + [sym_string] = STATE(71), + [sym_process_substitution] = STATE(71), [sym__expression] = STATE(2431), [sym_binary_expression] = STATE(2431), [sym_concatenation] = STATE(2431), - [sym_expansion] = STATE(65), - [sym_command_substitution] = STATE(65), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), [sym_parenthesized_expression] = STATE(2431), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5803), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6011), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), }, [2431] = { - [anon_sym_PLUS_EQ] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [sym_comment] = ACTIONS(19), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5805), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [sym_test_operator] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_EQ_TILDE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_DASH_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(483), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6013), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_EQ_TILDE] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(41), + [sym_test_operator] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_AMP_AMP] = ACTIONS(541), }, [2432] = { - [aux_sym_concatenation_repeat1] = STATE(818), - [anon_sym_RBRACK] = ACTIONS(359), - [sym_comment] = ACTIONS(19), - [sym__concat] = ACTIONS(5807), + [aux_sym_concatenation_repeat1] = STATE(820), + [anon_sym_RBRACK] = ACTIONS(433), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(6015), }, [2433] = { - [aux_sym_concatenation_repeat1] = STATE(1074), - [anon_sym_LT_LT_DASH] = ACTIONS(355), - [anon_sym_AMP_GT_GT] = ACTIONS(355), - [anon_sym_LF] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(355), - [anon_sym_GT] = ACTIONS(355), - [sym_file_descriptor] = ACTIONS(359), - [anon_sym_AMP_GT] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(355), - [anon_sym_GT_AMP] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_esac] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(355), - [anon_sym_LT_AMP] = ACTIONS(355), - [sym__concat] = ACTIONS(5809), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_SEMI_SEMI] = ACTIONS(355), - [anon_sym_PIPE_AMP] = ACTIONS(355), + [aux_sym_concatenation_repeat1] = STATE(1076), + [anon_sym_LT_LT_DASH] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [anon_sym_LT_LT] = ACTIONS(429), + [sym_file_descriptor] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_AMP_GT] = ACTIONS(429), + [anon_sym_PIPE_PIPE] = ACTIONS(429), + [anon_sym_LT_LT_LT] = ACTIONS(429), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_GT_AMP] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_esac] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_LT_AMP] = ACTIONS(429), + [sym__concat] = ACTIONS(6017), + [anon_sym_AMP_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_PIPE_AMP] = ACTIONS(429), }, [2434] = { [aux_sym_concatenation_repeat1] = STATE(2433), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LF] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [sym__concat] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_LT_LT_DASH] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [sym__concat] = ACTIONS(2135), + [anon_sym_AMP_AMP] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [2435] = { [sym_command_substitution] = STATE(2624), @@ -69476,64 +71151,140 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2624), [sym_concatenation] = STATE(464), [sym_expansion] = STATE(2624), - [sym_word] = ACTIONS(5811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2731), - [sym_raw_string] = ACTIONS(5811), - [anon_sym_BQUOTE] = ACTIONS(2739), - [anon_sym_DOLLAR] = ACTIONS(2995), - [sym_ansii_c_string] = ACTIONS(5811), - [anon_sym_GT_LPAREN] = ACTIONS(2735), - [anon_sym_LT_LPAREN] = ACTIONS(2735), - [sym__special_character] = ACTIONS(5813), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6019), + [sym_word] = ACTIONS(6021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_ansii_c_string] = ACTIONS(6019), + [anon_sym_LT_LPAREN] = ACTIONS(2805), + [anon_sym_BQUOTE] = ACTIONS(2803), + [sym__special_character] = ACTIONS(6023), + [sym_number] = ACTIONS(6021), + [anon_sym_GT_LPAREN] = ACTIONS(2805), }, [2436] = { [sym_command_substitution] = STATE(2626), - [aux_sym__literal_repeat1] = STATE(548), + [aux_sym__literal_repeat1] = STATE(547), [sym_string] = STATE(2626), [sym_process_substitution] = STATE(2626), [sym_simple_expansion] = STATE(2626), [sym_string_expansion] = STATE(2626), - [sym_concatenation] = STATE(549), + [sym_concatenation] = STATE(548), [sym_expansion] = STATE(2626), - [sym_word] = ACTIONS(5815), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2731), - [sym_raw_string] = ACTIONS(5815), - [anon_sym_BQUOTE] = ACTIONS(2739), - [anon_sym_DOLLAR] = ACTIONS(2995), - [sym_ansii_c_string] = ACTIONS(5815), - [anon_sym_GT_LPAREN] = ACTIONS(2735), - [anon_sym_LT_LPAREN] = ACTIONS(2735), - [sym__special_character] = ACTIONS(5813), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6025), + [sym_word] = ACTIONS(6027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_ansii_c_string] = ACTIONS(6025), + [anon_sym_LT_LPAREN] = ACTIONS(2805), + [anon_sym_BQUOTE] = ACTIONS(2803), + [sym__special_character] = ACTIONS(6023), + [sym_number] = ACTIONS(6027), + [anon_sym_GT_LPAREN] = ACTIONS(2805), }, [2437] = { [sym_command_substitution] = STATE(2627), - [aux_sym__literal_repeat1] = STATE(592), + [aux_sym__literal_repeat1] = STATE(593), [sym_string] = STATE(2627), [sym_process_substitution] = STATE(2627), [sym_simple_expansion] = STATE(2627), [sym_string_expansion] = STATE(2627), - [sym_concatenation] = STATE(593), + [sym_concatenation] = STATE(594), [sym_expansion] = STATE(2627), - [sym_word] = ACTIONS(5817), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2731), - [sym_raw_string] = ACTIONS(5817), - [anon_sym_BQUOTE] = ACTIONS(2739), - [anon_sym_DOLLAR] = ACTIONS(2995), - [sym_ansii_c_string] = ACTIONS(5817), - [anon_sym_GT_LPAREN] = ACTIONS(2735), - [anon_sym_LT_LPAREN] = ACTIONS(2735), - [sym__special_character] = ACTIONS(5813), - [sym_comment] = ACTIONS(19), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6029), + [sym_word] = ACTIONS(6031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), + [anon_sym_DOLLAR] = ACTIONS(3089), + [sym_ansii_c_string] = ACTIONS(6029), + [anon_sym_LT_LPAREN] = ACTIONS(2805), + [anon_sym_BQUOTE] = ACTIONS(2803), + [sym__special_character] = ACTIONS(6023), + [sym_number] = ACTIONS(6031), + [anon_sym_GT_LPAREN] = ACTIONS(2805), }, [2438] = { + [aux_sym__literal_repeat1] = STATE(386), + [sym_if_statement] = STATE(1462), + [sym_function_definition] = STATE(1462), + [sym_negated_command] = STATE(1462), + [sym_test_command] = STATE(1462), + [sym_variable_assignment] = STATE(541), + [sym_subscript] = STATE(2407), + [sym_concatenation] = STATE(389), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [aux_sym__statements_repeat1] = STATE(543), + [sym_redirected_statement] = STATE(1462), + [sym_for_statement] = STATE(1462), + [sym_compound_statement] = STATE(1462), + [sym_subshell] = STATE(1462), + [sym_declaration_command] = STATE(1462), + [sym_unset_command] = STATE(1462), + [sym_file_redirect] = STATE(1464), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), + [aux_sym_command_repeat1] = STATE(1464), + [sym__statements] = STATE(1474), + [sym_c_style_for_statement] = STATE(1462), + [sym_while_statement] = STATE(1462), + [sym_case_statement] = STATE(1462), + [sym_pipeline] = STATE(1462), + [sym_list] = STATE(1462), + [sym_command] = STATE(1462), + [sym_command_name] = STATE(545), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(187), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + }, + [2439] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -69542,8 +71293,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -69552,8 +71303,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1475), [sym_c_style_for_statement] = STATE(387), @@ -69563,80 +71314,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2439] = { - [sym_subscript] = STATE(1476), - [aux_sym__simple_variable_name_token1] = ACTIONS(5819), - [anon_sym_BANG] = ACTIONS(5821), - [sym_variable_name] = ACTIONS(5823), - [anon_sym_DOLLAR] = ACTIONS(5825), - [anon_sym_DASH] = ACTIONS(5825), - [anon_sym_QMARK] = ACTIONS(5827), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5821), - [anon_sym__] = ACTIONS(5819), - [anon_sym_AT] = ACTIONS(5827), - [anon_sym_STAR] = ACTIONS(5827), - [anon_sym_0] = ACTIONS(5819), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2440] = { - [anon_sym_PLUS_EQ] = ACTIONS(5829), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(5829), - [sym_comment] = ACTIONS(19), + [sym_subscript] = STATE(1477), + [anon_sym__] = ACTIONS(6033), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6035), + [anon_sym_BANG] = ACTIONS(6035), + [sym_variable_name] = ACTIONS(6037), + [anon_sym_DOLLAR] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [anon_sym_AT] = ACTIONS(6041), + [anon_sym_0] = ACTIONS(6033), + [anon_sym_STAR] = ACTIONS(6041), + [aux_sym__simple_variable_name_token1] = ACTIONS(6033), + [anon_sym_QMARK] = ACTIONS(6041), }, [2441] = { - [anon_sym_AMP_GT_GT] = ACTIONS(5831), - [anon_sym_GT_AMP] = ACTIONS(5831), - [anon_sym_LT] = ACTIONS(5833), - [anon_sym_LT_AMP] = ACTIONS(5831), - [anon_sym_GT_GT] = ACTIONS(5831), - [anon_sym_GT] = ACTIONS(5833), - [anon_sym_AMP_GT] = ACTIONS(5833), - [sym_comment] = ACTIONS(19), + [anon_sym_PLUS_EQ] = ACTIONS(6043), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(6043), }, [2442] = { + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [sym_comment] = ACTIONS(41), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_AMP_GT] = ACTIONS(6047), + }, + [2443] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -69645,8 +71397,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -69654,11 +71406,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1480), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1483), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1481), + [sym__statements] = STATE(1484), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -69666,49 +71418,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2443] = { + [2444] = { + [anon_sym_EQ] = ACTIONS(6043), + [anon_sym_PLUS_EQ] = ACTIONS(6043), + [sym_comment] = ACTIONS(41), + }, + [2445] = { + [sym_subscript] = STATE(1487), + [anon_sym__] = ACTIONS(6049), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6053), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AT] = ACTIONS(6055), + [anon_sym_0] = ACTIONS(6049), + [anon_sym_STAR] = ACTIONS(6055), + [aux_sym__simple_variable_name_token1] = ACTIONS(6049), + [anon_sym_QMARK] = ACTIONS(6055), + }, + [2446] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6057), + }, + [2447] = { + [sym_command_substitution] = STATE(71), + [sym_unary_expression] = STATE(1492), + [sym_postfix_expression] = STATE(1492), + [sym_string] = STATE(71), + [aux_sym__literal_repeat1] = STATE(73), + [sym_process_substitution] = STATE(71), + [sym_parenthesized_expression] = STATE(1492), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym__expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_concatenation] = STATE(1492), + [sym_expansion] = STATE(71), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(239), + [sym_test_operator] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(235), + [sym__special_character] = ACTIONS(255), + }, + [2448] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6059), + }, + [2449] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -69717,8 +71529,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -69727,10 +71539,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1484), + [sym__statements] = STATE(1519), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -69738,107 +71550,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2444] = { - [anon_sym_EQ] = ACTIONS(5829), - [anon_sym_PLUS_EQ] = ACTIONS(5829), - [sym_comment] = ACTIONS(19), - }, - [2445] = { - [sym_command_substitution] = STATE(65), - [sym_unary_expression] = STATE(1485), - [sym_postfix_expression] = STATE(1485), - [sym_string] = STATE(65), - [aux_sym__literal_repeat1] = STATE(68), - [sym_process_substitution] = STATE(65), - [sym_parenthesized_expression] = STATE(1485), - [sym_simple_expansion] = STATE(65), - [sym_string_expansion] = STATE(65), - [sym__expression] = STATE(1485), - [sym_binary_expression] = STATE(1485), - [sym_concatenation] = STATE(1485), - [sym_expansion] = STATE(65), - [sym_word] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_BANG] = ACTIONS(219), - [anon_sym_DOLLAR] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(225), - [sym_test_operator] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_ansii_c_string] = ACTIONS(217), - [sym__special_character] = ACTIONS(231), - }, - [2446] = { - [sym_subscript] = STATE(1488), - [aux_sym__simple_variable_name_token1] = ACTIONS(5835), - [sym_variable_name] = ACTIONS(5837), - [anon_sym_DOLLAR] = ACTIONS(5839), - [anon_sym_DASH] = ACTIONS(5839), - [anon_sym_QMARK] = ACTIONS(5841), - [sym_comment] = ACTIONS(19), - [anon_sym__] = ACTIONS(5835), - [anon_sym_AT] = ACTIONS(5841), - [anon_sym_STAR] = ACTIONS(5841), - [anon_sym_0] = ACTIONS(5835), - }, - [2447] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(5843), - [sym_comment] = ACTIONS(19), - }, - [2448] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(5845), - [sym_comment] = ACTIONS(19), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2449] = { + [2450] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -69847,8 +71602,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -69857,8 +71612,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1520), [sym_c_style_for_statement] = STATE(387), @@ -69868,80 +71623,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2450] = { - [sym_subscript] = STATE(1521), - [aux_sym__simple_variable_name_token1] = ACTIONS(5847), - [anon_sym__] = ACTIONS(5847), - [anon_sym_AT] = ACTIONS(5849), - [anon_sym_BANG] = ACTIONS(5851), - [anon_sym_STAR] = ACTIONS(5849), - [sym_variable_name] = ACTIONS(5853), - [anon_sym_DOLLAR] = ACTIONS(5855), - [anon_sym_DASH] = ACTIONS(5855), - [anon_sym_QMARK] = ACTIONS(5849), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(5847), - [anon_sym_POUND] = ACTIONS(5851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2451] = { - [anon_sym_PLUS_EQ] = ACTIONS(5857), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(5857), - [sym_comment] = ACTIONS(19), + [sym_subscript] = STATE(1522), + [anon_sym__] = ACTIONS(6061), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6063), + [anon_sym_POUND] = ACTIONS(6065), + [anon_sym_BANG] = ACTIONS(6065), + [aux_sym__simple_variable_name_token1] = ACTIONS(6061), + [sym_variable_name] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_AT] = ACTIONS(6063), + [anon_sym_QMARK] = ACTIONS(6063), }, [2452] = { - [anon_sym_AMP_GT_GT] = ACTIONS(5859), - [anon_sym_GT_AMP] = ACTIONS(5859), - [anon_sym_LT] = ACTIONS(5861), - [anon_sym_LT_AMP] = ACTIONS(5859), - [anon_sym_GT_GT] = ACTIONS(5859), - [anon_sym_GT] = ACTIONS(5861), - [anon_sym_AMP_GT] = ACTIONS(5861), - [sym_comment] = ACTIONS(19), + [anon_sym_PLUS_EQ] = ACTIONS(6071), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(6071), }, [2453] = { + [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [sym_comment] = ACTIONS(41), + [anon_sym_GT_AMP] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6075), + [anon_sym_LT_AMP] = ACTIONS(6073), + [anon_sym_GT_GT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6075), + [anon_sym_AMP_GT] = ACTIONS(6075), + }, + [2454] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -69950,8 +71706,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -69959,11 +71715,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1524), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1527), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1525), + [sym__statements] = STATE(1528), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -69971,49 +71727,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2454] = { + [2455] = { + [anon_sym_EQ] = ACTIONS(6071), + [anon_sym_PLUS_EQ] = ACTIONS(6071), + [sym_comment] = ACTIONS(41), + }, + [2456] = { + [sym_subscript] = STATE(1531), + [anon_sym__] = ACTIONS(6077), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6077), + [anon_sym_STAR] = ACTIONS(6079), + [aux_sym__simple_variable_name_token1] = ACTIONS(6077), + [sym_variable_name] = ACTIONS(6081), + [anon_sym_DOLLAR] = ACTIONS(6083), + [anon_sym_DASH] = ACTIONS(6083), + [anon_sym_AT] = ACTIONS(6079), + [anon_sym_QMARK] = ACTIONS(6079), + }, + [2457] = { + [anon_sym_EQ] = ACTIONS(6085), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2458] = { + [anon_sym_EQ] = ACTIONS(6087), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2459] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -70022,8 +71807,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -70032,10 +71817,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1528), + [sym__statements] = STATE(1562), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -70043,77 +71828,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2455] = { - [anon_sym_EQ] = ACTIONS(5857), - [anon_sym_PLUS_EQ] = ACTIONS(5857), - [sym_comment] = ACTIONS(19), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2456] = { - [sym_subscript] = STATE(1531), - [aux_sym__simple_variable_name_token1] = ACTIONS(5863), - [anon_sym__] = ACTIONS(5863), - [anon_sym_AT] = ACTIONS(5865), - [anon_sym_STAR] = ACTIONS(5865), - [sym_variable_name] = ACTIONS(5867), - [anon_sym_DOLLAR] = ACTIONS(5869), - [anon_sym_DASH] = ACTIONS(5869), - [anon_sym_QMARK] = ACTIONS(5865), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(5863), - }, - [2457] = { - [anon_sym_EQ] = ACTIONS(5871), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2458] = { - [anon_sym_EQ] = ACTIONS(5873), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2459] = { + [2460] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -70122,8 +71880,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -70132,8 +71890,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1563), [sym_c_style_for_statement] = STATE(387), @@ -70143,70 +71901,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2460] = { - [sym_subscript] = STATE(1564), - [aux_sym__simple_variable_name_token1] = ACTIONS(5875), - [anon_sym__] = ACTIONS(5875), - [anon_sym_AT] = ACTIONS(5877), - [anon_sym_BANG] = ACTIONS(5879), - [anon_sym_STAR] = ACTIONS(5877), - [sym_variable_name] = ACTIONS(5881), - [anon_sym_DOLLAR] = ACTIONS(5883), - [anon_sym_DASH] = ACTIONS(5883), - [anon_sym_QMARK] = ACTIONS(5877), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(5875), - [anon_sym_POUND] = ACTIONS(5879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2461] = { - [anon_sym_PLUS_EQ] = ACTIONS(5885), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(5885), - [sym_comment] = ACTIONS(19), + [sym_subscript] = STATE(1565), + [anon_sym__] = ACTIONS(6089), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6089), + [anon_sym_STAR] = ACTIONS(6091), + [anon_sym_POUND] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(6093), + [aux_sym__simple_variable_name_token1] = ACTIONS(6089), + [sym_variable_name] = ACTIONS(6095), + [anon_sym_DOLLAR] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_AT] = ACTIONS(6091), + [anon_sym_QMARK] = ACTIONS(6091), }, [2462] = { + [anon_sym_PLUS_EQ] = ACTIONS(6099), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(6099), + }, + [2463] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -70215,8 +71974,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -70224,11 +71983,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1567), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1570), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1568), + [sym__statements] = STATE(1571), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -70236,49 +71995,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + }, + [2464] = { + [anon_sym_PLUS_EQ] = ACTIONS(6099), + [sym_comment] = ACTIONS(41), + [anon_sym_EQ] = ACTIONS(6099), + }, + [2465] = { + [sym_subscript] = STATE(1574), + [anon_sym__] = ACTIONS(6101), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6101), + [anon_sym_STAR] = ACTIONS(6103), + [aux_sym__simple_variable_name_token1] = ACTIONS(6101), + [sym_variable_name] = ACTIONS(6105), + [anon_sym_DOLLAR] = ACTIONS(6107), + [anon_sym_DASH] = ACTIONS(6107), + [anon_sym_AT] = ACTIONS(6103), + [anon_sym_QMARK] = ACTIONS(6103), }, - [2463] = { + [2466] = { + [anon_sym_EQ] = ACTIONS(6109), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2467] = { + [anon_sym_EQ] = ACTIONS(6111), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2468] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -70287,8 +72075,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -70297,10 +72085,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1571), + [sym__statements] = STATE(1605), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -70308,77 +72096,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2464] = { - [anon_sym_PLUS_EQ] = ACTIONS(5885), - [anon_sym_EQ] = ACTIONS(5885), - [sym_comment] = ACTIONS(19), - }, - [2465] = { - [sym_subscript] = STATE(1574), - [aux_sym__simple_variable_name_token1] = ACTIONS(5887), - [anon_sym__] = ACTIONS(5887), - [anon_sym_AT] = ACTIONS(5889), - [anon_sym_STAR] = ACTIONS(5889), - [sym_variable_name] = ACTIONS(5891), - [anon_sym_DOLLAR] = ACTIONS(5893), - [anon_sym_DASH] = ACTIONS(5893), - [anon_sym_QMARK] = ACTIONS(5889), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(5887), - }, - [2466] = { - [anon_sym_EQ] = ACTIONS(5895), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2467] = { - [anon_sym_EQ] = ACTIONS(5897), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2468] = { + [2469] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -70387,8 +72148,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -70397,8 +72158,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1606), [sym_c_style_for_statement] = STATE(387), @@ -70408,70 +72169,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2469] = { - [sym_subscript] = STATE(1607), - [aux_sym__simple_variable_name_token1] = ACTIONS(5899), - [anon_sym__] = ACTIONS(5899), - [anon_sym_AT] = ACTIONS(5901), - [anon_sym_BANG] = ACTIONS(5903), - [anon_sym_STAR] = ACTIONS(5901), - [sym_variable_name] = ACTIONS(5905), - [anon_sym_DOLLAR] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_QMARK] = ACTIONS(5901), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(5899), - [anon_sym_POUND] = ACTIONS(5903), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2470] = { - [anon_sym_PLUS_EQ] = ACTIONS(5909), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(5909), - [sym_comment] = ACTIONS(19), + [sym_subscript] = STATE(1608), + [anon_sym__] = ACTIONS(6113), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6115), + [anon_sym_POUND] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6117), + [aux_sym__simple_variable_name_token1] = ACTIONS(6113), + [sym_variable_name] = ACTIONS(6119), + [anon_sym_DOLLAR] = ACTIONS(6121), + [anon_sym_DASH] = ACTIONS(6121), + [anon_sym_AT] = ACTIONS(6115), + [anon_sym_QMARK] = ACTIONS(6115), }, [2471] = { + [anon_sym_PLUS_EQ] = ACTIONS(6123), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(6123), + }, + [2472] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -70480,8 +72242,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -70489,11 +72251,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1610), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1613), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1611), + [sym__statements] = STATE(1614), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -70501,49 +72263,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2472] = { + [2473] = { + [anon_sym_EQ] = ACTIONS(6123), + [anon_sym_PLUS_EQ] = ACTIONS(6123), + [sym_comment] = ACTIONS(41), + }, + [2474] = { + [sym_subscript] = STATE(1617), + [anon_sym__] = ACTIONS(6125), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6125), + [anon_sym_STAR] = ACTIONS(6127), + [aux_sym__simple_variable_name_token1] = ACTIONS(6125), + [sym_variable_name] = ACTIONS(6129), + [anon_sym_DOLLAR] = ACTIONS(6131), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_AT] = ACTIONS(6127), + [anon_sym_QMARK] = ACTIONS(6127), + }, + [2475] = { + [anon_sym_EQ] = ACTIONS(6133), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2476] = { + [anon_sym_EQ] = ACTIONS(6135), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2477] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -70552,8 +72343,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -70562,10 +72353,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1614), + [sym__statements] = STATE(1648), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -70573,77 +72364,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2473] = { - [anon_sym_EQ] = ACTIONS(5909), - [anon_sym_PLUS_EQ] = ACTIONS(5909), - [sym_comment] = ACTIONS(19), - }, - [2474] = { - [sym_subscript] = STATE(1617), - [aux_sym__simple_variable_name_token1] = ACTIONS(5911), - [anon_sym__] = ACTIONS(5911), - [anon_sym_AT] = ACTIONS(5913), - [anon_sym_STAR] = ACTIONS(5913), - [sym_variable_name] = ACTIONS(5915), - [anon_sym_DOLLAR] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(5917), - [anon_sym_QMARK] = ACTIONS(5913), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(5911), - }, - [2475] = { - [anon_sym_EQ] = ACTIONS(5919), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2476] = { - [anon_sym_EQ] = ACTIONS(5921), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(187), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2477] = { + [2478] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -70652,8 +72416,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -70662,8 +72426,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1649), [sym_c_style_for_statement] = STATE(387), @@ -70673,70 +72437,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2478] = { - [sym_subscript] = STATE(1650), - [aux_sym__simple_variable_name_token1] = ACTIONS(5923), - [anon_sym_BANG] = ACTIONS(5925), - [sym_variable_name] = ACTIONS(5927), - [anon_sym_DOLLAR] = ACTIONS(5929), - [anon_sym_DASH] = ACTIONS(5929), - [anon_sym_QMARK] = ACTIONS(5931), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5925), - [anon_sym__] = ACTIONS(5923), - [anon_sym_AT] = ACTIONS(5931), - [anon_sym_STAR] = ACTIONS(5931), - [anon_sym_0] = ACTIONS(5923), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2479] = { - [anon_sym_PLUS_EQ] = ACTIONS(5933), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(5933), - [sym_comment] = ACTIONS(19), + [sym_subscript] = STATE(1651), + [anon_sym__] = ACTIONS(6137), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6139), + [sym_variable_name] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(6143), + [anon_sym_DASH] = ACTIONS(6143), + [anon_sym_AT] = ACTIONS(6145), + [anon_sym_0] = ACTIONS(6137), + [anon_sym_STAR] = ACTIONS(6145), + [aux_sym__simple_variable_name_token1] = ACTIONS(6137), + [anon_sym_QMARK] = ACTIONS(6145), }, [2480] = { + [anon_sym_PLUS_EQ] = ACTIONS(6147), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(6147), + }, + [2481] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -70745,8 +72510,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -70754,11 +72519,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1653), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1656), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1654), + [sym__statements] = STATE(1657), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -70766,49 +72531,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2481] = { + [2482] = { + [anon_sym_EQ] = ACTIONS(6147), + [anon_sym_PLUS_EQ] = ACTIONS(6147), + [sym_comment] = ACTIONS(41), + }, + [2483] = { + [sym_subscript] = STATE(1660), + [anon_sym__] = ACTIONS(6149), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6151), + [anon_sym_DOLLAR] = ACTIONS(6153), + [anon_sym_DASH] = ACTIONS(6153), + [anon_sym_AT] = ACTIONS(6155), + [anon_sym_0] = ACTIONS(6149), + [anon_sym_STAR] = ACTIONS(6155), + [aux_sym__simple_variable_name_token1] = ACTIONS(6149), + [anon_sym_QMARK] = ACTIONS(6155), + }, + [2484] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6157), + }, + [2485] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6159), + }, + [2486] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -70817,8 +72611,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -70827,10 +72621,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1657), + [sym__statements] = STATE(1691), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -70838,77 +72632,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2482] = { - [anon_sym_EQ] = ACTIONS(5933), - [anon_sym_PLUS_EQ] = ACTIONS(5933), - [sym_comment] = ACTIONS(19), - }, - [2483] = { - [sym_subscript] = STATE(1660), - [aux_sym__simple_variable_name_token1] = ACTIONS(5935), - [sym_variable_name] = ACTIONS(5937), - [anon_sym_DOLLAR] = ACTIONS(5939), - [anon_sym_DASH] = ACTIONS(5939), - [anon_sym_QMARK] = ACTIONS(5941), - [sym_comment] = ACTIONS(19), - [anon_sym__] = ACTIONS(5935), - [anon_sym_AT] = ACTIONS(5941), - [anon_sym_STAR] = ACTIONS(5941), - [anon_sym_0] = ACTIONS(5935), - }, - [2484] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(5943), - [sym_comment] = ACTIONS(19), - }, - [2485] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(5945), - [sym_comment] = ACTIONS(19), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2486] = { + [2487] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -70917,8 +72684,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -70927,8 +72694,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1692), [sym_c_style_for_statement] = STATE(387), @@ -70938,64 +72705,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2487] = { - [sym_subscript] = STATE(1693), - [aux_sym__simple_variable_name_token1] = ACTIONS(5947), - [anon_sym__] = ACTIONS(5947), - [anon_sym_AT] = ACTIONS(5949), - [anon_sym_BANG] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5949), - [sym_variable_name] = ACTIONS(5953), - [anon_sym_DOLLAR] = ACTIONS(5955), - [anon_sym_DASH] = ACTIONS(5955), - [anon_sym_QMARK] = ACTIONS(5949), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(5947), - [anon_sym_POUND] = ACTIONS(5951), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2488] = { + [sym_subscript] = STATE(1694), + [anon_sym__] = ACTIONS(6161), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6161), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_POUND] = ACTIONS(6165), + [anon_sym_BANG] = ACTIONS(6165), + [aux_sym__simple_variable_name_token1] = ACTIONS(6161), + [sym_variable_name] = ACTIONS(6167), + [anon_sym_DOLLAR] = ACTIONS(6169), + [anon_sym_DASH] = ACTIONS(6169), + [anon_sym_AT] = ACTIONS(6163), + [anon_sym_QMARK] = ACTIONS(6163), + }, + [2489] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -71004,8 +72772,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -71013,11 +72781,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1695), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1698), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1696), + [sym__statements] = STATE(1699), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -71025,49 +72793,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2489] = { + [2490] = { + [sym_subscript] = STATE(1702), + [anon_sym__] = ACTIONS(6171), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6173), + [aux_sym__simple_variable_name_token1] = ACTIONS(6171), + [sym_variable_name] = ACTIONS(6175), + [anon_sym_DOLLAR] = ACTIONS(6177), + [anon_sym_DASH] = ACTIONS(6177), + [anon_sym_AT] = ACTIONS(6173), + [anon_sym_QMARK] = ACTIONS(6173), + }, + [2491] = { + [anon_sym_EQ] = ACTIONS(6179), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2492] = { + [anon_sym_EQ] = ACTIONS(6181), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2493] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -71076,8 +72868,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -71086,10 +72878,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1699), + [sym__statements] = STATE(1731), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -71097,72 +72889,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2490] = { - [sym_subscript] = STATE(1702), - [aux_sym__simple_variable_name_token1] = ACTIONS(5957), - [anon_sym__] = ACTIONS(5957), - [anon_sym_AT] = ACTIONS(5959), - [anon_sym_STAR] = ACTIONS(5959), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(5963), - [anon_sym_DASH] = ACTIONS(5963), - [anon_sym_QMARK] = ACTIONS(5959), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(5957), - }, - [2491] = { - [anon_sym_EQ] = ACTIONS(5965), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2492] = { - [anon_sym_EQ] = ACTIONS(5967), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(187), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2493] = { + [2494] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -71171,8 +72941,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -71181,8 +72951,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1732), [sym_c_style_for_statement] = STATE(387), @@ -71192,64 +72962,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2494] = { - [sym_subscript] = STATE(1733), - [aux_sym__simple_variable_name_token1] = ACTIONS(5969), - [anon_sym_BANG] = ACTIONS(5971), - [sym_variable_name] = ACTIONS(5973), - [anon_sym_DOLLAR] = ACTIONS(5975), - [anon_sym_DASH] = ACTIONS(5975), - [anon_sym_QMARK] = ACTIONS(5977), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5971), - [anon_sym__] = ACTIONS(5969), - [anon_sym_AT] = ACTIONS(5977), - [anon_sym_STAR] = ACTIONS(5977), - [anon_sym_0] = ACTIONS(5969), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2495] = { + [sym_subscript] = STATE(1734), + [anon_sym__] = ACTIONS(6183), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6185), + [anon_sym_BANG] = ACTIONS(6185), + [sym_variable_name] = ACTIONS(6187), + [anon_sym_DOLLAR] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [anon_sym_AT] = ACTIONS(6191), + [anon_sym_0] = ACTIONS(6183), + [anon_sym_STAR] = ACTIONS(6191), + [aux_sym__simple_variable_name_token1] = ACTIONS(6183), + [anon_sym_QMARK] = ACTIONS(6191), + }, + [2496] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -71258,8 +73029,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -71267,11 +73038,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1735), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1738), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1736), + [sym__statements] = STATE(1739), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -71279,49 +73050,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2496] = { + [2497] = { + [sym_subscript] = STATE(1742), + [anon_sym__] = ACTIONS(6193), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6195), + [anon_sym_DOLLAR] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_AT] = ACTIONS(6199), + [anon_sym_0] = ACTIONS(6193), + [anon_sym_STAR] = ACTIONS(6199), + [aux_sym__simple_variable_name_token1] = ACTIONS(6193), + [anon_sym_QMARK] = ACTIONS(6199), + }, + [2498] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6201), + }, + [2499] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6203), + }, + [2500] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -71330,8 +73125,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -71340,10 +73135,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1739), + [sym__statements] = STATE(1771), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -71351,72 +73146,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2497] = { - [sym_subscript] = STATE(1742), - [aux_sym__simple_variable_name_token1] = ACTIONS(5979), - [sym_variable_name] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_DASH] = ACTIONS(5983), - [anon_sym_QMARK] = ACTIONS(5985), - [sym_comment] = ACTIONS(19), - [anon_sym__] = ACTIONS(5979), - [anon_sym_AT] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_0] = ACTIONS(5979), - }, - [2498] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(5987), - [sym_comment] = ACTIONS(19), - }, - [2499] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(5989), - [sym_comment] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(187), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2500] = { + [2501] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -71425,8 +73198,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -71435,8 +73208,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1772), [sym_c_style_for_statement] = STATE(387), @@ -71446,64 +73219,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2501] = { - [sym_subscript] = STATE(1773), - [aux_sym__simple_variable_name_token1] = ACTIONS(5991), - [anon_sym_BANG] = ACTIONS(5993), - [sym_variable_name] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(5997), - [anon_sym_QMARK] = ACTIONS(5999), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5991), - [anon_sym_AT] = ACTIONS(5999), - [anon_sym_STAR] = ACTIONS(5999), - [anon_sym_0] = ACTIONS(5991), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2502] = { + [sym_subscript] = STATE(1774), + [anon_sym__] = ACTIONS(6205), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6207), + [anon_sym_BANG] = ACTIONS(6207), + [sym_variable_name] = ACTIONS(6209), + [anon_sym_DOLLAR] = ACTIONS(6211), + [anon_sym_DASH] = ACTIONS(6211), + [anon_sym_AT] = ACTIONS(6213), + [anon_sym_0] = ACTIONS(6205), + [anon_sym_STAR] = ACTIONS(6213), + [aux_sym__simple_variable_name_token1] = ACTIONS(6205), + [anon_sym_QMARK] = ACTIONS(6213), + }, + [2503] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -71512,8 +73286,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -71521,11 +73295,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1775), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1778), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1776), + [sym__statements] = STATE(1779), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -71533,49 +73307,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2503] = { + [2504] = { + [sym_subscript] = STATE(1782), + [anon_sym__] = ACTIONS(6215), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6217), + [anon_sym_DOLLAR] = ACTIONS(6219), + [anon_sym_DASH] = ACTIONS(6219), + [anon_sym_AT] = ACTIONS(6221), + [anon_sym_0] = ACTIONS(6215), + [anon_sym_STAR] = ACTIONS(6221), + [aux_sym__simple_variable_name_token1] = ACTIONS(6215), + [anon_sym_QMARK] = ACTIONS(6221), + }, + [2505] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6223), + }, + [2506] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6225), + }, + [2507] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -71584,8 +73382,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -71594,10 +73392,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1779), + [sym__statements] = STATE(1811), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -71605,72 +73403,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2504] = { - [sym_subscript] = STATE(1782), - [aux_sym__simple_variable_name_token1] = ACTIONS(6001), - [sym_variable_name] = ACTIONS(6003), - [anon_sym_DOLLAR] = ACTIONS(6005), - [anon_sym_DASH] = ACTIONS(6005), - [anon_sym_QMARK] = ACTIONS(6007), - [sym_comment] = ACTIONS(19), - [anon_sym__] = ACTIONS(6001), - [anon_sym_AT] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_0] = ACTIONS(6001), - }, - [2505] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(6009), - [sym_comment] = ACTIONS(19), - }, - [2506] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(6011), - [sym_comment] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(187), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2507] = { + [2508] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -71679,8 +73455,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -71689,8 +73465,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1812), [sym_c_style_for_statement] = STATE(387), @@ -71700,64 +73476,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2508] = { - [sym_subscript] = STATE(1813), - [aux_sym__simple_variable_name_token1] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6015), - [sym_variable_name] = ACTIONS(6017), - [anon_sym_DOLLAR] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_QMARK] = ACTIONS(6021), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6015), - [anon_sym__] = ACTIONS(6013), - [anon_sym_AT] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6021), - [anon_sym_0] = ACTIONS(6013), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2509] = { + [sym_subscript] = STATE(1814), + [anon_sym__] = ACTIONS(6227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6229), + [anon_sym_BANG] = ACTIONS(6229), + [sym_variable_name] = ACTIONS(6231), + [anon_sym_DOLLAR] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6233), + [anon_sym_AT] = ACTIONS(6235), + [anon_sym_0] = ACTIONS(6227), + [anon_sym_STAR] = ACTIONS(6235), + [aux_sym__simple_variable_name_token1] = ACTIONS(6227), + [anon_sym_QMARK] = ACTIONS(6235), + }, + [2510] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -71766,8 +73543,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -71775,11 +73552,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1815), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1818), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1816), + [sym__statements] = STATE(1819), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -71787,49 +73564,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2510] = { + [2511] = { + [sym_subscript] = STATE(1822), + [anon_sym__] = ACTIONS(6237), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6239), + [anon_sym_DOLLAR] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_AT] = ACTIONS(6243), + [anon_sym_0] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6243), + [aux_sym__simple_variable_name_token1] = ACTIONS(6237), + [anon_sym_QMARK] = ACTIONS(6243), + }, + [2512] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6245), + }, + [2513] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6247), + }, + [2514] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -71838,8 +73639,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -71848,10 +73649,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1819), + [sym__statements] = STATE(1851), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -71859,72 +73660,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2511] = { - [sym_subscript] = STATE(1822), - [aux_sym__simple_variable_name_token1] = ACTIONS(6023), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_QMARK] = ACTIONS(6029), - [sym_comment] = ACTIONS(19), - [anon_sym__] = ACTIONS(6023), - [anon_sym_AT] = ACTIONS(6029), - [anon_sym_STAR] = ACTIONS(6029), - [anon_sym_0] = ACTIONS(6023), - }, - [2512] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(6031), - [sym_comment] = ACTIONS(19), - }, - [2513] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(6033), - [sym_comment] = ACTIONS(19), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2514] = { + [2515] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -71933,8 +73712,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -71943,8 +73722,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1852), [sym_c_style_for_statement] = STATE(387), @@ -71954,64 +73733,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2515] = { - [sym_subscript] = STATE(1853), - [aux_sym__simple_variable_name_token1] = ACTIONS(6035), - [anon_sym__] = ACTIONS(6035), - [anon_sym_AT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_QMARK] = ACTIONS(6037), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6035), - [anon_sym_POUND] = ACTIONS(6039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2516] = { + [sym_subscript] = STATE(1854), + [anon_sym__] = ACTIONS(6249), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6249), + [anon_sym_STAR] = ACTIONS(6251), + [anon_sym_POUND] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [aux_sym__simple_variable_name_token1] = ACTIONS(6249), + [sym_variable_name] = ACTIONS(6255), + [anon_sym_DOLLAR] = ACTIONS(6257), + [anon_sym_DASH] = ACTIONS(6257), + [anon_sym_AT] = ACTIONS(6251), + [anon_sym_QMARK] = ACTIONS(6251), + }, + [2517] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -72020,8 +73800,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -72029,11 +73809,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1855), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1858), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1856), + [sym__statements] = STATE(1859), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -72041,49 +73821,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2517] = { + [2518] = { + [sym_subscript] = STATE(1862), + [anon_sym__] = ACTIONS(6259), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6259), + [anon_sym_STAR] = ACTIONS(6261), + [aux_sym__simple_variable_name_token1] = ACTIONS(6259), + [sym_variable_name] = ACTIONS(6263), + [anon_sym_DOLLAR] = ACTIONS(6265), + [anon_sym_DASH] = ACTIONS(6265), + [anon_sym_AT] = ACTIONS(6261), + [anon_sym_QMARK] = ACTIONS(6261), + }, + [2519] = { + [anon_sym_EQ] = ACTIONS(6267), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2520] = { + [anon_sym_EQ] = ACTIONS(6269), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2521] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -72092,8 +73896,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -72102,10 +73906,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1859), + [sym__statements] = STATE(1891), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -72113,72 +73917,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2518] = { - [sym_subscript] = STATE(1862), - [aux_sym__simple_variable_name_token1] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6045), - [anon_sym_AT] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_QMARK] = ACTIONS(6047), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6045), - }, - [2519] = { - [anon_sym_EQ] = ACTIONS(6053), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2520] = { - [anon_sym_EQ] = ACTIONS(6055), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2521] = { + [2522] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -72187,8 +73969,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -72197,8 +73979,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1892), [sym_c_style_for_statement] = STATE(387), @@ -72208,64 +73990,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2522] = { - [sym_subscript] = STATE(1893), - [aux_sym__simple_variable_name_token1] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6057), - [anon_sym_AT] = ACTIONS(6059), - [anon_sym_BANG] = ACTIONS(6061), - [anon_sym_STAR] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6063), - [anon_sym_DOLLAR] = ACTIONS(6065), - [anon_sym_DASH] = ACTIONS(6065), - [anon_sym_QMARK] = ACTIONS(6059), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6057), - [anon_sym_POUND] = ACTIONS(6061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2523] = { + [sym_subscript] = STATE(1894), + [anon_sym__] = ACTIONS(6271), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6271), + [anon_sym_STAR] = ACTIONS(6273), + [anon_sym_POUND] = ACTIONS(6275), + [anon_sym_BANG] = ACTIONS(6275), + [aux_sym__simple_variable_name_token1] = ACTIONS(6271), + [sym_variable_name] = ACTIONS(6277), + [anon_sym_DOLLAR] = ACTIONS(6279), + [anon_sym_DASH] = ACTIONS(6279), + [anon_sym_AT] = ACTIONS(6273), + [anon_sym_QMARK] = ACTIONS(6273), + }, + [2524] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -72274,8 +74057,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -72283,11 +74066,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1895), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1898), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1896), + [sym__statements] = STATE(1899), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -72295,49 +74078,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2524] = { + [2525] = { + [sym_subscript] = STATE(1902), + [anon_sym__] = ACTIONS(6281), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6281), + [anon_sym_STAR] = ACTIONS(6283), + [aux_sym__simple_variable_name_token1] = ACTIONS(6281), + [sym_variable_name] = ACTIONS(6285), + [anon_sym_DOLLAR] = ACTIONS(6287), + [anon_sym_DASH] = ACTIONS(6287), + [anon_sym_AT] = ACTIONS(6283), + [anon_sym_QMARK] = ACTIONS(6283), + }, + [2526] = { + [anon_sym_EQ] = ACTIONS(6289), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2527] = { + [anon_sym_EQ] = ACTIONS(6291), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2528] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -72346,8 +74153,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -72356,10 +74163,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1899), + [sym__statements] = STATE(1931), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -72367,72 +74174,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2525] = { - [sym_subscript] = STATE(1902), - [aux_sym__simple_variable_name_token1] = ACTIONS(6067), - [anon_sym__] = ACTIONS(6067), - [anon_sym_AT] = ACTIONS(6069), - [anon_sym_STAR] = ACTIONS(6069), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6073), - [anon_sym_DASH] = ACTIONS(6073), - [anon_sym_QMARK] = ACTIONS(6069), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6067), - }, - [2526] = { - [anon_sym_EQ] = ACTIONS(6075), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2527] = { - [anon_sym_EQ] = ACTIONS(6077), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2528] = { + [2529] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -72441,8 +74226,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -72451,8 +74236,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1932), [sym_c_style_for_statement] = STATE(387), @@ -72462,64 +74247,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2529] = { - [sym_subscript] = STATE(1933), - [aux_sym__simple_variable_name_token1] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6079), - [anon_sym_AT] = ACTIONS(6081), - [anon_sym_BANG] = ACTIONS(6083), - [anon_sym_STAR] = ACTIONS(6081), - [sym_variable_name] = ACTIONS(6085), - [anon_sym_DOLLAR] = ACTIONS(6087), - [anon_sym_DASH] = ACTIONS(6087), - [anon_sym_QMARK] = ACTIONS(6081), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6079), - [anon_sym_POUND] = ACTIONS(6083), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2530] = { + [sym_subscript] = STATE(1934), + [anon_sym__] = ACTIONS(6293), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6293), + [anon_sym_STAR] = ACTIONS(6295), + [anon_sym_POUND] = ACTIONS(6297), + [anon_sym_BANG] = ACTIONS(6297), + [aux_sym__simple_variable_name_token1] = ACTIONS(6293), + [sym_variable_name] = ACTIONS(6299), + [anon_sym_DOLLAR] = ACTIONS(6301), + [anon_sym_DASH] = ACTIONS(6301), + [anon_sym_AT] = ACTIONS(6295), + [anon_sym_QMARK] = ACTIONS(6295), + }, + [2531] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -72528,8 +74314,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -72537,11 +74323,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1935), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1938), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1936), + [sym__statements] = STATE(1939), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -72549,49 +74335,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2531] = { + [2532] = { + [sym_subscript] = STATE(1942), + [anon_sym__] = ACTIONS(6303), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6303), + [anon_sym_STAR] = ACTIONS(6305), + [aux_sym__simple_variable_name_token1] = ACTIONS(6303), + [sym_variable_name] = ACTIONS(6307), + [anon_sym_DOLLAR] = ACTIONS(6309), + [anon_sym_DASH] = ACTIONS(6309), + [anon_sym_AT] = ACTIONS(6305), + [anon_sym_QMARK] = ACTIONS(6305), + }, + [2533] = { + [anon_sym_EQ] = ACTIONS(6311), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2534] = { + [anon_sym_EQ] = ACTIONS(6313), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2535] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -72600,8 +74410,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -72610,10 +74420,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1939), + [sym__statements] = STATE(1971), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -72621,72 +74431,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2532] = { - [sym_subscript] = STATE(1942), - [aux_sym__simple_variable_name_token1] = ACTIONS(6089), - [anon_sym__] = ACTIONS(6089), - [anon_sym_AT] = ACTIONS(6091), - [anon_sym_STAR] = ACTIONS(6091), - [sym_variable_name] = ACTIONS(6093), - [anon_sym_DOLLAR] = ACTIONS(6095), - [anon_sym_DASH] = ACTIONS(6095), - [anon_sym_QMARK] = ACTIONS(6091), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6089), - }, - [2533] = { - [anon_sym_EQ] = ACTIONS(6097), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2534] = { - [anon_sym_EQ] = ACTIONS(6099), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2535] = { + [2536] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -72695,8 +74483,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -72705,8 +74493,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(1972), [sym_c_style_for_statement] = STATE(387), @@ -72716,64 +74504,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2536] = { - [sym_subscript] = STATE(1973), - [aux_sym__simple_variable_name_token1] = ACTIONS(6101), - [anon_sym__] = ACTIONS(6101), - [anon_sym_AT] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(6105), - [anon_sym_STAR] = ACTIONS(6103), - [sym_variable_name] = ACTIONS(6107), - [anon_sym_DOLLAR] = ACTIONS(6109), - [anon_sym_DASH] = ACTIONS(6109), - [anon_sym_QMARK] = ACTIONS(6103), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6101), - [anon_sym_POUND] = ACTIONS(6105), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2537] = { + [sym_subscript] = STATE(1974), + [anon_sym__] = ACTIONS(6315), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6315), + [anon_sym_STAR] = ACTIONS(6317), + [anon_sym_POUND] = ACTIONS(6319), + [anon_sym_BANG] = ACTIONS(6319), + [aux_sym__simple_variable_name_token1] = ACTIONS(6315), + [sym_variable_name] = ACTIONS(6321), + [anon_sym_DOLLAR] = ACTIONS(6323), + [anon_sym_DASH] = ACTIONS(6323), + [anon_sym_AT] = ACTIONS(6317), + [anon_sym_QMARK] = ACTIONS(6317), + }, + [2538] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -72782,8 +74571,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -72791,11 +74580,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1975), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(1978), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1976), + [sym__statements] = STATE(1979), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -72803,49 +74592,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2538] = { + [2539] = { + [sym_subscript] = STATE(1982), + [anon_sym__] = ACTIONS(6325), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6325), + [anon_sym_STAR] = ACTIONS(6327), + [aux_sym__simple_variable_name_token1] = ACTIONS(6325), + [sym_variable_name] = ACTIONS(6329), + [anon_sym_DOLLAR] = ACTIONS(6331), + [anon_sym_DASH] = ACTIONS(6331), + [anon_sym_AT] = ACTIONS(6327), + [anon_sym_QMARK] = ACTIONS(6327), + }, + [2540] = { + [anon_sym_EQ] = ACTIONS(6333), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2541] = { + [anon_sym_EQ] = ACTIONS(6335), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2542] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -72854,8 +74667,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -72864,10 +74677,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1979), + [sym__statements] = STATE(2011), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -72875,72 +74688,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2539] = { - [sym_subscript] = STATE(1982), - [aux_sym__simple_variable_name_token1] = ACTIONS(6111), - [anon_sym__] = ACTIONS(6111), - [anon_sym_AT] = ACTIONS(6113), - [anon_sym_STAR] = ACTIONS(6113), - [sym_variable_name] = ACTIONS(6115), - [anon_sym_DOLLAR] = ACTIONS(6117), - [anon_sym_DASH] = ACTIONS(6117), - [anon_sym_QMARK] = ACTIONS(6113), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6111), - }, - [2540] = { - [anon_sym_EQ] = ACTIONS(6119), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2541] = { - [anon_sym_EQ] = ACTIONS(6121), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(187), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2542] = { + [2543] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -72949,8 +74740,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -72959,8 +74750,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(2012), [sym_c_style_for_statement] = STATE(387), @@ -72970,64 +74761,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2543] = { - [sym_subscript] = STATE(2013), - [aux_sym__simple_variable_name_token1] = ACTIONS(6123), - [anon_sym_BANG] = ACTIONS(6125), - [sym_variable_name] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_DASH] = ACTIONS(6129), - [anon_sym_QMARK] = ACTIONS(6131), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6125), - [anon_sym__] = ACTIONS(6123), - [anon_sym_AT] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_0] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2544] = { + [sym_subscript] = STATE(2014), + [anon_sym__] = ACTIONS(6337), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6339), + [anon_sym_BANG] = ACTIONS(6339), + [sym_variable_name] = ACTIONS(6341), + [anon_sym_DOLLAR] = ACTIONS(6343), + [anon_sym_DASH] = ACTIONS(6343), + [anon_sym_AT] = ACTIONS(6345), + [anon_sym_0] = ACTIONS(6337), + [anon_sym_STAR] = ACTIONS(6345), + [aux_sym__simple_variable_name_token1] = ACTIONS(6337), + [anon_sym_QMARK] = ACTIONS(6345), + }, + [2545] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -73036,8 +74828,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -73045,11 +74837,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2015), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(2018), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2016), + [sym__statements] = STATE(2019), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -73057,49 +74849,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2545] = { + [2546] = { + [sym_subscript] = STATE(2022), + [anon_sym__] = ACTIONS(6347), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6349), + [anon_sym_DOLLAR] = ACTIONS(6351), + [anon_sym_DASH] = ACTIONS(6351), + [anon_sym_AT] = ACTIONS(6353), + [anon_sym_0] = ACTIONS(6347), + [anon_sym_STAR] = ACTIONS(6353), + [aux_sym__simple_variable_name_token1] = ACTIONS(6347), + [anon_sym_QMARK] = ACTIONS(6353), + }, + [2547] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6355), + }, + [2548] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6357), + }, + [2549] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -73108,8 +74924,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -73118,10 +74934,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2019), + [sym__statements] = STATE(2051), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -73129,72 +74945,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2546] = { - [sym_subscript] = STATE(2022), - [aux_sym__simple_variable_name_token1] = ACTIONS(6133), - [sym_variable_name] = ACTIONS(6135), - [anon_sym_DOLLAR] = ACTIONS(6137), - [anon_sym_DASH] = ACTIONS(6137), - [anon_sym_QMARK] = ACTIONS(6139), - [sym_comment] = ACTIONS(19), - [anon_sym__] = ACTIONS(6133), - [anon_sym_AT] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(6139), - [anon_sym_0] = ACTIONS(6133), - }, - [2547] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(6141), - [sym_comment] = ACTIONS(19), - }, - [2548] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(6143), - [sym_comment] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(187), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2549] = { + [2550] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -73203,8 +74997,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -73213,8 +75007,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(2052), [sym_c_style_for_statement] = STATE(387), @@ -73224,64 +75018,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2550] = { - [sym_subscript] = STATE(2053), - [aux_sym__simple_variable_name_token1] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6147), - [sym_variable_name] = ACTIONS(6149), - [anon_sym_DOLLAR] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_QMARK] = ACTIONS(6153), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6147), - [anon_sym__] = ACTIONS(6145), - [anon_sym_AT] = ACTIONS(6153), - [anon_sym_STAR] = ACTIONS(6153), - [anon_sym_0] = ACTIONS(6145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2551] = { + [sym_subscript] = STATE(2054), + [anon_sym__] = ACTIONS(6359), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6361), + [anon_sym_BANG] = ACTIONS(6361), + [sym_variable_name] = ACTIONS(6363), + [anon_sym_DOLLAR] = ACTIONS(6365), + [anon_sym_DASH] = ACTIONS(6365), + [anon_sym_AT] = ACTIONS(6367), + [anon_sym_0] = ACTIONS(6359), + [anon_sym_STAR] = ACTIONS(6367), + [aux_sym__simple_variable_name_token1] = ACTIONS(6359), + [anon_sym_QMARK] = ACTIONS(6367), + }, + [2552] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -73290,8 +75085,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -73299,11 +75094,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2055), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(2058), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2056), + [sym__statements] = STATE(2059), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -73311,49 +75106,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2552] = { + [2553] = { + [sym_subscript] = STATE(2062), + [anon_sym__] = ACTIONS(6369), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6371), + [anon_sym_DOLLAR] = ACTIONS(6373), + [anon_sym_DASH] = ACTIONS(6373), + [anon_sym_AT] = ACTIONS(6375), + [anon_sym_0] = ACTIONS(6369), + [anon_sym_STAR] = ACTIONS(6375), + [aux_sym__simple_variable_name_token1] = ACTIONS(6369), + [anon_sym_QMARK] = ACTIONS(6375), + }, + [2554] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6377), + }, + [2555] = { + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6379), + }, + [2556] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -73362,8 +75181,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -73372,10 +75191,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2059), + [sym__statements] = STATE(2091), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -73383,72 +75202,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2553] = { - [sym_subscript] = STATE(2062), - [aux_sym__simple_variable_name_token1] = ACTIONS(6155), - [sym_variable_name] = ACTIONS(6157), - [anon_sym_DOLLAR] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_QMARK] = ACTIONS(6161), - [sym_comment] = ACTIONS(19), - [anon_sym__] = ACTIONS(6155), - [anon_sym_AT] = ACTIONS(6161), - [anon_sym_STAR] = ACTIONS(6161), - [anon_sym_0] = ACTIONS(6155), - }, - [2554] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(6163), - [sym_comment] = ACTIONS(19), - }, - [2555] = { - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(6165), - [sym_comment] = ACTIONS(19), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2556] = { + [2557] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -73457,8 +75254,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -73467,8 +75264,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(2092), [sym_c_style_for_statement] = STATE(387), @@ -73478,64 +75275,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2557] = { - [sym_subscript] = STATE(2093), - [aux_sym__simple_variable_name_token1] = ACTIONS(6167), - [anon_sym__] = ACTIONS(6167), - [anon_sym_AT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6169), - [sym_variable_name] = ACTIONS(6173), - [anon_sym_DOLLAR] = ACTIONS(6175), - [anon_sym_DASH] = ACTIONS(6175), - [anon_sym_QMARK] = ACTIONS(6169), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6167), - [anon_sym_POUND] = ACTIONS(6171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2558] = { + [sym_subscript] = STATE(2094), + [anon_sym__] = ACTIONS(6381), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6381), + [anon_sym_STAR] = ACTIONS(6383), + [anon_sym_POUND] = ACTIONS(6385), + [anon_sym_BANG] = ACTIONS(6385), + [aux_sym__simple_variable_name_token1] = ACTIONS(6381), + [sym_variable_name] = ACTIONS(6387), + [anon_sym_DOLLAR] = ACTIONS(6389), + [anon_sym_DASH] = ACTIONS(6389), + [anon_sym_AT] = ACTIONS(6383), + [anon_sym_QMARK] = ACTIONS(6383), + }, + [2559] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -73544,8 +75342,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -73553,11 +75351,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2095), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(2098), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2096), + [sym__statements] = STATE(2099), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -73565,49 +75363,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2559] = { + [2560] = { + [sym_subscript] = STATE(2102), + [anon_sym__] = ACTIONS(6391), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6391), + [anon_sym_STAR] = ACTIONS(6393), + [aux_sym__simple_variable_name_token1] = ACTIONS(6391), + [sym_variable_name] = ACTIONS(6395), + [anon_sym_DOLLAR] = ACTIONS(6397), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_AT] = ACTIONS(6393), + [anon_sym_QMARK] = ACTIONS(6393), + }, + [2561] = { + [anon_sym_EQ] = ACTIONS(6399), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2562] = { + [anon_sym_EQ] = ACTIONS(6401), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2563] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -73616,8 +75438,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -73626,10 +75448,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2099), + [sym__statements] = STATE(2131), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -73637,72 +75459,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2560] = { - [sym_subscript] = STATE(2102), - [aux_sym__simple_variable_name_token1] = ACTIONS(6177), - [anon_sym__] = ACTIONS(6177), - [anon_sym_AT] = ACTIONS(6179), - [anon_sym_STAR] = ACTIONS(6179), - [sym_variable_name] = ACTIONS(6181), - [anon_sym_DOLLAR] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_QMARK] = ACTIONS(6179), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6177), - }, - [2561] = { - [anon_sym_EQ] = ACTIONS(6185), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2562] = { - [anon_sym_EQ] = ACTIONS(6187), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2563] = { + [2564] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -73711,8 +75511,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -73721,8 +75521,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(2132), [sym_c_style_for_statement] = STATE(387), @@ -73732,64 +75532,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2564] = { - [sym_subscript] = STATE(2133), - [aux_sym__simple_variable_name_token1] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6189), - [anon_sym_AT] = ACTIONS(6191), - [anon_sym_BANG] = ACTIONS(6193), - [anon_sym_STAR] = ACTIONS(6191), - [sym_variable_name] = ACTIONS(6195), - [anon_sym_DOLLAR] = ACTIONS(6197), - [anon_sym_DASH] = ACTIONS(6197), - [anon_sym_QMARK] = ACTIONS(6191), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6189), - [anon_sym_POUND] = ACTIONS(6193), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2565] = { + [sym_subscript] = STATE(2134), + [anon_sym__] = ACTIONS(6403), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6403), + [anon_sym_STAR] = ACTIONS(6405), + [anon_sym_POUND] = ACTIONS(6407), + [anon_sym_BANG] = ACTIONS(6407), + [aux_sym__simple_variable_name_token1] = ACTIONS(6403), + [sym_variable_name] = ACTIONS(6409), + [anon_sym_DOLLAR] = ACTIONS(6411), + [anon_sym_DASH] = ACTIONS(6411), + [anon_sym_AT] = ACTIONS(6405), + [anon_sym_QMARK] = ACTIONS(6405), + }, + [2566] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -73798,8 +75599,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -73807,11 +75608,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2135), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(2138), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2136), + [sym__statements] = STATE(2139), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -73819,49 +75620,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2566] = { + [2567] = { + [sym_subscript] = STATE(2142), + [anon_sym__] = ACTIONS(6413), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6413), + [anon_sym_STAR] = ACTIONS(6415), + [aux_sym__simple_variable_name_token1] = ACTIONS(6413), + [sym_variable_name] = ACTIONS(6417), + [anon_sym_DOLLAR] = ACTIONS(6419), + [anon_sym_DASH] = ACTIONS(6419), + [anon_sym_AT] = ACTIONS(6415), + [anon_sym_QMARK] = ACTIONS(6415), + }, + [2568] = { + [anon_sym_EQ] = ACTIONS(6421), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2569] = { + [anon_sym_EQ] = ACTIONS(6423), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2570] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -73870,8 +75695,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -73880,10 +75705,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2139), + [sym__statements] = STATE(2171), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -73891,72 +75716,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2567] = { - [sym_subscript] = STATE(2142), - [aux_sym__simple_variable_name_token1] = ACTIONS(6199), - [anon_sym__] = ACTIONS(6199), - [anon_sym_AT] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6201), - [sym_variable_name] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6205), - [anon_sym_QMARK] = ACTIONS(6201), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6199), - }, - [2568] = { - [anon_sym_EQ] = ACTIONS(6207), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2569] = { - [anon_sym_EQ] = ACTIONS(6209), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2570] = { + [2571] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -73965,8 +75768,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -73975,8 +75778,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(2172), [sym_c_style_for_statement] = STATE(387), @@ -73986,64 +75789,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2571] = { - [sym_subscript] = STATE(2173), - [aux_sym__simple_variable_name_token1] = ACTIONS(6211), - [anon_sym__] = ACTIONS(6211), - [anon_sym_AT] = ACTIONS(6213), - [anon_sym_BANG] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6213), - [sym_variable_name] = ACTIONS(6217), - [anon_sym_DOLLAR] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_QMARK] = ACTIONS(6213), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6211), - [anon_sym_POUND] = ACTIONS(6215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2572] = { + [sym_subscript] = STATE(2174), + [anon_sym__] = ACTIONS(6425), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6425), + [anon_sym_STAR] = ACTIONS(6427), + [anon_sym_POUND] = ACTIONS(6429), + [anon_sym_BANG] = ACTIONS(6429), + [aux_sym__simple_variable_name_token1] = ACTIONS(6425), + [sym_variable_name] = ACTIONS(6431), + [anon_sym_DOLLAR] = ACTIONS(6433), + [anon_sym_DASH] = ACTIONS(6433), + [anon_sym_AT] = ACTIONS(6427), + [anon_sym_QMARK] = ACTIONS(6427), + }, + [2573] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -74052,8 +75856,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -74061,11 +75865,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2175), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(2178), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2176), + [sym__statements] = STATE(2179), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -74073,49 +75877,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2573] = { + [2574] = { + [sym_subscript] = STATE(2182), + [anon_sym__] = ACTIONS(6435), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6435), + [anon_sym_STAR] = ACTIONS(6437), + [aux_sym__simple_variable_name_token1] = ACTIONS(6435), + [sym_variable_name] = ACTIONS(6439), + [anon_sym_DOLLAR] = ACTIONS(6441), + [anon_sym_DASH] = ACTIONS(6441), + [anon_sym_AT] = ACTIONS(6437), + [anon_sym_QMARK] = ACTIONS(6437), + }, + [2575] = { + [anon_sym_EQ] = ACTIONS(6443), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2576] = { + [anon_sym_EQ] = ACTIONS(6445), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2577] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -74124,8 +75952,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -74134,10 +75962,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2179), + [sym__statements] = STATE(2211), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -74145,72 +75973,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2574] = { - [sym_subscript] = STATE(2182), - [aux_sym__simple_variable_name_token1] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6221), - [anon_sym_AT] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [sym_variable_name] = ACTIONS(6225), - [anon_sym_DOLLAR] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_QMARK] = ACTIONS(6223), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6221), - }, - [2575] = { - [anon_sym_EQ] = ACTIONS(6229), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2576] = { - [anon_sym_EQ] = ACTIONS(6231), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2577] = { + [2578] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -74219,8 +76025,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -74229,8 +76035,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(2212), [sym_c_style_for_statement] = STATE(387), @@ -74240,64 +76046,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2578] = { - [sym_subscript] = STATE(2213), - [aux_sym__simple_variable_name_token1] = ACTIONS(6233), - [anon_sym__] = ACTIONS(6233), - [anon_sym_AT] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6235), - [sym_variable_name] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_DASH] = ACTIONS(6241), - [anon_sym_QMARK] = ACTIONS(6235), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6233), - [anon_sym_POUND] = ACTIONS(6237), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2579] = { + [sym_subscript] = STATE(2214), + [anon_sym__] = ACTIONS(6447), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6447), + [anon_sym_STAR] = ACTIONS(6449), + [anon_sym_POUND] = ACTIONS(6451), + [anon_sym_BANG] = ACTIONS(6451), + [aux_sym__simple_variable_name_token1] = ACTIONS(6447), + [sym_variable_name] = ACTIONS(6453), + [anon_sym_DOLLAR] = ACTIONS(6455), + [anon_sym_DASH] = ACTIONS(6455), + [anon_sym_AT] = ACTIONS(6449), + [anon_sym_QMARK] = ACTIONS(6449), + }, + [2580] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -74306,8 +76113,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -74315,11 +76122,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2215), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(2218), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2216), + [sym__statements] = STATE(2219), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -74327,49 +76134,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2580] = { + [2581] = { + [sym_subscript] = STATE(2222), + [anon_sym__] = ACTIONS(6457), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6459), + [aux_sym__simple_variable_name_token1] = ACTIONS(6457), + [sym_variable_name] = ACTIONS(6461), + [anon_sym_DOLLAR] = ACTIONS(6463), + [anon_sym_DASH] = ACTIONS(6463), + [anon_sym_AT] = ACTIONS(6459), + [anon_sym_QMARK] = ACTIONS(6459), + }, + [2582] = { + [anon_sym_EQ] = ACTIONS(6465), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2583] = { + [anon_sym_EQ] = ACTIONS(6467), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2584] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -74378,8 +76209,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -74388,10 +76219,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2219), + [sym__statements] = STATE(2251), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -74399,72 +76230,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2581] = { - [sym_subscript] = STATE(2222), - [aux_sym__simple_variable_name_token1] = ACTIONS(6243), - [anon_sym__] = ACTIONS(6243), - [anon_sym_AT] = ACTIONS(6245), - [anon_sym_STAR] = ACTIONS(6245), - [sym_variable_name] = ACTIONS(6247), - [anon_sym_DOLLAR] = ACTIONS(6249), - [anon_sym_DASH] = ACTIONS(6249), - [anon_sym_QMARK] = ACTIONS(6245), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6243), - }, - [2582] = { - [anon_sym_EQ] = ACTIONS(6251), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2583] = { - [anon_sym_EQ] = ACTIONS(6253), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2584] = { + [2585] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -74473,8 +76282,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -74483,8 +76292,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(2252), [sym_c_style_for_statement] = STATE(387), @@ -74494,64 +76303,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2585] = { - [sym_subscript] = STATE(2253), - [aux_sym__simple_variable_name_token1] = ACTIONS(6255), - [anon_sym__] = ACTIONS(6255), - [anon_sym_AT] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6259), - [anon_sym_STAR] = ACTIONS(6257), - [sym_variable_name] = ACTIONS(6261), - [anon_sym_DOLLAR] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_QMARK] = ACTIONS(6257), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6255), - [anon_sym_POUND] = ACTIONS(6259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2586] = { + [sym_subscript] = STATE(2254), + [anon_sym__] = ACTIONS(6469), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_POUND] = ACTIONS(6473), + [anon_sym_BANG] = ACTIONS(6473), + [aux_sym__simple_variable_name_token1] = ACTIONS(6469), + [sym_variable_name] = ACTIONS(6475), + [anon_sym_DOLLAR] = ACTIONS(6477), + [anon_sym_DASH] = ACTIONS(6477), + [anon_sym_AT] = ACTIONS(6471), + [anon_sym_QMARK] = ACTIONS(6471), + }, + [2587] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -74560,8 +76370,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -74569,11 +76379,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2255), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(2258), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2256), + [sym__statements] = STATE(2259), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -74581,49 +76391,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2587] = { + [2588] = { + [sym_subscript] = STATE(2262), + [anon_sym__] = ACTIONS(6479), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [aux_sym__simple_variable_name_token1] = ACTIONS(6479), + [sym_variable_name] = ACTIONS(6483), + [anon_sym_DOLLAR] = ACTIONS(6485), + [anon_sym_DASH] = ACTIONS(6485), + [anon_sym_AT] = ACTIONS(6481), + [anon_sym_QMARK] = ACTIONS(6481), + }, + [2589] = { + [anon_sym_EQ] = ACTIONS(6487), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2590] = { + [anon_sym_EQ] = ACTIONS(6489), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2591] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -74632,8 +76466,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -74642,10 +76476,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2259), + [sym__statements] = STATE(2291), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -74653,72 +76487,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2588] = { - [sym_subscript] = STATE(2262), - [aux_sym__simple_variable_name_token1] = ACTIONS(6265), - [anon_sym__] = ACTIONS(6265), - [anon_sym_AT] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6267), - [sym_variable_name] = ACTIONS(6269), - [anon_sym_DOLLAR] = ACTIONS(6271), - [anon_sym_DASH] = ACTIONS(6271), - [anon_sym_QMARK] = ACTIONS(6267), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6265), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2589] = { - [anon_sym_EQ] = ACTIONS(6273), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2590] = { - [anon_sym_EQ] = ACTIONS(6275), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2591] = { + [2592] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -74727,8 +76539,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -74737,8 +76549,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), [sym__statements] = STATE(2292), [sym_c_style_for_statement] = STATE(387), @@ -74748,64 +76560,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2592] = { - [sym_subscript] = STATE(2293), - [aux_sym__simple_variable_name_token1] = ACTIONS(6277), - [anon_sym__] = ACTIONS(6277), - [anon_sym_AT] = ACTIONS(6279), - [anon_sym_BANG] = ACTIONS(6281), - [anon_sym_STAR] = ACTIONS(6279), - [sym_variable_name] = ACTIONS(6283), - [anon_sym_DOLLAR] = ACTIONS(6285), - [anon_sym_DASH] = ACTIONS(6285), - [anon_sym_QMARK] = ACTIONS(6279), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6277), - [anon_sym_POUND] = ACTIONS(6281), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2593] = { + [sym_subscript] = STATE(2294), + [anon_sym__] = ACTIONS(6491), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6491), + [anon_sym_STAR] = ACTIONS(6493), + [anon_sym_POUND] = ACTIONS(6495), + [anon_sym_BANG] = ACTIONS(6495), + [aux_sym__simple_variable_name_token1] = ACTIONS(6491), + [sym_variable_name] = ACTIONS(6497), + [anon_sym_DOLLAR] = ACTIONS(6499), + [anon_sym_DASH] = ACTIONS(6499), + [anon_sym_AT] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6493), + }, + [2594] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -74814,8 +76627,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -74823,11 +76636,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2295), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(2298), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2296), + [sym__statements] = STATE(2299), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -74835,49 +76648,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2594] = { + [2595] = { + [sym_subscript] = STATE(2302), + [anon_sym__] = ACTIONS(6501), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6501), + [anon_sym_STAR] = ACTIONS(6503), + [aux_sym__simple_variable_name_token1] = ACTIONS(6501), + [sym_variable_name] = ACTIONS(6505), + [anon_sym_DOLLAR] = ACTIONS(6507), + [anon_sym_DASH] = ACTIONS(6507), + [anon_sym_AT] = ACTIONS(6503), + [anon_sym_QMARK] = ACTIONS(6503), + }, + [2596] = { + [anon_sym_EQ] = ACTIONS(6509), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2597] = { + [anon_sym_EQ] = ACTIONS(6511), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2598] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -74886,8 +76723,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -74896,10 +76733,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2299), + [sym__statements] = STATE(2329), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -74907,87 +76744,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2595] = { - [sym_subscript] = STATE(2302), - [aux_sym__simple_variable_name_token1] = ACTIONS(6287), - [anon_sym__] = ACTIONS(6287), - [anon_sym_AT] = ACTIONS(6289), - [anon_sym_STAR] = ACTIONS(6289), - [sym_variable_name] = ACTIONS(6291), - [anon_sym_DOLLAR] = ACTIONS(6293), - [anon_sym_DASH] = ACTIONS(6293), - [anon_sym_QMARK] = ACTIONS(6289), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6287), - }, - [2596] = { - [anon_sym_EQ] = ACTIONS(6295), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2597] = { - [anon_sym_EQ] = ACTIONS(6297), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2598] = { - [sym_subscript] = STATE(2329), - [aux_sym__simple_variable_name_token1] = ACTIONS(6299), - [anon_sym__] = ACTIONS(6299), - [anon_sym_AT] = ACTIONS(6301), - [anon_sym_BANG] = ACTIONS(6303), - [anon_sym_STAR] = ACTIONS(6301), - [sym_variable_name] = ACTIONS(6305), - [anon_sym_DOLLAR] = ACTIONS(6307), - [anon_sym_DASH] = ACTIONS(6307), - [anon_sym_QMARK] = ACTIONS(6301), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6299), - [anon_sym_POUND] = ACTIONS(6303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2599] = { + [sym_subscript] = STATE(2330), + [anon_sym__] = ACTIONS(6513), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6513), + [anon_sym_STAR] = ACTIONS(6515), + [anon_sym_POUND] = ACTIONS(6517), + [anon_sym_BANG] = ACTIONS(6517), + [aux_sym__simple_variable_name_token1] = ACTIONS(6513), + [sym_variable_name] = ACTIONS(6519), + [anon_sym_DOLLAR] = ACTIONS(6521), + [anon_sym_DASH] = ACTIONS(6521), + [anon_sym_AT] = ACTIONS(6515), + [anon_sym_QMARK] = ACTIONS(6515), + }, + [2600] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -74996,8 +76811,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -75005,11 +76820,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2331), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(2332), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2332), + [sym__statements] = STATE(2333), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -75017,49 +76832,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2600] = { + [2601] = { + [sym_subscript] = STATE(2336), + [anon_sym__] = ACTIONS(6523), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6523), + [anon_sym_STAR] = ACTIONS(6525), + [aux_sym__simple_variable_name_token1] = ACTIONS(6523), + [sym_variable_name] = ACTIONS(6527), + [anon_sym_DOLLAR] = ACTIONS(6529), + [anon_sym_DASH] = ACTIONS(6529), + [anon_sym_AT] = ACTIONS(6525), + [anon_sym_QMARK] = ACTIONS(6525), + }, + [2602] = { + [anon_sym_EQ] = ACTIONS(6531), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2603] = { + [anon_sym_EQ] = ACTIONS(6533), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2604] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(1462), [sym_function_definition] = STATE(1462), @@ -75068,8 +76907,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(541), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(543), [sym_redirected_statement] = STATE(1462), [sym_for_statement] = STATE(1462), @@ -75078,10 +76917,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1462), [sym_unset_command] = STATE(1462), [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2333), + [sym__statements] = STATE(2362), [sym_c_style_for_statement] = STATE(1462), [sym_while_statement] = STATE(1462), [sym_case_statement] = STATE(1462), @@ -75089,87 +76928,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(1462), [sym_command] = STATE(1462), [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2601] = { - [sym_subscript] = STATE(2336), - [aux_sym__simple_variable_name_token1] = ACTIONS(6309), - [anon_sym__] = ACTIONS(6309), - [anon_sym_AT] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6311), - [sym_variable_name] = ACTIONS(6313), - [anon_sym_DOLLAR] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_QMARK] = ACTIONS(6311), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6309), - }, - [2602] = { - [anon_sym_EQ] = ACTIONS(6317), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2603] = { - [anon_sym_EQ] = ACTIONS(6319), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), - }, - [2604] = { - [sym_subscript] = STATE(2362), - [aux_sym__simple_variable_name_token1] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6321), - [anon_sym_AT] = ACTIONS(6323), - [anon_sym_BANG] = ACTIONS(6325), - [anon_sym_STAR] = ACTIONS(6323), - [sym_variable_name] = ACTIONS(6327), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_DASH] = ACTIONS(6329), - [anon_sym_QMARK] = ACTIONS(6323), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6321), - [anon_sym_POUND] = ACTIONS(6325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2605] = { + [sym_subscript] = STATE(2363), + [anon_sym__] = ACTIONS(6535), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6535), + [anon_sym_STAR] = ACTIONS(6537), + [anon_sym_POUND] = ACTIONS(6539), + [anon_sym_BANG] = ACTIONS(6539), + [aux_sym__simple_variable_name_token1] = ACTIONS(6535), + [sym_variable_name] = ACTIONS(6541), + [anon_sym_DOLLAR] = ACTIONS(6543), + [anon_sym_DASH] = ACTIONS(6543), + [anon_sym_AT] = ACTIONS(6537), + [anon_sym_QMARK] = ACTIONS(6537), + }, + [2606] = { [aux_sym__literal_repeat1] = STATE(386), [sym_if_statement] = STATE(387), [sym_function_definition] = STATE(387), @@ -75178,8 +76995,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(388), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), [aux_sym__statements_repeat1] = STATE(390), [sym_redirected_statement] = STATE(387), [sym_for_statement] = STATE(387), @@ -75187,11 +77004,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(387), [sym_declaration_command] = STATE(387), [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2364), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_file_redirect] = STATE(2365), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2365), + [sym__statements] = STATE(2366), [sym_c_style_for_statement] = STATE(387), [sym_while_statement] = STATE(387), [sym_case_statement] = STATE(387), @@ -75199,279 +77016,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(387), [sym_command] = STATE(387), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(73), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2606] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2366), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_local] = ACTIONS(265), - [anon_sym_typeset] = ACTIONS(265), - [anon_sym_unsetenv] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_function] = ACTIONS(81), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_declare] = ACTIONS(265), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(43), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_unset] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2607] = { [sym_subscript] = STATE(2369), - [aux_sym__simple_variable_name_token1] = ACTIONS(6331), - [anon_sym__] = ACTIONS(6331), - [anon_sym_AT] = ACTIONS(6333), - [anon_sym_STAR] = ACTIONS(6333), - [sym_variable_name] = ACTIONS(6335), - [anon_sym_DOLLAR] = ACTIONS(6337), - [anon_sym_DASH] = ACTIONS(6337), - [anon_sym_QMARK] = ACTIONS(6333), - [sym_comment] = ACTIONS(19), - [anon_sym_0] = ACTIONS(6331), + [anon_sym__] = ACTIONS(6545), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6545), + [anon_sym_STAR] = ACTIONS(6547), + [aux_sym__simple_variable_name_token1] = ACTIONS(6545), + [sym_variable_name] = ACTIONS(6549), + [anon_sym_DOLLAR] = ACTIONS(6551), + [anon_sym_DASH] = ACTIONS(6551), + [anon_sym_AT] = ACTIONS(6547), + [anon_sym_QMARK] = ACTIONS(6547), }, [2608] = { - [anon_sym_EQ] = ACTIONS(6339), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(6553), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), }, [2609] = { - [anon_sym_EQ] = ACTIONS(6341), - [sym_comment] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(6555), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), }, [2610] = { [aux_sym__literal_repeat1] = STATE(386), - [sym__terminated_statement] = STATE(2409), - [sym_if_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_negated_command] = STATE(60), - [sym_test_command] = STATE(60), - [sym_variable_assignment] = STATE(61), + [sym__terminated_statement] = STATE(2411), + [sym_if_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_negated_command] = STATE(65), + [sym_test_command] = STATE(65), + [sym_variable_assignment] = STATE(66), [sym_subscript] = STATE(2407), [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(384), - [sym_command_substitution] = STATE(384), - [sym_redirected_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_compound_statement] = STATE(60), - [sym_subshell] = STATE(60), - [sym_declaration_command] = STATE(60), - [sym_unset_command] = STATE(60), + [sym_expansion] = STATE(382), + [sym_command_substitution] = STATE(382), + [sym_redirected_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_compound_statement] = STATE(65), + [sym_subshell] = STATE(65), + [sym_declaration_command] = STATE(65), + [sym_unset_command] = STATE(65), [sym_file_redirect] = STATE(391), - [sym_string] = STATE(384), - [sym_process_substitution] = STATE(384), + [sym_string] = STATE(382), + [sym_process_substitution] = STATE(382), [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_case_statement] = STATE(60), - [sym_pipeline] = STATE(60), - [sym_list] = STATE(60), - [sym_command] = STATE(60), + [sym_c_style_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_case_statement] = STATE(65), + [sym_pipeline] = STATE(65), + [sym_list] = STATE(65), + [sym_command] = STATE(65), [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(384), - [sym_string_expansion] = STATE(384), - [sym_word] = ACTIONS(69), - [anon_sym_AMP_GT_GT] = ACTIONS(9), - [anon_sym_typeset] = ACTIONS(73), - [anon_sym_DOLLAR] = ACTIONS(77), - [anon_sym_LT_LPAREN] = ACTIONS(79), - [sym_comment] = ACTIONS(19), - [anon_sym_LT_AMP] = ACTIONS(9), - [anon_sym_export] = ACTIONS(73), + [sym_simple_expansion] = STATE(382), + [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(73), - [sym_variable_name] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(73), - [anon_sym_unset] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(9), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_local] = ACTIONS(73), - [anon_sym_unsetenv] = ACTIONS(75), - [anon_sym_function] = ACTIONS(81), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(25), - [anon_sym_GT_GT] = ACTIONS(9), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(43), - [anon_sym_GT] = ACTIONS(25), - [anon_sym_AMP_GT] = ACTIONS(25), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(79), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [2611] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(6343), - [anon_sym_LPAREN_LPAREN] = ACTIONS(6345), - [sym_comment] = ACTIONS(19), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(6557), + [aux_sym__simple_variable_name_token1] = ACTIONS(6559), }, [2612] = { - [aux_sym_concatenation_repeat1] = STATE(735), - [sym__concat] = ACTIONS(457), - [anon_sym_LF] = ACTIONS(6347), - [anon_sym_SEMI] = ACTIONS(6349), - [anon_sym_AMP] = ACTIONS(6349), + [aux_sym_concatenation_repeat1] = STATE(738), + [anon_sym_AMP] = ACTIONS(6561), [sym_comment] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6351), - [anon_sym_SEMI_SEMI] = ACTIONS(6349), + [sym__concat] = ACTIONS(515), + [anon_sym_LF] = ACTIONS(6563), + [anon_sym_SEMI] = ACTIONS(6561), + [anon_sym_SEMI_SEMI] = ACTIONS(6561), + [anon_sym_in] = ACTIONS(6565), }, [2613] = { [aux_sym__literal_repeat1] = STATE(741), - [anon_sym_in] = ACTIONS(6353), - [anon_sym_LF] = ACTIONS(6355), - [anon_sym_SEMI] = ACTIONS(6357), - [anon_sym_AMP] = ACTIONS(6357), + [anon_sym_AMP] = ACTIONS(6567), [sym_comment] = ACTIONS(3), - [sym__special_character] = ACTIONS(467), - [anon_sym_SEMI_SEMI] = ACTIONS(6357), + [anon_sym_LF] = ACTIONS(6569), + [anon_sym_SEMI] = ACTIONS(6567), + [sym__special_character] = ACTIONS(527), + [anon_sym_in] = ACTIONS(6571), + [anon_sym_SEMI_SEMI] = ACTIONS(6567), }, [2614] = { - [anon_sym_LF] = ACTIONS(6347), - [anon_sym_SEMI] = ACTIONS(6349), - [anon_sym_AMP] = ACTIONS(6349), + [anon_sym_AMP] = ACTIONS(6561), [sym_comment] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6351), - [anon_sym_SEMI_SEMI] = ACTIONS(6349), + [anon_sym_LF] = ACTIONS(6563), + [anon_sym_SEMI] = ACTIONS(6561), + [anon_sym_SEMI_SEMI] = ACTIONS(6561), + [anon_sym_in] = ACTIONS(6565), }, [2615] = { - [sym_comment] = ACTIONS(19), - [anon_sym_in] = ACTIONS(6359), + [anon_sym_in] = ACTIONS(6573), + [sym_comment] = ACTIONS(41), }, [2616] = { - [sym_comment] = ACTIONS(19), - [anon_sym_in] = ACTIONS(6361), + [anon_sym_in] = ACTIONS(6575), + [sym_comment] = ACTIONS(41), }, [2617] = { - [sym_command_substitution] = STATE(482), - [aux_sym__literal_repeat1] = STATE(484), - [sym_string] = STATE(482), - [sym_process_substitution] = STATE(482), - [aux_sym_for_statement_repeat1] = STATE(2421), - [sym_simple_expansion] = STATE(482), - [sym_string_expansion] = STATE(482), - [sym_concatenation] = STATE(2421), - [sym_expansion] = STATE(482), - [sym_word] = ACTIONS(1061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [sym_raw_string] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1073), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1069), - [anon_sym_GT_LPAREN] = ACTIONS(1073), - [sym_ansii_c_string] = ACTIONS(1061), - [sym__special_character] = ACTIONS(1075), - }, - [2618] = { [aux_sym__literal_repeat1] = STATE(561), [sym_unary_expression] = STATE(2619), [sym_postfix_expression] = STATE(2619), @@ -75485,49 +77209,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(2619), [sym_simple_expansion] = STATE(559), [sym_string_expansion] = STATE(559), - [sym_word] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_LT_LPAREN] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(607), - [sym__special_character] = ACTIONS(617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(603), - [sym_raw_string] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(6363), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(6363), - [anon_sym_AMP] = ACTIONS(6363), - [anon_sym_DQUOTE] = ACTIONS(613), - [anon_sym_BQUOTE] = ACTIONS(615), - [anon_sym_GT_LPAREN] = ACTIONS(611), - [sym_ansii_c_string] = ACTIONS(597), - [anon_sym_SEMI_SEMI] = ACTIONS(6363), + [anon_sym_LPAREN] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_GT_LPAREN] = ACTIONS(619), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), + [sym_word] = ACTIONS(609), + [sym__special_character] = ACTIONS(627), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(6577), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(6577), + [sym_test_operator] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_LT_LPAREN] = ACTIONS(619), + [sym_ansii_c_string] = ACTIONS(609), + [anon_sym_SEMI_SEMI] = ACTIONS(6577), + [anon_sym_AMP] = ACTIONS(6577), + }, + [2618] = { + [sym_command_substitution] = STATE(482), + [aux_sym__literal_repeat1] = STATE(484), + [sym_string] = STATE(482), + [sym_process_substitution] = STATE(482), + [aux_sym_for_statement_repeat1] = STATE(2422), + [sym_simple_expansion] = STATE(482), + [sym_string_expansion] = STATE(482), + [sym_concatenation] = STATE(2422), + [sym_expansion] = STATE(482), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_GT_LPAREN] = ACTIONS(1110), + [sym_number] = ACTIONS(1104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1100), + [sym_word] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1110), + [sym_ansii_c_string] = ACTIONS(1102), + [sym__special_character] = ACTIONS(1114), }, [2619] = { - [anon_sym_PLUS_EQ] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1079), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1079), - [sym_test_operator] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_EQ_TILDE] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_DASH_EQ] = ACTIONS(1079), - [anon_sym_BANG_EQ] = ACTIONS(1079), - [anon_sym_LF] = ACTIONS(6365), - [anon_sym_SEMI] = ACTIONS(6365), - [anon_sym_AMP] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_AMP_AMP] = ACTIONS(1079), - [anon_sym_SEMI_SEMI] = ACTIONS(6365), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_EQ_TILDE] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(6579), + [anon_sym_SEMI] = ACTIONS(6579), + [sym_test_operator] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1096), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(6579), + [anon_sym_AMP] = ACTIONS(6579), }, [2620] = { [aux_sym__literal_repeat1] = STATE(561), @@ -75543,205 +77292,206 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(2621), [sym_simple_expansion] = STATE(559), [sym_string_expansion] = STATE(559), - [sym_word] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_LT_LPAREN] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(607), - [sym__special_character] = ACTIONS(617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(603), - [sym_raw_string] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(6365), - [anon_sym_AMP] = ACTIONS(6365), - [anon_sym_DQUOTE] = ACTIONS(613), - [anon_sym_BQUOTE] = ACTIONS(615), - [anon_sym_GT_LPAREN] = ACTIONS(611), - [sym_ansii_c_string] = ACTIONS(597), - [anon_sym_SEMI_SEMI] = ACTIONS(6365), + [anon_sym_LPAREN] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_GT_LPAREN] = ACTIONS(619), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), + [sym_word] = ACTIONS(609), + [sym__special_character] = ACTIONS(627), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(6579), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(6579), + [sym_test_operator] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_LT_LPAREN] = ACTIONS(619), + [sym_ansii_c_string] = ACTIONS(609), + [anon_sym_SEMI_SEMI] = ACTIONS(6579), + [anon_sym_AMP] = ACTIONS(6579), }, [2621] = { - [anon_sym_PLUS_EQ] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1079), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1079), - [sym_test_operator] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_EQ_TILDE] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_DASH_EQ] = ACTIONS(1079), - [anon_sym_BANG_EQ] = ACTIONS(1079), - [anon_sym_LF] = ACTIONS(6367), - [anon_sym_SEMI] = ACTIONS(6367), - [anon_sym_AMP] = ACTIONS(6367), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_AMP_AMP] = ACTIONS(1079), - [anon_sym_SEMI_SEMI] = ACTIONS(6367), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_EQ_TILDE] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(6581), + [anon_sym_SEMI] = ACTIONS(6581), + [sym_test_operator] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1096), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(6581), + [anon_sym_AMP] = ACTIONS(6581), }, [2622] = { [sym_heredoc_redirect] = STATE(2625), [aux_sym_redirected_statement_repeat1] = STATE(2625), [sym_herestring_redirect] = STATE(2625), [sym_file_redirect] = STATE(2625), - [anon_sym_LT_LT_DASH] = ACTIONS(441), - [anon_sym_AMP_GT_GT] = ACTIONS(2202), - [anon_sym_LF] = ACTIONS(664), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(2202), - [sym_file_descriptor] = ACTIONS(2208), - [anon_sym_AMP_GT] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_LT_LT_LT] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_GT_AMP] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_esac] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_LT_AMP] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_SEMI_SEMI] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_AMP_GT_GT] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(684), + [anon_sym_SEMI] = ACTIONS(682), + [anon_sym_LT_LT] = ACTIONS(489), + [sym_file_descriptor] = ACTIONS(2256), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_AMP_GT] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(682), + [anon_sym_LT_LT_LT] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_GT_AMP] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_esac] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_LT_AMP] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(682), + [anon_sym_SEMI_SEMI] = ACTIONS(682), + [anon_sym_PIPE_AMP] = ACTIONS(682), }, [2623] = { [sym_heredoc_redirect] = STATE(2622), [aux_sym_redirected_statement_repeat1] = STATE(2622), [sym_herestring_redirect] = STATE(2622), [sym_file_redirect] = STATE(2622), - [anon_sym_LT_LT_DASH] = ACTIONS(1093), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LF] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [sym_file_descriptor] = ACTIONS(1095), - [anon_sym_AMP_GT] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT_LT_LT] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_esac] = ACTIONS(1093), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), + [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1122), + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1122), + [anon_sym_AMP_GT] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_GT_AMP] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_esac] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1122), + [anon_sym_LT_AMP] = ACTIONS(1122), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_PIPE_AMP] = ACTIONS(1122), }, [2624] = { [aux_sym_concatenation_repeat1] = STATE(2433), - [anon_sym_LT_LT_DASH] = ACTIONS(1127), - [anon_sym_AMP_GT_GT] = ACTIONS(1127), - [anon_sym_LF] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1127), - [anon_sym_LT_LT] = ACTIONS(1127), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1127), - [sym_file_descriptor] = ACTIONS(1129), - [anon_sym_AMP_GT] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1127), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1127), - [anon_sym_GT_AMP] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_esac] = ACTIONS(1127), - [anon_sym_GT_GT] = ACTIONS(1127), - [anon_sym_LT_AMP] = ACTIONS(1127), - [sym__concat] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(1127), - [anon_sym_SEMI_SEMI] = ACTIONS(1127), - [anon_sym_PIPE_AMP] = ACTIONS(1127), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_LT_LT] = ACTIONS(1156), + [sym_file_descriptor] = ACTIONS(1158), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_AMP_GT] = ACTIONS(1156), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_GT_AMP] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_esac] = ACTIONS(1156), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_LT_AMP] = ACTIONS(1156), + [sym__concat] = ACTIONS(2135), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(1156), }, [2625] = { [sym_heredoc_redirect] = STATE(2625), [aux_sym_redirected_statement_repeat1] = STATE(2625), [sym_herestring_redirect] = STATE(2625), [sym_file_redirect] = STATE(2625), - [anon_sym_LT_LT_DASH] = ACTIONS(2096), - [anon_sym_AMP_GT_GT] = ACTIONS(6369), - [anon_sym_LF] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_GT] = ACTIONS(6369), - [sym_file_descriptor] = ACTIONS(6372), - [anon_sym_AMP_GT] = ACTIONS(6369), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1147), - [anon_sym_LT_LT_LT] = ACTIONS(6375), - [anon_sym_PIPE] = ACTIONS(1147), - [anon_sym_GT_AMP] = ACTIONS(6369), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_esac] = ACTIONS(1147), - [anon_sym_GT_GT] = ACTIONS(6369), - [anon_sym_LT_AMP] = ACTIONS(6369), - [anon_sym_AMP_AMP] = ACTIONS(1147), - [anon_sym_SEMI_SEMI] = ACTIONS(1147), - [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_AMP_GT_GT] = ACTIONS(6583), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LT_LT] = ACTIONS(2142), + [sym_file_descriptor] = ACTIONS(6586), + [anon_sym_GT] = ACTIONS(6583), + [anon_sym_AMP_GT] = ACTIONS(6583), + [anon_sym_PIPE_PIPE] = ACTIONS(1171), + [anon_sym_LT_LT_LT] = ACTIONS(6589), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(6583), + [anon_sym_LT] = ACTIONS(6583), + [anon_sym_esac] = ACTIONS(1171), + [anon_sym_GT_GT] = ACTIONS(6583), + [anon_sym_LT_AMP] = ACTIONS(6583), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_SEMI_SEMI] = ACTIONS(1171), + [anon_sym_PIPE_AMP] = ACTIONS(1171), }, [2626] = { [aux_sym_concatenation_repeat1] = STATE(2433), - [anon_sym_LT_LT_DASH] = ACTIONS(365), - [anon_sym_AMP_GT_GT] = ACTIONS(365), - [anon_sym_LF] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(365), - [anon_sym_LT_LT] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_GT] = ACTIONS(365), - [sym_file_descriptor] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(365), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(365), - [anon_sym_LT_LT_LT] = ACTIONS(365), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_GT_AMP] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_esac] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_LT_AMP] = ACTIONS(365), - [sym__concat] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(365), - [anon_sym_SEMI_SEMI] = ACTIONS(365), - [anon_sym_PIPE_AMP] = ACTIONS(365), + [anon_sym_LT_LT_DASH] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_AMP_GT_GT] = ACTIONS(363), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(363), + [sym_file_descriptor] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(363), + [anon_sym_AMP_GT] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_GT_AMP] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(363), + [anon_sym_esac] = ACTIONS(363), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_LT_AMP] = ACTIONS(363), + [sym__concat] = ACTIONS(2135), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_SEMI_SEMI] = ACTIONS(363), + [anon_sym_PIPE_AMP] = ACTIONS(363), }, [2627] = { [aux_sym_concatenation_repeat1] = STATE(2433), - [anon_sym_LT_LT_DASH] = ACTIONS(1026), - [anon_sym_AMP_GT_GT] = ACTIONS(1026), - [anon_sym_LF] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_LT_LT] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_GT] = ACTIONS(1026), - [sym_file_descriptor] = ACTIONS(1024), - [anon_sym_AMP_GT] = ACTIONS(1026), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1026), - [anon_sym_LT_LT_LT] = ACTIONS(1026), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_GT_AMP] = ACTIONS(1026), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_esac] = ACTIONS(1026), - [anon_sym_GT_GT] = ACTIONS(1026), - [anon_sym_LT_AMP] = ACTIONS(1026), - [sym__concat] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1026), - [anon_sym_PIPE_AMP] = ACTIONS(1026), + [anon_sym_LT_LT_DASH] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1057), + [anon_sym_AMP_GT_GT] = ACTIONS(1057), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_LT_LT] = ACTIONS(1057), + [sym_file_descriptor] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_AMP_GT] = ACTIONS(1057), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_LT_LT_LT] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_GT_AMP] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_esac] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_LT_AMP] = ACTIONS(1057), + [sym__concat] = ACTIONS(2135), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [anon_sym_SEMI_SEMI] = ACTIONS(1057), + [anon_sym_PIPE_AMP] = ACTIONS(1057), }, [2628] = { [sym_command_substitution] = STATE(2612), @@ -75752,18 +77502,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(2612), [sym_concatenation] = STATE(2614), [sym_expansion] = STATE(2612), - [sym_word] = ACTIONS(6378), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(199), - [sym_raw_string] = ACTIONS(6378), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_LT_LPAREN] = ACTIONS(205), - [sym_comment] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(205), - [sym_ansii_c_string] = ACTIONS(6378), - [sym__special_character] = ACTIONS(207), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6592), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_number] = ACTIONS(6594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_word] = ACTIONS(6594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [sym_ansii_c_string] = ACTIONS(6592), + [sym__special_character] = ACTIONS(231), }, [2629] = { [aux_sym__literal_repeat1] = STATE(561), @@ -75779,49 +77530,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(2630), [sym_simple_expansion] = STATE(559), [sym_string_expansion] = STATE(559), - [sym_word] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_LT_LPAREN] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(607), - [sym__special_character] = ACTIONS(617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(603), - [sym_raw_string] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(6380), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(6380), - [anon_sym_AMP] = ACTIONS(6380), - [anon_sym_DQUOTE] = ACTIONS(613), - [anon_sym_BQUOTE] = ACTIONS(615), - [anon_sym_GT_LPAREN] = ACTIONS(611), - [sym_ansii_c_string] = ACTIONS(597), - [anon_sym_SEMI_SEMI] = ACTIONS(6380), + [anon_sym_LPAREN] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_GT_LPAREN] = ACTIONS(619), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), + [sym_word] = ACTIONS(609), + [sym__special_character] = ACTIONS(627), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(6596), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(6596), + [sym_test_operator] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_LT_LPAREN] = ACTIONS(619), + [sym_ansii_c_string] = ACTIONS(609), + [anon_sym_SEMI_SEMI] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6596), }, [2630] = { - [anon_sym_PLUS_EQ] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1079), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE_PIPE] = ACTIONS(1079), - [sym_test_operator] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_EQ_TILDE] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_DASH_EQ] = ACTIONS(1079), - [anon_sym_BANG_EQ] = ACTIONS(1079), - [anon_sym_LF] = ACTIONS(6382), - [anon_sym_SEMI] = ACTIONS(6382), - [anon_sym_AMP] = ACTIONS(6382), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_AMP_AMP] = ACTIONS(1079), - [anon_sym_SEMI_SEMI] = ACTIONS(6382), + [anon_sym_PLUS_EQ] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_EQ_TILDE] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(6598), + [anon_sym_SEMI] = ACTIONS(6598), + [sym_test_operator] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1096), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(6598), + [anon_sym_AMP] = ACTIONS(6598), }, }; @@ -75830,3072 +77582,3178 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.count = 1, .reusable = false}, RECOVER(), [3] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), [5] = {.count = 1, .reusable = false}, SHIFT(2), - [7] = {.count = 1, .reusable = false}, SHIFT(3), - [9] = {.count = 1, .reusable = true}, SHIFT(4), + [7] = {.count = 1, .reusable = true}, SHIFT(3), + [9] = {.count = 1, .reusable = false}, SHIFT(4), [11] = {.count = 1, .reusable = false}, SHIFT(5), [13] = {.count = 1, .reusable = false}, SHIFT(6), - [15] = {.count = 1, .reusable = false}, SHIFT(7), + [15] = {.count = 1, .reusable = true}, SHIFT(7), [17] = {.count = 1, .reusable = true}, SHIFT(8), - [19] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [21] = {.count = 1, .reusable = false}, SHIFT(9), - [23] = {.count = 1, .reusable = true}, SHIFT(10), - [25] = {.count = 1, .reusable = false}, SHIFT(4), - [27] = {.count = 1, .reusable = false}, SHIFT(11), - [29] = {.count = 1, .reusable = false}, SHIFT(12), - [31] = {.count = 1, .reusable = false}, SHIFT(13), - [33] = {.count = 1, .reusable = true}, SHIFT(14), - [35] = {.count = 1, .reusable = true}, SHIFT(15), - [37] = {.count = 1, .reusable = true}, SHIFT(16), - [39] = {.count = 1, .reusable = false}, SHIFT(17), - [41] = {.count = 1, .reusable = true}, SHIFT(18), - [43] = {.count = 1, .reusable = true}, SHIFT(19), - [45] = {.count = 1, .reusable = true}, SHIFT(20), - [47] = {.count = 1, .reusable = true}, REDUCE(sym_program, 0), - [49] = {.count = 1, .reusable = true}, SHIFT(21), - [51] = {.count = 1, .reusable = true}, SHIFT(22), - [53] = {.count = 1, .reusable = false}, SHIFT(23), - [55] = {.count = 1, .reusable = false}, SHIFT(24), - [57] = {.count = 1, .reusable = false}, SHIFT(25), - [59] = {.count = 1, .reusable = true}, SHIFT(26), - [61] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), - [63] = {.count = 1, .reusable = false}, SHIFT(37), - [65] = {.count = 1, .reusable = true}, SHIFT(38), - [67] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), - [69] = {.count = 1, .reusable = false}, SHIFT(380), - [71] = {.count = 1, .reusable = false}, SHIFT(2395), - [73] = {.count = 1, .reusable = false}, SHIFT(381), + [19] = {.count = 1, .reusable = false}, SHIFT(9), + [21] = {.count = 1, .reusable = true}, SHIFT(10), + [23] = {.count = 1, .reusable = false}, SHIFT(11), + [25] = {.count = 1, .reusable = false}, SHIFT(12), + [27] = {.count = 1, .reusable = true}, SHIFT(13), + [29] = {.count = 1, .reusable = false}, SHIFT(3), + [31] = {.count = 1, .reusable = false}, SHIFT(14), + [33] = {.count = 1, .reusable = false}, SHIFT(15), + [35] = {.count = 1, .reusable = false}, SHIFT(16), + [37] = {.count = 1, .reusable = true}, SHIFT(17), + [39] = {.count = 1, .reusable = true}, SHIFT(9), + [41] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), + [43] = {.count = 1, .reusable = false}, SHIFT(18), + [45] = {.count = 1, .reusable = true}, SHIFT(19), + [47] = {.count = 1, .reusable = true}, SHIFT(20), + [49] = {.count = 1, .reusable = true}, REDUCE(sym_program, 0), + [51] = {.count = 1, .reusable = true}, SHIFT(21), + [53] = {.count = 1, .reusable = true}, SHIFT(22), + [55] = {.count = 1, .reusable = false}, SHIFT(23), + [57] = {.count = 1, .reusable = false}, SHIFT(24), + [59] = {.count = 1, .reusable = false}, SHIFT(25), + [61] = {.count = 1, .reusable = true}, SHIFT(26), + [63] = {.count = 1, .reusable = false}, SHIFT(2395), + [65] = {.count = 1, .reusable = false}, SHIFT(380), + [67] = {.count = 1, .reusable = false}, SHIFT(381), + [69] = {.count = 1, .reusable = false}, SHIFT(1364), + [71] = {.count = 1, .reusable = true}, SHIFT(2396), + [73] = {.count = 1, .reusable = true}, SHIFT(2397), [75] = {.count = 1, .reusable = false}, SHIFT(382), - [77] = {.count = 1, .reusable = false}, SHIFT(1364), - [79] = {.count = 1, .reusable = true}, SHIFT(2396), - [81] = {.count = 1, .reusable = false}, SHIFT(2397), + [77] = {.count = 1, .reusable = true}, SHIFT(2398), + [79] = {.count = 1, .reusable = false}, SHIFT(2399), + [81] = {.count = 1, .reusable = false}, SHIFT(383), [83] = {.count = 1, .reusable = true}, SHIFT(1365), - [85] = {.count = 1, .reusable = false}, SHIFT(383), + [85] = {.count = 1, .reusable = false}, SHIFT(384), [87] = {.count = 1, .reusable = false}, SHIFT(2610), [89] = {.count = 1, .reusable = false}, SHIFT(2628), - [91] = {.count = 1, .reusable = true}, SHIFT(2398), - [93] = {.count = 1, .reusable = true}, SHIFT(384), - [95] = {.count = 1, .reusable = true}, SHIFT(2399), - [97] = {.count = 1, .reusable = false}, SHIFT(385), - [99] = {.count = 1, .reusable = true}, SHIFT(2400), - [101] = {.count = 1, .reusable = true}, SHIFT(2402), - [103] = {.count = 1, .reusable = true}, SHIFT(1366), - [105] = {.count = 1, .reusable = true}, SHIFT(2403), - [107] = {.count = 1, .reusable = false}, SHIFT(2611), - [109] = {.count = 1, .reusable = false}, SHIFT(2404), - [111] = {.count = 1, .reusable = false}, SHIFT(2405), - [113] = {.count = 1, .reusable = true}, SHIFT(2406), - [115] = {.count = 1, .reusable = true}, SHIFT(41), - [117] = {.count = 1, .reusable = true}, SHIFT(2442), - [119] = {.count = 1, .reusable = true}, SHIFT(2439), - [121] = {.count = 1, .reusable = false}, SHIFT(1472), - [123] = {.count = 1, .reusable = true}, SHIFT(2438), - [125] = {.count = 1, .reusable = true}, SHIFT(1473), - [127] = {.count = 1, .reusable = true}, SHIFT(2443), - [129] = {.count = 1, .reusable = true}, SHIFT(536), - [131] = {.count = 1, .reusable = false}, SHIFT(44), - [133] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), - [135] = {.count = 1, .reusable = false}, SHIFT(1517), - [137] = {.count = 1, .reusable = false}, SHIFT(2449), - [139] = {.count = 1, .reusable = false}, SHIFT(633), - [141] = {.count = 1, .reusable = false}, SHIFT(2453), - [143] = {.count = 1, .reusable = false}, SHIFT(46), - [145] = {.count = 1, .reusable = false}, SHIFT(2450), - [147] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), - [149] = {.count = 1, .reusable = true}, SHIFT(2440), - [151] = {.count = 1, .reusable = false}, SHIFT(1518), - [153] = {.count = 1, .reusable = false}, SHIFT(2454), - [155] = {.count = 1, .reusable = false}, SHIFT(47), - [157] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), - [159] = {.count = 1, .reusable = false}, SHIFT(1560), - [161] = {.count = 1, .reusable = false}, SHIFT(2459), - [163] = {.count = 1, .reusable = false}, SHIFT(694), - [165] = {.count = 1, .reusable = false}, SHIFT(2462), - [167] = {.count = 1, .reusable = false}, SHIFT(49), - [169] = {.count = 1, .reusable = false}, SHIFT(2460), - [171] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), - [173] = {.count = 1, .reusable = false}, SHIFT(1561), - [175] = {.count = 1, .reusable = false}, SHIFT(2463), - [177] = {.count = 1, .reusable = false}, SHIFT(50), - [179] = {.count = 1, .reusable = true}, SHIFT(50), - [181] = {.count = 1, .reusable = true}, SHIFT(51), - [183] = {.count = 1, .reusable = true}, SHIFT(52), - [185] = {.count = 1, .reusable = true}, SHIFT(54), - [187] = {.count = 1, .reusable = true}, SHIFT(55), - [189] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 1), - [191] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 1), - [193] = {.count = 1, .reusable = true}, SHIFT(62), - [195] = {.count = 1, .reusable = true}, SHIFT(2471), - [197] = {.count = 1, .reusable = true}, SHIFT(1604), - [199] = {.count = 1, .reusable = true}, SHIFT(2469), - [201] = {.count = 1, .reusable = true}, SHIFT(2472), - [203] = {.count = 1, .reusable = false}, SHIFT(1603), - [205] = {.count = 1, .reusable = true}, SHIFT(2468), - [207] = {.count = 1, .reusable = true}, SHIFT(734), - [209] = {.count = 1, .reusable = false}, SHIFT(65), - [211] = {.count = 1, .reusable = true}, SHIFT(66), - [213] = {.count = 1, .reusable = true}, SHIFT(2480), - [215] = {.count = 1, .reusable = true}, SHIFT(2478), - [217] = {.count = 1, .reusable = true}, SHIFT(65), - [219] = {.count = 1, .reusable = false}, SHIFT(67), - [221] = {.count = 1, .reusable = false}, SHIFT(1646), - [223] = {.count = 1, .reusable = true}, SHIFT(2477), - [225] = {.count = 1, .reusable = true}, SHIFT(1647), - [227] = {.count = 1, .reusable = true}, SHIFT(67), - [229] = {.count = 1, .reusable = true}, SHIFT(2481), - [231] = {.count = 1, .reusable = true}, SHIFT(771), - [233] = {.count = 1, .reusable = false}, SHIFT(70), - [235] = {.count = 1, .reusable = true}, SHIFT(70), - [237] = {.count = 1, .reusable = true}, SHIFT(71), - [239] = {.count = 1, .reusable = true}, SHIFT(72), - [241] = {.count = 1, .reusable = true}, SHIFT(73), - [243] = {.count = 1, .reusable = true}, SHIFT(2451), - [245] = {.count = 1, .reusable = true}, SHIFT(75), - [247] = {.count = 1, .reusable = true}, SHIFT(76), - [249] = {.count = 1, .reusable = true}, SHIFT(77), - [251] = {.count = 1, .reusable = false}, SHIFT(77), - [253] = {.count = 1, .reusable = false}, SHIFT(80), - [255] = {.count = 1, .reusable = false}, SHIFT(2488), - [257] = {.count = 1, .reusable = false}, SHIFT(81), - [259] = {.count = 1, .reusable = false}, SHIFT(2487), - [261] = {.count = 1, .reusable = false}, SHIFT(2489), - [263] = {.count = 1, .reusable = false}, SHIFT(82), - [265] = {.count = 1, .reusable = false}, SHIFT(534), - [267] = {.count = 1, .reusable = false}, SHIFT(535), - [269] = {.count = 1, .reusable = false}, SHIFT(1461), - [271] = {.count = 1, .reusable = true}, SHIFT(85), - [273] = {.count = 1, .reusable = true}, SHIFT(86), - [275] = {.count = 1, .reusable = false}, SHIFT(407), - [277] = {.count = 1, .reusable = true}, SHIFT(2410), - [279] = {.count = 1, .reusable = true}, SHIFT(2495), - [281] = {.count = 1, .reusable = true}, SHIFT(2494), - [283] = {.count = 1, .reusable = true}, SHIFT(407), - [285] = {.count = 1, .reusable = false}, SHIFT(408), - [287] = {.count = 1, .reusable = false}, SHIFT(1689), - [289] = {.count = 1, .reusable = true}, SHIFT(2486), - [291] = {.count = 1, .reusable = true}, SHIFT(1690), - [293] = {.count = 1, .reusable = true}, SHIFT(408), - [295] = {.count = 1, .reusable = true}, SHIFT(2496), - [297] = {.count = 1, .reusable = true}, SHIFT(808), - [299] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .production_id = 1), - [301] = {.count = 1, .reusable = false}, SHIFT(90), - [303] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .production_id = 1), - [305] = {.count = 1, .reusable = false}, SHIFT(94), - [307] = {.count = 1, .reusable = false}, SHIFT(1363), - [309] = {.count = 1, .reusable = true}, SHIFT(93), - [311] = {.count = 1, .reusable = true}, SHIFT(2401), - [313] = {.count = 1, .reusable = false}, SHIFT(95), - [315] = {.count = 1, .reusable = false}, SHIFT(96), - [317] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 1), - [319] = {.count = 1, .reusable = false}, SHIFT(97), - [321] = {.count = 1, .reusable = false}, SHIFT(92), - [323] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), - [325] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), - [327] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [329] = {.count = 1, .reusable = true}, SHIFT(11), - [331] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), - [333] = {.count = 1, .reusable = false}, SHIFT(104), - [335] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), - [337] = {.count = 1, .reusable = false}, SHIFT(8), - [339] = {.count = 1, .reusable = false}, SHIFT(105), - [341] = {.count = 1, .reusable = false}, SHIFT(20), - [343] = {.count = 1, .reusable = false}, SHIFT(16), - [345] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), - [347] = {.count = 1, .reusable = false}, SHIFT(21), - [349] = {.count = 1, .reusable = false}, SHIFT(22), - [351] = {.count = 1, .reusable = true}, SHIFT(108), - [353] = {.count = 1, .reusable = true}, SHIFT(109), - [355] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), - [357] = {.count = 1, .reusable = true}, SHIFT(110), - [359] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), - [361] = {.count = 1, .reusable = true}, SHIFT(112), - [363] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), - [365] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), - [367] = {.count = 1, .reusable = true}, SHIFT(1474), - [369] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .production_id = 2), - [371] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .production_id = 2), - [373] = {.count = 1, .reusable = true}, SHIFT(563), - [375] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [377] = {.count = 1, .reusable = true}, SHIFT(1519), - [379] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [381] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [383] = {.count = 1, .reusable = false}, SHIFT(645), - [385] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [387] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), - [389] = {.count = 1, .reusable = false}, SHIFT(113), - [391] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), - [393] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [395] = {.count = 1, .reusable = true}, SHIFT(1562), - [397] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [399] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [401] = {.count = 1, .reusable = false}, SHIFT(701), - [403] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [405] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), - [407] = {.count = 1, .reusable = false}, SHIFT(114), - [409] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), - [411] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), - [413] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), - [415] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .production_id = 3), - [417] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .production_id = 3), - [419] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), - [421] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), - [423] = {.count = 1, .reusable = true}, SHIFT(115), - [425] = {.count = 1, .reusable = true}, SHIFT(116), - [427] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [429] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [431] = {.count = 1, .reusable = false}, SHIFT(414), - [433] = {.count = 1, .reusable = false}, SHIFT(1471), - [435] = {.count = 1, .reusable = true}, SHIFT(119), - [437] = {.count = 1, .reusable = false}, SHIFT(118), - [439] = {.count = 1, .reusable = true}, SHIFT(2441), - [441] = {.count = 1, .reusable = false}, SHIFT(1387), - [443] = {.count = 1, .reusable = false}, SHIFT(417), - [445] = {.count = 1, .reusable = false}, SHIFT(1388), - [447] = {.count = 1, .reusable = true}, SHIFT(120), - [449] = {.count = 1, .reusable = true}, SHIFT(121), - [451] = {.count = 1, .reusable = true}, SHIFT(122), - [453] = {.count = 1, .reusable = false}, SHIFT(122), - [455] = {.count = 1, .reusable = false}, SHIFT(123), - [457] = {.count = 1, .reusable = true}, SHIFT(1605), - [459] = {.count = 1, .reusable = true}, SHIFT(123), - [461] = {.count = 1, .reusable = false}, SHIFT(124), - [463] = {.count = 1, .reusable = false}, SHIFT(125), - [465] = {.count = 1, .reusable = true}, SHIFT(125), - [467] = {.count = 1, .reusable = false}, SHIFT(740), - [469] = {.count = 1, .reusable = false}, SHIFT(126), - [471] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [473] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [475] = {.count = 1, .reusable = true}, SHIFT(1648), - [477] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .production_id = 1), - [479] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .production_id = 1), - [481] = {.count = 1, .reusable = false}, SHIFT(777), - [483] = {.count = 1, .reusable = true}, SHIFT(129), - [485] = {.count = 1, .reusable = true}, SHIFT(130), - [487] = {.count = 1, .reusable = false}, SHIFT(129), - [489] = {.count = 1, .reusable = true}, SHIFT(131), - [491] = {.count = 1, .reusable = true}, SHIFT(132), - [493] = {.count = 1, .reusable = false}, SHIFT(133), - [495] = {.count = 1, .reusable = true}, SHIFT(2516), - [497] = {.count = 1, .reusable = true}, SHIFT(2515), - [499] = {.count = 1, .reusable = true}, SHIFT(133), - [501] = {.count = 1, .reusable = false}, SHIFT(137), - [503] = {.count = 1, .reusable = false}, SHIFT(1809), - [505] = {.count = 1, .reusable = true}, SHIFT(134), - [507] = {.count = 1, .reusable = true}, SHIFT(2507), - [509] = {.count = 1, .reusable = true}, SHIFT(137), - [511] = {.count = 1, .reusable = true}, SHIFT(135), - [513] = {.count = 1, .reusable = true}, SHIFT(1810), - [515] = {.count = 1, .reusable = true}, SHIFT(2517), - [517] = {.count = 1, .reusable = false}, SHIFT(904), - [519] = {.count = 1, .reusable = false}, SHIFT(138), - [521] = {.count = 1, .reusable = true}, SHIFT(138), - [523] = {.count = 1, .reusable = true}, SHIFT(139), - [525] = {.count = 1, .reusable = true}, SHIFT(140), - [527] = {.count = 1, .reusable = true}, SHIFT(141), - [529] = {.count = 1, .reusable = true}, SHIFT(2413), - [531] = {.count = 1, .reusable = false}, SHIFT(144), - [533] = {.count = 1, .reusable = true}, SHIFT(142), - [535] = {.count = 1, .reusable = true}, SHIFT(144), - [537] = {.count = 1, .reusable = true}, SHIFT(143), - [539] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), - [541] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), - [543] = {.count = 1, .reusable = true}, SHIFT(145), - [545] = {.count = 1, .reusable = true}, SHIFT(146), - [547] = {.count = 1, .reusable = true}, SHIFT(1850), - [549] = {.count = 1, .reusable = true}, SHIFT(2522), - [551] = {.count = 1, .reusable = true}, SHIFT(2523), - [553] = {.count = 1, .reusable = true}, SHIFT(2524), - [555] = {.count = 1, .reusable = false}, SHIFT(1849), - [557] = {.count = 1, .reusable = true}, SHIFT(2514), - [559] = {.count = 1, .reusable = true}, SHIFT(936), - [561] = {.count = 1, .reusable = true}, SHIFT(147), - [563] = {.count = 1, .reusable = true}, SHIFT(149), - [565] = {.count = 1, .reusable = true}, SHIFT(968), - [567] = {.count = 1, .reusable = true}, SHIFT(152), - [569] = {.count = 1, .reusable = true}, SHIFT(155), - [571] = {.count = 1, .reusable = false}, SHIFT(810), - [573] = {.count = 1, .reusable = false}, SHIFT(156), - [575] = {.count = 1, .reusable = false}, SHIFT(811), - [577] = {.count = 1, .reusable = false}, SHIFT(157), - [579] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), - [581] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), - [583] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), - [585] = {.count = 1, .reusable = true}, SHIFT(158), - [587] = {.count = 1, .reusable = false}, SHIFT(159), - [589] = {.count = 1, .reusable = true}, SHIFT(161), - [591] = {.count = 1, .reusable = false}, SHIFT(162), - [593] = {.count = 1, .reusable = true}, SHIFT(162), - [595] = {.count = 1, .reusable = false}, SHIFT(163), - [597] = {.count = 1, .reusable = false}, SHIFT(559), - [599] = {.count = 1, .reusable = false}, SHIFT(2445), - [601] = {.count = 1, .reusable = false}, SHIFT(2530), - [603] = {.count = 1, .reusable = false}, SHIFT(2529), - [605] = {.count = 1, .reusable = false}, SHIFT(164), - [607] = {.count = 1, .reusable = false}, SHIFT(560), - [609] = {.count = 1, .reusable = false}, SHIFT(1889), - [611] = {.count = 1, .reusable = false}, SHIFT(2521), - [613] = {.count = 1, .reusable = false}, SHIFT(1890), - [615] = {.count = 1, .reusable = false}, SHIFT(2531), - [617] = {.count = 1, .reusable = false}, SHIFT(1000), - [619] = {.count = 1, .reusable = true}, SHIFT(166), - [621] = {.count = 1, .reusable = true}, SHIFT(439), - [623] = {.count = 1, .reusable = true}, SHIFT(440), - [625] = {.count = 1, .reusable = false}, SHIFT(439), - [627] = {.count = 1, .reusable = true}, SHIFT(441), - [629] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), - [631] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(90), - [634] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), - [636] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), - [638] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), - [640] = {.count = 1, .reusable = true}, SHIFT(170), - [642] = {.count = 1, .reusable = true}, SHIFT(171), - [644] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 2), - [646] = {.count = 1, .reusable = true}, SHIFT(173), - [648] = {.count = 1, .reusable = true}, SHIFT(176), - [650] = {.count = 1, .reusable = true}, SHIFT(2537), - [652] = {.count = 1, .reusable = true}, SHIFT(1930), - [654] = {.count = 1, .reusable = true}, SHIFT(2536), - [656] = {.count = 1, .reusable = true}, SHIFT(2538), - [658] = {.count = 1, .reusable = false}, SHIFT(1929), - [660] = {.count = 1, .reusable = true}, SHIFT(2528), - [662] = {.count = 1, .reusable = true}, SHIFT(1032), - [664] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), - [666] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), - [668] = {.count = 1, .reusable = true}, SHIFT(181), - [670] = {.count = 1, .reusable = false}, SHIFT(180), - [672] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2395), - [675] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(380), - [678] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4), - [681] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(381), - [684] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(382), - [687] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1364), - [690] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2396), - [693] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2397), - [696] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1365), - [699] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4), - [702] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(383), - [705] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2610), - [708] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2628), - [711] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2398), - [714] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(384), - [717] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2399), - [720] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(385), - [723] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2402), - [726] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(19), - [729] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2400), - [732] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1366), - [735] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2403), - [738] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2611), - [741] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2404), - [744] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2405), - [747] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2406), - [750] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), - [752] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), - [754] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), - [756] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(4), - [759] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), - [761] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(19), - [764] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2451), - [767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(4), - [770] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), - [772] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), - [774] = {.count = 1, .reusable = true}, SHIFT(183), - [776] = {.count = 1, .reusable = true}, SHIFT(184), - [778] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), - [780] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), - [782] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [784] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [786] = {.count = 1, .reusable = false}, SHIFT(188), - [788] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(38), - [791] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), - [793] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), - [795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(44), - [798] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [800] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1517), - [803] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2449), - [806] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(633), - [809] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2453), - [812] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(113), - [815] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2450), - [818] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [820] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2440), - [823] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1518), - [826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2454), - [829] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(47), - [832] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1560), - [837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2459), - [840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(694), - [843] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2462), - [846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), - [849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2460), - [852] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1561), - [857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2463), - [860] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), - [862] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), - [864] = {.count = 1, .reusable = true}, SHIFT(189), - [866] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [868] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [870] = {.count = 1, .reusable = true}, SHIFT(457), - [872] = {.count = 1, .reusable = true}, SHIFT(1406), - [874] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [876] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [878] = {.count = 1, .reusable = false}, SHIFT(191), - [880] = {.count = 1, .reusable = false}, SHIFT(192), - [882] = {.count = 1, .reusable = false}, SHIFT(193), - [884] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), - [886] = {.count = 1, .reusable = true}, SHIFT(199), - [888] = {.count = 1, .reusable = false}, SHIFT(200), - [890] = {.count = 1, .reusable = true}, SHIFT(200), - [892] = {.count = 1, .reusable = true}, SHIFT(201), - [894] = {.count = 1, .reusable = false}, SHIFT(202), - [896] = {.count = 1, .reusable = true}, SHIFT(202), - [898] = {.count = 1, .reusable = true}, SHIFT(203), - [900] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), - [902] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), - [904] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), - [906] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), - [908] = {.count = 1, .reusable = true}, SHIFT(205), - [910] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), - [912] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), - [914] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [916] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [918] = {.count = 1, .reusable = true}, SHIFT(1811), - [920] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), - [922] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), - [924] = {.count = 1, .reusable = false}, SHIFT(208), - [926] = {.count = 1, .reusable = true}, SHIFT(206), - [928] = {.count = 1, .reusable = true}, SHIFT(208), - [930] = {.count = 1, .reusable = true}, SHIFT(207), - [932] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), - [934] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), - [936] = {.count = 1, .reusable = false}, SHIFT(910), - [938] = {.count = 1, .reusable = false}, SHIFT(209), - [940] = {.count = 1, .reusable = true}, SHIFT(209), - [942] = {.count = 1, .reusable = true}, SHIFT(210), - [944] = {.count = 1, .reusable = true}, SHIFT(211), - [946] = {.count = 1, .reusable = false}, SHIFT(214), - [948] = {.count = 1, .reusable = true}, SHIFT(212), - [950] = {.count = 1, .reusable = true}, SHIFT(214), - [952] = {.count = 1, .reusable = true}, SHIFT(213), - [954] = {.count = 1, .reusable = true}, SHIFT(215), - [956] = {.count = 1, .reusable = true}, SHIFT(2558), - [958] = {.count = 1, .reusable = true}, SHIFT(2050), - [960] = {.count = 1, .reusable = true}, SHIFT(2557), - [962] = {.count = 1, .reusable = true}, SHIFT(2559), - [964] = {.count = 1, .reusable = false}, SHIFT(2049), - [966] = {.count = 1, .reusable = true}, SHIFT(2549), - [968] = {.count = 1, .reusable = false}, SHIFT(1128), - [970] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .production_id = 3), - [972] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .production_id = 3), - [974] = {.count = 1, .reusable = false}, SHIFT(220), - [976] = {.count = 1, .reusable = true}, SHIFT(218), - [978] = {.count = 1, .reusable = true}, SHIFT(220), - [980] = {.count = 1, .reusable = true}, SHIFT(219), - [982] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), - [984] = {.count = 1, .reusable = true}, SHIFT(1851), - [986] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), - [988] = {.count = 1, .reusable = true}, SHIFT(221), - [990] = {.count = 1, .reusable = true}, SHIFT(2565), - [992] = {.count = 1, .reusable = true}, SHIFT(2090), - [994] = {.count = 1, .reusable = true}, SHIFT(2564), - [996] = {.count = 1, .reusable = true}, SHIFT(2566), - [998] = {.count = 1, .reusable = false}, SHIFT(2089), - [1000] = {.count = 1, .reusable = true}, SHIFT(2556), - [1002] = {.count = 1, .reusable = true}, SHIFT(222), - [1004] = {.count = 1, .reusable = true}, SHIFT(1160), - [1006] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .production_id = 4), - [1008] = {.count = 1, .reusable = false}, SHIFT(942), - [1010] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .production_id = 4), - [1012] = {.count = 1, .reusable = true}, SHIFT(225), - [1014] = {.count = 1, .reusable = true}, SHIFT(226), - [1016] = {.count = 1, .reusable = true}, SHIFT(227), - [1018] = {.count = 1, .reusable = true}, SHIFT(228), - [1020] = {.count = 1, .reusable = false}, SHIFT(974), - [1022] = {.count = 1, .reusable = true}, SHIFT(229), - [1024] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), - [1026] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), - [1028] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .production_id = 4), - [1030] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .production_id = 4), - [1032] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), - [1034] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), - [1036] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), - [1038] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), - [1040] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), - [1042] = {.count = 1, .reusable = true}, SHIFT(230), - [1044] = {.count = 1, .reusable = false}, SHIFT(231), - [1046] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(232), - [1049] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2488), - [1052] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2487), - [1055] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2489), - [1058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(82), - [1061] = {.count = 1, .reusable = true}, SHIFT(482), - [1063] = {.count = 1, .reusable = true}, SHIFT(2572), - [1065] = {.count = 1, .reusable = true}, SHIFT(2130), - [1067] = {.count = 1, .reusable = true}, SHIFT(2571), - [1069] = {.count = 1, .reusable = true}, SHIFT(2573), - [1071] = {.count = 1, .reusable = false}, SHIFT(2129), - [1073] = {.count = 1, .reusable = true}, SHIFT(2563), - [1075] = {.count = 1, .reusable = true}, SHIFT(1192), - [1077] = {.count = 1, .reusable = false}, SHIFT(235), - [1079] = {.count = 1, .reusable = false}, SHIFT(583), - [1081] = {.count = 1, .reusable = false}, SHIFT(237), - [1083] = {.count = 1, .reusable = false}, SHIFT(584), - [1085] = {.count = 1, .reusable = false}, SHIFT(585), - [1087] = {.count = 1, .reusable = false}, SHIFT(238), - [1089] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1091] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1093] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), - [1095] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), - [1097] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), - [1099] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), - [1101] = {.count = 1, .reusable = false}, SHIFT(240), - [1103] = {.count = 1, .reusable = true}, SHIFT(2579), - [1105] = {.count = 1, .reusable = true}, SHIFT(2578), - [1107] = {.count = 1, .reusable = true}, SHIFT(241), - [1109] = {.count = 1, .reusable = true}, SHIFT(2580), - [1111] = {.count = 1, .reusable = true}, SHIFT(242), - [1113] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 3), - [1115] = {.count = 1, .reusable = false}, SHIFT(243), - [1117] = {.count = 1, .reusable = true}, SHIFT(243), - [1119] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), - [1121] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), - [1123] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), - [1125] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), - [1127] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), - [1129] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), - [1131] = {.count = 1, .reusable = true}, SHIFT(1931), - [1133] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), - [1135] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), - [1137] = {.count = 1, .reusable = false}, SHIFT(1038), - [1139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(95), - [1142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1363), - [1145] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [1147] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [1149] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2401), - [1152] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(97), - [1155] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), - [1157] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), - [1159] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), - [1161] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), - [1163] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), - [1165] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), - [1167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(104), - [1170] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(7), - [1173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(8), - [1176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(105), - [1179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(11), - [1182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), - [1185] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(16), - [1188] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), - [1191] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [1194] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), - [1196] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [1198] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 4), - [1200] = {.count = 1, .reusable = false}, SHIFT(51), - [1202] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 4), - [1204] = {.count = 1, .reusable = false}, SHIFT(52), - [1206] = {.count = 1, .reusable = false}, SHIFT(246), - [1208] = {.count = 1, .reusable = true}, SHIFT(246), - [1210] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), - [1212] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), - [1214] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), - [1216] = {.count = 1, .reusable = true}, SHIFT(249), - [1218] = {.count = 1, .reusable = false}, SHIFT(250), - [1220] = {.count = 1, .reusable = true}, SHIFT(251), - [1222] = {.count = 1, .reusable = true}, SHIFT(193), - [1224] = {.count = 1, .reusable = true}, SHIFT(192), - [1226] = {.count = 1, .reusable = false}, SHIFT(251), - [1228] = {.count = 1, .reusable = false}, SHIFT(256), - [1230] = {.count = 1, .reusable = true}, SHIFT(256), - [1232] = {.count = 1, .reusable = false}, SHIFT(257), - [1234] = {.count = 1, .reusable = true}, SHIFT(257), - [1236] = {.count = 1, .reusable = false}, SHIFT(258), - [1238] = {.count = 1, .reusable = false}, SHIFT(263), - [1240] = {.count = 1, .reusable = true}, SHIFT(263), - [1242] = {.count = 1, .reusable = false}, SHIFT(264), - [1244] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [1246] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [1248] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), - [1250] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), - [1252] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), - [1254] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), - [1256] = {.count = 1, .reusable = false}, SHIFT(268), - [1258] = {.count = 1, .reusable = true}, SHIFT(267), - [1260] = {.count = 1, .reusable = true}, SHIFT(268), - [1262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(133), - [1265] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2516), - [1268] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2515), - [1271] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(133), - [1274] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(209), - [1277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1809), - [1280] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [1282] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(209), - [1285] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2507), - [1288] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1810), - [1291] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2517), - [1294] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(904), - [1297] = {.count = 1, .reusable = true}, SHIFT(269), - [1299] = {.count = 1, .reusable = true}, SHIFT(270), - [1301] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 5), - [1303] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 5), - [1305] = {.count = 1, .reusable = false}, SHIFT(275), - [1307] = {.count = 1, .reusable = true}, SHIFT(273), - [1309] = {.count = 1, .reusable = true}, SHIFT(275), - [1311] = {.count = 1, .reusable = true}, SHIFT(274), - [1313] = {.count = 1, .reusable = true}, SHIFT(2051), - [1315] = {.count = 1, .reusable = false}, SHIFT(1134), - [1317] = {.count = 1, .reusable = true}, SHIFT(276), - [1319] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 3), - [1321] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 3), - [1323] = {.count = 1, .reusable = false}, SHIFT(278), - [1325] = {.count = 1, .reusable = true}, SHIFT(277), - [1327] = {.count = 1, .reusable = true}, SHIFT(278), - [1329] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1331] = {.count = 1, .reusable = true}, SHIFT(2091), - [1333] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1335] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), - [1337] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), - [1339] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [1341] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [1343] = {.count = 1, .reusable = true}, SHIFT(1166), - [1345] = {.count = 1, .reusable = true}, SHIFT(279), - [1347] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), - [1349] = {.count = 1, .reusable = true}, SHIFT(281), - [1351] = {.count = 1, .reusable = true}, SHIFT(816), - [1353] = {.count = 1, .reusable = true}, SHIFT(282), - [1355] = {.count = 1, .reusable = false}, SHIFT(816), - [1357] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .production_id = 4), - [1359] = {.count = 1, .reusable = true}, SHIFT(283), - [1361] = {.count = 1, .reusable = true}, SHIFT(284), - [1363] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), - [1365] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), - [1367] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), - [1369] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), - [1371] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), - [1373] = {.count = 1, .reusable = false}, SHIFT(482), - [1375] = {.count = 1, .reusable = false}, SHIFT(2572), - [1377] = {.count = 1, .reusable = false}, SHIFT(2571), - [1379] = {.count = 1, .reusable = true}, SHIFT(285), - [1381] = {.count = 1, .reusable = false}, SHIFT(285), - [1383] = {.count = 1, .reusable = false}, SHIFT(2563), - [1385] = {.count = 1, .reusable = false}, SHIFT(2130), - [1387] = {.count = 1, .reusable = false}, SHIFT(2573), - [1389] = {.count = 1, .reusable = false}, SHIFT(1192), - [1391] = {.count = 1, .reusable = true}, SHIFT(286), - [1393] = {.count = 1, .reusable = false}, SHIFT(288), - [1395] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), - [1397] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), - [1399] = {.count = 1, .reusable = false}, SHIFT(290), - [1401] = {.count = 1, .reusable = false}, SHIFT(1226), - [1403] = {.count = 1, .reusable = true}, SHIFT(1226), - [1405] = {.count = 1, .reusable = true}, SHIFT(1227), - [1407] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), - [1409] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), - [1411] = {.count = 1, .reusable = true}, SHIFT(291), - [1413] = {.count = 1, .reusable = true}, SHIFT(292), - [1415] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 4), - [1417] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 4), - [1419] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 4), - [1421] = {.count = 1, .reusable = false}, SHIFT(293), - [1423] = {.count = 1, .reusable = true}, SHIFT(293), - [1425] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), - [1427] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), - [1429] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), - [1431] = {.count = 1, .reusable = true}, SHIFT(294), - [1433] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 2), - [1435] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 2), - [1437] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [1439] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [1441] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(193), - [1444] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1446] = {.count = 1, .reusable = true}, SHIFT(296), - [1448] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(380), - [1451] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4), - [1454] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(381), - [1457] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1364), - [1460] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2396), - [1463] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(383), - [1466] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2610), - [1469] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2398), - [1472] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(384), - [1475] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2400), - [1478] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(382), - [1481] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1366), - [1484] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2404), - [1487] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2395), - [1490] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2397), - [1493] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1365), - [1496] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4), - [1499] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2402), - [1502] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2628), - [1505] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2399), - [1508] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(385), - [1511] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(19), - [1514] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2403), - [1517] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2611), - [1520] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2405), - [1523] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2406), - [1526] = {.count = 1, .reusable = false}, SHIFT(298), - [1528] = {.count = 1, .reusable = true}, SHIFT(302), - [1530] = {.count = 1, .reusable = true}, SHIFT(301), - [1532] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), - [1534] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), - [1536] = {.count = 1, .reusable = true}, SHIFT(304), - [1538] = {.count = 1, .reusable = true}, SHIFT(777), - [1540] = {.count = 1, .reusable = true}, SHIFT(298), - [1542] = {.count = 1, .reusable = false}, SHIFT(307), - [1544] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .production_id = 2), - [1546] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .production_id = 2), - [1548] = {.count = 1, .reusable = true}, SHIFT(307), - [1550] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), - [1552] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), - [1554] = {.count = 1, .reusable = true}, SHIFT(310), - [1556] = {.count = 1, .reusable = false}, SHIFT(311), - [1558] = {.count = 1, .reusable = true}, SHIFT(311), - [1560] = {.count = 1, .reusable = true}, SHIFT(312), - [1562] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 5), - [1564] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 5), - [1566] = {.count = 1, .reusable = false}, SHIFT(314), - [1568] = {.count = 1, .reusable = true}, SHIFT(313), - [1570] = {.count = 1, .reusable = true}, SHIFT(314), - [1572] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 6), - [1574] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 6), - [1576] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 3), - [1578] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 3), - [1580] = {.count = 1, .reusable = true}, SHIFT(315), - [1582] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), - [1584] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), - [1586] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(221), - [1589] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2565), - [1592] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2090), - [1595] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2564), - [1598] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2566), - [1601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2089), - [1604] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1606] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2556), - [1609] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1160), - [1612] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), - [1614] = {.count = 1, .reusable = true}, SHIFT(316), - [1616] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .production_id = 4), - [1618] = {.count = 1, .reusable = true}, SHIFT(317), - [1620] = {.count = 1, .reusable = true}, SHIFT(319), - [1622] = {.count = 1, .reusable = true}, SHIFT(321), - [1624] = {.count = 1, .reusable = false}, SHIFT(323), - [1626] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), - [1628] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), - [1630] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), - [1632] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), - [1634] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(240), - [1637] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2579), - [1640] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2578), - [1643] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [1645] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2580), - [1648] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(292), - [1651] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 5), - [1653] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), - [1655] = {.count = 1, .reusable = true}, SHIFT(325), - [1657] = {.count = 1, .reusable = false}, SHIFT(325), - [1659] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [1661] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [1663] = {.count = 1, .reusable = true}, SHIFT(326), - [1665] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), - [1667] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), - [1669] = {.count = 1, .reusable = true}, SHIFT(327), - [1671] = {.count = 1, .reusable = true}, SHIFT(329), - [1673] = {.count = 1, .reusable = false}, SHIFT(533), - [1675] = {.count = 1, .reusable = false}, SHIFT(631), - [1677] = {.count = 1, .reusable = false}, SHIFT(632), - [1679] = {.count = 1, .reusable = false}, SHIFT(2169), - [1681] = {.count = 1, .reusable = true}, SHIFT(2570), - [1683] = {.count = 1, .reusable = false}, SHIFT(1224), - [1685] = {.count = 1, .reusable = true}, SHIFT(537), - [1687] = {.count = 1, .reusable = true}, SHIFT(2585), - [1689] = {.count = 1, .reusable = false}, SHIFT(538), - [1691] = {.count = 1, .reusable = true}, SHIFT(2470), - [1693] = {.count = 1, .reusable = true}, SHIFT(2586), - [1695] = {.count = 1, .reusable = true}, SHIFT(2170), - [1697] = {.count = 1, .reusable = true}, SHIFT(2587), - [1699] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), - [1701] = {.count = 1, .reusable = true}, SHIFT(332), - [1703] = {.count = 1, .reusable = true}, SHIFT(334), - [1705] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .production_id = 1), - [1707] = {.count = 1, .reusable = true}, SHIFT(336), - [1709] = {.count = 1, .reusable = true}, SHIFT(338), - [1711] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(339), - [1714] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2480), - [1717] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1647), - [1720] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2478), - [1723] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2481), - [1726] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1646), - [1729] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2477), - [1732] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(771), - [1735] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .production_id = 2), - [1737] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .production_id = 2), - [1739] = {.count = 1, .reusable = true}, SHIFT(342), - [1741] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [1743] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [1745] = {.count = 1, .reusable = true}, SHIFT(344), - [1747] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 7), - [1749] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 7), - [1751] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 5), - [1753] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 5), - [1755] = {.count = 1, .reusable = true}, SHIFT(345), - [1757] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 3), - [1759] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 3), - [1761] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), - [1763] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .production_id = 4), - [1765] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [1767] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [1769] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), - [1771] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), - [1773] = {.count = 1, .reusable = true}, SHIFT(347), - [1775] = {.count = 1, .reusable = true}, SHIFT(348), - [1777] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), - [1779] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 4), - [1781] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 4), - [1783] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [1785] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [1787] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), - [1789] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), - [1791] = {.count = 1, .reusable = true}, SHIFT(350), - [1793] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), - [1795] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 2), - [1797] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), - [1799] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), - [1801] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), - [1803] = {.count = 1, .reusable = true}, SHIFT(351), - [1805] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), - [1807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(301), - [1810] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .production_id = 1), - [1812] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .production_id = 1), - [1814] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .production_id = 1), - [1816] = {.count = 1, .reusable = true}, SHIFT(353), - [1818] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .production_id = 1), - [1820] = {.count = 1, .reusable = true}, SHIFT(355), - [1822] = {.count = 1, .reusable = true}, SHIFT(357), - [1824] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .production_id = 2), - [1826] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .production_id = 2), - [1828] = {.count = 1, .reusable = true}, SHIFT(359), - [1830] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), - [1832] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), - [1834] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .production_id = 5), - [1836] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .production_id = 5), - [1838] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), - [1840] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), - [1842] = {.count = 1, .reusable = true}, SHIFT(361), - [1844] = {.count = 1, .reusable = true}, SHIFT(362), - [1846] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), - [1848] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), - [1850] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), - [1852] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), - [1854] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), - [1856] = {.count = 1, .reusable = true}, SHIFT(363), - [1858] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), - [1860] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .production_id = 1), - [1862] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .production_id = 1), - [1864] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .production_id = 1), - [1866] = {.count = 1, .reusable = true}, SHIFT(364), - [1868] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .production_id = 1), - [1870] = {.count = 1, .reusable = true}, SHIFT(365), - [1872] = {.count = 1, .reusable = true}, SHIFT(367), - [1874] = {.count = 1, .reusable = true}, SHIFT(368), - [1876] = {.count = 1, .reusable = true}, SHIFT(370), - [1878] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .production_id = 2), - [1880] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .production_id = 2), - [1882] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), - [1884] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), - [1886] = {.count = 1, .reusable = true}, SHIFT(372), - [1888] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), - [1890] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), - [1892] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), - [1894] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .production_id = 1), - [1896] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .production_id = 1), - [1898] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .production_id = 1), - [1900] = {.count = 1, .reusable = true}, SHIFT(373), - [1902] = {.count = 1, .reusable = true}, SHIFT(375), - [1904] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), - [1906] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), - [1908] = {.count = 1, .reusable = true}, SHIFT(378), - [1910] = {.count = 1, .reusable = true}, SHIFT(379), - [1912] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), - [1914] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), - [1916] = {.count = 1, .reusable = false}, SHIFT(2408), - [1918] = {.count = 1, .reusable = true}, SHIFT(1367), - [1920] = {.count = 1, .reusable = false}, SHIFT(397), - [1922] = {.count = 1, .reusable = false}, SHIFT(1729), - [1924] = {.count = 1, .reusable = false}, SHIFT(2493), - [1926] = {.count = 1, .reusable = false}, SHIFT(840), - [1928] = {.count = 1, .reusable = false}, SHIFT(2502), - [1930] = {.count = 1, .reusable = false}, SHIFT(399), - [1932] = {.count = 1, .reusable = false}, SHIFT(2501), - [1934] = {.count = 1, .reusable = true}, SHIFT(2461), - [1936] = {.count = 1, .reusable = false}, SHIFT(1730), - [1938] = {.count = 1, .reusable = false}, SHIFT(2503), - [1940] = {.count = 1, .reusable = false}, SHIFT(400), - [1942] = {.count = 1, .reusable = false}, SHIFT(1769), - [1944] = {.count = 1, .reusable = false}, SHIFT(2500), - [1946] = {.count = 1, .reusable = false}, SHIFT(872), - [1948] = {.count = 1, .reusable = false}, SHIFT(2509), - [1950] = {.count = 1, .reusable = false}, SHIFT(402), - [1952] = {.count = 1, .reusable = false}, SHIFT(2508), - [1954] = {.count = 1, .reusable = false}, SHIFT(1770), - [1956] = {.count = 1, .reusable = false}, SHIFT(2510), - [1958] = {.count = 1, .reusable = false}, SHIFT(412), - [1960] = {.count = 1, .reusable = false}, SHIFT(416), - [1962] = {.count = 1, .reusable = true}, SHIFT(415), - [1964] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 1), - [1966] = {.count = 1, .reusable = true}, SHIFT(383), - [1968] = {.count = 1, .reusable = false}, SHIFT(423), - [1970] = {.count = 1, .reusable = false}, SHIFT(2396), - [1972] = {.count = 1, .reusable = false}, SHIFT(424), - [1974] = {.count = 1, .reusable = false}, SHIFT(2402), - [1976] = {.count = 1, .reusable = false}, SHIFT(2399), - [1978] = {.count = 1, .reusable = false}, SHIFT(1366), - [1980] = {.count = 1, .reusable = false}, SHIFT(2403), - [1982] = {.count = 1, .reusable = true}, SHIFT(428), - [1984] = {.count = 1, .reusable = true}, SHIFT(1731), - [1986] = {.count = 1, .reusable = false}, SHIFT(846), - [1988] = {.count = 1, .reusable = false}, SHIFT(431), - [1990] = {.count = 1, .reusable = true}, SHIFT(1771), - [1992] = {.count = 1, .reusable = false}, SHIFT(878), - [1994] = {.count = 1, .reusable = false}, SHIFT(432), - [1996] = {.count = 1, .reusable = true}, SHIFT(1691), - [1998] = {.count = 1, .reusable = false}, SHIFT(814), - [2000] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(412), - [2003] = {.count = 1, .reusable = true}, SHIFT(467), - [2005] = {.count = 1, .reusable = false}, SHIFT(466), - [2007] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 2), - [2009] = {.count = 1, .reusable = true}, SHIFT(469), - [2011] = {.count = 1, .reusable = true}, SHIFT(470), - [2013] = {.count = 1, .reusable = true}, SHIFT(427), - [2015] = {.count = 1, .reusable = false}, SHIFT(474), - [2017] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1367), - [2020] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(397), - [2023] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1729), - [2026] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2493), - [2029] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(840), - [2032] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2502), - [2035] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(431), - [2038] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2501), - [2041] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2461), - [2044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1730), - [2047] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2503), - [2050] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(400), - [2053] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1769), - [2056] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2500), - [2059] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(872), - [2062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2509), - [2065] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(432), - [2068] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2508), - [2071] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1770), - [2074] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2510), - [2077] = {.count = 1, .reusable = true}, SHIFT(478), - [2079] = {.count = 1, .reusable = true}, SHIFT(1971), - [2081] = {.count = 1, .reusable = false}, SHIFT(1070), - [2083] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 3), - [2085] = {.count = 1, .reusable = false}, SHIFT(491), - [2087] = {.count = 1, .reusable = true}, SHIFT(491), - [2089] = {.count = 1, .reusable = true}, SHIFT(2011), - [2091] = {.count = 1, .reusable = false}, SHIFT(1102), - [2093] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1471), - [2096] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1387), - [2099] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2441), - [2102] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1388), - [2105] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(423), - [2108] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1364), - [2111] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2396), - [2114] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(424), - [2117] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(383), - [2120] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2402), - [2123] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2399), - [2126] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1366), - [2129] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2403), - [2132] = {.count = 1, .reusable = false}, SHIFT(404), - [2134] = {.count = 1, .reusable = false}, SHIFT(403), - [2136] = {.count = 1, .reusable = false}, SHIFT(405), - [2138] = {.count = 1, .reusable = true}, SHIFT(2131), - [2140] = {.count = 1, .reusable = false}, SHIFT(1198), - [2142] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), - [2144] = {.count = 1, .reusable = true}, SHIFT(504), - [2146] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .production_id = 4), - [2148] = {.count = 1, .reusable = true}, SHIFT(506), - [2150] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 4), - [2152] = {.count = 1, .reusable = false}, SHIFT(510), - [2154] = {.count = 1, .reusable = true}, SHIFT(510), - [2156] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(482), - [2159] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2572), - [2162] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2571), - [2165] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2129), - [2170] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2563), - [2173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2130), - [2176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2573), - [2179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1192), - [2182] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), - [2184] = {.count = 1, .reusable = true}, SHIFT(518), - [2186] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .production_id = 4), - [2188] = {.count = 1, .reusable = true}, SHIFT(519), - [2190] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), - [2192] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .production_id = 4), - [2194] = {.count = 1, .reusable = true}, SHIFT(2171), - [2196] = {.count = 1, .reusable = false}, SHIFT(552), - [2198] = {.count = 1, .reusable = false}, SHIFT(555), - [2200] = {.count = 1, .reusable = false}, SHIFT(1230), - [2202] = {.count = 1, .reusable = false}, SHIFT(2436), - [2204] = {.count = 1, .reusable = true}, SHIFT(648), - [2206] = {.count = 1, .reusable = false}, SHIFT(649), - [2208] = {.count = 1, .reusable = true}, SHIFT(2452), - [2210] = {.count = 1, .reusable = false}, SHIFT(650), - [2212] = {.count = 1, .reusable = false}, SHIFT(2435), - [2214] = {.count = 1, .reusable = false}, SHIFT(647), - [2216] = {.count = 1, .reusable = false}, SHIFT(568), - [2218] = {.count = 1, .reusable = false}, SHIFT(565), - [2220] = {.count = 1, .reusable = true}, SHIFT(566), - [2222] = {.count = 1, .reusable = false}, SHIFT(567), - [2224] = {.count = 1, .reusable = true}, SHIFT(1224), - [2226] = {.count = 1, .reusable = true}, SHIFT(577), - [2228] = {.count = 1, .reusable = true}, SHIFT(2211), - [2230] = {.count = 1, .reusable = false}, SHIFT(1262), - [2232] = {.count = 1, .reusable = true}, SHIFT(2251), - [2234] = {.count = 1, .reusable = false}, SHIFT(1294), - [2236] = {.count = 1, .reusable = true}, SHIFT(1891), - [2238] = {.count = 1, .reusable = true}, SHIFT(2445), - [2240] = {.count = 1, .reusable = true}, SHIFT(2530), - [2242] = {.count = 1, .reusable = true}, SHIFT(2529), - [2244] = {.count = 1, .reusable = true}, SHIFT(559), - [2246] = {.count = 1, .reusable = true}, SHIFT(2521), - [2248] = {.count = 1, .reusable = true}, SHIFT(1890), - [2250] = {.count = 1, .reusable = true}, SHIFT(560), - [2252] = {.count = 1, .reusable = true}, SHIFT(2531), - [2254] = {.count = 1, .reusable = true}, SHIFT(1000), - [2256] = {.count = 1, .reusable = false}, SHIFT(1006), - [2258] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(563), - [2261] = {.count = 1, .reusable = true}, SHIFT(602), - [2263] = {.count = 1, .reusable = false}, SHIFT(601), - [2265] = {.count = 1, .reusable = true}, SHIFT(604), - [2267] = {.count = 1, .reusable = true}, SHIFT(605), - [2269] = {.count = 1, .reusable = true}, SHIFT(576), - [2271] = {.count = 1, .reusable = false}, SHIFT(608), - [2273] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1474), - [2276] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(550), - [2279] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2209), - [2282] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2577), - [2285] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1256), - [2288] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2593), - [2291] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(579), - [2294] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2592), - [2297] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2479), - [2300] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2210), - [2303] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2594), - [2306] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(553), - [2309] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2249), - [2312] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2584), - [2315] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1288), - [2318] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2599), - [2321] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(580), - [2324] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2598), - [2327] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2250), - [2330] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2600), - [2333] = {.count = 1, .reusable = true}, SHIFT(611), - [2335] = {.count = 1, .reusable = false}, SHIFT(680), - [2337] = {.count = 1, .reusable = true}, SHIFT(680), - [2339] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(572), - [2342] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2169), - [2345] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2570), - [2348] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(573), - [2351] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1224), - [2354] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2586), - [2357] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2585), - [2360] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2170), - [2363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2587), - [2366] = {.count = 1, .reusable = false}, SHIFT(557), - [2368] = {.count = 1, .reusable = true}, SHIFT(557), - [2370] = {.count = 1, .reusable = false}, SHIFT(556), - [2372] = {.count = 1, .reusable = true}, SHIFT(558), - [2374] = {.count = 1, .reusable = false}, SHIFT(687), - [2376] = {.count = 1, .reusable = true}, SHIFT(687), - [2378] = {.count = 1, .reusable = false}, SHIFT(550), - [2380] = {.count = 1, .reusable = false}, SHIFT(2209), - [2382] = {.count = 1, .reusable = false}, SHIFT(2577), - [2384] = {.count = 1, .reusable = false}, SHIFT(1256), - [2386] = {.count = 1, .reusable = false}, SHIFT(2593), - [2388] = {.count = 1, .reusable = false}, SHIFT(639), - [2390] = {.count = 1, .reusable = false}, SHIFT(2592), - [2392] = {.count = 1, .reusable = true}, SHIFT(2479), - [2394] = {.count = 1, .reusable = false}, SHIFT(2210), - [2396] = {.count = 1, .reusable = false}, SHIFT(2594), - [2398] = {.count = 1, .reusable = false}, SHIFT(553), - [2400] = {.count = 1, .reusable = false}, SHIFT(2249), - [2402] = {.count = 1, .reusable = false}, SHIFT(2584), - [2404] = {.count = 1, .reusable = false}, SHIFT(1288), - [2406] = {.count = 1, .reusable = false}, SHIFT(2599), - [2408] = {.count = 1, .reusable = false}, SHIFT(640), - [2410] = {.count = 1, .reusable = false}, SHIFT(2598), - [2412] = {.count = 1, .reusable = false}, SHIFT(2250), - [2414] = {.count = 1, .reusable = false}, SHIFT(2600), - [2416] = {.count = 1, .reusable = true}, SHIFT(1465), - [2418] = {.count = 1, .reusable = false}, SHIFT(572), - [2420] = {.count = 1, .reusable = false}, SHIFT(2570), - [2422] = {.count = 1, .reusable = false}, SHIFT(573), - [2424] = {.count = 1, .reusable = false}, SHIFT(2586), - [2426] = {.count = 1, .reusable = false}, SHIFT(2585), - [2428] = {.count = 1, .reusable = false}, SHIFT(2170), - [2430] = {.count = 1, .reusable = false}, SHIFT(2587), - [2432] = {.count = 1, .reusable = true}, SHIFT(656), - [2434] = {.count = 1, .reusable = false}, SHIFT(579), - [2436] = {.count = 1, .reusable = false}, SHIFT(580), - [2438] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(645), - [2441] = {.count = 1, .reusable = true}, SHIFT(672), - [2443] = {.count = 1, .reusable = false}, SHIFT(671), - [2445] = {.count = 1, .reusable = true}, SHIFT(655), - [2447] = {.count = 1, .reusable = true}, SHIFT(2453), - [2449] = {.count = 1, .reusable = true}, SHIFT(1518), - [2451] = {.count = 1, .reusable = true}, SHIFT(2450), - [2453] = {.count = 1, .reusable = true}, SHIFT(2454), - [2455] = {.count = 1, .reusable = false}, SHIFT(674), - [2457] = {.count = 1, .reusable = true}, SHIFT(2449), - [2459] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1519), - [2462] = {.count = 1, .reusable = false}, SHIFT(641), - [2464] = {.count = 1, .reusable = false}, SHIFT(642), - [2466] = {.count = 1, .reusable = false}, SHIFT(643), - [2468] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 5), - [2470] = {.count = 1, .reusable = true}, SHIFT(706), - [2472] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(701), - [2475] = {.count = 1, .reusable = true}, SHIFT(1467), - [2477] = {.count = 1, .reusable = true}, SHIFT(705), - [2479] = {.count = 1, .reusable = true}, SHIFT(2462), - [2481] = {.count = 1, .reusable = true}, SHIFT(1561), - [2483] = {.count = 1, .reusable = true}, SHIFT(2460), - [2485] = {.count = 1, .reusable = true}, SHIFT(2463), - [2487] = {.count = 1, .reusable = false}, SHIFT(717), - [2489] = {.count = 1, .reusable = true}, SHIFT(2459), - [2491] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1562), - [2494] = {.count = 1, .reusable = false}, SHIFT(697), - [2496] = {.count = 1, .reusable = false}, SHIFT(698), - [2498] = {.count = 1, .reusable = false}, SHIFT(699), - [2500] = {.count = 1, .reusable = true}, SHIFT(743), - [2502] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(740), - [2505] = {.count = 1, .reusable = true}, SHIFT(742), - [2507] = {.count = 1, .reusable = false}, SHIFT(754), - [2509] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1605), - [2512] = {.count = 1, .reusable = true}, SHIFT(2291), - [2514] = {.count = 1, .reusable = false}, SHIFT(1323), - [2516] = {.count = 1, .reusable = false}, SHIFT(736), - [2518] = {.count = 1, .reusable = false}, SHIFT(737), - [2520] = {.count = 1, .reusable = false}, SHIFT(738), - [2522] = {.count = 1, .reusable = false}, SHIFT(1604), - [2524] = {.count = 1, .reusable = true}, SHIFT(780), - [2526] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(777), - [2529] = {.count = 1, .reusable = true}, SHIFT(779), - [2531] = {.count = 1, .reusable = false}, SHIFT(791), - [2533] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1648), - [2536] = {.count = 1, .reusable = true}, SHIFT(774), - [2538] = {.count = 1, .reusable = false}, SHIFT(774), - [2540] = {.count = 1, .reusable = false}, SHIFT(773), - [2542] = {.count = 1, .reusable = true}, SHIFT(773), - [2544] = {.count = 1, .reusable = true}, SHIFT(775), - [2546] = {.count = 1, .reusable = true}, SHIFT(817), - [2548] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(814), - [2551] = {.count = 1, .reusable = false}, SHIFT(825), - [2553] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1691), - [2556] = {.count = 1, .reusable = true}, SHIFT(843), - [2558] = {.count = 1, .reusable = false}, SHIFT(843), - [2560] = {.count = 1, .reusable = false}, SHIFT(842), - [2562] = {.count = 1, .reusable = true}, SHIFT(842), - [2564] = {.count = 1, .reusable = true}, SHIFT(812), - [2566] = {.count = 1, .reusable = true}, SHIFT(849), - [2568] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(846), - [2571] = {.count = 1, .reusable = true}, SHIFT(848), - [2573] = {.count = 1, .reusable = true}, SHIFT(2502), - [2575] = {.count = 1, .reusable = true}, SHIFT(2501), - [2577] = {.count = 1, .reusable = false}, SHIFT(857), - [2579] = {.count = 1, .reusable = true}, SHIFT(2493), - [2581] = {.count = 1, .reusable = true}, SHIFT(1730), - [2583] = {.count = 1, .reusable = true}, SHIFT(2503), - [2585] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1731), - [2588] = {.count = 1, .reusable = false}, SHIFT(875), - [2590] = {.count = 1, .reusable = false}, SHIFT(874), - [2592] = {.count = 1, .reusable = false}, SHIFT(844), - [2594] = {.count = 1, .reusable = true}, SHIFT(881), - [2596] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(878), - [2599] = {.count = 1, .reusable = true}, SHIFT(880), - [2601] = {.count = 1, .reusable = true}, SHIFT(2509), - [2603] = {.count = 1, .reusable = true}, SHIFT(2508), - [2605] = {.count = 1, .reusable = false}, SHIFT(889), - [2607] = {.count = 1, .reusable = true}, SHIFT(2500), - [2609] = {.count = 1, .reusable = true}, SHIFT(1770), - [2611] = {.count = 1, .reusable = true}, SHIFT(2510), - [2613] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1771), - [2616] = {.count = 1, .reusable = false}, SHIFT(907), - [2618] = {.count = 1, .reusable = false}, SHIFT(906), - [2620] = {.count = 1, .reusable = false}, SHIFT(876), - [2622] = {.count = 1, .reusable = true}, SHIFT(913), - [2624] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(910), - [2627] = {.count = 1, .reusable = true}, SHIFT(912), - [2629] = {.count = 1, .reusable = false}, SHIFT(921), - [2631] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1811), - [2634] = {.count = 1, .reusable = false}, SHIFT(938), - [2636] = {.count = 1, .reusable = true}, SHIFT(908), - [2638] = {.count = 1, .reusable = false}, SHIFT(939), - [2640] = {.count = 1, .reusable = true}, SHIFT(939), - [2642] = {.count = 1, .reusable = true}, SHIFT(945), - [2644] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(942), - [2647] = {.count = 1, .reusable = true}, SHIFT(944), - [2649] = {.count = 1, .reusable = false}, SHIFT(953), - [2651] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1851), - [2654] = {.count = 1, .reusable = false}, SHIFT(970), - [2656] = {.count = 1, .reusable = false}, SHIFT(971), - [2658] = {.count = 1, .reusable = false}, SHIFT(940), - [2660] = {.count = 1, .reusable = false}, SHIFT(1850), - [2662] = {.count = 1, .reusable = true}, SHIFT(977), - [2664] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(974), - [2667] = {.count = 1, .reusable = true}, SHIFT(976), - [2669] = {.count = 1, .reusable = false}, SHIFT(1017), - [2671] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1891), - [2674] = {.count = 1, .reusable = true}, SHIFT(1009), - [2676] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1006), - [2679] = {.count = 1, .reusable = true}, SHIFT(1008), - [2681] = {.count = 1, .reusable = false}, SHIFT(1049), - [2683] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1931), - [2686] = {.count = 1, .reusable = false}, SHIFT(1003), - [2688] = {.count = 1, .reusable = false}, SHIFT(1002), - [2690] = {.count = 1, .reusable = false}, SHIFT(972), - [2692] = {.count = 1, .reusable = true}, SHIFT(1041), - [2694] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1038), - [2697] = {.count = 1, .reusable = true}, SHIFT(1040), - [2699] = {.count = 1, .reusable = true}, SHIFT(2544), - [2701] = {.count = 1, .reusable = true}, SHIFT(2543), - [2703] = {.count = 1, .reusable = false}, SHIFT(1081), - [2705] = {.count = 1, .reusable = true}, SHIFT(2535), - [2707] = {.count = 1, .reusable = true}, SHIFT(1970), - [2709] = {.count = 1, .reusable = true}, SHIFT(2545), - [2711] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1971), - [2714] = {.count = 1, .reusable = false}, SHIFT(1034), - [2716] = {.count = 1, .reusable = false}, SHIFT(1035), - [2718] = {.count = 1, .reusable = false}, SHIFT(1004), - [2720] = {.count = 1, .reusable = false}, SHIFT(1930), - [2722] = {.count = 1, .reusable = true}, SHIFT(1073), - [2724] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1070), - [2727] = {.count = 1, .reusable = true}, SHIFT(1072), - [2729] = {.count = 1, .reusable = true}, SHIFT(2551), - [2731] = {.count = 1, .reusable = true}, SHIFT(2550), - [2733] = {.count = 1, .reusable = false}, SHIFT(1113), - [2735] = {.count = 1, .reusable = true}, SHIFT(2542), - [2737] = {.count = 1, .reusable = true}, SHIFT(2010), - [2739] = {.count = 1, .reusable = true}, SHIFT(2552), - [2741] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2011), - [2744] = {.count = 1, .reusable = false}, SHIFT(1067), - [2746] = {.count = 1, .reusable = false}, SHIFT(1066), - [2748] = {.count = 1, .reusable = false}, SHIFT(1036), - [2750] = {.count = 1, .reusable = false}, SHIFT(1970), - [2752] = {.count = 1, .reusable = true}, SHIFT(1105), - [2754] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1102), - [2757] = {.count = 1, .reusable = true}, SHIFT(1104), - [2759] = {.count = 1, .reusable = false}, SHIFT(1145), - [2761] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2051), - [2764] = {.count = 1, .reusable = false}, SHIFT(1098), - [2766] = {.count = 1, .reusable = false}, SHIFT(1099), - [2768] = {.count = 1, .reusable = false}, SHIFT(1068), - [2770] = {.count = 1, .reusable = false}, SHIFT(2010), - [2772] = {.count = 1, .reusable = true}, SHIFT(1137), - [2774] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1134), - [2777] = {.count = 1, .reusable = true}, SHIFT(1136), - [2779] = {.count = 1, .reusable = false}, SHIFT(1177), - [2781] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2091), - [2784] = {.count = 1, .reusable = false}, SHIFT(1130), - [2786] = {.count = 1, .reusable = true}, SHIFT(1130), - [2788] = {.count = 1, .reusable = true}, SHIFT(1131), - [2790] = {.count = 1, .reusable = true}, SHIFT(1100), - [2792] = {.count = 1, .reusable = true}, SHIFT(1169), - [2794] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1166), - [2797] = {.count = 1, .reusable = true}, SHIFT(1168), - [2799] = {.count = 1, .reusable = false}, SHIFT(1209), - [2801] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2131), - [2804] = {.count = 1, .reusable = false}, SHIFT(1162), - [2806] = {.count = 1, .reusable = true}, SHIFT(1132), - [2808] = {.count = 1, .reusable = false}, SHIFT(1163), - [2810] = {.count = 1, .reusable = true}, SHIFT(1163), - [2812] = {.count = 1, .reusable = true}, SHIFT(1201), - [2814] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1198), - [2817] = {.count = 1, .reusable = true}, SHIFT(1200), - [2819] = {.count = 1, .reusable = false}, SHIFT(1241), - [2821] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2171), - [2824] = {.count = 1, .reusable = false}, SHIFT(1194), - [2826] = {.count = 1, .reusable = false}, SHIFT(1164), - [2828] = {.count = 1, .reusable = false}, SHIFT(1195), - [2830] = {.count = 1, .reusable = true}, SHIFT(1233), - [2832] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1230), - [2835] = {.count = 1, .reusable = true}, SHIFT(1232), - [2837] = {.count = 1, .reusable = true}, SHIFT(2593), - [2839] = {.count = 1, .reusable = true}, SHIFT(2210), - [2841] = {.count = 1, .reusable = true}, SHIFT(2592), - [2843] = {.count = 1, .reusable = true}, SHIFT(2594), - [2845] = {.count = 1, .reusable = false}, SHIFT(1273), - [2847] = {.count = 1, .reusable = true}, SHIFT(2577), - [2849] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2211), - [2852] = {.count = 1, .reusable = false}, SHIFT(1258), - [2854] = {.count = 1, .reusable = false}, SHIFT(1259), - [2856] = {.count = 1, .reusable = false}, SHIFT(1196), - [2858] = {.count = 1, .reusable = true}, SHIFT(1265), - [2860] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1262), - [2863] = {.count = 1, .reusable = true}, SHIFT(1264), - [2865] = {.count = 1, .reusable = true}, SHIFT(2599), - [2867] = {.count = 1, .reusable = true}, SHIFT(2250), - [2869] = {.count = 1, .reusable = true}, SHIFT(2598), - [2871] = {.count = 1, .reusable = true}, SHIFT(2600), - [2873] = {.count = 1, .reusable = false}, SHIFT(1305), - [2875] = {.count = 1, .reusable = true}, SHIFT(2584), - [2877] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2251), - [2880] = {.count = 1, .reusable = false}, SHIFT(1290), - [2882] = {.count = 1, .reusable = false}, SHIFT(1291), - [2884] = {.count = 1, .reusable = false}, SHIFT(1228), - [2886] = {.count = 1, .reusable = true}, SHIFT(1297), - [2888] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1294), - [2891] = {.count = 1, .reusable = true}, SHIFT(1296), - [2893] = {.count = 1, .reusable = true}, SHIFT(2605), - [2895] = {.count = 1, .reusable = true}, SHIFT(2290), - [2897] = {.count = 1, .reusable = true}, SHIFT(2604), - [2899] = {.count = 1, .reusable = true}, SHIFT(2606), - [2901] = {.count = 1, .reusable = false}, SHIFT(1329), - [2903] = {.count = 1, .reusable = true}, SHIFT(2591), - [2905] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2291), - [2908] = {.count = 1, .reusable = false}, SHIFT(1321), - [2910] = {.count = 1, .reusable = false}, SHIFT(1322), - [2912] = {.count = 1, .reusable = false}, SHIFT(1260), - [2914] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1323), - [2917] = {.count = 1, .reusable = false}, SHIFT(1343), - [2919] = {.count = 1, .reusable = false}, SHIFT(1344), - [2921] = {.count = 1, .reusable = false}, SHIFT(1292), - [2923] = {.count = 1, .reusable = false}, SHIFT(2290), - [2925] = {.count = 1, .reusable = true}, SHIFT(394), - [2927] = {.count = 1, .reusable = true}, SHIFT(405), - [2929] = {.count = 1, .reusable = true}, SHIFT(404), - [2931] = {.count = 1, .reusable = true}, SHIFT(403), - [2933] = {.count = 1, .reusable = true}, SHIFT(406), - [2935] = {.count = 1, .reusable = false}, SHIFT(411), - [2937] = {.count = 1, .reusable = false}, SHIFT(1381), - [2939] = {.count = 1, .reusable = true}, SHIFT(430), - [2941] = {.count = 1, .reusable = true}, SHIFT(433), - [2943] = {.count = 1, .reusable = true}, SHIFT(2415), - [2945] = {.count = 1, .reusable = true}, SHIFT(436), - [2947] = {.count = 1, .reusable = false}, SHIFT(435), - [2949] = {.count = 1, .reusable = true}, SHIFT(437), - [2951] = {.count = 1, .reusable = true}, SHIFT(442), - [2953] = {.count = 1, .reusable = false}, SHIFT(1393), - [2955] = {.count = 1, .reusable = true}, SHIFT(1393), - [2957] = {.count = 1, .reusable = true}, SHIFT(1392), - [2959] = {.count = 1, .reusable = true}, SHIFT(443), - [2961] = {.count = 1, .reusable = false}, SHIFT(1398), - [2963] = {.count = 1, .reusable = true}, SHIFT(1398), - [2965] = {.count = 1, .reusable = true}, SHIFT(1397), - [2967] = {.count = 1, .reusable = true}, SHIFT(444), - [2969] = {.count = 1, .reusable = true}, SHIFT(445), - [2971] = {.count = 1, .reusable = true}, SHIFT(1399), - [2973] = {.count = 1, .reusable = false}, SHIFT(1969), - [2975] = {.count = 1, .reusable = true}, SHIFT(1064), - [2977] = {.count = 1, .reusable = true}, SHIFT(446), - [2979] = {.count = 1, .reusable = true}, SHIFT(448), - [2981] = {.count = 1, .reusable = true}, SHIFT(451), - [2983] = {.count = 1, .reusable = false}, SHIFT(452), - [2985] = {.count = 1, .reusable = false}, SHIFT(1403), - [2987] = {.count = 1, .reusable = true}, SHIFT(453), - [2989] = {.count = 1, .reusable = true}, SHIFT(1405), - [2991] = {.count = 1, .reusable = true}, SHIFT(459), - [2993] = {.count = 1, .reusable = true}, SHIFT(462), - [2995] = {.count = 1, .reusable = false}, SHIFT(2009), - [2997] = {.count = 1, .reusable = true}, SHIFT(1096), - [2999] = {.count = 1, .reusable = false}, SHIFT(475), - [3001] = {.count = 1, .reusable = true}, SHIFT(476), - [3003] = {.count = 1, .reusable = false}, SHIFT(1415), - [3005] = {.count = 1, .reusable = true}, SHIFT(1415), - [3007] = {.count = 1, .reusable = true}, SHIFT(479), - [3009] = {.count = 1, .reusable = true}, SHIFT(1414), - [3011] = {.count = 1, .reusable = true}, SHIFT(1416), - [3013] = {.count = 1, .reusable = false}, SHIFT(1419), - [3015] = {.count = 1, .reusable = true}, SHIFT(1419), - [3017] = {.count = 1, .reusable = true}, SHIFT(1418), - [3019] = {.count = 1, .reusable = true}, SHIFT(480), - [3021] = {.count = 1, .reusable = true}, SHIFT(1420), - [3023] = {.count = 1, .reusable = false}, SHIFT(1424), - [3025] = {.count = 1, .reusable = true}, SHIFT(1424), - [3027] = {.count = 1, .reusable = true}, SHIFT(481), - [3029] = {.count = 1, .reusable = true}, SHIFT(1423), - [3031] = {.count = 1, .reusable = true}, SHIFT(483), - [3033] = {.count = 1, .reusable = true}, SHIFT(485), - [3035] = {.count = 1, .reusable = true}, SHIFT(1426), - [3037] = {.count = 1, .reusable = true}, SHIFT(486), - [3039] = {.count = 1, .reusable = true}, SHIFT(1427), - [3041] = {.count = 1, .reusable = true}, SHIFT(1428), - [3043] = {.count = 1, .reusable = false}, SHIFT(487), - [3045] = {.count = 1, .reusable = false}, SHIFT(489), - [3047] = {.count = 1, .reusable = true}, SHIFT(490), - [3049] = {.count = 1, .reusable = true}, SHIFT(1430), - [3051] = {.count = 1, .reusable = false}, SHIFT(494), - [3053] = {.count = 1, .reusable = true}, SHIFT(494), - [3055] = {.count = 1, .reusable = true}, SHIFT(495), - [3057] = {.count = 1, .reusable = false}, SHIFT(495), - [3059] = {.count = 1, .reusable = false}, SHIFT(496), - [3061] = {.count = 1, .reusable = false}, SHIFT(497), - [3063] = {.count = 1, .reusable = false}, SHIFT(1437), - [3065] = {.count = 1, .reusable = true}, SHIFT(1437), - [3067] = {.count = 1, .reusable = true}, SHIFT(498), - [3069] = {.count = 1, .reusable = true}, SHIFT(1438), - [3071] = {.count = 1, .reusable = true}, SHIFT(1439), - [3073] = {.count = 1, .reusable = false}, SHIFT(1443), - [3075] = {.count = 1, .reusable = true}, SHIFT(1443), - [3077] = {.count = 1, .reusable = true}, SHIFT(499), - [3079] = {.count = 1, .reusable = true}, SHIFT(1442), - [3081] = {.count = 1, .reusable = true}, SHIFT(500), - [3083] = {.count = 1, .reusable = false}, SHIFT(1444), - [3085] = {.count = 1, .reusable = true}, SHIFT(1444), - [3087] = {.count = 1, .reusable = true}, SHIFT(501), - [3089] = {.count = 1, .reusable = true}, SHIFT(502), - [3091] = {.count = 1, .reusable = true}, SHIFT(505), - [3093] = {.count = 1, .reusable = true}, SHIFT(507), - [3095] = {.count = 1, .reusable = false}, SHIFT(508), - [3097] = {.count = 1, .reusable = true}, SHIFT(509), - [3099] = {.count = 1, .reusable = true}, SHIFT(511), - [3101] = {.count = 1, .reusable = false}, SHIFT(512), - [3103] = {.count = 1, .reusable = true}, SHIFT(512), - [3105] = {.count = 1, .reusable = false}, SHIFT(513), - [3107] = {.count = 1, .reusable = true}, SHIFT(513), - [3109] = {.count = 1, .reusable = true}, SHIFT(514), - [3111] = {.count = 1, .reusable = false}, SHIFT(1450), - [3113] = {.count = 1, .reusable = true}, SHIFT(1450), - [3115] = {.count = 1, .reusable = true}, SHIFT(515), - [3117] = {.count = 1, .reusable = false}, SHIFT(1451), - [3119] = {.count = 1, .reusable = true}, SHIFT(1451), - [3121] = {.count = 1, .reusable = true}, SHIFT(516), - [3123] = {.count = 1, .reusable = true}, SHIFT(517), - [3125] = {.count = 1, .reusable = true}, SHIFT(1452), - [3127] = {.count = 1, .reusable = true}, SHIFT(522), - [3129] = {.count = 1, .reusable = true}, SHIFT(523), - [3131] = {.count = 1, .reusable = true}, SHIFT(524), - [3133] = {.count = 1, .reusable = true}, SHIFT(525), - [3135] = {.count = 1, .reusable = true}, SHIFT(526), - [3137] = {.count = 1, .reusable = true}, SHIFT(1456), - [3139] = {.count = 1, .reusable = true}, SHIFT(528), - [3141] = {.count = 1, .reusable = true}, SHIFT(529), - [3143] = {.count = 1, .reusable = true}, SHIFT(1458), - [3145] = {.count = 1, .reusable = true}, SHIFT(1460), - [3147] = {.count = 1, .reusable = false}, SHIFT(617), - [3149] = {.count = 1, .reusable = true}, SHIFT(617), - [3151] = {.count = 1, .reusable = false}, SHIFT(624), - [3153] = {.count = 1, .reusable = true}, SHIFT(624), - [3155] = {.count = 1, .reusable = false}, SHIFT(985), - [3157] = {.count = 1, .reusable = false}, SHIFT(1349), - [3159] = {.count = 1, .reusable = true}, SHIFT(547), - [3161] = {.count = 1, .reusable = true}, SHIFT(556), - [3163] = {.count = 1, .reusable = false}, SHIFT(562), - [3165] = {.count = 1, .reusable = false}, SHIFT(1482), - [3167] = {.count = 1, .reusable = true}, SHIFT(581), - [3169] = {.count = 1, .reusable = false}, SHIFT(1487), - [3171] = {.count = 1, .reusable = true}, SHIFT(1487), - [3173] = {.count = 1, .reusable = true}, SHIFT(1486), - [3175] = {.count = 1, .reusable = true}, SHIFT(586), - [3177] = {.count = 1, .reusable = false}, SHIFT(1492), - [3179] = {.count = 1, .reusable = true}, SHIFT(1492), - [3181] = {.count = 1, .reusable = true}, SHIFT(1491), - [3183] = {.count = 1, .reusable = true}, SHIFT(587), - [3185] = {.count = 1, .reusable = true}, SHIFT(588), - [3187] = {.count = 1, .reusable = true}, SHIFT(1493), - [3189] = {.count = 1, .reusable = true}, SHIFT(633), - [3191] = {.count = 1, .reusable = true}, SHIFT(589), - [3193] = {.count = 1, .reusable = true}, SHIFT(591), - [3195] = {.count = 1, .reusable = true}, SHIFT(594), - [3197] = {.count = 1, .reusable = false}, SHIFT(595), - [3199] = {.count = 1, .reusable = false}, SHIFT(1494), - [3201] = {.count = 1, .reusable = true}, SHIFT(596), - [3203] = {.count = 1, .reusable = true}, SHIFT(609), - [3205] = {.count = 1, .reusable = false}, SHIFT(1496), - [3207] = {.count = 1, .reusable = true}, SHIFT(1496), - [3209] = {.count = 1, .reusable = true}, SHIFT(612), - [3211] = {.count = 1, .reusable = true}, SHIFT(1495), - [3213] = {.count = 1, .reusable = true}, SHIFT(1497), - [3215] = {.count = 1, .reusable = false}, SHIFT(1500), - [3217] = {.count = 1, .reusable = true}, SHIFT(1500), - [3219] = {.count = 1, .reusable = true}, SHIFT(1499), - [3221] = {.count = 1, .reusable = true}, SHIFT(613), - [3223] = {.count = 1, .reusable = true}, SHIFT(1501), - [3225] = {.count = 1, .reusable = false}, SHIFT(1505), - [3227] = {.count = 1, .reusable = true}, SHIFT(1505), - [3229] = {.count = 1, .reusable = true}, SHIFT(614), - [3231] = {.count = 1, .reusable = true}, SHIFT(1504), - [3233] = {.count = 1, .reusable = true}, SHIFT(615), - [3235] = {.count = 1, .reusable = false}, SHIFT(616), - [3237] = {.count = 1, .reusable = false}, SHIFT(1507), - [3239] = {.count = 1, .reusable = true}, SHIFT(1507), - [3241] = {.count = 1, .reusable = true}, SHIFT(619), - [3243] = {.count = 1, .reusable = true}, SHIFT(1508), - [3245] = {.count = 1, .reusable = true}, SHIFT(1509), - [3247] = {.count = 1, .reusable = false}, SHIFT(1513), - [3249] = {.count = 1, .reusable = true}, SHIFT(1513), - [3251] = {.count = 1, .reusable = true}, SHIFT(620), - [3253] = {.count = 1, .reusable = true}, SHIFT(1512), - [3255] = {.count = 1, .reusable = true}, SHIFT(621), - [3257] = {.count = 1, .reusable = false}, SHIFT(1514), - [3259] = {.count = 1, .reusable = true}, SHIFT(1514), - [3261] = {.count = 1, .reusable = true}, SHIFT(622), - [3263] = {.count = 1, .reusable = true}, SHIFT(623), - [3265] = {.count = 1, .reusable = true}, SHIFT(625), - [3267] = {.count = 1, .reusable = false}, SHIFT(1515), - [3269] = {.count = 1, .reusable = true}, SHIFT(1515), - [3271] = {.count = 1, .reusable = true}, SHIFT(626), - [3273] = {.count = 1, .reusable = false}, SHIFT(1516), - [3275] = {.count = 1, .reusable = true}, SHIFT(1516), - [3277] = {.count = 1, .reusable = true}, SHIFT(627), - [3279] = {.count = 1, .reusable = true}, SHIFT(628), - [3281] = {.count = 1, .reusable = true}, SHIFT(629), - [3283] = {.count = 1, .reusable = true}, SHIFT(630), - [3285] = {.count = 1, .reusable = true}, SHIFT(641), - [3287] = {.count = 1, .reusable = true}, SHIFT(642), - [3289] = {.count = 1, .reusable = true}, SHIFT(643), - [3291] = {.count = 1, .reusable = false}, SHIFT(1526), - [3293] = {.count = 1, .reusable = false}, SHIFT(644), - [3295] = {.count = 1, .reusable = true}, SHIFT(658), - [3297] = {.count = 1, .reusable = false}, SHIFT(1530), - [3299] = {.count = 1, .reusable = true}, SHIFT(659), - [3301] = {.count = 1, .reusable = true}, SHIFT(1530), - [3303] = {.count = 1, .reusable = true}, SHIFT(1529), - [3305] = {.count = 1, .reusable = false}, SHIFT(1535), - [3307] = {.count = 1, .reusable = true}, SHIFT(660), - [3309] = {.count = 1, .reusable = true}, SHIFT(1535), - [3311] = {.count = 1, .reusable = true}, SHIFT(1534), - [3313] = {.count = 1, .reusable = true}, SHIFT(661), - [3315] = {.count = 1, .reusable = true}, SHIFT(1536), - [3317] = {.count = 1, .reusable = true}, SHIFT(662), - [3319] = {.count = 1, .reusable = true}, SHIFT(664), - [3321] = {.count = 1, .reusable = false}, SHIFT(665), - [3323] = {.count = 1, .reusable = false}, SHIFT(1537), - [3325] = {.count = 1, .reusable = true}, SHIFT(666), - [3327] = {.count = 1, .reusable = false}, SHIFT(1539), - [3329] = {.count = 1, .reusable = true}, SHIFT(675), - [3331] = {.count = 1, .reusable = true}, SHIFT(1539), - [3333] = {.count = 1, .reusable = true}, SHIFT(1538), - [3335] = {.count = 1, .reusable = true}, SHIFT(1540), - [3337] = {.count = 1, .reusable = false}, SHIFT(1543), - [3339] = {.count = 1, .reusable = true}, SHIFT(676), - [3341] = {.count = 1, .reusable = true}, SHIFT(1543), - [3343] = {.count = 1, .reusable = true}, SHIFT(1542), - [3345] = {.count = 1, .reusable = true}, SHIFT(1544), - [3347] = {.count = 1, .reusable = false}, SHIFT(1548), - [3349] = {.count = 1, .reusable = true}, SHIFT(677), - [3351] = {.count = 1, .reusable = true}, SHIFT(1548), - [3353] = {.count = 1, .reusable = true}, SHIFT(1547), - [3355] = {.count = 1, .reusable = true}, SHIFT(678), - [3357] = {.count = 1, .reusable = false}, SHIFT(679), - [3359] = {.count = 1, .reusable = false}, SHIFT(1550), - [3361] = {.count = 1, .reusable = true}, SHIFT(682), - [3363] = {.count = 1, .reusable = true}, SHIFT(1550), - [3365] = {.count = 1, .reusable = true}, SHIFT(1551), - [3367] = {.count = 1, .reusable = true}, SHIFT(1552), - [3369] = {.count = 1, .reusable = false}, SHIFT(1556), - [3371] = {.count = 1, .reusable = true}, SHIFT(683), - [3373] = {.count = 1, .reusable = true}, SHIFT(1556), - [3375] = {.count = 1, .reusable = true}, SHIFT(1555), - [3377] = {.count = 1, .reusable = true}, SHIFT(684), - [3379] = {.count = 1, .reusable = false}, SHIFT(1557), - [3381] = {.count = 1, .reusable = true}, SHIFT(685), - [3383] = {.count = 1, .reusable = true}, SHIFT(1557), - [3385] = {.count = 1, .reusable = true}, SHIFT(686), - [3387] = {.count = 1, .reusable = true}, SHIFT(688), - [3389] = {.count = 1, .reusable = false}, SHIFT(1558), - [3391] = {.count = 1, .reusable = true}, SHIFT(1558), - [3393] = {.count = 1, .reusable = true}, SHIFT(689), - [3395] = {.count = 1, .reusable = false}, SHIFT(1559), - [3397] = {.count = 1, .reusable = true}, SHIFT(690), - [3399] = {.count = 1, .reusable = true}, SHIFT(1559), - [3401] = {.count = 1, .reusable = true}, SHIFT(691), - [3403] = {.count = 1, .reusable = true}, SHIFT(692), - [3405] = {.count = 1, .reusable = true}, SHIFT(693), - [3407] = {.count = 1, .reusable = true}, SHIFT(697), - [3409] = {.count = 1, .reusable = true}, SHIFT(698), - [3411] = {.count = 1, .reusable = true}, SHIFT(699), - [3413] = {.count = 1, .reusable = false}, SHIFT(1569), - [3415] = {.count = 1, .reusable = false}, SHIFT(700), - [3417] = {.count = 1, .reusable = true}, SHIFT(708), - [3419] = {.count = 1, .reusable = false}, SHIFT(1573), - [3421] = {.count = 1, .reusable = true}, SHIFT(709), - [3423] = {.count = 1, .reusable = true}, SHIFT(1573), - [3425] = {.count = 1, .reusable = true}, SHIFT(1572), - [3427] = {.count = 1, .reusable = false}, SHIFT(1578), - [3429] = {.count = 1, .reusable = true}, SHIFT(710), - [3431] = {.count = 1, .reusable = true}, SHIFT(1578), - [3433] = {.count = 1, .reusable = true}, SHIFT(1577), - [3435] = {.count = 1, .reusable = true}, SHIFT(711), - [3437] = {.count = 1, .reusable = true}, SHIFT(1579), - [3439] = {.count = 1, .reusable = true}, SHIFT(840), - [3441] = {.count = 1, .reusable = true}, SHIFT(712), - [3443] = {.count = 1, .reusable = true}, SHIFT(714), - [3445] = {.count = 1, .reusable = false}, SHIFT(715), - [3447] = {.count = 1, .reusable = false}, SHIFT(1580), - [3449] = {.count = 1, .reusable = true}, SHIFT(716), - [3451] = {.count = 1, .reusable = false}, SHIFT(1582), - [3453] = {.count = 1, .reusable = true}, SHIFT(718), - [3455] = {.count = 1, .reusable = true}, SHIFT(1582), - [3457] = {.count = 1, .reusable = true}, SHIFT(1581), - [3459] = {.count = 1, .reusable = true}, SHIFT(1583), - [3461] = {.count = 1, .reusable = false}, SHIFT(1586), - [3463] = {.count = 1, .reusable = true}, SHIFT(719), - [3465] = {.count = 1, .reusable = true}, SHIFT(1586), - [3467] = {.count = 1, .reusable = true}, SHIFT(1585), - [3469] = {.count = 1, .reusable = true}, SHIFT(1587), - [3471] = {.count = 1, .reusable = false}, SHIFT(1591), - [3473] = {.count = 1, .reusable = true}, SHIFT(720), - [3475] = {.count = 1, .reusable = true}, SHIFT(1591), - [3477] = {.count = 1, .reusable = true}, SHIFT(1590), - [3479] = {.count = 1, .reusable = true}, SHIFT(721), - [3481] = {.count = 1, .reusable = false}, SHIFT(722), - [3483] = {.count = 1, .reusable = false}, SHIFT(1593), - [3485] = {.count = 1, .reusable = true}, SHIFT(723), - [3487] = {.count = 1, .reusable = true}, SHIFT(1593), - [3489] = {.count = 1, .reusable = true}, SHIFT(1594), - [3491] = {.count = 1, .reusable = true}, SHIFT(1595), - [3493] = {.count = 1, .reusable = false}, SHIFT(1599), - [3495] = {.count = 1, .reusable = true}, SHIFT(724), - [3497] = {.count = 1, .reusable = true}, SHIFT(1599), - [3499] = {.count = 1, .reusable = true}, SHIFT(1598), - [3501] = {.count = 1, .reusable = true}, SHIFT(725), - [3503] = {.count = 1, .reusable = false}, SHIFT(1600), - [3505] = {.count = 1, .reusable = true}, SHIFT(726), - [3507] = {.count = 1, .reusable = true}, SHIFT(1600), - [3509] = {.count = 1, .reusable = true}, SHIFT(727), - [3511] = {.count = 1, .reusable = true}, SHIFT(728), - [3513] = {.count = 1, .reusable = false}, SHIFT(1601), - [3515] = {.count = 1, .reusable = true}, SHIFT(1601), - [3517] = {.count = 1, .reusable = true}, SHIFT(729), - [3519] = {.count = 1, .reusable = false}, SHIFT(1602), - [3521] = {.count = 1, .reusable = true}, SHIFT(730), - [3523] = {.count = 1, .reusable = true}, SHIFT(1602), - [3525] = {.count = 1, .reusable = true}, SHIFT(731), - [3527] = {.count = 1, .reusable = true}, SHIFT(732), - [3529] = {.count = 1, .reusable = true}, SHIFT(733), - [3531] = {.count = 1, .reusable = true}, SHIFT(736), - [3533] = {.count = 1, .reusable = true}, SHIFT(737), - [3535] = {.count = 1, .reusable = true}, SHIFT(738), - [3537] = {.count = 1, .reusable = false}, SHIFT(1612), - [3539] = {.count = 1, .reusable = false}, SHIFT(739), - [3541] = {.count = 1, .reusable = true}, SHIFT(745), - [3543] = {.count = 1, .reusable = false}, SHIFT(1616), - [3545] = {.count = 1, .reusable = true}, SHIFT(746), - [3547] = {.count = 1, .reusable = true}, SHIFT(1616), - [3549] = {.count = 1, .reusable = true}, SHIFT(1615), - [3551] = {.count = 1, .reusable = false}, SHIFT(1621), - [3553] = {.count = 1, .reusable = true}, SHIFT(747), - [3555] = {.count = 1, .reusable = true}, SHIFT(1621), - [3557] = {.count = 1, .reusable = true}, SHIFT(1620), - [3559] = {.count = 1, .reusable = true}, SHIFT(748), - [3561] = {.count = 1, .reusable = true}, SHIFT(1622), - [3563] = {.count = 1, .reusable = false}, SHIFT(2289), - [3565] = {.count = 1, .reusable = true}, SHIFT(1320), - [3567] = {.count = 1, .reusable = true}, SHIFT(749), - [3569] = {.count = 1, .reusable = true}, SHIFT(751), - [3571] = {.count = 1, .reusable = false}, SHIFT(752), - [3573] = {.count = 1, .reusable = false}, SHIFT(1623), - [3575] = {.count = 1, .reusable = true}, SHIFT(753), - [3577] = {.count = 1, .reusable = false}, SHIFT(1625), - [3579] = {.count = 1, .reusable = true}, SHIFT(755), - [3581] = {.count = 1, .reusable = true}, SHIFT(1625), - [3583] = {.count = 1, .reusable = true}, SHIFT(1624), - [3585] = {.count = 1, .reusable = true}, SHIFT(1626), - [3587] = {.count = 1, .reusable = false}, SHIFT(1629), - [3589] = {.count = 1, .reusable = true}, SHIFT(756), - [3591] = {.count = 1, .reusable = true}, SHIFT(1629), - [3593] = {.count = 1, .reusable = true}, SHIFT(1628), - [3595] = {.count = 1, .reusable = true}, SHIFT(1630), - [3597] = {.count = 1, .reusable = false}, SHIFT(1634), - [3599] = {.count = 1, .reusable = true}, SHIFT(757), - [3601] = {.count = 1, .reusable = true}, SHIFT(1634), - [3603] = {.count = 1, .reusable = true}, SHIFT(1633), - [3605] = {.count = 1, .reusable = true}, SHIFT(758), - [3607] = {.count = 1, .reusable = false}, SHIFT(759), - [3609] = {.count = 1, .reusable = false}, SHIFT(1636), - [3611] = {.count = 1, .reusable = true}, SHIFT(760), - [3613] = {.count = 1, .reusable = true}, SHIFT(1636), - [3615] = {.count = 1, .reusable = true}, SHIFT(1637), - [3617] = {.count = 1, .reusable = true}, SHIFT(1638), - [3619] = {.count = 1, .reusable = false}, SHIFT(1642), - [3621] = {.count = 1, .reusable = true}, SHIFT(761), - [3623] = {.count = 1, .reusable = true}, SHIFT(1642), - [3625] = {.count = 1, .reusable = true}, SHIFT(1641), - [3627] = {.count = 1, .reusable = true}, SHIFT(762), - [3629] = {.count = 1, .reusable = false}, SHIFT(1643), - [3631] = {.count = 1, .reusable = true}, SHIFT(763), - [3633] = {.count = 1, .reusable = true}, SHIFT(1643), - [3635] = {.count = 1, .reusable = true}, SHIFT(764), - [3637] = {.count = 1, .reusable = true}, SHIFT(765), - [3639] = {.count = 1, .reusable = false}, SHIFT(1644), - [3641] = {.count = 1, .reusable = true}, SHIFT(1644), - [3643] = {.count = 1, .reusable = true}, SHIFT(766), - [3645] = {.count = 1, .reusable = false}, SHIFT(1645), - [3647] = {.count = 1, .reusable = true}, SHIFT(767), - [3649] = {.count = 1, .reusable = true}, SHIFT(1645), - [3651] = {.count = 1, .reusable = true}, SHIFT(768), - [3653] = {.count = 1, .reusable = true}, SHIFT(769), - [3655] = {.count = 1, .reusable = true}, SHIFT(770), - [3657] = {.count = 1, .reusable = false}, SHIFT(776), - [3659] = {.count = 1, .reusable = false}, SHIFT(1655), - [3661] = {.count = 1, .reusable = true}, SHIFT(782), - [3663] = {.count = 1, .reusable = false}, SHIFT(1659), - [3665] = {.count = 1, .reusable = true}, SHIFT(1659), - [3667] = {.count = 1, .reusable = true}, SHIFT(1658), - [3669] = {.count = 1, .reusable = true}, SHIFT(783), - [3671] = {.count = 1, .reusable = false}, SHIFT(1664), - [3673] = {.count = 1, .reusable = true}, SHIFT(1664), - [3675] = {.count = 1, .reusable = true}, SHIFT(1663), - [3677] = {.count = 1, .reusable = true}, SHIFT(784), - [3679] = {.count = 1, .reusable = true}, SHIFT(785), - [3681] = {.count = 1, .reusable = true}, SHIFT(1665), - [3683] = {.count = 1, .reusable = true}, SHIFT(1256), - [3685] = {.count = 1, .reusable = true}, SHIFT(786), - [3687] = {.count = 1, .reusable = true}, SHIFT(788), - [3689] = {.count = 1, .reusable = false}, SHIFT(789), - [3691] = {.count = 1, .reusable = false}, SHIFT(1666), - [3693] = {.count = 1, .reusable = true}, SHIFT(790), - [3695] = {.count = 1, .reusable = false}, SHIFT(1668), - [3697] = {.count = 1, .reusable = true}, SHIFT(1668), - [3699] = {.count = 1, .reusable = true}, SHIFT(792), - [3701] = {.count = 1, .reusable = true}, SHIFT(1667), - [3703] = {.count = 1, .reusable = true}, SHIFT(1669), - [3705] = {.count = 1, .reusable = false}, SHIFT(1672), - [3707] = {.count = 1, .reusable = true}, SHIFT(1672), - [3709] = {.count = 1, .reusable = true}, SHIFT(1671), - [3711] = {.count = 1, .reusable = true}, SHIFT(793), - [3713] = {.count = 1, .reusable = true}, SHIFT(1673), - [3715] = {.count = 1, .reusable = false}, SHIFT(1677), - [3717] = {.count = 1, .reusable = true}, SHIFT(1677), - [3719] = {.count = 1, .reusable = true}, SHIFT(794), - [3721] = {.count = 1, .reusable = true}, SHIFT(1676), - [3723] = {.count = 1, .reusable = true}, SHIFT(795), - [3725] = {.count = 1, .reusable = false}, SHIFT(796), - [3727] = {.count = 1, .reusable = false}, SHIFT(1679), - [3729] = {.count = 1, .reusable = true}, SHIFT(1679), - [3731] = {.count = 1, .reusable = true}, SHIFT(797), - [3733] = {.count = 1, .reusable = true}, SHIFT(1680), - [3735] = {.count = 1, .reusable = true}, SHIFT(1681), - [3737] = {.count = 1, .reusable = false}, SHIFT(1685), - [3739] = {.count = 1, .reusable = true}, SHIFT(1685), - [3741] = {.count = 1, .reusable = true}, SHIFT(798), - [3743] = {.count = 1, .reusable = true}, SHIFT(1684), - [3745] = {.count = 1, .reusable = true}, SHIFT(799), - [3747] = {.count = 1, .reusable = false}, SHIFT(1686), - [3749] = {.count = 1, .reusable = true}, SHIFT(1686), - [3751] = {.count = 1, .reusable = true}, SHIFT(800), - [3753] = {.count = 1, .reusable = true}, SHIFT(801), - [3755] = {.count = 1, .reusable = true}, SHIFT(802), - [3757] = {.count = 1, .reusable = false}, SHIFT(1687), - [3759] = {.count = 1, .reusable = true}, SHIFT(1687), - [3761] = {.count = 1, .reusable = true}, SHIFT(803), - [3763] = {.count = 1, .reusable = false}, SHIFT(1688), - [3765] = {.count = 1, .reusable = true}, SHIFT(1688), - [3767] = {.count = 1, .reusable = true}, SHIFT(804), - [3769] = {.count = 1, .reusable = true}, SHIFT(805), - [3771] = {.count = 1, .reusable = true}, SHIFT(806), - [3773] = {.count = 1, .reusable = true}, SHIFT(807), - [3775] = {.count = 1, .reusable = false}, SHIFT(813), - [3777] = {.count = 1, .reusable = false}, SHIFT(1697), - [3779] = {.count = 1, .reusable = true}, SHIFT(819), - [3781] = {.count = 1, .reusable = false}, SHIFT(1701), - [3783] = {.count = 1, .reusable = true}, SHIFT(820), - [3785] = {.count = 1, .reusable = true}, SHIFT(1701), - [3787] = {.count = 1, .reusable = true}, SHIFT(1700), - [3789] = {.count = 1, .reusable = false}, SHIFT(1706), - [3791] = {.count = 1, .reusable = true}, SHIFT(821), - [3793] = {.count = 1, .reusable = true}, SHIFT(1706), - [3795] = {.count = 1, .reusable = true}, SHIFT(1705), - [3797] = {.count = 1, .reusable = true}, SHIFT(822), - [3799] = {.count = 1, .reusable = false}, SHIFT(823), - [3801] = {.count = 1, .reusable = false}, SHIFT(1707), - [3803] = {.count = 1, .reusable = true}, SHIFT(824), - [3805] = {.count = 1, .reusable = false}, SHIFT(1709), - [3807] = {.count = 1, .reusable = true}, SHIFT(826), - [3809] = {.count = 1, .reusable = true}, SHIFT(1709), - [3811] = {.count = 1, .reusable = true}, SHIFT(1708), - [3813] = {.count = 1, .reusable = true}, SHIFT(1710), - [3815] = {.count = 1, .reusable = false}, SHIFT(1713), - [3817] = {.count = 1, .reusable = true}, SHIFT(827), - [3819] = {.count = 1, .reusable = true}, SHIFT(1713), - [3821] = {.count = 1, .reusable = true}, SHIFT(1712), - [3823] = {.count = 1, .reusable = true}, SHIFT(1714), - [3825] = {.count = 1, .reusable = false}, SHIFT(1718), - [3827] = {.count = 1, .reusable = true}, SHIFT(828), - [3829] = {.count = 1, .reusable = true}, SHIFT(1718), - [3831] = {.count = 1, .reusable = true}, SHIFT(1717), - [3833] = {.count = 1, .reusable = false}, SHIFT(829), - [3835] = {.count = 1, .reusable = false}, SHIFT(1719), - [3837] = {.count = 1, .reusable = true}, SHIFT(830), - [3839] = {.count = 1, .reusable = true}, SHIFT(1719), - [3841] = {.count = 1, .reusable = true}, SHIFT(1720), - [3843] = {.count = 1, .reusable = true}, SHIFT(1721), - [3845] = {.count = 1, .reusable = false}, SHIFT(1725), - [3847] = {.count = 1, .reusable = true}, SHIFT(831), - [3849] = {.count = 1, .reusable = true}, SHIFT(1725), - [3851] = {.count = 1, .reusable = true}, SHIFT(1724), - [3853] = {.count = 1, .reusable = true}, SHIFT(832), - [3855] = {.count = 1, .reusable = false}, SHIFT(1726), - [3857] = {.count = 1, .reusable = true}, SHIFT(833), - [3859] = {.count = 1, .reusable = true}, SHIFT(1726), - [3861] = {.count = 1, .reusable = true}, SHIFT(834), - [3863] = {.count = 1, .reusable = false}, SHIFT(1727), - [3865] = {.count = 1, .reusable = true}, SHIFT(1727), - [3867] = {.count = 1, .reusable = true}, SHIFT(835), - [3869] = {.count = 1, .reusable = false}, SHIFT(1728), - [3871] = {.count = 1, .reusable = true}, SHIFT(836), - [3873] = {.count = 1, .reusable = true}, SHIFT(1728), - [3875] = {.count = 1, .reusable = true}, SHIFT(837), - [3877] = {.count = 1, .reusable = true}, SHIFT(838), - [3879] = {.count = 1, .reusable = true}, SHIFT(839), - [3881] = {.count = 1, .reusable = true}, SHIFT(844), - [3883] = {.count = 1, .reusable = true}, SHIFT(875), - [3885] = {.count = 1, .reusable = true}, SHIFT(874), - [3887] = {.count = 1, .reusable = false}, SHIFT(845), - [3889] = {.count = 1, .reusable = false}, SHIFT(1737), - [3891] = {.count = 1, .reusable = true}, SHIFT(851), - [3893] = {.count = 1, .reusable = false}, SHIFT(1741), - [3895] = {.count = 1, .reusable = true}, SHIFT(1741), - [3897] = {.count = 1, .reusable = true}, SHIFT(1740), - [3899] = {.count = 1, .reusable = true}, SHIFT(852), - [3901] = {.count = 1, .reusable = false}, SHIFT(1746), - [3903] = {.count = 1, .reusable = true}, SHIFT(1746), - [3905] = {.count = 1, .reusable = true}, SHIFT(1745), - [3907] = {.count = 1, .reusable = true}, SHIFT(853), - [3909] = {.count = 1, .reusable = true}, SHIFT(854), - [3911] = {.count = 1, .reusable = false}, SHIFT(855), - [3913] = {.count = 1, .reusable = false}, SHIFT(1747), - [3915] = {.count = 1, .reusable = true}, SHIFT(856), - [3917] = {.count = 1, .reusable = false}, SHIFT(1749), - [3919] = {.count = 1, .reusable = true}, SHIFT(1749), - [3921] = {.count = 1, .reusable = true}, SHIFT(858), - [3923] = {.count = 1, .reusable = true}, SHIFT(1748), - [3925] = {.count = 1, .reusable = true}, SHIFT(1750), - [3927] = {.count = 1, .reusable = false}, SHIFT(1753), - [3929] = {.count = 1, .reusable = true}, SHIFT(1753), - [3931] = {.count = 1, .reusable = true}, SHIFT(1752), - [3933] = {.count = 1, .reusable = true}, SHIFT(859), - [3935] = {.count = 1, .reusable = true}, SHIFT(1754), - [3937] = {.count = 1, .reusable = false}, SHIFT(1758), - [3939] = {.count = 1, .reusable = true}, SHIFT(1758), - [3941] = {.count = 1, .reusable = true}, SHIFT(860), - [3943] = {.count = 1, .reusable = true}, SHIFT(1757), - [3945] = {.count = 1, .reusable = false}, SHIFT(861), - [3947] = {.count = 1, .reusable = false}, SHIFT(1759), - [3949] = {.count = 1, .reusable = true}, SHIFT(1759), - [3951] = {.count = 1, .reusable = true}, SHIFT(862), - [3953] = {.count = 1, .reusable = true}, SHIFT(1760), - [3955] = {.count = 1, .reusable = true}, SHIFT(1761), - [3957] = {.count = 1, .reusable = false}, SHIFT(1765), - [3959] = {.count = 1, .reusable = true}, SHIFT(1765), - [3961] = {.count = 1, .reusable = true}, SHIFT(863), - [3963] = {.count = 1, .reusable = true}, SHIFT(1764), - [3965] = {.count = 1, .reusable = true}, SHIFT(864), - [3967] = {.count = 1, .reusable = false}, SHIFT(1766), - [3969] = {.count = 1, .reusable = true}, SHIFT(1766), - [3971] = {.count = 1, .reusable = true}, SHIFT(865), - [3973] = {.count = 1, .reusable = true}, SHIFT(866), - [3975] = {.count = 1, .reusable = false}, SHIFT(1767), - [3977] = {.count = 1, .reusable = true}, SHIFT(1767), - [3979] = {.count = 1, .reusable = true}, SHIFT(867), - [3981] = {.count = 1, .reusable = false}, SHIFT(1768), - [3983] = {.count = 1, .reusable = true}, SHIFT(1768), - [3985] = {.count = 1, .reusable = true}, SHIFT(868), - [3987] = {.count = 1, .reusable = true}, SHIFT(869), - [3989] = {.count = 1, .reusable = true}, SHIFT(870), - [3991] = {.count = 1, .reusable = true}, SHIFT(871), - [3993] = {.count = 1, .reusable = true}, SHIFT(876), - [3995] = {.count = 1, .reusable = true}, SHIFT(907), - [3997] = {.count = 1, .reusable = true}, SHIFT(906), - [3999] = {.count = 1, .reusable = false}, SHIFT(877), - [4001] = {.count = 1, .reusable = false}, SHIFT(1777), - [4003] = {.count = 1, .reusable = true}, SHIFT(883), - [4005] = {.count = 1, .reusable = false}, SHIFT(1781), - [4007] = {.count = 1, .reusable = true}, SHIFT(1781), - [4009] = {.count = 1, .reusable = true}, SHIFT(1780), - [4011] = {.count = 1, .reusable = true}, SHIFT(884), - [4013] = {.count = 1, .reusable = false}, SHIFT(1786), - [4015] = {.count = 1, .reusable = true}, SHIFT(1786), - [4017] = {.count = 1, .reusable = true}, SHIFT(1785), - [4019] = {.count = 1, .reusable = true}, SHIFT(885), - [4021] = {.count = 1, .reusable = true}, SHIFT(886), - [4023] = {.count = 1, .reusable = false}, SHIFT(887), - [4025] = {.count = 1, .reusable = false}, SHIFT(1787), - [4027] = {.count = 1, .reusable = true}, SHIFT(888), - [4029] = {.count = 1, .reusable = false}, SHIFT(1789), - [4031] = {.count = 1, .reusable = true}, SHIFT(1789), - [4033] = {.count = 1, .reusable = true}, SHIFT(890), - [4035] = {.count = 1, .reusable = true}, SHIFT(1788), - [4037] = {.count = 1, .reusable = true}, SHIFT(1790), - [4039] = {.count = 1, .reusable = false}, SHIFT(1793), - [4041] = {.count = 1, .reusable = true}, SHIFT(1793), - [4043] = {.count = 1, .reusable = true}, SHIFT(1792), - [4045] = {.count = 1, .reusable = true}, SHIFT(891), - [4047] = {.count = 1, .reusable = true}, SHIFT(1794), - [4049] = {.count = 1, .reusable = false}, SHIFT(1798), - [4051] = {.count = 1, .reusable = true}, SHIFT(1798), - [4053] = {.count = 1, .reusable = true}, SHIFT(892), - [4055] = {.count = 1, .reusable = true}, SHIFT(1797), - [4057] = {.count = 1, .reusable = false}, SHIFT(893), - [4059] = {.count = 1, .reusable = false}, SHIFT(1799), - [4061] = {.count = 1, .reusable = true}, SHIFT(1799), - [4063] = {.count = 1, .reusable = true}, SHIFT(894), - [4065] = {.count = 1, .reusable = true}, SHIFT(1800), - [4067] = {.count = 1, .reusable = true}, SHIFT(1801), - [4069] = {.count = 1, .reusable = false}, SHIFT(1805), - [4071] = {.count = 1, .reusable = true}, SHIFT(1805), - [4073] = {.count = 1, .reusable = true}, SHIFT(895), - [4075] = {.count = 1, .reusable = true}, SHIFT(1804), - [4077] = {.count = 1, .reusable = true}, SHIFT(896), - [4079] = {.count = 1, .reusable = false}, SHIFT(1806), - [4081] = {.count = 1, .reusable = true}, SHIFT(1806), - [4083] = {.count = 1, .reusable = true}, SHIFT(897), - [4085] = {.count = 1, .reusable = true}, SHIFT(898), - [4087] = {.count = 1, .reusable = false}, SHIFT(1807), - [4089] = {.count = 1, .reusable = true}, SHIFT(1807), - [4091] = {.count = 1, .reusable = true}, SHIFT(899), - [4093] = {.count = 1, .reusable = false}, SHIFT(1808), - [4095] = {.count = 1, .reusable = true}, SHIFT(1808), - [4097] = {.count = 1, .reusable = true}, SHIFT(900), - [4099] = {.count = 1, .reusable = true}, SHIFT(901), - [4101] = {.count = 1, .reusable = true}, SHIFT(902), - [4103] = {.count = 1, .reusable = true}, SHIFT(903), - [4105] = {.count = 1, .reusable = true}, SHIFT(938), - [4107] = {.count = 1, .reusable = false}, SHIFT(1817), - [4109] = {.count = 1, .reusable = false}, SHIFT(909), - [4111] = {.count = 1, .reusable = true}, SHIFT(915), - [4113] = {.count = 1, .reusable = false}, SHIFT(1821), - [4115] = {.count = 1, .reusable = true}, SHIFT(1821), - [4117] = {.count = 1, .reusable = true}, SHIFT(1820), - [4119] = {.count = 1, .reusable = true}, SHIFT(916), - [4121] = {.count = 1, .reusable = false}, SHIFT(1826), - [4123] = {.count = 1, .reusable = true}, SHIFT(1826), - [4125] = {.count = 1, .reusable = true}, SHIFT(1825), - [4127] = {.count = 1, .reusable = true}, SHIFT(917), - [4129] = {.count = 1, .reusable = true}, SHIFT(918), - [4131] = {.count = 1, .reusable = false}, SHIFT(919), - [4133] = {.count = 1, .reusable = false}, SHIFT(1827), - [4135] = {.count = 1, .reusable = true}, SHIFT(920), - [4137] = {.count = 1, .reusable = false}, SHIFT(1829), - [4139] = {.count = 1, .reusable = true}, SHIFT(1829), - [4141] = {.count = 1, .reusable = true}, SHIFT(922), - [4143] = {.count = 1, .reusable = true}, SHIFT(1828), - [4145] = {.count = 1, .reusable = true}, SHIFT(1830), - [4147] = {.count = 1, .reusable = false}, SHIFT(1833), - [4149] = {.count = 1, .reusable = true}, SHIFT(1833), - [4151] = {.count = 1, .reusable = true}, SHIFT(1832), - [4153] = {.count = 1, .reusable = true}, SHIFT(923), - [4155] = {.count = 1, .reusable = true}, SHIFT(1834), - [4157] = {.count = 1, .reusable = false}, SHIFT(1838), - [4159] = {.count = 1, .reusable = true}, SHIFT(1838), - [4161] = {.count = 1, .reusable = true}, SHIFT(924), - [4163] = {.count = 1, .reusable = true}, SHIFT(1837), - [4165] = {.count = 1, .reusable = false}, SHIFT(925), - [4167] = {.count = 1, .reusable = false}, SHIFT(1839), - [4169] = {.count = 1, .reusable = true}, SHIFT(1839), - [4171] = {.count = 1, .reusable = true}, SHIFT(926), - [4173] = {.count = 1, .reusable = true}, SHIFT(1840), - [4175] = {.count = 1, .reusable = true}, SHIFT(1841), - [4177] = {.count = 1, .reusable = false}, SHIFT(1845), - [4179] = {.count = 1, .reusable = true}, SHIFT(1845), - [4181] = {.count = 1, .reusable = true}, SHIFT(927), - [4183] = {.count = 1, .reusable = true}, SHIFT(1844), - [4185] = {.count = 1, .reusable = true}, SHIFT(928), - [4187] = {.count = 1, .reusable = false}, SHIFT(1846), - [4189] = {.count = 1, .reusable = true}, SHIFT(1846), - [4191] = {.count = 1, .reusable = true}, SHIFT(929), - [4193] = {.count = 1, .reusable = true}, SHIFT(930), - [4195] = {.count = 1, .reusable = false}, SHIFT(1847), - [4197] = {.count = 1, .reusable = true}, SHIFT(1847), - [4199] = {.count = 1, .reusable = true}, SHIFT(931), - [4201] = {.count = 1, .reusable = false}, SHIFT(1848), - [4203] = {.count = 1, .reusable = true}, SHIFT(1848), - [4205] = {.count = 1, .reusable = true}, SHIFT(932), - [4207] = {.count = 1, .reusable = true}, SHIFT(933), - [4209] = {.count = 1, .reusable = true}, SHIFT(934), - [4211] = {.count = 1, .reusable = true}, SHIFT(935), - [4213] = {.count = 1, .reusable = true}, SHIFT(970), - [4215] = {.count = 1, .reusable = true}, SHIFT(971), - [4217] = {.count = 1, .reusable = true}, SHIFT(940), - [4219] = {.count = 1, .reusable = false}, SHIFT(1857), - [4221] = {.count = 1, .reusable = false}, SHIFT(941), - [4223] = {.count = 1, .reusable = true}, SHIFT(947), - [4225] = {.count = 1, .reusable = false}, SHIFT(1861), - [4227] = {.count = 1, .reusable = true}, SHIFT(948), - [4229] = {.count = 1, .reusable = true}, SHIFT(1861), - [4231] = {.count = 1, .reusable = true}, SHIFT(1860), - [4233] = {.count = 1, .reusable = false}, SHIFT(1866), - [4235] = {.count = 1, .reusable = true}, SHIFT(949), - [4237] = {.count = 1, .reusable = true}, SHIFT(1866), - [4239] = {.count = 1, .reusable = true}, SHIFT(1865), - [4241] = {.count = 1, .reusable = true}, SHIFT(950), - [4243] = {.count = 1, .reusable = false}, SHIFT(951), - [4245] = {.count = 1, .reusable = false}, SHIFT(1867), - [4247] = {.count = 1, .reusable = true}, SHIFT(952), - [4249] = {.count = 1, .reusable = false}, SHIFT(1869), - [4251] = {.count = 1, .reusable = true}, SHIFT(954), - [4253] = {.count = 1, .reusable = true}, SHIFT(1869), - [4255] = {.count = 1, .reusable = true}, SHIFT(1868), - [4257] = {.count = 1, .reusable = true}, SHIFT(1870), - [4259] = {.count = 1, .reusable = false}, SHIFT(1873), - [4261] = {.count = 1, .reusable = true}, SHIFT(955), - [4263] = {.count = 1, .reusable = true}, SHIFT(1873), - [4265] = {.count = 1, .reusable = true}, SHIFT(1872), - [4267] = {.count = 1, .reusable = true}, SHIFT(1874), - [4269] = {.count = 1, .reusable = false}, SHIFT(1878), - [4271] = {.count = 1, .reusable = true}, SHIFT(956), - [4273] = {.count = 1, .reusable = true}, SHIFT(1878), - [4275] = {.count = 1, .reusable = true}, SHIFT(1877), - [4277] = {.count = 1, .reusable = false}, SHIFT(957), - [4279] = {.count = 1, .reusable = false}, SHIFT(1879), - [4281] = {.count = 1, .reusable = true}, SHIFT(958), - [4283] = {.count = 1, .reusable = true}, SHIFT(1879), - [4285] = {.count = 1, .reusable = true}, SHIFT(1880), - [4287] = {.count = 1, .reusable = true}, SHIFT(1881), - [4289] = {.count = 1, .reusable = false}, SHIFT(1885), - [4291] = {.count = 1, .reusable = true}, SHIFT(959), - [4293] = {.count = 1, .reusable = true}, SHIFT(1885), - [4295] = {.count = 1, .reusable = true}, SHIFT(1884), - [4297] = {.count = 1, .reusable = true}, SHIFT(960), - [4299] = {.count = 1, .reusable = false}, SHIFT(1886), - [4301] = {.count = 1, .reusable = true}, SHIFT(961), - [4303] = {.count = 1, .reusable = true}, SHIFT(1886), - [4305] = {.count = 1, .reusable = true}, SHIFT(962), - [4307] = {.count = 1, .reusable = false}, SHIFT(1887), - [4309] = {.count = 1, .reusable = true}, SHIFT(1887), - [4311] = {.count = 1, .reusable = true}, SHIFT(963), - [4313] = {.count = 1, .reusable = false}, SHIFT(1888), - [4315] = {.count = 1, .reusable = true}, SHIFT(964), - [4317] = {.count = 1, .reusable = true}, SHIFT(1888), - [4319] = {.count = 1, .reusable = true}, SHIFT(965), - [4321] = {.count = 1, .reusable = true}, SHIFT(966), - [4323] = {.count = 1, .reusable = true}, SHIFT(967), - [4325] = {.count = 1, .reusable = true}, SHIFT(1002), - [4327] = {.count = 1, .reusable = true}, SHIFT(1003), - [4329] = {.count = 1, .reusable = true}, SHIFT(972), - [4331] = {.count = 1, .reusable = false}, SHIFT(1897), - [4333] = {.count = 1, .reusable = false}, SHIFT(973), - [4335] = {.count = 1, .reusable = true}, SHIFT(979), - [4337] = {.count = 1, .reusable = false}, SHIFT(1901), - [4339] = {.count = 1, .reusable = true}, SHIFT(980), - [4341] = {.count = 1, .reusable = true}, SHIFT(1901), - [4343] = {.count = 1, .reusable = true}, SHIFT(1900), - [4345] = {.count = 1, .reusable = false}, SHIFT(1906), - [4347] = {.count = 1, .reusable = true}, SHIFT(981), - [4349] = {.count = 1, .reusable = true}, SHIFT(1906), - [4351] = {.count = 1, .reusable = true}, SHIFT(1905), - [4353] = {.count = 1, .reusable = true}, SHIFT(982), - [4355] = {.count = 1, .reusable = false}, SHIFT(983), - [4357] = {.count = 1, .reusable = false}, SHIFT(1907), - [4359] = {.count = 1, .reusable = true}, SHIFT(984), - [4361] = {.count = 1, .reusable = false}, SHIFT(1909), - [4363] = {.count = 1, .reusable = true}, SHIFT(986), - [4365] = {.count = 1, .reusable = true}, SHIFT(1909), - [4367] = {.count = 1, .reusable = true}, SHIFT(1908), - [4369] = {.count = 1, .reusable = true}, SHIFT(1910), - [4371] = {.count = 1, .reusable = false}, SHIFT(1913), - [4373] = {.count = 1, .reusable = true}, SHIFT(987), - [4375] = {.count = 1, .reusable = true}, SHIFT(1913), - [4377] = {.count = 1, .reusable = true}, SHIFT(1912), - [4379] = {.count = 1, .reusable = true}, SHIFT(1914), - [4381] = {.count = 1, .reusable = false}, SHIFT(1918), - [4383] = {.count = 1, .reusable = true}, SHIFT(988), - [4385] = {.count = 1, .reusable = true}, SHIFT(1918), - [4387] = {.count = 1, .reusable = true}, SHIFT(1917), - [4389] = {.count = 1, .reusable = false}, SHIFT(989), - [4391] = {.count = 1, .reusable = false}, SHIFT(1919), - [4393] = {.count = 1, .reusable = true}, SHIFT(990), - [4395] = {.count = 1, .reusable = true}, SHIFT(1919), - [4397] = {.count = 1, .reusable = true}, SHIFT(1920), - [4399] = {.count = 1, .reusable = true}, SHIFT(1921), - [4401] = {.count = 1, .reusable = false}, SHIFT(1925), - [4403] = {.count = 1, .reusable = true}, SHIFT(991), - [4405] = {.count = 1, .reusable = true}, SHIFT(1925), - [4407] = {.count = 1, .reusable = true}, SHIFT(1924), - [4409] = {.count = 1, .reusable = true}, SHIFT(992), - [4411] = {.count = 1, .reusable = false}, SHIFT(1926), - [4413] = {.count = 1, .reusable = true}, SHIFT(993), - [4415] = {.count = 1, .reusable = true}, SHIFT(1926), - [4417] = {.count = 1, .reusable = true}, SHIFT(994), - [4419] = {.count = 1, .reusable = false}, SHIFT(1927), - [4421] = {.count = 1, .reusable = true}, SHIFT(1927), - [4423] = {.count = 1, .reusable = true}, SHIFT(995), - [4425] = {.count = 1, .reusable = false}, SHIFT(1928), - [4427] = {.count = 1, .reusable = true}, SHIFT(996), - [4429] = {.count = 1, .reusable = true}, SHIFT(1928), - [4431] = {.count = 1, .reusable = true}, SHIFT(997), - [4433] = {.count = 1, .reusable = true}, SHIFT(998), - [4435] = {.count = 1, .reusable = true}, SHIFT(999), - [4437] = {.count = 1, .reusable = true}, SHIFT(1034), - [4439] = {.count = 1, .reusable = true}, SHIFT(1035), - [4441] = {.count = 1, .reusable = true}, SHIFT(1004), - [4443] = {.count = 1, .reusable = false}, SHIFT(1937), - [4445] = {.count = 1, .reusable = false}, SHIFT(1005), - [4447] = {.count = 1, .reusable = true}, SHIFT(1011), - [4449] = {.count = 1, .reusable = false}, SHIFT(1941), - [4451] = {.count = 1, .reusable = true}, SHIFT(1012), - [4453] = {.count = 1, .reusable = true}, SHIFT(1941), - [4455] = {.count = 1, .reusable = true}, SHIFT(1940), - [4457] = {.count = 1, .reusable = false}, SHIFT(1946), - [4459] = {.count = 1, .reusable = true}, SHIFT(1013), - [4461] = {.count = 1, .reusable = true}, SHIFT(1946), - [4463] = {.count = 1, .reusable = true}, SHIFT(1945), - [4465] = {.count = 1, .reusable = true}, SHIFT(1014), - [4467] = {.count = 1, .reusable = false}, SHIFT(1015), - [4469] = {.count = 1, .reusable = false}, SHIFT(1947), - [4471] = {.count = 1, .reusable = true}, SHIFT(1016), - [4473] = {.count = 1, .reusable = false}, SHIFT(1949), - [4475] = {.count = 1, .reusable = true}, SHIFT(1018), - [4477] = {.count = 1, .reusable = true}, SHIFT(1949), - [4479] = {.count = 1, .reusable = true}, SHIFT(1948), - [4481] = {.count = 1, .reusable = true}, SHIFT(1950), - [4483] = {.count = 1, .reusable = false}, SHIFT(1953), - [4485] = {.count = 1, .reusable = true}, SHIFT(1019), - [4487] = {.count = 1, .reusable = true}, SHIFT(1953), - [4489] = {.count = 1, .reusable = true}, SHIFT(1952), - [4491] = {.count = 1, .reusable = true}, SHIFT(1954), - [4493] = {.count = 1, .reusable = false}, SHIFT(1958), - [4495] = {.count = 1, .reusable = true}, SHIFT(1020), - [4497] = {.count = 1, .reusable = true}, SHIFT(1958), - [4499] = {.count = 1, .reusable = true}, SHIFT(1957), - [4501] = {.count = 1, .reusable = false}, SHIFT(1021), - [4503] = {.count = 1, .reusable = false}, SHIFT(1959), - [4505] = {.count = 1, .reusable = true}, SHIFT(1022), - [4507] = {.count = 1, .reusable = true}, SHIFT(1959), - [4509] = {.count = 1, .reusable = true}, SHIFT(1960), - [4511] = {.count = 1, .reusable = true}, SHIFT(1961), - [4513] = {.count = 1, .reusable = false}, SHIFT(1965), - [4515] = {.count = 1, .reusable = true}, SHIFT(1023), - [4517] = {.count = 1, .reusable = true}, SHIFT(1965), - [4519] = {.count = 1, .reusable = true}, SHIFT(1964), - [4521] = {.count = 1, .reusable = true}, SHIFT(1024), - [4523] = {.count = 1, .reusable = false}, SHIFT(1966), - [4525] = {.count = 1, .reusable = true}, SHIFT(1025), - [4527] = {.count = 1, .reusable = true}, SHIFT(1966), - [4529] = {.count = 1, .reusable = true}, SHIFT(1026), - [4531] = {.count = 1, .reusable = false}, SHIFT(1967), - [4533] = {.count = 1, .reusable = true}, SHIFT(1967), - [4535] = {.count = 1, .reusable = true}, SHIFT(1027), - [4537] = {.count = 1, .reusable = false}, SHIFT(1968), - [4539] = {.count = 1, .reusable = true}, SHIFT(1028), - [4541] = {.count = 1, .reusable = true}, SHIFT(1968), - [4543] = {.count = 1, .reusable = true}, SHIFT(1029), - [4545] = {.count = 1, .reusable = true}, SHIFT(1030), - [4547] = {.count = 1, .reusable = true}, SHIFT(1031), - [4549] = {.count = 1, .reusable = true}, SHIFT(1036), - [4551] = {.count = 1, .reusable = true}, SHIFT(1067), - [4553] = {.count = 1, .reusable = true}, SHIFT(1066), - [4555] = {.count = 1, .reusable = false}, SHIFT(1037), - [4557] = {.count = 1, .reusable = false}, SHIFT(1977), - [4559] = {.count = 1, .reusable = true}, SHIFT(1043), - [4561] = {.count = 1, .reusable = false}, SHIFT(1981), - [4563] = {.count = 1, .reusable = true}, SHIFT(1044), - [4565] = {.count = 1, .reusable = true}, SHIFT(1981), - [4567] = {.count = 1, .reusable = true}, SHIFT(1980), - [4569] = {.count = 1, .reusable = false}, SHIFT(1986), - [4571] = {.count = 1, .reusable = true}, SHIFT(1045), - [4573] = {.count = 1, .reusable = true}, SHIFT(1986), - [4575] = {.count = 1, .reusable = true}, SHIFT(1985), - [4577] = {.count = 1, .reusable = true}, SHIFT(1046), - [4579] = {.count = 1, .reusable = false}, SHIFT(1047), - [4581] = {.count = 1, .reusable = false}, SHIFT(1987), - [4583] = {.count = 1, .reusable = true}, SHIFT(1048), - [4585] = {.count = 1, .reusable = false}, SHIFT(1989), - [4587] = {.count = 1, .reusable = true}, SHIFT(1050), - [4589] = {.count = 1, .reusable = true}, SHIFT(1989), - [4591] = {.count = 1, .reusable = true}, SHIFT(1988), - [4593] = {.count = 1, .reusable = true}, SHIFT(1990), - [4595] = {.count = 1, .reusable = false}, SHIFT(1993), - [4597] = {.count = 1, .reusable = true}, SHIFT(1051), - [4599] = {.count = 1, .reusable = true}, SHIFT(1993), - [4601] = {.count = 1, .reusable = true}, SHIFT(1992), - [4603] = {.count = 1, .reusable = true}, SHIFT(1994), - [4605] = {.count = 1, .reusable = false}, SHIFT(1998), - [4607] = {.count = 1, .reusable = true}, SHIFT(1052), - [4609] = {.count = 1, .reusable = true}, SHIFT(1998), - [4611] = {.count = 1, .reusable = true}, SHIFT(1997), - [4613] = {.count = 1, .reusable = false}, SHIFT(1053), - [4615] = {.count = 1, .reusable = false}, SHIFT(1999), - [4617] = {.count = 1, .reusable = true}, SHIFT(1054), - [4619] = {.count = 1, .reusable = true}, SHIFT(1999), - [4621] = {.count = 1, .reusable = true}, SHIFT(2000), - [4623] = {.count = 1, .reusable = true}, SHIFT(2001), - [4625] = {.count = 1, .reusable = false}, SHIFT(2005), - [4627] = {.count = 1, .reusable = true}, SHIFT(1055), - [4629] = {.count = 1, .reusable = true}, SHIFT(2005), - [4631] = {.count = 1, .reusable = true}, SHIFT(2004), - [4633] = {.count = 1, .reusable = true}, SHIFT(1056), - [4635] = {.count = 1, .reusable = false}, SHIFT(2006), - [4637] = {.count = 1, .reusable = true}, SHIFT(1057), - [4639] = {.count = 1, .reusable = true}, SHIFT(2006), - [4641] = {.count = 1, .reusable = true}, SHIFT(1058), - [4643] = {.count = 1, .reusable = false}, SHIFT(2007), - [4645] = {.count = 1, .reusable = true}, SHIFT(2007), - [4647] = {.count = 1, .reusable = true}, SHIFT(1059), - [4649] = {.count = 1, .reusable = false}, SHIFT(2008), - [4651] = {.count = 1, .reusable = true}, SHIFT(1060), - [4653] = {.count = 1, .reusable = true}, SHIFT(2008), - [4655] = {.count = 1, .reusable = true}, SHIFT(1061), - [4657] = {.count = 1, .reusable = true}, SHIFT(1062), - [4659] = {.count = 1, .reusable = true}, SHIFT(1063), - [4661] = {.count = 1, .reusable = true}, SHIFT(1068), - [4663] = {.count = 1, .reusable = true}, SHIFT(1099), - [4665] = {.count = 1, .reusable = true}, SHIFT(1098), - [4667] = {.count = 1, .reusable = false}, SHIFT(1069), - [4669] = {.count = 1, .reusable = false}, SHIFT(2017), - [4671] = {.count = 1, .reusable = true}, SHIFT(1075), - [4673] = {.count = 1, .reusable = false}, SHIFT(2021), - [4675] = {.count = 1, .reusable = true}, SHIFT(2021), - [4677] = {.count = 1, .reusable = true}, SHIFT(2020), - [4679] = {.count = 1, .reusable = true}, SHIFT(1076), - [4681] = {.count = 1, .reusable = false}, SHIFT(2026), - [4683] = {.count = 1, .reusable = true}, SHIFT(2026), - [4685] = {.count = 1, .reusable = true}, SHIFT(2025), - [4687] = {.count = 1, .reusable = true}, SHIFT(1077), - [4689] = {.count = 1, .reusable = true}, SHIFT(1078), - [4691] = {.count = 1, .reusable = false}, SHIFT(1079), - [4693] = {.count = 1, .reusable = false}, SHIFT(2027), - [4695] = {.count = 1, .reusable = true}, SHIFT(1080), - [4697] = {.count = 1, .reusable = false}, SHIFT(2029), - [4699] = {.count = 1, .reusable = true}, SHIFT(2029), - [4701] = {.count = 1, .reusable = true}, SHIFT(1082), - [4703] = {.count = 1, .reusable = true}, SHIFT(2028), - [4705] = {.count = 1, .reusable = true}, SHIFT(2030), - [4707] = {.count = 1, .reusable = false}, SHIFT(2033), - [4709] = {.count = 1, .reusable = true}, SHIFT(2033), - [4711] = {.count = 1, .reusable = true}, SHIFT(2032), - [4713] = {.count = 1, .reusable = true}, SHIFT(1083), - [4715] = {.count = 1, .reusable = true}, SHIFT(2034), - [4717] = {.count = 1, .reusable = false}, SHIFT(2038), - [4719] = {.count = 1, .reusable = true}, SHIFT(2038), - [4721] = {.count = 1, .reusable = true}, SHIFT(1084), - [4723] = {.count = 1, .reusable = true}, SHIFT(2037), - [4725] = {.count = 1, .reusable = false}, SHIFT(1085), - [4727] = {.count = 1, .reusable = false}, SHIFT(2039), - [4729] = {.count = 1, .reusable = true}, SHIFT(2039), - [4731] = {.count = 1, .reusable = true}, SHIFT(1086), - [4733] = {.count = 1, .reusable = true}, SHIFT(2040), - [4735] = {.count = 1, .reusable = true}, SHIFT(2041), - [4737] = {.count = 1, .reusable = false}, SHIFT(2045), - [4739] = {.count = 1, .reusable = true}, SHIFT(2045), - [4741] = {.count = 1, .reusable = true}, SHIFT(1087), - [4743] = {.count = 1, .reusable = true}, SHIFT(2044), - [4745] = {.count = 1, .reusable = true}, SHIFT(1088), - [4747] = {.count = 1, .reusable = false}, SHIFT(2046), - [4749] = {.count = 1, .reusable = true}, SHIFT(2046), - [4751] = {.count = 1, .reusable = true}, SHIFT(1089), - [4753] = {.count = 1, .reusable = true}, SHIFT(1090), - [4755] = {.count = 1, .reusable = false}, SHIFT(2047), - [4757] = {.count = 1, .reusable = true}, SHIFT(2047), - [4759] = {.count = 1, .reusable = true}, SHIFT(1091), - [4761] = {.count = 1, .reusable = false}, SHIFT(2048), - [4763] = {.count = 1, .reusable = true}, SHIFT(2048), - [4765] = {.count = 1, .reusable = true}, SHIFT(1092), - [4767] = {.count = 1, .reusable = true}, SHIFT(1093), - [4769] = {.count = 1, .reusable = true}, SHIFT(1094), - [4771] = {.count = 1, .reusable = true}, SHIFT(1095), - [4773] = {.count = 1, .reusable = false}, SHIFT(2057), - [4775] = {.count = 1, .reusable = false}, SHIFT(1101), - [4777] = {.count = 1, .reusable = true}, SHIFT(1107), - [4779] = {.count = 1, .reusable = false}, SHIFT(2061), - [4781] = {.count = 1, .reusable = true}, SHIFT(2061), - [4783] = {.count = 1, .reusable = true}, SHIFT(2060), - [4785] = {.count = 1, .reusable = true}, SHIFT(1108), - [4787] = {.count = 1, .reusable = false}, SHIFT(2066), - [4789] = {.count = 1, .reusable = true}, SHIFT(2066), - [4791] = {.count = 1, .reusable = true}, SHIFT(2065), - [4793] = {.count = 1, .reusable = true}, SHIFT(1109), - [4795] = {.count = 1, .reusable = true}, SHIFT(1110), - [4797] = {.count = 1, .reusable = false}, SHIFT(1111), - [4799] = {.count = 1, .reusable = false}, SHIFT(2067), - [4801] = {.count = 1, .reusable = true}, SHIFT(1112), - [4803] = {.count = 1, .reusable = false}, SHIFT(2069), - [4805] = {.count = 1, .reusable = true}, SHIFT(2069), - [4807] = {.count = 1, .reusable = true}, SHIFT(1114), - [4809] = {.count = 1, .reusable = true}, SHIFT(2068), - [4811] = {.count = 1, .reusable = true}, SHIFT(2070), - [4813] = {.count = 1, .reusable = false}, SHIFT(2073), - [4815] = {.count = 1, .reusable = true}, SHIFT(2073), - [4817] = {.count = 1, .reusable = true}, SHIFT(2072), - [4819] = {.count = 1, .reusable = true}, SHIFT(1115), - [4821] = {.count = 1, .reusable = true}, SHIFT(2074), - [4823] = {.count = 1, .reusable = false}, SHIFT(2078), - [4825] = {.count = 1, .reusable = true}, SHIFT(2078), - [4827] = {.count = 1, .reusable = true}, SHIFT(1116), - [4829] = {.count = 1, .reusable = true}, SHIFT(2077), - [4831] = {.count = 1, .reusable = false}, SHIFT(1117), - [4833] = {.count = 1, .reusable = false}, SHIFT(2079), - [4835] = {.count = 1, .reusable = true}, SHIFT(2079), - [4837] = {.count = 1, .reusable = true}, SHIFT(1118), - [4839] = {.count = 1, .reusable = true}, SHIFT(2080), - [4841] = {.count = 1, .reusable = true}, SHIFT(2081), - [4843] = {.count = 1, .reusable = false}, SHIFT(2085), - [4845] = {.count = 1, .reusable = true}, SHIFT(2085), - [4847] = {.count = 1, .reusable = true}, SHIFT(1119), - [4849] = {.count = 1, .reusable = true}, SHIFT(2084), - [4851] = {.count = 1, .reusable = true}, SHIFT(1120), - [4853] = {.count = 1, .reusable = false}, SHIFT(2086), - [4855] = {.count = 1, .reusable = true}, SHIFT(2086), - [4857] = {.count = 1, .reusable = true}, SHIFT(1121), - [4859] = {.count = 1, .reusable = true}, SHIFT(1122), - [4861] = {.count = 1, .reusable = false}, SHIFT(2087), - [4863] = {.count = 1, .reusable = true}, SHIFT(2087), - [4865] = {.count = 1, .reusable = true}, SHIFT(1123), - [4867] = {.count = 1, .reusable = false}, SHIFT(2088), - [4869] = {.count = 1, .reusable = true}, SHIFT(2088), - [4871] = {.count = 1, .reusable = true}, SHIFT(1124), - [4873] = {.count = 1, .reusable = true}, SHIFT(1125), - [4875] = {.count = 1, .reusable = true}, SHIFT(1126), - [4877] = {.count = 1, .reusable = true}, SHIFT(1127), - [4879] = {.count = 1, .reusable = true}, SHIFT(1162), - [4881] = {.count = 1, .reusable = false}, SHIFT(2097), - [4883] = {.count = 1, .reusable = false}, SHIFT(1133), - [4885] = {.count = 1, .reusable = true}, SHIFT(1139), - [4887] = {.count = 1, .reusable = false}, SHIFT(2101), - [4889] = {.count = 1, .reusable = true}, SHIFT(1140), - [4891] = {.count = 1, .reusable = true}, SHIFT(2101), - [4893] = {.count = 1, .reusable = true}, SHIFT(2100), - [4895] = {.count = 1, .reusable = false}, SHIFT(2106), - [4897] = {.count = 1, .reusable = true}, SHIFT(1141), - [4899] = {.count = 1, .reusable = true}, SHIFT(2106), - [4901] = {.count = 1, .reusable = true}, SHIFT(2105), - [4903] = {.count = 1, .reusable = true}, SHIFT(1142), - [4905] = {.count = 1, .reusable = false}, SHIFT(1143), - [4907] = {.count = 1, .reusable = false}, SHIFT(2107), - [4909] = {.count = 1, .reusable = true}, SHIFT(1144), - [4911] = {.count = 1, .reusable = false}, SHIFT(2109), - [4913] = {.count = 1, .reusable = true}, SHIFT(1146), - [4915] = {.count = 1, .reusable = true}, SHIFT(2109), - [4917] = {.count = 1, .reusable = true}, SHIFT(2108), - [4919] = {.count = 1, .reusable = true}, SHIFT(2110), - [4921] = {.count = 1, .reusable = false}, SHIFT(2113), - [4923] = {.count = 1, .reusable = true}, SHIFT(1147), - [4925] = {.count = 1, .reusable = true}, SHIFT(2113), - [4927] = {.count = 1, .reusable = true}, SHIFT(2112), - [4929] = {.count = 1, .reusable = true}, SHIFT(2114), - [4931] = {.count = 1, .reusable = false}, SHIFT(2118), - [4933] = {.count = 1, .reusable = true}, SHIFT(1148), - [4935] = {.count = 1, .reusable = true}, SHIFT(2118), - [4937] = {.count = 1, .reusable = true}, SHIFT(2117), - [4939] = {.count = 1, .reusable = false}, SHIFT(1149), - [4941] = {.count = 1, .reusable = false}, SHIFT(2119), - [4943] = {.count = 1, .reusable = true}, SHIFT(1150), - [4945] = {.count = 1, .reusable = true}, SHIFT(2119), - [4947] = {.count = 1, .reusable = true}, SHIFT(2120), - [4949] = {.count = 1, .reusable = true}, SHIFT(2121), - [4951] = {.count = 1, .reusable = false}, SHIFT(2125), - [4953] = {.count = 1, .reusable = true}, SHIFT(1151), - [4955] = {.count = 1, .reusable = true}, SHIFT(2125), - [4957] = {.count = 1, .reusable = true}, SHIFT(2124), - [4959] = {.count = 1, .reusable = true}, SHIFT(1152), - [4961] = {.count = 1, .reusable = false}, SHIFT(2126), - [4963] = {.count = 1, .reusable = true}, SHIFT(1153), - [4965] = {.count = 1, .reusable = true}, SHIFT(2126), - [4967] = {.count = 1, .reusable = true}, SHIFT(1154), - [4969] = {.count = 1, .reusable = false}, SHIFT(2127), - [4971] = {.count = 1, .reusable = true}, SHIFT(2127), - [4973] = {.count = 1, .reusable = true}, SHIFT(1155), - [4975] = {.count = 1, .reusable = false}, SHIFT(2128), - [4977] = {.count = 1, .reusable = true}, SHIFT(1156), - [4979] = {.count = 1, .reusable = true}, SHIFT(2128), - [4981] = {.count = 1, .reusable = true}, SHIFT(1157), - [4983] = {.count = 1, .reusable = true}, SHIFT(1158), - [4985] = {.count = 1, .reusable = true}, SHIFT(1159), - [4987] = {.count = 1, .reusable = true}, SHIFT(1194), - [4989] = {.count = 1, .reusable = true}, SHIFT(1195), - [4991] = {.count = 1, .reusable = true}, SHIFT(1164), - [4993] = {.count = 1, .reusable = false}, SHIFT(2137), - [4995] = {.count = 1, .reusable = false}, SHIFT(1165), - [4997] = {.count = 1, .reusable = true}, SHIFT(1171), - [4999] = {.count = 1, .reusable = false}, SHIFT(2141), - [5001] = {.count = 1, .reusable = true}, SHIFT(1172), - [5003] = {.count = 1, .reusable = true}, SHIFT(2141), - [5005] = {.count = 1, .reusable = true}, SHIFT(2140), - [5007] = {.count = 1, .reusable = false}, SHIFT(2146), - [5009] = {.count = 1, .reusable = true}, SHIFT(1173), - [5011] = {.count = 1, .reusable = true}, SHIFT(2146), - [5013] = {.count = 1, .reusable = true}, SHIFT(2145), - [5015] = {.count = 1, .reusable = true}, SHIFT(1174), - [5017] = {.count = 1, .reusable = false}, SHIFT(1175), - [5019] = {.count = 1, .reusable = false}, SHIFT(2147), - [5021] = {.count = 1, .reusable = true}, SHIFT(1176), - [5023] = {.count = 1, .reusable = false}, SHIFT(2149), - [5025] = {.count = 1, .reusable = true}, SHIFT(1178), - [5027] = {.count = 1, .reusable = true}, SHIFT(2149), - [5029] = {.count = 1, .reusable = true}, SHIFT(2148), - [5031] = {.count = 1, .reusable = true}, SHIFT(2150), - [5033] = {.count = 1, .reusable = false}, SHIFT(2153), - [5035] = {.count = 1, .reusable = true}, SHIFT(1179), - [5037] = {.count = 1, .reusable = true}, SHIFT(2153), - [5039] = {.count = 1, .reusable = true}, SHIFT(2152), - [5041] = {.count = 1, .reusable = true}, SHIFT(2154), - [5043] = {.count = 1, .reusable = false}, SHIFT(2158), - [5045] = {.count = 1, .reusable = true}, SHIFT(1180), - [5047] = {.count = 1, .reusable = true}, SHIFT(2158), - [5049] = {.count = 1, .reusable = true}, SHIFT(2157), - [5051] = {.count = 1, .reusable = false}, SHIFT(1181), - [5053] = {.count = 1, .reusable = false}, SHIFT(2159), - [5055] = {.count = 1, .reusable = true}, SHIFT(1182), - [5057] = {.count = 1, .reusable = true}, SHIFT(2159), - [5059] = {.count = 1, .reusable = true}, SHIFT(2160), - [5061] = {.count = 1, .reusable = true}, SHIFT(2161), - [5063] = {.count = 1, .reusable = false}, SHIFT(2165), - [5065] = {.count = 1, .reusable = true}, SHIFT(1183), - [5067] = {.count = 1, .reusable = true}, SHIFT(2165), - [5069] = {.count = 1, .reusable = true}, SHIFT(2164), - [5071] = {.count = 1, .reusable = true}, SHIFT(1184), - [5073] = {.count = 1, .reusable = false}, SHIFT(2166), - [5075] = {.count = 1, .reusable = true}, SHIFT(1185), - [5077] = {.count = 1, .reusable = true}, SHIFT(2166), - [5079] = {.count = 1, .reusable = true}, SHIFT(1186), - [5081] = {.count = 1, .reusable = false}, SHIFT(2167), - [5083] = {.count = 1, .reusable = true}, SHIFT(2167), - [5085] = {.count = 1, .reusable = true}, SHIFT(1187), - [5087] = {.count = 1, .reusable = false}, SHIFT(2168), - [5089] = {.count = 1, .reusable = true}, SHIFT(1188), - [5091] = {.count = 1, .reusable = true}, SHIFT(2168), - [5093] = {.count = 1, .reusable = true}, SHIFT(1189), - [5095] = {.count = 1, .reusable = true}, SHIFT(1190), - [5097] = {.count = 1, .reusable = true}, SHIFT(1191), - [5099] = {.count = 1, .reusable = true}, SHIFT(1258), - [5101] = {.count = 1, .reusable = true}, SHIFT(1259), - [5103] = {.count = 1, .reusable = true}, SHIFT(1196), - [5105] = {.count = 1, .reusable = false}, SHIFT(2177), - [5107] = {.count = 1, .reusable = false}, SHIFT(1197), - [5109] = {.count = 1, .reusable = true}, SHIFT(1203), - [5111] = {.count = 1, .reusable = false}, SHIFT(2181), - [5113] = {.count = 1, .reusable = true}, SHIFT(1204), - [5115] = {.count = 1, .reusable = true}, SHIFT(2181), - [5117] = {.count = 1, .reusable = true}, SHIFT(2180), - [5119] = {.count = 1, .reusable = false}, SHIFT(2186), - [5121] = {.count = 1, .reusable = true}, SHIFT(1205), - [5123] = {.count = 1, .reusable = true}, SHIFT(2186), - [5125] = {.count = 1, .reusable = true}, SHIFT(2185), - [5127] = {.count = 1, .reusable = true}, SHIFT(1206), - [5129] = {.count = 1, .reusable = false}, SHIFT(1207), - [5131] = {.count = 1, .reusable = false}, SHIFT(2187), - [5133] = {.count = 1, .reusable = true}, SHIFT(1208), - [5135] = {.count = 1, .reusable = false}, SHIFT(2189), - [5137] = {.count = 1, .reusable = true}, SHIFT(1210), - [5139] = {.count = 1, .reusable = true}, SHIFT(2189), - [5141] = {.count = 1, .reusable = true}, SHIFT(2188), - [5143] = {.count = 1, .reusable = true}, SHIFT(2190), - [5145] = {.count = 1, .reusable = false}, SHIFT(2193), - [5147] = {.count = 1, .reusable = true}, SHIFT(1211), - [5149] = {.count = 1, .reusable = true}, SHIFT(2193), - [5151] = {.count = 1, .reusable = true}, SHIFT(2192), - [5153] = {.count = 1, .reusable = true}, SHIFT(2194), - [5155] = {.count = 1, .reusable = false}, SHIFT(2198), - [5157] = {.count = 1, .reusable = true}, SHIFT(1212), - [5159] = {.count = 1, .reusable = true}, SHIFT(2198), - [5161] = {.count = 1, .reusable = true}, SHIFT(2197), - [5163] = {.count = 1, .reusable = false}, SHIFT(1213), - [5165] = {.count = 1, .reusable = false}, SHIFT(2199), - [5167] = {.count = 1, .reusable = true}, SHIFT(1214), - [5169] = {.count = 1, .reusable = true}, SHIFT(2199), - [5171] = {.count = 1, .reusable = true}, SHIFT(2200), - [5173] = {.count = 1, .reusable = true}, SHIFT(2201), - [5175] = {.count = 1, .reusable = false}, SHIFT(2205), - [5177] = {.count = 1, .reusable = true}, SHIFT(1215), - [5179] = {.count = 1, .reusable = true}, SHIFT(2205), - [5181] = {.count = 1, .reusable = true}, SHIFT(2204), - [5183] = {.count = 1, .reusable = true}, SHIFT(1216), - [5185] = {.count = 1, .reusable = false}, SHIFT(2206), - [5187] = {.count = 1, .reusable = true}, SHIFT(1217), - [5189] = {.count = 1, .reusable = true}, SHIFT(2206), - [5191] = {.count = 1, .reusable = true}, SHIFT(1218), - [5193] = {.count = 1, .reusable = false}, SHIFT(2207), - [5195] = {.count = 1, .reusable = true}, SHIFT(2207), - [5197] = {.count = 1, .reusable = true}, SHIFT(1219), - [5199] = {.count = 1, .reusable = false}, SHIFT(2208), - [5201] = {.count = 1, .reusable = true}, SHIFT(1220), - [5203] = {.count = 1, .reusable = true}, SHIFT(2208), - [5205] = {.count = 1, .reusable = true}, SHIFT(1221), - [5207] = {.count = 1, .reusable = true}, SHIFT(1222), - [5209] = {.count = 1, .reusable = true}, SHIFT(1223), - [5211] = {.count = 1, .reusable = true}, SHIFT(1290), - [5213] = {.count = 1, .reusable = true}, SHIFT(1291), - [5215] = {.count = 1, .reusable = true}, SHIFT(1228), - [5217] = {.count = 1, .reusable = false}, SHIFT(2217), - [5219] = {.count = 1, .reusable = false}, SHIFT(1229), - [5221] = {.count = 1, .reusable = true}, SHIFT(1235), - [5223] = {.count = 1, .reusable = false}, SHIFT(2221), - [5225] = {.count = 1, .reusable = true}, SHIFT(1236), - [5227] = {.count = 1, .reusable = true}, SHIFT(2221), - [5229] = {.count = 1, .reusable = true}, SHIFT(2220), - [5231] = {.count = 1, .reusable = false}, SHIFT(2226), - [5233] = {.count = 1, .reusable = true}, SHIFT(1237), - [5235] = {.count = 1, .reusable = true}, SHIFT(2226), - [5237] = {.count = 1, .reusable = true}, SHIFT(2225), - [5239] = {.count = 1, .reusable = true}, SHIFT(1238), - [5241] = {.count = 1, .reusable = false}, SHIFT(1239), - [5243] = {.count = 1, .reusable = false}, SHIFT(2227), - [5245] = {.count = 1, .reusable = true}, SHIFT(1240), - [5247] = {.count = 1, .reusable = false}, SHIFT(2229), - [5249] = {.count = 1, .reusable = true}, SHIFT(1242), - [5251] = {.count = 1, .reusable = true}, SHIFT(2229), - [5253] = {.count = 1, .reusable = true}, SHIFT(2228), - [5255] = {.count = 1, .reusable = true}, SHIFT(2230), - [5257] = {.count = 1, .reusable = false}, SHIFT(2233), - [5259] = {.count = 1, .reusable = true}, SHIFT(1243), - [5261] = {.count = 1, .reusable = true}, SHIFT(2233), - [5263] = {.count = 1, .reusable = true}, SHIFT(2232), - [5265] = {.count = 1, .reusable = true}, SHIFT(2234), - [5267] = {.count = 1, .reusable = false}, SHIFT(2238), - [5269] = {.count = 1, .reusable = true}, SHIFT(1244), - [5271] = {.count = 1, .reusable = true}, SHIFT(2238), - [5273] = {.count = 1, .reusable = true}, SHIFT(2237), - [5275] = {.count = 1, .reusable = false}, SHIFT(1245), - [5277] = {.count = 1, .reusable = false}, SHIFT(2239), - [5279] = {.count = 1, .reusable = true}, SHIFT(1246), - [5281] = {.count = 1, .reusable = true}, SHIFT(2239), - [5283] = {.count = 1, .reusable = true}, SHIFT(2240), - [5285] = {.count = 1, .reusable = true}, SHIFT(2241), - [5287] = {.count = 1, .reusable = false}, SHIFT(2245), - [5289] = {.count = 1, .reusable = true}, SHIFT(1247), - [5291] = {.count = 1, .reusable = true}, SHIFT(2245), - [5293] = {.count = 1, .reusable = true}, SHIFT(2244), - [5295] = {.count = 1, .reusable = true}, SHIFT(1248), - [5297] = {.count = 1, .reusable = false}, SHIFT(2246), - [5299] = {.count = 1, .reusable = true}, SHIFT(1249), - [5301] = {.count = 1, .reusable = true}, SHIFT(2246), - [5303] = {.count = 1, .reusable = true}, SHIFT(1250), - [5305] = {.count = 1, .reusable = false}, SHIFT(2247), - [5307] = {.count = 1, .reusable = true}, SHIFT(2247), - [5309] = {.count = 1, .reusable = true}, SHIFT(1251), - [5311] = {.count = 1, .reusable = false}, SHIFT(2248), - [5313] = {.count = 1, .reusable = true}, SHIFT(1252), - [5315] = {.count = 1, .reusable = true}, SHIFT(2248), - [5317] = {.count = 1, .reusable = true}, SHIFT(1253), - [5319] = {.count = 1, .reusable = true}, SHIFT(1254), - [5321] = {.count = 1, .reusable = true}, SHIFT(1255), - [5323] = {.count = 1, .reusable = true}, SHIFT(1321), - [5325] = {.count = 1, .reusable = true}, SHIFT(1322), - [5327] = {.count = 1, .reusable = true}, SHIFT(1260), - [5329] = {.count = 1, .reusable = false}, SHIFT(2257), - [5331] = {.count = 1, .reusable = false}, SHIFT(1261), - [5333] = {.count = 1, .reusable = true}, SHIFT(1267), - [5335] = {.count = 1, .reusable = false}, SHIFT(2261), - [5337] = {.count = 1, .reusable = true}, SHIFT(1268), - [5339] = {.count = 1, .reusable = true}, SHIFT(2261), - [5341] = {.count = 1, .reusable = true}, SHIFT(2260), - [5343] = {.count = 1, .reusable = false}, SHIFT(2266), - [5345] = {.count = 1, .reusable = true}, SHIFT(1269), - [5347] = {.count = 1, .reusable = true}, SHIFT(2266), - [5349] = {.count = 1, .reusable = true}, SHIFT(2265), - [5351] = {.count = 1, .reusable = true}, SHIFT(1270), - [5353] = {.count = 1, .reusable = false}, SHIFT(1271), - [5355] = {.count = 1, .reusable = false}, SHIFT(2267), - [5357] = {.count = 1, .reusable = true}, SHIFT(1272), - [5359] = {.count = 1, .reusable = false}, SHIFT(2269), - [5361] = {.count = 1, .reusable = true}, SHIFT(1274), - [5363] = {.count = 1, .reusable = true}, SHIFT(2269), - [5365] = {.count = 1, .reusable = true}, SHIFT(2268), - [5367] = {.count = 1, .reusable = true}, SHIFT(2270), - [5369] = {.count = 1, .reusable = false}, SHIFT(2273), - [5371] = {.count = 1, .reusable = true}, SHIFT(1275), - [5373] = {.count = 1, .reusable = true}, SHIFT(2273), - [5375] = {.count = 1, .reusable = true}, SHIFT(2272), - [5377] = {.count = 1, .reusable = true}, SHIFT(2274), - [5379] = {.count = 1, .reusable = false}, SHIFT(2278), - [5381] = {.count = 1, .reusable = true}, SHIFT(1276), - [5383] = {.count = 1, .reusable = true}, SHIFT(2278), - [5385] = {.count = 1, .reusable = true}, SHIFT(2277), - [5387] = {.count = 1, .reusable = false}, SHIFT(1277), - [5389] = {.count = 1, .reusable = false}, SHIFT(2279), - [5391] = {.count = 1, .reusable = true}, SHIFT(1278), - [5393] = {.count = 1, .reusable = true}, SHIFT(2279), - [5395] = {.count = 1, .reusable = true}, SHIFT(2280), - [5397] = {.count = 1, .reusable = true}, SHIFT(2281), - [5399] = {.count = 1, .reusable = false}, SHIFT(2285), - [5401] = {.count = 1, .reusable = true}, SHIFT(1279), - [5403] = {.count = 1, .reusable = true}, SHIFT(2285), - [5405] = {.count = 1, .reusable = true}, SHIFT(2284), - [5407] = {.count = 1, .reusable = true}, SHIFT(1280), - [5409] = {.count = 1, .reusable = false}, SHIFT(2286), - [5411] = {.count = 1, .reusable = true}, SHIFT(1281), - [5413] = {.count = 1, .reusable = true}, SHIFT(2286), - [5415] = {.count = 1, .reusable = true}, SHIFT(1282), - [5417] = {.count = 1, .reusable = false}, SHIFT(2287), - [5419] = {.count = 1, .reusable = true}, SHIFT(2287), - [5421] = {.count = 1, .reusable = true}, SHIFT(1283), - [5423] = {.count = 1, .reusable = false}, SHIFT(2288), - [5425] = {.count = 1, .reusable = true}, SHIFT(1284), - [5427] = {.count = 1, .reusable = true}, SHIFT(2288), - [5429] = {.count = 1, .reusable = true}, SHIFT(1285), - [5431] = {.count = 1, .reusable = true}, SHIFT(1286), - [5433] = {.count = 1, .reusable = true}, SHIFT(1287), - [5435] = {.count = 1, .reusable = true}, SHIFT(1343), - [5437] = {.count = 1, .reusable = true}, SHIFT(1344), - [5439] = {.count = 1, .reusable = true}, SHIFT(1292), - [5441] = {.count = 1, .reusable = false}, SHIFT(2297), - [5443] = {.count = 1, .reusable = false}, SHIFT(1293), - [5445] = {.count = 1, .reusable = true}, SHIFT(1299), - [5447] = {.count = 1, .reusable = false}, SHIFT(2301), - [5449] = {.count = 1, .reusable = true}, SHIFT(1300), - [5451] = {.count = 1, .reusable = true}, SHIFT(2301), - [5453] = {.count = 1, .reusable = true}, SHIFT(2300), - [5455] = {.count = 1, .reusable = false}, SHIFT(2306), - [5457] = {.count = 1, .reusable = true}, SHIFT(1301), - [5459] = {.count = 1, .reusable = true}, SHIFT(2306), - [5461] = {.count = 1, .reusable = true}, SHIFT(2305), - [5463] = {.count = 1, .reusable = true}, SHIFT(1302), - [5465] = {.count = 1, .reusable = false}, SHIFT(1303), - [5467] = {.count = 1, .reusable = false}, SHIFT(2307), - [5469] = {.count = 1, .reusable = true}, SHIFT(1304), - [5471] = {.count = 1, .reusable = false}, SHIFT(2309), - [5473] = {.count = 1, .reusable = true}, SHIFT(1306), - [5475] = {.count = 1, .reusable = true}, SHIFT(2309), - [5477] = {.count = 1, .reusable = true}, SHIFT(2308), - [5479] = {.count = 1, .reusable = true}, SHIFT(2310), - [5481] = {.count = 1, .reusable = false}, SHIFT(2313), - [5483] = {.count = 1, .reusable = true}, SHIFT(1307), - [5485] = {.count = 1, .reusable = true}, SHIFT(2313), - [5487] = {.count = 1, .reusable = true}, SHIFT(2312), - [5489] = {.count = 1, .reusable = true}, SHIFT(2314), - [5491] = {.count = 1, .reusable = false}, SHIFT(2318), - [5493] = {.count = 1, .reusable = true}, SHIFT(1308), - [5495] = {.count = 1, .reusable = true}, SHIFT(2318), - [5497] = {.count = 1, .reusable = true}, SHIFT(2317), - [5499] = {.count = 1, .reusable = false}, SHIFT(1309), - [5501] = {.count = 1, .reusable = false}, SHIFT(2319), - [5503] = {.count = 1, .reusable = true}, SHIFT(1310), - [5505] = {.count = 1, .reusable = true}, SHIFT(2319), - [5507] = {.count = 1, .reusable = true}, SHIFT(2320), - [5509] = {.count = 1, .reusable = true}, SHIFT(2321), - [5511] = {.count = 1, .reusable = false}, SHIFT(2325), - [5513] = {.count = 1, .reusable = true}, SHIFT(1311), - [5515] = {.count = 1, .reusable = true}, SHIFT(2325), - [5517] = {.count = 1, .reusable = true}, SHIFT(2324), - [5519] = {.count = 1, .reusable = true}, SHIFT(1312), - [5521] = {.count = 1, .reusable = false}, SHIFT(2326), - [5523] = {.count = 1, .reusable = true}, SHIFT(1313), - [5525] = {.count = 1, .reusable = true}, SHIFT(2326), - [5527] = {.count = 1, .reusable = true}, SHIFT(1314), - [5529] = {.count = 1, .reusable = false}, SHIFT(2327), - [5531] = {.count = 1, .reusable = true}, SHIFT(2327), - [5533] = {.count = 1, .reusable = true}, SHIFT(1315), - [5535] = {.count = 1, .reusable = false}, SHIFT(2328), - [5537] = {.count = 1, .reusable = true}, SHIFT(1316), - [5539] = {.count = 1, .reusable = true}, SHIFT(2328), - [5541] = {.count = 1, .reusable = true}, SHIFT(1317), - [5543] = {.count = 1, .reusable = true}, SHIFT(1318), - [5545] = {.count = 1, .reusable = true}, SHIFT(1319), - [5547] = {.count = 1, .reusable = false}, SHIFT(2335), - [5549] = {.count = 1, .reusable = true}, SHIFT(1325), - [5551] = {.count = 1, .reusable = true}, SHIFT(2335), - [5553] = {.count = 1, .reusable = true}, SHIFT(2334), - [5555] = {.count = 1, .reusable = false}, SHIFT(2340), - [5557] = {.count = 1, .reusable = true}, SHIFT(1326), - [5559] = {.count = 1, .reusable = true}, SHIFT(2340), - [5561] = {.count = 1, .reusable = true}, SHIFT(2339), - [5563] = {.count = 1, .reusable = true}, SHIFT(1327), - [5565] = {.count = 1, .reusable = true}, SHIFT(1328), - [5567] = {.count = 1, .reusable = false}, SHIFT(2342), - [5569] = {.count = 1, .reusable = true}, SHIFT(1330), - [5571] = {.count = 1, .reusable = true}, SHIFT(2342), - [5573] = {.count = 1, .reusable = true}, SHIFT(2341), - [5575] = {.count = 1, .reusable = true}, SHIFT(2343), - [5577] = {.count = 1, .reusable = false}, SHIFT(2346), - [5579] = {.count = 1, .reusable = true}, SHIFT(1331), - [5581] = {.count = 1, .reusable = true}, SHIFT(2346), - [5583] = {.count = 1, .reusable = true}, SHIFT(2345), - [5585] = {.count = 1, .reusable = true}, SHIFT(2347), - [5587] = {.count = 1, .reusable = false}, SHIFT(2351), - [5589] = {.count = 1, .reusable = true}, SHIFT(1332), - [5591] = {.count = 1, .reusable = true}, SHIFT(2351), - [5593] = {.count = 1, .reusable = true}, SHIFT(2350), - [5595] = {.count = 1, .reusable = false}, SHIFT(2352), - [5597] = {.count = 1, .reusable = true}, SHIFT(1333), - [5599] = {.count = 1, .reusable = true}, SHIFT(2352), - [5601] = {.count = 1, .reusable = true}, SHIFT(2353), - [5603] = {.count = 1, .reusable = true}, SHIFT(2354), - [5605] = {.count = 1, .reusable = false}, SHIFT(2358), - [5607] = {.count = 1, .reusable = true}, SHIFT(1334), - [5609] = {.count = 1, .reusable = true}, SHIFT(2358), - [5611] = {.count = 1, .reusable = true}, SHIFT(2357), - [5613] = {.count = 1, .reusable = true}, SHIFT(1335), - [5615] = {.count = 1, .reusable = false}, SHIFT(2359), - [5617] = {.count = 1, .reusable = true}, SHIFT(1336), - [5619] = {.count = 1, .reusable = true}, SHIFT(2359), - [5621] = {.count = 1, .reusable = true}, SHIFT(1337), - [5623] = {.count = 1, .reusable = false}, SHIFT(2360), - [5625] = {.count = 1, .reusable = true}, SHIFT(2360), - [5627] = {.count = 1, .reusable = true}, SHIFT(1338), - [5629] = {.count = 1, .reusable = false}, SHIFT(2361), - [5631] = {.count = 1, .reusable = true}, SHIFT(1339), - [5633] = {.count = 1, .reusable = true}, SHIFT(2361), - [5635] = {.count = 1, .reusable = true}, SHIFT(1340), - [5637] = {.count = 1, .reusable = true}, SHIFT(1341), - [5639] = {.count = 1, .reusable = true}, SHIFT(1342), - [5641] = {.count = 1, .reusable = false}, SHIFT(2368), - [5643] = {.count = 1, .reusable = true}, SHIFT(1345), - [5645] = {.count = 1, .reusable = true}, SHIFT(2368), - [5647] = {.count = 1, .reusable = true}, SHIFT(2367), - [5649] = {.count = 1, .reusable = false}, SHIFT(2373), - [5651] = {.count = 1, .reusable = true}, SHIFT(1346), - [5653] = {.count = 1, .reusable = true}, SHIFT(2373), - [5655] = {.count = 1, .reusable = true}, SHIFT(2372), - [5657] = {.count = 1, .reusable = true}, SHIFT(1347), - [5659] = {.count = 1, .reusable = true}, SHIFT(1348), - [5661] = {.count = 1, .reusable = false}, SHIFT(2375), - [5663] = {.count = 1, .reusable = true}, SHIFT(1350), - [5665] = {.count = 1, .reusable = true}, SHIFT(2375), - [5667] = {.count = 1, .reusable = true}, SHIFT(2374), - [5669] = {.count = 1, .reusable = true}, SHIFT(2376), - [5671] = {.count = 1, .reusable = false}, SHIFT(2379), - [5673] = {.count = 1, .reusable = true}, SHIFT(1351), - [5675] = {.count = 1, .reusable = true}, SHIFT(2379), - [5677] = {.count = 1, .reusable = true}, SHIFT(2378), - [5679] = {.count = 1, .reusable = true}, SHIFT(2380), - [5681] = {.count = 1, .reusable = false}, SHIFT(2384), - [5683] = {.count = 1, .reusable = true}, SHIFT(1352), - [5685] = {.count = 1, .reusable = true}, SHIFT(2384), - [5687] = {.count = 1, .reusable = true}, SHIFT(2383), - [5689] = {.count = 1, .reusable = false}, SHIFT(2385), - [5691] = {.count = 1, .reusable = true}, SHIFT(1353), - [5693] = {.count = 1, .reusable = true}, SHIFT(2385), - [5695] = {.count = 1, .reusable = true}, SHIFT(2386), - [5697] = {.count = 1, .reusable = true}, SHIFT(2387), - [5699] = {.count = 1, .reusable = false}, SHIFT(2391), - [5701] = {.count = 1, .reusable = true}, SHIFT(1354), - [5703] = {.count = 1, .reusable = true}, SHIFT(2391), - [5705] = {.count = 1, .reusable = true}, SHIFT(2390), - [5707] = {.count = 1, .reusable = true}, SHIFT(1355), - [5709] = {.count = 1, .reusable = false}, SHIFT(2392), - [5711] = {.count = 1, .reusable = true}, SHIFT(1356), - [5713] = {.count = 1, .reusable = true}, SHIFT(2392), - [5715] = {.count = 1, .reusable = true}, SHIFT(1357), - [5717] = {.count = 1, .reusable = false}, SHIFT(2393), - [5719] = {.count = 1, .reusable = true}, SHIFT(2393), - [5721] = {.count = 1, .reusable = true}, SHIFT(1358), - [5723] = {.count = 1, .reusable = false}, SHIFT(2394), - [5725] = {.count = 1, .reusable = true}, SHIFT(1359), - [5727] = {.count = 1, .reusable = true}, SHIFT(2394), - [5729] = {.count = 1, .reusable = true}, SHIFT(1360), - [5731] = {.count = 1, .reusable = true}, SHIFT(1361), - [5733] = {.count = 1, .reusable = true}, SHIFT(1362), - [5735] = {.count = 1, .reusable = true}, SHIFT(1370), - [5737] = {.count = 1, .reusable = false}, SHIFT(1375), - [5739] = {.count = 1, .reusable = true}, SHIFT(2411), - [5741] = {.count = 1, .reusable = true}, SHIFT(2412), - [5743] = {.count = 1, .reusable = true}, SHIFT(1376), - [5745] = {.count = 1, .reusable = true}, SHIFT(1375), - [5747] = {.count = 1, .reusable = true}, SHIFT(1377), - [5749] = {.count = 1, .reusable = true}, SHIFT(1378), - [5751] = {.count = 1, .reusable = false}, SHIFT(1378), - [5753] = {.count = 1, .reusable = true}, SHIFT(1389), - [5755] = {.count = 1, .reusable = true}, SHIFT(1390), - [5757] = {.count = 1, .reusable = false}, SHIFT(1394), - [5759] = {.count = 1, .reusable = true}, SHIFT(2418), - [5761] = {.count = 1, .reusable = true}, SHIFT(1395), - [5763] = {.count = 1, .reusable = true}, SHIFT(1394), - [5765] = {.count = 1, .reusable = true}, SHIFT(1396), - [5767] = {.count = 1, .reusable = true}, SHIFT(1400), - [5769] = {.count = 1, .reusable = true}, SHIFT(1404), - [5771] = {.count = 1, .reusable = false}, SHIFT(1404), - [5773] = {.count = 1, .reusable = false}, SHIFT(2617), - [5775] = {.count = 1, .reusable = true}, SHIFT(1407), - [5777] = {.count = 1, .reusable = true}, SHIFT(1412), - [5779] = {.count = 1, .reusable = false}, SHIFT(1412), - [5781] = {.count = 1, .reusable = true}, SHIFT(1413), - [5783] = {.count = 1, .reusable = false}, SHIFT(1413), - [5785] = {.count = 1, .reusable = true}, SHIFT(1417), - [5787] = {.count = 1, .reusable = true}, SHIFT(1433), - [5789] = {.count = 1, .reusable = false}, SHIFT(1433), - [5791] = {.count = 1, .reusable = true}, SHIFT(1435), - [5793] = {.count = 1, .reusable = false}, SHIFT(1435), - [5795] = {.count = 1, .reusable = true}, SHIFT(1445), - [5797] = {.count = 1, .reusable = false}, SHIFT(1445), - [5799] = {.count = 1, .reusable = true}, SHIFT(1446), - [5801] = {.count = 1, .reusable = true}, SHIFT(1453), - [5803] = {.count = 1, .reusable = true}, SHIFT(1457), - [5805] = {.count = 1, .reusable = true}, SHIFT(1459), - [5807] = {.count = 1, .reusable = true}, SHIFT(1469), - [5809] = {.count = 1, .reusable = true}, SHIFT(1470), - [5811] = {.count = 1, .reusable = true}, SHIFT(2624), - [5813] = {.count = 1, .reusable = true}, SHIFT(2434), - [5815] = {.count = 1, .reusable = true}, SHIFT(2626), - [5817] = {.count = 1, .reusable = true}, SHIFT(2627), - [5819] = {.count = 1, .reusable = false}, SHIFT(1476), - [5821] = {.count = 1, .reusable = true}, SHIFT(2446), - [5823] = {.count = 1, .reusable = true}, SHIFT(2447), - [5825] = {.count = 1, .reusable = true}, SHIFT(1477), - [5827] = {.count = 1, .reusable = true}, SHIFT(1476), - [5829] = {.count = 1, .reusable = true}, SHIFT(1478), - [5831] = {.count = 1, .reusable = true}, SHIFT(1479), - [5833] = {.count = 1, .reusable = false}, SHIFT(1479), - [5835] = {.count = 1, .reusable = false}, SHIFT(1488), - [5837] = {.count = 1, .reusable = true}, SHIFT(2448), - [5839] = {.count = 1, .reusable = true}, SHIFT(1489), - [5841] = {.count = 1, .reusable = true}, SHIFT(1488), - [5843] = {.count = 1, .reusable = true}, SHIFT(1490), - [5845] = {.count = 1, .reusable = true}, SHIFT(1498), - [5847] = {.count = 1, .reusable = false}, SHIFT(1521), - [5849] = {.count = 1, .reusable = true}, SHIFT(1521), - [5851] = {.count = 1, .reusable = true}, SHIFT(2456), - [5853] = {.count = 1, .reusable = true}, SHIFT(2457), - [5855] = {.count = 1, .reusable = true}, SHIFT(1522), - [5857] = {.count = 1, .reusable = true}, SHIFT(1523), - [5859] = {.count = 1, .reusable = true}, SHIFT(2437), - [5861] = {.count = 1, .reusable = false}, SHIFT(2437), - [5863] = {.count = 1, .reusable = false}, SHIFT(1531), - [5865] = {.count = 1, .reusable = true}, SHIFT(1531), - [5867] = {.count = 1, .reusable = true}, SHIFT(2458), - [5869] = {.count = 1, .reusable = true}, SHIFT(1532), - [5871] = {.count = 1, .reusable = true}, SHIFT(1533), - [5873] = {.count = 1, .reusable = true}, SHIFT(1541), - [5875] = {.count = 1, .reusable = false}, SHIFT(1564), - [5877] = {.count = 1, .reusable = true}, SHIFT(1564), - [5879] = {.count = 1, .reusable = true}, SHIFT(2465), - [5881] = {.count = 1, .reusable = true}, SHIFT(2466), - [5883] = {.count = 1, .reusable = true}, SHIFT(1565), - [5885] = {.count = 1, .reusable = true}, SHIFT(1566), - [5887] = {.count = 1, .reusable = false}, SHIFT(1574), - [5889] = {.count = 1, .reusable = true}, SHIFT(1574), - [5891] = {.count = 1, .reusable = true}, SHIFT(2467), - [5893] = {.count = 1, .reusable = true}, SHIFT(1575), - [5895] = {.count = 1, .reusable = true}, SHIFT(1576), - [5897] = {.count = 1, .reusable = true}, SHIFT(1584), - [5899] = {.count = 1, .reusable = false}, SHIFT(1607), - [5901] = {.count = 1, .reusable = true}, SHIFT(1607), - [5903] = {.count = 1, .reusable = true}, SHIFT(2474), - [5905] = {.count = 1, .reusable = true}, SHIFT(2475), - [5907] = {.count = 1, .reusable = true}, SHIFT(1608), - [5909] = {.count = 1, .reusable = true}, SHIFT(1609), - [5911] = {.count = 1, .reusable = false}, SHIFT(1617), - [5913] = {.count = 1, .reusable = true}, SHIFT(1617), - [5915] = {.count = 1, .reusable = true}, SHIFT(2476), - [5917] = {.count = 1, .reusable = true}, SHIFT(1618), - [5919] = {.count = 1, .reusable = true}, SHIFT(1619), - [5921] = {.count = 1, .reusable = true}, SHIFT(1627), - [5923] = {.count = 1, .reusable = false}, SHIFT(1650), - [5925] = {.count = 1, .reusable = true}, SHIFT(2483), - [5927] = {.count = 1, .reusable = true}, SHIFT(2484), - [5929] = {.count = 1, .reusable = true}, SHIFT(1651), - [5931] = {.count = 1, .reusable = true}, SHIFT(1650), - [5933] = {.count = 1, .reusable = true}, SHIFT(1652), - [5935] = {.count = 1, .reusable = false}, SHIFT(1660), - [5937] = {.count = 1, .reusable = true}, SHIFT(2485), - [5939] = {.count = 1, .reusable = true}, SHIFT(1661), - [5941] = {.count = 1, .reusable = true}, SHIFT(1660), - [5943] = {.count = 1, .reusable = true}, SHIFT(1662), - [5945] = {.count = 1, .reusable = true}, SHIFT(1670), - [5947] = {.count = 1, .reusable = false}, SHIFT(1693), - [5949] = {.count = 1, .reusable = true}, SHIFT(1693), - [5951] = {.count = 1, .reusable = true}, SHIFT(2490), - [5953] = {.count = 1, .reusable = true}, SHIFT(2491), - [5955] = {.count = 1, .reusable = true}, SHIFT(1694), - [5957] = {.count = 1, .reusable = false}, SHIFT(1702), - [5959] = {.count = 1, .reusable = true}, SHIFT(1702), - [5961] = {.count = 1, .reusable = true}, SHIFT(2492), - [5963] = {.count = 1, .reusable = true}, SHIFT(1703), - [5965] = {.count = 1, .reusable = true}, SHIFT(1704), - [5967] = {.count = 1, .reusable = true}, SHIFT(1711), - [5969] = {.count = 1, .reusable = false}, SHIFT(1733), - [5971] = {.count = 1, .reusable = true}, SHIFT(2497), - [5973] = {.count = 1, .reusable = true}, SHIFT(2498), - [5975] = {.count = 1, .reusable = true}, SHIFT(1734), - [5977] = {.count = 1, .reusable = true}, SHIFT(1733), - [5979] = {.count = 1, .reusable = false}, SHIFT(1742), - [5981] = {.count = 1, .reusable = true}, SHIFT(2499), - [5983] = {.count = 1, .reusable = true}, SHIFT(1743), - [5985] = {.count = 1, .reusable = true}, SHIFT(1742), - [5987] = {.count = 1, .reusable = true}, SHIFT(1744), - [5989] = {.count = 1, .reusable = true}, SHIFT(1751), - [5991] = {.count = 1, .reusable = false}, SHIFT(1773), - [5993] = {.count = 1, .reusable = true}, SHIFT(2504), - [5995] = {.count = 1, .reusable = true}, SHIFT(2505), - [5997] = {.count = 1, .reusable = true}, SHIFT(1774), - [5999] = {.count = 1, .reusable = true}, SHIFT(1773), - [6001] = {.count = 1, .reusable = false}, SHIFT(1782), - [6003] = {.count = 1, .reusable = true}, SHIFT(2506), - [6005] = {.count = 1, .reusable = true}, SHIFT(1783), - [6007] = {.count = 1, .reusable = true}, SHIFT(1782), - [6009] = {.count = 1, .reusable = true}, SHIFT(1784), - [6011] = {.count = 1, .reusable = true}, SHIFT(1791), - [6013] = {.count = 1, .reusable = false}, SHIFT(1813), - [6015] = {.count = 1, .reusable = true}, SHIFT(2511), - [6017] = {.count = 1, .reusable = true}, SHIFT(2512), - [6019] = {.count = 1, .reusable = true}, SHIFT(1814), - [6021] = {.count = 1, .reusable = true}, SHIFT(1813), - [6023] = {.count = 1, .reusable = false}, SHIFT(1822), - [6025] = {.count = 1, .reusable = true}, SHIFT(2513), - [6027] = {.count = 1, .reusable = true}, SHIFT(1823), - [6029] = {.count = 1, .reusable = true}, SHIFT(1822), - [6031] = {.count = 1, .reusable = true}, SHIFT(1824), - [6033] = {.count = 1, .reusable = true}, SHIFT(1831), - [6035] = {.count = 1, .reusable = false}, SHIFT(1853), - [6037] = {.count = 1, .reusable = true}, SHIFT(1853), - [6039] = {.count = 1, .reusable = true}, SHIFT(2518), - [6041] = {.count = 1, .reusable = true}, SHIFT(2519), - [6043] = {.count = 1, .reusable = true}, SHIFT(1854), - [6045] = {.count = 1, .reusable = false}, SHIFT(1862), - [6047] = {.count = 1, .reusable = true}, SHIFT(1862), - [6049] = {.count = 1, .reusable = true}, SHIFT(2520), - [6051] = {.count = 1, .reusable = true}, SHIFT(1863), - [6053] = {.count = 1, .reusable = true}, SHIFT(1864), - [6055] = {.count = 1, .reusable = true}, SHIFT(1871), - [6057] = {.count = 1, .reusable = false}, SHIFT(1893), - [6059] = {.count = 1, .reusable = true}, SHIFT(1893), - [6061] = {.count = 1, .reusable = true}, SHIFT(2525), - [6063] = {.count = 1, .reusable = true}, SHIFT(2526), - [6065] = {.count = 1, .reusable = true}, SHIFT(1894), - [6067] = {.count = 1, .reusable = false}, SHIFT(1902), - [6069] = {.count = 1, .reusable = true}, SHIFT(1902), - [6071] = {.count = 1, .reusable = true}, SHIFT(2527), - [6073] = {.count = 1, .reusable = true}, SHIFT(1903), - [6075] = {.count = 1, .reusable = true}, SHIFT(1904), - [6077] = {.count = 1, .reusable = true}, SHIFT(1911), - [6079] = {.count = 1, .reusable = false}, SHIFT(1933), - [6081] = {.count = 1, .reusable = true}, SHIFT(1933), - [6083] = {.count = 1, .reusable = true}, SHIFT(2532), - [6085] = {.count = 1, .reusable = true}, SHIFT(2533), - [6087] = {.count = 1, .reusable = true}, SHIFT(1934), - [6089] = {.count = 1, .reusable = false}, SHIFT(1942), - [6091] = {.count = 1, .reusable = true}, SHIFT(1942), - [6093] = {.count = 1, .reusable = true}, SHIFT(2534), - [6095] = {.count = 1, .reusable = true}, SHIFT(1943), - [6097] = {.count = 1, .reusable = true}, SHIFT(1944), - [6099] = {.count = 1, .reusable = true}, SHIFT(1951), - [6101] = {.count = 1, .reusable = false}, SHIFT(1973), - [6103] = {.count = 1, .reusable = true}, SHIFT(1973), - [6105] = {.count = 1, .reusable = true}, SHIFT(2539), - [6107] = {.count = 1, .reusable = true}, SHIFT(2540), - [6109] = {.count = 1, .reusable = true}, SHIFT(1974), - [6111] = {.count = 1, .reusable = false}, SHIFT(1982), - [6113] = {.count = 1, .reusable = true}, SHIFT(1982), - [6115] = {.count = 1, .reusable = true}, SHIFT(2541), - [6117] = {.count = 1, .reusable = true}, SHIFT(1983), - [6119] = {.count = 1, .reusable = true}, SHIFT(1984), - [6121] = {.count = 1, .reusable = true}, SHIFT(1991), - [6123] = {.count = 1, .reusable = false}, SHIFT(2013), - [6125] = {.count = 1, .reusable = true}, SHIFT(2546), - [6127] = {.count = 1, .reusable = true}, SHIFT(2547), - [6129] = {.count = 1, .reusable = true}, SHIFT(2014), - [6131] = {.count = 1, .reusable = true}, SHIFT(2013), - [6133] = {.count = 1, .reusable = false}, SHIFT(2022), - [6135] = {.count = 1, .reusable = true}, SHIFT(2548), - [6137] = {.count = 1, .reusable = true}, SHIFT(2023), - [6139] = {.count = 1, .reusable = true}, SHIFT(2022), - [6141] = {.count = 1, .reusable = true}, SHIFT(2024), - [6143] = {.count = 1, .reusable = true}, SHIFT(2031), - [6145] = {.count = 1, .reusable = false}, SHIFT(2053), - [6147] = {.count = 1, .reusable = true}, SHIFT(2553), - [6149] = {.count = 1, .reusable = true}, SHIFT(2554), - [6151] = {.count = 1, .reusable = true}, SHIFT(2054), - [6153] = {.count = 1, .reusable = true}, SHIFT(2053), - [6155] = {.count = 1, .reusable = false}, SHIFT(2062), - [6157] = {.count = 1, .reusable = true}, SHIFT(2555), - [6159] = {.count = 1, .reusable = true}, SHIFT(2063), - [6161] = {.count = 1, .reusable = true}, SHIFT(2062), - [6163] = {.count = 1, .reusable = true}, SHIFT(2064), - [6165] = {.count = 1, .reusable = true}, SHIFT(2071), - [6167] = {.count = 1, .reusable = false}, SHIFT(2093), - [6169] = {.count = 1, .reusable = true}, SHIFT(2093), - [6171] = {.count = 1, .reusable = true}, SHIFT(2560), - [6173] = {.count = 1, .reusable = true}, SHIFT(2561), - [6175] = {.count = 1, .reusable = true}, SHIFT(2094), - [6177] = {.count = 1, .reusable = false}, SHIFT(2102), - [6179] = {.count = 1, .reusable = true}, SHIFT(2102), - [6181] = {.count = 1, .reusable = true}, SHIFT(2562), - [6183] = {.count = 1, .reusable = true}, SHIFT(2103), - [6185] = {.count = 1, .reusable = true}, SHIFT(2104), - [6187] = {.count = 1, .reusable = true}, SHIFT(2111), - [6189] = {.count = 1, .reusable = false}, SHIFT(2133), - [6191] = {.count = 1, .reusable = true}, SHIFT(2133), - [6193] = {.count = 1, .reusable = true}, SHIFT(2567), - [6195] = {.count = 1, .reusable = true}, SHIFT(2568), - [6197] = {.count = 1, .reusable = true}, SHIFT(2134), - [6199] = {.count = 1, .reusable = false}, SHIFT(2142), - [6201] = {.count = 1, .reusable = true}, SHIFT(2142), - [6203] = {.count = 1, .reusable = true}, SHIFT(2569), - [6205] = {.count = 1, .reusable = true}, SHIFT(2143), - [6207] = {.count = 1, .reusable = true}, SHIFT(2144), - [6209] = {.count = 1, .reusable = true}, SHIFT(2151), - [6211] = {.count = 1, .reusable = false}, SHIFT(2173), - [6213] = {.count = 1, .reusable = true}, SHIFT(2173), - [6215] = {.count = 1, .reusable = true}, SHIFT(2574), - [6217] = {.count = 1, .reusable = true}, SHIFT(2575), - [6219] = {.count = 1, .reusable = true}, SHIFT(2174), - [6221] = {.count = 1, .reusable = false}, SHIFT(2182), - [6223] = {.count = 1, .reusable = true}, SHIFT(2182), - [6225] = {.count = 1, .reusable = true}, SHIFT(2576), - [6227] = {.count = 1, .reusable = true}, SHIFT(2183), - [6229] = {.count = 1, .reusable = true}, SHIFT(2184), - [6231] = {.count = 1, .reusable = true}, SHIFT(2191), - [6233] = {.count = 1, .reusable = false}, SHIFT(2213), - [6235] = {.count = 1, .reusable = true}, SHIFT(2213), - [6237] = {.count = 1, .reusable = true}, SHIFT(2581), - [6239] = {.count = 1, .reusable = true}, SHIFT(2582), - [6241] = {.count = 1, .reusable = true}, SHIFT(2214), - [6243] = {.count = 1, .reusable = false}, SHIFT(2222), - [6245] = {.count = 1, .reusable = true}, SHIFT(2222), - [6247] = {.count = 1, .reusable = true}, SHIFT(2583), - [6249] = {.count = 1, .reusable = true}, SHIFT(2223), - [6251] = {.count = 1, .reusable = true}, SHIFT(2224), - [6253] = {.count = 1, .reusable = true}, SHIFT(2231), - [6255] = {.count = 1, .reusable = false}, SHIFT(2253), - [6257] = {.count = 1, .reusable = true}, SHIFT(2253), - [6259] = {.count = 1, .reusable = true}, SHIFT(2588), - [6261] = {.count = 1, .reusable = true}, SHIFT(2589), - [6263] = {.count = 1, .reusable = true}, SHIFT(2254), - [6265] = {.count = 1, .reusable = false}, SHIFT(2262), - [6267] = {.count = 1, .reusable = true}, SHIFT(2262), - [6269] = {.count = 1, .reusable = true}, SHIFT(2590), - [6271] = {.count = 1, .reusable = true}, SHIFT(2263), - [6273] = {.count = 1, .reusable = true}, SHIFT(2264), - [6275] = {.count = 1, .reusable = true}, SHIFT(2271), - [6277] = {.count = 1, .reusable = false}, SHIFT(2293), - [6279] = {.count = 1, .reusable = true}, SHIFT(2293), - [6281] = {.count = 1, .reusable = true}, SHIFT(2595), - [6283] = {.count = 1, .reusable = true}, SHIFT(2596), - [6285] = {.count = 1, .reusable = true}, SHIFT(2294), - [6287] = {.count = 1, .reusable = false}, SHIFT(2302), - [6289] = {.count = 1, .reusable = true}, SHIFT(2302), - [6291] = {.count = 1, .reusable = true}, SHIFT(2597), - [6293] = {.count = 1, .reusable = true}, SHIFT(2303), - [6295] = {.count = 1, .reusable = true}, SHIFT(2304), - [6297] = {.count = 1, .reusable = true}, SHIFT(2311), - [6299] = {.count = 1, .reusable = false}, SHIFT(2329), - [6301] = {.count = 1, .reusable = true}, SHIFT(2329), - [6303] = {.count = 1, .reusable = true}, SHIFT(2601), - [6305] = {.count = 1, .reusable = true}, SHIFT(2602), - [6307] = {.count = 1, .reusable = true}, SHIFT(2330), - [6309] = {.count = 1, .reusable = false}, SHIFT(2336), - [6311] = {.count = 1, .reusable = true}, SHIFT(2336), - [6313] = {.count = 1, .reusable = true}, SHIFT(2603), - [6315] = {.count = 1, .reusable = true}, SHIFT(2337), - [6317] = {.count = 1, .reusable = true}, SHIFT(2338), - [6319] = {.count = 1, .reusable = true}, SHIFT(2344), - [6321] = {.count = 1, .reusable = false}, SHIFT(2362), - [6323] = {.count = 1, .reusable = true}, SHIFT(2362), - [6325] = {.count = 1, .reusable = true}, SHIFT(2607), - [6327] = {.count = 1, .reusable = true}, SHIFT(2608), - [6329] = {.count = 1, .reusable = true}, SHIFT(2363), - [6331] = {.count = 1, .reusable = false}, SHIFT(2369), - [6333] = {.count = 1, .reusable = true}, SHIFT(2369), - [6335] = {.count = 1, .reusable = true}, SHIFT(2609), - [6337] = {.count = 1, .reusable = true}, SHIFT(2370), - [6339] = {.count = 1, .reusable = true}, SHIFT(2371), - [6341] = {.count = 1, .reusable = true}, SHIFT(2377), - [6343] = {.count = 1, .reusable = true}, SHIFT(2414), - [6345] = {.count = 1, .reusable = true}, SHIFT(2629), - [6347] = {.count = 1, .reusable = true}, SHIFT(2615), - [6349] = {.count = 1, .reusable = false}, SHIFT(2615), - [6351] = {.count = 1, .reusable = false}, SHIFT(2416), - [6353] = {.count = 1, .reusable = false}, SHIFT(2417), - [6355] = {.count = 1, .reusable = true}, SHIFT(2616), - [6357] = {.count = 1, .reusable = false}, SHIFT(2616), - [6359] = {.count = 1, .reusable = true}, SHIFT(2419), - [6361] = {.count = 1, .reusable = true}, SHIFT(2420), - [6363] = {.count = 1, .reusable = false}, SHIFT(2422), - [6365] = {.count = 1, .reusable = false}, SHIFT(2426), - [6367] = {.count = 1, .reusable = false}, SHIFT(2430), - [6369] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2436), - [6372] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2452), - [6375] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2435), - [6378] = {.count = 1, .reusable = true}, SHIFT(2612), - [6380] = {.count = 1, .reusable = false}, SHIFT(2618), - [6382] = {.count = 1, .reusable = false}, SHIFT(2620), + [91] = {.count = 1, .reusable = true}, SHIFT(2400), + [93] = {.count = 1, .reusable = true}, SHIFT(382), + [95] = {.count = 1, .reusable = false}, SHIFT(385), + [97] = {.count = 1, .reusable = true}, SHIFT(2401), + [99] = {.count = 1, .reusable = true}, SHIFT(1366), + [101] = {.count = 1, .reusable = true}, SHIFT(2403), + [103] = {.count = 1, .reusable = false}, SHIFT(2611), + [105] = {.count = 1, .reusable = false}, SHIFT(2404), + [107] = {.count = 1, .reusable = false}, SHIFT(2405), + [109] = {.count = 1, .reusable = true}, SHIFT(2406), + [111] = {.count = 1, .reusable = true}, SHIFT(38), + [113] = {.count = 1, .reusable = false}, SHIFT(1472), + [115] = {.count = 1, .reusable = true}, SHIFT(2438), + [117] = {.count = 1, .reusable = true}, SHIFT(2439), + [119] = {.count = 1, .reusable = false}, SHIFT(38), + [121] = {.count = 1, .reusable = true}, SHIFT(2440), + [123] = {.count = 1, .reusable = true}, SHIFT(1473), + [125] = {.count = 1, .reusable = true}, SHIFT(2443), + [127] = {.count = 1, .reusable = true}, SHIFT(537), + [129] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), + [131] = {.count = 1, .reusable = false}, SHIFT(1517), + [133] = {.count = 1, .reusable = false}, SHIFT(2449), + [135] = {.count = 1, .reusable = false}, SHIFT(2450), + [137] = {.count = 1, .reusable = false}, SHIFT(41), + [139] = {.count = 1, .reusable = false}, SHIFT(2451), + [141] = {.count = 1, .reusable = false}, SHIFT(633), + [143] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), + [145] = {.count = 1, .reusable = true}, SHIFT(2441), + [147] = {.count = 1, .reusable = false}, SHIFT(1518), + [149] = {.count = 1, .reusable = false}, SHIFT(2454), + [151] = {.count = 1, .reusable = false}, SHIFT(43), + [153] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), + [155] = {.count = 1, .reusable = false}, SHIFT(1560), + [157] = {.count = 1, .reusable = false}, SHIFT(2459), + [159] = {.count = 1, .reusable = false}, SHIFT(2460), + [161] = {.count = 1, .reusable = false}, SHIFT(44), + [163] = {.count = 1, .reusable = false}, SHIFT(2461), + [165] = {.count = 1, .reusable = false}, SHIFT(694), + [167] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), + [169] = {.count = 1, .reusable = false}, SHIFT(1561), + [171] = {.count = 1, .reusable = false}, SHIFT(2463), + [173] = {.count = 1, .reusable = false}, SHIFT(46), + [175] = {.count = 1, .reusable = false}, SHIFT(47), + [177] = {.count = 1, .reusable = true}, SHIFT(48), + [179] = {.count = 1, .reusable = true}, SHIFT(47), + [181] = {.count = 1, .reusable = true}, SHIFT(49), + [183] = {.count = 1, .reusable = false}, SHIFT(533), + [185] = {.count = 1, .reusable = false}, SHIFT(534), + [187] = {.count = 1, .reusable = false}, SHIFT(1461), + [189] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), + [191] = {.count = 1, .reusable = true}, SHIFT(52), + [193] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), + [195] = {.count = 1, .reusable = false}, SHIFT(54), + [197] = {.count = 1, .reusable = true}, SHIFT(54), + [199] = {.count = 1, .reusable = true}, SHIFT(55), + [201] = {.count = 1, .reusable = true}, SHIFT(56), + [203] = {.count = 1, .reusable = true}, SHIFT(57), + [205] = {.count = 1, .reusable = true}, SHIFT(58), + [207] = {.count = 1, .reusable = false}, SHIFT(59), + [209] = {.count = 1, .reusable = true}, SHIFT(60), + [211] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 1), + [213] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 1), + [215] = {.count = 1, .reusable = true}, SHIFT(2470), + [217] = {.count = 1, .reusable = true}, SHIFT(1604), + [219] = {.count = 1, .reusable = true}, SHIFT(67), + [221] = {.count = 1, .reusable = false}, SHIFT(67), + [223] = {.count = 1, .reusable = true}, SHIFT(2472), + [225] = {.count = 1, .reusable = false}, SHIFT(1603), + [227] = {.count = 1, .reusable = true}, SHIFT(2469), + [229] = {.count = 1, .reusable = true}, SHIFT(2468), + [231] = {.count = 1, .reusable = true}, SHIFT(734), + [233] = {.count = 1, .reusable = true}, SHIFT(70), + [235] = {.count = 1, .reusable = true}, SHIFT(71), + [237] = {.count = 1, .reusable = false}, SHIFT(72), + [239] = {.count = 1, .reusable = false}, SHIFT(1646), + [241] = {.count = 1, .reusable = true}, SHIFT(72), + [243] = {.count = 1, .reusable = true}, SHIFT(2477), + [245] = {.count = 1, .reusable = true}, SHIFT(2478), + [247] = {.count = 1, .reusable = false}, SHIFT(71), + [249] = {.count = 1, .reusable = true}, SHIFT(2479), + [251] = {.count = 1, .reusable = true}, SHIFT(1647), + [253] = {.count = 1, .reusable = true}, SHIFT(2481), + [255] = {.count = 1, .reusable = true}, SHIFT(771), + [257] = {.count = 1, .reusable = true}, SHIFT(2452), + [259] = {.count = 1, .reusable = true}, SHIFT(76), + [261] = {.count = 1, .reusable = true}, SHIFT(77), + [263] = {.count = 1, .reusable = true}, SHIFT(78), + [265] = {.count = 1, .reusable = false}, SHIFT(78), + [267] = {.count = 1, .reusable = false}, SHIFT(79), + [269] = {.count = 1, .reusable = false}, SHIFT(2488), + [271] = {.count = 1, .reusable = false}, SHIFT(80), + [273] = {.count = 1, .reusable = false}, SHIFT(2486), + [275] = {.count = 1, .reusable = false}, SHIFT(2489), + [277] = {.count = 1, .reusable = false}, SHIFT(81), + [279] = {.count = 1, .reusable = true}, SHIFT(86), + [281] = {.count = 1, .reusable = true}, SHIFT(85), + [283] = {.count = 1, .reusable = true}, SHIFT(2412), + [285] = {.count = 1, .reusable = true}, SHIFT(407), + [287] = {.count = 1, .reusable = false}, SHIFT(408), + [289] = {.count = 1, .reusable = false}, SHIFT(1689), + [291] = {.count = 1, .reusable = true}, SHIFT(408), + [293] = {.count = 1, .reusable = true}, SHIFT(2493), + [295] = {.count = 1, .reusable = true}, SHIFT(2487), + [297] = {.count = 1, .reusable = false}, SHIFT(407), + [299] = {.count = 1, .reusable = true}, SHIFT(2495), + [301] = {.count = 1, .reusable = true}, SHIFT(1690), + [303] = {.count = 1, .reusable = true}, SHIFT(2496), + [305] = {.count = 1, .reusable = true}, SHIFT(808), + [307] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .production_id = 1), + [309] = {.count = 1, .reusable = false}, SHIFT(90), + [311] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .production_id = 1), + [313] = {.count = 1, .reusable = false}, SHIFT(92), + [315] = {.count = 1, .reusable = false}, SHIFT(1363), + [317] = {.count = 1, .reusable = true}, SHIFT(94), + [319] = {.count = 1, .reusable = true}, SHIFT(2402), + [321] = {.count = 1, .reusable = false}, SHIFT(95), + [323] = {.count = 1, .reusable = false}, SHIFT(96), + [325] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 1), + [327] = {.count = 1, .reusable = false}, SHIFT(97), + [329] = {.count = 1, .reusable = false}, SHIFT(93), + [331] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), + [333] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), + [335] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [337] = {.count = 1, .reusable = true}, SHIFT(14), + [339] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), + [341] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), + [343] = {.count = 1, .reusable = false}, SHIFT(7), + [345] = {.count = 1, .reusable = false}, SHIFT(8), + [347] = {.count = 1, .reusable = false}, SHIFT(105), + [349] = {.count = 1, .reusable = false}, SHIFT(10), + [351] = {.count = 1, .reusable = false}, SHIFT(104), + [353] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), + [355] = {.count = 1, .reusable = false}, SHIFT(21), + [357] = {.count = 1, .reusable = false}, SHIFT(22), + [359] = {.count = 1, .reusable = true}, SHIFT(108), + [361] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [363] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), + [365] = {.count = 1, .reusable = true}, SHIFT(1476), + [367] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .production_id = 2), + [369] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .production_id = 2), + [371] = {.count = 1, .reusable = true}, SHIFT(563), + [373] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [375] = {.count = 1, .reusable = true}, SHIFT(1521), + [377] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [379] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [381] = {.count = 1, .reusable = false}, SHIFT(645), + [383] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [385] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), + [387] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [389] = {.count = 1, .reusable = false}, SHIFT(109), + [391] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [393] = {.count = 1, .reusable = true}, SHIFT(1564), + [395] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [397] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [399] = {.count = 1, .reusable = false}, SHIFT(701), + [401] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [403] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), + [405] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [407] = {.count = 1, .reusable = false}, SHIFT(110), + [409] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), + [411] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), + [413] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .production_id = 3), + [415] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .production_id = 3), + [417] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [419] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [421] = {.count = 1, .reusable = true}, SHIFT(111), + [423] = {.count = 1, .reusable = true}, SHIFT(112), + [425] = {.count = 1, .reusable = true}, SHIFT(113), + [427] = {.count = 1, .reusable = false}, SHIFT(113), + [429] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [431] = {.count = 1, .reusable = true}, SHIFT(114), + [433] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [435] = {.count = 1, .reusable = false}, SHIFT(120), + [437] = {.count = 1, .reusable = true}, SHIFT(120), + [439] = {.count = 1, .reusable = true}, SHIFT(116), + [441] = {.count = 1, .reusable = true}, SHIFT(117), + [443] = {.count = 1, .reusable = false}, SHIFT(1809), + [445] = {.count = 1, .reusable = true}, SHIFT(2514), + [447] = {.count = 1, .reusable = true}, SHIFT(2508), + [449] = {.count = 1, .reusable = false}, SHIFT(116), + [451] = {.count = 1, .reusable = true}, SHIFT(2516), + [453] = {.count = 1, .reusable = true}, SHIFT(1810), + [455] = {.count = 1, .reusable = true}, SHIFT(118), + [457] = {.count = 1, .reusable = true}, SHIFT(2517), + [459] = {.count = 1, .reusable = false}, SHIFT(904), + [461] = {.count = 1, .reusable = false}, SHIFT(121), + [463] = {.count = 1, .reusable = true}, SHIFT(121), + [465] = {.count = 1, .reusable = true}, SHIFT(122), + [467] = {.count = 1, .reusable = true}, SHIFT(123), + [469] = {.count = 1, .reusable = true}, SHIFT(124), + [471] = {.count = 1, .reusable = true}, SHIFT(2413), + [473] = {.count = 1, .reusable = false}, SHIFT(127), + [475] = {.count = 1, .reusable = true}, SHIFT(127), + [477] = {.count = 1, .reusable = true}, SHIFT(125), + [479] = {.count = 1, .reusable = true}, SHIFT(126), + [481] = {.count = 1, .reusable = true}, SHIFT(128), + [483] = {.count = 1, .reusable = true}, SHIFT(130), + [485] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [487] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [489] = {.count = 1, .reusable = false}, SHIFT(1387), + [491] = {.count = 1, .reusable = false}, SHIFT(415), + [493] = {.count = 1, .reusable = false}, SHIFT(1471), + [495] = {.count = 1, .reusable = true}, SHIFT(132), + [497] = {.count = 1, .reusable = false}, SHIFT(131), + [499] = {.count = 1, .reusable = true}, SHIFT(2442), + [501] = {.count = 1, .reusable = false}, SHIFT(417), + [503] = {.count = 1, .reusable = false}, SHIFT(1388), + [505] = {.count = 1, .reusable = true}, SHIFT(133), + [507] = {.count = 1, .reusable = true}, SHIFT(134), + [509] = {.count = 1, .reusable = true}, SHIFT(135), + [511] = {.count = 1, .reusable = false}, SHIFT(135), + [513] = {.count = 1, .reusable = false}, SHIFT(136), + [515] = {.count = 1, .reusable = true}, SHIFT(1607), + [517] = {.count = 1, .reusable = true}, SHIFT(136), + [519] = {.count = 1, .reusable = false}, SHIFT(137), + [521] = {.count = 1, .reusable = false}, SHIFT(139), + [523] = {.count = 1, .reusable = false}, SHIFT(138), + [525] = {.count = 1, .reusable = true}, SHIFT(138), + [527] = {.count = 1, .reusable = false}, SHIFT(740), + [529] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [531] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [533] = {.count = 1, .reusable = true}, SHIFT(1650), + [535] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .production_id = 1), + [537] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .production_id = 1), + [539] = {.count = 1, .reusable = false}, SHIFT(777), + [541] = {.count = 1, .reusable = true}, SHIFT(142), + [543] = {.count = 1, .reusable = true}, SHIFT(143), + [545] = {.count = 1, .reusable = false}, SHIFT(142), + [547] = {.count = 1, .reusable = true}, SHIFT(144), + [549] = {.count = 1, .reusable = true}, SHIFT(145), + [551] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), + [553] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), + [555] = {.count = 1, .reusable = true}, SHIFT(146), + [557] = {.count = 1, .reusable = true}, SHIFT(148), + [559] = {.count = 1, .reusable = false}, SHIFT(1849), + [561] = {.count = 1, .reusable = true}, SHIFT(2521), + [563] = {.count = 1, .reusable = true}, SHIFT(2515), + [565] = {.count = 1, .reusable = false}, SHIFT(148), + [567] = {.count = 1, .reusable = true}, SHIFT(2523), + [569] = {.count = 1, .reusable = true}, SHIFT(1850), + [571] = {.count = 1, .reusable = true}, SHIFT(2524), + [573] = {.count = 1, .reusable = true}, SHIFT(936), + [575] = {.count = 1, .reusable = true}, SHIFT(147), + [577] = {.count = 1, .reusable = true}, SHIFT(150), + [579] = {.count = 1, .reusable = false}, SHIFT(150), + [581] = {.count = 1, .reusable = true}, SHIFT(968), + [583] = {.count = 1, .reusable = true}, SHIFT(153), + [585] = {.count = 1, .reusable = false}, SHIFT(153), + [587] = {.count = 1, .reusable = false}, SHIFT(809), + [589] = {.count = 1, .reusable = false}, SHIFT(156), + [591] = {.count = 1, .reusable = false}, SHIFT(810), + [593] = {.count = 1, .reusable = false}, SHIFT(157), + [595] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), + [597] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [599] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [601] = {.count = 1, .reusable = true}, SHIFT(158), + [603] = {.count = 1, .reusable = false}, SHIFT(159), + [605] = {.count = 1, .reusable = true}, SHIFT(161), + [607] = {.count = 1, .reusable = false}, SHIFT(2447), + [609] = {.count = 1, .reusable = false}, SHIFT(559), + [611] = {.count = 1, .reusable = false}, SHIFT(162), + [613] = {.count = 1, .reusable = false}, SHIFT(560), + [615] = {.count = 1, .reusable = false}, SHIFT(1889), + [617] = {.count = 1, .reusable = false}, SHIFT(2528), + [619] = {.count = 1, .reusable = false}, SHIFT(2522), + [621] = {.count = 1, .reusable = false}, SHIFT(2530), + [623] = {.count = 1, .reusable = false}, SHIFT(1890), + [625] = {.count = 1, .reusable = false}, SHIFT(2531), + [627] = {.count = 1, .reusable = false}, SHIFT(1000), + [629] = {.count = 1, .reusable = false}, SHIFT(165), + [631] = {.count = 1, .reusable = true}, SHIFT(165), + [633] = {.count = 1, .reusable = false}, SHIFT(164), + [635] = {.count = 1, .reusable = true}, SHIFT(166), + [637] = {.count = 1, .reusable = true}, SHIFT(442), + [639] = {.count = 1, .reusable = true}, SHIFT(443), + [641] = {.count = 1, .reusable = false}, SHIFT(442), + [643] = {.count = 1, .reusable = true}, SHIFT(444), + [645] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), + [647] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(90), + [650] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), + [652] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), + [654] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), + [656] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 2), + [658] = {.count = 1, .reusable = true}, SHIFT(170), + [660] = {.count = 1, .reusable = true}, SHIFT(171), + [662] = {.count = 1, .reusable = true}, SHIFT(173), + [664] = {.count = 1, .reusable = true}, SHIFT(2537), + [666] = {.count = 1, .reusable = true}, SHIFT(1930), + [668] = {.count = 1, .reusable = true}, SHIFT(176), + [670] = {.count = 1, .reusable = false}, SHIFT(176), + [672] = {.count = 1, .reusable = true}, SHIFT(2538), + [674] = {.count = 1, .reusable = false}, SHIFT(1929), + [676] = {.count = 1, .reusable = true}, SHIFT(2529), + [678] = {.count = 1, .reusable = true}, SHIFT(2535), + [680] = {.count = 1, .reusable = true}, SHIFT(1032), + [682] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), + [684] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), + [686] = {.count = 1, .reusable = true}, SHIFT(181), + [688] = {.count = 1, .reusable = false}, SHIFT(180), + [690] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2395), + [693] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), + [696] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(380), + [699] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(381), + [702] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1364), + [705] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2396), + [708] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2397), + [711] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(382), + [714] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2398), + [717] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2399), + [720] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1365), + [723] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), + [726] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(383), + [729] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(384), + [732] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2610), + [735] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2628), + [738] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2400), + [741] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(382), + [744] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(385), + [747] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2401), + [750] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(20), + [753] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1366), + [756] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2403), + [759] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2611), + [762] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2404), + [765] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2405), + [768] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2406), + [771] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [773] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [775] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), + [778] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [780] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [782] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(20), + [785] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2452), + [788] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), + [791] = {.count = 1, .reusable = true}, SHIFT(184), + [793] = {.count = 1, .reusable = false}, SHIFT(184), + [795] = {.count = 1, .reusable = true}, SHIFT(183), + [797] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [799] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [801] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), + [803] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), + [805] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [807] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [809] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [811] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1517), + [814] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2449), + [817] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2450), + [820] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(41), + [823] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2451), + [826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(633), + [829] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [831] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2441), + [834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1518), + [837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2454), + [840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(109), + [843] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [845] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1560), + [848] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2459), + [851] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2460), + [854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(44), + [857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2461), + [860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(694), + [863] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [865] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1561), + [868] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2463), + [871] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [874] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [876] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [878] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [880] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [882] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [884] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [886] = {.count = 1, .reusable = false}, SHIFT(187), + [888] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(52), + [891] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [893] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [895] = {.count = 1, .reusable = true}, SHIFT(1813), + [897] = {.count = 1, .reusable = false}, SHIFT(190), + [899] = {.count = 1, .reusable = true}, SHIFT(190), + [901] = {.count = 1, .reusable = true}, SHIFT(188), + [903] = {.count = 1, .reusable = true}, SHIFT(189), + [905] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [907] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [909] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), + [911] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), + [913] = {.count = 1, .reusable = false}, SHIFT(910), + [915] = {.count = 1, .reusable = false}, SHIFT(191), + [917] = {.count = 1, .reusable = true}, SHIFT(191), + [919] = {.count = 1, .reusable = true}, SHIFT(192), + [921] = {.count = 1, .reusable = true}, SHIFT(193), + [923] = {.count = 1, .reusable = false}, SHIFT(196), + [925] = {.count = 1, .reusable = true}, SHIFT(196), + [927] = {.count = 1, .reusable = true}, SHIFT(194), + [929] = {.count = 1, .reusable = true}, SHIFT(195), + [931] = {.count = 1, .reusable = true}, SHIFT(2558), + [933] = {.count = 1, .reusable = true}, SHIFT(2050), + [935] = {.count = 1, .reusable = true}, SHIFT(197), + [937] = {.count = 1, .reusable = false}, SHIFT(197), + [939] = {.count = 1, .reusable = true}, SHIFT(2559), + [941] = {.count = 1, .reusable = false}, SHIFT(2049), + [943] = {.count = 1, .reusable = true}, SHIFT(2550), + [945] = {.count = 1, .reusable = true}, SHIFT(2556), + [947] = {.count = 1, .reusable = false}, SHIFT(1128), + [949] = {.count = 1, .reusable = false}, SHIFT(202), + [951] = {.count = 1, .reusable = true}, SHIFT(202), + [953] = {.count = 1, .reusable = true}, SHIFT(200), + [955] = {.count = 1, .reusable = true}, SHIFT(201), + [957] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .production_id = 3), + [959] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .production_id = 3), + [961] = {.count = 1, .reusable = true}, SHIFT(203), + [963] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [965] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [967] = {.count = 1, .reusable = true}, SHIFT(457), + [969] = {.count = 1, .reusable = true}, SHIFT(1406), + [971] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [973] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [975] = {.count = 1, .reusable = false}, SHIFT(206), + [977] = {.count = 1, .reusable = false}, SHIFT(207), + [979] = {.count = 1, .reusable = false}, SHIFT(208), + [981] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [983] = {.count = 1, .reusable = true}, SHIFT(214), + [985] = {.count = 1, .reusable = true}, SHIFT(215), + [987] = {.count = 1, .reusable = false}, SHIFT(215), + [989] = {.count = 1, .reusable = true}, SHIFT(216), + [991] = {.count = 1, .reusable = true}, SHIFT(217), + [993] = {.count = 1, .reusable = false}, SHIFT(217), + [995] = {.count = 1, .reusable = true}, SHIFT(218), + [997] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [999] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), + [1001] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), + [1003] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), + [1005] = {.count = 1, .reusable = true}, SHIFT(220), + [1007] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1009] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1011] = {.count = 1, .reusable = true}, SHIFT(2565), + [1013] = {.count = 1, .reusable = true}, SHIFT(2090), + [1015] = {.count = 1, .reusable = true}, SHIFT(221), + [1017] = {.count = 1, .reusable = false}, SHIFT(221), + [1019] = {.count = 1, .reusable = true}, SHIFT(2566), + [1021] = {.count = 1, .reusable = false}, SHIFT(2089), + [1023] = {.count = 1, .reusable = true}, SHIFT(2557), + [1025] = {.count = 1, .reusable = true}, SHIFT(2563), + [1027] = {.count = 1, .reusable = true}, SHIFT(222), + [1029] = {.count = 1, .reusable = true}, SHIFT(1160), + [1031] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), + [1033] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [1035] = {.count = 1, .reusable = true}, SHIFT(1853), + [1037] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .production_id = 4), + [1039] = {.count = 1, .reusable = false}, SHIFT(942), + [1041] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .production_id = 4), + [1043] = {.count = 1, .reusable = true}, SHIFT(225), + [1045] = {.count = 1, .reusable = true}, SHIFT(226), + [1047] = {.count = 1, .reusable = true}, SHIFT(227), + [1049] = {.count = 1, .reusable = true}, SHIFT(228), + [1051] = {.count = 1, .reusable = false}, SHIFT(974), + [1053] = {.count = 1, .reusable = true}, SHIFT(229), + [1055] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [1057] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [1059] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .production_id = 4), + [1061] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .production_id = 4), + [1063] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [1065] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1067] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1069] = {.count = 1, .reusable = true}, SHIFT(230), + [1071] = {.count = 1, .reusable = false}, SHIFT(231), + [1073] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(232), + [1076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2488), + [1079] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2486), + [1082] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2489), + [1085] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(81), + [1088] = {.count = 1, .reusable = false}, SHIFT(233), + [1090] = {.count = 1, .reusable = false}, SHIFT(586), + [1092] = {.count = 1, .reusable = false}, SHIFT(235), + [1094] = {.count = 1, .reusable = false}, SHIFT(587), + [1096] = {.count = 1, .reusable = false}, SHIFT(588), + [1098] = {.count = 1, .reusable = true}, SHIFT(2572), + [1100] = {.count = 1, .reusable = true}, SHIFT(2130), + [1102] = {.count = 1, .reusable = true}, SHIFT(482), + [1104] = {.count = 1, .reusable = false}, SHIFT(482), + [1106] = {.count = 1, .reusable = true}, SHIFT(2573), + [1108] = {.count = 1, .reusable = false}, SHIFT(2129), + [1110] = {.count = 1, .reusable = true}, SHIFT(2564), + [1112] = {.count = 1, .reusable = true}, SHIFT(2570), + [1114] = {.count = 1, .reusable = true}, SHIFT(1192), + [1116] = {.count = 1, .reusable = false}, SHIFT(238), + [1118] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1120] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1122] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [1124] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [1126] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [1128] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [1130] = {.count = 1, .reusable = false}, SHIFT(240), + [1132] = {.count = 1, .reusable = true}, SHIFT(2579), + [1134] = {.count = 1, .reusable = true}, SHIFT(2577), + [1136] = {.count = 1, .reusable = true}, SHIFT(241), + [1138] = {.count = 1, .reusable = true}, SHIFT(2580), + [1140] = {.count = 1, .reusable = true}, SHIFT(242), + [1142] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 3), + [1144] = {.count = 1, .reusable = true}, SHIFT(243), + [1146] = {.count = 1, .reusable = false}, SHIFT(243), + [1148] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [1150] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [1152] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [1154] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [1156] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [1158] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [1160] = {.count = 1, .reusable = true}, SHIFT(1933), + [1162] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), + [1164] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), + [1166] = {.count = 1, .reusable = false}, SHIFT(1038), + [1168] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(95), + [1171] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [1173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1363), + [1176] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [1178] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2402), + [1181] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(97), + [1184] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [1186] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [1188] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [1190] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [1192] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), + [1194] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), + [1196] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(6), + [1199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(7), + [1202] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(8), + [1205] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(105), + [1208] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(10), + [1211] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(104), + [1214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(14), + [1217] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [1220] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [1223] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 4), + [1225] = {.count = 1, .reusable = false}, SHIFT(48), + [1227] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 4), + [1229] = {.count = 1, .reusable = false}, SHIFT(49), + [1231] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [1233] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [1235] = {.count = 1, .reusable = false}, SHIFT(246), + [1237] = {.count = 1, .reusable = true}, SHIFT(246), + [1239] = {.count = 1, .reusable = true}, SHIFT(245), + [1241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(191), + [1244] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(191), + [1247] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(116), + [1250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1809), + [1253] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [1255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(116), + [1258] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2516), + [1261] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2514), + [1264] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1810), + [1267] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2508), + [1270] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2517), + [1273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(904), + [1276] = {.count = 1, .reusable = true}, SHIFT(247), + [1278] = {.count = 1, .reusable = true}, SHIFT(248), + [1280] = {.count = 1, .reusable = false}, SHIFT(248), + [1282] = {.count = 1, .reusable = false}, SHIFT(253), + [1284] = {.count = 1, .reusable = true}, SHIFT(253), + [1286] = {.count = 1, .reusable = true}, SHIFT(251), + [1288] = {.count = 1, .reusable = true}, SHIFT(252), + [1290] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 5), + [1292] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 5), + [1294] = {.count = 1, .reusable = true}, SHIFT(2053), + [1296] = {.count = 1, .reusable = false}, SHIFT(1134), + [1298] = {.count = 1, .reusable = true}, SHIFT(254), + [1300] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 3), + [1302] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 3), + [1304] = {.count = 1, .reusable = false}, SHIFT(256), + [1306] = {.count = 1, .reusable = true}, SHIFT(256), + [1308] = {.count = 1, .reusable = true}, SHIFT(255), + [1310] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [1312] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [1314] = {.count = 1, .reusable = true}, SHIFT(258), + [1316] = {.count = 1, .reusable = false}, SHIFT(258), + [1318] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [1320] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [1322] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [1324] = {.count = 1, .reusable = true}, SHIFT(262), + [1326] = {.count = 1, .reusable = false}, SHIFT(261), + [1328] = {.count = 1, .reusable = true}, SHIFT(263), + [1330] = {.count = 1, .reusable = true}, SHIFT(208), + [1332] = {.count = 1, .reusable = true}, SHIFT(207), + [1334] = {.count = 1, .reusable = false}, SHIFT(263), + [1336] = {.count = 1, .reusable = true}, SHIFT(268), + [1338] = {.count = 1, .reusable = false}, SHIFT(268), + [1340] = {.count = 1, .reusable = true}, SHIFT(269), + [1342] = {.count = 1, .reusable = false}, SHIFT(269), + [1344] = {.count = 1, .reusable = false}, SHIFT(270), + [1346] = {.count = 1, .reusable = true}, SHIFT(275), + [1348] = {.count = 1, .reusable = false}, SHIFT(275), + [1350] = {.count = 1, .reusable = false}, SHIFT(276), + [1352] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [1354] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [1356] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [1358] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [1360] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [1362] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [1364] = {.count = 1, .reusable = true}, SHIFT(2093), + [1366] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [1368] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [1370] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [1372] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [1374] = {.count = 1, .reusable = true}, SHIFT(1166), + [1376] = {.count = 1, .reusable = true}, SHIFT(279), + [1378] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [1380] = {.count = 1, .reusable = true}, SHIFT(281), + [1382] = {.count = 1, .reusable = true}, SHIFT(818), + [1384] = {.count = 1, .reusable = false}, SHIFT(818), + [1386] = {.count = 1, .reusable = true}, SHIFT(282), + [1388] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .production_id = 4), + [1390] = {.count = 1, .reusable = true}, SHIFT(283), + [1392] = {.count = 1, .reusable = true}, SHIFT(284), + [1394] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [1396] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [1398] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [1400] = {.count = 1, .reusable = true}, SHIFT(285), + [1402] = {.count = 1, .reusable = false}, SHIFT(287), + [1404] = {.count = 1, .reusable = true}, SHIFT(289), + [1406] = {.count = 1, .reusable = false}, SHIFT(289), + [1408] = {.count = 1, .reusable = false}, SHIFT(2570), + [1410] = {.count = 1, .reusable = false}, SHIFT(2564), + [1412] = {.count = 1, .reusable = false}, SHIFT(2572), + [1414] = {.count = 1, .reusable = false}, SHIFT(2130), + [1416] = {.count = 1, .reusable = false}, SHIFT(2573), + [1418] = {.count = 1, .reusable = false}, SHIFT(1192), + [1420] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), + [1422] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), + [1424] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [1426] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [1428] = {.count = 1, .reusable = false}, SHIFT(290), + [1430] = {.count = 1, .reusable = false}, SHIFT(1225), + [1432] = {.count = 1, .reusable = true}, SHIFT(1226), + [1434] = {.count = 1, .reusable = true}, SHIFT(1225), + [1436] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [1438] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [1440] = {.count = 1, .reusable = true}, SHIFT(291), + [1442] = {.count = 1, .reusable = true}, SHIFT(292), + [1444] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 4), + [1446] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 4), + [1448] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 4), + [1450] = {.count = 1, .reusable = true}, SHIFT(293), + [1452] = {.count = 1, .reusable = false}, SHIFT(293), + [1454] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [1456] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [1458] = {.count = 1, .reusable = true}, SHIFT(294), + [1460] = {.count = 1, .reusable = false}, SHIFT(295), + [1462] = {.count = 1, .reusable = true}, SHIFT(295), + [1464] = {.count = 1, .reusable = true}, SHIFT(296), + [1466] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 5), + [1468] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 5), + [1470] = {.count = 1, .reusable = false}, SHIFT(298), + [1472] = {.count = 1, .reusable = true}, SHIFT(298), + [1474] = {.count = 1, .reusable = true}, SHIFT(297), + [1476] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 6), + [1478] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 6), + [1480] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 3), + [1482] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 3), + [1484] = {.count = 1, .reusable = true}, SHIFT(299), + [1486] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [1488] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [1490] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [1492] = {.count = 1, .reusable = true}, SHIFT(300), + [1494] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 2), + [1496] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 2), + [1498] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [1500] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [1502] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(208), + [1505] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1507] = {.count = 1, .reusable = true}, SHIFT(302), + [1509] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), + [1512] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(380), + [1515] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1364), + [1518] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2396), + [1521] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2397), + [1524] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(383), + [1527] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(384), + [1530] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2610), + [1533] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2400), + [1536] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(382), + [1539] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2401), + [1542] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(381), + [1545] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1366), + [1548] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2404), + [1551] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2395), + [1554] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(382), + [1557] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2398), + [1560] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2399), + [1563] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1365), + [1566] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), + [1569] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2628), + [1572] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(385), + [1575] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(20), + [1578] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2403), + [1581] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2611), + [1584] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2405), + [1587] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2406), + [1590] = {.count = 1, .reusable = false}, SHIFT(304), + [1592] = {.count = 1, .reusable = true}, SHIFT(308), + [1594] = {.count = 1, .reusable = true}, SHIFT(307), + [1596] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [1598] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [1600] = {.count = 1, .reusable = true}, SHIFT(310), + [1602] = {.count = 1, .reusable = true}, SHIFT(777), + [1604] = {.count = 1, .reusable = true}, SHIFT(304), + [1606] = {.count = 1, .reusable = false}, SHIFT(313), + [1608] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .production_id = 2), + [1610] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .production_id = 2), + [1612] = {.count = 1, .reusable = true}, SHIFT(313), + [1614] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [1616] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [1618] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2565), + [1621] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2090), + [1624] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(221), + [1627] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(221), + [1630] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2566), + [1633] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2089), + [1636] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1638] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2563), + [1641] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2557), + [1644] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1160), + [1647] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [1649] = {.count = 1, .reusable = true}, SHIFT(316), + [1651] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .production_id = 4), + [1653] = {.count = 1, .reusable = true}, SHIFT(317), + [1655] = {.count = 1, .reusable = true}, SHIFT(318), + [1657] = {.count = 1, .reusable = true}, SHIFT(320), + [1659] = {.count = 1, .reusable = false}, SHIFT(322), + [1661] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [1663] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [1665] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [1667] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [1669] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(240), + [1672] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2579), + [1675] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2577), + [1678] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [1680] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2580), + [1683] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(292), + [1686] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 5), + [1688] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [1690] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [1692] = {.count = 1, .reusable = true}, SHIFT(324), + [1694] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 7), + [1696] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 7), + [1698] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 5), + [1700] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 5), + [1702] = {.count = 1, .reusable = true}, SHIFT(325), + [1704] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 3), + [1706] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 3), + [1708] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [1710] = {.count = 1, .reusable = true}, SHIFT(327), + [1712] = {.count = 1, .reusable = false}, SHIFT(327), + [1714] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [1716] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [1718] = {.count = 1, .reusable = true}, SHIFT(328), + [1720] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [1722] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [1724] = {.count = 1, .reusable = true}, SHIFT(329), + [1726] = {.count = 1, .reusable = true}, SHIFT(331), + [1728] = {.count = 1, .reusable = false}, SHIFT(331), + [1730] = {.count = 1, .reusable = false}, SHIFT(631), + [1732] = {.count = 1, .reusable = false}, SHIFT(632), + [1734] = {.count = 1, .reusable = false}, SHIFT(2169), + [1736] = {.count = 1, .reusable = true}, SHIFT(2584), + [1738] = {.count = 1, .reusable = true}, SHIFT(2571), + [1740] = {.count = 1, .reusable = false}, SHIFT(535), + [1742] = {.count = 1, .reusable = true}, SHIFT(2586), + [1744] = {.count = 1, .reusable = false}, SHIFT(536), + [1746] = {.count = 1, .reusable = false}, SHIFT(1224), + [1748] = {.count = 1, .reusable = true}, SHIFT(535), + [1750] = {.count = 1, .reusable = false}, SHIFT(538), + [1752] = {.count = 1, .reusable = true}, SHIFT(2471), + [1754] = {.count = 1, .reusable = true}, SHIFT(2170), + [1756] = {.count = 1, .reusable = true}, SHIFT(2587), + [1758] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [1760] = {.count = 1, .reusable = true}, SHIFT(334), + [1762] = {.count = 1, .reusable = true}, SHIFT(336), + [1764] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .production_id = 1), + [1766] = {.count = 1, .reusable = true}, SHIFT(338), + [1768] = {.count = 1, .reusable = true}, SHIFT(340), + [1770] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2479), + [1773] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1647), + [1776] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(341), + [1779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(341), + [1782] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2481), + [1785] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1646), + [1788] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2478), + [1791] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2477), + [1794] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(771), + [1797] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .production_id = 2), + [1799] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .production_id = 2), + [1801] = {.count = 1, .reusable = true}, SHIFT(344), + [1803] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [1805] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .production_id = 4), + [1807] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), + [1809] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), + [1811] = {.count = 1, .reusable = true}, SHIFT(347), + [1813] = {.count = 1, .reusable = true}, SHIFT(348), + [1815] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [1817] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [1819] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), + [1821] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), + [1823] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .production_id = 5), + [1825] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .production_id = 5), + [1827] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [1829] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 4), + [1831] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 4), + [1833] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [1835] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [1837] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), + [1839] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), + [1841] = {.count = 1, .reusable = true}, SHIFT(350), + [1843] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [1845] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 2), + [1847] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [1849] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [1851] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [1853] = {.count = 1, .reusable = true}, SHIFT(351), + [1855] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), + [1857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(307), + [1860] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .production_id = 1), + [1862] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .production_id = 1), + [1864] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .production_id = 1), + [1866] = {.count = 1, .reusable = true}, SHIFT(353), + [1868] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .production_id = 1), + [1870] = {.count = 1, .reusable = true}, SHIFT(355), + [1872] = {.count = 1, .reusable = true}, SHIFT(357), + [1874] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .production_id = 2), + [1876] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .production_id = 2), + [1878] = {.count = 1, .reusable = true}, SHIFT(359), + [1880] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), + [1882] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), + [1884] = {.count = 1, .reusable = true}, SHIFT(361), + [1886] = {.count = 1, .reusable = true}, SHIFT(362), + [1888] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), + [1890] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), + [1892] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [1894] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [1896] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [1898] = {.count = 1, .reusable = true}, SHIFT(363), + [1900] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), + [1902] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .production_id = 1), + [1904] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .production_id = 1), + [1906] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .production_id = 1), + [1908] = {.count = 1, .reusable = true}, SHIFT(364), + [1910] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .production_id = 1), + [1912] = {.count = 1, .reusable = true}, SHIFT(365), + [1914] = {.count = 1, .reusable = true}, SHIFT(367), + [1916] = {.count = 1, .reusable = true}, SHIFT(368), + [1918] = {.count = 1, .reusable = true}, SHIFT(370), + [1920] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .production_id = 2), + [1922] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .production_id = 2), + [1924] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), + [1926] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), + [1928] = {.count = 1, .reusable = true}, SHIFT(372), + [1930] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [1932] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [1934] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [1936] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .production_id = 1), + [1938] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .production_id = 1), + [1940] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .production_id = 1), + [1942] = {.count = 1, .reusable = true}, SHIFT(373), + [1944] = {.count = 1, .reusable = true}, SHIFT(375), + [1946] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), + [1948] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), + [1950] = {.count = 1, .reusable = true}, SHIFT(378), + [1952] = {.count = 1, .reusable = true}, SHIFT(379), + [1954] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), + [1956] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), + [1958] = {.count = 1, .reusable = false}, SHIFT(1729), + [1960] = {.count = 1, .reusable = false}, SHIFT(2500), + [1962] = {.count = 1, .reusable = false}, SHIFT(2494), + [1964] = {.count = 1, .reusable = false}, SHIFT(396), + [1966] = {.count = 1, .reusable = false}, SHIFT(2502), + [1968] = {.count = 1, .reusable = false}, SHIFT(840), + [1970] = {.count = 1, .reusable = true}, SHIFT(2462), + [1972] = {.count = 1, .reusable = false}, SHIFT(1730), + [1974] = {.count = 1, .reusable = false}, SHIFT(2503), + [1976] = {.count = 1, .reusable = false}, SHIFT(398), + [1978] = {.count = 1, .reusable = false}, SHIFT(1769), + [1980] = {.count = 1, .reusable = false}, SHIFT(2507), + [1982] = {.count = 1, .reusable = false}, SHIFT(2501), + [1984] = {.count = 1, .reusable = false}, SHIFT(399), + [1986] = {.count = 1, .reusable = false}, SHIFT(2509), + [1988] = {.count = 1, .reusable = false}, SHIFT(872), + [1990] = {.count = 1, .reusable = false}, SHIFT(1770), + [1992] = {.count = 1, .reusable = false}, SHIFT(2510), + [1994] = {.count = 1, .reusable = false}, SHIFT(401), + [1996] = {.count = 1, .reusable = true}, SHIFT(1370), + [1998] = {.count = 1, .reusable = false}, SHIFT(2410), + [2000] = {.count = 1, .reusable = false}, SHIFT(412), + [2002] = {.count = 1, .reusable = false}, SHIFT(414), + [2004] = {.count = 1, .reusable = true}, SHIFT(416), + [2006] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 1), + [2008] = {.count = 1, .reusable = true}, SHIFT(384), + [2010] = {.count = 1, .reusable = false}, SHIFT(2396), + [2012] = {.count = 1, .reusable = false}, SHIFT(2397), + [2014] = {.count = 1, .reusable = false}, SHIFT(424), + [2016] = {.count = 1, .reusable = false}, SHIFT(2398), + [2018] = {.count = 1, .reusable = false}, SHIFT(423), + [2020] = {.count = 1, .reusable = false}, SHIFT(1366), + [2022] = {.count = 1, .reusable = false}, SHIFT(2403), + [2024] = {.count = 1, .reusable = true}, SHIFT(1733), + [2026] = {.count = 1, .reusable = false}, SHIFT(846), + [2028] = {.count = 1, .reusable = false}, SHIFT(428), + [2030] = {.count = 1, .reusable = true}, SHIFT(1773), + [2032] = {.count = 1, .reusable = false}, SHIFT(878), + [2034] = {.count = 1, .reusable = false}, SHIFT(429), + [2036] = {.count = 1, .reusable = true}, SHIFT(433), + [2038] = {.count = 1, .reusable = true}, SHIFT(1693), + [2040] = {.count = 1, .reusable = false}, SHIFT(814), + [2042] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(412), + [2045] = {.count = 1, .reusable = true}, SHIFT(467), + [2047] = {.count = 1, .reusable = false}, SHIFT(466), + [2049] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 2), + [2051] = {.count = 1, .reusable = true}, SHIFT(470), + [2053] = {.count = 1, .reusable = false}, SHIFT(470), + [2055] = {.count = 1, .reusable = true}, SHIFT(469), + [2057] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1729), + [2060] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2500), + [2063] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2494), + [2066] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(396), + [2069] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2502), + [2072] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(840), + [2075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2462), + [2078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1730), + [2081] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2503), + [2084] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(428), + [2087] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1769), + [2090] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2507), + [2093] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2501), + [2096] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(399), + [2099] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2509), + [2102] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(872), + [2105] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1770), + [2108] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2510), + [2111] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(429), + [2114] = {.count = 1, .reusable = true}, SHIFT(432), + [2116] = {.count = 1, .reusable = false}, SHIFT(473), + [2118] = {.count = 1, .reusable = false}, SHIFT(432), + [2120] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1370), + [2123] = {.count = 1, .reusable = true}, SHIFT(481), + [2125] = {.count = 1, .reusable = true}, SHIFT(1973), + [2127] = {.count = 1, .reusable = false}, SHIFT(1070), + [2129] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 3), + [2131] = {.count = 1, .reusable = true}, SHIFT(491), + [2133] = {.count = 1, .reusable = false}, SHIFT(491), + [2135] = {.count = 1, .reusable = true}, SHIFT(2013), + [2137] = {.count = 1, .reusable = false}, SHIFT(1102), + [2139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1471), + [2142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1387), + [2145] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2442), + [2148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1388), + [2151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1364), + [2154] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2396), + [2157] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2397), + [2160] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(424), + [2163] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2398), + [2166] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(423), + [2169] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(384), + [2172] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1366), + [2175] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2403), + [2178] = {.count = 1, .reusable = false}, SHIFT(402), + [2180] = {.count = 1, .reusable = false}, SHIFT(403), + [2182] = {.count = 1, .reusable = false}, SHIFT(404), + [2184] = {.count = 1, .reusable = true}, SHIFT(2133), + [2186] = {.count = 1, .reusable = false}, SHIFT(1198), + [2188] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [2190] = {.count = 1, .reusable = true}, SHIFT(504), + [2192] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .production_id = 4), + [2194] = {.count = 1, .reusable = true}, SHIFT(506), + [2196] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 4), + [2198] = {.count = 1, .reusable = true}, SHIFT(510), + [2200] = {.count = 1, .reusable = false}, SHIFT(510), + [2202] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(482), + [2205] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2129), + [2210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2570), + [2213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2564), + [2216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2572), + [2219] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2130), + [2222] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2573), + [2225] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1192), + [2228] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [2230] = {.count = 1, .reusable = true}, SHIFT(518), + [2232] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .production_id = 4), + [2234] = {.count = 1, .reusable = true}, SHIFT(519), + [2236] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [2238] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .production_id = 4), + [2240] = {.count = 1, .reusable = false}, SHIFT(551), + [2242] = {.count = 1, .reusable = false}, SHIFT(554), + [2244] = {.count = 1, .reusable = true}, SHIFT(2173), + [2246] = {.count = 1, .reusable = false}, SHIFT(1230), + [2248] = {.count = 1, .reusable = false}, SHIFT(648), + [2250] = {.count = 1, .reusable = false}, SHIFT(2436), + [2252] = {.count = 1, .reusable = true}, SHIFT(649), + [2254] = {.count = 1, .reusable = false}, SHIFT(647), + [2256] = {.count = 1, .reusable = true}, SHIFT(2453), + [2258] = {.count = 1, .reusable = false}, SHIFT(650), + [2260] = {.count = 1, .reusable = false}, SHIFT(2435), + [2262] = {.count = 1, .reusable = false}, SHIFT(565), + [2264] = {.count = 1, .reusable = false}, SHIFT(568), + [2266] = {.count = 1, .reusable = false}, SHIFT(566), + [2268] = {.count = 1, .reusable = true}, SHIFT(567), + [2270] = {.count = 1, .reusable = true}, SHIFT(1224), + [2272] = {.count = 1, .reusable = true}, SHIFT(2213), + [2274] = {.count = 1, .reusable = false}, SHIFT(1262), + [2276] = {.count = 1, .reusable = true}, SHIFT(2253), + [2278] = {.count = 1, .reusable = false}, SHIFT(1294), + [2280] = {.count = 1, .reusable = true}, SHIFT(581), + [2282] = {.count = 1, .reusable = true}, SHIFT(1893), + [2284] = {.count = 1, .reusable = true}, SHIFT(2447), + [2286] = {.count = 1, .reusable = true}, SHIFT(559), + [2288] = {.count = 1, .reusable = true}, SHIFT(560), + [2290] = {.count = 1, .reusable = true}, SHIFT(2528), + [2292] = {.count = 1, .reusable = true}, SHIFT(2522), + [2294] = {.count = 1, .reusable = true}, SHIFT(2530), + [2296] = {.count = 1, .reusable = true}, SHIFT(1890), + [2298] = {.count = 1, .reusable = true}, SHIFT(2531), + [2300] = {.count = 1, .reusable = true}, SHIFT(1000), + [2302] = {.count = 1, .reusable = false}, SHIFT(1006), + [2304] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(563), + [2307] = {.count = 1, .reusable = true}, SHIFT(602), + [2309] = {.count = 1, .reusable = false}, SHIFT(601), + [2311] = {.count = 1, .reusable = true}, SHIFT(605), + [2313] = {.count = 1, .reusable = false}, SHIFT(605), + [2315] = {.count = 1, .reusable = true}, SHIFT(604), + [2317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2209), + [2320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2591), + [2323] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2578), + [2326] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(549), + [2329] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2593), + [2332] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1256), + [2335] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2480), + [2338] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2210), + [2341] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2594), + [2344] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(576), + [2347] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2249), + [2350] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2598), + [2353] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2585), + [2356] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(552), + [2359] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2599), + [2362] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1288), + [2365] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2250), + [2368] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2600), + [2371] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(577), + [2374] = {.count = 1, .reusable = true}, SHIFT(580), + [2376] = {.count = 1, .reusable = false}, SHIFT(608), + [2378] = {.count = 1, .reusable = false}, SHIFT(580), + [2380] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1476), + [2383] = {.count = 1, .reusable = true}, SHIFT(614), + [2385] = {.count = 1, .reusable = false}, SHIFT(680), + [2387] = {.count = 1, .reusable = true}, SHIFT(680), + [2389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2169), + [2392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2584), + [2395] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2571), + [2398] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(573), + [2401] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2586), + [2404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(572), + [2407] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1224), + [2410] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2170), + [2413] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2587), + [2416] = {.count = 1, .reusable = false}, SHIFT(555), + [2418] = {.count = 1, .reusable = false}, SHIFT(556), + [2420] = {.count = 1, .reusable = true}, SHIFT(556), + [2422] = {.count = 1, .reusable = true}, SHIFT(557), + [2424] = {.count = 1, .reusable = false}, SHIFT(687), + [2426] = {.count = 1, .reusable = true}, SHIFT(687), + [2428] = {.count = 1, .reusable = false}, SHIFT(2209), + [2430] = {.count = 1, .reusable = false}, SHIFT(2591), + [2432] = {.count = 1, .reusable = false}, SHIFT(2578), + [2434] = {.count = 1, .reusable = false}, SHIFT(549), + [2436] = {.count = 1, .reusable = false}, SHIFT(2593), + [2438] = {.count = 1, .reusable = false}, SHIFT(1256), + [2440] = {.count = 1, .reusable = true}, SHIFT(2480), + [2442] = {.count = 1, .reusable = false}, SHIFT(2210), + [2444] = {.count = 1, .reusable = false}, SHIFT(2594), + [2446] = {.count = 1, .reusable = false}, SHIFT(638), + [2448] = {.count = 1, .reusable = false}, SHIFT(2249), + [2450] = {.count = 1, .reusable = false}, SHIFT(2598), + [2452] = {.count = 1, .reusable = false}, SHIFT(2585), + [2454] = {.count = 1, .reusable = false}, SHIFT(552), + [2456] = {.count = 1, .reusable = false}, SHIFT(2599), + [2458] = {.count = 1, .reusable = false}, SHIFT(1288), + [2460] = {.count = 1, .reusable = false}, SHIFT(2250), + [2462] = {.count = 1, .reusable = false}, SHIFT(2600), + [2464] = {.count = 1, .reusable = false}, SHIFT(639), + [2466] = {.count = 1, .reusable = true}, SHIFT(1465), + [2468] = {.count = 1, .reusable = false}, SHIFT(2584), + [2470] = {.count = 1, .reusable = false}, SHIFT(2571), + [2472] = {.count = 1, .reusable = false}, SHIFT(573), + [2474] = {.count = 1, .reusable = false}, SHIFT(2586), + [2476] = {.count = 1, .reusable = false}, SHIFT(572), + [2478] = {.count = 1, .reusable = false}, SHIFT(2170), + [2480] = {.count = 1, .reusable = false}, SHIFT(2587), + [2482] = {.count = 1, .reusable = false}, SHIFT(576), + [2484] = {.count = 1, .reusable = false}, SHIFT(577), + [2486] = {.count = 1, .reusable = true}, SHIFT(658), + [2488] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(645), + [2491] = {.count = 1, .reusable = true}, SHIFT(672), + [2493] = {.count = 1, .reusable = false}, SHIFT(671), + [2495] = {.count = 1, .reusable = true}, SHIFT(2451), + [2497] = {.count = 1, .reusable = true}, SHIFT(1518), + [2499] = {.count = 1, .reusable = true}, SHIFT(657), + [2501] = {.count = 1, .reusable = false}, SHIFT(657), + [2503] = {.count = 1, .reusable = true}, SHIFT(2454), + [2505] = {.count = 1, .reusable = false}, SHIFT(674), + [2507] = {.count = 1, .reusable = true}, SHIFT(2450), + [2509] = {.count = 1, .reusable = true}, SHIFT(2449), + [2511] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1521), + [2514] = {.count = 1, .reusable = false}, SHIFT(640), + [2516] = {.count = 1, .reusable = false}, SHIFT(641), + [2518] = {.count = 1, .reusable = false}, SHIFT(642), + [2520] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 5), + [2522] = {.count = 1, .reusable = true}, SHIFT(708), + [2524] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(701), + [2527] = {.count = 1, .reusable = true}, SHIFT(1467), + [2529] = {.count = 1, .reusable = true}, SHIFT(2461), + [2531] = {.count = 1, .reusable = true}, SHIFT(1561), + [2533] = {.count = 1, .reusable = true}, SHIFT(707), + [2535] = {.count = 1, .reusable = false}, SHIFT(707), + [2537] = {.count = 1, .reusable = true}, SHIFT(2463), + [2539] = {.count = 1, .reusable = false}, SHIFT(717), + [2541] = {.count = 1, .reusable = true}, SHIFT(2460), + [2543] = {.count = 1, .reusable = true}, SHIFT(2459), + [2545] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1564), + [2548] = {.count = 1, .reusable = false}, SHIFT(696), + [2550] = {.count = 1, .reusable = false}, SHIFT(697), + [2552] = {.count = 1, .reusable = false}, SHIFT(698), + [2554] = {.count = 1, .reusable = true}, SHIFT(745), + [2556] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(740), + [2559] = {.count = 1, .reusable = true}, SHIFT(744), + [2561] = {.count = 1, .reusable = false}, SHIFT(744), + [2563] = {.count = 1, .reusable = false}, SHIFT(754), + [2565] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1607), + [2568] = {.count = 1, .reusable = true}, SHIFT(2293), + [2570] = {.count = 1, .reusable = false}, SHIFT(1323), + [2572] = {.count = 1, .reusable = false}, SHIFT(735), + [2574] = {.count = 1, .reusable = false}, SHIFT(736), + [2576] = {.count = 1, .reusable = false}, SHIFT(737), + [2578] = {.count = 1, .reusable = false}, SHIFT(1604), + [2580] = {.count = 1, .reusable = true}, SHIFT(782), + [2582] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(777), + [2585] = {.count = 1, .reusable = true}, SHIFT(781), + [2587] = {.count = 1, .reusable = false}, SHIFT(791), + [2589] = {.count = 1, .reusable = false}, SHIFT(781), + [2591] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1650), + [2594] = {.count = 1, .reusable = false}, SHIFT(772), + [2596] = {.count = 1, .reusable = true}, SHIFT(773), + [2598] = {.count = 1, .reusable = false}, SHIFT(773), + [2600] = {.count = 1, .reusable = true}, SHIFT(772), + [2602] = {.count = 1, .reusable = true}, SHIFT(774), + [2604] = {.count = 1, .reusable = true}, SHIFT(819), + [2606] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(814), + [2609] = {.count = 1, .reusable = false}, SHIFT(825), + [2611] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1693), + [2614] = {.count = 1, .reusable = false}, SHIFT(841), + [2616] = {.count = 1, .reusable = true}, SHIFT(842), + [2618] = {.count = 1, .reusable = false}, SHIFT(842), + [2620] = {.count = 1, .reusable = true}, SHIFT(841), + [2622] = {.count = 1, .reusable = true}, SHIFT(811), + [2624] = {.count = 1, .reusable = true}, SHIFT(851), + [2626] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(846), + [2629] = {.count = 1, .reusable = true}, SHIFT(850), + [2631] = {.count = 1, .reusable = false}, SHIFT(857), + [2633] = {.count = 1, .reusable = true}, SHIFT(2500), + [2635] = {.count = 1, .reusable = true}, SHIFT(2494), + [2637] = {.count = 1, .reusable = false}, SHIFT(850), + [2639] = {.count = 1, .reusable = true}, SHIFT(2502), + [2641] = {.count = 1, .reusable = true}, SHIFT(1730), + [2643] = {.count = 1, .reusable = true}, SHIFT(2503), + [2645] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1733), + [2648] = {.count = 1, .reusable = false}, SHIFT(873), + [2650] = {.count = 1, .reusable = false}, SHIFT(874), + [2652] = {.count = 1, .reusable = false}, SHIFT(843), + [2654] = {.count = 1, .reusable = true}, SHIFT(883), + [2656] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(878), + [2659] = {.count = 1, .reusable = true}, SHIFT(882), + [2661] = {.count = 1, .reusable = false}, SHIFT(889), + [2663] = {.count = 1, .reusable = true}, SHIFT(2507), + [2665] = {.count = 1, .reusable = true}, SHIFT(2501), + [2667] = {.count = 1, .reusable = false}, SHIFT(882), + [2669] = {.count = 1, .reusable = true}, SHIFT(2509), + [2671] = {.count = 1, .reusable = true}, SHIFT(1770), + [2673] = {.count = 1, .reusable = true}, SHIFT(2510), + [2675] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1773), + [2678] = {.count = 1, .reusable = false}, SHIFT(905), + [2680] = {.count = 1, .reusable = false}, SHIFT(906), + [2682] = {.count = 1, .reusable = false}, SHIFT(875), + [2684] = {.count = 1, .reusable = true}, SHIFT(915), + [2686] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(910), + [2689] = {.count = 1, .reusable = true}, SHIFT(914), + [2691] = {.count = 1, .reusable = false}, SHIFT(914), + [2693] = {.count = 1, .reusable = false}, SHIFT(921), + [2695] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1813), + [2698] = {.count = 1, .reusable = false}, SHIFT(937), + [2700] = {.count = 1, .reusable = true}, SHIFT(938), + [2702] = {.count = 1, .reusable = true}, SHIFT(907), + [2704] = {.count = 1, .reusable = false}, SHIFT(938), + [2706] = {.count = 1, .reusable = true}, SHIFT(947), + [2708] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(942), + [2711] = {.count = 1, .reusable = true}, SHIFT(946), + [2713] = {.count = 1, .reusable = false}, SHIFT(946), + [2715] = {.count = 1, .reusable = false}, SHIFT(953), + [2717] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1853), + [2720] = {.count = 1, .reusable = false}, SHIFT(969), + [2722] = {.count = 1, .reusable = false}, SHIFT(970), + [2724] = {.count = 1, .reusable = false}, SHIFT(939), + [2726] = {.count = 1, .reusable = false}, SHIFT(1850), + [2728] = {.count = 1, .reusable = true}, SHIFT(979), + [2730] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(974), + [2733] = {.count = 1, .reusable = true}, SHIFT(978), + [2735] = {.count = 1, .reusable = false}, SHIFT(978), + [2737] = {.count = 1, .reusable = false}, SHIFT(1017), + [2739] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1893), + [2742] = {.count = 1, .reusable = true}, SHIFT(1011), + [2744] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1006), + [2747] = {.count = 1, .reusable = true}, SHIFT(1010), + [2749] = {.count = 1, .reusable = false}, SHIFT(1010), + [2751] = {.count = 1, .reusable = false}, SHIFT(1049), + [2753] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1933), + [2756] = {.count = 1, .reusable = false}, SHIFT(1001), + [2758] = {.count = 1, .reusable = false}, SHIFT(1002), + [2760] = {.count = 1, .reusable = false}, SHIFT(971), + [2762] = {.count = 1, .reusable = true}, SHIFT(1043), + [2764] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1038), + [2767] = {.count = 1, .reusable = true}, SHIFT(1042), + [2769] = {.count = 1, .reusable = false}, SHIFT(1081), + [2771] = {.count = 1, .reusable = true}, SHIFT(2542), + [2773] = {.count = 1, .reusable = true}, SHIFT(2536), + [2775] = {.count = 1, .reusable = false}, SHIFT(1042), + [2777] = {.count = 1, .reusable = true}, SHIFT(2544), + [2779] = {.count = 1, .reusable = true}, SHIFT(1970), + [2781] = {.count = 1, .reusable = true}, SHIFT(2545), + [2783] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1973), + [2786] = {.count = 1, .reusable = false}, SHIFT(1033), + [2788] = {.count = 1, .reusable = false}, SHIFT(1034), + [2790] = {.count = 1, .reusable = false}, SHIFT(1003), + [2792] = {.count = 1, .reusable = false}, SHIFT(1930), + [2794] = {.count = 1, .reusable = true}, SHIFT(1075), + [2796] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1070), + [2799] = {.count = 1, .reusable = true}, SHIFT(1074), + [2801] = {.count = 1, .reusable = false}, SHIFT(1113), + [2803] = {.count = 1, .reusable = true}, SHIFT(2549), + [2805] = {.count = 1, .reusable = true}, SHIFT(2543), + [2807] = {.count = 1, .reusable = false}, SHIFT(1074), + [2809] = {.count = 1, .reusable = true}, SHIFT(2551), + [2811] = {.count = 1, .reusable = true}, SHIFT(2010), + [2813] = {.count = 1, .reusable = true}, SHIFT(2552), + [2815] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2013), + [2818] = {.count = 1, .reusable = false}, SHIFT(1065), + [2820] = {.count = 1, .reusable = false}, SHIFT(1066), + [2822] = {.count = 1, .reusable = false}, SHIFT(1035), + [2824] = {.count = 1, .reusable = false}, SHIFT(1970), + [2826] = {.count = 1, .reusable = true}, SHIFT(1107), + [2828] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1102), + [2831] = {.count = 1, .reusable = true}, SHIFT(1106), + [2833] = {.count = 1, .reusable = false}, SHIFT(1106), + [2835] = {.count = 1, .reusable = false}, SHIFT(1145), + [2837] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2053), + [2840] = {.count = 1, .reusable = false}, SHIFT(1097), + [2842] = {.count = 1, .reusable = false}, SHIFT(1098), + [2844] = {.count = 1, .reusable = false}, SHIFT(1067), + [2846] = {.count = 1, .reusable = false}, SHIFT(2010), + [2848] = {.count = 1, .reusable = true}, SHIFT(1139), + [2850] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1134), + [2853] = {.count = 1, .reusable = true}, SHIFT(1138), + [2855] = {.count = 1, .reusable = false}, SHIFT(1138), + [2857] = {.count = 1, .reusable = false}, SHIFT(1177), + [2859] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2093), + [2862] = {.count = 1, .reusable = false}, SHIFT(1129), + [2864] = {.count = 1, .reusable = true}, SHIFT(1130), + [2866] = {.count = 1, .reusable = true}, SHIFT(1129), + [2868] = {.count = 1, .reusable = true}, SHIFT(1099), + [2870] = {.count = 1, .reusable = true}, SHIFT(1171), + [2872] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1166), + [2875] = {.count = 1, .reusable = true}, SHIFT(1170), + [2877] = {.count = 1, .reusable = false}, SHIFT(1170), + [2879] = {.count = 1, .reusable = false}, SHIFT(1209), + [2881] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2133), + [2884] = {.count = 1, .reusable = false}, SHIFT(1161), + [2886] = {.count = 1, .reusable = true}, SHIFT(1162), + [2888] = {.count = 1, .reusable = true}, SHIFT(1131), + [2890] = {.count = 1, .reusable = false}, SHIFT(1162), + [2892] = {.count = 1, .reusable = true}, SHIFT(1203), + [2894] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1198), + [2897] = {.count = 1, .reusable = true}, SHIFT(1202), + [2899] = {.count = 1, .reusable = false}, SHIFT(1202), + [2901] = {.count = 1, .reusable = false}, SHIFT(1241), + [2903] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2173), + [2906] = {.count = 1, .reusable = false}, SHIFT(1193), + [2908] = {.count = 1, .reusable = false}, SHIFT(1194), + [2910] = {.count = 1, .reusable = false}, SHIFT(1163), + [2912] = {.count = 1, .reusable = true}, SHIFT(1235), + [2914] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1230), + [2917] = {.count = 1, .reusable = true}, SHIFT(2593), + [2919] = {.count = 1, .reusable = true}, SHIFT(2210), + [2921] = {.count = 1, .reusable = true}, SHIFT(1234), + [2923] = {.count = 1, .reusable = false}, SHIFT(1234), + [2925] = {.count = 1, .reusable = true}, SHIFT(2594), + [2927] = {.count = 1, .reusable = false}, SHIFT(1273), + [2929] = {.count = 1, .reusable = true}, SHIFT(2578), + [2931] = {.count = 1, .reusable = true}, SHIFT(2591), + [2933] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2213), + [2936] = {.count = 1, .reusable = false}, SHIFT(1257), + [2938] = {.count = 1, .reusable = false}, SHIFT(1258), + [2940] = {.count = 1, .reusable = false}, SHIFT(1195), + [2942] = {.count = 1, .reusable = true}, SHIFT(1267), + [2944] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1262), + [2947] = {.count = 1, .reusable = true}, SHIFT(2599), + [2949] = {.count = 1, .reusable = true}, SHIFT(2250), + [2951] = {.count = 1, .reusable = true}, SHIFT(1266), + [2953] = {.count = 1, .reusable = false}, SHIFT(1266), + [2955] = {.count = 1, .reusable = true}, SHIFT(2600), + [2957] = {.count = 1, .reusable = false}, SHIFT(1305), + [2959] = {.count = 1, .reusable = true}, SHIFT(2585), + [2961] = {.count = 1, .reusable = true}, SHIFT(2598), + [2963] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2253), + [2966] = {.count = 1, .reusable = false}, SHIFT(1289), + [2968] = {.count = 1, .reusable = false}, SHIFT(1290), + [2970] = {.count = 1, .reusable = false}, SHIFT(1227), + [2972] = {.count = 1, .reusable = true}, SHIFT(1299), + [2974] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1294), + [2977] = {.count = 1, .reusable = true}, SHIFT(2605), + [2979] = {.count = 1, .reusable = true}, SHIFT(2290), + [2981] = {.count = 1, .reusable = true}, SHIFT(1298), + [2983] = {.count = 1, .reusable = false}, SHIFT(1298), + [2985] = {.count = 1, .reusable = true}, SHIFT(2606), + [2987] = {.count = 1, .reusable = false}, SHIFT(1329), + [2989] = {.count = 1, .reusable = true}, SHIFT(2592), + [2991] = {.count = 1, .reusable = true}, SHIFT(2604), + [2993] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2293), + [2996] = {.count = 1, .reusable = false}, SHIFT(1321), + [2998] = {.count = 1, .reusable = false}, SHIFT(1322), + [3000] = {.count = 1, .reusable = false}, SHIFT(1259), + [3002] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1323), + [3005] = {.count = 1, .reusable = false}, SHIFT(1343), + [3007] = {.count = 1, .reusable = false}, SHIFT(1344), + [3009] = {.count = 1, .reusable = false}, SHIFT(1291), + [3011] = {.count = 1, .reusable = false}, SHIFT(2290), + [3013] = {.count = 1, .reusable = true}, SHIFT(393), + [3015] = {.count = 1, .reusable = false}, SHIFT(393), + [3017] = {.count = 1, .reusable = true}, SHIFT(403), + [3019] = {.count = 1, .reusable = true}, SHIFT(404), + [3021] = {.count = 1, .reusable = true}, SHIFT(402), + [3023] = {.count = 1, .reusable = true}, SHIFT(406), + [3025] = {.count = 1, .reusable = false}, SHIFT(411), + [3027] = {.count = 1, .reusable = false}, SHIFT(1380), + [3029] = {.count = 1, .reusable = true}, SHIFT(427), + [3031] = {.count = 1, .reusable = true}, SHIFT(430), + [3033] = {.count = 1, .reusable = true}, SHIFT(431), + [3035] = {.count = 1, .reusable = false}, SHIFT(1390), + [3037] = {.count = 1, .reusable = true}, SHIFT(1390), + [3039] = {.count = 1, .reusable = true}, SHIFT(1389), + [3041] = {.count = 1, .reusable = true}, SHIFT(435), + [3043] = {.count = 1, .reusable = false}, SHIFT(1395), + [3045] = {.count = 1, .reusable = true}, SHIFT(1395), + [3047] = {.count = 1, .reusable = true}, SHIFT(1394), + [3049] = {.count = 1, .reusable = true}, SHIFT(436), + [3051] = {.count = 1, .reusable = true}, SHIFT(2416), + [3053] = {.count = 1, .reusable = true}, SHIFT(439), + [3055] = {.count = 1, .reusable = false}, SHIFT(438), + [3057] = {.count = 1, .reusable = true}, SHIFT(440), + [3059] = {.count = 1, .reusable = true}, SHIFT(445), + [3061] = {.count = 1, .reusable = true}, SHIFT(1399), + [3063] = {.count = 1, .reusable = true}, SHIFT(447), + [3065] = {.count = 1, .reusable = false}, SHIFT(1969), + [3067] = {.count = 1, .reusable = false}, SHIFT(447), + [3069] = {.count = 1, .reusable = true}, SHIFT(1064), + [3071] = {.count = 1, .reusable = true}, SHIFT(446), + [3073] = {.count = 1, .reusable = true}, SHIFT(449), + [3075] = {.count = 1, .reusable = false}, SHIFT(449), + [3077] = {.count = 1, .reusable = false}, SHIFT(452), + [3079] = {.count = 1, .reusable = false}, SHIFT(1403), + [3081] = {.count = 1, .reusable = true}, SHIFT(453), + [3083] = {.count = 1, .reusable = true}, SHIFT(1405), + [3085] = {.count = 1, .reusable = true}, SHIFT(459), + [3087] = {.count = 1, .reusable = true}, SHIFT(462), + [3089] = {.count = 1, .reusable = false}, SHIFT(2009), + [3091] = {.count = 1, .reusable = false}, SHIFT(462), + [3093] = {.count = 1, .reusable = true}, SHIFT(1096), + [3095] = {.count = 1, .reusable = false}, SHIFT(1408), + [3097] = {.count = 1, .reusable = true}, SHIFT(1408), + [3099] = {.count = 1, .reusable = true}, SHIFT(474), + [3101] = {.count = 1, .reusable = true}, SHIFT(1407), + [3103] = {.count = 1, .reusable = true}, SHIFT(1409), + [3105] = {.count = 1, .reusable = false}, SHIFT(1412), + [3107] = {.count = 1, .reusable = true}, SHIFT(1412), + [3109] = {.count = 1, .reusable = true}, SHIFT(1411), + [3111] = {.count = 1, .reusable = true}, SHIFT(475), + [3113] = {.count = 1, .reusable = true}, SHIFT(1413), + [3115] = {.count = 1, .reusable = false}, SHIFT(1413), + [3117] = {.count = 1, .reusable = false}, SHIFT(1417), + [3119] = {.count = 1, .reusable = true}, SHIFT(1417), + [3121] = {.count = 1, .reusable = true}, SHIFT(476), + [3123] = {.count = 1, .reusable = true}, SHIFT(1416), + [3125] = {.count = 1, .reusable = false}, SHIFT(478), + [3127] = {.count = 1, .reusable = true}, SHIFT(479), + [3129] = {.count = 1, .reusable = true}, SHIFT(483), + [3131] = {.count = 1, .reusable = true}, SHIFT(485), + [3133] = {.count = 1, .reusable = true}, SHIFT(1426), + [3135] = {.count = 1, .reusable = true}, SHIFT(486), + [3137] = {.count = 1, .reusable = true}, SHIFT(1427), + [3139] = {.count = 1, .reusable = true}, SHIFT(1428), + [3141] = {.count = 1, .reusable = false}, SHIFT(487), + [3143] = {.count = 1, .reusable = false}, SHIFT(489), + [3145] = {.count = 1, .reusable = true}, SHIFT(490), + [3147] = {.count = 1, .reusable = true}, SHIFT(1430), + [3149] = {.count = 1, .reusable = false}, SHIFT(1431), + [3151] = {.count = 1, .reusable = true}, SHIFT(1431), + [3153] = {.count = 1, .reusable = true}, SHIFT(493), + [3155] = {.count = 1, .reusable = true}, SHIFT(1432), + [3157] = {.count = 1, .reusable = true}, SHIFT(1433), + [3159] = {.count = 1, .reusable = false}, SHIFT(1433), + [3161] = {.count = 1, .reusable = false}, SHIFT(1437), + [3163] = {.count = 1, .reusable = true}, SHIFT(1437), + [3165] = {.count = 1, .reusable = true}, SHIFT(494), + [3167] = {.count = 1, .reusable = true}, SHIFT(1436), + [3169] = {.count = 1, .reusable = true}, SHIFT(495), + [3171] = {.count = 1, .reusable = false}, SHIFT(1438), + [3173] = {.count = 1, .reusable = true}, SHIFT(1438), + [3175] = {.count = 1, .reusable = true}, SHIFT(496), + [3177] = {.count = 1, .reusable = true}, SHIFT(498), + [3179] = {.count = 1, .reusable = false}, SHIFT(498), + [3181] = {.count = 1, .reusable = true}, SHIFT(499), + [3183] = {.count = 1, .reusable = false}, SHIFT(499), + [3185] = {.count = 1, .reusable = false}, SHIFT(500), + [3187] = {.count = 1, .reusable = false}, SHIFT(501), + [3189] = {.count = 1, .reusable = true}, SHIFT(502), + [3191] = {.count = 1, .reusable = true}, SHIFT(505), + [3193] = {.count = 1, .reusable = true}, SHIFT(507), + [3195] = {.count = 1, .reusable = false}, SHIFT(508), + [3197] = {.count = 1, .reusable = true}, SHIFT(509), + [3199] = {.count = 1, .reusable = true}, SHIFT(511), + [3201] = {.count = 1, .reusable = false}, SHIFT(1447), + [3203] = {.count = 1, .reusable = true}, SHIFT(1447), + [3205] = {.count = 1, .reusable = true}, SHIFT(512), + [3207] = {.count = 1, .reusable = false}, SHIFT(1448), + [3209] = {.count = 1, .reusable = true}, SHIFT(1448), + [3211] = {.count = 1, .reusable = true}, SHIFT(513), + [3213] = {.count = 1, .reusable = true}, SHIFT(514), + [3215] = {.count = 1, .reusable = true}, SHIFT(515), + [3217] = {.count = 1, .reusable = false}, SHIFT(516), + [3219] = {.count = 1, .reusable = true}, SHIFT(516), + [3221] = {.count = 1, .reusable = false}, SHIFT(517), + [3223] = {.count = 1, .reusable = true}, SHIFT(517), + [3225] = {.count = 1, .reusable = true}, SHIFT(1452), + [3227] = {.count = 1, .reusable = true}, SHIFT(522), + [3229] = {.count = 1, .reusable = true}, SHIFT(523), + [3231] = {.count = 1, .reusable = true}, SHIFT(524), + [3233] = {.count = 1, .reusable = true}, SHIFT(525), + [3235] = {.count = 1, .reusable = true}, SHIFT(526), + [3237] = {.count = 1, .reusable = true}, SHIFT(1456), + [3239] = {.count = 1, .reusable = true}, SHIFT(528), + [3241] = {.count = 1, .reusable = true}, SHIFT(529), + [3243] = {.count = 1, .reusable = true}, SHIFT(1458), + [3245] = {.count = 1, .reusable = true}, SHIFT(1460), + [3247] = {.count = 1, .reusable = true}, SHIFT(617), + [3249] = {.count = 1, .reusable = false}, SHIFT(617), + [3251] = {.count = 1, .reusable = true}, SHIFT(624), + [3253] = {.count = 1, .reusable = false}, SHIFT(624), + [3255] = {.count = 1, .reusable = false}, SHIFT(985), + [3257] = {.count = 1, .reusable = false}, SHIFT(1349), + [3259] = {.count = 1, .reusable = true}, SHIFT(546), + [3261] = {.count = 1, .reusable = false}, SHIFT(546), + [3263] = {.count = 1, .reusable = true}, SHIFT(555), + [3265] = {.count = 1, .reusable = false}, SHIFT(562), + [3267] = {.count = 1, .reusable = false}, SHIFT(1481), + [3269] = {.count = 1, .reusable = true}, SHIFT(578), + [3271] = {.count = 1, .reusable = true}, SHIFT(579), + [3273] = {.count = 1, .reusable = false}, SHIFT(1486), + [3275] = {.count = 1, .reusable = true}, SHIFT(1486), + [3277] = {.count = 1, .reusable = true}, SHIFT(1485), + [3279] = {.count = 1, .reusable = true}, SHIFT(583), + [3281] = {.count = 1, .reusable = false}, SHIFT(1491), + [3283] = {.count = 1, .reusable = true}, SHIFT(1491), + [3285] = {.count = 1, .reusable = true}, SHIFT(1490), + [3287] = {.count = 1, .reusable = true}, SHIFT(584), + [3289] = {.count = 1, .reusable = true}, SHIFT(1493), + [3291] = {.count = 1, .reusable = true}, SHIFT(590), + [3293] = {.count = 1, .reusable = false}, SHIFT(590), + [3295] = {.count = 1, .reusable = true}, SHIFT(633), + [3297] = {.count = 1, .reusable = true}, SHIFT(589), + [3299] = {.count = 1, .reusable = true}, SHIFT(592), + [3301] = {.count = 1, .reusable = false}, SHIFT(592), + [3303] = {.count = 1, .reusable = false}, SHIFT(595), + [3305] = {.count = 1, .reusable = false}, SHIFT(1494), + [3307] = {.count = 1, .reusable = true}, SHIFT(596), + [3309] = {.count = 1, .reusable = false}, SHIFT(1496), + [3311] = {.count = 1, .reusable = true}, SHIFT(1496), + [3313] = {.count = 1, .reusable = true}, SHIFT(609), + [3315] = {.count = 1, .reusable = true}, SHIFT(1495), + [3317] = {.count = 1, .reusable = true}, SHIFT(1497), + [3319] = {.count = 1, .reusable = false}, SHIFT(1500), + [3321] = {.count = 1, .reusable = true}, SHIFT(1500), + [3323] = {.count = 1, .reusable = true}, SHIFT(1499), + [3325] = {.count = 1, .reusable = true}, SHIFT(610), + [3327] = {.count = 1, .reusable = true}, SHIFT(1501), + [3329] = {.count = 1, .reusable = false}, SHIFT(1501), + [3331] = {.count = 1, .reusable = false}, SHIFT(1505), + [3333] = {.count = 1, .reusable = true}, SHIFT(1505), + [3335] = {.count = 1, .reusable = true}, SHIFT(611), + [3337] = {.count = 1, .reusable = true}, SHIFT(1504), + [3339] = {.count = 1, .reusable = true}, SHIFT(612), + [3341] = {.count = 1, .reusable = true}, SHIFT(615), + [3343] = {.count = 1, .reusable = false}, SHIFT(616), + [3345] = {.count = 1, .reusable = false}, SHIFT(1507), + [3347] = {.count = 1, .reusable = true}, SHIFT(1507), + [3349] = {.count = 1, .reusable = true}, SHIFT(619), + [3351] = {.count = 1, .reusable = true}, SHIFT(1508), + [3353] = {.count = 1, .reusable = true}, SHIFT(1509), + [3355] = {.count = 1, .reusable = false}, SHIFT(1509), + [3357] = {.count = 1, .reusable = false}, SHIFT(1513), + [3359] = {.count = 1, .reusable = true}, SHIFT(1513), + [3361] = {.count = 1, .reusable = true}, SHIFT(620), + [3363] = {.count = 1, .reusable = true}, SHIFT(1512), + [3365] = {.count = 1, .reusable = true}, SHIFT(621), + [3367] = {.count = 1, .reusable = false}, SHIFT(1514), + [3369] = {.count = 1, .reusable = true}, SHIFT(1514), + [3371] = {.count = 1, .reusable = true}, SHIFT(622), + [3373] = {.count = 1, .reusable = true}, SHIFT(623), + [3375] = {.count = 1, .reusable = true}, SHIFT(625), + [3377] = {.count = 1, .reusable = false}, SHIFT(1515), + [3379] = {.count = 1, .reusable = true}, SHIFT(1515), + [3381] = {.count = 1, .reusable = true}, SHIFT(626), + [3383] = {.count = 1, .reusable = false}, SHIFT(1516), + [3385] = {.count = 1, .reusable = true}, SHIFT(1516), + [3387] = {.count = 1, .reusable = true}, SHIFT(627), + [3389] = {.count = 1, .reusable = true}, SHIFT(628), + [3391] = {.count = 1, .reusable = true}, SHIFT(629), + [3393] = {.count = 1, .reusable = true}, SHIFT(630), + [3395] = {.count = 1, .reusable = true}, SHIFT(641), + [3397] = {.count = 1, .reusable = true}, SHIFT(640), + [3399] = {.count = 1, .reusable = true}, SHIFT(642), + [3401] = {.count = 1, .reusable = false}, SHIFT(1525), + [3403] = {.count = 1, .reusable = false}, SHIFT(644), + [3405] = {.count = 1, .reusable = true}, SHIFT(655), + [3407] = {.count = 1, .reusable = true}, SHIFT(656), + [3409] = {.count = 1, .reusable = false}, SHIFT(1530), + [3411] = {.count = 1, .reusable = true}, SHIFT(1530), + [3413] = {.count = 1, .reusable = true}, SHIFT(1529), + [3415] = {.count = 1, .reusable = true}, SHIFT(660), + [3417] = {.count = 1, .reusable = false}, SHIFT(1535), + [3419] = {.count = 1, .reusable = true}, SHIFT(1535), + [3421] = {.count = 1, .reusable = true}, SHIFT(1534), + [3423] = {.count = 1, .reusable = true}, SHIFT(661), + [3425] = {.count = 1, .reusable = true}, SHIFT(1536), + [3427] = {.count = 1, .reusable = true}, SHIFT(663), + [3429] = {.count = 1, .reusable = false}, SHIFT(663), + [3431] = {.count = 1, .reusable = true}, SHIFT(662), + [3433] = {.count = 1, .reusable = false}, SHIFT(665), + [3435] = {.count = 1, .reusable = false}, SHIFT(1537), + [3437] = {.count = 1, .reusable = true}, SHIFT(666), + [3439] = {.count = 1, .reusable = false}, SHIFT(1539), + [3441] = {.count = 1, .reusable = true}, SHIFT(1539), + [3443] = {.count = 1, .reusable = true}, SHIFT(675), + [3445] = {.count = 1, .reusable = true}, SHIFT(1538), + [3447] = {.count = 1, .reusable = true}, SHIFT(1540), + [3449] = {.count = 1, .reusable = false}, SHIFT(1543), + [3451] = {.count = 1, .reusable = true}, SHIFT(1543), + [3453] = {.count = 1, .reusable = true}, SHIFT(1542), + [3455] = {.count = 1, .reusable = true}, SHIFT(676), + [3457] = {.count = 1, .reusable = true}, SHIFT(1544), + [3459] = {.count = 1, .reusable = false}, SHIFT(1544), + [3461] = {.count = 1, .reusable = false}, SHIFT(1548), + [3463] = {.count = 1, .reusable = true}, SHIFT(1548), + [3465] = {.count = 1, .reusable = true}, SHIFT(677), + [3467] = {.count = 1, .reusable = true}, SHIFT(1547), + [3469] = {.count = 1, .reusable = true}, SHIFT(678), + [3471] = {.count = 1, .reusable = false}, SHIFT(679), + [3473] = {.count = 1, .reusable = false}, SHIFT(1550), + [3475] = {.count = 1, .reusable = true}, SHIFT(1550), + [3477] = {.count = 1, .reusable = true}, SHIFT(682), + [3479] = {.count = 1, .reusable = true}, SHIFT(1551), + [3481] = {.count = 1, .reusable = true}, SHIFT(1552), + [3483] = {.count = 1, .reusable = false}, SHIFT(1552), + [3485] = {.count = 1, .reusable = false}, SHIFT(1556), + [3487] = {.count = 1, .reusable = true}, SHIFT(1556), + [3489] = {.count = 1, .reusable = true}, SHIFT(683), + [3491] = {.count = 1, .reusable = true}, SHIFT(1555), + [3493] = {.count = 1, .reusable = true}, SHIFT(684), + [3495] = {.count = 1, .reusable = false}, SHIFT(1557), + [3497] = {.count = 1, .reusable = true}, SHIFT(1557), + [3499] = {.count = 1, .reusable = true}, SHIFT(685), + [3501] = {.count = 1, .reusable = true}, SHIFT(686), + [3503] = {.count = 1, .reusable = true}, SHIFT(688), + [3505] = {.count = 1, .reusable = false}, SHIFT(1558), + [3507] = {.count = 1, .reusable = true}, SHIFT(1558), + [3509] = {.count = 1, .reusable = true}, SHIFT(689), + [3511] = {.count = 1, .reusable = false}, SHIFT(1559), + [3513] = {.count = 1, .reusable = true}, SHIFT(1559), + [3515] = {.count = 1, .reusable = true}, SHIFT(690), + [3517] = {.count = 1, .reusable = true}, SHIFT(691), + [3519] = {.count = 1, .reusable = true}, SHIFT(692), + [3521] = {.count = 1, .reusable = true}, SHIFT(693), + [3523] = {.count = 1, .reusable = true}, SHIFT(697), + [3525] = {.count = 1, .reusable = true}, SHIFT(696), + [3527] = {.count = 1, .reusable = true}, SHIFT(698), + [3529] = {.count = 1, .reusable = false}, SHIFT(1568), + [3531] = {.count = 1, .reusable = false}, SHIFT(700), + [3533] = {.count = 1, .reusable = true}, SHIFT(705), + [3535] = {.count = 1, .reusable = true}, SHIFT(706), + [3537] = {.count = 1, .reusable = false}, SHIFT(1573), + [3539] = {.count = 1, .reusable = true}, SHIFT(1573), + [3541] = {.count = 1, .reusable = true}, SHIFT(1572), + [3543] = {.count = 1, .reusable = true}, SHIFT(710), + [3545] = {.count = 1, .reusable = false}, SHIFT(1578), + [3547] = {.count = 1, .reusable = true}, SHIFT(1578), + [3549] = {.count = 1, .reusable = true}, SHIFT(1577), + [3551] = {.count = 1, .reusable = true}, SHIFT(711), + [3553] = {.count = 1, .reusable = true}, SHIFT(1579), + [3555] = {.count = 1, .reusable = true}, SHIFT(713), + [3557] = {.count = 1, .reusable = false}, SHIFT(713), + [3559] = {.count = 1, .reusable = true}, SHIFT(840), + [3561] = {.count = 1, .reusable = true}, SHIFT(712), + [3563] = {.count = 1, .reusable = false}, SHIFT(715), + [3565] = {.count = 1, .reusable = false}, SHIFT(1580), + [3567] = {.count = 1, .reusable = true}, SHIFT(716), + [3569] = {.count = 1, .reusable = false}, SHIFT(1582), + [3571] = {.count = 1, .reusable = true}, SHIFT(1582), + [3573] = {.count = 1, .reusable = true}, SHIFT(718), + [3575] = {.count = 1, .reusable = true}, SHIFT(1581), + [3577] = {.count = 1, .reusable = true}, SHIFT(1583), + [3579] = {.count = 1, .reusable = false}, SHIFT(1586), + [3581] = {.count = 1, .reusable = true}, SHIFT(1586), + [3583] = {.count = 1, .reusable = true}, SHIFT(1585), + [3585] = {.count = 1, .reusable = true}, SHIFT(719), + [3587] = {.count = 1, .reusable = true}, SHIFT(1587), + [3589] = {.count = 1, .reusable = false}, SHIFT(1587), + [3591] = {.count = 1, .reusable = false}, SHIFT(1591), + [3593] = {.count = 1, .reusable = true}, SHIFT(1591), + [3595] = {.count = 1, .reusable = true}, SHIFT(720), + [3597] = {.count = 1, .reusable = true}, SHIFT(1590), + [3599] = {.count = 1, .reusable = true}, SHIFT(721), + [3601] = {.count = 1, .reusable = false}, SHIFT(722), + [3603] = {.count = 1, .reusable = false}, SHIFT(1593), + [3605] = {.count = 1, .reusable = true}, SHIFT(1593), + [3607] = {.count = 1, .reusable = true}, SHIFT(723), + [3609] = {.count = 1, .reusable = true}, SHIFT(1594), + [3611] = {.count = 1, .reusable = true}, SHIFT(1595), + [3613] = {.count = 1, .reusable = false}, SHIFT(1595), + [3615] = {.count = 1, .reusable = false}, SHIFT(1599), + [3617] = {.count = 1, .reusable = true}, SHIFT(1599), + [3619] = {.count = 1, .reusable = true}, SHIFT(724), + [3621] = {.count = 1, .reusable = true}, SHIFT(1598), + [3623] = {.count = 1, .reusable = true}, SHIFT(725), + [3625] = {.count = 1, .reusable = false}, SHIFT(1600), + [3627] = {.count = 1, .reusable = true}, SHIFT(1600), + [3629] = {.count = 1, .reusable = true}, SHIFT(726), + [3631] = {.count = 1, .reusable = true}, SHIFT(727), + [3633] = {.count = 1, .reusable = true}, SHIFT(728), + [3635] = {.count = 1, .reusable = false}, SHIFT(1601), + [3637] = {.count = 1, .reusable = true}, SHIFT(1601), + [3639] = {.count = 1, .reusable = true}, SHIFT(729), + [3641] = {.count = 1, .reusable = false}, SHIFT(1602), + [3643] = {.count = 1, .reusable = true}, SHIFT(1602), + [3645] = {.count = 1, .reusable = true}, SHIFT(730), + [3647] = {.count = 1, .reusable = true}, SHIFT(731), + [3649] = {.count = 1, .reusable = true}, SHIFT(732), + [3651] = {.count = 1, .reusable = true}, SHIFT(733), + [3653] = {.count = 1, .reusable = true}, SHIFT(736), + [3655] = {.count = 1, .reusable = true}, SHIFT(735), + [3657] = {.count = 1, .reusable = true}, SHIFT(737), + [3659] = {.count = 1, .reusable = false}, SHIFT(1611), + [3661] = {.count = 1, .reusable = false}, SHIFT(739), + [3663] = {.count = 1, .reusable = true}, SHIFT(742), + [3665] = {.count = 1, .reusable = true}, SHIFT(743), + [3667] = {.count = 1, .reusable = false}, SHIFT(1616), + [3669] = {.count = 1, .reusable = true}, SHIFT(1616), + [3671] = {.count = 1, .reusable = true}, SHIFT(1615), + [3673] = {.count = 1, .reusable = true}, SHIFT(747), + [3675] = {.count = 1, .reusable = false}, SHIFT(1621), + [3677] = {.count = 1, .reusable = true}, SHIFT(1621), + [3679] = {.count = 1, .reusable = true}, SHIFT(1620), + [3681] = {.count = 1, .reusable = true}, SHIFT(748), + [3683] = {.count = 1, .reusable = true}, SHIFT(1622), + [3685] = {.count = 1, .reusable = true}, SHIFT(750), + [3687] = {.count = 1, .reusable = false}, SHIFT(2289), + [3689] = {.count = 1, .reusable = false}, SHIFT(750), + [3691] = {.count = 1, .reusable = true}, SHIFT(1320), + [3693] = {.count = 1, .reusable = true}, SHIFT(749), + [3695] = {.count = 1, .reusable = false}, SHIFT(752), + [3697] = {.count = 1, .reusable = false}, SHIFT(1623), + [3699] = {.count = 1, .reusable = true}, SHIFT(753), + [3701] = {.count = 1, .reusable = false}, SHIFT(1625), + [3703] = {.count = 1, .reusable = true}, SHIFT(1625), + [3705] = {.count = 1, .reusable = true}, SHIFT(755), + [3707] = {.count = 1, .reusable = true}, SHIFT(1624), + [3709] = {.count = 1, .reusable = true}, SHIFT(1626), + [3711] = {.count = 1, .reusable = false}, SHIFT(1629), + [3713] = {.count = 1, .reusable = true}, SHIFT(1629), + [3715] = {.count = 1, .reusable = true}, SHIFT(1628), + [3717] = {.count = 1, .reusable = true}, SHIFT(756), + [3719] = {.count = 1, .reusable = true}, SHIFT(1630), + [3721] = {.count = 1, .reusable = false}, SHIFT(1630), + [3723] = {.count = 1, .reusable = false}, SHIFT(1634), + [3725] = {.count = 1, .reusable = true}, SHIFT(1634), + [3727] = {.count = 1, .reusable = true}, SHIFT(757), + [3729] = {.count = 1, .reusable = true}, SHIFT(1633), + [3731] = {.count = 1, .reusable = true}, SHIFT(758), + [3733] = {.count = 1, .reusable = false}, SHIFT(759), + [3735] = {.count = 1, .reusable = false}, SHIFT(1636), + [3737] = {.count = 1, .reusable = true}, SHIFT(1636), + [3739] = {.count = 1, .reusable = true}, SHIFT(760), + [3741] = {.count = 1, .reusable = true}, SHIFT(1637), + [3743] = {.count = 1, .reusable = true}, SHIFT(1638), + [3745] = {.count = 1, .reusable = false}, SHIFT(1638), + [3747] = {.count = 1, .reusable = false}, SHIFT(1642), + [3749] = {.count = 1, .reusable = true}, SHIFT(1642), + [3751] = {.count = 1, .reusable = true}, SHIFT(761), + [3753] = {.count = 1, .reusable = true}, SHIFT(1641), + [3755] = {.count = 1, .reusable = true}, SHIFT(762), + [3757] = {.count = 1, .reusable = false}, SHIFT(1643), + [3759] = {.count = 1, .reusable = true}, SHIFT(1643), + [3761] = {.count = 1, .reusable = true}, SHIFT(763), + [3763] = {.count = 1, .reusable = true}, SHIFT(764), + [3765] = {.count = 1, .reusable = true}, SHIFT(765), + [3767] = {.count = 1, .reusable = false}, SHIFT(1644), + [3769] = {.count = 1, .reusable = true}, SHIFT(1644), + [3771] = {.count = 1, .reusable = true}, SHIFT(766), + [3773] = {.count = 1, .reusable = false}, SHIFT(1645), + [3775] = {.count = 1, .reusable = true}, SHIFT(1645), + [3777] = {.count = 1, .reusable = true}, SHIFT(767), + [3779] = {.count = 1, .reusable = true}, SHIFT(768), + [3781] = {.count = 1, .reusable = true}, SHIFT(769), + [3783] = {.count = 1, .reusable = true}, SHIFT(770), + [3785] = {.count = 1, .reusable = false}, SHIFT(776), + [3787] = {.count = 1, .reusable = false}, SHIFT(1654), + [3789] = {.count = 1, .reusable = true}, SHIFT(779), + [3791] = {.count = 1, .reusable = true}, SHIFT(780), + [3793] = {.count = 1, .reusable = false}, SHIFT(1659), + [3795] = {.count = 1, .reusable = true}, SHIFT(1659), + [3797] = {.count = 1, .reusable = true}, SHIFT(1658), + [3799] = {.count = 1, .reusable = true}, SHIFT(784), + [3801] = {.count = 1, .reusable = false}, SHIFT(1664), + [3803] = {.count = 1, .reusable = true}, SHIFT(1664), + [3805] = {.count = 1, .reusable = true}, SHIFT(1663), + [3807] = {.count = 1, .reusable = true}, SHIFT(785), + [3809] = {.count = 1, .reusable = true}, SHIFT(1665), + [3811] = {.count = 1, .reusable = true}, SHIFT(787), + [3813] = {.count = 1, .reusable = false}, SHIFT(787), + [3815] = {.count = 1, .reusable = true}, SHIFT(1256), + [3817] = {.count = 1, .reusable = true}, SHIFT(786), + [3819] = {.count = 1, .reusable = false}, SHIFT(789), + [3821] = {.count = 1, .reusable = false}, SHIFT(1666), + [3823] = {.count = 1, .reusable = true}, SHIFT(790), + [3825] = {.count = 1, .reusable = false}, SHIFT(1668), + [3827] = {.count = 1, .reusable = true}, SHIFT(1668), + [3829] = {.count = 1, .reusable = true}, SHIFT(792), + [3831] = {.count = 1, .reusable = true}, SHIFT(1667), + [3833] = {.count = 1, .reusable = true}, SHIFT(1669), + [3835] = {.count = 1, .reusable = false}, SHIFT(1672), + [3837] = {.count = 1, .reusable = true}, SHIFT(1672), + [3839] = {.count = 1, .reusable = true}, SHIFT(1671), + [3841] = {.count = 1, .reusable = true}, SHIFT(793), + [3843] = {.count = 1, .reusable = true}, SHIFT(1673), + [3845] = {.count = 1, .reusable = false}, SHIFT(1673), + [3847] = {.count = 1, .reusable = false}, SHIFT(1677), + [3849] = {.count = 1, .reusable = true}, SHIFT(1677), + [3851] = {.count = 1, .reusable = true}, SHIFT(794), + [3853] = {.count = 1, .reusable = true}, SHIFT(1676), + [3855] = {.count = 1, .reusable = true}, SHIFT(795), + [3857] = {.count = 1, .reusable = false}, SHIFT(796), + [3859] = {.count = 1, .reusable = false}, SHIFT(1679), + [3861] = {.count = 1, .reusable = true}, SHIFT(1679), + [3863] = {.count = 1, .reusable = true}, SHIFT(797), + [3865] = {.count = 1, .reusable = true}, SHIFT(1680), + [3867] = {.count = 1, .reusable = true}, SHIFT(1681), + [3869] = {.count = 1, .reusable = false}, SHIFT(1681), + [3871] = {.count = 1, .reusable = false}, SHIFT(1685), + [3873] = {.count = 1, .reusable = true}, SHIFT(1685), + [3875] = {.count = 1, .reusable = true}, SHIFT(798), + [3877] = {.count = 1, .reusable = true}, SHIFT(1684), + [3879] = {.count = 1, .reusable = true}, SHIFT(799), + [3881] = {.count = 1, .reusable = false}, SHIFT(1686), + [3883] = {.count = 1, .reusable = true}, SHIFT(1686), + [3885] = {.count = 1, .reusable = true}, SHIFT(800), + [3887] = {.count = 1, .reusable = true}, SHIFT(801), + [3889] = {.count = 1, .reusable = true}, SHIFT(802), + [3891] = {.count = 1, .reusable = false}, SHIFT(1687), + [3893] = {.count = 1, .reusable = true}, SHIFT(1687), + [3895] = {.count = 1, .reusable = true}, SHIFT(803), + [3897] = {.count = 1, .reusable = false}, SHIFT(1688), + [3899] = {.count = 1, .reusable = true}, SHIFT(1688), + [3901] = {.count = 1, .reusable = true}, SHIFT(804), + [3903] = {.count = 1, .reusable = true}, SHIFT(805), + [3905] = {.count = 1, .reusable = true}, SHIFT(806), + [3907] = {.count = 1, .reusable = true}, SHIFT(807), + [3909] = {.count = 1, .reusable = false}, SHIFT(813), + [3911] = {.count = 1, .reusable = false}, SHIFT(1696), + [3913] = {.count = 1, .reusable = true}, SHIFT(816), + [3915] = {.count = 1, .reusable = true}, SHIFT(817), + [3917] = {.count = 1, .reusable = false}, SHIFT(1701), + [3919] = {.count = 1, .reusable = true}, SHIFT(1701), + [3921] = {.count = 1, .reusable = true}, SHIFT(1700), + [3923] = {.count = 1, .reusable = true}, SHIFT(821), + [3925] = {.count = 1, .reusable = false}, SHIFT(1706), + [3927] = {.count = 1, .reusable = true}, SHIFT(1706), + [3929] = {.count = 1, .reusable = true}, SHIFT(1705), + [3931] = {.count = 1, .reusable = true}, SHIFT(822), + [3933] = {.count = 1, .reusable = false}, SHIFT(823), + [3935] = {.count = 1, .reusable = false}, SHIFT(1707), + [3937] = {.count = 1, .reusable = true}, SHIFT(824), + [3939] = {.count = 1, .reusable = false}, SHIFT(1709), + [3941] = {.count = 1, .reusable = true}, SHIFT(1709), + [3943] = {.count = 1, .reusable = true}, SHIFT(826), + [3945] = {.count = 1, .reusable = true}, SHIFT(1708), + [3947] = {.count = 1, .reusable = true}, SHIFT(1710), + [3949] = {.count = 1, .reusable = false}, SHIFT(1713), + [3951] = {.count = 1, .reusable = true}, SHIFT(1713), + [3953] = {.count = 1, .reusable = true}, SHIFT(1712), + [3955] = {.count = 1, .reusable = true}, SHIFT(827), + [3957] = {.count = 1, .reusable = true}, SHIFT(1714), + [3959] = {.count = 1, .reusable = false}, SHIFT(1714), + [3961] = {.count = 1, .reusable = false}, SHIFT(1718), + [3963] = {.count = 1, .reusable = true}, SHIFT(1718), + [3965] = {.count = 1, .reusable = true}, SHIFT(828), + [3967] = {.count = 1, .reusable = true}, SHIFT(1717), + [3969] = {.count = 1, .reusable = false}, SHIFT(829), + [3971] = {.count = 1, .reusable = false}, SHIFT(1719), + [3973] = {.count = 1, .reusable = true}, SHIFT(1719), + [3975] = {.count = 1, .reusable = true}, SHIFT(830), + [3977] = {.count = 1, .reusable = true}, SHIFT(1720), + [3979] = {.count = 1, .reusable = true}, SHIFT(1721), + [3981] = {.count = 1, .reusable = false}, SHIFT(1721), + [3983] = {.count = 1, .reusable = false}, SHIFT(1725), + [3985] = {.count = 1, .reusable = true}, SHIFT(1725), + [3987] = {.count = 1, .reusable = true}, SHIFT(831), + [3989] = {.count = 1, .reusable = true}, SHIFT(1724), + [3991] = {.count = 1, .reusable = true}, SHIFT(832), + [3993] = {.count = 1, .reusable = false}, SHIFT(1726), + [3995] = {.count = 1, .reusable = true}, SHIFT(1726), + [3997] = {.count = 1, .reusable = true}, SHIFT(833), + [3999] = {.count = 1, .reusable = true}, SHIFT(834), + [4001] = {.count = 1, .reusable = false}, SHIFT(1727), + [4003] = {.count = 1, .reusable = true}, SHIFT(1727), + [4005] = {.count = 1, .reusable = true}, SHIFT(835), + [4007] = {.count = 1, .reusable = false}, SHIFT(1728), + [4009] = {.count = 1, .reusable = true}, SHIFT(1728), + [4011] = {.count = 1, .reusable = true}, SHIFT(836), + [4013] = {.count = 1, .reusable = true}, SHIFT(837), + [4015] = {.count = 1, .reusable = true}, SHIFT(838), + [4017] = {.count = 1, .reusable = true}, SHIFT(839), + [4019] = {.count = 1, .reusable = true}, SHIFT(874), + [4021] = {.count = 1, .reusable = true}, SHIFT(843), + [4023] = {.count = 1, .reusable = true}, SHIFT(873), + [4025] = {.count = 1, .reusable = false}, SHIFT(845), + [4027] = {.count = 1, .reusable = false}, SHIFT(1736), + [4029] = {.count = 1, .reusable = true}, SHIFT(848), + [4031] = {.count = 1, .reusable = true}, SHIFT(849), + [4033] = {.count = 1, .reusable = false}, SHIFT(1741), + [4035] = {.count = 1, .reusable = true}, SHIFT(1741), + [4037] = {.count = 1, .reusable = true}, SHIFT(1740), + [4039] = {.count = 1, .reusable = true}, SHIFT(853), + [4041] = {.count = 1, .reusable = false}, SHIFT(1746), + [4043] = {.count = 1, .reusable = true}, SHIFT(1746), + [4045] = {.count = 1, .reusable = true}, SHIFT(1745), + [4047] = {.count = 1, .reusable = true}, SHIFT(854), + [4049] = {.count = 1, .reusable = false}, SHIFT(855), + [4051] = {.count = 1, .reusable = false}, SHIFT(1747), + [4053] = {.count = 1, .reusable = true}, SHIFT(856), + [4055] = {.count = 1, .reusable = false}, SHIFT(1749), + [4057] = {.count = 1, .reusable = true}, SHIFT(1749), + [4059] = {.count = 1, .reusable = true}, SHIFT(858), + [4061] = {.count = 1, .reusable = true}, SHIFT(1748), + [4063] = {.count = 1, .reusable = true}, SHIFT(1750), + [4065] = {.count = 1, .reusable = false}, SHIFT(1753), + [4067] = {.count = 1, .reusable = true}, SHIFT(1753), + [4069] = {.count = 1, .reusable = true}, SHIFT(1752), + [4071] = {.count = 1, .reusable = true}, SHIFT(859), + [4073] = {.count = 1, .reusable = true}, SHIFT(1754), + [4075] = {.count = 1, .reusable = false}, SHIFT(1754), + [4077] = {.count = 1, .reusable = false}, SHIFT(1758), + [4079] = {.count = 1, .reusable = true}, SHIFT(1758), + [4081] = {.count = 1, .reusable = true}, SHIFT(860), + [4083] = {.count = 1, .reusable = true}, SHIFT(1757), + [4085] = {.count = 1, .reusable = false}, SHIFT(861), + [4087] = {.count = 1, .reusable = false}, SHIFT(1759), + [4089] = {.count = 1, .reusable = true}, SHIFT(1759), + [4091] = {.count = 1, .reusable = true}, SHIFT(862), + [4093] = {.count = 1, .reusable = true}, SHIFT(1760), + [4095] = {.count = 1, .reusable = true}, SHIFT(1761), + [4097] = {.count = 1, .reusable = false}, SHIFT(1761), + [4099] = {.count = 1, .reusable = false}, SHIFT(1765), + [4101] = {.count = 1, .reusable = true}, SHIFT(1765), + [4103] = {.count = 1, .reusable = true}, SHIFT(863), + [4105] = {.count = 1, .reusable = true}, SHIFT(1764), + [4107] = {.count = 1, .reusable = true}, SHIFT(864), + [4109] = {.count = 1, .reusable = false}, SHIFT(1766), + [4111] = {.count = 1, .reusable = true}, SHIFT(1766), + [4113] = {.count = 1, .reusable = true}, SHIFT(865), + [4115] = {.count = 1, .reusable = true}, SHIFT(866), + [4117] = {.count = 1, .reusable = false}, SHIFT(1767), + [4119] = {.count = 1, .reusable = true}, SHIFT(1767), + [4121] = {.count = 1, .reusable = true}, SHIFT(867), + [4123] = {.count = 1, .reusable = false}, SHIFT(1768), + [4125] = {.count = 1, .reusable = true}, SHIFT(1768), + [4127] = {.count = 1, .reusable = true}, SHIFT(868), + [4129] = {.count = 1, .reusable = true}, SHIFT(869), + [4131] = {.count = 1, .reusable = true}, SHIFT(870), + [4133] = {.count = 1, .reusable = true}, SHIFT(871), + [4135] = {.count = 1, .reusable = true}, SHIFT(906), + [4137] = {.count = 1, .reusable = true}, SHIFT(875), + [4139] = {.count = 1, .reusable = true}, SHIFT(905), + [4141] = {.count = 1, .reusable = false}, SHIFT(877), + [4143] = {.count = 1, .reusable = false}, SHIFT(1776), + [4145] = {.count = 1, .reusable = true}, SHIFT(880), + [4147] = {.count = 1, .reusable = true}, SHIFT(881), + [4149] = {.count = 1, .reusable = false}, SHIFT(1781), + [4151] = {.count = 1, .reusable = true}, SHIFT(1781), + [4153] = {.count = 1, .reusable = true}, SHIFT(1780), + [4155] = {.count = 1, .reusable = true}, SHIFT(885), + [4157] = {.count = 1, .reusable = false}, SHIFT(1786), + [4159] = {.count = 1, .reusable = true}, SHIFT(1786), + [4161] = {.count = 1, .reusable = true}, SHIFT(1785), + [4163] = {.count = 1, .reusable = true}, SHIFT(886), + [4165] = {.count = 1, .reusable = false}, SHIFT(887), + [4167] = {.count = 1, .reusable = false}, SHIFT(1787), + [4169] = {.count = 1, .reusable = true}, SHIFT(888), + [4171] = {.count = 1, .reusable = false}, SHIFT(1789), + [4173] = {.count = 1, .reusable = true}, SHIFT(1789), + [4175] = {.count = 1, .reusable = true}, SHIFT(890), + [4177] = {.count = 1, .reusable = true}, SHIFT(1788), + [4179] = {.count = 1, .reusable = true}, SHIFT(1790), + [4181] = {.count = 1, .reusable = false}, SHIFT(1793), + [4183] = {.count = 1, .reusable = true}, SHIFT(1793), + [4185] = {.count = 1, .reusable = true}, SHIFT(1792), + [4187] = {.count = 1, .reusable = true}, SHIFT(891), + [4189] = {.count = 1, .reusable = true}, SHIFT(1794), + [4191] = {.count = 1, .reusable = false}, SHIFT(1794), + [4193] = {.count = 1, .reusable = false}, SHIFT(1798), + [4195] = {.count = 1, .reusable = true}, SHIFT(1798), + [4197] = {.count = 1, .reusable = true}, SHIFT(892), + [4199] = {.count = 1, .reusable = true}, SHIFT(1797), + [4201] = {.count = 1, .reusable = false}, SHIFT(893), + [4203] = {.count = 1, .reusable = false}, SHIFT(1799), + [4205] = {.count = 1, .reusable = true}, SHIFT(1799), + [4207] = {.count = 1, .reusable = true}, SHIFT(894), + [4209] = {.count = 1, .reusable = true}, SHIFT(1800), + [4211] = {.count = 1, .reusable = true}, SHIFT(1801), + [4213] = {.count = 1, .reusable = false}, SHIFT(1801), + [4215] = {.count = 1, .reusable = false}, SHIFT(1805), + [4217] = {.count = 1, .reusable = true}, SHIFT(1805), + [4219] = {.count = 1, .reusable = true}, SHIFT(895), + [4221] = {.count = 1, .reusable = true}, SHIFT(1804), + [4223] = {.count = 1, .reusable = true}, SHIFT(896), + [4225] = {.count = 1, .reusable = false}, SHIFT(1806), + [4227] = {.count = 1, .reusable = true}, SHIFT(1806), + [4229] = {.count = 1, .reusable = true}, SHIFT(897), + [4231] = {.count = 1, .reusable = true}, SHIFT(898), + [4233] = {.count = 1, .reusable = false}, SHIFT(1807), + [4235] = {.count = 1, .reusable = true}, SHIFT(1807), + [4237] = {.count = 1, .reusable = true}, SHIFT(899), + [4239] = {.count = 1, .reusable = false}, SHIFT(1808), + [4241] = {.count = 1, .reusable = true}, SHIFT(1808), + [4243] = {.count = 1, .reusable = true}, SHIFT(900), + [4245] = {.count = 1, .reusable = true}, SHIFT(901), + [4247] = {.count = 1, .reusable = true}, SHIFT(902), + [4249] = {.count = 1, .reusable = true}, SHIFT(903), + [4251] = {.count = 1, .reusable = true}, SHIFT(937), + [4253] = {.count = 1, .reusable = false}, SHIFT(1816), + [4255] = {.count = 1, .reusable = false}, SHIFT(909), + [4257] = {.count = 1, .reusable = true}, SHIFT(912), + [4259] = {.count = 1, .reusable = true}, SHIFT(913), + [4261] = {.count = 1, .reusable = false}, SHIFT(1821), + [4263] = {.count = 1, .reusable = true}, SHIFT(1821), + [4265] = {.count = 1, .reusable = true}, SHIFT(1820), + [4267] = {.count = 1, .reusable = true}, SHIFT(917), + [4269] = {.count = 1, .reusable = false}, SHIFT(1826), + [4271] = {.count = 1, .reusable = true}, SHIFT(1826), + [4273] = {.count = 1, .reusable = true}, SHIFT(1825), + [4275] = {.count = 1, .reusable = true}, SHIFT(918), + [4277] = {.count = 1, .reusable = false}, SHIFT(919), + [4279] = {.count = 1, .reusable = false}, SHIFT(1827), + [4281] = {.count = 1, .reusable = true}, SHIFT(920), + [4283] = {.count = 1, .reusable = false}, SHIFT(1829), + [4285] = {.count = 1, .reusable = true}, SHIFT(1829), + [4287] = {.count = 1, .reusable = true}, SHIFT(922), + [4289] = {.count = 1, .reusable = true}, SHIFT(1828), + [4291] = {.count = 1, .reusable = true}, SHIFT(1830), + [4293] = {.count = 1, .reusable = false}, SHIFT(1833), + [4295] = {.count = 1, .reusable = true}, SHIFT(1833), + [4297] = {.count = 1, .reusable = true}, SHIFT(1832), + [4299] = {.count = 1, .reusable = true}, SHIFT(923), + [4301] = {.count = 1, .reusable = true}, SHIFT(1834), + [4303] = {.count = 1, .reusable = false}, SHIFT(1834), + [4305] = {.count = 1, .reusable = false}, SHIFT(1838), + [4307] = {.count = 1, .reusable = true}, SHIFT(1838), + [4309] = {.count = 1, .reusable = true}, SHIFT(924), + [4311] = {.count = 1, .reusable = true}, SHIFT(1837), + [4313] = {.count = 1, .reusable = false}, SHIFT(925), + [4315] = {.count = 1, .reusable = false}, SHIFT(1839), + [4317] = {.count = 1, .reusable = true}, SHIFT(1839), + [4319] = {.count = 1, .reusable = true}, SHIFT(926), + [4321] = {.count = 1, .reusable = true}, SHIFT(1840), + [4323] = {.count = 1, .reusable = true}, SHIFT(1841), + [4325] = {.count = 1, .reusable = false}, SHIFT(1841), + [4327] = {.count = 1, .reusable = false}, SHIFT(1845), + [4329] = {.count = 1, .reusable = true}, SHIFT(1845), + [4331] = {.count = 1, .reusable = true}, SHIFT(927), + [4333] = {.count = 1, .reusable = true}, SHIFT(1844), + [4335] = {.count = 1, .reusable = true}, SHIFT(928), + [4337] = {.count = 1, .reusable = false}, SHIFT(1846), + [4339] = {.count = 1, .reusable = true}, SHIFT(1846), + [4341] = {.count = 1, .reusable = true}, SHIFT(929), + [4343] = {.count = 1, .reusable = true}, SHIFT(930), + [4345] = {.count = 1, .reusable = false}, SHIFT(1847), + [4347] = {.count = 1, .reusable = true}, SHIFT(1847), + [4349] = {.count = 1, .reusable = true}, SHIFT(931), + [4351] = {.count = 1, .reusable = false}, SHIFT(1848), + [4353] = {.count = 1, .reusable = true}, SHIFT(1848), + [4355] = {.count = 1, .reusable = true}, SHIFT(932), + [4357] = {.count = 1, .reusable = true}, SHIFT(933), + [4359] = {.count = 1, .reusable = true}, SHIFT(934), + [4361] = {.count = 1, .reusable = true}, SHIFT(935), + [4363] = {.count = 1, .reusable = true}, SHIFT(970), + [4365] = {.count = 1, .reusable = true}, SHIFT(969), + [4367] = {.count = 1, .reusable = true}, SHIFT(939), + [4369] = {.count = 1, .reusable = false}, SHIFT(1856), + [4371] = {.count = 1, .reusable = false}, SHIFT(941), + [4373] = {.count = 1, .reusable = true}, SHIFT(944), + [4375] = {.count = 1, .reusable = true}, SHIFT(945), + [4377] = {.count = 1, .reusable = false}, SHIFT(1861), + [4379] = {.count = 1, .reusable = true}, SHIFT(1861), + [4381] = {.count = 1, .reusable = true}, SHIFT(1860), + [4383] = {.count = 1, .reusable = true}, SHIFT(949), + [4385] = {.count = 1, .reusable = false}, SHIFT(1866), + [4387] = {.count = 1, .reusable = true}, SHIFT(1866), + [4389] = {.count = 1, .reusable = true}, SHIFT(1865), + [4391] = {.count = 1, .reusable = true}, SHIFT(950), + [4393] = {.count = 1, .reusable = false}, SHIFT(951), + [4395] = {.count = 1, .reusable = false}, SHIFT(1867), + [4397] = {.count = 1, .reusable = true}, SHIFT(952), + [4399] = {.count = 1, .reusable = false}, SHIFT(1869), + [4401] = {.count = 1, .reusable = true}, SHIFT(1869), + [4403] = {.count = 1, .reusable = true}, SHIFT(954), + [4405] = {.count = 1, .reusable = true}, SHIFT(1868), + [4407] = {.count = 1, .reusable = true}, SHIFT(1870), + [4409] = {.count = 1, .reusable = false}, SHIFT(1873), + [4411] = {.count = 1, .reusable = true}, SHIFT(1873), + [4413] = {.count = 1, .reusable = true}, SHIFT(1872), + [4415] = {.count = 1, .reusable = true}, SHIFT(955), + [4417] = {.count = 1, .reusable = true}, SHIFT(1874), + [4419] = {.count = 1, .reusable = false}, SHIFT(1874), + [4421] = {.count = 1, .reusable = false}, SHIFT(1878), + [4423] = {.count = 1, .reusable = true}, SHIFT(1878), + [4425] = {.count = 1, .reusable = true}, SHIFT(956), + [4427] = {.count = 1, .reusable = true}, SHIFT(1877), + [4429] = {.count = 1, .reusable = false}, SHIFT(957), + [4431] = {.count = 1, .reusable = false}, SHIFT(1879), + [4433] = {.count = 1, .reusable = true}, SHIFT(1879), + [4435] = {.count = 1, .reusable = true}, SHIFT(958), + [4437] = {.count = 1, .reusable = true}, SHIFT(1880), + [4439] = {.count = 1, .reusable = true}, SHIFT(1881), + [4441] = {.count = 1, .reusable = false}, SHIFT(1881), + [4443] = {.count = 1, .reusable = false}, SHIFT(1885), + [4445] = {.count = 1, .reusable = true}, SHIFT(1885), + [4447] = {.count = 1, .reusable = true}, SHIFT(959), + [4449] = {.count = 1, .reusable = true}, SHIFT(1884), + [4451] = {.count = 1, .reusable = true}, SHIFT(960), + [4453] = {.count = 1, .reusable = false}, SHIFT(1886), + [4455] = {.count = 1, .reusable = true}, SHIFT(1886), + [4457] = {.count = 1, .reusable = true}, SHIFT(961), + [4459] = {.count = 1, .reusable = true}, SHIFT(962), + [4461] = {.count = 1, .reusable = false}, SHIFT(1887), + [4463] = {.count = 1, .reusable = true}, SHIFT(1887), + [4465] = {.count = 1, .reusable = true}, SHIFT(963), + [4467] = {.count = 1, .reusable = false}, SHIFT(1888), + [4469] = {.count = 1, .reusable = true}, SHIFT(1888), + [4471] = {.count = 1, .reusable = true}, SHIFT(964), + [4473] = {.count = 1, .reusable = true}, SHIFT(965), + [4475] = {.count = 1, .reusable = true}, SHIFT(966), + [4477] = {.count = 1, .reusable = true}, SHIFT(967), + [4479] = {.count = 1, .reusable = true}, SHIFT(1002), + [4481] = {.count = 1, .reusable = true}, SHIFT(1001), + [4483] = {.count = 1, .reusable = true}, SHIFT(971), + [4485] = {.count = 1, .reusable = false}, SHIFT(1896), + [4487] = {.count = 1, .reusable = false}, SHIFT(973), + [4489] = {.count = 1, .reusable = true}, SHIFT(976), + [4491] = {.count = 1, .reusable = true}, SHIFT(977), + [4493] = {.count = 1, .reusable = false}, SHIFT(1901), + [4495] = {.count = 1, .reusable = true}, SHIFT(1901), + [4497] = {.count = 1, .reusable = true}, SHIFT(1900), + [4499] = {.count = 1, .reusable = true}, SHIFT(981), + [4501] = {.count = 1, .reusable = false}, SHIFT(1906), + [4503] = {.count = 1, .reusable = true}, SHIFT(1906), + [4505] = {.count = 1, .reusable = true}, SHIFT(1905), + [4507] = {.count = 1, .reusable = true}, SHIFT(982), + [4509] = {.count = 1, .reusable = false}, SHIFT(983), + [4511] = {.count = 1, .reusable = false}, SHIFT(1907), + [4513] = {.count = 1, .reusable = true}, SHIFT(984), + [4515] = {.count = 1, .reusable = false}, SHIFT(1909), + [4517] = {.count = 1, .reusable = true}, SHIFT(1909), + [4519] = {.count = 1, .reusable = true}, SHIFT(986), + [4521] = {.count = 1, .reusable = true}, SHIFT(1908), + [4523] = {.count = 1, .reusable = true}, SHIFT(1910), + [4525] = {.count = 1, .reusable = false}, SHIFT(1913), + [4527] = {.count = 1, .reusable = true}, SHIFT(1913), + [4529] = {.count = 1, .reusable = true}, SHIFT(1912), + [4531] = {.count = 1, .reusable = true}, SHIFT(987), + [4533] = {.count = 1, .reusable = true}, SHIFT(1914), + [4535] = {.count = 1, .reusable = false}, SHIFT(1914), + [4537] = {.count = 1, .reusable = false}, SHIFT(1918), + [4539] = {.count = 1, .reusable = true}, SHIFT(1918), + [4541] = {.count = 1, .reusable = true}, SHIFT(988), + [4543] = {.count = 1, .reusable = true}, SHIFT(1917), + [4545] = {.count = 1, .reusable = false}, SHIFT(989), + [4547] = {.count = 1, .reusable = false}, SHIFT(1919), + [4549] = {.count = 1, .reusable = true}, SHIFT(1919), + [4551] = {.count = 1, .reusable = true}, SHIFT(990), + [4553] = {.count = 1, .reusable = true}, SHIFT(1920), + [4555] = {.count = 1, .reusable = true}, SHIFT(1921), + [4557] = {.count = 1, .reusable = false}, SHIFT(1921), + [4559] = {.count = 1, .reusable = false}, SHIFT(1925), + [4561] = {.count = 1, .reusable = true}, SHIFT(1925), + [4563] = {.count = 1, .reusable = true}, SHIFT(991), + [4565] = {.count = 1, .reusable = true}, SHIFT(1924), + [4567] = {.count = 1, .reusable = true}, SHIFT(992), + [4569] = {.count = 1, .reusable = false}, SHIFT(1926), + [4571] = {.count = 1, .reusable = true}, SHIFT(1926), + [4573] = {.count = 1, .reusable = true}, SHIFT(993), + [4575] = {.count = 1, .reusable = true}, SHIFT(994), + [4577] = {.count = 1, .reusable = false}, SHIFT(1927), + [4579] = {.count = 1, .reusable = true}, SHIFT(1927), + [4581] = {.count = 1, .reusable = true}, SHIFT(995), + [4583] = {.count = 1, .reusable = false}, SHIFT(1928), + [4585] = {.count = 1, .reusable = true}, SHIFT(1928), + [4587] = {.count = 1, .reusable = true}, SHIFT(996), + [4589] = {.count = 1, .reusable = true}, SHIFT(997), + [4591] = {.count = 1, .reusable = true}, SHIFT(998), + [4593] = {.count = 1, .reusable = true}, SHIFT(999), + [4595] = {.count = 1, .reusable = true}, SHIFT(1034), + [4597] = {.count = 1, .reusable = true}, SHIFT(1033), + [4599] = {.count = 1, .reusable = true}, SHIFT(1003), + [4601] = {.count = 1, .reusable = false}, SHIFT(1936), + [4603] = {.count = 1, .reusable = false}, SHIFT(1005), + [4605] = {.count = 1, .reusable = true}, SHIFT(1008), + [4607] = {.count = 1, .reusable = true}, SHIFT(1009), + [4609] = {.count = 1, .reusable = false}, SHIFT(1941), + [4611] = {.count = 1, .reusable = true}, SHIFT(1941), + [4613] = {.count = 1, .reusable = true}, SHIFT(1940), + [4615] = {.count = 1, .reusable = true}, SHIFT(1013), + [4617] = {.count = 1, .reusable = false}, SHIFT(1946), + [4619] = {.count = 1, .reusable = true}, SHIFT(1946), + [4621] = {.count = 1, .reusable = true}, SHIFT(1945), + [4623] = {.count = 1, .reusable = true}, SHIFT(1014), + [4625] = {.count = 1, .reusable = false}, SHIFT(1015), + [4627] = {.count = 1, .reusable = false}, SHIFT(1947), + [4629] = {.count = 1, .reusable = true}, SHIFT(1016), + [4631] = {.count = 1, .reusable = false}, SHIFT(1949), + [4633] = {.count = 1, .reusable = true}, SHIFT(1949), + [4635] = {.count = 1, .reusable = true}, SHIFT(1018), + [4637] = {.count = 1, .reusable = true}, SHIFT(1948), + [4639] = {.count = 1, .reusable = true}, SHIFT(1950), + [4641] = {.count = 1, .reusable = false}, SHIFT(1953), + [4643] = {.count = 1, .reusable = true}, SHIFT(1953), + [4645] = {.count = 1, .reusable = true}, SHIFT(1952), + [4647] = {.count = 1, .reusable = true}, SHIFT(1019), + [4649] = {.count = 1, .reusable = true}, SHIFT(1954), + [4651] = {.count = 1, .reusable = false}, SHIFT(1954), + [4653] = {.count = 1, .reusable = false}, SHIFT(1958), + [4655] = {.count = 1, .reusable = true}, SHIFT(1958), + [4657] = {.count = 1, .reusable = true}, SHIFT(1020), + [4659] = {.count = 1, .reusable = true}, SHIFT(1957), + [4661] = {.count = 1, .reusable = false}, SHIFT(1021), + [4663] = {.count = 1, .reusable = false}, SHIFT(1959), + [4665] = {.count = 1, .reusable = true}, SHIFT(1959), + [4667] = {.count = 1, .reusable = true}, SHIFT(1022), + [4669] = {.count = 1, .reusable = true}, SHIFT(1960), + [4671] = {.count = 1, .reusable = true}, SHIFT(1961), + [4673] = {.count = 1, .reusable = false}, SHIFT(1961), + [4675] = {.count = 1, .reusable = false}, SHIFT(1965), + [4677] = {.count = 1, .reusable = true}, SHIFT(1965), + [4679] = {.count = 1, .reusable = true}, SHIFT(1023), + [4681] = {.count = 1, .reusable = true}, SHIFT(1964), + [4683] = {.count = 1, .reusable = true}, SHIFT(1024), + [4685] = {.count = 1, .reusable = false}, SHIFT(1966), + [4687] = {.count = 1, .reusable = true}, SHIFT(1966), + [4689] = {.count = 1, .reusable = true}, SHIFT(1025), + [4691] = {.count = 1, .reusable = true}, SHIFT(1026), + [4693] = {.count = 1, .reusable = false}, SHIFT(1967), + [4695] = {.count = 1, .reusable = true}, SHIFT(1967), + [4697] = {.count = 1, .reusable = true}, SHIFT(1027), + [4699] = {.count = 1, .reusable = false}, SHIFT(1968), + [4701] = {.count = 1, .reusable = true}, SHIFT(1968), + [4703] = {.count = 1, .reusable = true}, SHIFT(1028), + [4705] = {.count = 1, .reusable = true}, SHIFT(1029), + [4707] = {.count = 1, .reusable = true}, SHIFT(1030), + [4709] = {.count = 1, .reusable = true}, SHIFT(1031), + [4711] = {.count = 1, .reusable = true}, SHIFT(1066), + [4713] = {.count = 1, .reusable = true}, SHIFT(1035), + [4715] = {.count = 1, .reusable = true}, SHIFT(1065), + [4717] = {.count = 1, .reusable = false}, SHIFT(1037), + [4719] = {.count = 1, .reusable = false}, SHIFT(1976), + [4721] = {.count = 1, .reusable = true}, SHIFT(1040), + [4723] = {.count = 1, .reusable = true}, SHIFT(1041), + [4725] = {.count = 1, .reusable = false}, SHIFT(1981), + [4727] = {.count = 1, .reusable = true}, SHIFT(1981), + [4729] = {.count = 1, .reusable = true}, SHIFT(1980), + [4731] = {.count = 1, .reusable = true}, SHIFT(1045), + [4733] = {.count = 1, .reusable = false}, SHIFT(1986), + [4735] = {.count = 1, .reusable = true}, SHIFT(1986), + [4737] = {.count = 1, .reusable = true}, SHIFT(1985), + [4739] = {.count = 1, .reusable = true}, SHIFT(1046), + [4741] = {.count = 1, .reusable = false}, SHIFT(1047), + [4743] = {.count = 1, .reusable = false}, SHIFT(1987), + [4745] = {.count = 1, .reusable = true}, SHIFT(1048), + [4747] = {.count = 1, .reusable = false}, SHIFT(1989), + [4749] = {.count = 1, .reusable = true}, SHIFT(1989), + [4751] = {.count = 1, .reusable = true}, SHIFT(1050), + [4753] = {.count = 1, .reusable = true}, SHIFT(1988), + [4755] = {.count = 1, .reusable = true}, SHIFT(1990), + [4757] = {.count = 1, .reusable = false}, SHIFT(1993), + [4759] = {.count = 1, .reusable = true}, SHIFT(1993), + [4761] = {.count = 1, .reusable = true}, SHIFT(1992), + [4763] = {.count = 1, .reusable = true}, SHIFT(1051), + [4765] = {.count = 1, .reusable = true}, SHIFT(1994), + [4767] = {.count = 1, .reusable = false}, SHIFT(1994), + [4769] = {.count = 1, .reusable = false}, SHIFT(1998), + [4771] = {.count = 1, .reusable = true}, SHIFT(1998), + [4773] = {.count = 1, .reusable = true}, SHIFT(1052), + [4775] = {.count = 1, .reusable = true}, SHIFT(1997), + [4777] = {.count = 1, .reusable = false}, SHIFT(1053), + [4779] = {.count = 1, .reusable = false}, SHIFT(1999), + [4781] = {.count = 1, .reusable = true}, SHIFT(1999), + [4783] = {.count = 1, .reusable = true}, SHIFT(1054), + [4785] = {.count = 1, .reusable = true}, SHIFT(2000), + [4787] = {.count = 1, .reusable = true}, SHIFT(2001), + [4789] = {.count = 1, .reusable = false}, SHIFT(2001), + [4791] = {.count = 1, .reusable = false}, SHIFT(2005), + [4793] = {.count = 1, .reusable = true}, SHIFT(2005), + [4795] = {.count = 1, .reusable = true}, SHIFT(1055), + [4797] = {.count = 1, .reusable = true}, SHIFT(2004), + [4799] = {.count = 1, .reusable = true}, SHIFT(1056), + [4801] = {.count = 1, .reusable = false}, SHIFT(2006), + [4803] = {.count = 1, .reusable = true}, SHIFT(2006), + [4805] = {.count = 1, .reusable = true}, SHIFT(1057), + [4807] = {.count = 1, .reusable = true}, SHIFT(1058), + [4809] = {.count = 1, .reusable = false}, SHIFT(2007), + [4811] = {.count = 1, .reusable = true}, SHIFT(2007), + [4813] = {.count = 1, .reusable = true}, SHIFT(1059), + [4815] = {.count = 1, .reusable = false}, SHIFT(2008), + [4817] = {.count = 1, .reusable = true}, SHIFT(2008), + [4819] = {.count = 1, .reusable = true}, SHIFT(1060), + [4821] = {.count = 1, .reusable = true}, SHIFT(1061), + [4823] = {.count = 1, .reusable = true}, SHIFT(1062), + [4825] = {.count = 1, .reusable = true}, SHIFT(1063), + [4827] = {.count = 1, .reusable = true}, SHIFT(1098), + [4829] = {.count = 1, .reusable = true}, SHIFT(1067), + [4831] = {.count = 1, .reusable = true}, SHIFT(1097), + [4833] = {.count = 1, .reusable = false}, SHIFT(1069), + [4835] = {.count = 1, .reusable = false}, SHIFT(2016), + [4837] = {.count = 1, .reusable = true}, SHIFT(1072), + [4839] = {.count = 1, .reusable = true}, SHIFT(1073), + [4841] = {.count = 1, .reusable = false}, SHIFT(2021), + [4843] = {.count = 1, .reusable = true}, SHIFT(2021), + [4845] = {.count = 1, .reusable = true}, SHIFT(2020), + [4847] = {.count = 1, .reusable = true}, SHIFT(1077), + [4849] = {.count = 1, .reusable = false}, SHIFT(2026), + [4851] = {.count = 1, .reusable = true}, SHIFT(2026), + [4853] = {.count = 1, .reusable = true}, SHIFT(2025), + [4855] = {.count = 1, .reusable = true}, SHIFT(1078), + [4857] = {.count = 1, .reusable = false}, SHIFT(1079), + [4859] = {.count = 1, .reusable = false}, SHIFT(2027), + [4861] = {.count = 1, .reusable = true}, SHIFT(1080), + [4863] = {.count = 1, .reusable = false}, SHIFT(2029), + [4865] = {.count = 1, .reusable = true}, SHIFT(2029), + [4867] = {.count = 1, .reusable = true}, SHIFT(1082), + [4869] = {.count = 1, .reusable = true}, SHIFT(2028), + [4871] = {.count = 1, .reusable = true}, SHIFT(2030), + [4873] = {.count = 1, .reusable = false}, SHIFT(2033), + [4875] = {.count = 1, .reusable = true}, SHIFT(2033), + [4877] = {.count = 1, .reusable = true}, SHIFT(2032), + [4879] = {.count = 1, .reusable = true}, SHIFT(1083), + [4881] = {.count = 1, .reusable = true}, SHIFT(2034), + [4883] = {.count = 1, .reusable = false}, SHIFT(2034), + [4885] = {.count = 1, .reusable = false}, SHIFT(2038), + [4887] = {.count = 1, .reusable = true}, SHIFT(2038), + [4889] = {.count = 1, .reusable = true}, SHIFT(1084), + [4891] = {.count = 1, .reusable = true}, SHIFT(2037), + [4893] = {.count = 1, .reusable = false}, SHIFT(1085), + [4895] = {.count = 1, .reusable = false}, SHIFT(2039), + [4897] = {.count = 1, .reusable = true}, SHIFT(2039), + [4899] = {.count = 1, .reusable = true}, SHIFT(1086), + [4901] = {.count = 1, .reusable = true}, SHIFT(2040), + [4903] = {.count = 1, .reusable = true}, SHIFT(2041), + [4905] = {.count = 1, .reusable = false}, SHIFT(2041), + [4907] = {.count = 1, .reusable = false}, SHIFT(2045), + [4909] = {.count = 1, .reusable = true}, SHIFT(2045), + [4911] = {.count = 1, .reusable = true}, SHIFT(1087), + [4913] = {.count = 1, .reusable = true}, SHIFT(2044), + [4915] = {.count = 1, .reusable = true}, SHIFT(1088), + [4917] = {.count = 1, .reusable = false}, SHIFT(2046), + [4919] = {.count = 1, .reusable = true}, SHIFT(2046), + [4921] = {.count = 1, .reusable = true}, SHIFT(1089), + [4923] = {.count = 1, .reusable = true}, SHIFT(1090), + [4925] = {.count = 1, .reusable = false}, SHIFT(2047), + [4927] = {.count = 1, .reusable = true}, SHIFT(2047), + [4929] = {.count = 1, .reusable = true}, SHIFT(1091), + [4931] = {.count = 1, .reusable = false}, SHIFT(2048), + [4933] = {.count = 1, .reusable = true}, SHIFT(2048), + [4935] = {.count = 1, .reusable = true}, SHIFT(1092), + [4937] = {.count = 1, .reusable = true}, SHIFT(1093), + [4939] = {.count = 1, .reusable = true}, SHIFT(1094), + [4941] = {.count = 1, .reusable = true}, SHIFT(1095), + [4943] = {.count = 1, .reusable = false}, SHIFT(2056), + [4945] = {.count = 1, .reusable = false}, SHIFT(1101), + [4947] = {.count = 1, .reusable = true}, SHIFT(1104), + [4949] = {.count = 1, .reusable = true}, SHIFT(1105), + [4951] = {.count = 1, .reusable = false}, SHIFT(2061), + [4953] = {.count = 1, .reusable = true}, SHIFT(2061), + [4955] = {.count = 1, .reusable = true}, SHIFT(2060), + [4957] = {.count = 1, .reusable = true}, SHIFT(1109), + [4959] = {.count = 1, .reusable = false}, SHIFT(2066), + [4961] = {.count = 1, .reusable = true}, SHIFT(2066), + [4963] = {.count = 1, .reusable = true}, SHIFT(2065), + [4965] = {.count = 1, .reusable = true}, SHIFT(1110), + [4967] = {.count = 1, .reusable = false}, SHIFT(1111), + [4969] = {.count = 1, .reusable = false}, SHIFT(2067), + [4971] = {.count = 1, .reusable = true}, SHIFT(1112), + [4973] = {.count = 1, .reusable = false}, SHIFT(2069), + [4975] = {.count = 1, .reusable = true}, SHIFT(2069), + [4977] = {.count = 1, .reusable = true}, SHIFT(1114), + [4979] = {.count = 1, .reusable = true}, SHIFT(2068), + [4981] = {.count = 1, .reusable = true}, SHIFT(2070), + [4983] = {.count = 1, .reusable = false}, SHIFT(2073), + [4985] = {.count = 1, .reusable = true}, SHIFT(2073), + [4987] = {.count = 1, .reusable = true}, SHIFT(2072), + [4989] = {.count = 1, .reusable = true}, SHIFT(1115), + [4991] = {.count = 1, .reusable = true}, SHIFT(2074), + [4993] = {.count = 1, .reusable = false}, SHIFT(2074), + [4995] = {.count = 1, .reusable = false}, SHIFT(2078), + [4997] = {.count = 1, .reusable = true}, SHIFT(2078), + [4999] = {.count = 1, .reusable = true}, SHIFT(1116), + [5001] = {.count = 1, .reusable = true}, SHIFT(2077), + [5003] = {.count = 1, .reusable = false}, SHIFT(1117), + [5005] = {.count = 1, .reusable = false}, SHIFT(2079), + [5007] = {.count = 1, .reusable = true}, SHIFT(2079), + [5009] = {.count = 1, .reusable = true}, SHIFT(1118), + [5011] = {.count = 1, .reusable = true}, SHIFT(2080), + [5013] = {.count = 1, .reusable = true}, SHIFT(2081), + [5015] = {.count = 1, .reusable = false}, SHIFT(2081), + [5017] = {.count = 1, .reusable = false}, SHIFT(2085), + [5019] = {.count = 1, .reusable = true}, SHIFT(2085), + [5021] = {.count = 1, .reusable = true}, SHIFT(1119), + [5023] = {.count = 1, .reusable = true}, SHIFT(2084), + [5025] = {.count = 1, .reusable = true}, SHIFT(1120), + [5027] = {.count = 1, .reusable = false}, SHIFT(2086), + [5029] = {.count = 1, .reusable = true}, SHIFT(2086), + [5031] = {.count = 1, .reusable = true}, SHIFT(1121), + [5033] = {.count = 1, .reusable = true}, SHIFT(1122), + [5035] = {.count = 1, .reusable = false}, SHIFT(2087), + [5037] = {.count = 1, .reusable = true}, SHIFT(2087), + [5039] = {.count = 1, .reusable = true}, SHIFT(1123), + [5041] = {.count = 1, .reusable = false}, SHIFT(2088), + [5043] = {.count = 1, .reusable = true}, SHIFT(2088), + [5045] = {.count = 1, .reusable = true}, SHIFT(1124), + [5047] = {.count = 1, .reusable = true}, SHIFT(1125), + [5049] = {.count = 1, .reusable = true}, SHIFT(1126), + [5051] = {.count = 1, .reusable = true}, SHIFT(1127), + [5053] = {.count = 1, .reusable = true}, SHIFT(1161), + [5055] = {.count = 1, .reusable = false}, SHIFT(2096), + [5057] = {.count = 1, .reusable = false}, SHIFT(1133), + [5059] = {.count = 1, .reusable = true}, SHIFT(1136), + [5061] = {.count = 1, .reusable = true}, SHIFT(1137), + [5063] = {.count = 1, .reusable = false}, SHIFT(2101), + [5065] = {.count = 1, .reusable = true}, SHIFT(2101), + [5067] = {.count = 1, .reusable = true}, SHIFT(2100), + [5069] = {.count = 1, .reusable = true}, SHIFT(1141), + [5071] = {.count = 1, .reusable = false}, SHIFT(2106), + [5073] = {.count = 1, .reusable = true}, SHIFT(2106), + [5075] = {.count = 1, .reusable = true}, SHIFT(2105), + [5077] = {.count = 1, .reusable = true}, SHIFT(1142), + [5079] = {.count = 1, .reusable = false}, SHIFT(1143), + [5081] = {.count = 1, .reusable = false}, SHIFT(2107), + [5083] = {.count = 1, .reusable = true}, SHIFT(1144), + [5085] = {.count = 1, .reusable = false}, SHIFT(2109), + [5087] = {.count = 1, .reusable = true}, SHIFT(2109), + [5089] = {.count = 1, .reusable = true}, SHIFT(1146), + [5091] = {.count = 1, .reusable = true}, SHIFT(2108), + [5093] = {.count = 1, .reusable = true}, SHIFT(2110), + [5095] = {.count = 1, .reusable = false}, SHIFT(2113), + [5097] = {.count = 1, .reusable = true}, SHIFT(2113), + [5099] = {.count = 1, .reusable = true}, SHIFT(2112), + [5101] = {.count = 1, .reusable = true}, SHIFT(1147), + [5103] = {.count = 1, .reusable = true}, SHIFT(2114), + [5105] = {.count = 1, .reusable = false}, SHIFT(2114), + [5107] = {.count = 1, .reusable = false}, SHIFT(2118), + [5109] = {.count = 1, .reusable = true}, SHIFT(2118), + [5111] = {.count = 1, .reusable = true}, SHIFT(1148), + [5113] = {.count = 1, .reusable = true}, SHIFT(2117), + [5115] = {.count = 1, .reusable = false}, SHIFT(1149), + [5117] = {.count = 1, .reusable = false}, SHIFT(2119), + [5119] = {.count = 1, .reusable = true}, SHIFT(2119), + [5121] = {.count = 1, .reusable = true}, SHIFT(1150), + [5123] = {.count = 1, .reusable = true}, SHIFT(2120), + [5125] = {.count = 1, .reusable = true}, SHIFT(2121), + [5127] = {.count = 1, .reusable = false}, SHIFT(2121), + [5129] = {.count = 1, .reusable = false}, SHIFT(2125), + [5131] = {.count = 1, .reusable = true}, SHIFT(2125), + [5133] = {.count = 1, .reusable = true}, SHIFT(1151), + [5135] = {.count = 1, .reusable = true}, SHIFT(2124), + [5137] = {.count = 1, .reusable = true}, SHIFT(1152), + [5139] = {.count = 1, .reusable = false}, SHIFT(2126), + [5141] = {.count = 1, .reusable = true}, SHIFT(2126), + [5143] = {.count = 1, .reusable = true}, SHIFT(1153), + [5145] = {.count = 1, .reusable = true}, SHIFT(1154), + [5147] = {.count = 1, .reusable = false}, SHIFT(2127), + [5149] = {.count = 1, .reusable = true}, SHIFT(2127), + [5151] = {.count = 1, .reusable = true}, SHIFT(1155), + [5153] = {.count = 1, .reusable = false}, SHIFT(2128), + [5155] = {.count = 1, .reusable = true}, SHIFT(2128), + [5157] = {.count = 1, .reusable = true}, SHIFT(1156), + [5159] = {.count = 1, .reusable = true}, SHIFT(1157), + [5161] = {.count = 1, .reusable = true}, SHIFT(1158), + [5163] = {.count = 1, .reusable = true}, SHIFT(1159), + [5165] = {.count = 1, .reusable = true}, SHIFT(1194), + [5167] = {.count = 1, .reusable = true}, SHIFT(1193), + [5169] = {.count = 1, .reusable = true}, SHIFT(1163), + [5171] = {.count = 1, .reusable = false}, SHIFT(2136), + [5173] = {.count = 1, .reusable = false}, SHIFT(1165), + [5175] = {.count = 1, .reusable = true}, SHIFT(1168), + [5177] = {.count = 1, .reusable = true}, SHIFT(1169), + [5179] = {.count = 1, .reusable = false}, SHIFT(2141), + [5181] = {.count = 1, .reusable = true}, SHIFT(2141), + [5183] = {.count = 1, .reusable = true}, SHIFT(2140), + [5185] = {.count = 1, .reusable = true}, SHIFT(1173), + [5187] = {.count = 1, .reusable = false}, SHIFT(2146), + [5189] = {.count = 1, .reusable = true}, SHIFT(2146), + [5191] = {.count = 1, .reusable = true}, SHIFT(2145), + [5193] = {.count = 1, .reusable = true}, SHIFT(1174), + [5195] = {.count = 1, .reusable = false}, SHIFT(1175), + [5197] = {.count = 1, .reusable = false}, SHIFT(2147), + [5199] = {.count = 1, .reusable = true}, SHIFT(1176), + [5201] = {.count = 1, .reusable = false}, SHIFT(2149), + [5203] = {.count = 1, .reusable = true}, SHIFT(2149), + [5205] = {.count = 1, .reusable = true}, SHIFT(1178), + [5207] = {.count = 1, .reusable = true}, SHIFT(2148), + [5209] = {.count = 1, .reusable = true}, SHIFT(2150), + [5211] = {.count = 1, .reusable = false}, SHIFT(2153), + [5213] = {.count = 1, .reusable = true}, SHIFT(2153), + [5215] = {.count = 1, .reusable = true}, SHIFT(2152), + [5217] = {.count = 1, .reusable = true}, SHIFT(1179), + [5219] = {.count = 1, .reusable = true}, SHIFT(2154), + [5221] = {.count = 1, .reusable = false}, SHIFT(2154), + [5223] = {.count = 1, .reusable = false}, SHIFT(2158), + [5225] = {.count = 1, .reusable = true}, SHIFT(2158), + [5227] = {.count = 1, .reusable = true}, SHIFT(1180), + [5229] = {.count = 1, .reusable = true}, SHIFT(2157), + [5231] = {.count = 1, .reusable = false}, SHIFT(1181), + [5233] = {.count = 1, .reusable = false}, SHIFT(2159), + [5235] = {.count = 1, .reusable = true}, SHIFT(2159), + [5237] = {.count = 1, .reusable = true}, SHIFT(1182), + [5239] = {.count = 1, .reusable = true}, SHIFT(2160), + [5241] = {.count = 1, .reusable = true}, SHIFT(2161), + [5243] = {.count = 1, .reusable = false}, SHIFT(2161), + [5245] = {.count = 1, .reusable = false}, SHIFT(2165), + [5247] = {.count = 1, .reusable = true}, SHIFT(2165), + [5249] = {.count = 1, .reusable = true}, SHIFT(1183), + [5251] = {.count = 1, .reusable = true}, SHIFT(2164), + [5253] = {.count = 1, .reusable = true}, SHIFT(1184), + [5255] = {.count = 1, .reusable = false}, SHIFT(2166), + [5257] = {.count = 1, .reusable = true}, SHIFT(2166), + [5259] = {.count = 1, .reusable = true}, SHIFT(1185), + [5261] = {.count = 1, .reusable = true}, SHIFT(1186), + [5263] = {.count = 1, .reusable = false}, SHIFT(2167), + [5265] = {.count = 1, .reusable = true}, SHIFT(2167), + [5267] = {.count = 1, .reusable = true}, SHIFT(1187), + [5269] = {.count = 1, .reusable = false}, SHIFT(2168), + [5271] = {.count = 1, .reusable = true}, SHIFT(2168), + [5273] = {.count = 1, .reusable = true}, SHIFT(1188), + [5275] = {.count = 1, .reusable = true}, SHIFT(1189), + [5277] = {.count = 1, .reusable = true}, SHIFT(1190), + [5279] = {.count = 1, .reusable = true}, SHIFT(1191), + [5281] = {.count = 1, .reusable = true}, SHIFT(1258), + [5283] = {.count = 1, .reusable = true}, SHIFT(1257), + [5285] = {.count = 1, .reusable = true}, SHIFT(1195), + [5287] = {.count = 1, .reusable = false}, SHIFT(2176), + [5289] = {.count = 1, .reusable = false}, SHIFT(1197), + [5291] = {.count = 1, .reusable = true}, SHIFT(1200), + [5293] = {.count = 1, .reusable = true}, SHIFT(1201), + [5295] = {.count = 1, .reusable = false}, SHIFT(2181), + [5297] = {.count = 1, .reusable = true}, SHIFT(2181), + [5299] = {.count = 1, .reusable = true}, SHIFT(2180), + [5301] = {.count = 1, .reusable = true}, SHIFT(1205), + [5303] = {.count = 1, .reusable = false}, SHIFT(2186), + [5305] = {.count = 1, .reusable = true}, SHIFT(2186), + [5307] = {.count = 1, .reusable = true}, SHIFT(2185), + [5309] = {.count = 1, .reusable = true}, SHIFT(1206), + [5311] = {.count = 1, .reusable = false}, SHIFT(1207), + [5313] = {.count = 1, .reusable = false}, SHIFT(2187), + [5315] = {.count = 1, .reusable = true}, SHIFT(1208), + [5317] = {.count = 1, .reusable = false}, SHIFT(2189), + [5319] = {.count = 1, .reusable = true}, SHIFT(2189), + [5321] = {.count = 1, .reusable = true}, SHIFT(1210), + [5323] = {.count = 1, .reusable = true}, SHIFT(2188), + [5325] = {.count = 1, .reusable = true}, SHIFT(2190), + [5327] = {.count = 1, .reusable = false}, SHIFT(2193), + [5329] = {.count = 1, .reusable = true}, SHIFT(2193), + [5331] = {.count = 1, .reusable = true}, SHIFT(2192), + [5333] = {.count = 1, .reusable = true}, SHIFT(1211), + [5335] = {.count = 1, .reusable = true}, SHIFT(2194), + [5337] = {.count = 1, .reusable = false}, SHIFT(2194), + [5339] = {.count = 1, .reusable = false}, SHIFT(2198), + [5341] = {.count = 1, .reusable = true}, SHIFT(2198), + [5343] = {.count = 1, .reusable = true}, SHIFT(1212), + [5345] = {.count = 1, .reusable = true}, SHIFT(2197), + [5347] = {.count = 1, .reusable = false}, SHIFT(1213), + [5349] = {.count = 1, .reusable = false}, SHIFT(2199), + [5351] = {.count = 1, .reusable = true}, SHIFT(2199), + [5353] = {.count = 1, .reusable = true}, SHIFT(1214), + [5355] = {.count = 1, .reusable = true}, SHIFT(2200), + [5357] = {.count = 1, .reusable = true}, SHIFT(2201), + [5359] = {.count = 1, .reusable = false}, SHIFT(2201), + [5361] = {.count = 1, .reusable = false}, SHIFT(2205), + [5363] = {.count = 1, .reusable = true}, SHIFT(2205), + [5365] = {.count = 1, .reusable = true}, SHIFT(1215), + [5367] = {.count = 1, .reusable = true}, SHIFT(2204), + [5369] = {.count = 1, .reusable = true}, SHIFT(1216), + [5371] = {.count = 1, .reusable = false}, SHIFT(2206), + [5373] = {.count = 1, .reusable = true}, SHIFT(2206), + [5375] = {.count = 1, .reusable = true}, SHIFT(1217), + [5377] = {.count = 1, .reusable = true}, SHIFT(1218), + [5379] = {.count = 1, .reusable = false}, SHIFT(2207), + [5381] = {.count = 1, .reusable = true}, SHIFT(2207), + [5383] = {.count = 1, .reusable = true}, SHIFT(1219), + [5385] = {.count = 1, .reusable = false}, SHIFT(2208), + [5387] = {.count = 1, .reusable = true}, SHIFT(2208), + [5389] = {.count = 1, .reusable = true}, SHIFT(1220), + [5391] = {.count = 1, .reusable = true}, SHIFT(1221), + [5393] = {.count = 1, .reusable = true}, SHIFT(1222), + [5395] = {.count = 1, .reusable = true}, SHIFT(1223), + [5397] = {.count = 1, .reusable = true}, SHIFT(1290), + [5399] = {.count = 1, .reusable = true}, SHIFT(1289), + [5401] = {.count = 1, .reusable = true}, SHIFT(1227), + [5403] = {.count = 1, .reusable = false}, SHIFT(2216), + [5405] = {.count = 1, .reusable = false}, SHIFT(1229), + [5407] = {.count = 1, .reusable = true}, SHIFT(1232), + [5409] = {.count = 1, .reusable = true}, SHIFT(1233), + [5411] = {.count = 1, .reusable = false}, SHIFT(2221), + [5413] = {.count = 1, .reusable = true}, SHIFT(2221), + [5415] = {.count = 1, .reusable = true}, SHIFT(2220), + [5417] = {.count = 1, .reusable = true}, SHIFT(1237), + [5419] = {.count = 1, .reusable = false}, SHIFT(2226), + [5421] = {.count = 1, .reusable = true}, SHIFT(2226), + [5423] = {.count = 1, .reusable = true}, SHIFT(2225), + [5425] = {.count = 1, .reusable = true}, SHIFT(1238), + [5427] = {.count = 1, .reusable = false}, SHIFT(1239), + [5429] = {.count = 1, .reusable = false}, SHIFT(2227), + [5431] = {.count = 1, .reusable = true}, SHIFT(1240), + [5433] = {.count = 1, .reusable = false}, SHIFT(2229), + [5435] = {.count = 1, .reusable = true}, SHIFT(2229), + [5437] = {.count = 1, .reusable = true}, SHIFT(1242), + [5439] = {.count = 1, .reusable = true}, SHIFT(2228), + [5441] = {.count = 1, .reusable = true}, SHIFT(2230), + [5443] = {.count = 1, .reusable = false}, SHIFT(2233), + [5445] = {.count = 1, .reusable = true}, SHIFT(2233), + [5447] = {.count = 1, .reusable = true}, SHIFT(2232), + [5449] = {.count = 1, .reusable = true}, SHIFT(1243), + [5451] = {.count = 1, .reusable = true}, SHIFT(2234), + [5453] = {.count = 1, .reusable = false}, SHIFT(2234), + [5455] = {.count = 1, .reusable = false}, SHIFT(2238), + [5457] = {.count = 1, .reusable = true}, SHIFT(2238), + [5459] = {.count = 1, .reusable = true}, SHIFT(1244), + [5461] = {.count = 1, .reusable = true}, SHIFT(2237), + [5463] = {.count = 1, .reusable = false}, SHIFT(1245), + [5465] = {.count = 1, .reusable = false}, SHIFT(2239), + [5467] = {.count = 1, .reusable = true}, SHIFT(2239), + [5469] = {.count = 1, .reusable = true}, SHIFT(1246), + [5471] = {.count = 1, .reusable = true}, SHIFT(2240), + [5473] = {.count = 1, .reusable = true}, SHIFT(2241), + [5475] = {.count = 1, .reusable = false}, SHIFT(2241), + [5477] = {.count = 1, .reusable = false}, SHIFT(2245), + [5479] = {.count = 1, .reusable = true}, SHIFT(2245), + [5481] = {.count = 1, .reusable = true}, SHIFT(1247), + [5483] = {.count = 1, .reusable = true}, SHIFT(2244), + [5485] = {.count = 1, .reusable = true}, SHIFT(1248), + [5487] = {.count = 1, .reusable = false}, SHIFT(2246), + [5489] = {.count = 1, .reusable = true}, SHIFT(2246), + [5491] = {.count = 1, .reusable = true}, SHIFT(1249), + [5493] = {.count = 1, .reusable = true}, SHIFT(1250), + [5495] = {.count = 1, .reusable = false}, SHIFT(2247), + [5497] = {.count = 1, .reusable = true}, SHIFT(2247), + [5499] = {.count = 1, .reusable = true}, SHIFT(1251), + [5501] = {.count = 1, .reusable = false}, SHIFT(2248), + [5503] = {.count = 1, .reusable = true}, SHIFT(2248), + [5505] = {.count = 1, .reusable = true}, SHIFT(1252), + [5507] = {.count = 1, .reusable = true}, SHIFT(1253), + [5509] = {.count = 1, .reusable = true}, SHIFT(1254), + [5511] = {.count = 1, .reusable = true}, SHIFT(1255), + [5513] = {.count = 1, .reusable = true}, SHIFT(1322), + [5515] = {.count = 1, .reusable = true}, SHIFT(1321), + [5517] = {.count = 1, .reusable = true}, SHIFT(1259), + [5519] = {.count = 1, .reusable = false}, SHIFT(2256), + [5521] = {.count = 1, .reusable = false}, SHIFT(1261), + [5523] = {.count = 1, .reusable = true}, SHIFT(1264), + [5525] = {.count = 1, .reusable = true}, SHIFT(1265), + [5527] = {.count = 1, .reusable = false}, SHIFT(2261), + [5529] = {.count = 1, .reusable = true}, SHIFT(2261), + [5531] = {.count = 1, .reusable = true}, SHIFT(2260), + [5533] = {.count = 1, .reusable = true}, SHIFT(1269), + [5535] = {.count = 1, .reusable = false}, SHIFT(2266), + [5537] = {.count = 1, .reusable = true}, SHIFT(2266), + [5539] = {.count = 1, .reusable = true}, SHIFT(2265), + [5541] = {.count = 1, .reusable = true}, SHIFT(1270), + [5543] = {.count = 1, .reusable = false}, SHIFT(1271), + [5545] = {.count = 1, .reusable = false}, SHIFT(2267), + [5547] = {.count = 1, .reusable = true}, SHIFT(1272), + [5549] = {.count = 1, .reusable = false}, SHIFT(2269), + [5551] = {.count = 1, .reusable = true}, SHIFT(2269), + [5553] = {.count = 1, .reusable = true}, SHIFT(1274), + [5555] = {.count = 1, .reusable = true}, SHIFT(2268), + [5557] = {.count = 1, .reusable = true}, SHIFT(2270), + [5559] = {.count = 1, .reusable = false}, SHIFT(2273), + [5561] = {.count = 1, .reusable = true}, SHIFT(2273), + [5563] = {.count = 1, .reusable = true}, SHIFT(2272), + [5565] = {.count = 1, .reusable = true}, SHIFT(1275), + [5567] = {.count = 1, .reusable = true}, SHIFT(2274), + [5569] = {.count = 1, .reusable = false}, SHIFT(2274), + [5571] = {.count = 1, .reusable = false}, SHIFT(2278), + [5573] = {.count = 1, .reusable = true}, SHIFT(2278), + [5575] = {.count = 1, .reusable = true}, SHIFT(1276), + [5577] = {.count = 1, .reusable = true}, SHIFT(2277), + [5579] = {.count = 1, .reusable = false}, SHIFT(1277), + [5581] = {.count = 1, .reusable = false}, SHIFT(2279), + [5583] = {.count = 1, .reusable = true}, SHIFT(2279), + [5585] = {.count = 1, .reusable = true}, SHIFT(1278), + [5587] = {.count = 1, .reusable = true}, SHIFT(2280), + [5589] = {.count = 1, .reusable = true}, SHIFT(2281), + [5591] = {.count = 1, .reusable = false}, SHIFT(2281), + [5593] = {.count = 1, .reusable = false}, SHIFT(2285), + [5595] = {.count = 1, .reusable = true}, SHIFT(2285), + [5597] = {.count = 1, .reusable = true}, SHIFT(1279), + [5599] = {.count = 1, .reusable = true}, SHIFT(2284), + [5601] = {.count = 1, .reusable = true}, SHIFT(1280), + [5603] = {.count = 1, .reusable = false}, SHIFT(2286), + [5605] = {.count = 1, .reusable = true}, SHIFT(2286), + [5607] = {.count = 1, .reusable = true}, SHIFT(1281), + [5609] = {.count = 1, .reusable = true}, SHIFT(1282), + [5611] = {.count = 1, .reusable = false}, SHIFT(2287), + [5613] = {.count = 1, .reusable = true}, SHIFT(2287), + [5615] = {.count = 1, .reusable = true}, SHIFT(1283), + [5617] = {.count = 1, .reusable = false}, SHIFT(2288), + [5619] = {.count = 1, .reusable = true}, SHIFT(2288), + [5621] = {.count = 1, .reusable = true}, SHIFT(1284), + [5623] = {.count = 1, .reusable = true}, SHIFT(1285), + [5625] = {.count = 1, .reusable = true}, SHIFT(1286), + [5627] = {.count = 1, .reusable = true}, SHIFT(1287), + [5629] = {.count = 1, .reusable = true}, SHIFT(1344), + [5631] = {.count = 1, .reusable = true}, SHIFT(1343), + [5633] = {.count = 1, .reusable = true}, SHIFT(1291), + [5635] = {.count = 1, .reusable = false}, SHIFT(2296), + [5637] = {.count = 1, .reusable = false}, SHIFT(1293), + [5639] = {.count = 1, .reusable = true}, SHIFT(1296), + [5641] = {.count = 1, .reusable = true}, SHIFT(1297), + [5643] = {.count = 1, .reusable = false}, SHIFT(2301), + [5645] = {.count = 1, .reusable = true}, SHIFT(2301), + [5647] = {.count = 1, .reusable = true}, SHIFT(2300), + [5649] = {.count = 1, .reusable = true}, SHIFT(1301), + [5651] = {.count = 1, .reusable = false}, SHIFT(2306), + [5653] = {.count = 1, .reusable = true}, SHIFT(2306), + [5655] = {.count = 1, .reusable = true}, SHIFT(2305), + [5657] = {.count = 1, .reusable = true}, SHIFT(1302), + [5659] = {.count = 1, .reusable = false}, SHIFT(1303), + [5661] = {.count = 1, .reusable = false}, SHIFT(2307), + [5663] = {.count = 1, .reusable = true}, SHIFT(1304), + [5665] = {.count = 1, .reusable = false}, SHIFT(2309), + [5667] = {.count = 1, .reusable = true}, SHIFT(2309), + [5669] = {.count = 1, .reusable = true}, SHIFT(1306), + [5671] = {.count = 1, .reusable = true}, SHIFT(2308), + [5673] = {.count = 1, .reusable = true}, SHIFT(2310), + [5675] = {.count = 1, .reusable = false}, SHIFT(2313), + [5677] = {.count = 1, .reusable = true}, SHIFT(2313), + [5679] = {.count = 1, .reusable = true}, SHIFT(2312), + [5681] = {.count = 1, .reusable = true}, SHIFT(1307), + [5683] = {.count = 1, .reusable = true}, SHIFT(2314), + [5685] = {.count = 1, .reusable = false}, SHIFT(2314), + [5687] = {.count = 1, .reusable = false}, SHIFT(2318), + [5689] = {.count = 1, .reusable = true}, SHIFT(2318), + [5691] = {.count = 1, .reusable = true}, SHIFT(1308), + [5693] = {.count = 1, .reusable = true}, SHIFT(2317), + [5695] = {.count = 1, .reusable = false}, SHIFT(1309), + [5697] = {.count = 1, .reusable = false}, SHIFT(2319), + [5699] = {.count = 1, .reusable = true}, SHIFT(2319), + [5701] = {.count = 1, .reusable = true}, SHIFT(1310), + [5703] = {.count = 1, .reusable = true}, SHIFT(2320), + [5705] = {.count = 1, .reusable = true}, SHIFT(2321), + [5707] = {.count = 1, .reusable = false}, SHIFT(2321), + [5709] = {.count = 1, .reusable = false}, SHIFT(2325), + [5711] = {.count = 1, .reusable = true}, SHIFT(2325), + [5713] = {.count = 1, .reusable = true}, SHIFT(1311), + [5715] = {.count = 1, .reusable = true}, SHIFT(2324), + [5717] = {.count = 1, .reusable = true}, SHIFT(1312), + [5719] = {.count = 1, .reusable = false}, SHIFT(2326), + [5721] = {.count = 1, .reusable = true}, SHIFT(2326), + [5723] = {.count = 1, .reusable = true}, SHIFT(1313), + [5725] = {.count = 1, .reusable = true}, SHIFT(1314), + [5727] = {.count = 1, .reusable = false}, SHIFT(2327), + [5729] = {.count = 1, .reusable = true}, SHIFT(2327), + [5731] = {.count = 1, .reusable = true}, SHIFT(1315), + [5733] = {.count = 1, .reusable = false}, SHIFT(2328), + [5735] = {.count = 1, .reusable = true}, SHIFT(2328), + [5737] = {.count = 1, .reusable = true}, SHIFT(1316), + [5739] = {.count = 1, .reusable = true}, SHIFT(1317), + [5741] = {.count = 1, .reusable = true}, SHIFT(1318), + [5743] = {.count = 1, .reusable = true}, SHIFT(1319), + [5745] = {.count = 1, .reusable = true}, SHIFT(1325), + [5747] = {.count = 1, .reusable = false}, SHIFT(2335), + [5749] = {.count = 1, .reusable = true}, SHIFT(2335), + [5751] = {.count = 1, .reusable = true}, SHIFT(2334), + [5753] = {.count = 1, .reusable = true}, SHIFT(1326), + [5755] = {.count = 1, .reusable = false}, SHIFT(2340), + [5757] = {.count = 1, .reusable = true}, SHIFT(2340), + [5759] = {.count = 1, .reusable = true}, SHIFT(2339), + [5761] = {.count = 1, .reusable = true}, SHIFT(1327), + [5763] = {.count = 1, .reusable = true}, SHIFT(1328), + [5765] = {.count = 1, .reusable = false}, SHIFT(2342), + [5767] = {.count = 1, .reusable = true}, SHIFT(2342), + [5769] = {.count = 1, .reusable = true}, SHIFT(1330), + [5771] = {.count = 1, .reusable = true}, SHIFT(2341), + [5773] = {.count = 1, .reusable = true}, SHIFT(2343), + [5775] = {.count = 1, .reusable = false}, SHIFT(2346), + [5777] = {.count = 1, .reusable = true}, SHIFT(2346), + [5779] = {.count = 1, .reusable = true}, SHIFT(2345), + [5781] = {.count = 1, .reusable = true}, SHIFT(1331), + [5783] = {.count = 1, .reusable = true}, SHIFT(2347), + [5785] = {.count = 1, .reusable = false}, SHIFT(2347), + [5787] = {.count = 1, .reusable = false}, SHIFT(2351), + [5789] = {.count = 1, .reusable = true}, SHIFT(2351), + [5791] = {.count = 1, .reusable = true}, SHIFT(1332), + [5793] = {.count = 1, .reusable = true}, SHIFT(2350), + [5795] = {.count = 1, .reusable = false}, SHIFT(2352), + [5797] = {.count = 1, .reusable = true}, SHIFT(2352), + [5799] = {.count = 1, .reusable = true}, SHIFT(1333), + [5801] = {.count = 1, .reusable = true}, SHIFT(2353), + [5803] = {.count = 1, .reusable = true}, SHIFT(2354), + [5805] = {.count = 1, .reusable = false}, SHIFT(2354), + [5807] = {.count = 1, .reusable = false}, SHIFT(2358), + [5809] = {.count = 1, .reusable = true}, SHIFT(2358), + [5811] = {.count = 1, .reusable = true}, SHIFT(1334), + [5813] = {.count = 1, .reusable = true}, SHIFT(2357), + [5815] = {.count = 1, .reusable = true}, SHIFT(1335), + [5817] = {.count = 1, .reusable = false}, SHIFT(2359), + [5819] = {.count = 1, .reusable = true}, SHIFT(2359), + [5821] = {.count = 1, .reusable = true}, SHIFT(1336), + [5823] = {.count = 1, .reusable = true}, SHIFT(1337), + [5825] = {.count = 1, .reusable = false}, SHIFT(2360), + [5827] = {.count = 1, .reusable = true}, SHIFT(2360), + [5829] = {.count = 1, .reusable = true}, SHIFT(1338), + [5831] = {.count = 1, .reusable = false}, SHIFT(2361), + [5833] = {.count = 1, .reusable = true}, SHIFT(2361), + [5835] = {.count = 1, .reusable = true}, SHIFT(1339), + [5837] = {.count = 1, .reusable = true}, SHIFT(1340), + [5839] = {.count = 1, .reusable = true}, SHIFT(1341), + [5841] = {.count = 1, .reusable = true}, SHIFT(1342), + [5843] = {.count = 1, .reusable = true}, SHIFT(1345), + [5845] = {.count = 1, .reusable = false}, SHIFT(2368), + [5847] = {.count = 1, .reusable = true}, SHIFT(2368), + [5849] = {.count = 1, .reusable = true}, SHIFT(2367), + [5851] = {.count = 1, .reusable = true}, SHIFT(1346), + [5853] = {.count = 1, .reusable = false}, SHIFT(2373), + [5855] = {.count = 1, .reusable = true}, SHIFT(2373), + [5857] = {.count = 1, .reusable = true}, SHIFT(2372), + [5859] = {.count = 1, .reusable = true}, SHIFT(1347), + [5861] = {.count = 1, .reusable = true}, SHIFT(1348), + [5863] = {.count = 1, .reusable = false}, SHIFT(2375), + [5865] = {.count = 1, .reusable = true}, SHIFT(2375), + [5867] = {.count = 1, .reusable = true}, SHIFT(1350), + [5869] = {.count = 1, .reusable = true}, SHIFT(2374), + [5871] = {.count = 1, .reusable = true}, SHIFT(2376), + [5873] = {.count = 1, .reusable = false}, SHIFT(2379), + [5875] = {.count = 1, .reusable = true}, SHIFT(2379), + [5877] = {.count = 1, .reusable = true}, SHIFT(2378), + [5879] = {.count = 1, .reusable = true}, SHIFT(1351), + [5881] = {.count = 1, .reusable = true}, SHIFT(2380), + [5883] = {.count = 1, .reusable = false}, SHIFT(2380), + [5885] = {.count = 1, .reusable = false}, SHIFT(2384), + [5887] = {.count = 1, .reusable = true}, SHIFT(2384), + [5889] = {.count = 1, .reusable = true}, SHIFT(1352), + [5891] = {.count = 1, .reusable = true}, SHIFT(2383), + [5893] = {.count = 1, .reusable = false}, SHIFT(2385), + [5895] = {.count = 1, .reusable = true}, SHIFT(2385), + [5897] = {.count = 1, .reusable = true}, SHIFT(1353), + [5899] = {.count = 1, .reusable = true}, SHIFT(2386), + [5901] = {.count = 1, .reusable = true}, SHIFT(2387), + [5903] = {.count = 1, .reusable = false}, SHIFT(2387), + [5905] = {.count = 1, .reusable = false}, SHIFT(2391), + [5907] = {.count = 1, .reusable = true}, SHIFT(2391), + [5909] = {.count = 1, .reusable = true}, SHIFT(1354), + [5911] = {.count = 1, .reusable = true}, SHIFT(2390), + [5913] = {.count = 1, .reusable = true}, SHIFT(1355), + [5915] = {.count = 1, .reusable = false}, SHIFT(2392), + [5917] = {.count = 1, .reusable = true}, SHIFT(2392), + [5919] = {.count = 1, .reusable = true}, SHIFT(1356), + [5921] = {.count = 1, .reusable = true}, SHIFT(1357), + [5923] = {.count = 1, .reusable = false}, SHIFT(2393), + [5925] = {.count = 1, .reusable = true}, SHIFT(2393), + [5927] = {.count = 1, .reusable = true}, SHIFT(1358), + [5929] = {.count = 1, .reusable = false}, SHIFT(2394), + [5931] = {.count = 1, .reusable = true}, SHIFT(2394), + [5933] = {.count = 1, .reusable = true}, SHIFT(1359), + [5935] = {.count = 1, .reusable = true}, SHIFT(1360), + [5937] = {.count = 1, .reusable = true}, SHIFT(1361), + [5939] = {.count = 1, .reusable = true}, SHIFT(1362), + [5941] = {.count = 1, .reusable = false}, SHIFT(1371), + [5943] = {.count = 1, .reusable = true}, SHIFT(2408), + [5945] = {.count = 1, .reusable = true}, SHIFT(2409), + [5947] = {.count = 1, .reusable = true}, SHIFT(1372), + [5949] = {.count = 1, .reusable = true}, SHIFT(1371), + [5951] = {.count = 1, .reusable = true}, SHIFT(1373), + [5953] = {.count = 1, .reusable = true}, SHIFT(1378), + [5955] = {.count = 1, .reusable = true}, SHIFT(1379), + [5957] = {.count = 1, .reusable = false}, SHIFT(1379), + [5959] = {.count = 1, .reusable = false}, SHIFT(1391), + [5961] = {.count = 1, .reusable = true}, SHIFT(2415), + [5963] = {.count = 1, .reusable = true}, SHIFT(1392), + [5965] = {.count = 1, .reusable = true}, SHIFT(1391), + [5967] = {.count = 1, .reusable = true}, SHIFT(1393), + [5969] = {.count = 1, .reusable = true}, SHIFT(1396), + [5971] = {.count = 1, .reusable = true}, SHIFT(1397), + [5973] = {.count = 1, .reusable = true}, SHIFT(1400), + [5975] = {.count = 1, .reusable = false}, SHIFT(1400), + [5977] = {.count = 1, .reusable = false}, SHIFT(1404), + [5979] = {.count = 1, .reusable = true}, SHIFT(1404), + [5981] = {.count = 1, .reusable = false}, SHIFT(2618), + [5983] = {.count = 1, .reusable = true}, SHIFT(1410), + [5985] = {.count = 1, .reusable = true}, SHIFT(1418), + [5987] = {.count = 1, .reusable = true}, SHIFT(1423), + [5989] = {.count = 1, .reusable = false}, SHIFT(1423), + [5991] = {.count = 1, .reusable = true}, SHIFT(1424), + [5993] = {.count = 1, .reusable = false}, SHIFT(1424), + [5995] = {.count = 1, .reusable = true}, SHIFT(1441), + [5997] = {.count = 1, .reusable = false}, SHIFT(1441), + [5999] = {.count = 1, .reusable = true}, SHIFT(1443), + [6001] = {.count = 1, .reusable = false}, SHIFT(1443), + [6003] = {.count = 1, .reusable = true}, SHIFT(1445), + [6005] = {.count = 1, .reusable = true}, SHIFT(1446), + [6007] = {.count = 1, .reusable = false}, SHIFT(1446), + [6009] = {.count = 1, .reusable = true}, SHIFT(1453), + [6011] = {.count = 1, .reusable = true}, SHIFT(1457), + [6013] = {.count = 1, .reusable = true}, SHIFT(1459), + [6015] = {.count = 1, .reusable = true}, SHIFT(1469), + [6017] = {.count = 1, .reusable = true}, SHIFT(1470), + [6019] = {.count = 1, .reusable = true}, SHIFT(2624), + [6021] = {.count = 1, .reusable = false}, SHIFT(2624), + [6023] = {.count = 1, .reusable = true}, SHIFT(2434), + [6025] = {.count = 1, .reusable = true}, SHIFT(2626), + [6027] = {.count = 1, .reusable = false}, SHIFT(2626), + [6029] = {.count = 1, .reusable = true}, SHIFT(2627), + [6031] = {.count = 1, .reusable = false}, SHIFT(2627), + [6033] = {.count = 1, .reusable = false}, SHIFT(1477), + [6035] = {.count = 1, .reusable = true}, SHIFT(2445), + [6037] = {.count = 1, .reusable = true}, SHIFT(2446), + [6039] = {.count = 1, .reusable = true}, SHIFT(1478), + [6041] = {.count = 1, .reusable = true}, SHIFT(1477), + [6043] = {.count = 1, .reusable = true}, SHIFT(1479), + [6045] = {.count = 1, .reusable = true}, SHIFT(1480), + [6047] = {.count = 1, .reusable = false}, SHIFT(1480), + [6049] = {.count = 1, .reusable = false}, SHIFT(1487), + [6051] = {.count = 1, .reusable = true}, SHIFT(2448), + [6053] = {.count = 1, .reusable = true}, SHIFT(1488), + [6055] = {.count = 1, .reusable = true}, SHIFT(1487), + [6057] = {.count = 1, .reusable = true}, SHIFT(1489), + [6059] = {.count = 1, .reusable = true}, SHIFT(1498), + [6061] = {.count = 1, .reusable = false}, SHIFT(1522), + [6063] = {.count = 1, .reusable = true}, SHIFT(1522), + [6065] = {.count = 1, .reusable = true}, SHIFT(2456), + [6067] = {.count = 1, .reusable = true}, SHIFT(2457), + [6069] = {.count = 1, .reusable = true}, SHIFT(1523), + [6071] = {.count = 1, .reusable = true}, SHIFT(1524), + [6073] = {.count = 1, .reusable = true}, SHIFT(2437), + [6075] = {.count = 1, .reusable = false}, SHIFT(2437), + [6077] = {.count = 1, .reusable = false}, SHIFT(1531), + [6079] = {.count = 1, .reusable = true}, SHIFT(1531), + [6081] = {.count = 1, .reusable = true}, SHIFT(2458), + [6083] = {.count = 1, .reusable = true}, SHIFT(1532), + [6085] = {.count = 1, .reusable = true}, SHIFT(1533), + [6087] = {.count = 1, .reusable = true}, SHIFT(1541), + [6089] = {.count = 1, .reusable = false}, SHIFT(1565), + [6091] = {.count = 1, .reusable = true}, SHIFT(1565), + [6093] = {.count = 1, .reusable = true}, SHIFT(2465), + [6095] = {.count = 1, .reusable = true}, SHIFT(2466), + [6097] = {.count = 1, .reusable = true}, SHIFT(1566), + [6099] = {.count = 1, .reusable = true}, SHIFT(1567), + [6101] = {.count = 1, .reusable = false}, SHIFT(1574), + [6103] = {.count = 1, .reusable = true}, SHIFT(1574), + [6105] = {.count = 1, .reusable = true}, SHIFT(2467), + [6107] = {.count = 1, .reusable = true}, SHIFT(1575), + [6109] = {.count = 1, .reusable = true}, SHIFT(1576), + [6111] = {.count = 1, .reusable = true}, SHIFT(1584), + [6113] = {.count = 1, .reusable = false}, SHIFT(1608), + [6115] = {.count = 1, .reusable = true}, SHIFT(1608), + [6117] = {.count = 1, .reusable = true}, SHIFT(2474), + [6119] = {.count = 1, .reusable = true}, SHIFT(2475), + [6121] = {.count = 1, .reusable = true}, SHIFT(1609), + [6123] = {.count = 1, .reusable = true}, SHIFT(1610), + [6125] = {.count = 1, .reusable = false}, SHIFT(1617), + [6127] = {.count = 1, .reusable = true}, SHIFT(1617), + [6129] = {.count = 1, .reusable = true}, SHIFT(2476), + [6131] = {.count = 1, .reusable = true}, SHIFT(1618), + [6133] = {.count = 1, .reusable = true}, SHIFT(1619), + [6135] = {.count = 1, .reusable = true}, SHIFT(1627), + [6137] = {.count = 1, .reusable = false}, SHIFT(1651), + [6139] = {.count = 1, .reusable = true}, SHIFT(2483), + [6141] = {.count = 1, .reusable = true}, SHIFT(2484), + [6143] = {.count = 1, .reusable = true}, SHIFT(1652), + [6145] = {.count = 1, .reusable = true}, SHIFT(1651), + [6147] = {.count = 1, .reusable = true}, SHIFT(1653), + [6149] = {.count = 1, .reusable = false}, SHIFT(1660), + [6151] = {.count = 1, .reusable = true}, SHIFT(2485), + [6153] = {.count = 1, .reusable = true}, SHIFT(1661), + [6155] = {.count = 1, .reusable = true}, SHIFT(1660), + [6157] = {.count = 1, .reusable = true}, SHIFT(1662), + [6159] = {.count = 1, .reusable = true}, SHIFT(1670), + [6161] = {.count = 1, .reusable = false}, SHIFT(1694), + [6163] = {.count = 1, .reusable = true}, SHIFT(1694), + [6165] = {.count = 1, .reusable = true}, SHIFT(2490), + [6167] = {.count = 1, .reusable = true}, SHIFT(2491), + [6169] = {.count = 1, .reusable = true}, SHIFT(1695), + [6171] = {.count = 1, .reusable = false}, SHIFT(1702), + [6173] = {.count = 1, .reusable = true}, SHIFT(1702), + [6175] = {.count = 1, .reusable = true}, SHIFT(2492), + [6177] = {.count = 1, .reusable = true}, SHIFT(1703), + [6179] = {.count = 1, .reusable = true}, SHIFT(1704), + [6181] = {.count = 1, .reusable = true}, SHIFT(1711), + [6183] = {.count = 1, .reusable = false}, SHIFT(1734), + [6185] = {.count = 1, .reusable = true}, SHIFT(2497), + [6187] = {.count = 1, .reusable = true}, SHIFT(2498), + [6189] = {.count = 1, .reusable = true}, SHIFT(1735), + [6191] = {.count = 1, .reusable = true}, SHIFT(1734), + [6193] = {.count = 1, .reusable = false}, SHIFT(1742), + [6195] = {.count = 1, .reusable = true}, SHIFT(2499), + [6197] = {.count = 1, .reusable = true}, SHIFT(1743), + [6199] = {.count = 1, .reusable = true}, SHIFT(1742), + [6201] = {.count = 1, .reusable = true}, SHIFT(1744), + [6203] = {.count = 1, .reusable = true}, SHIFT(1751), + [6205] = {.count = 1, .reusable = false}, SHIFT(1774), + [6207] = {.count = 1, .reusable = true}, SHIFT(2504), + [6209] = {.count = 1, .reusable = true}, SHIFT(2505), + [6211] = {.count = 1, .reusable = true}, SHIFT(1775), + [6213] = {.count = 1, .reusable = true}, SHIFT(1774), + [6215] = {.count = 1, .reusable = false}, SHIFT(1782), + [6217] = {.count = 1, .reusable = true}, SHIFT(2506), + [6219] = {.count = 1, .reusable = true}, SHIFT(1783), + [6221] = {.count = 1, .reusable = true}, SHIFT(1782), + [6223] = {.count = 1, .reusable = true}, SHIFT(1784), + [6225] = {.count = 1, .reusable = true}, SHIFT(1791), + [6227] = {.count = 1, .reusable = false}, SHIFT(1814), + [6229] = {.count = 1, .reusable = true}, SHIFT(2511), + [6231] = {.count = 1, .reusable = true}, SHIFT(2512), + [6233] = {.count = 1, .reusable = true}, SHIFT(1815), + [6235] = {.count = 1, .reusable = true}, SHIFT(1814), + [6237] = {.count = 1, .reusable = false}, SHIFT(1822), + [6239] = {.count = 1, .reusable = true}, SHIFT(2513), + [6241] = {.count = 1, .reusable = true}, SHIFT(1823), + [6243] = {.count = 1, .reusable = true}, SHIFT(1822), + [6245] = {.count = 1, .reusable = true}, SHIFT(1824), + [6247] = {.count = 1, .reusable = true}, SHIFT(1831), + [6249] = {.count = 1, .reusable = false}, SHIFT(1854), + [6251] = {.count = 1, .reusable = true}, SHIFT(1854), + [6253] = {.count = 1, .reusable = true}, SHIFT(2518), + [6255] = {.count = 1, .reusable = true}, SHIFT(2519), + [6257] = {.count = 1, .reusable = true}, SHIFT(1855), + [6259] = {.count = 1, .reusable = false}, SHIFT(1862), + [6261] = {.count = 1, .reusable = true}, SHIFT(1862), + [6263] = {.count = 1, .reusable = true}, SHIFT(2520), + [6265] = {.count = 1, .reusable = true}, SHIFT(1863), + [6267] = {.count = 1, .reusable = true}, SHIFT(1864), + [6269] = {.count = 1, .reusable = true}, SHIFT(1871), + [6271] = {.count = 1, .reusable = false}, SHIFT(1894), + [6273] = {.count = 1, .reusable = true}, SHIFT(1894), + [6275] = {.count = 1, .reusable = true}, SHIFT(2525), + [6277] = {.count = 1, .reusable = true}, SHIFT(2526), + [6279] = {.count = 1, .reusable = true}, SHIFT(1895), + [6281] = {.count = 1, .reusable = false}, SHIFT(1902), + [6283] = {.count = 1, .reusable = true}, SHIFT(1902), + [6285] = {.count = 1, .reusable = true}, SHIFT(2527), + [6287] = {.count = 1, .reusable = true}, SHIFT(1903), + [6289] = {.count = 1, .reusable = true}, SHIFT(1904), + [6291] = {.count = 1, .reusable = true}, SHIFT(1911), + [6293] = {.count = 1, .reusable = false}, SHIFT(1934), + [6295] = {.count = 1, .reusable = true}, SHIFT(1934), + [6297] = {.count = 1, .reusable = true}, SHIFT(2532), + [6299] = {.count = 1, .reusable = true}, SHIFT(2533), + [6301] = {.count = 1, .reusable = true}, SHIFT(1935), + [6303] = {.count = 1, .reusable = false}, SHIFT(1942), + [6305] = {.count = 1, .reusable = true}, SHIFT(1942), + [6307] = {.count = 1, .reusable = true}, SHIFT(2534), + [6309] = {.count = 1, .reusable = true}, SHIFT(1943), + [6311] = {.count = 1, .reusable = true}, SHIFT(1944), + [6313] = {.count = 1, .reusable = true}, SHIFT(1951), + [6315] = {.count = 1, .reusable = false}, SHIFT(1974), + [6317] = {.count = 1, .reusable = true}, SHIFT(1974), + [6319] = {.count = 1, .reusable = true}, SHIFT(2539), + [6321] = {.count = 1, .reusable = true}, SHIFT(2540), + [6323] = {.count = 1, .reusable = true}, SHIFT(1975), + [6325] = {.count = 1, .reusable = false}, SHIFT(1982), + [6327] = {.count = 1, .reusable = true}, SHIFT(1982), + [6329] = {.count = 1, .reusable = true}, SHIFT(2541), + [6331] = {.count = 1, .reusable = true}, SHIFT(1983), + [6333] = {.count = 1, .reusable = true}, SHIFT(1984), + [6335] = {.count = 1, .reusable = true}, SHIFT(1991), + [6337] = {.count = 1, .reusable = false}, SHIFT(2014), + [6339] = {.count = 1, .reusable = true}, SHIFT(2546), + [6341] = {.count = 1, .reusable = true}, SHIFT(2547), + [6343] = {.count = 1, .reusable = true}, SHIFT(2015), + [6345] = {.count = 1, .reusable = true}, SHIFT(2014), + [6347] = {.count = 1, .reusable = false}, SHIFT(2022), + [6349] = {.count = 1, .reusable = true}, SHIFT(2548), + [6351] = {.count = 1, .reusable = true}, SHIFT(2023), + [6353] = {.count = 1, .reusable = true}, SHIFT(2022), + [6355] = {.count = 1, .reusable = true}, SHIFT(2024), + [6357] = {.count = 1, .reusable = true}, SHIFT(2031), + [6359] = {.count = 1, .reusable = false}, SHIFT(2054), + [6361] = {.count = 1, .reusable = true}, SHIFT(2553), + [6363] = {.count = 1, .reusable = true}, SHIFT(2554), + [6365] = {.count = 1, .reusable = true}, SHIFT(2055), + [6367] = {.count = 1, .reusable = true}, SHIFT(2054), + [6369] = {.count = 1, .reusable = false}, SHIFT(2062), + [6371] = {.count = 1, .reusable = true}, SHIFT(2555), + [6373] = {.count = 1, .reusable = true}, SHIFT(2063), + [6375] = {.count = 1, .reusable = true}, SHIFT(2062), + [6377] = {.count = 1, .reusable = true}, SHIFT(2064), + [6379] = {.count = 1, .reusable = true}, SHIFT(2071), + [6381] = {.count = 1, .reusable = false}, SHIFT(2094), + [6383] = {.count = 1, .reusable = true}, SHIFT(2094), + [6385] = {.count = 1, .reusable = true}, SHIFT(2560), + [6387] = {.count = 1, .reusable = true}, SHIFT(2561), + [6389] = {.count = 1, .reusable = true}, SHIFT(2095), + [6391] = {.count = 1, .reusable = false}, SHIFT(2102), + [6393] = {.count = 1, .reusable = true}, SHIFT(2102), + [6395] = {.count = 1, .reusable = true}, SHIFT(2562), + [6397] = {.count = 1, .reusable = true}, SHIFT(2103), + [6399] = {.count = 1, .reusable = true}, SHIFT(2104), + [6401] = {.count = 1, .reusable = true}, SHIFT(2111), + [6403] = {.count = 1, .reusable = false}, SHIFT(2134), + [6405] = {.count = 1, .reusable = true}, SHIFT(2134), + [6407] = {.count = 1, .reusable = true}, SHIFT(2567), + [6409] = {.count = 1, .reusable = true}, SHIFT(2568), + [6411] = {.count = 1, .reusable = true}, SHIFT(2135), + [6413] = {.count = 1, .reusable = false}, SHIFT(2142), + [6415] = {.count = 1, .reusable = true}, SHIFT(2142), + [6417] = {.count = 1, .reusable = true}, SHIFT(2569), + [6419] = {.count = 1, .reusable = true}, SHIFT(2143), + [6421] = {.count = 1, .reusable = true}, SHIFT(2144), + [6423] = {.count = 1, .reusable = true}, SHIFT(2151), + [6425] = {.count = 1, .reusable = false}, SHIFT(2174), + [6427] = {.count = 1, .reusable = true}, SHIFT(2174), + [6429] = {.count = 1, .reusable = true}, SHIFT(2574), + [6431] = {.count = 1, .reusable = true}, SHIFT(2575), + [6433] = {.count = 1, .reusable = true}, SHIFT(2175), + [6435] = {.count = 1, .reusable = false}, SHIFT(2182), + [6437] = {.count = 1, .reusable = true}, SHIFT(2182), + [6439] = {.count = 1, .reusable = true}, SHIFT(2576), + [6441] = {.count = 1, .reusable = true}, SHIFT(2183), + [6443] = {.count = 1, .reusable = true}, SHIFT(2184), + [6445] = {.count = 1, .reusable = true}, SHIFT(2191), + [6447] = {.count = 1, .reusable = false}, SHIFT(2214), + [6449] = {.count = 1, .reusable = true}, SHIFT(2214), + [6451] = {.count = 1, .reusable = true}, SHIFT(2581), + [6453] = {.count = 1, .reusable = true}, SHIFT(2582), + [6455] = {.count = 1, .reusable = true}, SHIFT(2215), + [6457] = {.count = 1, .reusable = false}, SHIFT(2222), + [6459] = {.count = 1, .reusable = true}, SHIFT(2222), + [6461] = {.count = 1, .reusable = true}, SHIFT(2583), + [6463] = {.count = 1, .reusable = true}, SHIFT(2223), + [6465] = {.count = 1, .reusable = true}, SHIFT(2224), + [6467] = {.count = 1, .reusable = true}, SHIFT(2231), + [6469] = {.count = 1, .reusable = false}, SHIFT(2254), + [6471] = {.count = 1, .reusable = true}, SHIFT(2254), + [6473] = {.count = 1, .reusable = true}, SHIFT(2588), + [6475] = {.count = 1, .reusable = true}, SHIFT(2589), + [6477] = {.count = 1, .reusable = true}, SHIFT(2255), + [6479] = {.count = 1, .reusable = false}, SHIFT(2262), + [6481] = {.count = 1, .reusable = true}, SHIFT(2262), + [6483] = {.count = 1, .reusable = true}, SHIFT(2590), + [6485] = {.count = 1, .reusable = true}, SHIFT(2263), + [6487] = {.count = 1, .reusable = true}, SHIFT(2264), + [6489] = {.count = 1, .reusable = true}, SHIFT(2271), + [6491] = {.count = 1, .reusable = false}, SHIFT(2294), + [6493] = {.count = 1, .reusable = true}, SHIFT(2294), + [6495] = {.count = 1, .reusable = true}, SHIFT(2595), + [6497] = {.count = 1, .reusable = true}, SHIFT(2596), + [6499] = {.count = 1, .reusable = true}, SHIFT(2295), + [6501] = {.count = 1, .reusable = false}, SHIFT(2302), + [6503] = {.count = 1, .reusable = true}, SHIFT(2302), + [6505] = {.count = 1, .reusable = true}, SHIFT(2597), + [6507] = {.count = 1, .reusable = true}, SHIFT(2303), + [6509] = {.count = 1, .reusable = true}, SHIFT(2304), + [6511] = {.count = 1, .reusable = true}, SHIFT(2311), + [6513] = {.count = 1, .reusable = false}, SHIFT(2330), + [6515] = {.count = 1, .reusable = true}, SHIFT(2330), + [6517] = {.count = 1, .reusable = true}, SHIFT(2601), + [6519] = {.count = 1, .reusable = true}, SHIFT(2602), + [6521] = {.count = 1, .reusable = true}, SHIFT(2331), + [6523] = {.count = 1, .reusable = false}, SHIFT(2336), + [6525] = {.count = 1, .reusable = true}, SHIFT(2336), + [6527] = {.count = 1, .reusable = true}, SHIFT(2603), + [6529] = {.count = 1, .reusable = true}, SHIFT(2337), + [6531] = {.count = 1, .reusable = true}, SHIFT(2338), + [6533] = {.count = 1, .reusable = true}, SHIFT(2344), + [6535] = {.count = 1, .reusable = false}, SHIFT(2363), + [6537] = {.count = 1, .reusable = true}, SHIFT(2363), + [6539] = {.count = 1, .reusable = true}, SHIFT(2607), + [6541] = {.count = 1, .reusable = true}, SHIFT(2608), + [6543] = {.count = 1, .reusable = true}, SHIFT(2364), + [6545] = {.count = 1, .reusable = false}, SHIFT(2369), + [6547] = {.count = 1, .reusable = true}, SHIFT(2369), + [6549] = {.count = 1, .reusable = true}, SHIFT(2609), + [6551] = {.count = 1, .reusable = true}, SHIFT(2370), + [6553] = {.count = 1, .reusable = true}, SHIFT(2371), + [6555] = {.count = 1, .reusable = true}, SHIFT(2377), + [6557] = {.count = 1, .reusable = true}, SHIFT(2629), + [6559] = {.count = 1, .reusable = true}, SHIFT(2414), + [6561] = {.count = 1, .reusable = false}, SHIFT(2615), + [6563] = {.count = 1, .reusable = true}, SHIFT(2615), + [6565] = {.count = 1, .reusable = false}, SHIFT(2417), + [6567] = {.count = 1, .reusable = false}, SHIFT(2616), + [6569] = {.count = 1, .reusable = true}, SHIFT(2616), + [6571] = {.count = 1, .reusable = false}, SHIFT(2418), + [6573] = {.count = 1, .reusable = true}, SHIFT(2419), + [6575] = {.count = 1, .reusable = true}, SHIFT(2420), + [6577] = {.count = 1, .reusable = false}, SHIFT(2421), + [6579] = {.count = 1, .reusable = false}, SHIFT(2426), + [6581] = {.count = 1, .reusable = false}, SHIFT(2430), + [6583] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2436), + [6586] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2453), + [6589] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2435), + [6592] = {.count = 1, .reusable = true}, SHIFT(2612), + [6594] = {.count = 1, .reusable = false}, SHIFT(2612), + [6596] = {.count = 1, .reusable = false}, SHIFT(2617), + [6598] = {.count = 1, .reusable = false}, SHIFT(2620), }; void *tree_sitter_bash_external_scanner_create(void); From c23730387b760d026d3b4314e761d3dac1205893 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 30 Jul 2019 12:00:55 -0600 Subject: [PATCH 2/6] Parse the first statement in a C-style for loop as a variable assignment Previously, `i=0` as the first statement in a C-style for loop was parsed as a word. --- corpus/statements.txt | 4 +- grammar.js | 2 +- src/grammar.json | 13 +- src/node-types.json | 4 + src/parser.c | 91150 ++++++++++++++++++++-------------------- 5 files changed, 45727 insertions(+), 45446 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 17582cef..a4e3bbaf 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -123,13 +123,13 @@ done (program (c_style_for_statement - (word) + (variable_assignment (variable_name) (number)) (binary_expression (word) (number)) (word) (do_group (command (command_name (word)) (simple_expansion (variable_name))))) (c_style_for_statement - (word) + (variable_assignment (variable_name) (number)) (binary_expression (word) (number)) (word) (compound_statement diff --git a/grammar.js b/grammar.js index 9560d0c2..26733676 100644 --- a/grammar.js +++ b/grammar.js @@ -119,7 +119,7 @@ module.exports = grammar({ c_style_for_statement: $ => seq( 'for', '((', - optional($._expression), + optional(choice($.variable_assignment, $._expression)), $._terminator, optional($._expression), $._terminator, diff --git a/src/grammar.json b/src/grammar.json index 18bbf744..6c07e8b9 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -313,8 +313,17 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "variable_assignment" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] }, { "type": "BLANK" diff --git a/src/node-types.json b/src/node-types.json index e4af0d77..847d33f8 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -205,6 +205,10 @@ "type": "unary_expression", "named": true }, + { + "type": "variable_assignment", + "named": true + }, { "type": "word", "named": true diff --git a/src/parser.c b/src/parser.c index fa5caeb2..675542f1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 10 -#define STATE_COUNT 2631 +#define STATE_COUNT 2647 #define SYMBOL_COUNT 159 #define ALIAS_COUNT 1 #define TOKEN_COUNT 99 @@ -1010,1838 +1010,1867 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); switch (state) { case 0: - if (lookahead == 0) ADVANCE(114); - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '+') ADVANCE(194); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '/') ADVANCE(228); - if (lookahead == '0') ADVANCE(255); - if (lookahead == ':') ADVANCE(229); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(180); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); - if (lookahead == '[') ADVANCE(159); - if (lookahead == '\\') ADVANCE(71); - if (lookahead == ']') ADVANCE(161); - if (lookahead == '_') ADVANCE(259); - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(265); - if (lookahead == 'i') ADVANCE(264); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(142); - if (lookahead == '}') ADVANCE(150); + if (lookahead == 0) ADVANCE(116); + if (lookahead == '!') ADVANCE(157); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '%') ADVANCE(234); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(150); + if (lookahead == ')') ADVANCE(147); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '0') ADVANCE(257); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '=') ADVANCE(171); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); + if (lookahead == '[') ADVANCE(161); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(163); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(267); + if (lookahead == 'i') ADVANCE(266); + if (lookahead == '{') ADVANCE(151); + if (lookahead == '|') ADVANCE(144); + if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0) ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 1: - if (lookahead == 0) ADVANCE(114); - if (lookahead == '\n') ADVANCE(115); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(181); + if (lookahead == 0) ADVANCE(116); + if (lookahead == '\n') ADVANCE(117); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '0') ADVANCE(224); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(75); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && - lookahead != '(') ADVANCE(268); + lookahead != '(') ADVANCE(270); END_STATE(); case 2: - if (lookahead == 0) ADVANCE(114); - if (lookahead == '\n') ADVANCE(116); - if (lookahead == '!') ADVANCE(154); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(208); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '0') ADVANCE(257); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(253); - if (lookahead == '@') ADVANCE(251); + if (lookahead == 0) ADVANCE(116); + if (lookahead == '\n') ADVANCE(118); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(180); + if (lookahead == '>') ADVANCE(184); + if (lookahead == '?') ADVANCE(255); + if (lookahead == '@') ADVANCE(253); if (lookahead == '\\') SKIP(12) - if (lookahead == '_') ADVANCE(260); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(2) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); case 3: - if (lookahead == 0) ADVANCE(114); - if (lookahead == '\n') ADVANCE(116); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '&') ADVANCE(272); - if (lookahead == ')') ADVANCE(144); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(182); + if (lookahead == 0) ADVANCE(116); + if (lookahead == '\n') ADVANCE(118); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '&') ADVANCE(274); + if (lookahead == ')') ADVANCE(146); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(180); + if (lookahead == '>') ADVANCE(184); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(69); - if (lookahead == '|') ADVANCE(142); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(70); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(3) END_STATE(); case 4: - if (lookahead == 0) ADVANCE(114); - if (lookahead == '\n') ADVANCE(116); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '&') ADVANCE(270); - if (lookahead == ')') ADVANCE(144); - if (lookahead == ';') ADVANCE(136); + if (lookahead == 0) ADVANCE(116); + if (lookahead == '\n') ADVANCE(118); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '&') ADVANCE(272); + if (lookahead == ')') ADVANCE(146); + if (lookahead == ';') ADVANCE(138); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') SKIP(11) - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(69); - if (lookahead == 'i') ADVANCE(68); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(70); + if (lookahead == 'i') ADVANCE(69); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(4) END_STATE(); case 5: - if (lookahead == 0) ADVANCE(114); - if (lookahead == '\n') ADVANCE(119); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(147); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '=') ADVANCE(261); - if (lookahead == '>') ADVANCE(181); + if (lookahead == 0) ADVANCE(116); + if (lookahead == '\n') ADVANCE(121); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(149); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '=') ADVANCE(263); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(76); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(77); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0) ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 6: - if (lookahead == 0) ADVANCE(114); - if (lookahead == '\n') ADVANCE(120); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(181); + if (lookahead == 0) ADVANCE(116); + if (lookahead == '\n') ADVANCE(122); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(83); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != '(') ADVANCE(268); + lookahead != '(') ADVANCE(270); END_STATE(); case 7: - if (lookahead == 0) ADVANCE(114); - if (lookahead == '\n') ADVANCE(121); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '=') ADVANCE(261); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); + if (lookahead == 0) ADVANCE(116); + if (lookahead == '\n') ADVANCE(123); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '=') ADVANCE(263); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(93); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && - lookahead != '(') ADVANCE(268); + lookahead != '(') ADVANCE(270); END_STATE(); case 8: - if (lookahead == 0) ADVANCE(114); - if (lookahead == '\n') ADVANCE(126); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); + if (lookahead == 0) ADVANCE(116); + if (lookahead == '\n') ADVANCE(128); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(102); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && - lookahead != '(') ADVANCE(268); + lookahead != '(') ADVANCE(270); END_STATE(); case 9: - if (lookahead == 0) ADVANCE(114); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(64); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '[') ADVANCE(159); - if (lookahead == '\\') ADVANCE(72); + if (lookahead == 0) ADVANCE(116); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(65); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(150); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '[') ADVANCE(161); + if (lookahead == '\\') ADVANCE(73); if (lookahead == ']' || - lookahead == '}') ADVANCE(211); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(141); + lookahead == '}') ADVANCE(213); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '{') ADVANCE(151); + if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0) ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 10: - if (lookahead == 0) ADVANCE(114); + if (lookahead == 0) ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) END_STATE(); case 11: - if (lookahead == 0) ADVANCE(114); + if (lookahead == 0) ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) END_STATE(); case 12: - if (lookahead == 0) ADVANCE(114); + if (lookahead == 0) ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(115); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(181); + if (lookahead == '\n') ADVANCE(117); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '0') ADVANCE(224); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(75); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && - lookahead != '(') ADVANCE(268); + lookahead != '(') ADVANCE(270); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(116); - if (lookahead == '!') ADVANCE(154); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(208); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '0') ADVANCE(257); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(253); - if (lookahead == '@') ADVANCE(251); - if (lookahead == '\\') SKIP(110) - if (lookahead == '_') ADVANCE(260); - if (lookahead == 'e') ADVANCE(247); - if (lookahead == '|') ADVANCE(142); + if (lookahead == '\n') ADVANCE(118); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(180); + if (lookahead == '>') ADVANCE(184); + if (lookahead == '?') ADVANCE(255); + if (lookahead == '@') ADVANCE(253); + if (lookahead == '\\') SKIP(112) + if (lookahead == '_') ADVANCE(262); + if (lookahead == 'e') ADVANCE(249); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(14) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(116); - if (lookahead == '!') ADVANCE(154); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(208); - if (lookahead == '&') ADVANCE(270); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '0') ADVANCE(257); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '?') ADVANCE(253); - if (lookahead == '@') ADVANCE(251); - if (lookahead == '\\') SKIP(103) - if (lookahead == '_') ADVANCE(260); - if (lookahead == 'i') ADVANCE(246); + if (lookahead == '\n') ADVANCE(118); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '?') ADVANCE(255); + if (lookahead == '@') ADVANCE(253); + if (lookahead == '\\') SKIP(104) + if (lookahead == '_') ADVANCE(262); + if (lookahead == 'i') ADVANCE(248); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(15) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(117); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(270); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(147); - if (lookahead == '-') ADVANCE(267); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '>') ADVANCE(59); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(16) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(268); - END_STATE(); - case 17: if (lookahead == '\n') ADVANCE(118); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(208); - if (lookahead == '&') ADVANCE(271); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(195); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '*') ADVANCE(251); if (lookahead == '-') ADVANCE(198); - if (lookahead == '0') ADVANCE(257); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(253); - if (lookahead == '@') ADVANCE(251); - if (lookahead == '\\') SKIP(106) - if (lookahead == '_') ADVANCE(260); - if (lookahead == '|') ADVANCE(70); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '?') ADVANCE(255); + if (lookahead == '@') ADVANCE(253); + if (lookahead == '\\') SKIP(109) + if (lookahead == '_') ADVANCE(262); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(17) + lookahead == ' ') SKIP(16) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); - case 18: - if (lookahead == '\n') ADVANCE(118); - if (lookahead == '!') ADVANCE(62); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '&') ADVANCE(271); - if (lookahead == '+') ADVANCE(195); - if (lookahead == '-') ADVANCE(198); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(183); + case 17: + if (lookahead == '\n') ADVANCE(119); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(149); + if (lookahead == '-') ADVANCE(269); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(59); + if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') SKIP(92) - if (lookahead == '|') ADVANCE(70); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(89); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(17) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '|') ADVANCE(270); + END_STATE(); + case 18: + if (lookahead == '\n') ADVANCE(120); + if (lookahead == '!') ADVANCE(158); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(273); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(181); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(185); + if (lookahead == '?') ADVANCE(255); + if (lookahead == '@') ADVANCE(253); + if (lookahead == '\\') SKIP(107) + if (lookahead == '_') ADVANCE(262); + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(18) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(119); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(147); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '=') ADVANCE(261); - if (lookahead == '>') ADVANCE(181); + if (lookahead == '\n') ADVANCE(120); + if (lookahead == '!') ADVANCE(63); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '&') ADVANCE(273); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '-') ADVANCE(200); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(181); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(185); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(76); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') SKIP(93) + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(19) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0) ADVANCE(268); END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(120); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(181); + if (lookahead == '\n') ADVANCE(121); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(149); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '=') ADVANCE(263); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(83); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(77); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(20) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0 && - lookahead != '(') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(121); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '=') ADVANCE(261); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); + if (lookahead == '\n') ADVANCE(122); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(93); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != '(') ADVANCE(268); + lookahead != '(') ADVANCE(270); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(122); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(270); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '>') ADVANCE(59); + if (lookahead == '\n') ADVANCE(123); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '=') ADVANCE(263); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == '`') ADVANCE(234); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - lookahead != '|') ADVANCE(268); + lookahead != '(') ADVANCE(270); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(123); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); + if (lookahead == '\n') ADVANCE(124); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(147); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '=') ADVANCE(261); - if (lookahead == '>') ADVANCE(181); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(59); + if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(265); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(97); + if (lookahead == '`') ADVANCE(236); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(23) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != ')') ADVANCE(268); + lookahead != '(' && + lookahead != ')' && + lookahead != '|') ADVANCE(270); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(124); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(181); + if (lookahead == '\n') ADVANCE(125); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(149); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '=') ADVANCE(263); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(99); - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(241); - if (lookahead == '|') ADVANCE(142); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(267); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(243); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(268); + lookahead != ')') ADVANCE(270); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(125); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(181); + if (lookahead == '\n') ADVANCE(126); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '0') ADVANCE(224); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(101); - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(265); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(100); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(243); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(25) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(268); + lookahead != ')') ADVANCE(270); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(126); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); + if (lookahead == '\n') ADVANCE(127); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(102); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(142); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(267); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != '(') ADVANCE(268); + lookahead != '(' && + lookahead != ')') ADVANCE(270); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(127); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(270); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '>') ADVANCE(59); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); + if (lookahead == '\n') ADVANCE(128); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '`') ADVANCE(234); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - lookahead != '|') ADVANCE(268); + lookahead != '(') ADVANCE(270); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(128); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); + if (lookahead == '\n') ADVANCE(129); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '=') ADVANCE(261); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(59); + if (lookahead == '>') ADVANCE(60); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(108); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(241); - if (lookahead == '|') ADVANCE(142); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(236); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(268); + lookahead != ')' && + lookahead != '|') ADVANCE(270); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(129); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); + if (lookahead == '\n') ADVANCE(130); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '=') ADVANCE(263); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(241); - if (lookahead == '|') ADVANCE(142); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(110); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(243); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(268); + lookahead != ')') ADVANCE(270); END_STATE(); case 30: - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '+') ADVANCE(194); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '/') ADVANCE(228); - if (lookahead == '0') ADVANCE(255); - if (lookahead == ':') ADVANCE(229); - if (lookahead == ';') ADVANCE(136); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(180); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); - if (lookahead == '[') ADVANCE(159); - if (lookahead == '\\') ADVANCE(71); - if (lookahead == ']') ADVANCE(161); - if (lookahead == '_') ADVANCE(259); - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(265); - if (lookahead == 'i') ADVANCE(264); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(142); - if (lookahead == '}') ADVANCE(150); + if (lookahead == '\n') ADVANCE(131); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(178); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(111); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(243); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0) ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')') ADVANCE(270); END_STATE(); case 31: if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '*') ADVANCE(250); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '%') ADVANCE(234); + if (lookahead == '&') ADVANCE(274); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(150); + if (lookahead == ')') ADVANCE(147); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '+') ADVANCE(196); if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ':') ADVANCE(229); - if (lookahead == '<') ADVANCE(58); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '0') ADVANCE(257); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(138); + if (lookahead == '<') ADVANCE(179); if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(59); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(211); - if (lookahead == '\\') ADVANCE(105); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '}') ADVANCE(150); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); + if (lookahead == '[') ADVANCE(161); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == ']') ADVANCE(163); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(267); + if (lookahead == 'i') ADVANCE(266); + if (lookahead == '{') ADVANCE(151); + if (lookahead == '|') ADVANCE(144); + if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 32: - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(64); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(256); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '?') ADVANCE(254); - if (lookahead == '@') ADVANCE(252); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '%') ADVANCE(234); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ':') ADVANCE(231); + if (lookahead == '<') ADVANCE(59); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '>') ADVANCE(60); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '[' || lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(100); - if (lookahead == '_') ADVANCE(258); - if (lookahead == '`') ADVANCE(234); + lookahead == '{') ADVANCE(213); + if (lookahead == '\\') ADVANCE(106); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && - lookahead != '(' && + (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(268); + lookahead != '|') ADVANCE(270); END_STATE(); case 33: - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(64); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '[') ADVANCE(159); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == ']' || - lookahead == '}') ADVANCE(211); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '|') ADVANCE(141); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(65); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(258); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(101); + if (lookahead == '_') ADVANCE(260); + if (lookahead == '`') ADVANCE(236); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(33) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0) ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ';' && + lookahead != '|') ADVANCE(270); END_STATE(); case 34: - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(64); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '[') ADVANCE(159); - if (lookahead == '\\') ADVANCE(97); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(65); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(150); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '[') ADVANCE(161); + if (lookahead == '\\') ADVANCE(73); if (lookahead == ']' || - lookahead == '}') ADVANCE(211); - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(265); - if (lookahead == '{') ADVANCE(149); + lookahead == '}') ADVANCE(213); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '{') ADVANCE(151); + if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(34) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 35: - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(64); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '0') ADVANCE(221); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '[') ADVANCE(159); - if (lookahead == '\\') ADVANCE(78); - if (lookahead == ']') ADVANCE(211); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '}') ADVANCE(150); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(65); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(150); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '[') ADVANCE(161); + if (lookahead == '\\') ADVANCE(98); + if (lookahead == ']' || + lookahead == '}') ADVANCE(213); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(267); + if (lookahead == '{') ADVANCE(151); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(268); + lookahead != '|') ADVANCE(270); END_STATE(); case 36: - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(147); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '-') ADVANCE(267); - if (lookahead == '0') ADVANCE(221); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '>') ADVANCE(59); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(211); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(65); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(150); + if (lookahead == '0') ADVANCE(223); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(79); - if (lookahead == '`') ADVANCE(234); + if (lookahead == ']') ADVANCE(213); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '{') ADVANCE(151); + if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != '&' && + lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(268); + lookahead != '|') ADVANCE(270); END_STATE(); case 37: - if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(208); - if (lookahead == '&') ADVANCE(53); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(195); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '0') ADVANCE(257); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(253); - if (lookahead == '@') ADVANCE(251); - if (lookahead == '\\') SKIP(75) - if (lookahead == ']') ADVANCE(65); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '|') ADVANCE(143); - if (lookahead == '}') ADVANCE(150); + if (lookahead == '!') ADVANCE(159); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(149); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '-') ADVANCE(269); + if (lookahead == '0') ADVANCE(223); + if (lookahead == '<') ADVANCE(59); + if (lookahead == '>') ADVANCE(60); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == '`') ADVANCE(236); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(37) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0 && + lookahead != '&' && + lookahead != ';' && + lookahead != '|') ADVANCE(270); END_STATE(); case 38: - if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(208); - if (lookahead == '&') ADVANCE(53); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(195); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '0') ADVANCE(257); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(253); - if (lookahead == '@') ADVANCE(251); - if (lookahead == '\\') SKIP(104) - if (lookahead == ']') ADVANCE(160); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '|') ADVANCE(70); + if (lookahead == '!') ADVANCE(158); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(54); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == ')') ADVANCE(147); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '<') ADVANCE(181); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(185); + if (lookahead == '?') ADVANCE(255); + if (lookahead == '@') ADVANCE(253); + if (lookahead == '\\') SKIP(76) + if (lookahead == ']') ADVANCE(66); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '|') ADVANCE(145); + if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(38) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); case 39: - if (lookahead == '!') ADVANCE(154); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(208); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '0') ADVANCE(257); - if (lookahead == '?') ADVANCE(253); - if (lookahead == '@') ADVANCE(251); - if (lookahead == '\\') ADVANCE(87); - if (lookahead == '_') ADVANCE(260); + if (lookahead == '!') ADVANCE(158); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(54); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '<') ADVANCE(181); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(185); + if (lookahead == '?') ADVANCE(255); + if (lookahead == '@') ADVANCE(253); + if (lookahead == '\\') SKIP(105) + if (lookahead == ']') ADVANCE(162); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(215); + lookahead == ' ') SKIP(39) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); - if (lookahead != 0 && - lookahead != '`') ADVANCE(217); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); case 40: - if (lookahead == '!') ADVANCE(62); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(208); - if (lookahead == '&') ADVANCE(53); - if (lookahead == ')') ADVANCE(145); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(195); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '*') ADVANCE(251); if (lookahead == '-') ADVANCE(198); - if (lookahead == '0') ADVANCE(257); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(253); - if (lookahead == '@') ADVANCE(251); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') SKIP(85) - if (lookahead == ']') ADVANCE(212); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '|') ADVANCE(143); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '?') ADVANCE(255); + if (lookahead == '@') ADVANCE(253); + if (lookahead == '\\') ADVANCE(88); + if (lookahead == '_') ADVANCE(262); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(40) + lookahead == ' ') ADVANCE(217); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + if (lookahead != 0 && + lookahead != '`') ADVANCE(219); END_STATE(); case 41: - if (lookahead == '!') ADVANCE(62); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '&') ADVANCE(53); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '+') ADVANCE(195); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '\\') SKIP(91) - if (lookahead == '|') ADVANCE(70); + if (lookahead == '!') ADVANCE(63); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(54); + if (lookahead == ')') ADVANCE(147); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '<') ADVANCE(181); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(185); + if (lookahead == '?') ADVANCE(255); + if (lookahead == '@') ADVANCE(253); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') SKIP(86) + if (lookahead == ']') ADVANCE(214); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '|') ADVANCE(145); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(41) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); case 42: - if (lookahead == '!') ADVANCE(62); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '&') ADVANCE(53); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '+') ADVANCE(195); - if (lookahead == '-') ADVANCE(198); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') SKIP(86) - if (lookahead == ']') ADVANCE(160); - if (lookahead == 'e') ADVANCE(69); - if (lookahead == 'i') ADVANCE(68); - if (lookahead == '|') ADVANCE(70); + if (lookahead == '!') ADVANCE(63); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '&') ADVANCE(54); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '<') ADVANCE(181); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(185); + if (lookahead == '\\') SKIP(92) + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(42) END_STATE(); case 43: - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '/') ADVANCE(228); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ':') ADVANCE(229); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(59); + if (lookahead == '!') ADVANCE(63); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '&') ADVANCE(54); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '-') ADVANCE(200); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(181); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(185); if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(211); - if (lookahead == '\\') ADVANCE(84); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '}') ADVANCE(150); + lookahead == '{' || + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') SKIP(87) + if (lookahead == ']') ADVANCE(162); + if (lookahead == 'e') ADVANCE(70); + if (lookahead == 'i') ADVANCE(69); + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(43) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(268); END_STATE(); case 44: - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(221); - if (lookahead == ':') ADVANCE(229); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(59); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '%') ADVANCE(234); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ':') ADVANCE(231); + if (lookahead == '<') ADVANCE(59); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(211); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '}') ADVANCE(150); + lookahead == '{') ADVANCE(213); + if (lookahead == '\\') ADVANCE(85); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(44) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(268); + lookahead != '|') ADVANCE(270); END_STATE(); case 45: - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(64); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '0') ADVANCE(221); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '[') ADVANCE(159); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '`') ADVANCE(234); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '%') ADVANCE(234); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ':') ADVANCE(231); + if (lookahead == '<') ADVANCE(59); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '>') ADVANCE(60); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(213); + if (lookahead == '\\') ADVANCE(90); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(45) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != ')' && + (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(268); + lookahead != '|') ADVANCE(270); END_STATE(); case 46: - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '&') ADVANCE(64); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '(') ADVANCE(147); - if (lookahead == ')') ADVANCE(144); - if (lookahead == '0') ADVANCE(221); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '[' || - lookahead == ']' || + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(65); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(150); + if (lookahead == '0') ADVANCE(223); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '[') ADVANCE(161); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(73); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '|') ADVANCE(141); + lookahead == '}') ADVANCE(213); + if (lookahead == '`') ADVANCE(236); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(46) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != ';') ADVANCE(268); + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(270); END_STATE(); case 47: - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '0') ADVANCE(221); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '>') ADVANCE(59); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '&') ADVANCE(65); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '(') ADVANCE(149); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '0') ADVANCE(223); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(211); - if (lookahead == '\\') ADVANCE(90); - if (lookahead == '`') ADVANCE(234); - if (lookahead == '}') ADVANCE(150); + lookahead == '{' || + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(74); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(47) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(268); + lookahead != ';') ADVANCE(270); END_STATE(); case 48: - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '0') ADVANCE(221); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '>') ADVANCE(59); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '0') ADVANCE(223); + if (lookahead == '<') ADVANCE(59); + if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(95); - if (lookahead == ']') ADVANCE(160); - if (lookahead == '`') ADVANCE(234); + lookahead == ']' || + lookahead == '{') ADVANCE(213); + if (lookahead == '\\') ADVANCE(91); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(48) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(268); + lookahead != '|') ADVANCE(270); END_STATE(); case 49: - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(209); - if (lookahead == '\'') ADVANCE(54); - if (lookahead == '0') ADVANCE(221); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '>') ADVANCE(59); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '0') ADVANCE(223); + if (lookahead == '<') ADVANCE(59); + if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(211); - if (lookahead == '\\') ADVANCE(94); - if (lookahead == '`') ADVANCE(234); - if (lookahead == 'e') ADVANCE(265); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(96); + if (lookahead == ']') ADVANCE(162); + if (lookahead == '`') ADVANCE(236); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(49) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(268); + lookahead != '|') ADVANCE(270); END_STATE(); case 50: - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(214); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(234); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(240); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '\'') ADVANCE(55); + if (lookahead == '0') ADVANCE(223); + if (lookahead == '<') ADVANCE(59); + if (lookahead == '>') ADVANCE(60); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(95); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'e') ADVANCE(267); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(216); - if (lookahead != 0) ADVANCE(217); + lookahead == ' ') SKIP(50) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '|') ADVANCE(270); END_STATE(); case 51: - if (lookahead == '#') ADVANCE(238); - if (lookahead == '&') ADVANCE(64); - if (lookahead == '(') ADVANCE(147); - if (lookahead == ';') ADVANCE(135); - if (lookahead == '<') ADVANCE(174); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == ']') ADVANCE(160); - if (lookahead == '{') ADVANCE(149); - if (lookahead == '}') ADVANCE(150); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '`') ADVANCE(236); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(218); + if (lookahead != 0) ADVANCE(219); + END_STATE(); + case 52: + if (lookahead == '#') ADVANCE(240); + if (lookahead == '&') ADVANCE(65); + if (lookahead == '(') ADVANCE(149); + if (lookahead == ';') ADVANCE(137); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(184); + if (lookahead == '\\') ADVANCE(78); + if (lookahead == ']') ADVANCE(162); + if (lookahead == '{') ADVANCE(151); + if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(51) + lookahead == ' ') SKIP(52) if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != '[' && lookahead != '`' && - lookahead != '|') ADVANCE(268); + lookahead != '|') ADVANCE(270); END_STATE(); - case 52: - if (lookahead == '#') ADVANCE(238); - if (lookahead == '(') ADVANCE(57); - if (lookahead == '+') ADVANCE(63); - if (lookahead == '=') ADVANCE(168); - if (lookahead == '[') ADVANCE(158); - if (lookahead == '\\') SKIP(81) + case 53: + if (lookahead == '#') ADVANCE(240); + if (lookahead == '(') ADVANCE(58); + if (lookahead == '+') ADVANCE(64); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '[') ADVANCE(160); + if (lookahead == '\\') SKIP(82) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(52) + lookahead == ' ') SKIP(53) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); - END_STATE(); - case 53: - if (lookahead == '&') ADVANCE(152); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); case 54: - if (lookahead == '\'') ADVANCE(218); - if (lookahead != 0) ADVANCE(54); + if (lookahead == '&') ADVANCE(154); END_STATE(); case 55: - if (lookahead == '\'') ADVANCE(219); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '\'') ADVANCE(220); if (lookahead != 0) ADVANCE(55); END_STATE(); case 56: - if (lookahead == '\'') ADVANCE(220); - if (lookahead == '\\') ADVANCE(56); - if (lookahead != 0) ADVANCE(55); + if (lookahead == '\'') ADVANCE(221); + if (lookahead == '\\') ADVANCE(57); + if (lookahead != 0) ADVANCE(56); END_STATE(); case 57: - if (lookahead == '(') ADVANCE(133); + if (lookahead == '\'') ADVANCE(222); + if (lookahead == '\\') ADVANCE(57); + if (lookahead != 0) ADVANCE(56); END_STATE(); case 58: - if (lookahead == '(') ADVANCE(235); + if (lookahead == '(') ADVANCE(135); END_STATE(); case 59: - if (lookahead == '(') ADVANCE(236); + if (lookahead == '(') ADVANCE(237); END_STATE(); case 60: - if (lookahead == ')') ADVANCE(134); + if (lookahead == '(') ADVANCE(238); END_STATE(); case 61: - if (lookahead == ';') ADVANCE(146); + if (lookahead == ')') ADVANCE(136); END_STATE(); case 62: - if (lookahead == '=') ADVANCE(192); + if (lookahead == ';') ADVANCE(148); END_STATE(); case 63: - if (lookahead == '=') ADVANCE(172); + if (lookahead == '=') ADVANCE(194); END_STATE(); case 64: - if (lookahead == '>') ADVANCE(185); + if (lookahead == '=') ADVANCE(174); END_STATE(); case 65: - if (lookahead == ']') ADVANCE(163); + if (lookahead == '>') ADVANCE(187); END_STATE(); case 66: - if (lookahead == 'a') ADVANCE(67); + if (lookahead == ']') ADVANCE(165); END_STATE(); case 67: - if (lookahead == 'c') ADVANCE(137); + if (lookahead == 'a') ADVANCE(68); END_STATE(); case 68: - if (lookahead == 'n') ADVANCE(130); + if (lookahead == 'c') ADVANCE(139); END_STATE(); case 69: - if (lookahead == 's') ADVANCE(66); + if (lookahead == 'n') ADVANCE(132); END_STATE(); case 70: - if (lookahead == '|') ADVANCE(153); + if (lookahead == 's') ADVANCE(67); END_STATE(); case 71: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(30) - if (lookahead != 0) ADVANCE(268); + if (lookahead == '|') ADVANCE(155); END_STATE(); case 72: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(33) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(31) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 73: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(46) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(34) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 74: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(13) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(47) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 75: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(37) + lookahead == ' ') SKIP(13) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 76: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(19) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(38) END_STATE(); case 77: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(51) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(20) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 78: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(35) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(52) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 79: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) - if (lookahead != 0) ADVANCE(268); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 80: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(45) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(37) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 81: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(52) + lookahead == ' ') SKIP(46) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 82: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(216); - if (lookahead != 0) ADVANCE(217); + lookahead == ' ') SKIP(53) END_STATE(); case 83: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(20) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') ADVANCE(218); + if (lookahead != 0) ADVANCE(219); END_STATE(); case 84: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(43) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(21) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 85: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(40) + lookahead == ' ') SKIP(44) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 86: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(42) + lookahead == ' ') SKIP(41) END_STATE(); case 87: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(215); - if (lookahead != 0) ADVANCE(217); + lookahead == ' ') SKIP(43) END_STATE(); case 88: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(16) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') ADVANCE(217); + if (lookahead != 0) ADVANCE(219); END_STATE(); case 89: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(44) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(17) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 90: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(47) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(45) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 91: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(41) + lookahead == ' ') SKIP(48) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 92: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(18) + lookahead == ' ') SKIP(42) END_STATE(); case 93: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(19) END_STATE(); case 94: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(49) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(22) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 95: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(48) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(50) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 96: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(49) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 97: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(34) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(23) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 98: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(23) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(35) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 99: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (lookahead != 0) ADVANCE(268); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 100: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(32) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(25) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 101: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(25) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(33) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 102: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (lookahead != 0) ADVANCE(268); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 103: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(15) + lookahead == ' ') SKIP(27) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 104: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(38) + lookahead == ' ') SKIP(15) END_STATE(); case 105: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(31) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(39) END_STATE(); case 106: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(17) + lookahead == ' ') SKIP(32) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 107: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(27) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(18) END_STATE(); case 108: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (lookahead != 0) ADVANCE(268); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 109: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(29) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(16) END_STATE(); case 110: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(14) + lookahead == ' ') SKIP(29) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 111: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(30) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 112: - if (lookahead != 0) ADVANCE(217); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(14) END_STATE(); case 113: - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(227); END_STATE(); case 114: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead != 0) ADVANCE(219); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(115); - if (lookahead == '\\') ADVANCE(74); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(270); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(116); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 117: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(117); - if (lookahead == '-') ADVANCE(267); - if (lookahead == '\\') ADVANCE(88); + if (lookahead == '\\') ADVANCE(75); END_STATE(); case 118: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(118); - if (lookahead == '-') ADVANCE(198); END_STATE(); case 119: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(119); - if (lookahead == '\\') ADVANCE(76); + if (lookahead == '-') ADVANCE(269); + if (lookahead == '\\') ADVANCE(89); END_STATE(); case 120: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(120); - if (lookahead == '\\') ADVANCE(83); + if (lookahead == '-') ADVANCE(200); END_STATE(); case 121: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(121); - if (lookahead == '\\') ADVANCE(93); + if (lookahead == '\\') ADVANCE(77); END_STATE(); case 122: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\\') ADVANCE(96); + if (lookahead == '\\') ADVANCE(84); END_STATE(); case 123: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(123); - if (lookahead == '\\') ADVANCE(98); + if (lookahead == '\\') ADVANCE(94); END_STATE(); case 124: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(124); - if (lookahead == '\\') ADVANCE(99); + if (lookahead == '\\') ADVANCE(97); END_STATE(); case 125: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(125); - if (lookahead == '\\') ADVANCE(101); + if (lookahead == '\\') ADVANCE(99); END_STATE(); case 126: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(126); - if (lookahead == '\\') ADVANCE(102); + if (lookahead == '\\') ADVANCE(100); END_STATE(); case 127: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(127); - if (lookahead == '\\') ADVANCE(107); + if (lookahead == '\\') ADVANCE(102); END_STATE(); case 128: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(128); - if (lookahead == '\\') ADVANCE(108); + if (lookahead == '\\') ADVANCE(103); END_STATE(); case 129: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(129); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\\') ADVANCE(108); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(130); + if (lookahead == '\\') ADVANCE(110); END_STATE(); case 131: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(131); + if (lookahead == '\\') ADVANCE(111); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 133: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2854,38 +2883,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 132: + case 134: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); - case 133: + case 135: ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); - case 134: + case 136: ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); - case 135: + case 137: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 136: + case 138: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(146); + if (lookahead == ';') ADVANCE(148); END_STATE(); - case 137: + case 139: ACCEPT_TOKEN(anon_sym_esac); END_STATE(); - case 138: + case 140: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2897,11 +2926,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 139: + case 141: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2914,66 +2943,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 140: + case 142: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); - case 141: + case 143: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 142: + case 144: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(151); - if (lookahead == '|') ADVANCE(153); + if (lookahead == '&') ADVANCE(153); + if (lookahead == '|') ADVANCE(155); END_STATE(); - case 143: + case 145: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(153); + if (lookahead == '|') ADVANCE(155); END_STATE(); - case 144: + case 146: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 145: + case 147: ACCEPT_TOKEN(anon_sym_RPAREN); - if (lookahead == ')') ADVANCE(134); + if (lookahead == ')') ADVANCE(136); END_STATE(); - case 146: + case 148: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); - case 147: + case 149: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 148: + case 150: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(133); + if (lookahead == '(') ADVANCE(135); END_STATE(); - case 149: + case 151: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 150: + case 152: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 151: + case 153: ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); - case 152: + case 154: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 153: + case 155: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 154: + case 156: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 155: + case 157: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(193); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2984,15 +3013,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 156: + case 158: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(192); + if (lookahead == '=') ADVANCE(194); END_STATE(); - case 157: + case 159: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3005,34 +3034,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 158: + case 160: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 159: + case 161: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(162); + if (lookahead == '[') ADVANCE(164); END_STATE(); - case 160: + case 162: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 161: + case 163: ACCEPT_TOKEN(anon_sym_RBRACK); - if (lookahead == ']') ADVANCE(163); + if (lookahead == ']') ADVANCE(165); END_STATE(); - case 162: + case 164: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 163: + case 165: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 164: + case 166: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 165: + case 167: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3045,14 +3074,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 166: + case 168: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 167: + case 169: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3065,16 +3094,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 168: + case 170: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 169: + case 171: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(167); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == '~') ADVANCE(165); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == '~') ADVANCE(167); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3085,16 +3114,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 170: + case 172: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(166); - if (lookahead == '~') ADVANCE(164); + if (lookahead == '=') ADVANCE(168); + if (lookahead == '~') ADVANCE(166); END_STATE(); - case 171: + case 173: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3107,14 +3136,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 172: + case 174: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 173: + case 175: ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3127,94 +3156,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(187); - END_STATE(); - case 175: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(187); - if (lookahead == '(') ADVANCE(235); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 176: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(187); - if (lookahead == '(') ADVANCE(235); - if (lookahead == '<') ADVANCE(189); + if (lookahead == '&') ADVANCE(189); END_STATE(); case 177: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(187); - if (lookahead == '(') ADVANCE(235); - if (lookahead == '<') ADVANCE(189); - if (lookahead == '=') ADVANCE(202); + if (lookahead == '&') ADVANCE(189); + if (lookahead == '(') ADVANCE(237); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(187); - if (lookahead == '<') ADVANCE(189); + if (lookahead == '&') ADVANCE(189); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '<') ADVANCE(191); END_STATE(); case 179: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(202); + if (lookahead == '&') ADVANCE(189); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '<') ADVANCE(191); + if (lookahead == '=') ADVANCE(204); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '(') ADVANCE(236); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(189); + if (lookahead == '<') ADVANCE(191); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '(') ADVANCE(236); - if (lookahead == '>') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(204); END_STATE(); case 182: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '>') ADVANCE(184); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '(') ADVANCE(238); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(186); END_STATE(); case 183: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(203); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '(') ADVANCE(238); + if (lookahead == '>') ADVANCE(186); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '>') ADVANCE(186); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(205); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_LT_AMP); + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') ADVANCE(188); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_GT_AMP); + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '<') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_LT_AMP); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(anon_sym_GT_AMP); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '<') ADVANCE(193); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); case 193: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); + case 194: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(113); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3227,13 +3256,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 194: + case 196: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(205); - if (lookahead == '=') ADVANCE(173); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '+') ADVANCE(207); + if (lookahead == '=') ADVANCE(175); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3244,23 +3273,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 195: + case 197: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(204); - if (lookahead == '=') ADVANCE(172); + if (lookahead == '+') ADVANCE(206); + if (lookahead == '=') ADVANCE(174); END_STATE(); - case 196: + case 198: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 197: + case 199: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '=') ADVANCE(201); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '-') ADVANCE(209); + if (lookahead == '=') ADVANCE(203); + if (lookahead == '\\') ADVANCE(115); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3270,18 +3299,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 198: + case 200: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(206); - if (lookahead == '=') ADVANCE(200); + if (lookahead == '-') ADVANCE(208); + if (lookahead == '=') ADVANCE(202); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); END_STATE(); - case 199: + case 201: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3294,14 +3323,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 200: + case 202: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 201: + case 203: ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3314,20 +3343,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 202: + case 204: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 203: + case 205: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 204: + case 206: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 205: + case 207: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3340,14 +3369,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 206: + case 208: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 207: + case 209: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3360,144 +3389,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 208: + case 210: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 209: + case 211: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(55); - if (lookahead == '(') ADVANCE(233); - if (lookahead == '{') ADVANCE(227); + if (lookahead == '\'') ADVANCE(56); + if (lookahead == '(') ADVANCE(235); + if (lookahead == '{') ADVANCE(229); END_STATE(); - case 210: + case 212: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(233); - if (lookahead == '{') ADVANCE(227); + if (lookahead == '(') ADVANCE(235); + if (lookahead == '{') ADVANCE(229); END_STATE(); - case 211: + case 213: ACCEPT_TOKEN(sym__special_character); END_STATE(); - case 212: + case 214: ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(163); + if (lookahead == ']') ADVANCE(165); END_STATE(); - case 213: + case 215: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 214: + case 216: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(217); - if (lookahead == '\\') ADVANCE(237); + if (lookahead == '\n') ADVANCE(219); + if (lookahead == '\\') ADVANCE(239); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(214); + lookahead != '`') ADVANCE(216); END_STATE(); - case 215: + case 217: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(154); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(208); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '0') ADVANCE(257); - if (lookahead == '?') ADVANCE(253); - if (lookahead == '@') ADVANCE(251); - if (lookahead == '\\') ADVANCE(87); - if (lookahead == '_') ADVANCE(260); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '?') ADVANCE(255); + if (lookahead == '@') ADVANCE(253); + if (lookahead == '\\') ADVANCE(88); + if (lookahead == '_') ADVANCE(262); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(215); + lookahead == ' ') ADVANCE(217); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); if (lookahead != 0 && - lookahead != '`') ADVANCE(217); + lookahead != '`') ADVANCE(219); END_STATE(); - case 216: + case 218: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '"') ADVANCE(213); - if (lookahead == '#') ADVANCE(214); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(234); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '`') ADVANCE(236); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(216); - if (lookahead != 0) ADVANCE(217); + lookahead == ' ') ADVANCE(218); + if (lookahead != 0) ADVANCE(219); END_STATE(); - case 217: + case 219: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') ADVANCE(112); + if (lookahead == '\\') ADVANCE(114); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(217); - END_STATE(); - case 218: - ACCEPT_TOKEN(sym_raw_string); - END_STATE(); - case 219: - ACCEPT_TOKEN(sym_ansii_c_string); + lookahead != '`') ADVANCE(219); END_STATE(); case 220: - ACCEPT_TOKEN(sym_ansii_c_string); - if (lookahead == '\'') ADVANCE(219); - if (lookahead == '\\') ADVANCE(56); - if (lookahead != 0) ADVANCE(55); + ACCEPT_TOKEN(sym_raw_string); END_STATE(); case 221: - ACCEPT_TOKEN(sym_number); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 'x') ADVANCE(266); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + ACCEPT_TOKEN(sym_ansii_c_string); END_STATE(); case 222: - ACCEPT_TOKEN(sym_number); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 'x') ADVANCE(242); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + ACCEPT_TOKEN(sym_ansii_c_string); + if (lookahead == '\'') ADVANCE(221); + if (lookahead == '\\') ADVANCE(57); + if (lookahead != 0) ADVANCE(56); END_STATE(); case 223: ACCEPT_TOKEN(sym_number); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '\\') ADVANCE(113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '#') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 'x') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3510,16 +3498,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 224: ACCEPT_TOKEN(sym_number); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '\\') ADVANCE(113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (lookahead == '#') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 'x') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3531,26 +3520,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 225: ACCEPT_TOKEN(sym_number); + if (lookahead == '#') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(sym_number); + if (lookahead == '#') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(227); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 229: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 231: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '?') ADVANCE(230); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '?') ADVANCE(232); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3563,11 +3592,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 230: + case 232: ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3580,11 +3609,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 231: + case 233: ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3597,11 +3626,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 232: + case 234: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3614,38 +3643,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 233: + case 235: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 234: + case 236: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 235: + case 237: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 236: + case 238: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 237: + case 239: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(217); - if (lookahead != 0) ADVANCE(214); + if (lookahead == '\n') ADVANCE(219); + if (lookahead != 0) ADVANCE(216); END_STATE(); - case 238: + case 240: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(238); + lookahead != '\n') ADVANCE(240); END_STATE(); - case 239: + case 241: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 'a') ADVANCE(240); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 'a') ADVANCE(242); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3657,16 +3686,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 240: + case 242: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 'c') ADVANCE(138); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 'c') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3678,16 +3707,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 241: + case 243: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 's') ADVANCE(239); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 's') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3699,15 +3728,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 242: + case 244: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (lookahead == '\\') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3719,15 +3748,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 243: + case 245: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3739,53 +3768,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 244: + case 246: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(245); + if (lookahead == 'a') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); - case 245: + case 247: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(140); + if (lookahead == 'c') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); - case 246: + case 248: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(132); + if (lookahead == 'n') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); - case 247: + case 249: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(244); + if (lookahead == 's') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); - case 248: + case 250: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); - case 249: + case 251: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 250: + case 252: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3798,14 +3827,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 251: + case 253: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 252: + case 254: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3818,14 +3847,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 253: + case 255: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 254: + case 256: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3838,14 +3867,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 255: + case 257: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 'x') ADVANCE(266); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '#') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 'x') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3858,17 +3887,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 256: + case 258: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(111); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 'x') ADVANCE(242); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (lookahead == '#') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 'x') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3880,22 +3909,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 257: + case 259: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); - case 258: + case 260: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3907,11 +3936,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 259: + case 261: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3924,20 +3953,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 260: + case 262: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); - case 261: + case 263: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(167); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == '~') ADVANCE(165); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == '~') ADVANCE(167); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3948,12 +3977,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 262: + case 264: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 'a') ADVANCE(263); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 'a') ADVANCE(265); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3966,12 +3995,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 263: + case 265: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 'c') ADVANCE(139); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 'c') ADVANCE(141); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3984,12 +4013,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 264: + case 266: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 'n') ADVANCE(131); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 'n') ADVANCE(133); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4002,12 +4031,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 265: + case 267: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(113); - if (lookahead == 's') ADVANCE(262); + if (lookahead == '\\') ADVANCE(115); + if (lookahead == 's') ADVANCE(264); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4020,12 +4049,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 266: + case 268: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '\\') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4038,13 +4067,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 267: + case 269: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4056,11 +4085,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(268); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 268: + case 270: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4073,24 +4102,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(268); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 269: + case 271: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); END_STATE(); - case 270: + case 272: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 271: + case 273: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(152); + if (lookahead == '&') ADVANCE(154); END_STATE(); - case 272: + case 274: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(152); - if (lookahead == '>') ADVANCE(185); + if (lookahead == '&') ADVANCE(154); + if (lookahead == '>') ADVANCE(187); END_STATE(); default: return false; @@ -4362,44 +4391,44 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 9, .external_lex_state = 2}, [2] = {.lex_state = 9, .external_lex_state = 2}, - [3] = {.lex_state = 46}, + [3] = {.lex_state = 47}, [4] = {.lex_state = 1, .external_lex_state = 3}, [5] = {.lex_state = 1, .external_lex_state = 4}, - [6] = {.lex_state = 37}, + [6] = {.lex_state = 38}, [7] = {.lex_state = 9, .external_lex_state = 2}, [8] = {.lex_state = 9, .external_lex_state = 2}, [9] = {.lex_state = 5, .external_lex_state = 5}, - [10] = {.lex_state = 37, .external_lex_state = 6}, - [11] = {.lex_state = 51}, + [10] = {.lex_state = 38, .external_lex_state = 6}, + [11] = {.lex_state = 52}, [12] = {.lex_state = 5, .external_lex_state = 5}, - [13] = {.lex_state = 35, .external_lex_state = 7}, + [13] = {.lex_state = 36, .external_lex_state = 7}, [14] = {.lex_state = 5, .external_lex_state = 5}, [15] = {.lex_state = 9, .external_lex_state = 2}, - [16] = {.lex_state = 46}, - [17] = {.lex_state = 36}, - [18] = {.lex_state = 45, .external_lex_state = 2}, - [19] = {.lex_state = 52}, - [20] = {.lex_state = 51}, - [21] = {.lex_state = 50}, + [16] = {.lex_state = 47}, + [17] = {.lex_state = 37}, + [18] = {.lex_state = 46, .external_lex_state = 2}, + [19] = {.lex_state = 53}, + [20] = {.lex_state = 52}, + [21] = {.lex_state = 51}, [22] = {.lex_state = 9, .external_lex_state = 2}, - [23] = {.lex_state = 52}, + [23] = {.lex_state = 53}, [24] = {.lex_state = 9, .external_lex_state = 2}, - [25] = {.lex_state = 36}, - [26] = {.lex_state = 36}, + [25] = {.lex_state = 37}, + [26] = {.lex_state = 37}, [27] = {.lex_state = 5, .external_lex_state = 4}, [28] = {.lex_state = 3, .external_lex_state = 4}, [29] = {.lex_state = 6, .external_lex_state = 3}, - [30] = {.lex_state = 52}, + [30] = {.lex_state = 53}, [31] = {.lex_state = 5, .external_lex_state = 4}, [32] = {.lex_state = 9, .external_lex_state = 2}, [33] = {.lex_state = 9}, - [34] = {.lex_state = 46, .external_lex_state = 2}, + [34] = {.lex_state = 47, .external_lex_state = 2}, [35] = {.lex_state = 9}, [36] = {.lex_state = 5, .external_lex_state = 4}, [37] = {.lex_state = 9}, - [38] = {.lex_state = 46, .external_lex_state = 8}, - [39] = {.lex_state = 46, .external_lex_state = 2}, - [40] = {.lex_state = 46, .external_lex_state = 2}, + [38] = {.lex_state = 47, .external_lex_state = 8}, + [39] = {.lex_state = 47, .external_lex_state = 2}, + [40] = {.lex_state = 47, .external_lex_state = 2}, [41] = {.lex_state = 1, .external_lex_state = 9}, [42] = {.lex_state = 1, .external_lex_state = 3}, [43] = {.lex_state = 1, .external_lex_state = 3}, @@ -4411,59 +4440,59 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [49] = {.lex_state = 5, .external_lex_state = 5}, [50] = {.lex_state = 9}, [51] = {.lex_state = 9}, - [52] = {.lex_state = 46}, + [52] = {.lex_state = 47}, [53] = {.lex_state = 5, .external_lex_state = 5}, - [54] = {.lex_state = 43, .external_lex_state = 10}, - [55] = {.lex_state = 40, .external_lex_state = 6}, - [56] = {.lex_state = 52}, - [57] = {.lex_state = 43, .external_lex_state = 10}, - [58] = {.lex_state = 51}, + [54] = {.lex_state = 44, .external_lex_state = 10}, + [55] = {.lex_state = 41, .external_lex_state = 6}, + [56] = {.lex_state = 53}, + [57] = {.lex_state = 44, .external_lex_state = 10}, + [58] = {.lex_state = 52}, [59] = {.lex_state = 9}, [60] = {.lex_state = 3, .external_lex_state = 4}, [61] = {.lex_state = 3, .external_lex_state = 4}, [62] = {.lex_state = 6, .external_lex_state = 3}, - [63] = {.lex_state = 35, .external_lex_state = 7}, - [64] = {.lex_state = 51}, + [63] = {.lex_state = 36, .external_lex_state = 7}, + [64] = {.lex_state = 52}, [65] = {.lex_state = 3, .external_lex_state = 4}, [66] = {.lex_state = 6, .external_lex_state = 3}, [67] = {.lex_state = 4, .external_lex_state = 11}, [68] = {.lex_state = 4, .external_lex_state = 12}, [69] = {.lex_state = 4, .external_lex_state = 12}, - [70] = {.lex_state = 36}, - [71] = {.lex_state = 40, .external_lex_state = 13}, - [72] = {.lex_state = 36}, - [73] = {.lex_state = 40}, - [74] = {.lex_state = 42}, + [70] = {.lex_state = 37}, + [71] = {.lex_state = 41, .external_lex_state = 13}, + [72] = {.lex_state = 37}, + [73] = {.lex_state = 41}, + [74] = {.lex_state = 43}, [75] = {.lex_state = 3, .external_lex_state = 4}, - [76] = {.lex_state = 46, .external_lex_state = 14}, - [77] = {.lex_state = 46}, - [78] = {.lex_state = 46}, - [79] = {.lex_state = 39}, + [76] = {.lex_state = 47, .external_lex_state = 14}, + [77] = {.lex_state = 47}, + [78] = {.lex_state = 47}, + [79] = {.lex_state = 40}, [80] = {.lex_state = 5, .external_lex_state = 5}, - [81] = {.lex_state = 50, .external_lex_state = 13}, - [82] = {.lex_state = 50}, - [83] = {.lex_state = 46, .external_lex_state = 2}, + [81] = {.lex_state = 51, .external_lex_state = 13}, + [82] = {.lex_state = 51}, + [83] = {.lex_state = 47, .external_lex_state = 2}, [84] = {.lex_state = 9}, - [85] = {.lex_state = 16, .external_lex_state = 12}, + [85] = {.lex_state = 17, .external_lex_state = 15}, [86] = {.lex_state = 4, .external_lex_state = 12}, - [87] = {.lex_state = 51}, - [88] = {.lex_state = 42, .external_lex_state = 15}, - [89] = {.lex_state = 40}, + [87] = {.lex_state = 52}, + [88] = {.lex_state = 43, .external_lex_state = 16}, + [89] = {.lex_state = 41}, [90] = {.lex_state = 5, .external_lex_state = 4}, [91] = {.lex_state = 5, .external_lex_state = 4}, [92] = {.lex_state = 9, .external_lex_state = 2}, [93] = {.lex_state = 9, .external_lex_state = 2}, - [94] = {.lex_state = 9, .external_lex_state = 16}, - [95] = {.lex_state = 9, .external_lex_state = 17}, + [94] = {.lex_state = 9, .external_lex_state = 17}, + [95] = {.lex_state = 9, .external_lex_state = 18}, [96] = {.lex_state = 9, .external_lex_state = 2}, - [97] = {.lex_state = 46}, + [97] = {.lex_state = 47}, [98] = {.lex_state = 3, .external_lex_state = 4}, [99] = {.lex_state = 3, .external_lex_state = 4}, [100] = {.lex_state = 6, .external_lex_state = 3}, [101] = {.lex_state = 9, .external_lex_state = 2}, [102] = {.lex_state = 5, .external_lex_state = 4}, - [103] = {.lex_state = 46, .external_lex_state = 2}, - [104] = {.lex_state = 46, .external_lex_state = 18}, + [103] = {.lex_state = 47, .external_lex_state = 2}, + [104] = {.lex_state = 47, .external_lex_state = 19}, [105] = {.lex_state = 5, .external_lex_state = 5}, [106] = {.lex_state = 5, .external_lex_state = 4}, [107] = {.lex_state = 5, .external_lex_state = 4}, @@ -4473,417 +4502,417 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [111] = {.lex_state = 5, .external_lex_state = 5}, [112] = {.lex_state = 5, .external_lex_state = 5}, [113] = {.lex_state = 5, .external_lex_state = 5}, - [114] = {.lex_state = 46}, + [114] = {.lex_state = 47}, [115] = {.lex_state = 5, .external_lex_state = 5}, - [116] = {.lex_state = 44, .external_lex_state = 19}, - [117] = {.lex_state = 44, .external_lex_state = 20}, + [116] = {.lex_state = 45, .external_lex_state = 20}, + [117] = {.lex_state = 45, .external_lex_state = 21}, [118] = {.lex_state = 5, .external_lex_state = 5}, - [119] = {.lex_state = 44, .external_lex_state = 10}, - [120] = {.lex_state = 44, .external_lex_state = 10}, - [121] = {.lex_state = 43, .external_lex_state = 10}, - [122] = {.lex_state = 52}, - [123] = {.lex_state = 43, .external_lex_state = 10}, - [124] = {.lex_state = 47, .external_lex_state = 10}, - [125] = {.lex_state = 44, .external_lex_state = 20}, + [119] = {.lex_state = 45, .external_lex_state = 10}, + [120] = {.lex_state = 45, .external_lex_state = 10}, + [121] = {.lex_state = 44, .external_lex_state = 10}, + [122] = {.lex_state = 53}, + [123] = {.lex_state = 44, .external_lex_state = 10}, + [124] = {.lex_state = 48, .external_lex_state = 10}, + [125] = {.lex_state = 45, .external_lex_state = 21}, [126] = {.lex_state = 5, .external_lex_state = 5}, - [127] = {.lex_state = 44, .external_lex_state = 10}, + [127] = {.lex_state = 45, .external_lex_state = 10}, [128] = {.lex_state = 9}, [129] = {.lex_state = 3, .external_lex_state = 4}, [130] = {.lex_state = 9}, - [131] = {.lex_state = 35, .external_lex_state = 7}, - [132] = {.lex_state = 35, .external_lex_state = 21}, + [131] = {.lex_state = 36, .external_lex_state = 7}, + [132] = {.lex_state = 36, .external_lex_state = 22}, [133] = {.lex_state = 3, .external_lex_state = 4}, [134] = {.lex_state = 9, .external_lex_state = 2}, - [135] = {.lex_state = 51}, - [136] = {.lex_state = 42}, + [135] = {.lex_state = 52}, + [136] = {.lex_state = 43}, [137] = {.lex_state = 4, .external_lex_state = 12}, - [138] = {.lex_state = 42}, + [138] = {.lex_state = 43}, [139] = {.lex_state = 4, .external_lex_state = 12}, - [140] = {.lex_state = 41}, - [141] = {.lex_state = 40}, - [142] = {.lex_state = 36}, - [143] = {.lex_state = 40}, - [144] = {.lex_state = 36, .external_lex_state = 18}, + [140] = {.lex_state = 42}, + [141] = {.lex_state = 41}, + [142] = {.lex_state = 37}, + [143] = {.lex_state = 41}, + [144] = {.lex_state = 37, .external_lex_state = 19}, [145] = {.lex_state = 3, .external_lex_state = 4}, - [146] = {.lex_state = 46}, + [146] = {.lex_state = 47}, [147] = {.lex_state = 6, .external_lex_state = 3}, [148] = {.lex_state = 6, .external_lex_state = 9}, [149] = {.lex_state = 6, .external_lex_state = 3}, - [150] = {.lex_state = 51, .external_lex_state = 22}, - [151] = {.lex_state = 42, .external_lex_state = 22}, - [152] = {.lex_state = 51, .external_lex_state = 22}, - [153] = {.lex_state = 46, .external_lex_state = 8}, - [154] = {.lex_state = 46, .external_lex_state = 2}, - [155] = {.lex_state = 46, .external_lex_state = 2}, + [150] = {.lex_state = 52, .external_lex_state = 23}, + [151] = {.lex_state = 43, .external_lex_state = 23}, + [152] = {.lex_state = 52, .external_lex_state = 23}, + [153] = {.lex_state = 47, .external_lex_state = 8}, + [154] = {.lex_state = 47, .external_lex_state = 2}, + [155] = {.lex_state = 47, .external_lex_state = 2}, [156] = {.lex_state = 5, .external_lex_state = 5}, - [157] = {.lex_state = 50, .external_lex_state = 13}, - [158] = {.lex_state = 50}, - [159] = {.lex_state = 39}, - [160] = {.lex_state = 50}, + [157] = {.lex_state = 51, .external_lex_state = 13}, + [158] = {.lex_state = 51}, + [159] = {.lex_state = 40}, + [160] = {.lex_state = 51}, [161] = {.lex_state = 5, .external_lex_state = 5}, - [162] = {.lex_state = 16, .external_lex_state = 12}, - [163] = {.lex_state = 18, .external_lex_state = 12}, - [164] = {.lex_state = 46}, - [165] = {.lex_state = 51}, - [166] = {.lex_state = 9, .external_lex_state = 2}, - [167] = {.lex_state = 3, .external_lex_state = 4}, + [162] = {.lex_state = 17, .external_lex_state = 12}, + [163] = {.lex_state = 4, .external_lex_state = 12}, + [164] = {.lex_state = 19, .external_lex_state = 12}, + [165] = {.lex_state = 47}, + [166] = {.lex_state = 52}, + [167] = {.lex_state = 9, .external_lex_state = 2}, [168] = {.lex_state = 3, .external_lex_state = 4}, - [169] = {.lex_state = 6, .external_lex_state = 3}, - [170] = {.lex_state = 4, .external_lex_state = 12}, - [171] = {.lex_state = 9, .external_lex_state = 23}, - [172] = {.lex_state = 4, .external_lex_state = 12}, - [173] = {.lex_state = 3, .external_lex_state = 4}, + [169] = {.lex_state = 3, .external_lex_state = 4}, + [170] = {.lex_state = 6, .external_lex_state = 3}, + [171] = {.lex_state = 4, .external_lex_state = 12}, + [172] = {.lex_state = 9, .external_lex_state = 24}, + [173] = {.lex_state = 4, .external_lex_state = 12}, [174] = {.lex_state = 3, .external_lex_state = 4}, - [175] = {.lex_state = 6, .external_lex_state = 3}, - [176] = {.lex_state = 3, .external_lex_state = 5}, - [177] = {.lex_state = 3, .external_lex_state = 4}, + [175] = {.lex_state = 3, .external_lex_state = 4}, + [176] = {.lex_state = 6, .external_lex_state = 3}, + [177] = {.lex_state = 3, .external_lex_state = 5}, [178] = {.lex_state = 3, .external_lex_state = 4}, [179] = {.lex_state = 3, .external_lex_state = 4}, - [180] = {.lex_state = 9, .external_lex_state = 2}, - [181] = {.lex_state = 9, .external_lex_state = 16}, - [182] = {.lex_state = 5, .external_lex_state = 4}, + [180] = {.lex_state = 3, .external_lex_state = 4}, + [181] = {.lex_state = 9, .external_lex_state = 2}, + [182] = {.lex_state = 9, .external_lex_state = 17}, [183] = {.lex_state = 5, .external_lex_state = 4}, - [184] = {.lex_state = 5, .external_lex_state = 5}, - [185] = {.lex_state = 5, .external_lex_state = 4}, + [184] = {.lex_state = 5, .external_lex_state = 4}, + [185] = {.lex_state = 5, .external_lex_state = 5}, [186] = {.lex_state = 5, .external_lex_state = 4}, - [187] = {.lex_state = 7, .external_lex_state = 4}, - [188] = {.lex_state = 5, .external_lex_state = 5}, - [189] = {.lex_state = 44, .external_lex_state = 10}, - [190] = {.lex_state = 44, .external_lex_state = 10}, - [191] = {.lex_state = 44, .external_lex_state = 10}, - [192] = {.lex_state = 44, .external_lex_state = 20}, - [193] = {.lex_state = 47, .external_lex_state = 10}, - [194] = {.lex_state = 44, .external_lex_state = 20}, - [195] = {.lex_state = 5, .external_lex_state = 5}, - [196] = {.lex_state = 44, .external_lex_state = 10}, - [197] = {.lex_state = 51, .external_lex_state = 19}, - [198] = {.lex_state = 47, .external_lex_state = 10}, - [199] = {.lex_state = 51, .external_lex_state = 10}, - [200] = {.lex_state = 5, .external_lex_state = 5}, - [201] = {.lex_state = 44, .external_lex_state = 10}, - [202] = {.lex_state = 44, .external_lex_state = 10}, - [203] = {.lex_state = 9}, - [204] = {.lex_state = 3, .external_lex_state = 4}, - [205] = {.lex_state = 4, .external_lex_state = 12}, - [206] = {.lex_state = 3, .external_lex_state = 4}, - [207] = {.lex_state = 9, .external_lex_state = 2}, + [187] = {.lex_state = 5, .external_lex_state = 4}, + [188] = {.lex_state = 7, .external_lex_state = 4}, + [189] = {.lex_state = 5, .external_lex_state = 5}, + [190] = {.lex_state = 45, .external_lex_state = 10}, + [191] = {.lex_state = 45, .external_lex_state = 10}, + [192] = {.lex_state = 45, .external_lex_state = 10}, + [193] = {.lex_state = 45, .external_lex_state = 21}, + [194] = {.lex_state = 48, .external_lex_state = 10}, + [195] = {.lex_state = 45, .external_lex_state = 21}, + [196] = {.lex_state = 5, .external_lex_state = 5}, + [197] = {.lex_state = 45, .external_lex_state = 10}, + [198] = {.lex_state = 52, .external_lex_state = 20}, + [199] = {.lex_state = 48, .external_lex_state = 10}, + [200] = {.lex_state = 52, .external_lex_state = 10}, + [201] = {.lex_state = 5, .external_lex_state = 5}, + [202] = {.lex_state = 45, .external_lex_state = 10}, + [203] = {.lex_state = 45, .external_lex_state = 10}, + [204] = {.lex_state = 9}, + [205] = {.lex_state = 3, .external_lex_state = 4}, + [206] = {.lex_state = 4, .external_lex_state = 12}, + [207] = {.lex_state = 3, .external_lex_state = 4}, [208] = {.lex_state = 9, .external_lex_state = 2}, - [209] = {.lex_state = 3, .external_lex_state = 4}, - [210] = {.lex_state = 6, .external_lex_state = 3}, - [211] = {.lex_state = 51}, - [212] = {.lex_state = 51}, - [213] = {.lex_state = 9, .external_lex_state = 2}, - [214] = {.lex_state = 4, .external_lex_state = 12}, - [215] = {.lex_state = 49}, - [216] = {.lex_state = 4, .external_lex_state = 12}, - [217] = {.lex_state = 49}, - [218] = {.lex_state = 40}, - [219] = {.lex_state = 40}, - [220] = {.lex_state = 40}, - [221] = {.lex_state = 46, .external_lex_state = 13}, - [222] = {.lex_state = 6, .external_lex_state = 3}, - [223] = {.lex_state = 46}, - [224] = {.lex_state = 46}, - [225] = {.lex_state = 52, .external_lex_state = 13}, - [226] = {.lex_state = 48, .external_lex_state = 15}, - [227] = {.lex_state = 52, .external_lex_state = 13}, - [228] = {.lex_state = 51, .external_lex_state = 15}, - [229] = {.lex_state = 51, .external_lex_state = 15}, - [230] = {.lex_state = 50}, - [231] = {.lex_state = 5, .external_lex_state = 5}, - [232] = {.lex_state = 39}, - [233] = {.lex_state = 36}, - [234] = {.lex_state = 18, .external_lex_state = 12}, - [235] = {.lex_state = 16, .external_lex_state = 12}, - [236] = {.lex_state = 22, .external_lex_state = 12}, - [237] = {.lex_state = 3, .external_lex_state = 4}, + [209] = {.lex_state = 9, .external_lex_state = 2}, + [210] = {.lex_state = 3, .external_lex_state = 4}, + [211] = {.lex_state = 6, .external_lex_state = 3}, + [212] = {.lex_state = 52}, + [213] = {.lex_state = 52}, + [214] = {.lex_state = 9, .external_lex_state = 2}, + [215] = {.lex_state = 4, .external_lex_state = 12}, + [216] = {.lex_state = 50}, + [217] = {.lex_state = 4, .external_lex_state = 12}, + [218] = {.lex_state = 50}, + [219] = {.lex_state = 41}, + [220] = {.lex_state = 41}, + [221] = {.lex_state = 41}, + [222] = {.lex_state = 47, .external_lex_state = 13}, + [223] = {.lex_state = 6, .external_lex_state = 3}, + [224] = {.lex_state = 47}, + [225] = {.lex_state = 47}, + [226] = {.lex_state = 53, .external_lex_state = 13}, + [227] = {.lex_state = 49, .external_lex_state = 16}, + [228] = {.lex_state = 53, .external_lex_state = 13}, + [229] = {.lex_state = 52, .external_lex_state = 16}, + [230] = {.lex_state = 52, .external_lex_state = 16}, + [231] = {.lex_state = 51}, + [232] = {.lex_state = 5, .external_lex_state = 5}, + [233] = {.lex_state = 40}, + [234] = {.lex_state = 37}, + [235] = {.lex_state = 19, .external_lex_state = 12}, + [236] = {.lex_state = 17, .external_lex_state = 12}, + [237] = {.lex_state = 23, .external_lex_state = 12}, [238] = {.lex_state = 3, .external_lex_state = 4}, - [239] = {.lex_state = 9, .external_lex_state = 2}, - [240] = {.lex_state = 37}, - [241] = {.lex_state = 4, .external_lex_state = 12}, - [242] = {.lex_state = 9, .external_lex_state = 23}, - [243] = {.lex_state = 9, .external_lex_state = 2}, - [244] = {.lex_state = 4, .external_lex_state = 12}, - [245] = {.lex_state = 5, .external_lex_state = 5}, - [246] = {.lex_state = 44, .external_lex_state = 10}, - [247] = {.lex_state = 44, .external_lex_state = 10}, - [248] = {.lex_state = 51, .external_lex_state = 19}, - [249] = {.lex_state = 47, .external_lex_state = 10}, - [250] = {.lex_state = 51, .external_lex_state = 10}, - [251] = {.lex_state = 5, .external_lex_state = 5}, - [252] = {.lex_state = 44, .external_lex_state = 10}, - [253] = {.lex_state = 44, .external_lex_state = 10}, - [254] = {.lex_state = 5, .external_lex_state = 5}, + [239] = {.lex_state = 3, .external_lex_state = 4}, + [240] = {.lex_state = 9, .external_lex_state = 2}, + [241] = {.lex_state = 38}, + [242] = {.lex_state = 4, .external_lex_state = 12}, + [243] = {.lex_state = 9, .external_lex_state = 24}, + [244] = {.lex_state = 9, .external_lex_state = 2}, + [245] = {.lex_state = 4, .external_lex_state = 12}, + [246] = {.lex_state = 5, .external_lex_state = 5}, + [247] = {.lex_state = 45, .external_lex_state = 10}, + [248] = {.lex_state = 45, .external_lex_state = 10}, + [249] = {.lex_state = 52, .external_lex_state = 20}, + [250] = {.lex_state = 48, .external_lex_state = 10}, + [251] = {.lex_state = 52, .external_lex_state = 10}, + [252] = {.lex_state = 5, .external_lex_state = 5}, + [253] = {.lex_state = 45, .external_lex_state = 10}, + [254] = {.lex_state = 45, .external_lex_state = 10}, [255] = {.lex_state = 5, .external_lex_state = 5}, - [256] = {.lex_state = 44, .external_lex_state = 10}, - [257] = {.lex_state = 3, .external_lex_state = 4}, - [258] = {.lex_state = 35, .external_lex_state = 7}, - [259] = {.lex_state = 9, .external_lex_state = 2}, - [260] = {.lex_state = 51}, - [261] = {.lex_state = 9, .external_lex_state = 2}, - [262] = {.lex_state = 9, .external_lex_state = 16}, - [263] = {.lex_state = 3, .external_lex_state = 4}, - [264] = {.lex_state = 51}, - [265] = {.lex_state = 51}, - [266] = {.lex_state = 51}, - [267] = {.lex_state = 9, .external_lex_state = 2}, - [268] = {.lex_state = 49}, - [269] = {.lex_state = 9, .external_lex_state = 13}, - [270] = {.lex_state = 3, .external_lex_state = 4}, - [271] = {.lex_state = 46}, - [272] = {.lex_state = 42}, - [273] = {.lex_state = 46}, - [274] = {.lex_state = 9}, - [275] = {.lex_state = 49}, - [276] = {.lex_state = 3, .external_lex_state = 4}, - [277] = {.lex_state = 42}, - [278] = {.lex_state = 46}, - [279] = {.lex_state = 6, .external_lex_state = 3}, - [280] = {.lex_state = 46}, - [281] = {.lex_state = 52}, - [282] = {.lex_state = 52, .external_lex_state = 13}, - [283] = {.lex_state = 52}, - [284] = {.lex_state = 52, .external_lex_state = 13}, - [285] = {.lex_state = 51}, - [286] = {.lex_state = 42}, - [287] = {.lex_state = 36}, - [288] = {.lex_state = 18, .external_lex_state = 12}, - [289] = {.lex_state = 51}, - [290] = {.lex_state = 3, .external_lex_state = 4}, - [291] = {.lex_state = 4, .external_lex_state = 12}, - [292] = {.lex_state = 9, .external_lex_state = 23}, - [293] = {.lex_state = 9, .external_lex_state = 2}, - [294] = {.lex_state = 5, .external_lex_state = 5}, - [295] = {.lex_state = 44, .external_lex_state = 10}, - [296] = {.lex_state = 5, .external_lex_state = 5}, + [256] = {.lex_state = 5, .external_lex_state = 5}, + [257] = {.lex_state = 45, .external_lex_state = 10}, + [258] = {.lex_state = 3, .external_lex_state = 4}, + [259] = {.lex_state = 36, .external_lex_state = 7}, + [260] = {.lex_state = 9, .external_lex_state = 2}, + [261] = {.lex_state = 52}, + [262] = {.lex_state = 9, .external_lex_state = 2}, + [263] = {.lex_state = 9, .external_lex_state = 17}, + [264] = {.lex_state = 3, .external_lex_state = 4}, + [265] = {.lex_state = 52}, + [266] = {.lex_state = 52}, + [267] = {.lex_state = 52}, + [268] = {.lex_state = 9, .external_lex_state = 2}, + [269] = {.lex_state = 50}, + [270] = {.lex_state = 9, .external_lex_state = 13}, + [271] = {.lex_state = 3, .external_lex_state = 4}, + [272] = {.lex_state = 47}, + [273] = {.lex_state = 43}, + [274] = {.lex_state = 47}, + [275] = {.lex_state = 9}, + [276] = {.lex_state = 50}, + [277] = {.lex_state = 3, .external_lex_state = 4}, + [278] = {.lex_state = 43}, + [279] = {.lex_state = 47}, + [280] = {.lex_state = 6, .external_lex_state = 3}, + [281] = {.lex_state = 47}, + [282] = {.lex_state = 53}, + [283] = {.lex_state = 53, .external_lex_state = 13}, + [284] = {.lex_state = 53}, + [285] = {.lex_state = 53, .external_lex_state = 13}, + [286] = {.lex_state = 52}, + [287] = {.lex_state = 43}, + [288] = {.lex_state = 37}, + [289] = {.lex_state = 19, .external_lex_state = 12}, + [290] = {.lex_state = 52}, + [291] = {.lex_state = 3, .external_lex_state = 4}, + [292] = {.lex_state = 4, .external_lex_state = 12}, + [293] = {.lex_state = 9, .external_lex_state = 24}, + [294] = {.lex_state = 9, .external_lex_state = 2}, + [295] = {.lex_state = 5, .external_lex_state = 5}, + [296] = {.lex_state = 45, .external_lex_state = 10}, [297] = {.lex_state = 5, .external_lex_state = 5}, - [298] = {.lex_state = 44, .external_lex_state = 10}, - [299] = {.lex_state = 5, .external_lex_state = 5}, - [300] = {.lex_state = 9, .external_lex_state = 2}, - [301] = {.lex_state = 4, .external_lex_state = 12}, - [302] = {.lex_state = 3, .external_lex_state = 4}, - [303] = {.lex_state = 51}, - [304] = {.lex_state = 3, .external_lex_state = 4}, - [305] = {.lex_state = 42}, - [306] = {.lex_state = 46}, - [307] = {.lex_state = 46}, - [308] = {.lex_state = 34, .external_lex_state = 2}, - [309] = {.lex_state = 9}, - [310] = {.lex_state = 34, .external_lex_state = 2}, - [311] = {.lex_state = 9}, - [312] = {.lex_state = 46}, - [313] = {.lex_state = 3, .external_lex_state = 4}, - [314] = {.lex_state = 42}, - [315] = {.lex_state = 46}, - [316] = {.lex_state = 52}, - [317] = {.lex_state = 52}, - [318] = {.lex_state = 51}, - [319] = {.lex_state = 3, .external_lex_state = 4}, - [320] = {.lex_state = 51}, - [321] = {.lex_state = 42}, - [322] = {.lex_state = 36}, - [323] = {.lex_state = 3, .external_lex_state = 4}, - [324] = {.lex_state = 5, .external_lex_state = 5}, + [298] = {.lex_state = 5, .external_lex_state = 5}, + [299] = {.lex_state = 45, .external_lex_state = 10}, + [300] = {.lex_state = 5, .external_lex_state = 5}, + [301] = {.lex_state = 9, .external_lex_state = 2}, + [302] = {.lex_state = 4, .external_lex_state = 12}, + [303] = {.lex_state = 3, .external_lex_state = 4}, + [304] = {.lex_state = 52}, + [305] = {.lex_state = 3, .external_lex_state = 4}, + [306] = {.lex_state = 43}, + [307] = {.lex_state = 47}, + [308] = {.lex_state = 47}, + [309] = {.lex_state = 35, .external_lex_state = 2}, + [310] = {.lex_state = 9}, + [311] = {.lex_state = 35, .external_lex_state = 2}, + [312] = {.lex_state = 9}, + [313] = {.lex_state = 47}, + [314] = {.lex_state = 3, .external_lex_state = 4}, + [315] = {.lex_state = 43}, + [316] = {.lex_state = 47}, + [317] = {.lex_state = 53}, + [318] = {.lex_state = 53}, + [319] = {.lex_state = 52}, + [320] = {.lex_state = 3, .external_lex_state = 4}, + [321] = {.lex_state = 52}, + [322] = {.lex_state = 43}, + [323] = {.lex_state = 37}, + [324] = {.lex_state = 3, .external_lex_state = 4}, [325] = {.lex_state = 5, .external_lex_state = 5}, - [326] = {.lex_state = 9, .external_lex_state = 2}, + [326] = {.lex_state = 5, .external_lex_state = 5}, [327] = {.lex_state = 9, .external_lex_state = 2}, - [328] = {.lex_state = 3, .external_lex_state = 4}, + [328] = {.lex_state = 9, .external_lex_state = 2}, [329] = {.lex_state = 3, .external_lex_state = 4}, - [330] = {.lex_state = 42}, - [331] = {.lex_state = 9, .external_lex_state = 13}, - [332] = {.lex_state = 46}, - [333] = {.lex_state = 9}, - [334] = {.lex_state = 49}, - [335] = {.lex_state = 42}, - [336] = {.lex_state = 34, .external_lex_state = 2}, - [337] = {.lex_state = 9}, - [338] = {.lex_state = 49}, - [339] = {.lex_state = 42}, - [340] = {.lex_state = 34, .external_lex_state = 2}, - [341] = {.lex_state = 9, .external_lex_state = 13}, - [342] = {.lex_state = 46}, - [343] = {.lex_state = 9}, - [344] = {.lex_state = 3, .external_lex_state = 4}, - [345] = {.lex_state = 42}, - [346] = {.lex_state = 3, .external_lex_state = 4}, - [347] = {.lex_state = 51}, - [348] = {.lex_state = 51}, - [349] = {.lex_state = 42}, - [350] = {.lex_state = 3, .external_lex_state = 4}, - [351] = {.lex_state = 49}, - [352] = {.lex_state = 42}, - [353] = {.lex_state = 49}, - [354] = {.lex_state = 42}, - [355] = {.lex_state = 9, .external_lex_state = 2}, - [356] = {.lex_state = 9}, - [357] = {.lex_state = 9, .external_lex_state = 2}, - [358] = {.lex_state = 9}, - [359] = {.lex_state = 3, .external_lex_state = 4}, + [330] = {.lex_state = 3, .external_lex_state = 4}, + [331] = {.lex_state = 43}, + [332] = {.lex_state = 9, .external_lex_state = 13}, + [333] = {.lex_state = 47}, + [334] = {.lex_state = 9}, + [335] = {.lex_state = 50}, + [336] = {.lex_state = 43}, + [337] = {.lex_state = 35, .external_lex_state = 2}, + [338] = {.lex_state = 9}, + [339] = {.lex_state = 50}, + [340] = {.lex_state = 43}, + [341] = {.lex_state = 35, .external_lex_state = 2}, + [342] = {.lex_state = 9, .external_lex_state = 13}, + [343] = {.lex_state = 47}, + [344] = {.lex_state = 9}, + [345] = {.lex_state = 3, .external_lex_state = 4}, + [346] = {.lex_state = 43}, + [347] = {.lex_state = 3, .external_lex_state = 4}, + [348] = {.lex_state = 52}, + [349] = {.lex_state = 52}, + [350] = {.lex_state = 43}, + [351] = {.lex_state = 3, .external_lex_state = 4}, + [352] = {.lex_state = 50}, + [353] = {.lex_state = 43}, + [354] = {.lex_state = 50}, + [355] = {.lex_state = 43}, + [356] = {.lex_state = 9, .external_lex_state = 2}, + [357] = {.lex_state = 9}, + [358] = {.lex_state = 9, .external_lex_state = 2}, + [359] = {.lex_state = 9}, [360] = {.lex_state = 3, .external_lex_state = 4}, - [361] = {.lex_state = 51}, - [362] = {.lex_state = 51}, - [363] = {.lex_state = 49}, - [364] = {.lex_state = 49}, - [365] = {.lex_state = 46}, - [366] = {.lex_state = 9}, - [367] = {.lex_state = 9, .external_lex_state = 2}, - [368] = {.lex_state = 46}, - [369] = {.lex_state = 9}, - [370] = {.lex_state = 9, .external_lex_state = 2}, - [371] = {.lex_state = 3, .external_lex_state = 4}, - [372] = {.lex_state = 51}, - [373] = {.lex_state = 46}, - [374] = {.lex_state = 9}, - [375] = {.lex_state = 46}, - [376] = {.lex_state = 9}, - [377] = {.lex_state = 3, .external_lex_state = 4}, - [378] = {.lex_state = 46}, - [379] = {.lex_state = 46}, - [380] = {.lex_state = 1, .external_lex_state = 3}, - [381] = {.lex_state = 1, .external_lex_state = 4}, - [382] = {.lex_state = 5, .external_lex_state = 5}, + [361] = {.lex_state = 3, .external_lex_state = 4}, + [362] = {.lex_state = 52}, + [363] = {.lex_state = 52}, + [364] = {.lex_state = 50}, + [365] = {.lex_state = 50}, + [366] = {.lex_state = 47}, + [367] = {.lex_state = 9}, + [368] = {.lex_state = 9, .external_lex_state = 2}, + [369] = {.lex_state = 47}, + [370] = {.lex_state = 9}, + [371] = {.lex_state = 9, .external_lex_state = 2}, + [372] = {.lex_state = 3, .external_lex_state = 4}, + [373] = {.lex_state = 52}, + [374] = {.lex_state = 47}, + [375] = {.lex_state = 9}, + [376] = {.lex_state = 47}, + [377] = {.lex_state = 9}, + [378] = {.lex_state = 3, .external_lex_state = 4}, + [379] = {.lex_state = 47}, + [380] = {.lex_state = 47}, + [381] = {.lex_state = 1, .external_lex_state = 3}, + [382] = {.lex_state = 1, .external_lex_state = 4}, [383] = {.lex_state = 5, .external_lex_state = 5}, [384] = {.lex_state = 5, .external_lex_state = 5}, - [385] = {.lex_state = 45, .external_lex_state = 2}, - [386] = {.lex_state = 5, .external_lex_state = 4}, - [387] = {.lex_state = 3, .external_lex_state = 4}, - [388] = {.lex_state = 6, .external_lex_state = 3}, - [389] = {.lex_state = 5, .external_lex_state = 4}, - [390] = {.lex_state = 9, .external_lex_state = 2}, - [391] = {.lex_state = 46, .external_lex_state = 2}, - [392] = {.lex_state = 5, .external_lex_state = 4}, - [393] = {.lex_state = 3, .external_lex_state = 5}, - [394] = {.lex_state = 3, .external_lex_state = 4}, + [385] = {.lex_state = 5, .external_lex_state = 5}, + [386] = {.lex_state = 46, .external_lex_state = 2}, + [387] = {.lex_state = 5, .external_lex_state = 4}, + [388] = {.lex_state = 3, .external_lex_state = 4}, + [389] = {.lex_state = 6, .external_lex_state = 3}, + [390] = {.lex_state = 5, .external_lex_state = 4}, + [391] = {.lex_state = 9, .external_lex_state = 2}, + [392] = {.lex_state = 47, .external_lex_state = 2}, + [393] = {.lex_state = 5, .external_lex_state = 4}, + [394] = {.lex_state = 3, .external_lex_state = 5}, [395] = {.lex_state = 3, .external_lex_state = 4}, - [396] = {.lex_state = 1, .external_lex_state = 9}, - [397] = {.lex_state = 1, .external_lex_state = 3}, + [396] = {.lex_state = 3, .external_lex_state = 4}, + [397] = {.lex_state = 1, .external_lex_state = 9}, [398] = {.lex_state = 1, .external_lex_state = 3}, - [399] = {.lex_state = 1, .external_lex_state = 5}, - [400] = {.lex_state = 1, .external_lex_state = 4}, + [399] = {.lex_state = 1, .external_lex_state = 3}, + [400] = {.lex_state = 1, .external_lex_state = 5}, [401] = {.lex_state = 1, .external_lex_state = 4}, - [402] = {.lex_state = 5, .external_lex_state = 5}, + [402] = {.lex_state = 1, .external_lex_state = 4}, [403] = {.lex_state = 5, .external_lex_state = 5}, [404] = {.lex_state = 5, .external_lex_state = 5}, [405] = {.lex_state = 5, .external_lex_state = 5}, - [406] = {.lex_state = 3, .external_lex_state = 4}, - [407] = {.lex_state = 42, .external_lex_state = 22}, - [408] = {.lex_state = 36}, - [409] = {.lex_state = 42, .external_lex_state = 15}, - [410] = {.lex_state = 3, .external_lex_state = 4}, - [411] = {.lex_state = 5, .external_lex_state = 5}, - [412] = {.lex_state = 5, .external_lex_state = 4}, + [406] = {.lex_state = 5, .external_lex_state = 5}, + [407] = {.lex_state = 3, .external_lex_state = 4}, + [408] = {.lex_state = 43, .external_lex_state = 23}, + [409] = {.lex_state = 37}, + [410] = {.lex_state = 43, .external_lex_state = 16}, + [411] = {.lex_state = 3, .external_lex_state = 4}, + [412] = {.lex_state = 5, .external_lex_state = 5}, [413] = {.lex_state = 5, .external_lex_state = 4}, - [414] = {.lex_state = 9, .external_lex_state = 2}, + [414] = {.lex_state = 5, .external_lex_state = 4}, [415] = {.lex_state = 9, .external_lex_state = 2}, - [416] = {.lex_state = 9, .external_lex_state = 16}, - [417] = {.lex_state = 9, .external_lex_state = 2}, - [418] = {.lex_state = 3, .external_lex_state = 4}, + [416] = {.lex_state = 9, .external_lex_state = 2}, + [417] = {.lex_state = 9, .external_lex_state = 17}, + [418] = {.lex_state = 9, .external_lex_state = 2}, [419] = {.lex_state = 3, .external_lex_state = 4}, - [420] = {.lex_state = 6, .external_lex_state = 3}, - [421] = {.lex_state = 35, .external_lex_state = 7}, - [422] = {.lex_state = 5, .external_lex_state = 4}, - [423] = {.lex_state = 46, .external_lex_state = 18}, - [424] = {.lex_state = 5, .external_lex_state = 5}, - [425] = {.lex_state = 5, .external_lex_state = 4}, + [420] = {.lex_state = 3, .external_lex_state = 4}, + [421] = {.lex_state = 6, .external_lex_state = 3}, + [422] = {.lex_state = 36, .external_lex_state = 7}, + [423] = {.lex_state = 5, .external_lex_state = 4}, + [424] = {.lex_state = 47, .external_lex_state = 19}, + [425] = {.lex_state = 5, .external_lex_state = 5}, [426] = {.lex_state = 5, .external_lex_state = 4}, - [427] = {.lex_state = 3, .external_lex_state = 4}, - [428] = {.lex_state = 1, .external_lex_state = 3}, - [429] = {.lex_state = 1, .external_lex_state = 4}, - [430] = {.lex_state = 5, .external_lex_state = 5}, + [427] = {.lex_state = 5, .external_lex_state = 4}, + [428] = {.lex_state = 3, .external_lex_state = 4}, + [429] = {.lex_state = 1, .external_lex_state = 3}, + [430] = {.lex_state = 1, .external_lex_state = 4}, [431] = {.lex_state = 5, .external_lex_state = 5}, [432] = {.lex_state = 5, .external_lex_state = 5}, - [433] = {.lex_state = 46}, - [434] = {.lex_state = 5, .external_lex_state = 5}, + [433] = {.lex_state = 5, .external_lex_state = 5}, + [434] = {.lex_state = 47}, [435] = {.lex_state = 5, .external_lex_state = 5}, [436] = {.lex_state = 5, .external_lex_state = 5}, - [437] = {.lex_state = 3, .external_lex_state = 4}, - [438] = {.lex_state = 9, .external_lex_state = 2}, - [439] = {.lex_state = 9, .external_lex_state = 16}, - [440] = {.lex_state = 3, .external_lex_state = 4}, - [441] = {.lex_state = 42, .external_lex_state = 15}, - [442] = {.lex_state = 36}, - [443] = {.lex_state = 42, .external_lex_state = 15}, - [444] = {.lex_state = 36, .external_lex_state = 18}, - [445] = {.lex_state = 3, .external_lex_state = 4}, - [446] = {.lex_state = 6, .external_lex_state = 3}, - [447] = {.lex_state = 6, .external_lex_state = 9}, - [448] = {.lex_state = 6, .external_lex_state = 3}, - [449] = {.lex_state = 3, .external_lex_state = 5}, - [450] = {.lex_state = 3, .external_lex_state = 4}, + [437] = {.lex_state = 5, .external_lex_state = 5}, + [438] = {.lex_state = 3, .external_lex_state = 4}, + [439] = {.lex_state = 9, .external_lex_state = 2}, + [440] = {.lex_state = 9, .external_lex_state = 17}, + [441] = {.lex_state = 3, .external_lex_state = 4}, + [442] = {.lex_state = 43, .external_lex_state = 16}, + [443] = {.lex_state = 37}, + [444] = {.lex_state = 43, .external_lex_state = 16}, + [445] = {.lex_state = 37, .external_lex_state = 19}, + [446] = {.lex_state = 3, .external_lex_state = 4}, + [447] = {.lex_state = 6, .external_lex_state = 3}, + [448] = {.lex_state = 6, .external_lex_state = 9}, + [449] = {.lex_state = 6, .external_lex_state = 3}, + [450] = {.lex_state = 3, .external_lex_state = 5}, [451] = {.lex_state = 3, .external_lex_state = 4}, - [452] = {.lex_state = 5, .external_lex_state = 5}, + [452] = {.lex_state = 3, .external_lex_state = 4}, [453] = {.lex_state = 5, .external_lex_state = 5}, - [454] = {.lex_state = 3, .external_lex_state = 4}, + [454] = {.lex_state = 5, .external_lex_state = 5}, [455] = {.lex_state = 3, .external_lex_state = 4}, - [456] = {.lex_state = 6, .external_lex_state = 3}, - [457] = {.lex_state = 4, .external_lex_state = 12}, + [456] = {.lex_state = 3, .external_lex_state = 4}, + [457] = {.lex_state = 6, .external_lex_state = 3}, [458] = {.lex_state = 4, .external_lex_state = 12}, - [459] = {.lex_state = 3, .external_lex_state = 4}, + [459] = {.lex_state = 4, .external_lex_state = 12}, [460] = {.lex_state = 3, .external_lex_state = 4}, - [461] = {.lex_state = 6, .external_lex_state = 3}, - [462] = {.lex_state = 3, .external_lex_state = 5}, - [463] = {.lex_state = 3, .external_lex_state = 4}, + [461] = {.lex_state = 3, .external_lex_state = 4}, + [462] = {.lex_state = 6, .external_lex_state = 3}, + [463] = {.lex_state = 3, .external_lex_state = 5}, [464] = {.lex_state = 3, .external_lex_state = 4}, [465] = {.lex_state = 3, .external_lex_state = 4}, - [466] = {.lex_state = 9, .external_lex_state = 2}, - [467] = {.lex_state = 9, .external_lex_state = 16}, - [468] = {.lex_state = 5, .external_lex_state = 4}, + [466] = {.lex_state = 3, .external_lex_state = 4}, + [467] = {.lex_state = 9, .external_lex_state = 2}, + [468] = {.lex_state = 9, .external_lex_state = 17}, [469] = {.lex_state = 5, .external_lex_state = 4}, - [470] = {.lex_state = 5, .external_lex_state = 5}, - [471] = {.lex_state = 5, .external_lex_state = 4}, + [470] = {.lex_state = 5, .external_lex_state = 4}, + [471] = {.lex_state = 5, .external_lex_state = 5}, [472] = {.lex_state = 5, .external_lex_state = 4}, - [473] = {.lex_state = 7, .external_lex_state = 4}, - [474] = {.lex_state = 5, .external_lex_state = 5}, + [473] = {.lex_state = 5, .external_lex_state = 4}, + [474] = {.lex_state = 7, .external_lex_state = 4}, [475] = {.lex_state = 5, .external_lex_state = 5}, [476] = {.lex_state = 5, .external_lex_state = 5}, - [477] = {.lex_state = 3, .external_lex_state = 4}, + [477] = {.lex_state = 5, .external_lex_state = 5}, [478] = {.lex_state = 3, .external_lex_state = 4}, - [479] = {.lex_state = 42, .external_lex_state = 15}, - [480] = {.lex_state = 42, .external_lex_state = 15}, - [481] = {.lex_state = 42, .external_lex_state = 15}, - [482] = {.lex_state = 22, .external_lex_state = 11}, - [483] = {.lex_state = 6, .external_lex_state = 3}, - [484] = {.lex_state = 22, .external_lex_state = 12}, - [485] = {.lex_state = 43, .external_lex_state = 19}, - [486] = {.lex_state = 43, .external_lex_state = 19}, - [487] = {.lex_state = 5, .external_lex_state = 5}, - [488] = {.lex_state = 3, .external_lex_state = 4}, + [479] = {.lex_state = 3, .external_lex_state = 4}, + [480] = {.lex_state = 43, .external_lex_state = 16}, + [481] = {.lex_state = 43, .external_lex_state = 16}, + [482] = {.lex_state = 43, .external_lex_state = 16}, + [483] = {.lex_state = 23, .external_lex_state = 11}, + [484] = {.lex_state = 6, .external_lex_state = 3}, + [485] = {.lex_state = 23, .external_lex_state = 12}, + [486] = {.lex_state = 44, .external_lex_state = 20}, + [487] = {.lex_state = 44, .external_lex_state = 20}, + [488] = {.lex_state = 5, .external_lex_state = 5}, [489] = {.lex_state = 3, .external_lex_state = 4}, - [490] = {.lex_state = 4, .external_lex_state = 12}, - [491] = {.lex_state = 9, .external_lex_state = 2}, - [492] = {.lex_state = 4, .external_lex_state = 12}, - [493] = {.lex_state = 5, .external_lex_state = 5}, + [490] = {.lex_state = 3, .external_lex_state = 4}, + [491] = {.lex_state = 4, .external_lex_state = 12}, + [492] = {.lex_state = 9, .external_lex_state = 2}, + [493] = {.lex_state = 4, .external_lex_state = 12}, [494] = {.lex_state = 5, .external_lex_state = 5}, [495] = {.lex_state = 5, .external_lex_state = 5}, [496] = {.lex_state = 5, .external_lex_state = 5}, - [497] = {.lex_state = 3, .external_lex_state = 4}, - [498] = {.lex_state = 9, .external_lex_state = 2}, - [499] = {.lex_state = 3, .external_lex_state = 4}, + [497] = {.lex_state = 5, .external_lex_state = 5}, + [498] = {.lex_state = 3, .external_lex_state = 4}, + [499] = {.lex_state = 9, .external_lex_state = 2}, [500] = {.lex_state = 3, .external_lex_state = 4}, [501] = {.lex_state = 3, .external_lex_state = 4}, - [502] = {.lex_state = 6, .external_lex_state = 3}, - [503] = {.lex_state = 22, .external_lex_state = 12}, - [504] = {.lex_state = 43, .external_lex_state = 10}, - [505] = {.lex_state = 43, .external_lex_state = 19}, - [506] = {.lex_state = 43, .external_lex_state = 10}, - [507] = {.lex_state = 43, .external_lex_state = 19}, - [508] = {.lex_state = 3, .external_lex_state = 4}, - [509] = {.lex_state = 4, .external_lex_state = 12}, - [510] = {.lex_state = 9, .external_lex_state = 2}, - [511] = {.lex_state = 5, .external_lex_state = 5}, + [502] = {.lex_state = 3, .external_lex_state = 4}, + [503] = {.lex_state = 6, .external_lex_state = 3}, + [504] = {.lex_state = 23, .external_lex_state = 12}, + [505] = {.lex_state = 44, .external_lex_state = 10}, + [506] = {.lex_state = 44, .external_lex_state = 20}, + [507] = {.lex_state = 44, .external_lex_state = 10}, + [508] = {.lex_state = 44, .external_lex_state = 20}, + [509] = {.lex_state = 3, .external_lex_state = 4}, + [510] = {.lex_state = 4, .external_lex_state = 12}, + [511] = {.lex_state = 9, .external_lex_state = 2}, [512] = {.lex_state = 5, .external_lex_state = 5}, [513] = {.lex_state = 5, .external_lex_state = 5}, [514] = {.lex_state = 5, .external_lex_state = 5}, - [515] = {.lex_state = 3, .external_lex_state = 4}, + [515] = {.lex_state = 5, .external_lex_state = 5}, [516] = {.lex_state = 3, .external_lex_state = 4}, [517] = {.lex_state = 3, .external_lex_state = 4}, - [518] = {.lex_state = 43, .external_lex_state = 10}, - [519] = {.lex_state = 43, .external_lex_state = 10}, - [520] = {.lex_state = 3, .external_lex_state = 4}, + [518] = {.lex_state = 3, .external_lex_state = 4}, + [519] = {.lex_state = 44, .external_lex_state = 10}, + [520] = {.lex_state = 44, .external_lex_state = 10}, [521] = {.lex_state = 3, .external_lex_state = 4}, - [522] = {.lex_state = 5, .external_lex_state = 5}, + [522] = {.lex_state = 3, .external_lex_state = 4}, [523] = {.lex_state = 5, .external_lex_state = 5}, - [524] = {.lex_state = 3, .external_lex_state = 4}, + [524] = {.lex_state = 5, .external_lex_state = 5}, [525] = {.lex_state = 3, .external_lex_state = 4}, [526] = {.lex_state = 3, .external_lex_state = 4}, [527] = {.lex_state = 3, .external_lex_state = 4}, @@ -4892,2104 +4921,2120 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [530] = {.lex_state = 3, .external_lex_state = 4}, [531] = {.lex_state = 3, .external_lex_state = 4}, [532] = {.lex_state = 3, .external_lex_state = 4}, - [533] = {.lex_state = 1, .external_lex_state = 3}, - [534] = {.lex_state = 1, .external_lex_state = 4}, - [535] = {.lex_state = 23, .external_lex_state = 5}, - [536] = {.lex_state = 23, .external_lex_state = 5}, - [537] = {.lex_state = 46, .external_lex_state = 8}, - [538] = {.lex_state = 45, .external_lex_state = 2}, - [539] = {.lex_state = 23, .external_lex_state = 4}, - [540] = {.lex_state = 3, .external_lex_state = 4}, - [541] = {.lex_state = 6, .external_lex_state = 3}, - [542] = {.lex_state = 23, .external_lex_state = 4}, - [543] = {.lex_state = 9, .external_lex_state = 2}, - [544] = {.lex_state = 46, .external_lex_state = 2}, - [545] = {.lex_state = 5, .external_lex_state = 4}, - [546] = {.lex_state = 3, .external_lex_state = 5}, - [547] = {.lex_state = 3, .external_lex_state = 4}, + [533] = {.lex_state = 3, .external_lex_state = 4}, + [534] = {.lex_state = 1, .external_lex_state = 3}, + [535] = {.lex_state = 1, .external_lex_state = 4}, + [536] = {.lex_state = 24, .external_lex_state = 5}, + [537] = {.lex_state = 24, .external_lex_state = 5}, + [538] = {.lex_state = 47, .external_lex_state = 8}, + [539] = {.lex_state = 46, .external_lex_state = 2}, + [540] = {.lex_state = 24, .external_lex_state = 4}, + [541] = {.lex_state = 3, .external_lex_state = 4}, + [542] = {.lex_state = 6, .external_lex_state = 3}, + [543] = {.lex_state = 24, .external_lex_state = 4}, + [544] = {.lex_state = 9, .external_lex_state = 2}, + [545] = {.lex_state = 47, .external_lex_state = 2}, + [546] = {.lex_state = 5, .external_lex_state = 4}, + [547] = {.lex_state = 3, .external_lex_state = 5}, [548] = {.lex_state = 3, .external_lex_state = 4}, - [549] = {.lex_state = 24, .external_lex_state = 9}, - [550] = {.lex_state = 24, .external_lex_state = 3}, - [551] = {.lex_state = 1, .external_lex_state = 3}, - [552] = {.lex_state = 24, .external_lex_state = 5}, - [553] = {.lex_state = 24, .external_lex_state = 4}, - [554] = {.lex_state = 1, .external_lex_state = 4}, - [555] = {.lex_state = 46, .external_lex_state = 8}, - [556] = {.lex_state = 46, .external_lex_state = 8}, - [557] = {.lex_state = 46, .external_lex_state = 8}, - [558] = {.lex_state = 46, .external_lex_state = 8}, - [559] = {.lex_state = 18, .external_lex_state = 11}, - [560] = {.lex_state = 36}, - [561] = {.lex_state = 18, .external_lex_state = 12}, - [562] = {.lex_state = 46, .external_lex_state = 8}, - [563] = {.lex_state = 46, .external_lex_state = 2}, - [564] = {.lex_state = 46, .external_lex_state = 2}, - [565] = {.lex_state = 9, .external_lex_state = 2}, + [549] = {.lex_state = 3, .external_lex_state = 4}, + [550] = {.lex_state = 25, .external_lex_state = 9}, + [551] = {.lex_state = 25, .external_lex_state = 3}, + [552] = {.lex_state = 1, .external_lex_state = 3}, + [553] = {.lex_state = 25, .external_lex_state = 5}, + [554] = {.lex_state = 25, .external_lex_state = 4}, + [555] = {.lex_state = 1, .external_lex_state = 4}, + [556] = {.lex_state = 47, .external_lex_state = 8}, + [557] = {.lex_state = 47, .external_lex_state = 8}, + [558] = {.lex_state = 47, .external_lex_state = 8}, + [559] = {.lex_state = 47, .external_lex_state = 8}, + [560] = {.lex_state = 19, .external_lex_state = 11}, + [561] = {.lex_state = 37}, + [562] = {.lex_state = 19, .external_lex_state = 12}, + [563] = {.lex_state = 47, .external_lex_state = 8}, + [564] = {.lex_state = 47, .external_lex_state = 2}, + [565] = {.lex_state = 47, .external_lex_state = 2}, [566] = {.lex_state = 9, .external_lex_state = 2}, - [567] = {.lex_state = 9, .external_lex_state = 16}, - [568] = {.lex_state = 9, .external_lex_state = 2}, - [569] = {.lex_state = 3, .external_lex_state = 4}, - [570] = {.lex_state = 6, .external_lex_state = 3}, - [571] = {.lex_state = 5, .external_lex_state = 4}, - [572] = {.lex_state = 46, .external_lex_state = 18}, - [573] = {.lex_state = 23, .external_lex_state = 5}, - [574] = {.lex_state = 23, .external_lex_state = 4}, - [575] = {.lex_state = 5, .external_lex_state = 4}, - [576] = {.lex_state = 24, .external_lex_state = 3}, - [577] = {.lex_state = 24, .external_lex_state = 4}, - [578] = {.lex_state = 46, .external_lex_state = 8}, - [579] = {.lex_state = 46, .external_lex_state = 8}, - [580] = {.lex_state = 46, .external_lex_state = 8}, - [581] = {.lex_state = 46}, - [582] = {.lex_state = 46, .external_lex_state = 8}, - [583] = {.lex_state = 46, .external_lex_state = 8}, - [584] = {.lex_state = 46, .external_lex_state = 8}, - [585] = {.lex_state = 18, .external_lex_state = 12}, - [586] = {.lex_state = 36}, - [587] = {.lex_state = 18, .external_lex_state = 12}, - [588] = {.lex_state = 36, .external_lex_state = 18}, - [589] = {.lex_state = 1, .external_lex_state = 3}, - [590] = {.lex_state = 1, .external_lex_state = 9}, - [591] = {.lex_state = 1, .external_lex_state = 3}, - [592] = {.lex_state = 3, .external_lex_state = 5}, - [593] = {.lex_state = 3, .external_lex_state = 4}, + [567] = {.lex_state = 9, .external_lex_state = 2}, + [568] = {.lex_state = 9, .external_lex_state = 17}, + [569] = {.lex_state = 9, .external_lex_state = 2}, + [570] = {.lex_state = 3, .external_lex_state = 4}, + [571] = {.lex_state = 6, .external_lex_state = 3}, + [572] = {.lex_state = 5, .external_lex_state = 4}, + [573] = {.lex_state = 47, .external_lex_state = 19}, + [574] = {.lex_state = 24, .external_lex_state = 5}, + [575] = {.lex_state = 24, .external_lex_state = 4}, + [576] = {.lex_state = 5, .external_lex_state = 4}, + [577] = {.lex_state = 25, .external_lex_state = 3}, + [578] = {.lex_state = 25, .external_lex_state = 4}, + [579] = {.lex_state = 47, .external_lex_state = 8}, + [580] = {.lex_state = 47, .external_lex_state = 8}, + [581] = {.lex_state = 47, .external_lex_state = 8}, + [582] = {.lex_state = 47}, + [583] = {.lex_state = 47, .external_lex_state = 8}, + [584] = {.lex_state = 47, .external_lex_state = 8}, + [585] = {.lex_state = 47, .external_lex_state = 8}, + [586] = {.lex_state = 19, .external_lex_state = 12}, + [587] = {.lex_state = 37}, + [588] = {.lex_state = 19, .external_lex_state = 12}, + [589] = {.lex_state = 37, .external_lex_state = 19}, + [590] = {.lex_state = 1, .external_lex_state = 3}, + [591] = {.lex_state = 1, .external_lex_state = 9}, + [592] = {.lex_state = 1, .external_lex_state = 3}, + [593] = {.lex_state = 3, .external_lex_state = 5}, [594] = {.lex_state = 3, .external_lex_state = 4}, - [595] = {.lex_state = 46, .external_lex_state = 8}, - [596] = {.lex_state = 46, .external_lex_state = 8}, - [597] = {.lex_state = 6, .external_lex_state = 3}, - [598] = {.lex_state = 4, .external_lex_state = 12}, - [599] = {.lex_state = 3, .external_lex_state = 4}, - [600] = {.lex_state = 6, .external_lex_state = 3}, - [601] = {.lex_state = 9, .external_lex_state = 2}, - [602] = {.lex_state = 9, .external_lex_state = 16}, - [603] = {.lex_state = 5, .external_lex_state = 4}, - [604] = {.lex_state = 23, .external_lex_state = 4}, - [605] = {.lex_state = 23, .external_lex_state = 5}, - [606] = {.lex_state = 23, .external_lex_state = 4}, - [607] = {.lex_state = 23, .external_lex_state = 4}, - [608] = {.lex_state = 32, .external_lex_state = 2}, - [609] = {.lex_state = 46, .external_lex_state = 8}, - [610] = {.lex_state = 46, .external_lex_state = 8}, - [611] = {.lex_state = 46, .external_lex_state = 8}, - [612] = {.lex_state = 18, .external_lex_state = 12}, - [613] = {.lex_state = 18, .external_lex_state = 12}, - [614] = {.lex_state = 18, .external_lex_state = 12}, - [615] = {.lex_state = 1, .external_lex_state = 3}, - [616] = {.lex_state = 46, .external_lex_state = 8}, - [617] = {.lex_state = 9, .external_lex_state = 2}, - [618] = {.lex_state = 4, .external_lex_state = 12}, - [619] = {.lex_state = 46, .external_lex_state = 8}, - [620] = {.lex_state = 46, .external_lex_state = 8}, - [621] = {.lex_state = 46, .external_lex_state = 8}, - [622] = {.lex_state = 46, .external_lex_state = 8}, - [623] = {.lex_state = 1, .external_lex_state = 3}, - [624] = {.lex_state = 9, .external_lex_state = 2}, - [625] = {.lex_state = 46, .external_lex_state = 8}, - [626] = {.lex_state = 46, .external_lex_state = 8}, - [627] = {.lex_state = 46, .external_lex_state = 8}, - [628] = {.lex_state = 46, .external_lex_state = 8}, - [629] = {.lex_state = 46, .external_lex_state = 8}, - [630] = {.lex_state = 46, .external_lex_state = 8}, - [631] = {.lex_state = 24, .external_lex_state = 3}, - [632] = {.lex_state = 24, .external_lex_state = 4}, - [633] = {.lex_state = 1, .external_lex_state = 9}, - [634] = {.lex_state = 3, .external_lex_state = 4}, - [635] = {.lex_state = 25, .external_lex_state = 3}, - [636] = {.lex_state = 9, .external_lex_state = 2}, - [637] = {.lex_state = 23, .external_lex_state = 4}, - [638] = {.lex_state = 24, .external_lex_state = 3}, - [639] = {.lex_state = 24, .external_lex_state = 4}, - [640] = {.lex_state = 1, .external_lex_state = 9}, + [595] = {.lex_state = 3, .external_lex_state = 4}, + [596] = {.lex_state = 47, .external_lex_state = 8}, + [597] = {.lex_state = 47, .external_lex_state = 8}, + [598] = {.lex_state = 6, .external_lex_state = 3}, + [599] = {.lex_state = 4, .external_lex_state = 12}, + [600] = {.lex_state = 3, .external_lex_state = 4}, + [601] = {.lex_state = 6, .external_lex_state = 3}, + [602] = {.lex_state = 9, .external_lex_state = 2}, + [603] = {.lex_state = 9, .external_lex_state = 17}, + [604] = {.lex_state = 5, .external_lex_state = 4}, + [605] = {.lex_state = 24, .external_lex_state = 4}, + [606] = {.lex_state = 24, .external_lex_state = 5}, + [607] = {.lex_state = 24, .external_lex_state = 4}, + [608] = {.lex_state = 24, .external_lex_state = 4}, + [609] = {.lex_state = 33, .external_lex_state = 2}, + [610] = {.lex_state = 47, .external_lex_state = 8}, + [611] = {.lex_state = 47, .external_lex_state = 8}, + [612] = {.lex_state = 47, .external_lex_state = 8}, + [613] = {.lex_state = 19, .external_lex_state = 12}, + [614] = {.lex_state = 19, .external_lex_state = 12}, + [615] = {.lex_state = 19, .external_lex_state = 12}, + [616] = {.lex_state = 1, .external_lex_state = 3}, + [617] = {.lex_state = 47, .external_lex_state = 8}, + [618] = {.lex_state = 9, .external_lex_state = 2}, + [619] = {.lex_state = 4, .external_lex_state = 12}, + [620] = {.lex_state = 47, .external_lex_state = 8}, + [621] = {.lex_state = 47, .external_lex_state = 8}, + [622] = {.lex_state = 47, .external_lex_state = 8}, + [623] = {.lex_state = 47, .external_lex_state = 8}, + [624] = {.lex_state = 1, .external_lex_state = 3}, + [625] = {.lex_state = 9, .external_lex_state = 2}, + [626] = {.lex_state = 47, .external_lex_state = 8}, + [627] = {.lex_state = 47, .external_lex_state = 8}, + [628] = {.lex_state = 47, .external_lex_state = 8}, + [629] = {.lex_state = 47, .external_lex_state = 8}, + [630] = {.lex_state = 47, .external_lex_state = 8}, + [631] = {.lex_state = 47, .external_lex_state = 8}, + [632] = {.lex_state = 25, .external_lex_state = 3}, + [633] = {.lex_state = 25, .external_lex_state = 4}, + [634] = {.lex_state = 1, .external_lex_state = 9}, + [635] = {.lex_state = 3, .external_lex_state = 4}, + [636] = {.lex_state = 26, .external_lex_state = 3}, + [637] = {.lex_state = 9, .external_lex_state = 2}, + [638] = {.lex_state = 24, .external_lex_state = 4}, + [639] = {.lex_state = 25, .external_lex_state = 3}, + [640] = {.lex_state = 25, .external_lex_state = 4}, [641] = {.lex_state = 1, .external_lex_state = 9}, [642] = {.lex_state = 1, .external_lex_state = 9}, [643] = {.lex_state = 1, .external_lex_state = 9}, [644] = {.lex_state = 1, .external_lex_state = 9}, - [645] = {.lex_state = 1, .external_lex_state = 3}, + [645] = {.lex_state = 1, .external_lex_state = 9}, [646] = {.lex_state = 1, .external_lex_state = 3}, - [647] = {.lex_state = 34, .external_lex_state = 2}, - [648] = {.lex_state = 9, .external_lex_state = 2}, - [649] = {.lex_state = 34, .external_lex_state = 16}, - [650] = {.lex_state = 9, .external_lex_state = 2}, - [651] = {.lex_state = 3, .external_lex_state = 4}, - [652] = {.lex_state = 25, .external_lex_state = 3}, - [653] = {.lex_state = 23, .external_lex_state = 4}, - [654] = {.lex_state = 23, .external_lex_state = 4}, - [655] = {.lex_state = 1, .external_lex_state = 9}, + [647] = {.lex_state = 1, .external_lex_state = 3}, + [648] = {.lex_state = 35, .external_lex_state = 2}, + [649] = {.lex_state = 9, .external_lex_state = 2}, + [650] = {.lex_state = 35, .external_lex_state = 17}, + [651] = {.lex_state = 9, .external_lex_state = 2}, + [652] = {.lex_state = 3, .external_lex_state = 4}, + [653] = {.lex_state = 26, .external_lex_state = 3}, + [654] = {.lex_state = 24, .external_lex_state = 4}, + [655] = {.lex_state = 24, .external_lex_state = 4}, [656] = {.lex_state = 1, .external_lex_state = 9}, [657] = {.lex_state = 1, .external_lex_state = 9}, - [658] = {.lex_state = 46}, - [659] = {.lex_state = 1, .external_lex_state = 9}, + [658] = {.lex_state = 1, .external_lex_state = 9}, + [659] = {.lex_state = 47}, [660] = {.lex_state = 1, .external_lex_state = 9}, [661] = {.lex_state = 1, .external_lex_state = 9}, - [662] = {.lex_state = 46, .external_lex_state = 2}, - [663] = {.lex_state = 46, .external_lex_state = 8}, - [664] = {.lex_state = 46, .external_lex_state = 2}, - [665] = {.lex_state = 1, .external_lex_state = 9}, + [662] = {.lex_state = 1, .external_lex_state = 9}, + [663] = {.lex_state = 47, .external_lex_state = 2}, + [664] = {.lex_state = 47, .external_lex_state = 8}, + [665] = {.lex_state = 47, .external_lex_state = 2}, [666] = {.lex_state = 1, .external_lex_state = 9}, - [667] = {.lex_state = 25, .external_lex_state = 3}, - [668] = {.lex_state = 4, .external_lex_state = 12}, - [669] = {.lex_state = 3, .external_lex_state = 4}, - [670] = {.lex_state = 25, .external_lex_state = 3}, - [671] = {.lex_state = 34, .external_lex_state = 2}, - [672] = {.lex_state = 34, .external_lex_state = 16}, - [673] = {.lex_state = 23, .external_lex_state = 4}, - [674] = {.lex_state = 8, .external_lex_state = 3}, - [675] = {.lex_state = 1, .external_lex_state = 9}, + [667] = {.lex_state = 1, .external_lex_state = 9}, + [668] = {.lex_state = 26, .external_lex_state = 3}, + [669] = {.lex_state = 4, .external_lex_state = 12}, + [670] = {.lex_state = 3, .external_lex_state = 4}, + [671] = {.lex_state = 26, .external_lex_state = 3}, + [672] = {.lex_state = 35, .external_lex_state = 2}, + [673] = {.lex_state = 35, .external_lex_state = 17}, + [674] = {.lex_state = 24, .external_lex_state = 4}, + [675] = {.lex_state = 8, .external_lex_state = 3}, [676] = {.lex_state = 1, .external_lex_state = 9}, [677] = {.lex_state = 1, .external_lex_state = 9}, - [678] = {.lex_state = 46, .external_lex_state = 2}, - [679] = {.lex_state = 1, .external_lex_state = 9}, - [680] = {.lex_state = 34, .external_lex_state = 2}, - [681] = {.lex_state = 4, .external_lex_state = 12}, - [682] = {.lex_state = 1, .external_lex_state = 9}, + [678] = {.lex_state = 1, .external_lex_state = 9}, + [679] = {.lex_state = 47, .external_lex_state = 2}, + [680] = {.lex_state = 1, .external_lex_state = 9}, + [681] = {.lex_state = 35, .external_lex_state = 2}, + [682] = {.lex_state = 4, .external_lex_state = 12}, [683] = {.lex_state = 1, .external_lex_state = 9}, [684] = {.lex_state = 1, .external_lex_state = 9}, [685] = {.lex_state = 1, .external_lex_state = 9}, - [686] = {.lex_state = 46, .external_lex_state = 2}, - [687] = {.lex_state = 34, .external_lex_state = 2}, - [688] = {.lex_state = 1, .external_lex_state = 9}, + [686] = {.lex_state = 1, .external_lex_state = 9}, + [687] = {.lex_state = 47, .external_lex_state = 2}, + [688] = {.lex_state = 35, .external_lex_state = 2}, [689] = {.lex_state = 1, .external_lex_state = 9}, [690] = {.lex_state = 1, .external_lex_state = 9}, [691] = {.lex_state = 1, .external_lex_state = 9}, [692] = {.lex_state = 1, .external_lex_state = 9}, [693] = {.lex_state = 1, .external_lex_state = 9}, - [694] = {.lex_state = 1, .external_lex_state = 5}, - [695] = {.lex_state = 6, .external_lex_state = 3}, - [696] = {.lex_state = 1, .external_lex_state = 5}, + [694] = {.lex_state = 1, .external_lex_state = 9}, + [695] = {.lex_state = 1, .external_lex_state = 5}, + [696] = {.lex_state = 6, .external_lex_state = 3}, [697] = {.lex_state = 1, .external_lex_state = 5}, [698] = {.lex_state = 1, .external_lex_state = 5}, [699] = {.lex_state = 1, .external_lex_state = 5}, [700] = {.lex_state = 1, .external_lex_state = 5}, - [701] = {.lex_state = 1, .external_lex_state = 4}, + [701] = {.lex_state = 1, .external_lex_state = 5}, [702] = {.lex_state = 1, .external_lex_state = 4}, - [703] = {.lex_state = 3, .external_lex_state = 4}, - [704] = {.lex_state = 6, .external_lex_state = 3}, - [705] = {.lex_state = 1, .external_lex_state = 5}, + [703] = {.lex_state = 1, .external_lex_state = 4}, + [704] = {.lex_state = 3, .external_lex_state = 4}, + [705] = {.lex_state = 6, .external_lex_state = 3}, [706] = {.lex_state = 1, .external_lex_state = 5}, [707] = {.lex_state = 1, .external_lex_state = 5}, - [708] = {.lex_state = 46}, - [709] = {.lex_state = 1, .external_lex_state = 5}, + [708] = {.lex_state = 1, .external_lex_state = 5}, + [709] = {.lex_state = 47}, [710] = {.lex_state = 1, .external_lex_state = 5}, [711] = {.lex_state = 1, .external_lex_state = 5}, - [712] = {.lex_state = 1, .external_lex_state = 3}, - [713] = {.lex_state = 1, .external_lex_state = 9}, - [714] = {.lex_state = 1, .external_lex_state = 3}, - [715] = {.lex_state = 1, .external_lex_state = 5}, + [712] = {.lex_state = 1, .external_lex_state = 5}, + [713] = {.lex_state = 1, .external_lex_state = 3}, + [714] = {.lex_state = 1, .external_lex_state = 9}, + [715] = {.lex_state = 1, .external_lex_state = 3}, [716] = {.lex_state = 1, .external_lex_state = 5}, - [717] = {.lex_state = 8, .external_lex_state = 4}, - [718] = {.lex_state = 1, .external_lex_state = 5}, + [717] = {.lex_state = 1, .external_lex_state = 5}, + [718] = {.lex_state = 8, .external_lex_state = 4}, [719] = {.lex_state = 1, .external_lex_state = 5}, [720] = {.lex_state = 1, .external_lex_state = 5}, - [721] = {.lex_state = 1, .external_lex_state = 3}, - [722] = {.lex_state = 1, .external_lex_state = 5}, + [721] = {.lex_state = 1, .external_lex_state = 5}, + [722] = {.lex_state = 1, .external_lex_state = 3}, [723] = {.lex_state = 1, .external_lex_state = 5}, [724] = {.lex_state = 1, .external_lex_state = 5}, [725] = {.lex_state = 1, .external_lex_state = 5}, [726] = {.lex_state = 1, .external_lex_state = 5}, - [727] = {.lex_state = 1, .external_lex_state = 3}, - [728] = {.lex_state = 1, .external_lex_state = 5}, + [727] = {.lex_state = 1, .external_lex_state = 5}, + [728] = {.lex_state = 1, .external_lex_state = 3}, [729] = {.lex_state = 1, .external_lex_state = 5}, [730] = {.lex_state = 1, .external_lex_state = 5}, [731] = {.lex_state = 1, .external_lex_state = 5}, [732] = {.lex_state = 1, .external_lex_state = 5}, [733] = {.lex_state = 1, .external_lex_state = 5}, - [734] = {.lex_state = 4, .external_lex_state = 11}, + [734] = {.lex_state = 1, .external_lex_state = 5}, [735] = {.lex_state = 4, .external_lex_state = 11}, [736] = {.lex_state = 4, .external_lex_state = 11}, [737] = {.lex_state = 4, .external_lex_state = 11}, [738] = {.lex_state = 4, .external_lex_state = 11}, [739] = {.lex_state = 4, .external_lex_state = 11}, - [740] = {.lex_state = 4, .external_lex_state = 12}, + [740] = {.lex_state = 4, .external_lex_state = 11}, [741] = {.lex_state = 4, .external_lex_state = 12}, - [742] = {.lex_state = 4, .external_lex_state = 11}, + [742] = {.lex_state = 4, .external_lex_state = 12}, [743] = {.lex_state = 4, .external_lex_state = 11}, [744] = {.lex_state = 4, .external_lex_state = 11}, - [745] = {.lex_state = 46}, - [746] = {.lex_state = 4, .external_lex_state = 11}, + [745] = {.lex_state = 4, .external_lex_state = 11}, + [746] = {.lex_state = 47}, [747] = {.lex_state = 4, .external_lex_state = 11}, [748] = {.lex_state = 4, .external_lex_state = 11}, - [749] = {.lex_state = 25, .external_lex_state = 3}, - [750] = {.lex_state = 25, .external_lex_state = 9}, - [751] = {.lex_state = 25, .external_lex_state = 3}, - [752] = {.lex_state = 4, .external_lex_state = 11}, + [749] = {.lex_state = 4, .external_lex_state = 11}, + [750] = {.lex_state = 4, .external_lex_state = 12}, + [751] = {.lex_state = 4, .external_lex_state = 11}, + [752] = {.lex_state = 4, .external_lex_state = 12}, [753] = {.lex_state = 4, .external_lex_state = 11}, - [754] = {.lex_state = 15, .external_lex_state = 12}, - [755] = {.lex_state = 4, .external_lex_state = 11}, + [754] = {.lex_state = 4, .external_lex_state = 11}, + [755] = {.lex_state = 15, .external_lex_state = 12}, [756] = {.lex_state = 4, .external_lex_state = 11}, [757] = {.lex_state = 4, .external_lex_state = 11}, - [758] = {.lex_state = 25, .external_lex_state = 3}, - [759] = {.lex_state = 4, .external_lex_state = 11}, + [758] = {.lex_state = 4, .external_lex_state = 11}, + [759] = {.lex_state = 4, .external_lex_state = 12}, [760] = {.lex_state = 4, .external_lex_state = 11}, [761] = {.lex_state = 4, .external_lex_state = 11}, [762] = {.lex_state = 4, .external_lex_state = 11}, [763] = {.lex_state = 4, .external_lex_state = 11}, - [764] = {.lex_state = 25, .external_lex_state = 3}, - [765] = {.lex_state = 4, .external_lex_state = 11}, + [764] = {.lex_state = 4, .external_lex_state = 11}, + [765] = {.lex_state = 4, .external_lex_state = 12}, [766] = {.lex_state = 4, .external_lex_state = 11}, [767] = {.lex_state = 4, .external_lex_state = 11}, [768] = {.lex_state = 4, .external_lex_state = 11}, [769] = {.lex_state = 4, .external_lex_state = 11}, [770] = {.lex_state = 4, .external_lex_state = 11}, - [771] = {.lex_state = 40, .external_lex_state = 13}, - [772] = {.lex_state = 40, .external_lex_state = 13}, - [773] = {.lex_state = 40, .external_lex_state = 13}, - [774] = {.lex_state = 40, .external_lex_state = 13}, - [775] = {.lex_state = 40, .external_lex_state = 13}, - [776] = {.lex_state = 40, .external_lex_state = 13}, - [777] = {.lex_state = 40}, - [778] = {.lex_state = 40}, - [779] = {.lex_state = 40, .external_lex_state = 13}, - [780] = {.lex_state = 40, .external_lex_state = 13}, - [781] = {.lex_state = 40, .external_lex_state = 13}, - [782] = {.lex_state = 46}, - [783] = {.lex_state = 40, .external_lex_state = 13}, - [784] = {.lex_state = 40, .external_lex_state = 13}, - [785] = {.lex_state = 40, .external_lex_state = 13}, - [786] = {.lex_state = 24, .external_lex_state = 3}, - [787] = {.lex_state = 24, .external_lex_state = 9}, - [788] = {.lex_state = 24, .external_lex_state = 3}, - [789] = {.lex_state = 40, .external_lex_state = 13}, - [790] = {.lex_state = 40, .external_lex_state = 13}, - [791] = {.lex_state = 37}, - [792] = {.lex_state = 40, .external_lex_state = 13}, - [793] = {.lex_state = 40, .external_lex_state = 13}, - [794] = {.lex_state = 40, .external_lex_state = 13}, - [795] = {.lex_state = 24, .external_lex_state = 3}, - [796] = {.lex_state = 40, .external_lex_state = 13}, - [797] = {.lex_state = 40, .external_lex_state = 13}, - [798] = {.lex_state = 40, .external_lex_state = 13}, - [799] = {.lex_state = 40, .external_lex_state = 13}, - [800] = {.lex_state = 40, .external_lex_state = 13}, - [801] = {.lex_state = 24, .external_lex_state = 3}, - [802] = {.lex_state = 40, .external_lex_state = 13}, - [803] = {.lex_state = 40, .external_lex_state = 13}, - [804] = {.lex_state = 40, .external_lex_state = 13}, - [805] = {.lex_state = 40, .external_lex_state = 13}, - [806] = {.lex_state = 40, .external_lex_state = 13}, - [807] = {.lex_state = 40, .external_lex_state = 13}, - [808] = {.lex_state = 42, .external_lex_state = 22}, - [809] = {.lex_state = 50, .external_lex_state = 13}, - [810] = {.lex_state = 50, .external_lex_state = 13}, - [811] = {.lex_state = 42, .external_lex_state = 22}, - [812] = {.lex_state = 42, .external_lex_state = 22}, - [813] = {.lex_state = 42, .external_lex_state = 22}, - [814] = {.lex_state = 42, .external_lex_state = 15}, - [815] = {.lex_state = 42, .external_lex_state = 15}, - [816] = {.lex_state = 50, .external_lex_state = 13}, - [817] = {.lex_state = 42, .external_lex_state = 22}, - [818] = {.lex_state = 42, .external_lex_state = 22}, - [819] = {.lex_state = 46}, - [820] = {.lex_state = 42, .external_lex_state = 22}, - [821] = {.lex_state = 50, .external_lex_state = 13}, - [822] = {.lex_state = 50, .external_lex_state = 13}, - [823] = {.lex_state = 42, .external_lex_state = 22}, - [824] = {.lex_state = 50, .external_lex_state = 13}, - [825] = {.lex_state = 38, .external_lex_state = 15}, - [826] = {.lex_state = 50, .external_lex_state = 13}, - [827] = {.lex_state = 50, .external_lex_state = 13}, - [828] = {.lex_state = 50, .external_lex_state = 13}, - [829] = {.lex_state = 42, .external_lex_state = 22}, - [830] = {.lex_state = 50, .external_lex_state = 13}, - [831] = {.lex_state = 50, .external_lex_state = 13}, - [832] = {.lex_state = 50, .external_lex_state = 13}, - [833] = {.lex_state = 50, .external_lex_state = 13}, - [834] = {.lex_state = 50, .external_lex_state = 13}, - [835] = {.lex_state = 50, .external_lex_state = 13}, - [836] = {.lex_state = 50, .external_lex_state = 13}, - [837] = {.lex_state = 50, .external_lex_state = 13}, - [838] = {.lex_state = 50, .external_lex_state = 13}, - [839] = {.lex_state = 50, .external_lex_state = 13}, - [840] = {.lex_state = 1, .external_lex_state = 9}, - [841] = {.lex_state = 42, .external_lex_state = 22}, - [842] = {.lex_state = 42, .external_lex_state = 22}, - [843] = {.lex_state = 1, .external_lex_state = 9}, - [844] = {.lex_state = 1, .external_lex_state = 9}, - [845] = {.lex_state = 1, .external_lex_state = 9}, - [846] = {.lex_state = 1, .external_lex_state = 3}, - [847] = {.lex_state = 1, .external_lex_state = 3}, - [848] = {.lex_state = 42, .external_lex_state = 22}, + [771] = {.lex_state = 4, .external_lex_state = 11}, + [772] = {.lex_state = 41, .external_lex_state = 13}, + [773] = {.lex_state = 41, .external_lex_state = 13}, + [774] = {.lex_state = 41, .external_lex_state = 13}, + [775] = {.lex_state = 41, .external_lex_state = 13}, + [776] = {.lex_state = 41, .external_lex_state = 13}, + [777] = {.lex_state = 41, .external_lex_state = 13}, + [778] = {.lex_state = 41}, + [779] = {.lex_state = 41}, + [780] = {.lex_state = 41, .external_lex_state = 13}, + [781] = {.lex_state = 41, .external_lex_state = 13}, + [782] = {.lex_state = 41, .external_lex_state = 13}, + [783] = {.lex_state = 47}, + [784] = {.lex_state = 41, .external_lex_state = 13}, + [785] = {.lex_state = 41, .external_lex_state = 13}, + [786] = {.lex_state = 41, .external_lex_state = 13}, + [787] = {.lex_state = 26, .external_lex_state = 3}, + [788] = {.lex_state = 26, .external_lex_state = 9}, + [789] = {.lex_state = 26, .external_lex_state = 3}, + [790] = {.lex_state = 41, .external_lex_state = 13}, + [791] = {.lex_state = 41, .external_lex_state = 13}, + [792] = {.lex_state = 38}, + [793] = {.lex_state = 41, .external_lex_state = 13}, + [794] = {.lex_state = 41, .external_lex_state = 13}, + [795] = {.lex_state = 41, .external_lex_state = 13}, + [796] = {.lex_state = 26, .external_lex_state = 3}, + [797] = {.lex_state = 41, .external_lex_state = 13}, + [798] = {.lex_state = 41, .external_lex_state = 13}, + [799] = {.lex_state = 41, .external_lex_state = 13}, + [800] = {.lex_state = 41, .external_lex_state = 13}, + [801] = {.lex_state = 41, .external_lex_state = 13}, + [802] = {.lex_state = 26, .external_lex_state = 3}, + [803] = {.lex_state = 41, .external_lex_state = 13}, + [804] = {.lex_state = 41, .external_lex_state = 13}, + [805] = {.lex_state = 41, .external_lex_state = 13}, + [806] = {.lex_state = 41, .external_lex_state = 13}, + [807] = {.lex_state = 41, .external_lex_state = 13}, + [808] = {.lex_state = 41, .external_lex_state = 13}, + [809] = {.lex_state = 43, .external_lex_state = 23}, + [810] = {.lex_state = 51, .external_lex_state = 13}, + [811] = {.lex_state = 51, .external_lex_state = 13}, + [812] = {.lex_state = 43, .external_lex_state = 23}, + [813] = {.lex_state = 43, .external_lex_state = 23}, + [814] = {.lex_state = 43, .external_lex_state = 23}, + [815] = {.lex_state = 43, .external_lex_state = 16}, + [816] = {.lex_state = 43, .external_lex_state = 16}, + [817] = {.lex_state = 51, .external_lex_state = 13}, + [818] = {.lex_state = 43, .external_lex_state = 23}, + [819] = {.lex_state = 43, .external_lex_state = 23}, + [820] = {.lex_state = 47}, + [821] = {.lex_state = 43, .external_lex_state = 23}, + [822] = {.lex_state = 51, .external_lex_state = 13}, + [823] = {.lex_state = 51, .external_lex_state = 13}, + [824] = {.lex_state = 25, .external_lex_state = 3}, + [825] = {.lex_state = 25, .external_lex_state = 9}, + [826] = {.lex_state = 25, .external_lex_state = 3}, + [827] = {.lex_state = 43, .external_lex_state = 23}, + [828] = {.lex_state = 51, .external_lex_state = 13}, + [829] = {.lex_state = 39, .external_lex_state = 16}, + [830] = {.lex_state = 51, .external_lex_state = 13}, + [831] = {.lex_state = 51, .external_lex_state = 13}, + [832] = {.lex_state = 51, .external_lex_state = 13}, + [833] = {.lex_state = 25, .external_lex_state = 3}, + [834] = {.lex_state = 43, .external_lex_state = 23}, + [835] = {.lex_state = 51, .external_lex_state = 13}, + [836] = {.lex_state = 51, .external_lex_state = 13}, + [837] = {.lex_state = 51, .external_lex_state = 13}, + [838] = {.lex_state = 51, .external_lex_state = 13}, + [839] = {.lex_state = 25, .external_lex_state = 3}, + [840] = {.lex_state = 51, .external_lex_state = 13}, + [841] = {.lex_state = 51, .external_lex_state = 13}, + [842] = {.lex_state = 51, .external_lex_state = 13}, + [843] = {.lex_state = 51, .external_lex_state = 13}, + [844] = {.lex_state = 51, .external_lex_state = 13}, + [845] = {.lex_state = 51, .external_lex_state = 13}, + [846] = {.lex_state = 1, .external_lex_state = 9}, + [847] = {.lex_state = 43, .external_lex_state = 23}, + [848] = {.lex_state = 43, .external_lex_state = 23}, [849] = {.lex_state = 1, .external_lex_state = 9}, [850] = {.lex_state = 1, .external_lex_state = 9}, - [851] = {.lex_state = 46}, - [852] = {.lex_state = 1, .external_lex_state = 9}, - [853] = {.lex_state = 42, .external_lex_state = 22}, - [854] = {.lex_state = 42, .external_lex_state = 22}, + [851] = {.lex_state = 1, .external_lex_state = 9}, + [852] = {.lex_state = 1, .external_lex_state = 3}, + [853] = {.lex_state = 1, .external_lex_state = 3}, + [854] = {.lex_state = 43, .external_lex_state = 23}, [855] = {.lex_state = 1, .external_lex_state = 9}, - [856] = {.lex_state = 42, .external_lex_state = 22}, - [857] = {.lex_state = 8, .external_lex_state = 3}, - [858] = {.lex_state = 42, .external_lex_state = 22}, - [859] = {.lex_state = 42, .external_lex_state = 22}, - [860] = {.lex_state = 42, .external_lex_state = 22}, + [856] = {.lex_state = 1, .external_lex_state = 9}, + [857] = {.lex_state = 47}, + [858] = {.lex_state = 1, .external_lex_state = 9}, + [859] = {.lex_state = 43, .external_lex_state = 23}, + [860] = {.lex_state = 43, .external_lex_state = 23}, [861] = {.lex_state = 1, .external_lex_state = 9}, - [862] = {.lex_state = 42, .external_lex_state = 22}, - [863] = {.lex_state = 42, .external_lex_state = 22}, - [864] = {.lex_state = 42, .external_lex_state = 22}, - [865] = {.lex_state = 42, .external_lex_state = 22}, - [866] = {.lex_state = 42, .external_lex_state = 22}, - [867] = {.lex_state = 42, .external_lex_state = 22}, - [868] = {.lex_state = 42, .external_lex_state = 22}, - [869] = {.lex_state = 42, .external_lex_state = 22}, - [870] = {.lex_state = 42, .external_lex_state = 22}, - [871] = {.lex_state = 42, .external_lex_state = 22}, - [872] = {.lex_state = 1, .external_lex_state = 5}, - [873] = {.lex_state = 1, .external_lex_state = 9}, - [874] = {.lex_state = 1, .external_lex_state = 9}, - [875] = {.lex_state = 1, .external_lex_state = 5}, - [876] = {.lex_state = 1, .external_lex_state = 5}, - [877] = {.lex_state = 1, .external_lex_state = 5}, - [878] = {.lex_state = 1, .external_lex_state = 4}, - [879] = {.lex_state = 1, .external_lex_state = 4}, + [862] = {.lex_state = 43, .external_lex_state = 23}, + [863] = {.lex_state = 8, .external_lex_state = 3}, + [864] = {.lex_state = 43, .external_lex_state = 23}, + [865] = {.lex_state = 43, .external_lex_state = 23}, + [866] = {.lex_state = 43, .external_lex_state = 23}, + [867] = {.lex_state = 1, .external_lex_state = 9}, + [868] = {.lex_state = 43, .external_lex_state = 23}, + [869] = {.lex_state = 43, .external_lex_state = 23}, + [870] = {.lex_state = 43, .external_lex_state = 23}, + [871] = {.lex_state = 43, .external_lex_state = 23}, + [872] = {.lex_state = 43, .external_lex_state = 23}, + [873] = {.lex_state = 43, .external_lex_state = 23}, + [874] = {.lex_state = 43, .external_lex_state = 23}, + [875] = {.lex_state = 43, .external_lex_state = 23}, + [876] = {.lex_state = 43, .external_lex_state = 23}, + [877] = {.lex_state = 43, .external_lex_state = 23}, + [878] = {.lex_state = 1, .external_lex_state = 5}, + [879] = {.lex_state = 1, .external_lex_state = 9}, [880] = {.lex_state = 1, .external_lex_state = 9}, [881] = {.lex_state = 1, .external_lex_state = 5}, [882] = {.lex_state = 1, .external_lex_state = 5}, - [883] = {.lex_state = 46}, - [884] = {.lex_state = 1, .external_lex_state = 5}, - [885] = {.lex_state = 1, .external_lex_state = 9}, + [883] = {.lex_state = 1, .external_lex_state = 5}, + [884] = {.lex_state = 1, .external_lex_state = 4}, + [885] = {.lex_state = 1, .external_lex_state = 4}, [886] = {.lex_state = 1, .external_lex_state = 9}, [887] = {.lex_state = 1, .external_lex_state = 5}, - [888] = {.lex_state = 1, .external_lex_state = 9}, - [889] = {.lex_state = 8, .external_lex_state = 4}, - [890] = {.lex_state = 1, .external_lex_state = 9}, + [888] = {.lex_state = 1, .external_lex_state = 5}, + [889] = {.lex_state = 47}, + [890] = {.lex_state = 1, .external_lex_state = 5}, [891] = {.lex_state = 1, .external_lex_state = 9}, [892] = {.lex_state = 1, .external_lex_state = 9}, [893] = {.lex_state = 1, .external_lex_state = 5}, [894] = {.lex_state = 1, .external_lex_state = 9}, - [895] = {.lex_state = 1, .external_lex_state = 9}, + [895] = {.lex_state = 8, .external_lex_state = 4}, [896] = {.lex_state = 1, .external_lex_state = 9}, [897] = {.lex_state = 1, .external_lex_state = 9}, [898] = {.lex_state = 1, .external_lex_state = 9}, - [899] = {.lex_state = 1, .external_lex_state = 9}, + [899] = {.lex_state = 1, .external_lex_state = 5}, [900] = {.lex_state = 1, .external_lex_state = 9}, [901] = {.lex_state = 1, .external_lex_state = 9}, [902] = {.lex_state = 1, .external_lex_state = 9}, [903] = {.lex_state = 1, .external_lex_state = 9}, - [904] = {.lex_state = 44, .external_lex_state = 19}, - [905] = {.lex_state = 1, .external_lex_state = 5}, - [906] = {.lex_state = 1, .external_lex_state = 5}, - [907] = {.lex_state = 44, .external_lex_state = 19}, - [908] = {.lex_state = 44, .external_lex_state = 19}, - [909] = {.lex_state = 44, .external_lex_state = 19}, - [910] = {.lex_state = 44, .external_lex_state = 10}, - [911] = {.lex_state = 44, .external_lex_state = 10}, + [904] = {.lex_state = 1, .external_lex_state = 9}, + [905] = {.lex_state = 1, .external_lex_state = 9}, + [906] = {.lex_state = 1, .external_lex_state = 9}, + [907] = {.lex_state = 1, .external_lex_state = 9}, + [908] = {.lex_state = 1, .external_lex_state = 9}, + [909] = {.lex_state = 1, .external_lex_state = 9}, + [910] = {.lex_state = 45, .external_lex_state = 20}, + [911] = {.lex_state = 1, .external_lex_state = 5}, [912] = {.lex_state = 1, .external_lex_state = 5}, - [913] = {.lex_state = 44, .external_lex_state = 19}, - [914] = {.lex_state = 44, .external_lex_state = 19}, - [915] = {.lex_state = 46}, - [916] = {.lex_state = 44, .external_lex_state = 19}, - [917] = {.lex_state = 1, .external_lex_state = 5}, + [913] = {.lex_state = 45, .external_lex_state = 20}, + [914] = {.lex_state = 45, .external_lex_state = 20}, + [915] = {.lex_state = 45, .external_lex_state = 20}, + [916] = {.lex_state = 45, .external_lex_state = 10}, + [917] = {.lex_state = 45, .external_lex_state = 10}, [918] = {.lex_state = 1, .external_lex_state = 5}, - [919] = {.lex_state = 44, .external_lex_state = 19}, - [920] = {.lex_state = 1, .external_lex_state = 5}, - [921] = {.lex_state = 31, .external_lex_state = 10}, - [922] = {.lex_state = 1, .external_lex_state = 5}, + [919] = {.lex_state = 45, .external_lex_state = 20}, + [920] = {.lex_state = 45, .external_lex_state = 20}, + [921] = {.lex_state = 47}, + [922] = {.lex_state = 45, .external_lex_state = 20}, [923] = {.lex_state = 1, .external_lex_state = 5}, [924] = {.lex_state = 1, .external_lex_state = 5}, - [925] = {.lex_state = 44, .external_lex_state = 19}, + [925] = {.lex_state = 45, .external_lex_state = 20}, [926] = {.lex_state = 1, .external_lex_state = 5}, - [927] = {.lex_state = 1, .external_lex_state = 5}, + [927] = {.lex_state = 32, .external_lex_state = 10}, [928] = {.lex_state = 1, .external_lex_state = 5}, [929] = {.lex_state = 1, .external_lex_state = 5}, [930] = {.lex_state = 1, .external_lex_state = 5}, - [931] = {.lex_state = 1, .external_lex_state = 5}, + [931] = {.lex_state = 45, .external_lex_state = 20}, [932] = {.lex_state = 1, .external_lex_state = 5}, [933] = {.lex_state = 1, .external_lex_state = 5}, [934] = {.lex_state = 1, .external_lex_state = 5}, [935] = {.lex_state = 1, .external_lex_state = 5}, - [936] = {.lex_state = 6, .external_lex_state = 9}, - [937] = {.lex_state = 44, .external_lex_state = 19}, - [938] = {.lex_state = 44, .external_lex_state = 19}, - [939] = {.lex_state = 6, .external_lex_state = 9}, - [940] = {.lex_state = 6, .external_lex_state = 9}, - [941] = {.lex_state = 6, .external_lex_state = 9}, - [942] = {.lex_state = 6, .external_lex_state = 3}, - [943] = {.lex_state = 6, .external_lex_state = 3}, - [944] = {.lex_state = 44, .external_lex_state = 19}, + [936] = {.lex_state = 1, .external_lex_state = 5}, + [937] = {.lex_state = 1, .external_lex_state = 5}, + [938] = {.lex_state = 1, .external_lex_state = 5}, + [939] = {.lex_state = 1, .external_lex_state = 5}, + [940] = {.lex_state = 1, .external_lex_state = 5}, + [941] = {.lex_state = 1, .external_lex_state = 5}, + [942] = {.lex_state = 6, .external_lex_state = 9}, + [943] = {.lex_state = 45, .external_lex_state = 20}, + [944] = {.lex_state = 45, .external_lex_state = 20}, [945] = {.lex_state = 6, .external_lex_state = 9}, [946] = {.lex_state = 6, .external_lex_state = 9}, - [947] = {.lex_state = 46}, - [948] = {.lex_state = 6, .external_lex_state = 9}, - [949] = {.lex_state = 44, .external_lex_state = 19}, - [950] = {.lex_state = 44, .external_lex_state = 19}, + [947] = {.lex_state = 6, .external_lex_state = 9}, + [948] = {.lex_state = 6, .external_lex_state = 3}, + [949] = {.lex_state = 6, .external_lex_state = 3}, + [950] = {.lex_state = 45, .external_lex_state = 20}, [951] = {.lex_state = 6, .external_lex_state = 9}, - [952] = {.lex_state = 44, .external_lex_state = 19}, - [953] = {.lex_state = 8, .external_lex_state = 3}, - [954] = {.lex_state = 44, .external_lex_state = 19}, - [955] = {.lex_state = 44, .external_lex_state = 19}, - [956] = {.lex_state = 44, .external_lex_state = 19}, + [952] = {.lex_state = 6, .external_lex_state = 9}, + [953] = {.lex_state = 47}, + [954] = {.lex_state = 6, .external_lex_state = 9}, + [955] = {.lex_state = 45, .external_lex_state = 20}, + [956] = {.lex_state = 45, .external_lex_state = 20}, [957] = {.lex_state = 6, .external_lex_state = 9}, - [958] = {.lex_state = 44, .external_lex_state = 19}, - [959] = {.lex_state = 44, .external_lex_state = 19}, - [960] = {.lex_state = 44, .external_lex_state = 19}, - [961] = {.lex_state = 44, .external_lex_state = 19}, - [962] = {.lex_state = 44, .external_lex_state = 19}, - [963] = {.lex_state = 44, .external_lex_state = 19}, - [964] = {.lex_state = 44, .external_lex_state = 19}, - [965] = {.lex_state = 44, .external_lex_state = 19}, - [966] = {.lex_state = 44, .external_lex_state = 19}, - [967] = {.lex_state = 44, .external_lex_state = 19}, - [968] = {.lex_state = 42, .external_lex_state = 22}, - [969] = {.lex_state = 6, .external_lex_state = 9}, - [970] = {.lex_state = 6, .external_lex_state = 9}, - [971] = {.lex_state = 18, .external_lex_state = 11}, - [972] = {.lex_state = 18, .external_lex_state = 11}, - [973] = {.lex_state = 18, .external_lex_state = 11}, - [974] = {.lex_state = 42, .external_lex_state = 22}, - [975] = {.lex_state = 42, .external_lex_state = 22}, + [958] = {.lex_state = 45, .external_lex_state = 20}, + [959] = {.lex_state = 8, .external_lex_state = 3}, + [960] = {.lex_state = 45, .external_lex_state = 20}, + [961] = {.lex_state = 45, .external_lex_state = 20}, + [962] = {.lex_state = 45, .external_lex_state = 20}, + [963] = {.lex_state = 6, .external_lex_state = 9}, + [964] = {.lex_state = 45, .external_lex_state = 20}, + [965] = {.lex_state = 45, .external_lex_state = 20}, + [966] = {.lex_state = 45, .external_lex_state = 20}, + [967] = {.lex_state = 45, .external_lex_state = 20}, + [968] = {.lex_state = 45, .external_lex_state = 20}, + [969] = {.lex_state = 45, .external_lex_state = 20}, + [970] = {.lex_state = 45, .external_lex_state = 20}, + [971] = {.lex_state = 45, .external_lex_state = 20}, + [972] = {.lex_state = 45, .external_lex_state = 20}, + [973] = {.lex_state = 45, .external_lex_state = 20}, + [974] = {.lex_state = 43, .external_lex_state = 23}, + [975] = {.lex_state = 6, .external_lex_state = 9}, [976] = {.lex_state = 6, .external_lex_state = 9}, - [977] = {.lex_state = 18, .external_lex_state = 11}, - [978] = {.lex_state = 18, .external_lex_state = 11}, - [979] = {.lex_state = 46}, - [980] = {.lex_state = 18, .external_lex_state = 11}, - [981] = {.lex_state = 6, .external_lex_state = 9}, + [977] = {.lex_state = 19, .external_lex_state = 11}, + [978] = {.lex_state = 19, .external_lex_state = 11}, + [979] = {.lex_state = 19, .external_lex_state = 11}, + [980] = {.lex_state = 43, .external_lex_state = 23}, + [981] = {.lex_state = 43, .external_lex_state = 23}, [982] = {.lex_state = 6, .external_lex_state = 9}, - [983] = {.lex_state = 18, .external_lex_state = 11}, - [984] = {.lex_state = 6, .external_lex_state = 9}, - [985] = {.lex_state = 38, .external_lex_state = 22}, - [986] = {.lex_state = 6, .external_lex_state = 9}, + [983] = {.lex_state = 19, .external_lex_state = 11}, + [984] = {.lex_state = 19, .external_lex_state = 11}, + [985] = {.lex_state = 47}, + [986] = {.lex_state = 19, .external_lex_state = 11}, [987] = {.lex_state = 6, .external_lex_state = 9}, [988] = {.lex_state = 6, .external_lex_state = 9}, - [989] = {.lex_state = 18, .external_lex_state = 11}, + [989] = {.lex_state = 19, .external_lex_state = 11}, [990] = {.lex_state = 6, .external_lex_state = 9}, - [991] = {.lex_state = 6, .external_lex_state = 9}, + [991] = {.lex_state = 39, .external_lex_state = 23}, [992] = {.lex_state = 6, .external_lex_state = 9}, [993] = {.lex_state = 6, .external_lex_state = 9}, [994] = {.lex_state = 6, .external_lex_state = 9}, - [995] = {.lex_state = 6, .external_lex_state = 9}, + [995] = {.lex_state = 19, .external_lex_state = 11}, [996] = {.lex_state = 6, .external_lex_state = 9}, [997] = {.lex_state = 6, .external_lex_state = 9}, [998] = {.lex_state = 6, .external_lex_state = 9}, [999] = {.lex_state = 6, .external_lex_state = 9}, - [1000] = {.lex_state = 18, .external_lex_state = 11}, - [1001] = {.lex_state = 18, .external_lex_state = 11}, - [1002] = {.lex_state = 18, .external_lex_state = 11}, - [1003] = {.lex_state = 3, .external_lex_state = 5}, - [1004] = {.lex_state = 3, .external_lex_state = 5}, - [1005] = {.lex_state = 3, .external_lex_state = 5}, - [1006] = {.lex_state = 18, .external_lex_state = 12}, - [1007] = {.lex_state = 18, .external_lex_state = 12}, - [1008] = {.lex_state = 18, .external_lex_state = 11}, + [1000] = {.lex_state = 6, .external_lex_state = 9}, + [1001] = {.lex_state = 6, .external_lex_state = 9}, + [1002] = {.lex_state = 6, .external_lex_state = 9}, + [1003] = {.lex_state = 6, .external_lex_state = 9}, + [1004] = {.lex_state = 6, .external_lex_state = 9}, + [1005] = {.lex_state = 6, .external_lex_state = 9}, + [1006] = {.lex_state = 19, .external_lex_state = 11}, + [1007] = {.lex_state = 19, .external_lex_state = 11}, + [1008] = {.lex_state = 19, .external_lex_state = 11}, [1009] = {.lex_state = 3, .external_lex_state = 5}, [1010] = {.lex_state = 3, .external_lex_state = 5}, - [1011] = {.lex_state = 46}, - [1012] = {.lex_state = 3, .external_lex_state = 5}, - [1013] = {.lex_state = 18, .external_lex_state = 11}, - [1014] = {.lex_state = 18, .external_lex_state = 11}, + [1011] = {.lex_state = 3, .external_lex_state = 5}, + [1012] = {.lex_state = 19, .external_lex_state = 12}, + [1013] = {.lex_state = 19, .external_lex_state = 12}, + [1014] = {.lex_state = 19, .external_lex_state = 11}, [1015] = {.lex_state = 3, .external_lex_state = 5}, - [1016] = {.lex_state = 18, .external_lex_state = 11}, - [1017] = {.lex_state = 17, .external_lex_state = 12}, - [1018] = {.lex_state = 18, .external_lex_state = 11}, - [1019] = {.lex_state = 18, .external_lex_state = 11}, - [1020] = {.lex_state = 18, .external_lex_state = 11}, + [1016] = {.lex_state = 3, .external_lex_state = 5}, + [1017] = {.lex_state = 47}, + [1018] = {.lex_state = 3, .external_lex_state = 5}, + [1019] = {.lex_state = 19, .external_lex_state = 11}, + [1020] = {.lex_state = 19, .external_lex_state = 11}, [1021] = {.lex_state = 3, .external_lex_state = 5}, - [1022] = {.lex_state = 18, .external_lex_state = 11}, - [1023] = {.lex_state = 18, .external_lex_state = 11}, - [1024] = {.lex_state = 18, .external_lex_state = 11}, - [1025] = {.lex_state = 18, .external_lex_state = 11}, - [1026] = {.lex_state = 18, .external_lex_state = 11}, - [1027] = {.lex_state = 18, .external_lex_state = 11}, - [1028] = {.lex_state = 18, .external_lex_state = 11}, - [1029] = {.lex_state = 18, .external_lex_state = 11}, - [1030] = {.lex_state = 18, .external_lex_state = 11}, - [1031] = {.lex_state = 18, .external_lex_state = 11}, - [1032] = {.lex_state = 3, .external_lex_state = 5}, - [1033] = {.lex_state = 3, .external_lex_state = 5}, - [1034] = {.lex_state = 3, .external_lex_state = 5}, - [1035] = {.lex_state = 6, .external_lex_state = 9}, - [1036] = {.lex_state = 6, .external_lex_state = 9}, - [1037] = {.lex_state = 6, .external_lex_state = 9}, - [1038] = {.lex_state = 3, .external_lex_state = 4}, - [1039] = {.lex_state = 3, .external_lex_state = 4}, + [1022] = {.lex_state = 19, .external_lex_state = 11}, + [1023] = {.lex_state = 18, .external_lex_state = 12}, + [1024] = {.lex_state = 19, .external_lex_state = 11}, + [1025] = {.lex_state = 19, .external_lex_state = 11}, + [1026] = {.lex_state = 19, .external_lex_state = 11}, + [1027] = {.lex_state = 3, .external_lex_state = 5}, + [1028] = {.lex_state = 19, .external_lex_state = 11}, + [1029] = {.lex_state = 19, .external_lex_state = 11}, + [1030] = {.lex_state = 19, .external_lex_state = 11}, + [1031] = {.lex_state = 19, .external_lex_state = 11}, + [1032] = {.lex_state = 19, .external_lex_state = 11}, + [1033] = {.lex_state = 19, .external_lex_state = 11}, + [1034] = {.lex_state = 19, .external_lex_state = 11}, + [1035] = {.lex_state = 19, .external_lex_state = 11}, + [1036] = {.lex_state = 19, .external_lex_state = 11}, + [1037] = {.lex_state = 19, .external_lex_state = 11}, + [1038] = {.lex_state = 3, .external_lex_state = 5}, + [1039] = {.lex_state = 3, .external_lex_state = 5}, [1040] = {.lex_state = 3, .external_lex_state = 5}, [1041] = {.lex_state = 6, .external_lex_state = 9}, [1042] = {.lex_state = 6, .external_lex_state = 9}, - [1043] = {.lex_state = 46}, - [1044] = {.lex_state = 6, .external_lex_state = 9}, - [1045] = {.lex_state = 3, .external_lex_state = 5}, + [1043] = {.lex_state = 6, .external_lex_state = 9}, + [1044] = {.lex_state = 3, .external_lex_state = 4}, + [1045] = {.lex_state = 3, .external_lex_state = 4}, [1046] = {.lex_state = 3, .external_lex_state = 5}, [1047] = {.lex_state = 6, .external_lex_state = 9}, - [1048] = {.lex_state = 3, .external_lex_state = 5}, - [1049] = {.lex_state = 2, .external_lex_state = 4}, - [1050] = {.lex_state = 3, .external_lex_state = 5}, + [1048] = {.lex_state = 6, .external_lex_state = 9}, + [1049] = {.lex_state = 47}, + [1050] = {.lex_state = 6, .external_lex_state = 9}, [1051] = {.lex_state = 3, .external_lex_state = 5}, [1052] = {.lex_state = 3, .external_lex_state = 5}, [1053] = {.lex_state = 6, .external_lex_state = 9}, [1054] = {.lex_state = 3, .external_lex_state = 5}, - [1055] = {.lex_state = 3, .external_lex_state = 5}, + [1055] = {.lex_state = 2, .external_lex_state = 4}, [1056] = {.lex_state = 3, .external_lex_state = 5}, [1057] = {.lex_state = 3, .external_lex_state = 5}, [1058] = {.lex_state = 3, .external_lex_state = 5}, - [1059] = {.lex_state = 3, .external_lex_state = 5}, + [1059] = {.lex_state = 6, .external_lex_state = 9}, [1060] = {.lex_state = 3, .external_lex_state = 5}, [1061] = {.lex_state = 3, .external_lex_state = 5}, [1062] = {.lex_state = 3, .external_lex_state = 5}, [1063] = {.lex_state = 3, .external_lex_state = 5}, - [1064] = {.lex_state = 6, .external_lex_state = 9}, - [1065] = {.lex_state = 6, .external_lex_state = 9}, - [1066] = {.lex_state = 6, .external_lex_state = 9}, + [1064] = {.lex_state = 3, .external_lex_state = 5}, + [1065] = {.lex_state = 3, .external_lex_state = 5}, + [1066] = {.lex_state = 3, .external_lex_state = 5}, [1067] = {.lex_state = 3, .external_lex_state = 5}, [1068] = {.lex_state = 3, .external_lex_state = 5}, [1069] = {.lex_state = 3, .external_lex_state = 5}, - [1070] = {.lex_state = 6, .external_lex_state = 3}, - [1071] = {.lex_state = 6, .external_lex_state = 3}, + [1070] = {.lex_state = 6, .external_lex_state = 9}, + [1071] = {.lex_state = 6, .external_lex_state = 9}, [1072] = {.lex_state = 6, .external_lex_state = 9}, [1073] = {.lex_state = 3, .external_lex_state = 5}, [1074] = {.lex_state = 3, .external_lex_state = 5}, - [1075] = {.lex_state = 46}, - [1076] = {.lex_state = 3, .external_lex_state = 5}, - [1077] = {.lex_state = 6, .external_lex_state = 9}, + [1075] = {.lex_state = 3, .external_lex_state = 5}, + [1076] = {.lex_state = 6, .external_lex_state = 3}, + [1077] = {.lex_state = 6, .external_lex_state = 3}, [1078] = {.lex_state = 6, .external_lex_state = 9}, [1079] = {.lex_state = 3, .external_lex_state = 5}, - [1080] = {.lex_state = 6, .external_lex_state = 9}, - [1081] = {.lex_state = 8, .external_lex_state = 3}, - [1082] = {.lex_state = 6, .external_lex_state = 9}, + [1080] = {.lex_state = 3, .external_lex_state = 5}, + [1081] = {.lex_state = 47}, + [1082] = {.lex_state = 3, .external_lex_state = 5}, [1083] = {.lex_state = 6, .external_lex_state = 9}, [1084] = {.lex_state = 6, .external_lex_state = 9}, [1085] = {.lex_state = 3, .external_lex_state = 5}, [1086] = {.lex_state = 6, .external_lex_state = 9}, - [1087] = {.lex_state = 6, .external_lex_state = 9}, + [1087] = {.lex_state = 8, .external_lex_state = 3}, [1088] = {.lex_state = 6, .external_lex_state = 9}, [1089] = {.lex_state = 6, .external_lex_state = 9}, [1090] = {.lex_state = 6, .external_lex_state = 9}, - [1091] = {.lex_state = 6, .external_lex_state = 9}, + [1091] = {.lex_state = 3, .external_lex_state = 5}, [1092] = {.lex_state = 6, .external_lex_state = 9}, [1093] = {.lex_state = 6, .external_lex_state = 9}, [1094] = {.lex_state = 6, .external_lex_state = 9}, [1095] = {.lex_state = 6, .external_lex_state = 9}, - [1096] = {.lex_state = 3, .external_lex_state = 5}, - [1097] = {.lex_state = 3, .external_lex_state = 5}, - [1098] = {.lex_state = 3, .external_lex_state = 5}, - [1099] = {.lex_state = 51, .external_lex_state = 19}, - [1100] = {.lex_state = 51, .external_lex_state = 19}, - [1101] = {.lex_state = 51, .external_lex_state = 19}, - [1102] = {.lex_state = 3, .external_lex_state = 4}, - [1103] = {.lex_state = 3, .external_lex_state = 4}, + [1096] = {.lex_state = 6, .external_lex_state = 9}, + [1097] = {.lex_state = 6, .external_lex_state = 9}, + [1098] = {.lex_state = 6, .external_lex_state = 9}, + [1099] = {.lex_state = 6, .external_lex_state = 9}, + [1100] = {.lex_state = 6, .external_lex_state = 9}, + [1101] = {.lex_state = 6, .external_lex_state = 9}, + [1102] = {.lex_state = 3, .external_lex_state = 5}, + [1103] = {.lex_state = 3, .external_lex_state = 5}, [1104] = {.lex_state = 3, .external_lex_state = 5}, - [1105] = {.lex_state = 51, .external_lex_state = 19}, - [1106] = {.lex_state = 51, .external_lex_state = 19}, - [1107] = {.lex_state = 46}, - [1108] = {.lex_state = 51, .external_lex_state = 19}, - [1109] = {.lex_state = 3, .external_lex_state = 5}, + [1105] = {.lex_state = 52, .external_lex_state = 20}, + [1106] = {.lex_state = 52, .external_lex_state = 20}, + [1107] = {.lex_state = 52, .external_lex_state = 20}, + [1108] = {.lex_state = 3, .external_lex_state = 4}, + [1109] = {.lex_state = 3, .external_lex_state = 4}, [1110] = {.lex_state = 3, .external_lex_state = 5}, - [1111] = {.lex_state = 51, .external_lex_state = 19}, - [1112] = {.lex_state = 3, .external_lex_state = 5}, - [1113] = {.lex_state = 2, .external_lex_state = 4}, - [1114] = {.lex_state = 3, .external_lex_state = 5}, + [1111] = {.lex_state = 52, .external_lex_state = 20}, + [1112] = {.lex_state = 52, .external_lex_state = 20}, + [1113] = {.lex_state = 47}, + [1114] = {.lex_state = 52, .external_lex_state = 20}, [1115] = {.lex_state = 3, .external_lex_state = 5}, [1116] = {.lex_state = 3, .external_lex_state = 5}, - [1117] = {.lex_state = 51, .external_lex_state = 19}, + [1117] = {.lex_state = 52, .external_lex_state = 20}, [1118] = {.lex_state = 3, .external_lex_state = 5}, - [1119] = {.lex_state = 3, .external_lex_state = 5}, + [1119] = {.lex_state = 2, .external_lex_state = 4}, [1120] = {.lex_state = 3, .external_lex_state = 5}, [1121] = {.lex_state = 3, .external_lex_state = 5}, [1122] = {.lex_state = 3, .external_lex_state = 5}, - [1123] = {.lex_state = 3, .external_lex_state = 5}, + [1123] = {.lex_state = 52, .external_lex_state = 20}, [1124] = {.lex_state = 3, .external_lex_state = 5}, [1125] = {.lex_state = 3, .external_lex_state = 5}, [1126] = {.lex_state = 3, .external_lex_state = 5}, [1127] = {.lex_state = 3, .external_lex_state = 5}, - [1128] = {.lex_state = 47, .external_lex_state = 19}, - [1129] = {.lex_state = 51, .external_lex_state = 19}, - [1130] = {.lex_state = 51, .external_lex_state = 19}, - [1131] = {.lex_state = 46, .external_lex_state = 13}, - [1132] = {.lex_state = 46, .external_lex_state = 13}, - [1133] = {.lex_state = 46, .external_lex_state = 13}, - [1134] = {.lex_state = 47, .external_lex_state = 10}, - [1135] = {.lex_state = 47, .external_lex_state = 10}, - [1136] = {.lex_state = 51, .external_lex_state = 19}, - [1137] = {.lex_state = 46, .external_lex_state = 13}, - [1138] = {.lex_state = 46, .external_lex_state = 13}, - [1139] = {.lex_state = 46}, - [1140] = {.lex_state = 46, .external_lex_state = 13}, - [1141] = {.lex_state = 51, .external_lex_state = 19}, - [1142] = {.lex_state = 51, .external_lex_state = 19}, - [1143] = {.lex_state = 46, .external_lex_state = 13}, - [1144] = {.lex_state = 51, .external_lex_state = 19}, - [1145] = {.lex_state = 37, .external_lex_state = 10}, - [1146] = {.lex_state = 51, .external_lex_state = 19}, - [1147] = {.lex_state = 51, .external_lex_state = 19}, - [1148] = {.lex_state = 51, .external_lex_state = 19}, - [1149] = {.lex_state = 46, .external_lex_state = 13}, - [1150] = {.lex_state = 51, .external_lex_state = 19}, - [1151] = {.lex_state = 51, .external_lex_state = 19}, - [1152] = {.lex_state = 51, .external_lex_state = 19}, - [1153] = {.lex_state = 51, .external_lex_state = 19}, - [1154] = {.lex_state = 51, .external_lex_state = 19}, - [1155] = {.lex_state = 51, .external_lex_state = 19}, - [1156] = {.lex_state = 51, .external_lex_state = 19}, - [1157] = {.lex_state = 51, .external_lex_state = 19}, - [1158] = {.lex_state = 51, .external_lex_state = 19}, - [1159] = {.lex_state = 51, .external_lex_state = 19}, - [1160] = {.lex_state = 46, .external_lex_state = 13}, - [1161] = {.lex_state = 46, .external_lex_state = 13}, - [1162] = {.lex_state = 46, .external_lex_state = 13}, - [1163] = {.lex_state = 22, .external_lex_state = 11}, - [1164] = {.lex_state = 22, .external_lex_state = 11}, - [1165] = {.lex_state = 22, .external_lex_state = 11}, - [1166] = {.lex_state = 46}, - [1167] = {.lex_state = 46}, - [1168] = {.lex_state = 46, .external_lex_state = 13}, - [1169] = {.lex_state = 22, .external_lex_state = 11}, - [1170] = {.lex_state = 22, .external_lex_state = 11}, - [1171] = {.lex_state = 46}, - [1172] = {.lex_state = 22, .external_lex_state = 11}, - [1173] = {.lex_state = 46, .external_lex_state = 13}, - [1174] = {.lex_state = 46, .external_lex_state = 13}, - [1175] = {.lex_state = 22, .external_lex_state = 11}, - [1176] = {.lex_state = 46, .external_lex_state = 13}, - [1177] = {.lex_state = 32}, - [1178] = {.lex_state = 46, .external_lex_state = 13}, - [1179] = {.lex_state = 46, .external_lex_state = 13}, - [1180] = {.lex_state = 46, .external_lex_state = 13}, - [1181] = {.lex_state = 22, .external_lex_state = 11}, - [1182] = {.lex_state = 46, .external_lex_state = 13}, - [1183] = {.lex_state = 46, .external_lex_state = 13}, - [1184] = {.lex_state = 46, .external_lex_state = 13}, - [1185] = {.lex_state = 46, .external_lex_state = 13}, - [1186] = {.lex_state = 46, .external_lex_state = 13}, - [1187] = {.lex_state = 46, .external_lex_state = 13}, - [1188] = {.lex_state = 46, .external_lex_state = 13}, - [1189] = {.lex_state = 46, .external_lex_state = 13}, - [1190] = {.lex_state = 46, .external_lex_state = 13}, - [1191] = {.lex_state = 46, .external_lex_state = 13}, - [1192] = {.lex_state = 22, .external_lex_state = 11}, - [1193] = {.lex_state = 22, .external_lex_state = 11}, - [1194] = {.lex_state = 22, .external_lex_state = 11}, - [1195] = {.lex_state = 23, .external_lex_state = 5}, - [1196] = {.lex_state = 23, .external_lex_state = 5}, - [1197] = {.lex_state = 23, .external_lex_state = 5}, - [1198] = {.lex_state = 22, .external_lex_state = 12}, - [1199] = {.lex_state = 22, .external_lex_state = 12}, - [1200] = {.lex_state = 22, .external_lex_state = 11}, - [1201] = {.lex_state = 23, .external_lex_state = 5}, - [1202] = {.lex_state = 23, .external_lex_state = 5}, - [1203] = {.lex_state = 46}, - [1204] = {.lex_state = 23, .external_lex_state = 5}, - [1205] = {.lex_state = 22, .external_lex_state = 11}, - [1206] = {.lex_state = 22, .external_lex_state = 11}, - [1207] = {.lex_state = 23, .external_lex_state = 5}, - [1208] = {.lex_state = 22, .external_lex_state = 11}, - [1209] = {.lex_state = 27, .external_lex_state = 12}, - [1210] = {.lex_state = 22, .external_lex_state = 11}, - [1211] = {.lex_state = 22, .external_lex_state = 11}, - [1212] = {.lex_state = 22, .external_lex_state = 11}, - [1213] = {.lex_state = 23, .external_lex_state = 5}, - [1214] = {.lex_state = 22, .external_lex_state = 11}, - [1215] = {.lex_state = 22, .external_lex_state = 11}, - [1216] = {.lex_state = 22, .external_lex_state = 11}, - [1217] = {.lex_state = 22, .external_lex_state = 11}, - [1218] = {.lex_state = 22, .external_lex_state = 11}, - [1219] = {.lex_state = 22, .external_lex_state = 11}, - [1220] = {.lex_state = 22, .external_lex_state = 11}, - [1221] = {.lex_state = 22, .external_lex_state = 11}, - [1222] = {.lex_state = 22, .external_lex_state = 11}, - [1223] = {.lex_state = 22, .external_lex_state = 11}, - [1224] = {.lex_state = 23, .external_lex_state = 5}, - [1225] = {.lex_state = 9, .external_lex_state = 23}, - [1226] = {.lex_state = 9, .external_lex_state = 23}, - [1227] = {.lex_state = 24, .external_lex_state = 9}, - [1228] = {.lex_state = 24, .external_lex_state = 9}, - [1229] = {.lex_state = 24, .external_lex_state = 9}, - [1230] = {.lex_state = 23, .external_lex_state = 4}, - [1231] = {.lex_state = 23, .external_lex_state = 4}, - [1232] = {.lex_state = 9, .external_lex_state = 23}, - [1233] = {.lex_state = 24, .external_lex_state = 9}, - [1234] = {.lex_state = 24, .external_lex_state = 9}, - [1235] = {.lex_state = 46}, - [1236] = {.lex_state = 24, .external_lex_state = 9}, - [1237] = {.lex_state = 9, .external_lex_state = 23}, - [1238] = {.lex_state = 9, .external_lex_state = 23}, - [1239] = {.lex_state = 24, .external_lex_state = 9}, - [1240] = {.lex_state = 9, .external_lex_state = 23}, - [1241] = {.lex_state = 28, .external_lex_state = 4}, - [1242] = {.lex_state = 9, .external_lex_state = 23}, - [1243] = {.lex_state = 9, .external_lex_state = 23}, - [1244] = {.lex_state = 9, .external_lex_state = 23}, - [1245] = {.lex_state = 24, .external_lex_state = 9}, - [1246] = {.lex_state = 9, .external_lex_state = 23}, - [1247] = {.lex_state = 9, .external_lex_state = 23}, - [1248] = {.lex_state = 9, .external_lex_state = 23}, - [1249] = {.lex_state = 9, .external_lex_state = 23}, - [1250] = {.lex_state = 9, .external_lex_state = 23}, - [1251] = {.lex_state = 9, .external_lex_state = 23}, - [1252] = {.lex_state = 9, .external_lex_state = 23}, - [1253] = {.lex_state = 9, .external_lex_state = 23}, - [1254] = {.lex_state = 9, .external_lex_state = 23}, - [1255] = {.lex_state = 9, .external_lex_state = 23}, - [1256] = {.lex_state = 24, .external_lex_state = 9}, - [1257] = {.lex_state = 23, .external_lex_state = 5}, - [1258] = {.lex_state = 23, .external_lex_state = 5}, - [1259] = {.lex_state = 24, .external_lex_state = 5}, - [1260] = {.lex_state = 24, .external_lex_state = 5}, - [1261] = {.lex_state = 24, .external_lex_state = 5}, - [1262] = {.lex_state = 24, .external_lex_state = 3}, - [1263] = {.lex_state = 24, .external_lex_state = 3}, - [1264] = {.lex_state = 23, .external_lex_state = 5}, - [1265] = {.lex_state = 24, .external_lex_state = 5}, - [1266] = {.lex_state = 24, .external_lex_state = 5}, - [1267] = {.lex_state = 46}, - [1268] = {.lex_state = 24, .external_lex_state = 5}, - [1269] = {.lex_state = 23, .external_lex_state = 5}, - [1270] = {.lex_state = 23, .external_lex_state = 5}, - [1271] = {.lex_state = 24, .external_lex_state = 5}, - [1272] = {.lex_state = 23, .external_lex_state = 5}, - [1273] = {.lex_state = 29, .external_lex_state = 3}, - [1274] = {.lex_state = 23, .external_lex_state = 5}, - [1275] = {.lex_state = 23, .external_lex_state = 5}, - [1276] = {.lex_state = 23, .external_lex_state = 5}, - [1277] = {.lex_state = 24, .external_lex_state = 5}, - [1278] = {.lex_state = 23, .external_lex_state = 5}, - [1279] = {.lex_state = 23, .external_lex_state = 5}, - [1280] = {.lex_state = 23, .external_lex_state = 5}, - [1281] = {.lex_state = 23, .external_lex_state = 5}, - [1282] = {.lex_state = 23, .external_lex_state = 5}, - [1283] = {.lex_state = 23, .external_lex_state = 5}, - [1284] = {.lex_state = 23, .external_lex_state = 5}, - [1285] = {.lex_state = 23, .external_lex_state = 5}, - [1286] = {.lex_state = 23, .external_lex_state = 5}, - [1287] = {.lex_state = 23, .external_lex_state = 5}, + [1128] = {.lex_state = 3, .external_lex_state = 5}, + [1129] = {.lex_state = 3, .external_lex_state = 5}, + [1130] = {.lex_state = 3, .external_lex_state = 5}, + [1131] = {.lex_state = 3, .external_lex_state = 5}, + [1132] = {.lex_state = 3, .external_lex_state = 5}, + [1133] = {.lex_state = 3, .external_lex_state = 5}, + [1134] = {.lex_state = 48, .external_lex_state = 20}, + [1135] = {.lex_state = 52, .external_lex_state = 20}, + [1136] = {.lex_state = 52, .external_lex_state = 20}, + [1137] = {.lex_state = 47, .external_lex_state = 13}, + [1138] = {.lex_state = 47, .external_lex_state = 13}, + [1139] = {.lex_state = 47, .external_lex_state = 13}, + [1140] = {.lex_state = 48, .external_lex_state = 10}, + [1141] = {.lex_state = 48, .external_lex_state = 10}, + [1142] = {.lex_state = 52, .external_lex_state = 20}, + [1143] = {.lex_state = 47, .external_lex_state = 13}, + [1144] = {.lex_state = 47, .external_lex_state = 13}, + [1145] = {.lex_state = 47}, + [1146] = {.lex_state = 47, .external_lex_state = 13}, + [1147] = {.lex_state = 52, .external_lex_state = 20}, + [1148] = {.lex_state = 52, .external_lex_state = 20}, + [1149] = {.lex_state = 47, .external_lex_state = 13}, + [1150] = {.lex_state = 52, .external_lex_state = 20}, + [1151] = {.lex_state = 38, .external_lex_state = 10}, + [1152] = {.lex_state = 52, .external_lex_state = 20}, + [1153] = {.lex_state = 52, .external_lex_state = 20}, + [1154] = {.lex_state = 52, .external_lex_state = 20}, + [1155] = {.lex_state = 47, .external_lex_state = 13}, + [1156] = {.lex_state = 52, .external_lex_state = 20}, + [1157] = {.lex_state = 52, .external_lex_state = 20}, + [1158] = {.lex_state = 52, .external_lex_state = 20}, + [1159] = {.lex_state = 52, .external_lex_state = 20}, + [1160] = {.lex_state = 52, .external_lex_state = 20}, + [1161] = {.lex_state = 52, .external_lex_state = 20}, + [1162] = {.lex_state = 52, .external_lex_state = 20}, + [1163] = {.lex_state = 52, .external_lex_state = 20}, + [1164] = {.lex_state = 52, .external_lex_state = 20}, + [1165] = {.lex_state = 52, .external_lex_state = 20}, + [1166] = {.lex_state = 47, .external_lex_state = 13}, + [1167] = {.lex_state = 47, .external_lex_state = 13}, + [1168] = {.lex_state = 47, .external_lex_state = 13}, + [1169] = {.lex_state = 23, .external_lex_state = 11}, + [1170] = {.lex_state = 23, .external_lex_state = 11}, + [1171] = {.lex_state = 23, .external_lex_state = 11}, + [1172] = {.lex_state = 47}, + [1173] = {.lex_state = 47}, + [1174] = {.lex_state = 47, .external_lex_state = 13}, + [1175] = {.lex_state = 23, .external_lex_state = 11}, + [1176] = {.lex_state = 23, .external_lex_state = 11}, + [1177] = {.lex_state = 47}, + [1178] = {.lex_state = 23, .external_lex_state = 11}, + [1179] = {.lex_state = 47, .external_lex_state = 13}, + [1180] = {.lex_state = 47, .external_lex_state = 13}, + [1181] = {.lex_state = 23, .external_lex_state = 11}, + [1182] = {.lex_state = 47, .external_lex_state = 13}, + [1183] = {.lex_state = 33}, + [1184] = {.lex_state = 47, .external_lex_state = 13}, + [1185] = {.lex_state = 47, .external_lex_state = 13}, + [1186] = {.lex_state = 47, .external_lex_state = 13}, + [1187] = {.lex_state = 23, .external_lex_state = 11}, + [1188] = {.lex_state = 47, .external_lex_state = 13}, + [1189] = {.lex_state = 47, .external_lex_state = 13}, + [1190] = {.lex_state = 47, .external_lex_state = 13}, + [1191] = {.lex_state = 47, .external_lex_state = 13}, + [1192] = {.lex_state = 47, .external_lex_state = 13}, + [1193] = {.lex_state = 47, .external_lex_state = 13}, + [1194] = {.lex_state = 47, .external_lex_state = 13}, + [1195] = {.lex_state = 47, .external_lex_state = 13}, + [1196] = {.lex_state = 47, .external_lex_state = 13}, + [1197] = {.lex_state = 47, .external_lex_state = 13}, + [1198] = {.lex_state = 23, .external_lex_state = 11}, + [1199] = {.lex_state = 23, .external_lex_state = 11}, + [1200] = {.lex_state = 23, .external_lex_state = 11}, + [1201] = {.lex_state = 24, .external_lex_state = 5}, + [1202] = {.lex_state = 24, .external_lex_state = 5}, + [1203] = {.lex_state = 24, .external_lex_state = 5}, + [1204] = {.lex_state = 23, .external_lex_state = 12}, + [1205] = {.lex_state = 23, .external_lex_state = 12}, + [1206] = {.lex_state = 23, .external_lex_state = 11}, + [1207] = {.lex_state = 24, .external_lex_state = 5}, + [1208] = {.lex_state = 24, .external_lex_state = 5}, + [1209] = {.lex_state = 47}, + [1210] = {.lex_state = 24, .external_lex_state = 5}, + [1211] = {.lex_state = 23, .external_lex_state = 11}, + [1212] = {.lex_state = 23, .external_lex_state = 11}, + [1213] = {.lex_state = 24, .external_lex_state = 5}, + [1214] = {.lex_state = 23, .external_lex_state = 11}, + [1215] = {.lex_state = 28, .external_lex_state = 12}, + [1216] = {.lex_state = 23, .external_lex_state = 11}, + [1217] = {.lex_state = 23, .external_lex_state = 11}, + [1218] = {.lex_state = 23, .external_lex_state = 11}, + [1219] = {.lex_state = 24, .external_lex_state = 5}, + [1220] = {.lex_state = 23, .external_lex_state = 11}, + [1221] = {.lex_state = 23, .external_lex_state = 11}, + [1222] = {.lex_state = 23, .external_lex_state = 11}, + [1223] = {.lex_state = 23, .external_lex_state = 11}, + [1224] = {.lex_state = 23, .external_lex_state = 11}, + [1225] = {.lex_state = 23, .external_lex_state = 11}, + [1226] = {.lex_state = 23, .external_lex_state = 11}, + [1227] = {.lex_state = 23, .external_lex_state = 11}, + [1228] = {.lex_state = 23, .external_lex_state = 11}, + [1229] = {.lex_state = 23, .external_lex_state = 11}, + [1230] = {.lex_state = 24, .external_lex_state = 5}, + [1231] = {.lex_state = 9, .external_lex_state = 24}, + [1232] = {.lex_state = 9, .external_lex_state = 24}, + [1233] = {.lex_state = 25, .external_lex_state = 9}, + [1234] = {.lex_state = 25, .external_lex_state = 9}, + [1235] = {.lex_state = 25, .external_lex_state = 9}, + [1236] = {.lex_state = 24, .external_lex_state = 4}, + [1237] = {.lex_state = 24, .external_lex_state = 4}, + [1238] = {.lex_state = 9, .external_lex_state = 24}, + [1239] = {.lex_state = 25, .external_lex_state = 9}, + [1240] = {.lex_state = 25, .external_lex_state = 9}, + [1241] = {.lex_state = 47}, + [1242] = {.lex_state = 25, .external_lex_state = 9}, + [1243] = {.lex_state = 9, .external_lex_state = 24}, + [1244] = {.lex_state = 9, .external_lex_state = 24}, + [1245] = {.lex_state = 25, .external_lex_state = 9}, + [1246] = {.lex_state = 9, .external_lex_state = 24}, + [1247] = {.lex_state = 16, .external_lex_state = 12}, + [1248] = {.lex_state = 9, .external_lex_state = 24}, + [1249] = {.lex_state = 9, .external_lex_state = 24}, + [1250] = {.lex_state = 9, .external_lex_state = 24}, + [1251] = {.lex_state = 25, .external_lex_state = 9}, + [1252] = {.lex_state = 9, .external_lex_state = 24}, + [1253] = {.lex_state = 9, .external_lex_state = 24}, + [1254] = {.lex_state = 9, .external_lex_state = 24}, + [1255] = {.lex_state = 9, .external_lex_state = 24}, + [1256] = {.lex_state = 9, .external_lex_state = 24}, + [1257] = {.lex_state = 9, .external_lex_state = 24}, + [1258] = {.lex_state = 9, .external_lex_state = 24}, + [1259] = {.lex_state = 9, .external_lex_state = 24}, + [1260] = {.lex_state = 9, .external_lex_state = 24}, + [1261] = {.lex_state = 9, .external_lex_state = 24}, + [1262] = {.lex_state = 25, .external_lex_state = 9}, + [1263] = {.lex_state = 24, .external_lex_state = 5}, + [1264] = {.lex_state = 24, .external_lex_state = 5}, + [1265] = {.lex_state = 25, .external_lex_state = 5}, + [1266] = {.lex_state = 25, .external_lex_state = 5}, + [1267] = {.lex_state = 25, .external_lex_state = 5}, + [1268] = {.lex_state = 25, .external_lex_state = 3}, + [1269] = {.lex_state = 25, .external_lex_state = 3}, + [1270] = {.lex_state = 24, .external_lex_state = 5}, + [1271] = {.lex_state = 25, .external_lex_state = 5}, + [1272] = {.lex_state = 25, .external_lex_state = 5}, + [1273] = {.lex_state = 47}, + [1274] = {.lex_state = 25, .external_lex_state = 5}, + [1275] = {.lex_state = 24, .external_lex_state = 5}, + [1276] = {.lex_state = 24, .external_lex_state = 5}, + [1277] = {.lex_state = 25, .external_lex_state = 5}, + [1278] = {.lex_state = 24, .external_lex_state = 5}, + [1279] = {.lex_state = 29, .external_lex_state = 4}, + [1280] = {.lex_state = 24, .external_lex_state = 5}, + [1281] = {.lex_state = 24, .external_lex_state = 5}, + [1282] = {.lex_state = 24, .external_lex_state = 5}, + [1283] = {.lex_state = 25, .external_lex_state = 5}, + [1284] = {.lex_state = 24, .external_lex_state = 5}, + [1285] = {.lex_state = 24, .external_lex_state = 5}, + [1286] = {.lex_state = 24, .external_lex_state = 5}, + [1287] = {.lex_state = 24, .external_lex_state = 5}, [1288] = {.lex_state = 24, .external_lex_state = 5}, - [1289] = {.lex_state = 24, .external_lex_state = 9}, - [1290] = {.lex_state = 24, .external_lex_state = 9}, - [1291] = {.lex_state = 25, .external_lex_state = 9}, - [1292] = {.lex_state = 25, .external_lex_state = 9}, - [1293] = {.lex_state = 25, .external_lex_state = 9}, - [1294] = {.lex_state = 24, .external_lex_state = 4}, - [1295] = {.lex_state = 24, .external_lex_state = 4}, - [1296] = {.lex_state = 24, .external_lex_state = 9}, - [1297] = {.lex_state = 25, .external_lex_state = 9}, - [1298] = {.lex_state = 25, .external_lex_state = 9}, - [1299] = {.lex_state = 46}, - [1300] = {.lex_state = 25, .external_lex_state = 9}, - [1301] = {.lex_state = 24, .external_lex_state = 9}, - [1302] = {.lex_state = 24, .external_lex_state = 9}, - [1303] = {.lex_state = 25, .external_lex_state = 9}, - [1304] = {.lex_state = 24, .external_lex_state = 9}, - [1305] = {.lex_state = 29, .external_lex_state = 4}, - [1306] = {.lex_state = 24, .external_lex_state = 9}, - [1307] = {.lex_state = 24, .external_lex_state = 9}, - [1308] = {.lex_state = 24, .external_lex_state = 9}, - [1309] = {.lex_state = 25, .external_lex_state = 9}, - [1310] = {.lex_state = 24, .external_lex_state = 9}, - [1311] = {.lex_state = 24, .external_lex_state = 9}, - [1312] = {.lex_state = 24, .external_lex_state = 9}, - [1313] = {.lex_state = 24, .external_lex_state = 9}, - [1314] = {.lex_state = 24, .external_lex_state = 9}, - [1315] = {.lex_state = 24, .external_lex_state = 9}, - [1316] = {.lex_state = 24, .external_lex_state = 9}, - [1317] = {.lex_state = 24, .external_lex_state = 9}, - [1318] = {.lex_state = 24, .external_lex_state = 9}, - [1319] = {.lex_state = 24, .external_lex_state = 9}, + [1289] = {.lex_state = 24, .external_lex_state = 5}, + [1290] = {.lex_state = 24, .external_lex_state = 5}, + [1291] = {.lex_state = 24, .external_lex_state = 5}, + [1292] = {.lex_state = 24, .external_lex_state = 5}, + [1293] = {.lex_state = 24, .external_lex_state = 5}, + [1294] = {.lex_state = 25, .external_lex_state = 5}, + [1295] = {.lex_state = 25, .external_lex_state = 9}, + [1296] = {.lex_state = 25, .external_lex_state = 9}, + [1297] = {.lex_state = 26, .external_lex_state = 9}, + [1298] = {.lex_state = 26, .external_lex_state = 9}, + [1299] = {.lex_state = 26, .external_lex_state = 9}, + [1300] = {.lex_state = 25, .external_lex_state = 4}, + [1301] = {.lex_state = 25, .external_lex_state = 4}, + [1302] = {.lex_state = 25, .external_lex_state = 9}, + [1303] = {.lex_state = 26, .external_lex_state = 9}, + [1304] = {.lex_state = 26, .external_lex_state = 9}, + [1305] = {.lex_state = 47}, + [1306] = {.lex_state = 26, .external_lex_state = 9}, + [1307] = {.lex_state = 25, .external_lex_state = 9}, + [1308] = {.lex_state = 25, .external_lex_state = 9}, + [1309] = {.lex_state = 26, .external_lex_state = 9}, + [1310] = {.lex_state = 25, .external_lex_state = 9}, + [1311] = {.lex_state = 30, .external_lex_state = 3}, + [1312] = {.lex_state = 25, .external_lex_state = 9}, + [1313] = {.lex_state = 25, .external_lex_state = 9}, + [1314] = {.lex_state = 25, .external_lex_state = 9}, + [1315] = {.lex_state = 26, .external_lex_state = 9}, + [1316] = {.lex_state = 25, .external_lex_state = 9}, + [1317] = {.lex_state = 25, .external_lex_state = 9}, + [1318] = {.lex_state = 25, .external_lex_state = 9}, + [1319] = {.lex_state = 25, .external_lex_state = 9}, [1320] = {.lex_state = 25, .external_lex_state = 9}, - [1321] = {.lex_state = 24, .external_lex_state = 5}, - [1322] = {.lex_state = 24, .external_lex_state = 5}, - [1323] = {.lex_state = 25, .external_lex_state = 3}, - [1324] = {.lex_state = 25, .external_lex_state = 3}, - [1325] = {.lex_state = 24, .external_lex_state = 5}, - [1326] = {.lex_state = 24, .external_lex_state = 5}, - [1327] = {.lex_state = 24, .external_lex_state = 5}, - [1328] = {.lex_state = 24, .external_lex_state = 5}, - [1329] = {.lex_state = 29, .external_lex_state = 3}, - [1330] = {.lex_state = 24, .external_lex_state = 5}, - [1331] = {.lex_state = 24, .external_lex_state = 5}, - [1332] = {.lex_state = 24, .external_lex_state = 5}, - [1333] = {.lex_state = 24, .external_lex_state = 5}, - [1334] = {.lex_state = 24, .external_lex_state = 5}, - [1335] = {.lex_state = 24, .external_lex_state = 5}, - [1336] = {.lex_state = 24, .external_lex_state = 5}, - [1337] = {.lex_state = 24, .external_lex_state = 5}, - [1338] = {.lex_state = 24, .external_lex_state = 5}, - [1339] = {.lex_state = 24, .external_lex_state = 5}, - [1340] = {.lex_state = 24, .external_lex_state = 5}, - [1341] = {.lex_state = 24, .external_lex_state = 5}, - [1342] = {.lex_state = 24, .external_lex_state = 5}, - [1343] = {.lex_state = 25, .external_lex_state = 9}, - [1344] = {.lex_state = 25, .external_lex_state = 9}, - [1345] = {.lex_state = 25, .external_lex_state = 9}, - [1346] = {.lex_state = 25, .external_lex_state = 9}, - [1347] = {.lex_state = 25, .external_lex_state = 9}, - [1348] = {.lex_state = 25, .external_lex_state = 9}, - [1349] = {.lex_state = 14, .external_lex_state = 4}, - [1350] = {.lex_state = 25, .external_lex_state = 9}, - [1351] = {.lex_state = 25, .external_lex_state = 9}, - [1352] = {.lex_state = 25, .external_lex_state = 9}, - [1353] = {.lex_state = 25, .external_lex_state = 9}, - [1354] = {.lex_state = 25, .external_lex_state = 9}, - [1355] = {.lex_state = 25, .external_lex_state = 9}, - [1356] = {.lex_state = 25, .external_lex_state = 9}, - [1357] = {.lex_state = 25, .external_lex_state = 9}, - [1358] = {.lex_state = 25, .external_lex_state = 9}, - [1359] = {.lex_state = 25, .external_lex_state = 9}, - [1360] = {.lex_state = 25, .external_lex_state = 9}, - [1361] = {.lex_state = 25, .external_lex_state = 9}, - [1362] = {.lex_state = 25, .external_lex_state = 9}, - [1363] = {.lex_state = 46}, - [1364] = {.lex_state = 37}, - [1365] = {.lex_state = 35, .external_lex_state = 7}, - [1366] = {.lex_state = 50}, - [1367] = {.lex_state = 9}, - [1368] = {.lex_state = 9}, - [1369] = {.lex_state = 9}, - [1370] = {.lex_state = 46}, - [1371] = {.lex_state = 43, .external_lex_state = 10}, - [1372] = {.lex_state = 43, .external_lex_state = 10}, + [1321] = {.lex_state = 25, .external_lex_state = 9}, + [1322] = {.lex_state = 25, .external_lex_state = 9}, + [1323] = {.lex_state = 25, .external_lex_state = 9}, + [1324] = {.lex_state = 25, .external_lex_state = 9}, + [1325] = {.lex_state = 25, .external_lex_state = 9}, + [1326] = {.lex_state = 26, .external_lex_state = 9}, + [1327] = {.lex_state = 25, .external_lex_state = 5}, + [1328] = {.lex_state = 25, .external_lex_state = 5}, + [1329] = {.lex_state = 26, .external_lex_state = 3}, + [1330] = {.lex_state = 26, .external_lex_state = 3}, + [1331] = {.lex_state = 25, .external_lex_state = 5}, + [1332] = {.lex_state = 25, .external_lex_state = 5}, + [1333] = {.lex_state = 25, .external_lex_state = 5}, + [1334] = {.lex_state = 25, .external_lex_state = 5}, + [1335] = {.lex_state = 30, .external_lex_state = 4}, + [1336] = {.lex_state = 25, .external_lex_state = 5}, + [1337] = {.lex_state = 25, .external_lex_state = 5}, + [1338] = {.lex_state = 25, .external_lex_state = 5}, + [1339] = {.lex_state = 25, .external_lex_state = 5}, + [1340] = {.lex_state = 25, .external_lex_state = 5}, + [1341] = {.lex_state = 25, .external_lex_state = 5}, + [1342] = {.lex_state = 25, .external_lex_state = 5}, + [1343] = {.lex_state = 25, .external_lex_state = 5}, + [1344] = {.lex_state = 25, .external_lex_state = 5}, + [1345] = {.lex_state = 25, .external_lex_state = 5}, + [1346] = {.lex_state = 25, .external_lex_state = 5}, + [1347] = {.lex_state = 25, .external_lex_state = 5}, + [1348] = {.lex_state = 25, .external_lex_state = 5}, + [1349] = {.lex_state = 26, .external_lex_state = 9}, + [1350] = {.lex_state = 26, .external_lex_state = 9}, + [1351] = {.lex_state = 26, .external_lex_state = 9}, + [1352] = {.lex_state = 26, .external_lex_state = 9}, + [1353] = {.lex_state = 26, .external_lex_state = 9}, + [1354] = {.lex_state = 26, .external_lex_state = 9}, + [1355] = {.lex_state = 30, .external_lex_state = 3}, + [1356] = {.lex_state = 26, .external_lex_state = 9}, + [1357] = {.lex_state = 26, .external_lex_state = 9}, + [1358] = {.lex_state = 26, .external_lex_state = 9}, + [1359] = {.lex_state = 26, .external_lex_state = 9}, + [1360] = {.lex_state = 26, .external_lex_state = 9}, + [1361] = {.lex_state = 26, .external_lex_state = 9}, + [1362] = {.lex_state = 26, .external_lex_state = 9}, + [1363] = {.lex_state = 26, .external_lex_state = 9}, + [1364] = {.lex_state = 26, .external_lex_state = 9}, + [1365] = {.lex_state = 26, .external_lex_state = 9}, + [1366] = {.lex_state = 26, .external_lex_state = 9}, + [1367] = {.lex_state = 26, .external_lex_state = 9}, + [1368] = {.lex_state = 26, .external_lex_state = 9}, + [1369] = {.lex_state = 14, .external_lex_state = 4}, + [1370] = {.lex_state = 47}, + [1371] = {.lex_state = 38}, + [1372] = {.lex_state = 36, .external_lex_state = 7}, [1373] = {.lex_state = 51}, - [1374] = {.lex_state = 3, .external_lex_state = 4}, - [1375] = {.lex_state = 6, .external_lex_state = 3}, - [1376] = {.lex_state = 35, .external_lex_state = 7}, - [1377] = {.lex_state = 42}, - [1378] = {.lex_state = 46, .external_lex_state = 14}, - [1379] = {.lex_state = 46}, - [1380] = {.lex_state = 39}, - [1381] = {.lex_state = 50}, - [1382] = {.lex_state = 46, .external_lex_state = 2}, - [1383] = {.lex_state = 9}, - [1384] = {.lex_state = 51}, - [1385] = {.lex_state = 42, .external_lex_state = 15}, - [1386] = {.lex_state = 40}, - [1387] = {.lex_state = 9, .external_lex_state = 17}, - [1388] = {.lex_state = 46}, - [1389] = {.lex_state = 44, .external_lex_state = 20}, - [1390] = {.lex_state = 44, .external_lex_state = 10}, - [1391] = {.lex_state = 43, .external_lex_state = 10}, - [1392] = {.lex_state = 43, .external_lex_state = 10}, - [1393] = {.lex_state = 47, .external_lex_state = 10}, - [1394] = {.lex_state = 44, .external_lex_state = 20}, - [1395] = {.lex_state = 44, .external_lex_state = 10}, - [1396] = {.lex_state = 9}, - [1397] = {.lex_state = 9, .external_lex_state = 2}, - [1398] = {.lex_state = 41}, - [1399] = {.lex_state = 46}, - [1400] = {.lex_state = 51, .external_lex_state = 22}, - [1401] = {.lex_state = 42, .external_lex_state = 22}, - [1402] = {.lex_state = 51, .external_lex_state = 22}, - [1403] = {.lex_state = 39}, - [1404] = {.lex_state = 51}, - [1405] = {.lex_state = 9, .external_lex_state = 2}, - [1406] = {.lex_state = 9, .external_lex_state = 23}, - [1407] = {.lex_state = 44, .external_lex_state = 10}, - [1408] = {.lex_state = 44, .external_lex_state = 10}, - [1409] = {.lex_state = 44, .external_lex_state = 20}, - [1410] = {.lex_state = 47, .external_lex_state = 10}, - [1411] = {.lex_state = 44, .external_lex_state = 20}, - [1412] = {.lex_state = 44, .external_lex_state = 10}, - [1413] = {.lex_state = 51, .external_lex_state = 19}, - [1414] = {.lex_state = 47, .external_lex_state = 10}, - [1415] = {.lex_state = 51, .external_lex_state = 10}, - [1416] = {.lex_state = 44, .external_lex_state = 10}, - [1417] = {.lex_state = 44, .external_lex_state = 10}, - [1418] = {.lex_state = 9}, - [1419] = {.lex_state = 4, .external_lex_state = 12}, - [1420] = {.lex_state = 51}, - [1421] = {.lex_state = 51}, - [1422] = {.lex_state = 9, .external_lex_state = 2}, - [1423] = {.lex_state = 49}, - [1424] = {.lex_state = 49}, - [1425] = {.lex_state = 46}, - [1426] = {.lex_state = 48, .external_lex_state = 15}, - [1427] = {.lex_state = 51, .external_lex_state = 15}, - [1428] = {.lex_state = 51, .external_lex_state = 15}, + [1374] = {.lex_state = 9}, + [1375] = {.lex_state = 9}, + [1376] = {.lex_state = 9}, + [1377] = {.lex_state = 47}, + [1378] = {.lex_state = 44, .external_lex_state = 10}, + [1379] = {.lex_state = 44, .external_lex_state = 10}, + [1380] = {.lex_state = 52}, + [1381] = {.lex_state = 3, .external_lex_state = 4}, + [1382] = {.lex_state = 6, .external_lex_state = 3}, + [1383] = {.lex_state = 36, .external_lex_state = 7}, + [1384] = {.lex_state = 43}, + [1385] = {.lex_state = 47, .external_lex_state = 14}, + [1386] = {.lex_state = 47}, + [1387] = {.lex_state = 40}, + [1388] = {.lex_state = 51}, + [1389] = {.lex_state = 47, .external_lex_state = 2}, + [1390] = {.lex_state = 9}, + [1391] = {.lex_state = 52}, + [1392] = {.lex_state = 43, .external_lex_state = 16}, + [1393] = {.lex_state = 41}, + [1394] = {.lex_state = 9, .external_lex_state = 18}, + [1395] = {.lex_state = 47}, + [1396] = {.lex_state = 45, .external_lex_state = 21}, + [1397] = {.lex_state = 45, .external_lex_state = 10}, + [1398] = {.lex_state = 44, .external_lex_state = 10}, + [1399] = {.lex_state = 44, .external_lex_state = 10}, + [1400] = {.lex_state = 48, .external_lex_state = 10}, + [1401] = {.lex_state = 45, .external_lex_state = 21}, + [1402] = {.lex_state = 45, .external_lex_state = 10}, + [1403] = {.lex_state = 9}, + [1404] = {.lex_state = 9, .external_lex_state = 2}, + [1405] = {.lex_state = 42}, + [1406] = {.lex_state = 47}, + [1407] = {.lex_state = 52, .external_lex_state = 23}, + [1408] = {.lex_state = 43, .external_lex_state = 23}, + [1409] = {.lex_state = 52, .external_lex_state = 23}, + [1410] = {.lex_state = 40}, + [1411] = {.lex_state = 52}, + [1412] = {.lex_state = 9, .external_lex_state = 2}, + [1413] = {.lex_state = 9, .external_lex_state = 24}, + [1414] = {.lex_state = 45, .external_lex_state = 10}, + [1415] = {.lex_state = 45, .external_lex_state = 10}, + [1416] = {.lex_state = 45, .external_lex_state = 21}, + [1417] = {.lex_state = 48, .external_lex_state = 10}, + [1418] = {.lex_state = 45, .external_lex_state = 21}, + [1419] = {.lex_state = 45, .external_lex_state = 10}, + [1420] = {.lex_state = 52, .external_lex_state = 20}, + [1421] = {.lex_state = 48, .external_lex_state = 10}, + [1422] = {.lex_state = 52, .external_lex_state = 10}, + [1423] = {.lex_state = 45, .external_lex_state = 10}, + [1424] = {.lex_state = 45, .external_lex_state = 10}, + [1425] = {.lex_state = 9}, + [1426] = {.lex_state = 4, .external_lex_state = 12}, + [1427] = {.lex_state = 52}, + [1428] = {.lex_state = 52}, [1429] = {.lex_state = 9, .external_lex_state = 2}, - [1430] = {.lex_state = 9, .external_lex_state = 23}, - [1431] = {.lex_state = 44, .external_lex_state = 10}, - [1432] = {.lex_state = 44, .external_lex_state = 10}, - [1433] = {.lex_state = 51, .external_lex_state = 19}, - [1434] = {.lex_state = 47, .external_lex_state = 10}, - [1435] = {.lex_state = 51, .external_lex_state = 10}, - [1436] = {.lex_state = 44, .external_lex_state = 10}, - [1437] = {.lex_state = 44, .external_lex_state = 10}, - [1438] = {.lex_state = 44, .external_lex_state = 10}, - [1439] = {.lex_state = 51}, - [1440] = {.lex_state = 51}, - [1441] = {.lex_state = 49}, - [1442] = {.lex_state = 42}, - [1443] = {.lex_state = 49}, - [1444] = {.lex_state = 42}, - [1445] = {.lex_state = 51}, - [1446] = {.lex_state = 51}, - [1447] = {.lex_state = 44, .external_lex_state = 10}, - [1448] = {.lex_state = 44, .external_lex_state = 10}, - [1449] = {.lex_state = 51}, - [1450] = {.lex_state = 42}, - [1451] = {.lex_state = 42}, - [1452] = {.lex_state = 51}, - [1453] = {.lex_state = 51}, - [1454] = {.lex_state = 42}, - [1455] = {.lex_state = 42}, - [1456] = {.lex_state = 51}, - [1457] = {.lex_state = 51}, - [1458] = {.lex_state = 51}, - [1459] = {.lex_state = 51}, - [1460] = {.lex_state = 51}, - [1461] = {.lex_state = 45, .external_lex_state = 2}, - [1462] = {.lex_state = 3, .external_lex_state = 4}, - [1463] = {.lex_state = 9, .external_lex_state = 2}, - [1464] = {.lex_state = 46, .external_lex_state = 2}, - [1465] = {.lex_state = 9, .external_lex_state = 16}, - [1466] = {.lex_state = 4, .external_lex_state = 12}, - [1467] = {.lex_state = 9, .external_lex_state = 16}, - [1468] = {.lex_state = 4, .external_lex_state = 12}, - [1469] = {.lex_state = 46}, - [1470] = {.lex_state = 46}, - [1471] = {.lex_state = 46}, - [1472] = {.lex_state = 37}, - [1473] = {.lex_state = 50}, - [1474] = {.lex_state = 9}, - [1475] = {.lex_state = 9}, - [1476] = {.lex_state = 46}, - [1477] = {.lex_state = 43, .external_lex_state = 10}, - [1478] = {.lex_state = 43, .external_lex_state = 10}, - [1479] = {.lex_state = 46, .external_lex_state = 14}, - [1480] = {.lex_state = 46}, - [1481] = {.lex_state = 39}, - [1482] = {.lex_state = 50}, - [1483] = {.lex_state = 46, .external_lex_state = 2}, - [1484] = {.lex_state = 9}, - [1485] = {.lex_state = 44, .external_lex_state = 20}, + [1430] = {.lex_state = 50}, + [1431] = {.lex_state = 50}, + [1432] = {.lex_state = 47}, + [1433] = {.lex_state = 49, .external_lex_state = 16}, + [1434] = {.lex_state = 52, .external_lex_state = 16}, + [1435] = {.lex_state = 52, .external_lex_state = 16}, + [1436] = {.lex_state = 9, .external_lex_state = 2}, + [1437] = {.lex_state = 9, .external_lex_state = 24}, + [1438] = {.lex_state = 45, .external_lex_state = 10}, + [1439] = {.lex_state = 45, .external_lex_state = 10}, + [1440] = {.lex_state = 52, .external_lex_state = 20}, + [1441] = {.lex_state = 48, .external_lex_state = 10}, + [1442] = {.lex_state = 52, .external_lex_state = 10}, + [1443] = {.lex_state = 45, .external_lex_state = 10}, + [1444] = {.lex_state = 45, .external_lex_state = 10}, + [1445] = {.lex_state = 45, .external_lex_state = 10}, + [1446] = {.lex_state = 52}, + [1447] = {.lex_state = 52}, + [1448] = {.lex_state = 50}, + [1449] = {.lex_state = 43}, + [1450] = {.lex_state = 50}, + [1451] = {.lex_state = 43}, + [1452] = {.lex_state = 52}, + [1453] = {.lex_state = 52}, + [1454] = {.lex_state = 45, .external_lex_state = 10}, + [1455] = {.lex_state = 45, .external_lex_state = 10}, + [1456] = {.lex_state = 52}, + [1457] = {.lex_state = 43}, + [1458] = {.lex_state = 43}, + [1459] = {.lex_state = 52}, + [1460] = {.lex_state = 52}, + [1461] = {.lex_state = 43}, + [1462] = {.lex_state = 43}, + [1463] = {.lex_state = 52}, + [1464] = {.lex_state = 52}, + [1465] = {.lex_state = 52}, + [1466] = {.lex_state = 52}, + [1467] = {.lex_state = 52}, + [1468] = {.lex_state = 46, .external_lex_state = 2}, + [1469] = {.lex_state = 3, .external_lex_state = 4}, + [1470] = {.lex_state = 9, .external_lex_state = 2}, + [1471] = {.lex_state = 47, .external_lex_state = 2}, + [1472] = {.lex_state = 9, .external_lex_state = 17}, + [1473] = {.lex_state = 4, .external_lex_state = 12}, + [1474] = {.lex_state = 9, .external_lex_state = 17}, + [1475] = {.lex_state = 4, .external_lex_state = 12}, + [1476] = {.lex_state = 47}, + [1477] = {.lex_state = 47}, + [1478] = {.lex_state = 47}, + [1479] = {.lex_state = 47}, + [1480] = {.lex_state = 38}, + [1481] = {.lex_state = 51}, + [1482] = {.lex_state = 9}, + [1483] = {.lex_state = 9}, + [1484] = {.lex_state = 47}, + [1485] = {.lex_state = 44, .external_lex_state = 10}, [1486] = {.lex_state = 44, .external_lex_state = 10}, - [1487] = {.lex_state = 43, .external_lex_state = 10}, - [1488] = {.lex_state = 43, .external_lex_state = 10}, - [1489] = {.lex_state = 47, .external_lex_state = 10}, - [1490] = {.lex_state = 44, .external_lex_state = 20}, - [1491] = {.lex_state = 44, .external_lex_state = 10}, - [1492] = {.lex_state = 41}, - [1493] = {.lex_state = 46}, - [1494] = {.lex_state = 39}, + [1487] = {.lex_state = 47, .external_lex_state = 14}, + [1488] = {.lex_state = 47}, + [1489] = {.lex_state = 40}, + [1490] = {.lex_state = 51}, + [1491] = {.lex_state = 47, .external_lex_state = 2}, + [1492] = {.lex_state = 9}, + [1493] = {.lex_state = 45, .external_lex_state = 21}, + [1494] = {.lex_state = 45, .external_lex_state = 10}, [1495] = {.lex_state = 44, .external_lex_state = 10}, [1496] = {.lex_state = 44, .external_lex_state = 10}, - [1497] = {.lex_state = 44, .external_lex_state = 20}, - [1498] = {.lex_state = 47, .external_lex_state = 10}, - [1499] = {.lex_state = 44, .external_lex_state = 20}, - [1500] = {.lex_state = 44, .external_lex_state = 10}, - [1501] = {.lex_state = 51, .external_lex_state = 19}, - [1502] = {.lex_state = 47, .external_lex_state = 10}, - [1503] = {.lex_state = 51, .external_lex_state = 10}, - [1504] = {.lex_state = 44, .external_lex_state = 10}, - [1505] = {.lex_state = 44, .external_lex_state = 10}, - [1506] = {.lex_state = 46}, - [1507] = {.lex_state = 44, .external_lex_state = 10}, - [1508] = {.lex_state = 44, .external_lex_state = 10}, - [1509] = {.lex_state = 51, .external_lex_state = 19}, - [1510] = {.lex_state = 47, .external_lex_state = 10}, - [1511] = {.lex_state = 51, .external_lex_state = 10}, - [1512] = {.lex_state = 44, .external_lex_state = 10}, - [1513] = {.lex_state = 44, .external_lex_state = 10}, - [1514] = {.lex_state = 44, .external_lex_state = 10}, - [1515] = {.lex_state = 44, .external_lex_state = 10}, - [1516] = {.lex_state = 44, .external_lex_state = 10}, - [1517] = {.lex_state = 37}, - [1518] = {.lex_state = 50}, - [1519] = {.lex_state = 9}, - [1520] = {.lex_state = 9}, - [1521] = {.lex_state = 46}, - [1522] = {.lex_state = 43, .external_lex_state = 10}, - [1523] = {.lex_state = 43, .external_lex_state = 10}, - [1524] = {.lex_state = 46, .external_lex_state = 14}, - [1525] = {.lex_state = 39}, - [1526] = {.lex_state = 50}, - [1527] = {.lex_state = 46, .external_lex_state = 2}, + [1497] = {.lex_state = 48, .external_lex_state = 10}, + [1498] = {.lex_state = 45, .external_lex_state = 21}, + [1499] = {.lex_state = 45, .external_lex_state = 10}, + [1500] = {.lex_state = 42}, + [1501] = {.lex_state = 47}, + [1502] = {.lex_state = 40}, + [1503] = {.lex_state = 45, .external_lex_state = 10}, + [1504] = {.lex_state = 45, .external_lex_state = 10}, + [1505] = {.lex_state = 45, .external_lex_state = 21}, + [1506] = {.lex_state = 48, .external_lex_state = 10}, + [1507] = {.lex_state = 45, .external_lex_state = 21}, + [1508] = {.lex_state = 45, .external_lex_state = 10}, + [1509] = {.lex_state = 52, .external_lex_state = 20}, + [1510] = {.lex_state = 48, .external_lex_state = 10}, + [1511] = {.lex_state = 52, .external_lex_state = 10}, + [1512] = {.lex_state = 45, .external_lex_state = 10}, + [1513] = {.lex_state = 45, .external_lex_state = 10}, + [1514] = {.lex_state = 47}, + [1515] = {.lex_state = 45, .external_lex_state = 10}, + [1516] = {.lex_state = 45, .external_lex_state = 10}, + [1517] = {.lex_state = 52, .external_lex_state = 20}, + [1518] = {.lex_state = 48, .external_lex_state = 10}, + [1519] = {.lex_state = 52, .external_lex_state = 10}, + [1520] = {.lex_state = 45, .external_lex_state = 10}, + [1521] = {.lex_state = 45, .external_lex_state = 10}, + [1522] = {.lex_state = 45, .external_lex_state = 10}, + [1523] = {.lex_state = 45, .external_lex_state = 10}, + [1524] = {.lex_state = 45, .external_lex_state = 10}, + [1525] = {.lex_state = 38}, + [1526] = {.lex_state = 51}, + [1527] = {.lex_state = 9}, [1528] = {.lex_state = 9}, - [1529] = {.lex_state = 44, .external_lex_state = 20}, + [1529] = {.lex_state = 47}, [1530] = {.lex_state = 44, .external_lex_state = 10}, - [1531] = {.lex_state = 43, .external_lex_state = 10}, - [1532] = {.lex_state = 43, .external_lex_state = 10}, - [1533] = {.lex_state = 47, .external_lex_state = 10}, - [1534] = {.lex_state = 44, .external_lex_state = 20}, - [1535] = {.lex_state = 44, .external_lex_state = 10}, - [1536] = {.lex_state = 46}, - [1537] = {.lex_state = 39}, - [1538] = {.lex_state = 44, .external_lex_state = 10}, + [1531] = {.lex_state = 44, .external_lex_state = 10}, + [1532] = {.lex_state = 47, .external_lex_state = 14}, + [1533] = {.lex_state = 40}, + [1534] = {.lex_state = 51}, + [1535] = {.lex_state = 47, .external_lex_state = 2}, + [1536] = {.lex_state = 9}, + [1537] = {.lex_state = 45, .external_lex_state = 21}, + [1538] = {.lex_state = 45, .external_lex_state = 10}, [1539] = {.lex_state = 44, .external_lex_state = 10}, - [1540] = {.lex_state = 44, .external_lex_state = 20}, - [1541] = {.lex_state = 47, .external_lex_state = 10}, - [1542] = {.lex_state = 44, .external_lex_state = 20}, - [1543] = {.lex_state = 44, .external_lex_state = 10}, - [1544] = {.lex_state = 51, .external_lex_state = 19}, - [1545] = {.lex_state = 47, .external_lex_state = 10}, - [1546] = {.lex_state = 51, .external_lex_state = 10}, - [1547] = {.lex_state = 44, .external_lex_state = 10}, - [1548] = {.lex_state = 44, .external_lex_state = 10}, - [1549] = {.lex_state = 46}, - [1550] = {.lex_state = 44, .external_lex_state = 10}, - [1551] = {.lex_state = 44, .external_lex_state = 10}, - [1552] = {.lex_state = 51, .external_lex_state = 19}, - [1553] = {.lex_state = 47, .external_lex_state = 10}, - [1554] = {.lex_state = 51, .external_lex_state = 10}, - [1555] = {.lex_state = 44, .external_lex_state = 10}, - [1556] = {.lex_state = 44, .external_lex_state = 10}, - [1557] = {.lex_state = 44, .external_lex_state = 10}, - [1558] = {.lex_state = 44, .external_lex_state = 10}, - [1559] = {.lex_state = 44, .external_lex_state = 10}, - [1560] = {.lex_state = 37}, - [1561] = {.lex_state = 50}, - [1562] = {.lex_state = 9}, - [1563] = {.lex_state = 9}, - [1564] = {.lex_state = 46}, - [1565] = {.lex_state = 43, .external_lex_state = 10}, - [1566] = {.lex_state = 43, .external_lex_state = 10}, - [1567] = {.lex_state = 46, .external_lex_state = 14}, - [1568] = {.lex_state = 39}, - [1569] = {.lex_state = 50}, - [1570] = {.lex_state = 46, .external_lex_state = 2}, + [1540] = {.lex_state = 44, .external_lex_state = 10}, + [1541] = {.lex_state = 48, .external_lex_state = 10}, + [1542] = {.lex_state = 45, .external_lex_state = 21}, + [1543] = {.lex_state = 45, .external_lex_state = 10}, + [1544] = {.lex_state = 47}, + [1545] = {.lex_state = 40}, + [1546] = {.lex_state = 45, .external_lex_state = 10}, + [1547] = {.lex_state = 45, .external_lex_state = 10}, + [1548] = {.lex_state = 45, .external_lex_state = 21}, + [1549] = {.lex_state = 48, .external_lex_state = 10}, + [1550] = {.lex_state = 45, .external_lex_state = 21}, + [1551] = {.lex_state = 45, .external_lex_state = 10}, + [1552] = {.lex_state = 52, .external_lex_state = 20}, + [1553] = {.lex_state = 48, .external_lex_state = 10}, + [1554] = {.lex_state = 52, .external_lex_state = 10}, + [1555] = {.lex_state = 45, .external_lex_state = 10}, + [1556] = {.lex_state = 45, .external_lex_state = 10}, + [1557] = {.lex_state = 47}, + [1558] = {.lex_state = 45, .external_lex_state = 10}, + [1559] = {.lex_state = 45, .external_lex_state = 10}, + [1560] = {.lex_state = 52, .external_lex_state = 20}, + [1561] = {.lex_state = 48, .external_lex_state = 10}, + [1562] = {.lex_state = 52, .external_lex_state = 10}, + [1563] = {.lex_state = 45, .external_lex_state = 10}, + [1564] = {.lex_state = 45, .external_lex_state = 10}, + [1565] = {.lex_state = 45, .external_lex_state = 10}, + [1566] = {.lex_state = 45, .external_lex_state = 10}, + [1567] = {.lex_state = 45, .external_lex_state = 10}, + [1568] = {.lex_state = 38}, + [1569] = {.lex_state = 51}, + [1570] = {.lex_state = 9}, [1571] = {.lex_state = 9}, - [1572] = {.lex_state = 44, .external_lex_state = 20}, + [1572] = {.lex_state = 47}, [1573] = {.lex_state = 44, .external_lex_state = 10}, - [1574] = {.lex_state = 43, .external_lex_state = 10}, - [1575] = {.lex_state = 43, .external_lex_state = 10}, - [1576] = {.lex_state = 47, .external_lex_state = 10}, - [1577] = {.lex_state = 44, .external_lex_state = 20}, - [1578] = {.lex_state = 44, .external_lex_state = 10}, - [1579] = {.lex_state = 46}, - [1580] = {.lex_state = 39}, - [1581] = {.lex_state = 44, .external_lex_state = 10}, + [1574] = {.lex_state = 44, .external_lex_state = 10}, + [1575] = {.lex_state = 47, .external_lex_state = 14}, + [1576] = {.lex_state = 40}, + [1577] = {.lex_state = 51}, + [1578] = {.lex_state = 47, .external_lex_state = 2}, + [1579] = {.lex_state = 9}, + [1580] = {.lex_state = 45, .external_lex_state = 21}, + [1581] = {.lex_state = 45, .external_lex_state = 10}, [1582] = {.lex_state = 44, .external_lex_state = 10}, - [1583] = {.lex_state = 44, .external_lex_state = 20}, - [1584] = {.lex_state = 47, .external_lex_state = 10}, - [1585] = {.lex_state = 44, .external_lex_state = 20}, - [1586] = {.lex_state = 44, .external_lex_state = 10}, - [1587] = {.lex_state = 51, .external_lex_state = 19}, - [1588] = {.lex_state = 47, .external_lex_state = 10}, - [1589] = {.lex_state = 51, .external_lex_state = 10}, - [1590] = {.lex_state = 44, .external_lex_state = 10}, - [1591] = {.lex_state = 44, .external_lex_state = 10}, - [1592] = {.lex_state = 46}, - [1593] = {.lex_state = 44, .external_lex_state = 10}, - [1594] = {.lex_state = 44, .external_lex_state = 10}, - [1595] = {.lex_state = 51, .external_lex_state = 19}, - [1596] = {.lex_state = 47, .external_lex_state = 10}, - [1597] = {.lex_state = 51, .external_lex_state = 10}, - [1598] = {.lex_state = 44, .external_lex_state = 10}, - [1599] = {.lex_state = 44, .external_lex_state = 10}, - [1600] = {.lex_state = 44, .external_lex_state = 10}, - [1601] = {.lex_state = 44, .external_lex_state = 10}, - [1602] = {.lex_state = 44, .external_lex_state = 10}, - [1603] = {.lex_state = 37}, - [1604] = {.lex_state = 50}, - [1605] = {.lex_state = 9}, - [1606] = {.lex_state = 9}, - [1607] = {.lex_state = 46}, - [1608] = {.lex_state = 43, .external_lex_state = 10}, - [1609] = {.lex_state = 43, .external_lex_state = 10}, - [1610] = {.lex_state = 46, .external_lex_state = 14}, - [1611] = {.lex_state = 39}, - [1612] = {.lex_state = 50}, - [1613] = {.lex_state = 46, .external_lex_state = 2}, + [1583] = {.lex_state = 44, .external_lex_state = 10}, + [1584] = {.lex_state = 48, .external_lex_state = 10}, + [1585] = {.lex_state = 45, .external_lex_state = 21}, + [1586] = {.lex_state = 45, .external_lex_state = 10}, + [1587] = {.lex_state = 47}, + [1588] = {.lex_state = 40}, + [1589] = {.lex_state = 45, .external_lex_state = 10}, + [1590] = {.lex_state = 45, .external_lex_state = 10}, + [1591] = {.lex_state = 45, .external_lex_state = 21}, + [1592] = {.lex_state = 48, .external_lex_state = 10}, + [1593] = {.lex_state = 45, .external_lex_state = 21}, + [1594] = {.lex_state = 45, .external_lex_state = 10}, + [1595] = {.lex_state = 52, .external_lex_state = 20}, + [1596] = {.lex_state = 48, .external_lex_state = 10}, + [1597] = {.lex_state = 52, .external_lex_state = 10}, + [1598] = {.lex_state = 45, .external_lex_state = 10}, + [1599] = {.lex_state = 45, .external_lex_state = 10}, + [1600] = {.lex_state = 47}, + [1601] = {.lex_state = 45, .external_lex_state = 10}, + [1602] = {.lex_state = 45, .external_lex_state = 10}, + [1603] = {.lex_state = 52, .external_lex_state = 20}, + [1604] = {.lex_state = 48, .external_lex_state = 10}, + [1605] = {.lex_state = 52, .external_lex_state = 10}, + [1606] = {.lex_state = 45, .external_lex_state = 10}, + [1607] = {.lex_state = 45, .external_lex_state = 10}, + [1608] = {.lex_state = 45, .external_lex_state = 10}, + [1609] = {.lex_state = 45, .external_lex_state = 10}, + [1610] = {.lex_state = 45, .external_lex_state = 10}, + [1611] = {.lex_state = 38}, + [1612] = {.lex_state = 51}, + [1613] = {.lex_state = 9}, [1614] = {.lex_state = 9}, - [1615] = {.lex_state = 44, .external_lex_state = 20}, + [1615] = {.lex_state = 47}, [1616] = {.lex_state = 44, .external_lex_state = 10}, - [1617] = {.lex_state = 43, .external_lex_state = 10}, - [1618] = {.lex_state = 43, .external_lex_state = 10}, - [1619] = {.lex_state = 47, .external_lex_state = 10}, - [1620] = {.lex_state = 44, .external_lex_state = 20}, - [1621] = {.lex_state = 44, .external_lex_state = 10}, - [1622] = {.lex_state = 46}, - [1623] = {.lex_state = 39}, - [1624] = {.lex_state = 44, .external_lex_state = 10}, + [1617] = {.lex_state = 44, .external_lex_state = 10}, + [1618] = {.lex_state = 47, .external_lex_state = 14}, + [1619] = {.lex_state = 40}, + [1620] = {.lex_state = 51}, + [1621] = {.lex_state = 47, .external_lex_state = 2}, + [1622] = {.lex_state = 9}, + [1623] = {.lex_state = 45, .external_lex_state = 21}, + [1624] = {.lex_state = 45, .external_lex_state = 10}, [1625] = {.lex_state = 44, .external_lex_state = 10}, - [1626] = {.lex_state = 44, .external_lex_state = 20}, - [1627] = {.lex_state = 47, .external_lex_state = 10}, - [1628] = {.lex_state = 44, .external_lex_state = 20}, - [1629] = {.lex_state = 44, .external_lex_state = 10}, - [1630] = {.lex_state = 51, .external_lex_state = 19}, - [1631] = {.lex_state = 47, .external_lex_state = 10}, - [1632] = {.lex_state = 51, .external_lex_state = 10}, - [1633] = {.lex_state = 44, .external_lex_state = 10}, - [1634] = {.lex_state = 44, .external_lex_state = 10}, - [1635] = {.lex_state = 46}, - [1636] = {.lex_state = 44, .external_lex_state = 10}, - [1637] = {.lex_state = 44, .external_lex_state = 10}, - [1638] = {.lex_state = 51, .external_lex_state = 19}, - [1639] = {.lex_state = 47, .external_lex_state = 10}, - [1640] = {.lex_state = 51, .external_lex_state = 10}, - [1641] = {.lex_state = 44, .external_lex_state = 10}, - [1642] = {.lex_state = 44, .external_lex_state = 10}, - [1643] = {.lex_state = 44, .external_lex_state = 10}, - [1644] = {.lex_state = 44, .external_lex_state = 10}, - [1645] = {.lex_state = 44, .external_lex_state = 10}, - [1646] = {.lex_state = 37}, - [1647] = {.lex_state = 50}, - [1648] = {.lex_state = 9}, - [1649] = {.lex_state = 9}, - [1650] = {.lex_state = 46}, - [1651] = {.lex_state = 43, .external_lex_state = 10}, - [1652] = {.lex_state = 43, .external_lex_state = 10}, - [1653] = {.lex_state = 46, .external_lex_state = 14}, - [1654] = {.lex_state = 39}, - [1655] = {.lex_state = 50}, - [1656] = {.lex_state = 46, .external_lex_state = 2}, + [1626] = {.lex_state = 44, .external_lex_state = 10}, + [1627] = {.lex_state = 48, .external_lex_state = 10}, + [1628] = {.lex_state = 45, .external_lex_state = 21}, + [1629] = {.lex_state = 45, .external_lex_state = 10}, + [1630] = {.lex_state = 47}, + [1631] = {.lex_state = 40}, + [1632] = {.lex_state = 45, .external_lex_state = 10}, + [1633] = {.lex_state = 45, .external_lex_state = 10}, + [1634] = {.lex_state = 45, .external_lex_state = 21}, + [1635] = {.lex_state = 48, .external_lex_state = 10}, + [1636] = {.lex_state = 45, .external_lex_state = 21}, + [1637] = {.lex_state = 45, .external_lex_state = 10}, + [1638] = {.lex_state = 52, .external_lex_state = 20}, + [1639] = {.lex_state = 48, .external_lex_state = 10}, + [1640] = {.lex_state = 52, .external_lex_state = 10}, + [1641] = {.lex_state = 45, .external_lex_state = 10}, + [1642] = {.lex_state = 45, .external_lex_state = 10}, + [1643] = {.lex_state = 47}, + [1644] = {.lex_state = 45, .external_lex_state = 10}, + [1645] = {.lex_state = 45, .external_lex_state = 10}, + [1646] = {.lex_state = 52, .external_lex_state = 20}, + [1647] = {.lex_state = 48, .external_lex_state = 10}, + [1648] = {.lex_state = 52, .external_lex_state = 10}, + [1649] = {.lex_state = 45, .external_lex_state = 10}, + [1650] = {.lex_state = 45, .external_lex_state = 10}, + [1651] = {.lex_state = 45, .external_lex_state = 10}, + [1652] = {.lex_state = 45, .external_lex_state = 10}, + [1653] = {.lex_state = 45, .external_lex_state = 10}, + [1654] = {.lex_state = 38}, + [1655] = {.lex_state = 51}, + [1656] = {.lex_state = 9}, [1657] = {.lex_state = 9}, - [1658] = {.lex_state = 44, .external_lex_state = 20}, + [1658] = {.lex_state = 47}, [1659] = {.lex_state = 44, .external_lex_state = 10}, - [1660] = {.lex_state = 43, .external_lex_state = 10}, - [1661] = {.lex_state = 43, .external_lex_state = 10}, - [1662] = {.lex_state = 47, .external_lex_state = 10}, - [1663] = {.lex_state = 44, .external_lex_state = 20}, - [1664] = {.lex_state = 44, .external_lex_state = 10}, - [1665] = {.lex_state = 46}, - [1666] = {.lex_state = 39}, - [1667] = {.lex_state = 44, .external_lex_state = 10}, + [1660] = {.lex_state = 44, .external_lex_state = 10}, + [1661] = {.lex_state = 47, .external_lex_state = 14}, + [1662] = {.lex_state = 40}, + [1663] = {.lex_state = 51}, + [1664] = {.lex_state = 47, .external_lex_state = 2}, + [1665] = {.lex_state = 9}, + [1666] = {.lex_state = 45, .external_lex_state = 21}, + [1667] = {.lex_state = 45, .external_lex_state = 10}, [1668] = {.lex_state = 44, .external_lex_state = 10}, - [1669] = {.lex_state = 44, .external_lex_state = 20}, - [1670] = {.lex_state = 47, .external_lex_state = 10}, - [1671] = {.lex_state = 44, .external_lex_state = 20}, - [1672] = {.lex_state = 44, .external_lex_state = 10}, - [1673] = {.lex_state = 51, .external_lex_state = 19}, - [1674] = {.lex_state = 47, .external_lex_state = 10}, - [1675] = {.lex_state = 51, .external_lex_state = 10}, - [1676] = {.lex_state = 44, .external_lex_state = 10}, - [1677] = {.lex_state = 44, .external_lex_state = 10}, - [1678] = {.lex_state = 46}, - [1679] = {.lex_state = 44, .external_lex_state = 10}, - [1680] = {.lex_state = 44, .external_lex_state = 10}, - [1681] = {.lex_state = 51, .external_lex_state = 19}, - [1682] = {.lex_state = 47, .external_lex_state = 10}, - [1683] = {.lex_state = 51, .external_lex_state = 10}, - [1684] = {.lex_state = 44, .external_lex_state = 10}, - [1685] = {.lex_state = 44, .external_lex_state = 10}, - [1686] = {.lex_state = 44, .external_lex_state = 10}, - [1687] = {.lex_state = 44, .external_lex_state = 10}, - [1688] = {.lex_state = 44, .external_lex_state = 10}, - [1689] = {.lex_state = 37}, - [1690] = {.lex_state = 50}, - [1691] = {.lex_state = 9}, - [1692] = {.lex_state = 9}, - [1693] = {.lex_state = 46}, - [1694] = {.lex_state = 43, .external_lex_state = 10}, - [1695] = {.lex_state = 43, .external_lex_state = 10}, - [1696] = {.lex_state = 39}, - [1697] = {.lex_state = 50}, - [1698] = {.lex_state = 46, .external_lex_state = 2}, + [1669] = {.lex_state = 44, .external_lex_state = 10}, + [1670] = {.lex_state = 48, .external_lex_state = 10}, + [1671] = {.lex_state = 45, .external_lex_state = 21}, + [1672] = {.lex_state = 45, .external_lex_state = 10}, + [1673] = {.lex_state = 47}, + [1674] = {.lex_state = 40}, + [1675] = {.lex_state = 45, .external_lex_state = 10}, + [1676] = {.lex_state = 45, .external_lex_state = 10}, + [1677] = {.lex_state = 45, .external_lex_state = 21}, + [1678] = {.lex_state = 48, .external_lex_state = 10}, + [1679] = {.lex_state = 45, .external_lex_state = 21}, + [1680] = {.lex_state = 45, .external_lex_state = 10}, + [1681] = {.lex_state = 52, .external_lex_state = 20}, + [1682] = {.lex_state = 48, .external_lex_state = 10}, + [1683] = {.lex_state = 52, .external_lex_state = 10}, + [1684] = {.lex_state = 45, .external_lex_state = 10}, + [1685] = {.lex_state = 45, .external_lex_state = 10}, + [1686] = {.lex_state = 47}, + [1687] = {.lex_state = 45, .external_lex_state = 10}, + [1688] = {.lex_state = 45, .external_lex_state = 10}, + [1689] = {.lex_state = 52, .external_lex_state = 20}, + [1690] = {.lex_state = 48, .external_lex_state = 10}, + [1691] = {.lex_state = 52, .external_lex_state = 10}, + [1692] = {.lex_state = 45, .external_lex_state = 10}, + [1693] = {.lex_state = 45, .external_lex_state = 10}, + [1694] = {.lex_state = 45, .external_lex_state = 10}, + [1695] = {.lex_state = 45, .external_lex_state = 10}, + [1696] = {.lex_state = 45, .external_lex_state = 10}, + [1697] = {.lex_state = 38}, + [1698] = {.lex_state = 51}, [1699] = {.lex_state = 9}, - [1700] = {.lex_state = 44, .external_lex_state = 20}, - [1701] = {.lex_state = 44, .external_lex_state = 10}, - [1702] = {.lex_state = 43, .external_lex_state = 10}, - [1703] = {.lex_state = 43, .external_lex_state = 10}, - [1704] = {.lex_state = 47, .external_lex_state = 10}, - [1705] = {.lex_state = 44, .external_lex_state = 20}, - [1706] = {.lex_state = 44, .external_lex_state = 10}, - [1707] = {.lex_state = 39}, - [1708] = {.lex_state = 44, .external_lex_state = 10}, - [1709] = {.lex_state = 44, .external_lex_state = 10}, - [1710] = {.lex_state = 44, .external_lex_state = 20}, - [1711] = {.lex_state = 47, .external_lex_state = 10}, - [1712] = {.lex_state = 44, .external_lex_state = 20}, - [1713] = {.lex_state = 44, .external_lex_state = 10}, - [1714] = {.lex_state = 51, .external_lex_state = 19}, - [1715] = {.lex_state = 47, .external_lex_state = 10}, - [1716] = {.lex_state = 51, .external_lex_state = 10}, - [1717] = {.lex_state = 44, .external_lex_state = 10}, - [1718] = {.lex_state = 44, .external_lex_state = 10}, - [1719] = {.lex_state = 44, .external_lex_state = 10}, - [1720] = {.lex_state = 44, .external_lex_state = 10}, - [1721] = {.lex_state = 51, .external_lex_state = 19}, - [1722] = {.lex_state = 47, .external_lex_state = 10}, - [1723] = {.lex_state = 51, .external_lex_state = 10}, - [1724] = {.lex_state = 44, .external_lex_state = 10}, - [1725] = {.lex_state = 44, .external_lex_state = 10}, - [1726] = {.lex_state = 44, .external_lex_state = 10}, - [1727] = {.lex_state = 44, .external_lex_state = 10}, - [1728] = {.lex_state = 44, .external_lex_state = 10}, - [1729] = {.lex_state = 37}, - [1730] = {.lex_state = 50}, - [1731] = {.lex_state = 9}, - [1732] = {.lex_state = 9}, - [1733] = {.lex_state = 46}, - [1734] = {.lex_state = 43, .external_lex_state = 10}, - [1735] = {.lex_state = 43, .external_lex_state = 10}, - [1736] = {.lex_state = 39}, - [1737] = {.lex_state = 50}, - [1738] = {.lex_state = 46, .external_lex_state = 2}, - [1739] = {.lex_state = 9}, - [1740] = {.lex_state = 44, .external_lex_state = 20}, - [1741] = {.lex_state = 44, .external_lex_state = 10}, - [1742] = {.lex_state = 43, .external_lex_state = 10}, - [1743] = {.lex_state = 43, .external_lex_state = 10}, - [1744] = {.lex_state = 47, .external_lex_state = 10}, - [1745] = {.lex_state = 44, .external_lex_state = 20}, + [1700] = {.lex_state = 9}, + [1701] = {.lex_state = 47}, + [1702] = {.lex_state = 44, .external_lex_state = 10}, + [1703] = {.lex_state = 44, .external_lex_state = 10}, + [1704] = {.lex_state = 47, .external_lex_state = 14}, + [1705] = {.lex_state = 40}, + [1706] = {.lex_state = 51}, + [1707] = {.lex_state = 47, .external_lex_state = 2}, + [1708] = {.lex_state = 9}, + [1709] = {.lex_state = 45, .external_lex_state = 21}, + [1710] = {.lex_state = 45, .external_lex_state = 10}, + [1711] = {.lex_state = 44, .external_lex_state = 10}, + [1712] = {.lex_state = 44, .external_lex_state = 10}, + [1713] = {.lex_state = 48, .external_lex_state = 10}, + [1714] = {.lex_state = 45, .external_lex_state = 21}, + [1715] = {.lex_state = 45, .external_lex_state = 10}, + [1716] = {.lex_state = 47}, + [1717] = {.lex_state = 40}, + [1718] = {.lex_state = 45, .external_lex_state = 10}, + [1719] = {.lex_state = 45, .external_lex_state = 10}, + [1720] = {.lex_state = 45, .external_lex_state = 21}, + [1721] = {.lex_state = 48, .external_lex_state = 10}, + [1722] = {.lex_state = 45, .external_lex_state = 21}, + [1723] = {.lex_state = 45, .external_lex_state = 10}, + [1724] = {.lex_state = 52, .external_lex_state = 20}, + [1725] = {.lex_state = 48, .external_lex_state = 10}, + [1726] = {.lex_state = 52, .external_lex_state = 10}, + [1727] = {.lex_state = 45, .external_lex_state = 10}, + [1728] = {.lex_state = 45, .external_lex_state = 10}, + [1729] = {.lex_state = 47}, + [1730] = {.lex_state = 45, .external_lex_state = 10}, + [1731] = {.lex_state = 45, .external_lex_state = 10}, + [1732] = {.lex_state = 52, .external_lex_state = 20}, + [1733] = {.lex_state = 48, .external_lex_state = 10}, + [1734] = {.lex_state = 52, .external_lex_state = 10}, + [1735] = {.lex_state = 45, .external_lex_state = 10}, + [1736] = {.lex_state = 45, .external_lex_state = 10}, + [1737] = {.lex_state = 45, .external_lex_state = 10}, + [1738] = {.lex_state = 45, .external_lex_state = 10}, + [1739] = {.lex_state = 45, .external_lex_state = 10}, + [1740] = {.lex_state = 38}, + [1741] = {.lex_state = 51}, + [1742] = {.lex_state = 9}, + [1743] = {.lex_state = 9}, + [1744] = {.lex_state = 47}, + [1745] = {.lex_state = 44, .external_lex_state = 10}, [1746] = {.lex_state = 44, .external_lex_state = 10}, - [1747] = {.lex_state = 39}, - [1748] = {.lex_state = 44, .external_lex_state = 10}, - [1749] = {.lex_state = 44, .external_lex_state = 10}, - [1750] = {.lex_state = 44, .external_lex_state = 20}, - [1751] = {.lex_state = 47, .external_lex_state = 10}, - [1752] = {.lex_state = 44, .external_lex_state = 20}, + [1747] = {.lex_state = 40}, + [1748] = {.lex_state = 51}, + [1749] = {.lex_state = 47, .external_lex_state = 2}, + [1750] = {.lex_state = 9}, + [1751] = {.lex_state = 45, .external_lex_state = 21}, + [1752] = {.lex_state = 45, .external_lex_state = 10}, [1753] = {.lex_state = 44, .external_lex_state = 10}, - [1754] = {.lex_state = 51, .external_lex_state = 19}, - [1755] = {.lex_state = 47, .external_lex_state = 10}, - [1756] = {.lex_state = 51, .external_lex_state = 10}, - [1757] = {.lex_state = 44, .external_lex_state = 10}, - [1758] = {.lex_state = 44, .external_lex_state = 10}, - [1759] = {.lex_state = 44, .external_lex_state = 10}, - [1760] = {.lex_state = 44, .external_lex_state = 10}, - [1761] = {.lex_state = 51, .external_lex_state = 19}, - [1762] = {.lex_state = 47, .external_lex_state = 10}, - [1763] = {.lex_state = 51, .external_lex_state = 10}, - [1764] = {.lex_state = 44, .external_lex_state = 10}, - [1765] = {.lex_state = 44, .external_lex_state = 10}, - [1766] = {.lex_state = 44, .external_lex_state = 10}, - [1767] = {.lex_state = 44, .external_lex_state = 10}, - [1768] = {.lex_state = 44, .external_lex_state = 10}, - [1769] = {.lex_state = 37}, - [1770] = {.lex_state = 50}, - [1771] = {.lex_state = 9}, - [1772] = {.lex_state = 9}, - [1773] = {.lex_state = 46}, - [1774] = {.lex_state = 43, .external_lex_state = 10}, - [1775] = {.lex_state = 43, .external_lex_state = 10}, - [1776] = {.lex_state = 39}, - [1777] = {.lex_state = 50}, - [1778] = {.lex_state = 46, .external_lex_state = 2}, - [1779] = {.lex_state = 9}, - [1780] = {.lex_state = 44, .external_lex_state = 20}, - [1781] = {.lex_state = 44, .external_lex_state = 10}, - [1782] = {.lex_state = 43, .external_lex_state = 10}, - [1783] = {.lex_state = 43, .external_lex_state = 10}, - [1784] = {.lex_state = 47, .external_lex_state = 10}, - [1785] = {.lex_state = 44, .external_lex_state = 20}, + [1754] = {.lex_state = 44, .external_lex_state = 10}, + [1755] = {.lex_state = 48, .external_lex_state = 10}, + [1756] = {.lex_state = 45, .external_lex_state = 21}, + [1757] = {.lex_state = 45, .external_lex_state = 10}, + [1758] = {.lex_state = 40}, + [1759] = {.lex_state = 45, .external_lex_state = 10}, + [1760] = {.lex_state = 45, .external_lex_state = 10}, + [1761] = {.lex_state = 45, .external_lex_state = 21}, + [1762] = {.lex_state = 48, .external_lex_state = 10}, + [1763] = {.lex_state = 45, .external_lex_state = 21}, + [1764] = {.lex_state = 45, .external_lex_state = 10}, + [1765] = {.lex_state = 52, .external_lex_state = 20}, + [1766] = {.lex_state = 48, .external_lex_state = 10}, + [1767] = {.lex_state = 52, .external_lex_state = 10}, + [1768] = {.lex_state = 45, .external_lex_state = 10}, + [1769] = {.lex_state = 45, .external_lex_state = 10}, + [1770] = {.lex_state = 45, .external_lex_state = 10}, + [1771] = {.lex_state = 45, .external_lex_state = 10}, + [1772] = {.lex_state = 52, .external_lex_state = 20}, + [1773] = {.lex_state = 48, .external_lex_state = 10}, + [1774] = {.lex_state = 52, .external_lex_state = 10}, + [1775] = {.lex_state = 45, .external_lex_state = 10}, + [1776] = {.lex_state = 45, .external_lex_state = 10}, + [1777] = {.lex_state = 45, .external_lex_state = 10}, + [1778] = {.lex_state = 45, .external_lex_state = 10}, + [1779] = {.lex_state = 45, .external_lex_state = 10}, + [1780] = {.lex_state = 38}, + [1781] = {.lex_state = 51}, + [1782] = {.lex_state = 9}, + [1783] = {.lex_state = 9}, + [1784] = {.lex_state = 47}, + [1785] = {.lex_state = 44, .external_lex_state = 10}, [1786] = {.lex_state = 44, .external_lex_state = 10}, - [1787] = {.lex_state = 39}, - [1788] = {.lex_state = 44, .external_lex_state = 10}, - [1789] = {.lex_state = 44, .external_lex_state = 10}, - [1790] = {.lex_state = 44, .external_lex_state = 20}, - [1791] = {.lex_state = 47, .external_lex_state = 10}, - [1792] = {.lex_state = 44, .external_lex_state = 20}, + [1787] = {.lex_state = 40}, + [1788] = {.lex_state = 51}, + [1789] = {.lex_state = 47, .external_lex_state = 2}, + [1790] = {.lex_state = 9}, + [1791] = {.lex_state = 45, .external_lex_state = 21}, + [1792] = {.lex_state = 45, .external_lex_state = 10}, [1793] = {.lex_state = 44, .external_lex_state = 10}, - [1794] = {.lex_state = 51, .external_lex_state = 19}, - [1795] = {.lex_state = 47, .external_lex_state = 10}, - [1796] = {.lex_state = 51, .external_lex_state = 10}, - [1797] = {.lex_state = 44, .external_lex_state = 10}, - [1798] = {.lex_state = 44, .external_lex_state = 10}, - [1799] = {.lex_state = 44, .external_lex_state = 10}, - [1800] = {.lex_state = 44, .external_lex_state = 10}, - [1801] = {.lex_state = 51, .external_lex_state = 19}, - [1802] = {.lex_state = 47, .external_lex_state = 10}, - [1803] = {.lex_state = 51, .external_lex_state = 10}, - [1804] = {.lex_state = 44, .external_lex_state = 10}, - [1805] = {.lex_state = 44, .external_lex_state = 10}, - [1806] = {.lex_state = 44, .external_lex_state = 10}, - [1807] = {.lex_state = 44, .external_lex_state = 10}, - [1808] = {.lex_state = 44, .external_lex_state = 10}, - [1809] = {.lex_state = 37}, - [1810] = {.lex_state = 50}, - [1811] = {.lex_state = 9}, - [1812] = {.lex_state = 9}, - [1813] = {.lex_state = 46}, - [1814] = {.lex_state = 43, .external_lex_state = 10}, - [1815] = {.lex_state = 43, .external_lex_state = 10}, - [1816] = {.lex_state = 39}, - [1817] = {.lex_state = 50}, - [1818] = {.lex_state = 46, .external_lex_state = 2}, - [1819] = {.lex_state = 9}, - [1820] = {.lex_state = 44, .external_lex_state = 20}, - [1821] = {.lex_state = 44, .external_lex_state = 10}, - [1822] = {.lex_state = 43, .external_lex_state = 10}, - [1823] = {.lex_state = 43, .external_lex_state = 10}, - [1824] = {.lex_state = 47, .external_lex_state = 10}, - [1825] = {.lex_state = 44, .external_lex_state = 20}, + [1794] = {.lex_state = 44, .external_lex_state = 10}, + [1795] = {.lex_state = 48, .external_lex_state = 10}, + [1796] = {.lex_state = 45, .external_lex_state = 21}, + [1797] = {.lex_state = 45, .external_lex_state = 10}, + [1798] = {.lex_state = 40}, + [1799] = {.lex_state = 45, .external_lex_state = 10}, + [1800] = {.lex_state = 45, .external_lex_state = 10}, + [1801] = {.lex_state = 45, .external_lex_state = 21}, + [1802] = {.lex_state = 48, .external_lex_state = 10}, + [1803] = {.lex_state = 45, .external_lex_state = 21}, + [1804] = {.lex_state = 45, .external_lex_state = 10}, + [1805] = {.lex_state = 52, .external_lex_state = 20}, + [1806] = {.lex_state = 48, .external_lex_state = 10}, + [1807] = {.lex_state = 52, .external_lex_state = 10}, + [1808] = {.lex_state = 45, .external_lex_state = 10}, + [1809] = {.lex_state = 45, .external_lex_state = 10}, + [1810] = {.lex_state = 45, .external_lex_state = 10}, + [1811] = {.lex_state = 45, .external_lex_state = 10}, + [1812] = {.lex_state = 52, .external_lex_state = 20}, + [1813] = {.lex_state = 48, .external_lex_state = 10}, + [1814] = {.lex_state = 52, .external_lex_state = 10}, + [1815] = {.lex_state = 45, .external_lex_state = 10}, + [1816] = {.lex_state = 45, .external_lex_state = 10}, + [1817] = {.lex_state = 45, .external_lex_state = 10}, + [1818] = {.lex_state = 45, .external_lex_state = 10}, + [1819] = {.lex_state = 45, .external_lex_state = 10}, + [1820] = {.lex_state = 38}, + [1821] = {.lex_state = 51}, + [1822] = {.lex_state = 9}, + [1823] = {.lex_state = 9}, + [1824] = {.lex_state = 47}, + [1825] = {.lex_state = 44, .external_lex_state = 10}, [1826] = {.lex_state = 44, .external_lex_state = 10}, - [1827] = {.lex_state = 39}, - [1828] = {.lex_state = 44, .external_lex_state = 10}, - [1829] = {.lex_state = 44, .external_lex_state = 10}, - [1830] = {.lex_state = 44, .external_lex_state = 20}, - [1831] = {.lex_state = 47, .external_lex_state = 10}, - [1832] = {.lex_state = 44, .external_lex_state = 20}, + [1827] = {.lex_state = 40}, + [1828] = {.lex_state = 51}, + [1829] = {.lex_state = 47, .external_lex_state = 2}, + [1830] = {.lex_state = 9}, + [1831] = {.lex_state = 45, .external_lex_state = 21}, + [1832] = {.lex_state = 45, .external_lex_state = 10}, [1833] = {.lex_state = 44, .external_lex_state = 10}, - [1834] = {.lex_state = 51, .external_lex_state = 19}, - [1835] = {.lex_state = 47, .external_lex_state = 10}, - [1836] = {.lex_state = 51, .external_lex_state = 10}, - [1837] = {.lex_state = 44, .external_lex_state = 10}, - [1838] = {.lex_state = 44, .external_lex_state = 10}, - [1839] = {.lex_state = 44, .external_lex_state = 10}, - [1840] = {.lex_state = 44, .external_lex_state = 10}, - [1841] = {.lex_state = 51, .external_lex_state = 19}, - [1842] = {.lex_state = 47, .external_lex_state = 10}, - [1843] = {.lex_state = 51, .external_lex_state = 10}, - [1844] = {.lex_state = 44, .external_lex_state = 10}, - [1845] = {.lex_state = 44, .external_lex_state = 10}, - [1846] = {.lex_state = 44, .external_lex_state = 10}, - [1847] = {.lex_state = 44, .external_lex_state = 10}, - [1848] = {.lex_state = 44, .external_lex_state = 10}, - [1849] = {.lex_state = 37}, - [1850] = {.lex_state = 50}, - [1851] = {.lex_state = 9}, - [1852] = {.lex_state = 9}, - [1853] = {.lex_state = 46}, - [1854] = {.lex_state = 43, .external_lex_state = 10}, - [1855] = {.lex_state = 43, .external_lex_state = 10}, - [1856] = {.lex_state = 39}, - [1857] = {.lex_state = 50}, - [1858] = {.lex_state = 46, .external_lex_state = 2}, - [1859] = {.lex_state = 9}, - [1860] = {.lex_state = 44, .external_lex_state = 20}, - [1861] = {.lex_state = 44, .external_lex_state = 10}, - [1862] = {.lex_state = 43, .external_lex_state = 10}, - [1863] = {.lex_state = 43, .external_lex_state = 10}, - [1864] = {.lex_state = 47, .external_lex_state = 10}, - [1865] = {.lex_state = 44, .external_lex_state = 20}, + [1834] = {.lex_state = 44, .external_lex_state = 10}, + [1835] = {.lex_state = 48, .external_lex_state = 10}, + [1836] = {.lex_state = 45, .external_lex_state = 21}, + [1837] = {.lex_state = 45, .external_lex_state = 10}, + [1838] = {.lex_state = 40}, + [1839] = {.lex_state = 45, .external_lex_state = 10}, + [1840] = {.lex_state = 45, .external_lex_state = 10}, + [1841] = {.lex_state = 45, .external_lex_state = 21}, + [1842] = {.lex_state = 48, .external_lex_state = 10}, + [1843] = {.lex_state = 45, .external_lex_state = 21}, + [1844] = {.lex_state = 45, .external_lex_state = 10}, + [1845] = {.lex_state = 52, .external_lex_state = 20}, + [1846] = {.lex_state = 48, .external_lex_state = 10}, + [1847] = {.lex_state = 52, .external_lex_state = 10}, + [1848] = {.lex_state = 45, .external_lex_state = 10}, + [1849] = {.lex_state = 45, .external_lex_state = 10}, + [1850] = {.lex_state = 45, .external_lex_state = 10}, + [1851] = {.lex_state = 45, .external_lex_state = 10}, + [1852] = {.lex_state = 52, .external_lex_state = 20}, + [1853] = {.lex_state = 48, .external_lex_state = 10}, + [1854] = {.lex_state = 52, .external_lex_state = 10}, + [1855] = {.lex_state = 45, .external_lex_state = 10}, + [1856] = {.lex_state = 45, .external_lex_state = 10}, + [1857] = {.lex_state = 45, .external_lex_state = 10}, + [1858] = {.lex_state = 45, .external_lex_state = 10}, + [1859] = {.lex_state = 45, .external_lex_state = 10}, + [1860] = {.lex_state = 38}, + [1861] = {.lex_state = 51}, + [1862] = {.lex_state = 9}, + [1863] = {.lex_state = 9}, + [1864] = {.lex_state = 47}, + [1865] = {.lex_state = 44, .external_lex_state = 10}, [1866] = {.lex_state = 44, .external_lex_state = 10}, - [1867] = {.lex_state = 39}, - [1868] = {.lex_state = 44, .external_lex_state = 10}, - [1869] = {.lex_state = 44, .external_lex_state = 10}, - [1870] = {.lex_state = 44, .external_lex_state = 20}, - [1871] = {.lex_state = 47, .external_lex_state = 10}, - [1872] = {.lex_state = 44, .external_lex_state = 20}, + [1867] = {.lex_state = 40}, + [1868] = {.lex_state = 51}, + [1869] = {.lex_state = 47, .external_lex_state = 2}, + [1870] = {.lex_state = 9}, + [1871] = {.lex_state = 45, .external_lex_state = 21}, + [1872] = {.lex_state = 45, .external_lex_state = 10}, [1873] = {.lex_state = 44, .external_lex_state = 10}, - [1874] = {.lex_state = 51, .external_lex_state = 19}, - [1875] = {.lex_state = 47, .external_lex_state = 10}, - [1876] = {.lex_state = 51, .external_lex_state = 10}, - [1877] = {.lex_state = 44, .external_lex_state = 10}, - [1878] = {.lex_state = 44, .external_lex_state = 10}, - [1879] = {.lex_state = 44, .external_lex_state = 10}, - [1880] = {.lex_state = 44, .external_lex_state = 10}, - [1881] = {.lex_state = 51, .external_lex_state = 19}, - [1882] = {.lex_state = 47, .external_lex_state = 10}, - [1883] = {.lex_state = 51, .external_lex_state = 10}, - [1884] = {.lex_state = 44, .external_lex_state = 10}, - [1885] = {.lex_state = 44, .external_lex_state = 10}, - [1886] = {.lex_state = 44, .external_lex_state = 10}, - [1887] = {.lex_state = 44, .external_lex_state = 10}, - [1888] = {.lex_state = 44, .external_lex_state = 10}, - [1889] = {.lex_state = 37}, - [1890] = {.lex_state = 50}, - [1891] = {.lex_state = 9}, - [1892] = {.lex_state = 9}, - [1893] = {.lex_state = 46}, - [1894] = {.lex_state = 43, .external_lex_state = 10}, - [1895] = {.lex_state = 43, .external_lex_state = 10}, - [1896] = {.lex_state = 39}, - [1897] = {.lex_state = 50}, - [1898] = {.lex_state = 46, .external_lex_state = 2}, - [1899] = {.lex_state = 9}, - [1900] = {.lex_state = 44, .external_lex_state = 20}, - [1901] = {.lex_state = 44, .external_lex_state = 10}, - [1902] = {.lex_state = 43, .external_lex_state = 10}, - [1903] = {.lex_state = 43, .external_lex_state = 10}, - [1904] = {.lex_state = 47, .external_lex_state = 10}, - [1905] = {.lex_state = 44, .external_lex_state = 20}, + [1874] = {.lex_state = 44, .external_lex_state = 10}, + [1875] = {.lex_state = 48, .external_lex_state = 10}, + [1876] = {.lex_state = 45, .external_lex_state = 21}, + [1877] = {.lex_state = 45, .external_lex_state = 10}, + [1878] = {.lex_state = 40}, + [1879] = {.lex_state = 45, .external_lex_state = 10}, + [1880] = {.lex_state = 45, .external_lex_state = 10}, + [1881] = {.lex_state = 45, .external_lex_state = 21}, + [1882] = {.lex_state = 48, .external_lex_state = 10}, + [1883] = {.lex_state = 45, .external_lex_state = 21}, + [1884] = {.lex_state = 45, .external_lex_state = 10}, + [1885] = {.lex_state = 52, .external_lex_state = 20}, + [1886] = {.lex_state = 48, .external_lex_state = 10}, + [1887] = {.lex_state = 52, .external_lex_state = 10}, + [1888] = {.lex_state = 45, .external_lex_state = 10}, + [1889] = {.lex_state = 45, .external_lex_state = 10}, + [1890] = {.lex_state = 45, .external_lex_state = 10}, + [1891] = {.lex_state = 45, .external_lex_state = 10}, + [1892] = {.lex_state = 52, .external_lex_state = 20}, + [1893] = {.lex_state = 48, .external_lex_state = 10}, + [1894] = {.lex_state = 52, .external_lex_state = 10}, + [1895] = {.lex_state = 45, .external_lex_state = 10}, + [1896] = {.lex_state = 45, .external_lex_state = 10}, + [1897] = {.lex_state = 45, .external_lex_state = 10}, + [1898] = {.lex_state = 45, .external_lex_state = 10}, + [1899] = {.lex_state = 45, .external_lex_state = 10}, + [1900] = {.lex_state = 38}, + [1901] = {.lex_state = 51}, + [1902] = {.lex_state = 9}, + [1903] = {.lex_state = 9}, + [1904] = {.lex_state = 47}, + [1905] = {.lex_state = 44, .external_lex_state = 10}, [1906] = {.lex_state = 44, .external_lex_state = 10}, - [1907] = {.lex_state = 39}, - [1908] = {.lex_state = 44, .external_lex_state = 10}, - [1909] = {.lex_state = 44, .external_lex_state = 10}, - [1910] = {.lex_state = 44, .external_lex_state = 20}, - [1911] = {.lex_state = 47, .external_lex_state = 10}, - [1912] = {.lex_state = 44, .external_lex_state = 20}, + [1907] = {.lex_state = 40}, + [1908] = {.lex_state = 51}, + [1909] = {.lex_state = 47, .external_lex_state = 2}, + [1910] = {.lex_state = 9}, + [1911] = {.lex_state = 45, .external_lex_state = 21}, + [1912] = {.lex_state = 45, .external_lex_state = 10}, [1913] = {.lex_state = 44, .external_lex_state = 10}, - [1914] = {.lex_state = 51, .external_lex_state = 19}, - [1915] = {.lex_state = 47, .external_lex_state = 10}, - [1916] = {.lex_state = 51, .external_lex_state = 10}, - [1917] = {.lex_state = 44, .external_lex_state = 10}, - [1918] = {.lex_state = 44, .external_lex_state = 10}, - [1919] = {.lex_state = 44, .external_lex_state = 10}, - [1920] = {.lex_state = 44, .external_lex_state = 10}, - [1921] = {.lex_state = 51, .external_lex_state = 19}, - [1922] = {.lex_state = 47, .external_lex_state = 10}, - [1923] = {.lex_state = 51, .external_lex_state = 10}, - [1924] = {.lex_state = 44, .external_lex_state = 10}, - [1925] = {.lex_state = 44, .external_lex_state = 10}, - [1926] = {.lex_state = 44, .external_lex_state = 10}, - [1927] = {.lex_state = 44, .external_lex_state = 10}, - [1928] = {.lex_state = 44, .external_lex_state = 10}, - [1929] = {.lex_state = 37}, - [1930] = {.lex_state = 50}, - [1931] = {.lex_state = 9}, - [1932] = {.lex_state = 9}, - [1933] = {.lex_state = 46}, - [1934] = {.lex_state = 43, .external_lex_state = 10}, - [1935] = {.lex_state = 43, .external_lex_state = 10}, - [1936] = {.lex_state = 39}, - [1937] = {.lex_state = 50}, - [1938] = {.lex_state = 46, .external_lex_state = 2}, - [1939] = {.lex_state = 9}, - [1940] = {.lex_state = 44, .external_lex_state = 20}, - [1941] = {.lex_state = 44, .external_lex_state = 10}, - [1942] = {.lex_state = 43, .external_lex_state = 10}, - [1943] = {.lex_state = 43, .external_lex_state = 10}, - [1944] = {.lex_state = 47, .external_lex_state = 10}, - [1945] = {.lex_state = 44, .external_lex_state = 20}, + [1914] = {.lex_state = 44, .external_lex_state = 10}, + [1915] = {.lex_state = 48, .external_lex_state = 10}, + [1916] = {.lex_state = 45, .external_lex_state = 21}, + [1917] = {.lex_state = 45, .external_lex_state = 10}, + [1918] = {.lex_state = 40}, + [1919] = {.lex_state = 45, .external_lex_state = 10}, + [1920] = {.lex_state = 45, .external_lex_state = 10}, + [1921] = {.lex_state = 45, .external_lex_state = 21}, + [1922] = {.lex_state = 48, .external_lex_state = 10}, + [1923] = {.lex_state = 45, .external_lex_state = 21}, + [1924] = {.lex_state = 45, .external_lex_state = 10}, + [1925] = {.lex_state = 52, .external_lex_state = 20}, + [1926] = {.lex_state = 48, .external_lex_state = 10}, + [1927] = {.lex_state = 52, .external_lex_state = 10}, + [1928] = {.lex_state = 45, .external_lex_state = 10}, + [1929] = {.lex_state = 45, .external_lex_state = 10}, + [1930] = {.lex_state = 45, .external_lex_state = 10}, + [1931] = {.lex_state = 45, .external_lex_state = 10}, + [1932] = {.lex_state = 52, .external_lex_state = 20}, + [1933] = {.lex_state = 48, .external_lex_state = 10}, + [1934] = {.lex_state = 52, .external_lex_state = 10}, + [1935] = {.lex_state = 45, .external_lex_state = 10}, + [1936] = {.lex_state = 45, .external_lex_state = 10}, + [1937] = {.lex_state = 45, .external_lex_state = 10}, + [1938] = {.lex_state = 45, .external_lex_state = 10}, + [1939] = {.lex_state = 45, .external_lex_state = 10}, + [1940] = {.lex_state = 38}, + [1941] = {.lex_state = 51}, + [1942] = {.lex_state = 9}, + [1943] = {.lex_state = 9}, + [1944] = {.lex_state = 47}, + [1945] = {.lex_state = 44, .external_lex_state = 10}, [1946] = {.lex_state = 44, .external_lex_state = 10}, - [1947] = {.lex_state = 39}, - [1948] = {.lex_state = 44, .external_lex_state = 10}, - [1949] = {.lex_state = 44, .external_lex_state = 10}, - [1950] = {.lex_state = 44, .external_lex_state = 20}, - [1951] = {.lex_state = 47, .external_lex_state = 10}, - [1952] = {.lex_state = 44, .external_lex_state = 20}, + [1947] = {.lex_state = 40}, + [1948] = {.lex_state = 51}, + [1949] = {.lex_state = 47, .external_lex_state = 2}, + [1950] = {.lex_state = 9}, + [1951] = {.lex_state = 45, .external_lex_state = 21}, + [1952] = {.lex_state = 45, .external_lex_state = 10}, [1953] = {.lex_state = 44, .external_lex_state = 10}, - [1954] = {.lex_state = 51, .external_lex_state = 19}, - [1955] = {.lex_state = 47, .external_lex_state = 10}, - [1956] = {.lex_state = 51, .external_lex_state = 10}, - [1957] = {.lex_state = 44, .external_lex_state = 10}, - [1958] = {.lex_state = 44, .external_lex_state = 10}, - [1959] = {.lex_state = 44, .external_lex_state = 10}, - [1960] = {.lex_state = 44, .external_lex_state = 10}, - [1961] = {.lex_state = 51, .external_lex_state = 19}, - [1962] = {.lex_state = 47, .external_lex_state = 10}, - [1963] = {.lex_state = 51, .external_lex_state = 10}, - [1964] = {.lex_state = 44, .external_lex_state = 10}, - [1965] = {.lex_state = 44, .external_lex_state = 10}, - [1966] = {.lex_state = 44, .external_lex_state = 10}, - [1967] = {.lex_state = 44, .external_lex_state = 10}, - [1968] = {.lex_state = 44, .external_lex_state = 10}, - [1969] = {.lex_state = 37}, - [1970] = {.lex_state = 50}, - [1971] = {.lex_state = 9}, - [1972] = {.lex_state = 9}, - [1973] = {.lex_state = 46}, - [1974] = {.lex_state = 43, .external_lex_state = 10}, - [1975] = {.lex_state = 43, .external_lex_state = 10}, - [1976] = {.lex_state = 39}, - [1977] = {.lex_state = 50}, - [1978] = {.lex_state = 46, .external_lex_state = 2}, - [1979] = {.lex_state = 9}, - [1980] = {.lex_state = 44, .external_lex_state = 20}, - [1981] = {.lex_state = 44, .external_lex_state = 10}, - [1982] = {.lex_state = 43, .external_lex_state = 10}, - [1983] = {.lex_state = 43, .external_lex_state = 10}, - [1984] = {.lex_state = 47, .external_lex_state = 10}, - [1985] = {.lex_state = 44, .external_lex_state = 20}, + [1954] = {.lex_state = 44, .external_lex_state = 10}, + [1955] = {.lex_state = 48, .external_lex_state = 10}, + [1956] = {.lex_state = 45, .external_lex_state = 21}, + [1957] = {.lex_state = 45, .external_lex_state = 10}, + [1958] = {.lex_state = 40}, + [1959] = {.lex_state = 45, .external_lex_state = 10}, + [1960] = {.lex_state = 45, .external_lex_state = 10}, + [1961] = {.lex_state = 45, .external_lex_state = 21}, + [1962] = {.lex_state = 48, .external_lex_state = 10}, + [1963] = {.lex_state = 45, .external_lex_state = 21}, + [1964] = {.lex_state = 45, .external_lex_state = 10}, + [1965] = {.lex_state = 52, .external_lex_state = 20}, + [1966] = {.lex_state = 48, .external_lex_state = 10}, + [1967] = {.lex_state = 52, .external_lex_state = 10}, + [1968] = {.lex_state = 45, .external_lex_state = 10}, + [1969] = {.lex_state = 45, .external_lex_state = 10}, + [1970] = {.lex_state = 45, .external_lex_state = 10}, + [1971] = {.lex_state = 45, .external_lex_state = 10}, + [1972] = {.lex_state = 52, .external_lex_state = 20}, + [1973] = {.lex_state = 48, .external_lex_state = 10}, + [1974] = {.lex_state = 52, .external_lex_state = 10}, + [1975] = {.lex_state = 45, .external_lex_state = 10}, + [1976] = {.lex_state = 45, .external_lex_state = 10}, + [1977] = {.lex_state = 45, .external_lex_state = 10}, + [1978] = {.lex_state = 45, .external_lex_state = 10}, + [1979] = {.lex_state = 45, .external_lex_state = 10}, + [1980] = {.lex_state = 38}, + [1981] = {.lex_state = 51}, + [1982] = {.lex_state = 9}, + [1983] = {.lex_state = 9}, + [1984] = {.lex_state = 47}, + [1985] = {.lex_state = 44, .external_lex_state = 10}, [1986] = {.lex_state = 44, .external_lex_state = 10}, - [1987] = {.lex_state = 39}, - [1988] = {.lex_state = 44, .external_lex_state = 10}, - [1989] = {.lex_state = 44, .external_lex_state = 10}, - [1990] = {.lex_state = 44, .external_lex_state = 20}, - [1991] = {.lex_state = 47, .external_lex_state = 10}, - [1992] = {.lex_state = 44, .external_lex_state = 20}, + [1987] = {.lex_state = 40}, + [1988] = {.lex_state = 51}, + [1989] = {.lex_state = 47, .external_lex_state = 2}, + [1990] = {.lex_state = 9}, + [1991] = {.lex_state = 45, .external_lex_state = 21}, + [1992] = {.lex_state = 45, .external_lex_state = 10}, [1993] = {.lex_state = 44, .external_lex_state = 10}, - [1994] = {.lex_state = 51, .external_lex_state = 19}, - [1995] = {.lex_state = 47, .external_lex_state = 10}, - [1996] = {.lex_state = 51, .external_lex_state = 10}, - [1997] = {.lex_state = 44, .external_lex_state = 10}, - [1998] = {.lex_state = 44, .external_lex_state = 10}, - [1999] = {.lex_state = 44, .external_lex_state = 10}, - [2000] = {.lex_state = 44, .external_lex_state = 10}, - [2001] = {.lex_state = 51, .external_lex_state = 19}, - [2002] = {.lex_state = 47, .external_lex_state = 10}, - [2003] = {.lex_state = 51, .external_lex_state = 10}, - [2004] = {.lex_state = 44, .external_lex_state = 10}, - [2005] = {.lex_state = 44, .external_lex_state = 10}, - [2006] = {.lex_state = 44, .external_lex_state = 10}, - [2007] = {.lex_state = 44, .external_lex_state = 10}, - [2008] = {.lex_state = 44, .external_lex_state = 10}, - [2009] = {.lex_state = 37}, - [2010] = {.lex_state = 50}, - [2011] = {.lex_state = 9}, - [2012] = {.lex_state = 9}, - [2013] = {.lex_state = 46}, - [2014] = {.lex_state = 43, .external_lex_state = 10}, - [2015] = {.lex_state = 43, .external_lex_state = 10}, - [2016] = {.lex_state = 39}, - [2017] = {.lex_state = 50}, - [2018] = {.lex_state = 46, .external_lex_state = 2}, - [2019] = {.lex_state = 9}, - [2020] = {.lex_state = 44, .external_lex_state = 20}, - [2021] = {.lex_state = 44, .external_lex_state = 10}, - [2022] = {.lex_state = 43, .external_lex_state = 10}, - [2023] = {.lex_state = 43, .external_lex_state = 10}, - [2024] = {.lex_state = 47, .external_lex_state = 10}, - [2025] = {.lex_state = 44, .external_lex_state = 20}, + [1994] = {.lex_state = 44, .external_lex_state = 10}, + [1995] = {.lex_state = 48, .external_lex_state = 10}, + [1996] = {.lex_state = 45, .external_lex_state = 21}, + [1997] = {.lex_state = 45, .external_lex_state = 10}, + [1998] = {.lex_state = 40}, + [1999] = {.lex_state = 45, .external_lex_state = 10}, + [2000] = {.lex_state = 45, .external_lex_state = 10}, + [2001] = {.lex_state = 45, .external_lex_state = 21}, + [2002] = {.lex_state = 48, .external_lex_state = 10}, + [2003] = {.lex_state = 45, .external_lex_state = 21}, + [2004] = {.lex_state = 45, .external_lex_state = 10}, + [2005] = {.lex_state = 52, .external_lex_state = 20}, + [2006] = {.lex_state = 48, .external_lex_state = 10}, + [2007] = {.lex_state = 52, .external_lex_state = 10}, + [2008] = {.lex_state = 45, .external_lex_state = 10}, + [2009] = {.lex_state = 45, .external_lex_state = 10}, + [2010] = {.lex_state = 45, .external_lex_state = 10}, + [2011] = {.lex_state = 45, .external_lex_state = 10}, + [2012] = {.lex_state = 52, .external_lex_state = 20}, + [2013] = {.lex_state = 48, .external_lex_state = 10}, + [2014] = {.lex_state = 52, .external_lex_state = 10}, + [2015] = {.lex_state = 45, .external_lex_state = 10}, + [2016] = {.lex_state = 45, .external_lex_state = 10}, + [2017] = {.lex_state = 45, .external_lex_state = 10}, + [2018] = {.lex_state = 45, .external_lex_state = 10}, + [2019] = {.lex_state = 45, .external_lex_state = 10}, + [2020] = {.lex_state = 38}, + [2021] = {.lex_state = 51}, + [2022] = {.lex_state = 9}, + [2023] = {.lex_state = 9}, + [2024] = {.lex_state = 47}, + [2025] = {.lex_state = 44, .external_lex_state = 10}, [2026] = {.lex_state = 44, .external_lex_state = 10}, - [2027] = {.lex_state = 39}, - [2028] = {.lex_state = 44, .external_lex_state = 10}, - [2029] = {.lex_state = 44, .external_lex_state = 10}, - [2030] = {.lex_state = 44, .external_lex_state = 20}, - [2031] = {.lex_state = 47, .external_lex_state = 10}, - [2032] = {.lex_state = 44, .external_lex_state = 20}, + [2027] = {.lex_state = 40}, + [2028] = {.lex_state = 51}, + [2029] = {.lex_state = 47, .external_lex_state = 2}, + [2030] = {.lex_state = 9}, + [2031] = {.lex_state = 45, .external_lex_state = 21}, + [2032] = {.lex_state = 45, .external_lex_state = 10}, [2033] = {.lex_state = 44, .external_lex_state = 10}, - [2034] = {.lex_state = 51, .external_lex_state = 19}, - [2035] = {.lex_state = 47, .external_lex_state = 10}, - [2036] = {.lex_state = 51, .external_lex_state = 10}, - [2037] = {.lex_state = 44, .external_lex_state = 10}, - [2038] = {.lex_state = 44, .external_lex_state = 10}, - [2039] = {.lex_state = 44, .external_lex_state = 10}, - [2040] = {.lex_state = 44, .external_lex_state = 10}, - [2041] = {.lex_state = 51, .external_lex_state = 19}, - [2042] = {.lex_state = 47, .external_lex_state = 10}, - [2043] = {.lex_state = 51, .external_lex_state = 10}, - [2044] = {.lex_state = 44, .external_lex_state = 10}, - [2045] = {.lex_state = 44, .external_lex_state = 10}, - [2046] = {.lex_state = 44, .external_lex_state = 10}, - [2047] = {.lex_state = 44, .external_lex_state = 10}, - [2048] = {.lex_state = 44, .external_lex_state = 10}, - [2049] = {.lex_state = 37}, - [2050] = {.lex_state = 50}, - [2051] = {.lex_state = 9}, - [2052] = {.lex_state = 9}, - [2053] = {.lex_state = 46}, - [2054] = {.lex_state = 43, .external_lex_state = 10}, - [2055] = {.lex_state = 43, .external_lex_state = 10}, - [2056] = {.lex_state = 39}, - [2057] = {.lex_state = 50}, - [2058] = {.lex_state = 46, .external_lex_state = 2}, - [2059] = {.lex_state = 9}, - [2060] = {.lex_state = 44, .external_lex_state = 20}, - [2061] = {.lex_state = 44, .external_lex_state = 10}, - [2062] = {.lex_state = 43, .external_lex_state = 10}, - [2063] = {.lex_state = 43, .external_lex_state = 10}, - [2064] = {.lex_state = 47, .external_lex_state = 10}, - [2065] = {.lex_state = 44, .external_lex_state = 20}, + [2034] = {.lex_state = 44, .external_lex_state = 10}, + [2035] = {.lex_state = 48, .external_lex_state = 10}, + [2036] = {.lex_state = 45, .external_lex_state = 21}, + [2037] = {.lex_state = 45, .external_lex_state = 10}, + [2038] = {.lex_state = 40}, + [2039] = {.lex_state = 45, .external_lex_state = 10}, + [2040] = {.lex_state = 45, .external_lex_state = 10}, + [2041] = {.lex_state = 45, .external_lex_state = 21}, + [2042] = {.lex_state = 48, .external_lex_state = 10}, + [2043] = {.lex_state = 45, .external_lex_state = 21}, + [2044] = {.lex_state = 45, .external_lex_state = 10}, + [2045] = {.lex_state = 52, .external_lex_state = 20}, + [2046] = {.lex_state = 48, .external_lex_state = 10}, + [2047] = {.lex_state = 52, .external_lex_state = 10}, + [2048] = {.lex_state = 45, .external_lex_state = 10}, + [2049] = {.lex_state = 45, .external_lex_state = 10}, + [2050] = {.lex_state = 45, .external_lex_state = 10}, + [2051] = {.lex_state = 45, .external_lex_state = 10}, + [2052] = {.lex_state = 52, .external_lex_state = 20}, + [2053] = {.lex_state = 48, .external_lex_state = 10}, + [2054] = {.lex_state = 52, .external_lex_state = 10}, + [2055] = {.lex_state = 45, .external_lex_state = 10}, + [2056] = {.lex_state = 45, .external_lex_state = 10}, + [2057] = {.lex_state = 45, .external_lex_state = 10}, + [2058] = {.lex_state = 45, .external_lex_state = 10}, + [2059] = {.lex_state = 45, .external_lex_state = 10}, + [2060] = {.lex_state = 38}, + [2061] = {.lex_state = 51}, + [2062] = {.lex_state = 9}, + [2063] = {.lex_state = 9}, + [2064] = {.lex_state = 47}, + [2065] = {.lex_state = 44, .external_lex_state = 10}, [2066] = {.lex_state = 44, .external_lex_state = 10}, - [2067] = {.lex_state = 39}, - [2068] = {.lex_state = 44, .external_lex_state = 10}, - [2069] = {.lex_state = 44, .external_lex_state = 10}, - [2070] = {.lex_state = 44, .external_lex_state = 20}, - [2071] = {.lex_state = 47, .external_lex_state = 10}, - [2072] = {.lex_state = 44, .external_lex_state = 20}, + [2067] = {.lex_state = 40}, + [2068] = {.lex_state = 51}, + [2069] = {.lex_state = 47, .external_lex_state = 2}, + [2070] = {.lex_state = 9}, + [2071] = {.lex_state = 45, .external_lex_state = 21}, + [2072] = {.lex_state = 45, .external_lex_state = 10}, [2073] = {.lex_state = 44, .external_lex_state = 10}, - [2074] = {.lex_state = 51, .external_lex_state = 19}, - [2075] = {.lex_state = 47, .external_lex_state = 10}, - [2076] = {.lex_state = 51, .external_lex_state = 10}, - [2077] = {.lex_state = 44, .external_lex_state = 10}, - [2078] = {.lex_state = 44, .external_lex_state = 10}, - [2079] = {.lex_state = 44, .external_lex_state = 10}, - [2080] = {.lex_state = 44, .external_lex_state = 10}, - [2081] = {.lex_state = 51, .external_lex_state = 19}, - [2082] = {.lex_state = 47, .external_lex_state = 10}, - [2083] = {.lex_state = 51, .external_lex_state = 10}, - [2084] = {.lex_state = 44, .external_lex_state = 10}, - [2085] = {.lex_state = 44, .external_lex_state = 10}, - [2086] = {.lex_state = 44, .external_lex_state = 10}, - [2087] = {.lex_state = 44, .external_lex_state = 10}, - [2088] = {.lex_state = 44, .external_lex_state = 10}, - [2089] = {.lex_state = 37}, - [2090] = {.lex_state = 50}, - [2091] = {.lex_state = 9}, - [2092] = {.lex_state = 9}, - [2093] = {.lex_state = 46}, - [2094] = {.lex_state = 43, .external_lex_state = 10}, - [2095] = {.lex_state = 43, .external_lex_state = 10}, - [2096] = {.lex_state = 39}, - [2097] = {.lex_state = 50}, - [2098] = {.lex_state = 46, .external_lex_state = 2}, - [2099] = {.lex_state = 9}, - [2100] = {.lex_state = 44, .external_lex_state = 20}, - [2101] = {.lex_state = 44, .external_lex_state = 10}, - [2102] = {.lex_state = 43, .external_lex_state = 10}, - [2103] = {.lex_state = 43, .external_lex_state = 10}, - [2104] = {.lex_state = 47, .external_lex_state = 10}, - [2105] = {.lex_state = 44, .external_lex_state = 20}, + [2074] = {.lex_state = 44, .external_lex_state = 10}, + [2075] = {.lex_state = 48, .external_lex_state = 10}, + [2076] = {.lex_state = 45, .external_lex_state = 21}, + [2077] = {.lex_state = 45, .external_lex_state = 10}, + [2078] = {.lex_state = 40}, + [2079] = {.lex_state = 45, .external_lex_state = 10}, + [2080] = {.lex_state = 45, .external_lex_state = 10}, + [2081] = {.lex_state = 45, .external_lex_state = 21}, + [2082] = {.lex_state = 48, .external_lex_state = 10}, + [2083] = {.lex_state = 45, .external_lex_state = 21}, + [2084] = {.lex_state = 45, .external_lex_state = 10}, + [2085] = {.lex_state = 52, .external_lex_state = 20}, + [2086] = {.lex_state = 48, .external_lex_state = 10}, + [2087] = {.lex_state = 52, .external_lex_state = 10}, + [2088] = {.lex_state = 45, .external_lex_state = 10}, + [2089] = {.lex_state = 45, .external_lex_state = 10}, + [2090] = {.lex_state = 45, .external_lex_state = 10}, + [2091] = {.lex_state = 45, .external_lex_state = 10}, + [2092] = {.lex_state = 52, .external_lex_state = 20}, + [2093] = {.lex_state = 48, .external_lex_state = 10}, + [2094] = {.lex_state = 52, .external_lex_state = 10}, + [2095] = {.lex_state = 45, .external_lex_state = 10}, + [2096] = {.lex_state = 45, .external_lex_state = 10}, + [2097] = {.lex_state = 45, .external_lex_state = 10}, + [2098] = {.lex_state = 45, .external_lex_state = 10}, + [2099] = {.lex_state = 45, .external_lex_state = 10}, + [2100] = {.lex_state = 38}, + [2101] = {.lex_state = 51}, + [2102] = {.lex_state = 9}, + [2103] = {.lex_state = 9}, + [2104] = {.lex_state = 47}, + [2105] = {.lex_state = 44, .external_lex_state = 10}, [2106] = {.lex_state = 44, .external_lex_state = 10}, - [2107] = {.lex_state = 39}, - [2108] = {.lex_state = 44, .external_lex_state = 10}, - [2109] = {.lex_state = 44, .external_lex_state = 10}, - [2110] = {.lex_state = 44, .external_lex_state = 20}, - [2111] = {.lex_state = 47, .external_lex_state = 10}, - [2112] = {.lex_state = 44, .external_lex_state = 20}, + [2107] = {.lex_state = 40}, + [2108] = {.lex_state = 51}, + [2109] = {.lex_state = 47, .external_lex_state = 2}, + [2110] = {.lex_state = 9}, + [2111] = {.lex_state = 45, .external_lex_state = 21}, + [2112] = {.lex_state = 45, .external_lex_state = 10}, [2113] = {.lex_state = 44, .external_lex_state = 10}, - [2114] = {.lex_state = 51, .external_lex_state = 19}, - [2115] = {.lex_state = 47, .external_lex_state = 10}, - [2116] = {.lex_state = 51, .external_lex_state = 10}, - [2117] = {.lex_state = 44, .external_lex_state = 10}, - [2118] = {.lex_state = 44, .external_lex_state = 10}, - [2119] = {.lex_state = 44, .external_lex_state = 10}, - [2120] = {.lex_state = 44, .external_lex_state = 10}, - [2121] = {.lex_state = 51, .external_lex_state = 19}, - [2122] = {.lex_state = 47, .external_lex_state = 10}, - [2123] = {.lex_state = 51, .external_lex_state = 10}, - [2124] = {.lex_state = 44, .external_lex_state = 10}, - [2125] = {.lex_state = 44, .external_lex_state = 10}, - [2126] = {.lex_state = 44, .external_lex_state = 10}, - [2127] = {.lex_state = 44, .external_lex_state = 10}, - [2128] = {.lex_state = 44, .external_lex_state = 10}, - [2129] = {.lex_state = 37}, - [2130] = {.lex_state = 50}, - [2131] = {.lex_state = 9}, - [2132] = {.lex_state = 9}, - [2133] = {.lex_state = 46}, - [2134] = {.lex_state = 43, .external_lex_state = 10}, - [2135] = {.lex_state = 43, .external_lex_state = 10}, - [2136] = {.lex_state = 39}, - [2137] = {.lex_state = 50}, - [2138] = {.lex_state = 46, .external_lex_state = 2}, - [2139] = {.lex_state = 9}, - [2140] = {.lex_state = 44, .external_lex_state = 20}, - [2141] = {.lex_state = 44, .external_lex_state = 10}, - [2142] = {.lex_state = 43, .external_lex_state = 10}, - [2143] = {.lex_state = 43, .external_lex_state = 10}, - [2144] = {.lex_state = 47, .external_lex_state = 10}, - [2145] = {.lex_state = 44, .external_lex_state = 20}, + [2114] = {.lex_state = 44, .external_lex_state = 10}, + [2115] = {.lex_state = 48, .external_lex_state = 10}, + [2116] = {.lex_state = 45, .external_lex_state = 21}, + [2117] = {.lex_state = 45, .external_lex_state = 10}, + [2118] = {.lex_state = 40}, + [2119] = {.lex_state = 45, .external_lex_state = 10}, + [2120] = {.lex_state = 45, .external_lex_state = 10}, + [2121] = {.lex_state = 45, .external_lex_state = 21}, + [2122] = {.lex_state = 48, .external_lex_state = 10}, + [2123] = {.lex_state = 45, .external_lex_state = 21}, + [2124] = {.lex_state = 45, .external_lex_state = 10}, + [2125] = {.lex_state = 52, .external_lex_state = 20}, + [2126] = {.lex_state = 48, .external_lex_state = 10}, + [2127] = {.lex_state = 52, .external_lex_state = 10}, + [2128] = {.lex_state = 45, .external_lex_state = 10}, + [2129] = {.lex_state = 45, .external_lex_state = 10}, + [2130] = {.lex_state = 45, .external_lex_state = 10}, + [2131] = {.lex_state = 45, .external_lex_state = 10}, + [2132] = {.lex_state = 52, .external_lex_state = 20}, + [2133] = {.lex_state = 48, .external_lex_state = 10}, + [2134] = {.lex_state = 52, .external_lex_state = 10}, + [2135] = {.lex_state = 45, .external_lex_state = 10}, + [2136] = {.lex_state = 45, .external_lex_state = 10}, + [2137] = {.lex_state = 45, .external_lex_state = 10}, + [2138] = {.lex_state = 45, .external_lex_state = 10}, + [2139] = {.lex_state = 45, .external_lex_state = 10}, + [2140] = {.lex_state = 38}, + [2141] = {.lex_state = 51}, + [2142] = {.lex_state = 9}, + [2143] = {.lex_state = 9}, + [2144] = {.lex_state = 47}, + [2145] = {.lex_state = 44, .external_lex_state = 10}, [2146] = {.lex_state = 44, .external_lex_state = 10}, - [2147] = {.lex_state = 39}, - [2148] = {.lex_state = 44, .external_lex_state = 10}, - [2149] = {.lex_state = 44, .external_lex_state = 10}, - [2150] = {.lex_state = 44, .external_lex_state = 20}, - [2151] = {.lex_state = 47, .external_lex_state = 10}, - [2152] = {.lex_state = 44, .external_lex_state = 20}, + [2147] = {.lex_state = 40}, + [2148] = {.lex_state = 51}, + [2149] = {.lex_state = 47, .external_lex_state = 2}, + [2150] = {.lex_state = 9}, + [2151] = {.lex_state = 45, .external_lex_state = 21}, + [2152] = {.lex_state = 45, .external_lex_state = 10}, [2153] = {.lex_state = 44, .external_lex_state = 10}, - [2154] = {.lex_state = 51, .external_lex_state = 19}, - [2155] = {.lex_state = 47, .external_lex_state = 10}, - [2156] = {.lex_state = 51, .external_lex_state = 10}, - [2157] = {.lex_state = 44, .external_lex_state = 10}, - [2158] = {.lex_state = 44, .external_lex_state = 10}, - [2159] = {.lex_state = 44, .external_lex_state = 10}, - [2160] = {.lex_state = 44, .external_lex_state = 10}, - [2161] = {.lex_state = 51, .external_lex_state = 19}, - [2162] = {.lex_state = 47, .external_lex_state = 10}, - [2163] = {.lex_state = 51, .external_lex_state = 10}, - [2164] = {.lex_state = 44, .external_lex_state = 10}, - [2165] = {.lex_state = 44, .external_lex_state = 10}, - [2166] = {.lex_state = 44, .external_lex_state = 10}, - [2167] = {.lex_state = 44, .external_lex_state = 10}, - [2168] = {.lex_state = 44, .external_lex_state = 10}, - [2169] = {.lex_state = 37}, - [2170] = {.lex_state = 50}, - [2171] = {.lex_state = 9}, - [2172] = {.lex_state = 9}, - [2173] = {.lex_state = 46}, - [2174] = {.lex_state = 43, .external_lex_state = 10}, - [2175] = {.lex_state = 43, .external_lex_state = 10}, - [2176] = {.lex_state = 39}, - [2177] = {.lex_state = 50}, - [2178] = {.lex_state = 46, .external_lex_state = 2}, - [2179] = {.lex_state = 9}, - [2180] = {.lex_state = 44, .external_lex_state = 20}, - [2181] = {.lex_state = 44, .external_lex_state = 10}, - [2182] = {.lex_state = 43, .external_lex_state = 10}, - [2183] = {.lex_state = 43, .external_lex_state = 10}, - [2184] = {.lex_state = 47, .external_lex_state = 10}, - [2185] = {.lex_state = 44, .external_lex_state = 20}, + [2154] = {.lex_state = 44, .external_lex_state = 10}, + [2155] = {.lex_state = 48, .external_lex_state = 10}, + [2156] = {.lex_state = 45, .external_lex_state = 21}, + [2157] = {.lex_state = 45, .external_lex_state = 10}, + [2158] = {.lex_state = 40}, + [2159] = {.lex_state = 45, .external_lex_state = 10}, + [2160] = {.lex_state = 45, .external_lex_state = 10}, + [2161] = {.lex_state = 45, .external_lex_state = 21}, + [2162] = {.lex_state = 48, .external_lex_state = 10}, + [2163] = {.lex_state = 45, .external_lex_state = 21}, + [2164] = {.lex_state = 45, .external_lex_state = 10}, + [2165] = {.lex_state = 52, .external_lex_state = 20}, + [2166] = {.lex_state = 48, .external_lex_state = 10}, + [2167] = {.lex_state = 52, .external_lex_state = 10}, + [2168] = {.lex_state = 45, .external_lex_state = 10}, + [2169] = {.lex_state = 45, .external_lex_state = 10}, + [2170] = {.lex_state = 45, .external_lex_state = 10}, + [2171] = {.lex_state = 45, .external_lex_state = 10}, + [2172] = {.lex_state = 52, .external_lex_state = 20}, + [2173] = {.lex_state = 48, .external_lex_state = 10}, + [2174] = {.lex_state = 52, .external_lex_state = 10}, + [2175] = {.lex_state = 45, .external_lex_state = 10}, + [2176] = {.lex_state = 45, .external_lex_state = 10}, + [2177] = {.lex_state = 45, .external_lex_state = 10}, + [2178] = {.lex_state = 45, .external_lex_state = 10}, + [2179] = {.lex_state = 45, .external_lex_state = 10}, + [2180] = {.lex_state = 38}, + [2181] = {.lex_state = 51}, + [2182] = {.lex_state = 9}, + [2183] = {.lex_state = 9}, + [2184] = {.lex_state = 47}, + [2185] = {.lex_state = 44, .external_lex_state = 10}, [2186] = {.lex_state = 44, .external_lex_state = 10}, - [2187] = {.lex_state = 39}, - [2188] = {.lex_state = 44, .external_lex_state = 10}, - [2189] = {.lex_state = 44, .external_lex_state = 10}, - [2190] = {.lex_state = 44, .external_lex_state = 20}, - [2191] = {.lex_state = 47, .external_lex_state = 10}, - [2192] = {.lex_state = 44, .external_lex_state = 20}, + [2187] = {.lex_state = 40}, + [2188] = {.lex_state = 51}, + [2189] = {.lex_state = 47, .external_lex_state = 2}, + [2190] = {.lex_state = 9}, + [2191] = {.lex_state = 45, .external_lex_state = 21}, + [2192] = {.lex_state = 45, .external_lex_state = 10}, [2193] = {.lex_state = 44, .external_lex_state = 10}, - [2194] = {.lex_state = 51, .external_lex_state = 19}, - [2195] = {.lex_state = 47, .external_lex_state = 10}, - [2196] = {.lex_state = 51, .external_lex_state = 10}, - [2197] = {.lex_state = 44, .external_lex_state = 10}, - [2198] = {.lex_state = 44, .external_lex_state = 10}, - [2199] = {.lex_state = 44, .external_lex_state = 10}, - [2200] = {.lex_state = 44, .external_lex_state = 10}, - [2201] = {.lex_state = 51, .external_lex_state = 19}, - [2202] = {.lex_state = 47, .external_lex_state = 10}, - [2203] = {.lex_state = 51, .external_lex_state = 10}, - [2204] = {.lex_state = 44, .external_lex_state = 10}, - [2205] = {.lex_state = 44, .external_lex_state = 10}, - [2206] = {.lex_state = 44, .external_lex_state = 10}, - [2207] = {.lex_state = 44, .external_lex_state = 10}, - [2208] = {.lex_state = 44, .external_lex_state = 10}, - [2209] = {.lex_state = 37}, - [2210] = {.lex_state = 50}, - [2211] = {.lex_state = 9}, - [2212] = {.lex_state = 9}, - [2213] = {.lex_state = 46}, - [2214] = {.lex_state = 43, .external_lex_state = 10}, - [2215] = {.lex_state = 43, .external_lex_state = 10}, - [2216] = {.lex_state = 39}, - [2217] = {.lex_state = 50}, - [2218] = {.lex_state = 46, .external_lex_state = 2}, - [2219] = {.lex_state = 9}, - [2220] = {.lex_state = 44, .external_lex_state = 20}, - [2221] = {.lex_state = 44, .external_lex_state = 10}, - [2222] = {.lex_state = 43, .external_lex_state = 10}, - [2223] = {.lex_state = 43, .external_lex_state = 10}, - [2224] = {.lex_state = 47, .external_lex_state = 10}, - [2225] = {.lex_state = 44, .external_lex_state = 20}, + [2194] = {.lex_state = 44, .external_lex_state = 10}, + [2195] = {.lex_state = 48, .external_lex_state = 10}, + [2196] = {.lex_state = 45, .external_lex_state = 21}, + [2197] = {.lex_state = 45, .external_lex_state = 10}, + [2198] = {.lex_state = 40}, + [2199] = {.lex_state = 45, .external_lex_state = 10}, + [2200] = {.lex_state = 45, .external_lex_state = 10}, + [2201] = {.lex_state = 45, .external_lex_state = 21}, + [2202] = {.lex_state = 48, .external_lex_state = 10}, + [2203] = {.lex_state = 45, .external_lex_state = 21}, + [2204] = {.lex_state = 45, .external_lex_state = 10}, + [2205] = {.lex_state = 52, .external_lex_state = 20}, + [2206] = {.lex_state = 48, .external_lex_state = 10}, + [2207] = {.lex_state = 52, .external_lex_state = 10}, + [2208] = {.lex_state = 45, .external_lex_state = 10}, + [2209] = {.lex_state = 45, .external_lex_state = 10}, + [2210] = {.lex_state = 45, .external_lex_state = 10}, + [2211] = {.lex_state = 45, .external_lex_state = 10}, + [2212] = {.lex_state = 52, .external_lex_state = 20}, + [2213] = {.lex_state = 48, .external_lex_state = 10}, + [2214] = {.lex_state = 52, .external_lex_state = 10}, + [2215] = {.lex_state = 45, .external_lex_state = 10}, + [2216] = {.lex_state = 45, .external_lex_state = 10}, + [2217] = {.lex_state = 45, .external_lex_state = 10}, + [2218] = {.lex_state = 45, .external_lex_state = 10}, + [2219] = {.lex_state = 45, .external_lex_state = 10}, + [2220] = {.lex_state = 38}, + [2221] = {.lex_state = 51}, + [2222] = {.lex_state = 9}, + [2223] = {.lex_state = 9}, + [2224] = {.lex_state = 47}, + [2225] = {.lex_state = 44, .external_lex_state = 10}, [2226] = {.lex_state = 44, .external_lex_state = 10}, - [2227] = {.lex_state = 39}, - [2228] = {.lex_state = 44, .external_lex_state = 10}, - [2229] = {.lex_state = 44, .external_lex_state = 10}, - [2230] = {.lex_state = 44, .external_lex_state = 20}, - [2231] = {.lex_state = 47, .external_lex_state = 10}, - [2232] = {.lex_state = 44, .external_lex_state = 20}, + [2227] = {.lex_state = 40}, + [2228] = {.lex_state = 51}, + [2229] = {.lex_state = 47, .external_lex_state = 2}, + [2230] = {.lex_state = 9}, + [2231] = {.lex_state = 45, .external_lex_state = 21}, + [2232] = {.lex_state = 45, .external_lex_state = 10}, [2233] = {.lex_state = 44, .external_lex_state = 10}, - [2234] = {.lex_state = 51, .external_lex_state = 19}, - [2235] = {.lex_state = 47, .external_lex_state = 10}, - [2236] = {.lex_state = 51, .external_lex_state = 10}, - [2237] = {.lex_state = 44, .external_lex_state = 10}, - [2238] = {.lex_state = 44, .external_lex_state = 10}, - [2239] = {.lex_state = 44, .external_lex_state = 10}, - [2240] = {.lex_state = 44, .external_lex_state = 10}, - [2241] = {.lex_state = 51, .external_lex_state = 19}, - [2242] = {.lex_state = 47, .external_lex_state = 10}, - [2243] = {.lex_state = 51, .external_lex_state = 10}, - [2244] = {.lex_state = 44, .external_lex_state = 10}, - [2245] = {.lex_state = 44, .external_lex_state = 10}, - [2246] = {.lex_state = 44, .external_lex_state = 10}, - [2247] = {.lex_state = 44, .external_lex_state = 10}, - [2248] = {.lex_state = 44, .external_lex_state = 10}, - [2249] = {.lex_state = 37}, - [2250] = {.lex_state = 50}, - [2251] = {.lex_state = 9}, - [2252] = {.lex_state = 9}, - [2253] = {.lex_state = 46}, - [2254] = {.lex_state = 43, .external_lex_state = 10}, - [2255] = {.lex_state = 43, .external_lex_state = 10}, - [2256] = {.lex_state = 39}, - [2257] = {.lex_state = 50}, - [2258] = {.lex_state = 46, .external_lex_state = 2}, - [2259] = {.lex_state = 9}, - [2260] = {.lex_state = 44, .external_lex_state = 20}, - [2261] = {.lex_state = 44, .external_lex_state = 10}, - [2262] = {.lex_state = 43, .external_lex_state = 10}, - [2263] = {.lex_state = 43, .external_lex_state = 10}, - [2264] = {.lex_state = 47, .external_lex_state = 10}, - [2265] = {.lex_state = 44, .external_lex_state = 20}, + [2234] = {.lex_state = 44, .external_lex_state = 10}, + [2235] = {.lex_state = 48, .external_lex_state = 10}, + [2236] = {.lex_state = 45, .external_lex_state = 21}, + [2237] = {.lex_state = 45, .external_lex_state = 10}, + [2238] = {.lex_state = 40}, + [2239] = {.lex_state = 45, .external_lex_state = 10}, + [2240] = {.lex_state = 45, .external_lex_state = 10}, + [2241] = {.lex_state = 45, .external_lex_state = 21}, + [2242] = {.lex_state = 48, .external_lex_state = 10}, + [2243] = {.lex_state = 45, .external_lex_state = 21}, + [2244] = {.lex_state = 45, .external_lex_state = 10}, + [2245] = {.lex_state = 52, .external_lex_state = 20}, + [2246] = {.lex_state = 48, .external_lex_state = 10}, + [2247] = {.lex_state = 52, .external_lex_state = 10}, + [2248] = {.lex_state = 45, .external_lex_state = 10}, + [2249] = {.lex_state = 45, .external_lex_state = 10}, + [2250] = {.lex_state = 45, .external_lex_state = 10}, + [2251] = {.lex_state = 45, .external_lex_state = 10}, + [2252] = {.lex_state = 52, .external_lex_state = 20}, + [2253] = {.lex_state = 48, .external_lex_state = 10}, + [2254] = {.lex_state = 52, .external_lex_state = 10}, + [2255] = {.lex_state = 45, .external_lex_state = 10}, + [2256] = {.lex_state = 45, .external_lex_state = 10}, + [2257] = {.lex_state = 45, .external_lex_state = 10}, + [2258] = {.lex_state = 45, .external_lex_state = 10}, + [2259] = {.lex_state = 45, .external_lex_state = 10}, + [2260] = {.lex_state = 38}, + [2261] = {.lex_state = 51}, + [2262] = {.lex_state = 9}, + [2263] = {.lex_state = 9}, + [2264] = {.lex_state = 47}, + [2265] = {.lex_state = 44, .external_lex_state = 10}, [2266] = {.lex_state = 44, .external_lex_state = 10}, - [2267] = {.lex_state = 39}, - [2268] = {.lex_state = 44, .external_lex_state = 10}, - [2269] = {.lex_state = 44, .external_lex_state = 10}, - [2270] = {.lex_state = 44, .external_lex_state = 20}, - [2271] = {.lex_state = 47, .external_lex_state = 10}, - [2272] = {.lex_state = 44, .external_lex_state = 20}, + [2267] = {.lex_state = 40}, + [2268] = {.lex_state = 51}, + [2269] = {.lex_state = 47, .external_lex_state = 2}, + [2270] = {.lex_state = 9}, + [2271] = {.lex_state = 45, .external_lex_state = 21}, + [2272] = {.lex_state = 45, .external_lex_state = 10}, [2273] = {.lex_state = 44, .external_lex_state = 10}, - [2274] = {.lex_state = 51, .external_lex_state = 19}, - [2275] = {.lex_state = 47, .external_lex_state = 10}, - [2276] = {.lex_state = 51, .external_lex_state = 10}, - [2277] = {.lex_state = 44, .external_lex_state = 10}, - [2278] = {.lex_state = 44, .external_lex_state = 10}, - [2279] = {.lex_state = 44, .external_lex_state = 10}, - [2280] = {.lex_state = 44, .external_lex_state = 10}, - [2281] = {.lex_state = 51, .external_lex_state = 19}, - [2282] = {.lex_state = 47, .external_lex_state = 10}, - [2283] = {.lex_state = 51, .external_lex_state = 10}, - [2284] = {.lex_state = 44, .external_lex_state = 10}, - [2285] = {.lex_state = 44, .external_lex_state = 10}, - [2286] = {.lex_state = 44, .external_lex_state = 10}, - [2287] = {.lex_state = 44, .external_lex_state = 10}, - [2288] = {.lex_state = 44, .external_lex_state = 10}, - [2289] = {.lex_state = 37}, - [2290] = {.lex_state = 50}, - [2291] = {.lex_state = 9}, - [2292] = {.lex_state = 9}, - [2293] = {.lex_state = 46}, - [2294] = {.lex_state = 43, .external_lex_state = 10}, - [2295] = {.lex_state = 43, .external_lex_state = 10}, - [2296] = {.lex_state = 39}, - [2297] = {.lex_state = 50}, - [2298] = {.lex_state = 46, .external_lex_state = 2}, - [2299] = {.lex_state = 9}, - [2300] = {.lex_state = 44, .external_lex_state = 20}, - [2301] = {.lex_state = 44, .external_lex_state = 10}, - [2302] = {.lex_state = 43, .external_lex_state = 10}, - [2303] = {.lex_state = 43, .external_lex_state = 10}, - [2304] = {.lex_state = 47, .external_lex_state = 10}, - [2305] = {.lex_state = 44, .external_lex_state = 20}, + [2274] = {.lex_state = 44, .external_lex_state = 10}, + [2275] = {.lex_state = 48, .external_lex_state = 10}, + [2276] = {.lex_state = 45, .external_lex_state = 21}, + [2277] = {.lex_state = 45, .external_lex_state = 10}, + [2278] = {.lex_state = 40}, + [2279] = {.lex_state = 45, .external_lex_state = 10}, + [2280] = {.lex_state = 45, .external_lex_state = 10}, + [2281] = {.lex_state = 45, .external_lex_state = 21}, + [2282] = {.lex_state = 48, .external_lex_state = 10}, + [2283] = {.lex_state = 45, .external_lex_state = 21}, + [2284] = {.lex_state = 45, .external_lex_state = 10}, + [2285] = {.lex_state = 52, .external_lex_state = 20}, + [2286] = {.lex_state = 48, .external_lex_state = 10}, + [2287] = {.lex_state = 52, .external_lex_state = 10}, + [2288] = {.lex_state = 45, .external_lex_state = 10}, + [2289] = {.lex_state = 45, .external_lex_state = 10}, + [2290] = {.lex_state = 45, .external_lex_state = 10}, + [2291] = {.lex_state = 45, .external_lex_state = 10}, + [2292] = {.lex_state = 52, .external_lex_state = 20}, + [2293] = {.lex_state = 48, .external_lex_state = 10}, + [2294] = {.lex_state = 52, .external_lex_state = 10}, + [2295] = {.lex_state = 45, .external_lex_state = 10}, + [2296] = {.lex_state = 45, .external_lex_state = 10}, + [2297] = {.lex_state = 45, .external_lex_state = 10}, + [2298] = {.lex_state = 45, .external_lex_state = 10}, + [2299] = {.lex_state = 45, .external_lex_state = 10}, + [2300] = {.lex_state = 38}, + [2301] = {.lex_state = 51}, + [2302] = {.lex_state = 9}, + [2303] = {.lex_state = 9}, + [2304] = {.lex_state = 47}, + [2305] = {.lex_state = 44, .external_lex_state = 10}, [2306] = {.lex_state = 44, .external_lex_state = 10}, - [2307] = {.lex_state = 39}, - [2308] = {.lex_state = 44, .external_lex_state = 10}, - [2309] = {.lex_state = 44, .external_lex_state = 10}, - [2310] = {.lex_state = 44, .external_lex_state = 20}, - [2311] = {.lex_state = 47, .external_lex_state = 10}, - [2312] = {.lex_state = 44, .external_lex_state = 20}, + [2307] = {.lex_state = 40}, + [2308] = {.lex_state = 51}, + [2309] = {.lex_state = 47, .external_lex_state = 2}, + [2310] = {.lex_state = 9}, + [2311] = {.lex_state = 45, .external_lex_state = 21}, + [2312] = {.lex_state = 45, .external_lex_state = 10}, [2313] = {.lex_state = 44, .external_lex_state = 10}, - [2314] = {.lex_state = 51, .external_lex_state = 19}, - [2315] = {.lex_state = 47, .external_lex_state = 10}, - [2316] = {.lex_state = 51, .external_lex_state = 10}, - [2317] = {.lex_state = 44, .external_lex_state = 10}, - [2318] = {.lex_state = 44, .external_lex_state = 10}, - [2319] = {.lex_state = 44, .external_lex_state = 10}, - [2320] = {.lex_state = 44, .external_lex_state = 10}, - [2321] = {.lex_state = 51, .external_lex_state = 19}, - [2322] = {.lex_state = 47, .external_lex_state = 10}, - [2323] = {.lex_state = 51, .external_lex_state = 10}, - [2324] = {.lex_state = 44, .external_lex_state = 10}, - [2325] = {.lex_state = 44, .external_lex_state = 10}, - [2326] = {.lex_state = 44, .external_lex_state = 10}, - [2327] = {.lex_state = 44, .external_lex_state = 10}, - [2328] = {.lex_state = 44, .external_lex_state = 10}, - [2329] = {.lex_state = 9}, - [2330] = {.lex_state = 43, .external_lex_state = 10}, - [2331] = {.lex_state = 43, .external_lex_state = 10}, - [2332] = {.lex_state = 46, .external_lex_state = 2}, - [2333] = {.lex_state = 9}, - [2334] = {.lex_state = 44, .external_lex_state = 20}, - [2335] = {.lex_state = 44, .external_lex_state = 10}, - [2336] = {.lex_state = 43, .external_lex_state = 10}, - [2337] = {.lex_state = 43, .external_lex_state = 10}, - [2338] = {.lex_state = 47, .external_lex_state = 10}, - [2339] = {.lex_state = 44, .external_lex_state = 20}, - [2340] = {.lex_state = 44, .external_lex_state = 10}, + [2314] = {.lex_state = 44, .external_lex_state = 10}, + [2315] = {.lex_state = 48, .external_lex_state = 10}, + [2316] = {.lex_state = 45, .external_lex_state = 21}, + [2317] = {.lex_state = 45, .external_lex_state = 10}, + [2318] = {.lex_state = 40}, + [2319] = {.lex_state = 45, .external_lex_state = 10}, + [2320] = {.lex_state = 45, .external_lex_state = 10}, + [2321] = {.lex_state = 45, .external_lex_state = 21}, + [2322] = {.lex_state = 48, .external_lex_state = 10}, + [2323] = {.lex_state = 45, .external_lex_state = 21}, + [2324] = {.lex_state = 45, .external_lex_state = 10}, + [2325] = {.lex_state = 52, .external_lex_state = 20}, + [2326] = {.lex_state = 48, .external_lex_state = 10}, + [2327] = {.lex_state = 52, .external_lex_state = 10}, + [2328] = {.lex_state = 45, .external_lex_state = 10}, + [2329] = {.lex_state = 45, .external_lex_state = 10}, + [2330] = {.lex_state = 45, .external_lex_state = 10}, + [2331] = {.lex_state = 45, .external_lex_state = 10}, + [2332] = {.lex_state = 52, .external_lex_state = 20}, + [2333] = {.lex_state = 48, .external_lex_state = 10}, + [2334] = {.lex_state = 52, .external_lex_state = 10}, + [2335] = {.lex_state = 45, .external_lex_state = 10}, + [2336] = {.lex_state = 45, .external_lex_state = 10}, + [2337] = {.lex_state = 45, .external_lex_state = 10}, + [2338] = {.lex_state = 45, .external_lex_state = 10}, + [2339] = {.lex_state = 45, .external_lex_state = 10}, + [2340] = {.lex_state = 9}, [2341] = {.lex_state = 44, .external_lex_state = 10}, [2342] = {.lex_state = 44, .external_lex_state = 10}, - [2343] = {.lex_state = 44, .external_lex_state = 20}, - [2344] = {.lex_state = 47, .external_lex_state = 10}, - [2345] = {.lex_state = 44, .external_lex_state = 20}, - [2346] = {.lex_state = 44, .external_lex_state = 10}, - [2347] = {.lex_state = 51, .external_lex_state = 19}, - [2348] = {.lex_state = 47, .external_lex_state = 10}, - [2349] = {.lex_state = 51, .external_lex_state = 10}, - [2350] = {.lex_state = 44, .external_lex_state = 10}, - [2351] = {.lex_state = 44, .external_lex_state = 10}, - [2352] = {.lex_state = 44, .external_lex_state = 10}, - [2353] = {.lex_state = 44, .external_lex_state = 10}, - [2354] = {.lex_state = 51, .external_lex_state = 19}, - [2355] = {.lex_state = 47, .external_lex_state = 10}, - [2356] = {.lex_state = 51, .external_lex_state = 10}, - [2357] = {.lex_state = 44, .external_lex_state = 10}, - [2358] = {.lex_state = 44, .external_lex_state = 10}, - [2359] = {.lex_state = 44, .external_lex_state = 10}, - [2360] = {.lex_state = 44, .external_lex_state = 10}, - [2361] = {.lex_state = 44, .external_lex_state = 10}, - [2362] = {.lex_state = 9}, - [2363] = {.lex_state = 43, .external_lex_state = 10}, - [2364] = {.lex_state = 43, .external_lex_state = 10}, - [2365] = {.lex_state = 46, .external_lex_state = 2}, - [2366] = {.lex_state = 9}, - [2367] = {.lex_state = 44, .external_lex_state = 20}, - [2368] = {.lex_state = 44, .external_lex_state = 10}, - [2369] = {.lex_state = 43, .external_lex_state = 10}, - [2370] = {.lex_state = 43, .external_lex_state = 10}, - [2371] = {.lex_state = 47, .external_lex_state = 10}, - [2372] = {.lex_state = 44, .external_lex_state = 20}, - [2373] = {.lex_state = 44, .external_lex_state = 10}, + [2343] = {.lex_state = 47, .external_lex_state = 2}, + [2344] = {.lex_state = 9}, + [2345] = {.lex_state = 45, .external_lex_state = 21}, + [2346] = {.lex_state = 45, .external_lex_state = 10}, + [2347] = {.lex_state = 44, .external_lex_state = 10}, + [2348] = {.lex_state = 44, .external_lex_state = 10}, + [2349] = {.lex_state = 48, .external_lex_state = 10}, + [2350] = {.lex_state = 45, .external_lex_state = 21}, + [2351] = {.lex_state = 45, .external_lex_state = 10}, + [2352] = {.lex_state = 45, .external_lex_state = 10}, + [2353] = {.lex_state = 45, .external_lex_state = 10}, + [2354] = {.lex_state = 45, .external_lex_state = 21}, + [2355] = {.lex_state = 48, .external_lex_state = 10}, + [2356] = {.lex_state = 45, .external_lex_state = 21}, + [2357] = {.lex_state = 45, .external_lex_state = 10}, + [2358] = {.lex_state = 52, .external_lex_state = 20}, + [2359] = {.lex_state = 48, .external_lex_state = 10}, + [2360] = {.lex_state = 52, .external_lex_state = 10}, + [2361] = {.lex_state = 45, .external_lex_state = 10}, + [2362] = {.lex_state = 45, .external_lex_state = 10}, + [2363] = {.lex_state = 45, .external_lex_state = 10}, + [2364] = {.lex_state = 45, .external_lex_state = 10}, + [2365] = {.lex_state = 52, .external_lex_state = 20}, + [2366] = {.lex_state = 48, .external_lex_state = 10}, + [2367] = {.lex_state = 52, .external_lex_state = 10}, + [2368] = {.lex_state = 45, .external_lex_state = 10}, + [2369] = {.lex_state = 45, .external_lex_state = 10}, + [2370] = {.lex_state = 45, .external_lex_state = 10}, + [2371] = {.lex_state = 45, .external_lex_state = 10}, + [2372] = {.lex_state = 45, .external_lex_state = 10}, + [2373] = {.lex_state = 9}, [2374] = {.lex_state = 44, .external_lex_state = 10}, [2375] = {.lex_state = 44, .external_lex_state = 10}, - [2376] = {.lex_state = 44, .external_lex_state = 20}, - [2377] = {.lex_state = 47, .external_lex_state = 10}, - [2378] = {.lex_state = 44, .external_lex_state = 20}, - [2379] = {.lex_state = 44, .external_lex_state = 10}, - [2380] = {.lex_state = 51, .external_lex_state = 19}, - [2381] = {.lex_state = 47, .external_lex_state = 10}, - [2382] = {.lex_state = 51, .external_lex_state = 10}, - [2383] = {.lex_state = 44, .external_lex_state = 10}, - [2384] = {.lex_state = 44, .external_lex_state = 10}, - [2385] = {.lex_state = 44, .external_lex_state = 10}, - [2386] = {.lex_state = 44, .external_lex_state = 10}, - [2387] = {.lex_state = 51, .external_lex_state = 19}, - [2388] = {.lex_state = 47, .external_lex_state = 10}, - [2389] = {.lex_state = 51, .external_lex_state = 10}, - [2390] = {.lex_state = 44, .external_lex_state = 10}, - [2391] = {.lex_state = 44, .external_lex_state = 10}, - [2392] = {.lex_state = 44, .external_lex_state = 10}, - [2393] = {.lex_state = 44, .external_lex_state = 10}, - [2394] = {.lex_state = 44, .external_lex_state = 10}, - [2395] = {.lex_state = 9, .external_lex_state = 2}, - [2396] = {.lex_state = 9, .external_lex_state = 2}, - [2397] = {.lex_state = 9, .external_lex_state = 2}, - [2398] = {.lex_state = 37, .external_lex_state = 6}, - [2399] = {.lex_state = 51}, - [2400] = {.lex_state = 36}, - [2401] = {.lex_state = 52}, - [2402] = {.lex_state = 51}, - [2403] = {.lex_state = 9, .external_lex_state = 2}, - [2404] = {.lex_state = 9, .external_lex_state = 2}, - [2405] = {.lex_state = 36}, - [2406] = {.lex_state = 36}, - [2407] = {.lex_state = 52}, - [2408] = {.lex_state = 40, .external_lex_state = 6}, - [2409] = {.lex_state = 52}, - [2410] = {.lex_state = 9}, - [2411] = {.lex_state = 51}, - [2412] = {.lex_state = 36}, - [2413] = {.lex_state = 46}, - [2414] = {.lex_state = 4, .external_lex_state = 12}, - [2415] = {.lex_state = 52}, - [2416] = {.lex_state = 9}, - [2417] = {.lex_state = 4, .external_lex_state = 12}, - [2418] = {.lex_state = 4, .external_lex_state = 12}, - [2419] = {.lex_state = 4, .external_lex_state = 12}, - [2420] = {.lex_state = 4, .external_lex_state = 12}, - [2421] = {.lex_state = 36}, - [2422] = {.lex_state = 22, .external_lex_state = 12}, - [2423] = {.lex_state = 46}, - [2424] = {.lex_state = 46}, - [2425] = {.lex_state = 42}, - [2426] = {.lex_state = 36}, - [2427] = {.lex_state = 46}, - [2428] = {.lex_state = 46}, - [2429] = {.lex_state = 42}, - [2430] = {.lex_state = 36}, - [2431] = {.lex_state = 42}, - [2432] = {.lex_state = 51, .external_lex_state = 22}, - [2433] = {.lex_state = 3, .external_lex_state = 5}, - [2434] = {.lex_state = 3, .external_lex_state = 5}, - [2435] = {.lex_state = 46}, - [2436] = {.lex_state = 46}, - [2437] = {.lex_state = 46}, - [2438] = {.lex_state = 9, .external_lex_state = 2}, - [2439] = {.lex_state = 9, .external_lex_state = 2}, - [2440] = {.lex_state = 37, .external_lex_state = 6}, - [2441] = {.lex_state = 52}, - [2442] = {.lex_state = 51}, - [2443] = {.lex_state = 9, .external_lex_state = 2}, - [2444] = {.lex_state = 52}, - [2445] = {.lex_state = 40, .external_lex_state = 6}, - [2446] = {.lex_state = 52}, - [2447] = {.lex_state = 36}, - [2448] = {.lex_state = 52}, - [2449] = {.lex_state = 9, .external_lex_state = 2}, + [2376] = {.lex_state = 47, .external_lex_state = 2}, + [2377] = {.lex_state = 9}, + [2378] = {.lex_state = 45, .external_lex_state = 21}, + [2379] = {.lex_state = 45, .external_lex_state = 10}, + [2380] = {.lex_state = 44, .external_lex_state = 10}, + [2381] = {.lex_state = 44, .external_lex_state = 10}, + [2382] = {.lex_state = 48, .external_lex_state = 10}, + [2383] = {.lex_state = 45, .external_lex_state = 21}, + [2384] = {.lex_state = 45, .external_lex_state = 10}, + [2385] = {.lex_state = 45, .external_lex_state = 10}, + [2386] = {.lex_state = 45, .external_lex_state = 10}, + [2387] = {.lex_state = 45, .external_lex_state = 21}, + [2388] = {.lex_state = 48, .external_lex_state = 10}, + [2389] = {.lex_state = 45, .external_lex_state = 21}, + [2390] = {.lex_state = 45, .external_lex_state = 10}, + [2391] = {.lex_state = 52, .external_lex_state = 20}, + [2392] = {.lex_state = 48, .external_lex_state = 10}, + [2393] = {.lex_state = 52, .external_lex_state = 10}, + [2394] = {.lex_state = 45, .external_lex_state = 10}, + [2395] = {.lex_state = 45, .external_lex_state = 10}, + [2396] = {.lex_state = 45, .external_lex_state = 10}, + [2397] = {.lex_state = 45, .external_lex_state = 10}, + [2398] = {.lex_state = 52, .external_lex_state = 20}, + [2399] = {.lex_state = 48, .external_lex_state = 10}, + [2400] = {.lex_state = 52, .external_lex_state = 10}, + [2401] = {.lex_state = 45, .external_lex_state = 10}, + [2402] = {.lex_state = 45, .external_lex_state = 10}, + [2403] = {.lex_state = 45, .external_lex_state = 10}, + [2404] = {.lex_state = 45, .external_lex_state = 10}, + [2405] = {.lex_state = 45, .external_lex_state = 10}, + [2406] = {.lex_state = 9, .external_lex_state = 2}, + [2407] = {.lex_state = 9, .external_lex_state = 2}, + [2408] = {.lex_state = 9, .external_lex_state = 2}, + [2409] = {.lex_state = 38, .external_lex_state = 6}, + [2410] = {.lex_state = 52}, + [2411] = {.lex_state = 37}, + [2412] = {.lex_state = 53}, + [2413] = {.lex_state = 52}, + [2414] = {.lex_state = 9, .external_lex_state = 2}, + [2415] = {.lex_state = 9, .external_lex_state = 2}, + [2416] = {.lex_state = 37}, + [2417] = {.lex_state = 37}, + [2418] = {.lex_state = 53}, + [2419] = {.lex_state = 41, .external_lex_state = 6}, + [2420] = {.lex_state = 53}, + [2421] = {.lex_state = 9}, + [2422] = {.lex_state = 52}, + [2423] = {.lex_state = 37}, + [2424] = {.lex_state = 47}, + [2425] = {.lex_state = 4, .external_lex_state = 12}, + [2426] = {.lex_state = 53}, + [2427] = {.lex_state = 9}, + [2428] = {.lex_state = 4, .external_lex_state = 12}, + [2429] = {.lex_state = 4, .external_lex_state = 12}, + [2430] = {.lex_state = 4, .external_lex_state = 12}, + [2431] = {.lex_state = 4, .external_lex_state = 12}, + [2432] = {.lex_state = 37}, + [2433] = {.lex_state = 23, .external_lex_state = 12}, + [2434] = {.lex_state = 47}, + [2435] = {.lex_state = 47}, + [2436] = {.lex_state = 43}, + [2437] = {.lex_state = 37}, + [2438] = {.lex_state = 47}, + [2439] = {.lex_state = 47}, + [2440] = {.lex_state = 43}, + [2441] = {.lex_state = 37}, + [2442] = {.lex_state = 43}, + [2443] = {.lex_state = 4, .external_lex_state = 11}, + [2444] = {.lex_state = 52, .external_lex_state = 23}, + [2445] = {.lex_state = 3, .external_lex_state = 5}, + [2446] = {.lex_state = 3, .external_lex_state = 5}, + [2447] = {.lex_state = 47}, + [2448] = {.lex_state = 47}, + [2449] = {.lex_state = 47}, [2450] = {.lex_state = 9, .external_lex_state = 2}, - [2451] = {.lex_state = 37, .external_lex_state = 6}, - [2452] = {.lex_state = 52}, - [2453] = {.lex_state = 51}, - [2454] = {.lex_state = 9, .external_lex_state = 2}, - [2455] = {.lex_state = 52}, - [2456] = {.lex_state = 40, .external_lex_state = 6}, - [2457] = {.lex_state = 52}, - [2458] = {.lex_state = 52}, - [2459] = {.lex_state = 9, .external_lex_state = 2}, - [2460] = {.lex_state = 9, .external_lex_state = 2}, - [2461] = {.lex_state = 37, .external_lex_state = 6}, - [2462] = {.lex_state = 52}, - [2463] = {.lex_state = 9, .external_lex_state = 2}, - [2464] = {.lex_state = 52}, - [2465] = {.lex_state = 40, .external_lex_state = 6}, - [2466] = {.lex_state = 52}, - [2467] = {.lex_state = 52}, - [2468] = {.lex_state = 9, .external_lex_state = 2}, - [2469] = {.lex_state = 9, .external_lex_state = 2}, - [2470] = {.lex_state = 37, .external_lex_state = 6}, - [2471] = {.lex_state = 52}, + [2451] = {.lex_state = 9, .external_lex_state = 2}, + [2452] = {.lex_state = 38, .external_lex_state = 6}, + [2453] = {.lex_state = 53}, + [2454] = {.lex_state = 52}, + [2455] = {.lex_state = 9, .external_lex_state = 2}, + [2456] = {.lex_state = 53}, + [2457] = {.lex_state = 41, .external_lex_state = 6}, + [2458] = {.lex_state = 53}, + [2459] = {.lex_state = 37}, + [2460] = {.lex_state = 53}, + [2461] = {.lex_state = 9, .external_lex_state = 2}, + [2462] = {.lex_state = 9, .external_lex_state = 2}, + [2463] = {.lex_state = 38, .external_lex_state = 6}, + [2464] = {.lex_state = 53}, + [2465] = {.lex_state = 52}, + [2466] = {.lex_state = 9, .external_lex_state = 2}, + [2467] = {.lex_state = 53}, + [2468] = {.lex_state = 41, .external_lex_state = 6}, + [2469] = {.lex_state = 53}, + [2470] = {.lex_state = 53}, + [2471] = {.lex_state = 9, .external_lex_state = 2}, [2472] = {.lex_state = 9, .external_lex_state = 2}, - [2473] = {.lex_state = 52}, - [2474] = {.lex_state = 40, .external_lex_state = 6}, - [2475] = {.lex_state = 52}, - [2476] = {.lex_state = 52}, - [2477] = {.lex_state = 9, .external_lex_state = 2}, - [2478] = {.lex_state = 9, .external_lex_state = 2}, - [2479] = {.lex_state = 37, .external_lex_state = 6}, - [2480] = {.lex_state = 52}, + [2473] = {.lex_state = 38, .external_lex_state = 6}, + [2474] = {.lex_state = 53}, + [2475] = {.lex_state = 9, .external_lex_state = 2}, + [2476] = {.lex_state = 53}, + [2477] = {.lex_state = 41, .external_lex_state = 6}, + [2478] = {.lex_state = 53}, + [2479] = {.lex_state = 53}, + [2480] = {.lex_state = 9, .external_lex_state = 2}, [2481] = {.lex_state = 9, .external_lex_state = 2}, - [2482] = {.lex_state = 52}, - [2483] = {.lex_state = 40, .external_lex_state = 6}, - [2484] = {.lex_state = 52}, - [2485] = {.lex_state = 52}, - [2486] = {.lex_state = 9, .external_lex_state = 2}, - [2487] = {.lex_state = 9, .external_lex_state = 2}, - [2488] = {.lex_state = 37, .external_lex_state = 6}, + [2482] = {.lex_state = 38, .external_lex_state = 6}, + [2483] = {.lex_state = 53}, + [2484] = {.lex_state = 9, .external_lex_state = 2}, + [2485] = {.lex_state = 53}, + [2486] = {.lex_state = 41, .external_lex_state = 6}, + [2487] = {.lex_state = 53}, + [2488] = {.lex_state = 53}, [2489] = {.lex_state = 9, .external_lex_state = 2}, - [2490] = {.lex_state = 40, .external_lex_state = 6}, - [2491] = {.lex_state = 52}, - [2492] = {.lex_state = 52}, + [2490] = {.lex_state = 9, .external_lex_state = 2}, + [2491] = {.lex_state = 38, .external_lex_state = 6}, + [2492] = {.lex_state = 53}, [2493] = {.lex_state = 9, .external_lex_state = 2}, - [2494] = {.lex_state = 9, .external_lex_state = 2}, - [2495] = {.lex_state = 37, .external_lex_state = 6}, - [2496] = {.lex_state = 9, .external_lex_state = 2}, - [2497] = {.lex_state = 40, .external_lex_state = 6}, - [2498] = {.lex_state = 52}, - [2499] = {.lex_state = 52}, - [2500] = {.lex_state = 9, .external_lex_state = 2}, - [2501] = {.lex_state = 9, .external_lex_state = 2}, - [2502] = {.lex_state = 37, .external_lex_state = 6}, - [2503] = {.lex_state = 9, .external_lex_state = 2}, - [2504] = {.lex_state = 40, .external_lex_state = 6}, - [2505] = {.lex_state = 52}, - [2506] = {.lex_state = 52}, + [2494] = {.lex_state = 53}, + [2495] = {.lex_state = 41, .external_lex_state = 6}, + [2496] = {.lex_state = 53}, + [2497] = {.lex_state = 53}, + [2498] = {.lex_state = 9, .external_lex_state = 2}, + [2499] = {.lex_state = 9, .external_lex_state = 2}, + [2500] = {.lex_state = 38, .external_lex_state = 6}, + [2501] = {.lex_state = 53}, + [2502] = {.lex_state = 9, .external_lex_state = 2}, + [2503] = {.lex_state = 53}, + [2504] = {.lex_state = 41, .external_lex_state = 6}, + [2505] = {.lex_state = 53}, + [2506] = {.lex_state = 53}, [2507] = {.lex_state = 9, .external_lex_state = 2}, [2508] = {.lex_state = 9, .external_lex_state = 2}, - [2509] = {.lex_state = 37, .external_lex_state = 6}, + [2509] = {.lex_state = 38, .external_lex_state = 6}, [2510] = {.lex_state = 9, .external_lex_state = 2}, - [2511] = {.lex_state = 40, .external_lex_state = 6}, - [2512] = {.lex_state = 52}, - [2513] = {.lex_state = 52}, + [2511] = {.lex_state = 41, .external_lex_state = 6}, + [2512] = {.lex_state = 53}, + [2513] = {.lex_state = 53}, [2514] = {.lex_state = 9, .external_lex_state = 2}, [2515] = {.lex_state = 9, .external_lex_state = 2}, - [2516] = {.lex_state = 37, .external_lex_state = 6}, + [2516] = {.lex_state = 38, .external_lex_state = 6}, [2517] = {.lex_state = 9, .external_lex_state = 2}, - [2518] = {.lex_state = 40, .external_lex_state = 6}, - [2519] = {.lex_state = 52}, - [2520] = {.lex_state = 52}, + [2518] = {.lex_state = 41, .external_lex_state = 6}, + [2519] = {.lex_state = 53}, + [2520] = {.lex_state = 53}, [2521] = {.lex_state = 9, .external_lex_state = 2}, [2522] = {.lex_state = 9, .external_lex_state = 2}, - [2523] = {.lex_state = 37, .external_lex_state = 6}, + [2523] = {.lex_state = 38, .external_lex_state = 6}, [2524] = {.lex_state = 9, .external_lex_state = 2}, - [2525] = {.lex_state = 40, .external_lex_state = 6}, - [2526] = {.lex_state = 52}, - [2527] = {.lex_state = 52}, + [2525] = {.lex_state = 41, .external_lex_state = 6}, + [2526] = {.lex_state = 53}, + [2527] = {.lex_state = 53}, [2528] = {.lex_state = 9, .external_lex_state = 2}, [2529] = {.lex_state = 9, .external_lex_state = 2}, - [2530] = {.lex_state = 37, .external_lex_state = 6}, + [2530] = {.lex_state = 38, .external_lex_state = 6}, [2531] = {.lex_state = 9, .external_lex_state = 2}, - [2532] = {.lex_state = 40, .external_lex_state = 6}, - [2533] = {.lex_state = 52}, - [2534] = {.lex_state = 52}, + [2532] = {.lex_state = 41, .external_lex_state = 6}, + [2533] = {.lex_state = 53}, + [2534] = {.lex_state = 53}, [2535] = {.lex_state = 9, .external_lex_state = 2}, [2536] = {.lex_state = 9, .external_lex_state = 2}, - [2537] = {.lex_state = 37, .external_lex_state = 6}, + [2537] = {.lex_state = 38, .external_lex_state = 6}, [2538] = {.lex_state = 9, .external_lex_state = 2}, - [2539] = {.lex_state = 40, .external_lex_state = 6}, - [2540] = {.lex_state = 52}, - [2541] = {.lex_state = 52}, + [2539] = {.lex_state = 41, .external_lex_state = 6}, + [2540] = {.lex_state = 53}, + [2541] = {.lex_state = 53}, [2542] = {.lex_state = 9, .external_lex_state = 2}, [2543] = {.lex_state = 9, .external_lex_state = 2}, - [2544] = {.lex_state = 37, .external_lex_state = 6}, + [2544] = {.lex_state = 38, .external_lex_state = 6}, [2545] = {.lex_state = 9, .external_lex_state = 2}, - [2546] = {.lex_state = 40, .external_lex_state = 6}, - [2547] = {.lex_state = 52}, - [2548] = {.lex_state = 52}, + [2546] = {.lex_state = 41, .external_lex_state = 6}, + [2547] = {.lex_state = 53}, + [2548] = {.lex_state = 53}, [2549] = {.lex_state = 9, .external_lex_state = 2}, [2550] = {.lex_state = 9, .external_lex_state = 2}, - [2551] = {.lex_state = 37, .external_lex_state = 6}, + [2551] = {.lex_state = 38, .external_lex_state = 6}, [2552] = {.lex_state = 9, .external_lex_state = 2}, - [2553] = {.lex_state = 40, .external_lex_state = 6}, - [2554] = {.lex_state = 52}, - [2555] = {.lex_state = 52}, + [2553] = {.lex_state = 41, .external_lex_state = 6}, + [2554] = {.lex_state = 53}, + [2555] = {.lex_state = 53}, [2556] = {.lex_state = 9, .external_lex_state = 2}, [2557] = {.lex_state = 9, .external_lex_state = 2}, - [2558] = {.lex_state = 37, .external_lex_state = 6}, + [2558] = {.lex_state = 38, .external_lex_state = 6}, [2559] = {.lex_state = 9, .external_lex_state = 2}, - [2560] = {.lex_state = 40, .external_lex_state = 6}, - [2561] = {.lex_state = 52}, - [2562] = {.lex_state = 52}, + [2560] = {.lex_state = 41, .external_lex_state = 6}, + [2561] = {.lex_state = 53}, + [2562] = {.lex_state = 53}, [2563] = {.lex_state = 9, .external_lex_state = 2}, [2564] = {.lex_state = 9, .external_lex_state = 2}, - [2565] = {.lex_state = 37, .external_lex_state = 6}, + [2565] = {.lex_state = 38, .external_lex_state = 6}, [2566] = {.lex_state = 9, .external_lex_state = 2}, - [2567] = {.lex_state = 40, .external_lex_state = 6}, - [2568] = {.lex_state = 52}, - [2569] = {.lex_state = 52}, + [2567] = {.lex_state = 41, .external_lex_state = 6}, + [2568] = {.lex_state = 53}, + [2569] = {.lex_state = 53}, [2570] = {.lex_state = 9, .external_lex_state = 2}, [2571] = {.lex_state = 9, .external_lex_state = 2}, - [2572] = {.lex_state = 37, .external_lex_state = 6}, + [2572] = {.lex_state = 38, .external_lex_state = 6}, [2573] = {.lex_state = 9, .external_lex_state = 2}, - [2574] = {.lex_state = 40, .external_lex_state = 6}, - [2575] = {.lex_state = 52}, - [2576] = {.lex_state = 52}, + [2574] = {.lex_state = 41, .external_lex_state = 6}, + [2575] = {.lex_state = 53}, + [2576] = {.lex_state = 53}, [2577] = {.lex_state = 9, .external_lex_state = 2}, [2578] = {.lex_state = 9, .external_lex_state = 2}, - [2579] = {.lex_state = 37, .external_lex_state = 6}, + [2579] = {.lex_state = 38, .external_lex_state = 6}, [2580] = {.lex_state = 9, .external_lex_state = 2}, - [2581] = {.lex_state = 40, .external_lex_state = 6}, - [2582] = {.lex_state = 52}, - [2583] = {.lex_state = 52}, + [2581] = {.lex_state = 41, .external_lex_state = 6}, + [2582] = {.lex_state = 53}, + [2583] = {.lex_state = 53}, [2584] = {.lex_state = 9, .external_lex_state = 2}, [2585] = {.lex_state = 9, .external_lex_state = 2}, - [2586] = {.lex_state = 37, .external_lex_state = 6}, + [2586] = {.lex_state = 38, .external_lex_state = 6}, [2587] = {.lex_state = 9, .external_lex_state = 2}, - [2588] = {.lex_state = 40, .external_lex_state = 6}, - [2589] = {.lex_state = 52}, - [2590] = {.lex_state = 52}, + [2588] = {.lex_state = 41, .external_lex_state = 6}, + [2589] = {.lex_state = 53}, + [2590] = {.lex_state = 53}, [2591] = {.lex_state = 9, .external_lex_state = 2}, [2592] = {.lex_state = 9, .external_lex_state = 2}, - [2593] = {.lex_state = 37, .external_lex_state = 6}, + [2593] = {.lex_state = 38, .external_lex_state = 6}, [2594] = {.lex_state = 9, .external_lex_state = 2}, - [2595] = {.lex_state = 40, .external_lex_state = 6}, - [2596] = {.lex_state = 52}, - [2597] = {.lex_state = 52}, + [2595] = {.lex_state = 41, .external_lex_state = 6}, + [2596] = {.lex_state = 53}, + [2597] = {.lex_state = 53}, [2598] = {.lex_state = 9, .external_lex_state = 2}, - [2599] = {.lex_state = 37, .external_lex_state = 6}, - [2600] = {.lex_state = 9, .external_lex_state = 2}, - [2601] = {.lex_state = 40, .external_lex_state = 6}, - [2602] = {.lex_state = 52}, - [2603] = {.lex_state = 52}, - [2604] = {.lex_state = 9, .external_lex_state = 2}, - [2605] = {.lex_state = 37, .external_lex_state = 6}, + [2599] = {.lex_state = 9, .external_lex_state = 2}, + [2600] = {.lex_state = 38, .external_lex_state = 6}, + [2601] = {.lex_state = 9, .external_lex_state = 2}, + [2602] = {.lex_state = 41, .external_lex_state = 6}, + [2603] = {.lex_state = 53}, + [2604] = {.lex_state = 53}, + [2605] = {.lex_state = 9, .external_lex_state = 2}, [2606] = {.lex_state = 9, .external_lex_state = 2}, - [2607] = {.lex_state = 40, .external_lex_state = 6}, - [2608] = {.lex_state = 52}, - [2609] = {.lex_state = 52}, - [2610] = {.lex_state = 9, .external_lex_state = 2}, - [2611] = {.lex_state = 52}, - [2612] = {.lex_state = 4, .external_lex_state = 11}, - [2613] = {.lex_state = 4, .external_lex_state = 12}, - [2614] = {.lex_state = 4, .external_lex_state = 12}, - [2615] = {.lex_state = 42}, - [2616] = {.lex_state = 42}, - [2617] = {.lex_state = 16, .external_lex_state = 12}, - [2618] = {.lex_state = 46}, - [2619] = {.lex_state = 18, .external_lex_state = 12}, - [2620] = {.lex_state = 16, .external_lex_state = 12}, - [2621] = {.lex_state = 18, .external_lex_state = 12}, - [2622] = {.lex_state = 3, .external_lex_state = 4}, - [2623] = {.lex_state = 3, .external_lex_state = 4}, - [2624] = {.lex_state = 3, .external_lex_state = 5}, - [2625] = {.lex_state = 3, .external_lex_state = 4}, - [2626] = {.lex_state = 3, .external_lex_state = 5}, - [2627] = {.lex_state = 3, .external_lex_state = 5}, - [2628] = {.lex_state = 46}, - [2629] = {.lex_state = 16, .external_lex_state = 12}, - [2630] = {.lex_state = 18, .external_lex_state = 12}, + [2607] = {.lex_state = 38, .external_lex_state = 6}, + [2608] = {.lex_state = 9, .external_lex_state = 2}, + [2609] = {.lex_state = 41, .external_lex_state = 6}, + [2610] = {.lex_state = 53}, + [2611] = {.lex_state = 53}, + [2612] = {.lex_state = 9, .external_lex_state = 2}, + [2613] = {.lex_state = 38, .external_lex_state = 6}, + [2614] = {.lex_state = 9, .external_lex_state = 2}, + [2615] = {.lex_state = 41, .external_lex_state = 6}, + [2616] = {.lex_state = 53}, + [2617] = {.lex_state = 53}, + [2618] = {.lex_state = 9, .external_lex_state = 2}, + [2619] = {.lex_state = 38, .external_lex_state = 6}, + [2620] = {.lex_state = 9, .external_lex_state = 2}, + [2621] = {.lex_state = 41, .external_lex_state = 6}, + [2622] = {.lex_state = 53}, + [2623] = {.lex_state = 53}, + [2624] = {.lex_state = 9, .external_lex_state = 2}, + [2625] = {.lex_state = 53}, + [2626] = {.lex_state = 4, .external_lex_state = 11}, + [2627] = {.lex_state = 4, .external_lex_state = 12}, + [2628] = {.lex_state = 4, .external_lex_state = 12}, + [2629] = {.lex_state = 43}, + [2630] = {.lex_state = 43}, + [2631] = {.lex_state = 17, .external_lex_state = 12}, + [2632] = {.lex_state = 47}, + [2633] = {.lex_state = 19, .external_lex_state = 12}, + [2634] = {.lex_state = 17, .external_lex_state = 12}, + [2635] = {.lex_state = 19, .external_lex_state = 12}, + [2636] = {.lex_state = 3, .external_lex_state = 4}, + [2637] = {.lex_state = 3, .external_lex_state = 4}, + [2638] = {.lex_state = 3, .external_lex_state = 5}, + [2639] = {.lex_state = 3, .external_lex_state = 4}, + [2640] = {.lex_state = 3, .external_lex_state = 5}, + [2641] = {.lex_state = 3, .external_lex_state = 5}, + [2642] = {.lex_state = 4, .external_lex_state = 11}, + [2643] = {.lex_state = 47}, + [2644] = {.lex_state = 17, .external_lex_state = 15}, + [2645] = {.lex_state = 4, .external_lex_state = 12}, + [2646] = {.lex_state = 19, .external_lex_state = 12}, }; enum { @@ -7028,7 +7073,7 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = anon_sym_LF, }; -static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[25][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token_LT_LT_DASH] = true, @@ -7107,40 +7152,44 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__empty_value] = true, }, [15] = { - [ts_external_token_RBRACK] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_LF] = true, }, [16] = { + [ts_external_token_RBRACK] = true, + }, + [17] = { [ts_external_token_variable_name] = true, [ts_external_token_file_descriptor] = true, [ts_external_token__heredoc_body_beginning] = true, [ts_external_token__simple_heredoc_body] = true, }, - [17] = { + [18] = { [ts_external_token_heredoc_start] = true, }, - [18] = { + [19] = { [ts_external_token_regex] = true, }, - [19] = { + [20] = { [ts_external_token_RBRACE] = true, [ts_external_token__concat] = true, }, - [20] = { + [21] = { [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, }, - [21] = { + [22] = { [ts_external_token_variable_name] = true, [ts_external_token_file_descriptor] = true, [ts_external_token_RBRACE] = true, [ts_external_token__heredoc_body_beginning] = true, [ts_external_token__simple_heredoc_body] = true, }, - [22] = { + [23] = { [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, }, - [23] = { + [24] = { [ts_external_token__heredoc_body_end] = true, [ts_external_token__heredoc_body_middle] = true, }, @@ -7321,37 +7370,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(61), }, [2] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym__statements] = STATE(37), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -7423,7 +7472,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_declaration_command_repeat1] = STATE(43), [sym_process_substitution] = STATE(41), [sym_simple_expansion] = STATE(41), - [sym_subscript] = STATE(2444), + [sym_subscript] = STATE(2456), [sym_string_expansion] = STATE(41), [sym_variable_assignment] = STATE(43), [sym_concatenation] = STATE(43), @@ -7526,37 +7575,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(179), }, [7] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), [sym__statements] = STATE(50), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -7599,37 +7648,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [8] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym__statements] = STATE(51), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -7770,16 +7819,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(189), }, [13] = { - [aux_sym__literal_repeat1] = STATE(386), + [aux_sym__literal_repeat1] = STATE(387), [sym_if_statement] = STATE(61), [sym_function_definition] = STATE(61), [sym_negated_command] = STATE(61), [sym_test_command] = STATE(61), [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), [aux_sym__statements_repeat1] = STATE(63), [sym_redirected_statement] = STATE(61), [sym_for_statement] = STATE(61), @@ -7787,19 +7836,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(61), [sym_declaration_command] = STATE(61), [sym_unset_command] = STATE(61), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym_c_style_for_statement] = STATE(61), [sym_while_statement] = STATE(61), [sym_case_statement] = STATE(61), [sym_pipeline] = STATE(61), [sym_list] = STATE(61), [sym_command] = STATE(61), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -7882,36 +7931,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(211), }, [15] = { - [aux_sym__literal_repeat1] = STATE(386), + [aux_sym__literal_repeat1] = STATE(387), [sym__terminated_statement] = STATE(64), [sym_if_statement] = STATE(65), [sym_function_definition] = STATE(65), [sym_negated_command] = STATE(65), [sym_test_command] = STATE(65), [sym_variable_assignment] = STATE(66), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), [sym_redirected_statement] = STATE(65), [sym_for_statement] = STATE(65), [sym_compound_statement] = STATE(65), [sym_subshell] = STATE(65), [sym_declaration_command] = STATE(65), [sym_unset_command] = STATE(65), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym_c_style_for_statement] = STATE(65), [sym_while_statement] = STATE(65), [sym_case_statement] = STATE(65), [sym_pipeline] = STATE(65), [sym_list] = STATE(65), [sym_command] = STATE(65), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -8013,7 +8062,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(9), [sym_test_command] = STATE(75), [aux_sym_command_repeat1] = STATE(34), - [sym_subscript] = STATE(2455), + [sym_subscript] = STATE(2467), [sym_variable_assignment] = STATE(34), [sym_concatenation] = STATE(31), [sym_expansion] = STATE(9), @@ -8081,37 +8130,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__string_content] = ACTIONS(277), }, [22] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), [sym_file_redirect] = STATE(83), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym__statements] = STATE(84), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -8159,36 +8208,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_LPAREN] = ACTIONS(281), }, [24] = { - [aux_sym__literal_repeat1] = STATE(386), + [aux_sym__literal_repeat1] = STATE(387), [sym__terminated_statement] = STATE(87), [sym_if_statement] = STATE(65), [sym_function_definition] = STATE(65), [sym_negated_command] = STATE(65), [sym_test_command] = STATE(65), [sym_variable_assignment] = STATE(66), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), [sym_redirected_statement] = STATE(65), [sym_for_statement] = STATE(65), [sym_compound_statement] = STATE(65), [sym_subshell] = STATE(65), [sym_declaration_command] = STATE(65), [sym_unset_command] = STATE(65), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym_c_style_for_statement] = STATE(65), [sym_while_statement] = STATE(65), [sym_case_statement] = STATE(65), [sym_pipeline] = STATE(65), [sym_list] = STATE(65), [sym_command] = STATE(65), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -8231,19 +8280,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, [25] = { - [sym_command_substitution] = STATE(407), + [sym_command_substitution] = STATE(408), [sym_unary_expression] = STATE(88), [sym_postfix_expression] = STATE(88), - [sym_string] = STATE(407), - [aux_sym__literal_repeat1] = STATE(409), - [sym_process_substitution] = STATE(407), + [sym_string] = STATE(408), + [aux_sym__literal_repeat1] = STATE(410), + [sym_process_substitution] = STATE(408), [sym_parenthesized_expression] = STATE(88), - [sym_simple_expansion] = STATE(407), - [sym_string_expansion] = STATE(407), + [sym_simple_expansion] = STATE(408), + [sym_string_expansion] = STATE(408), [sym__expression] = STATE(88), [sym_binary_expression] = STATE(88), [sym_concatenation] = STATE(88), - [sym_expansion] = STATE(407), + [sym_expansion] = STATE(408), [anon_sym_LPAREN] = ACTIONS(283), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(285), @@ -8524,7 +8573,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(9), [sym_simple_expansion] = STATE(9), [sym_string_expansion] = STATE(9), - [sym_subscript] = STATE(2455), + [sym_subscript] = STATE(2467), [sym_variable_assignment] = STATE(103), [aux_sym_command_repeat1] = STATE(103), [sym_concatenation] = STATE(31), @@ -8607,7 +8656,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(41), }, [38] = { - [aux_sym_concatenation_repeat1] = STATE(558), + [aux_sym_concatenation_repeat1] = STATE(559), [anon_sym_AMP_GT_GT] = ACTIONS(361), [anon_sym_DOLLAR] = ACTIONS(363), [anon_sym_BQUOTE] = ACTIONS(361), @@ -8634,7 +8683,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(361), }, [39] = { - [aux_sym__literal_repeat1] = STATE(564), + [aux_sym__literal_repeat1] = STATE(565), [anon_sym_AMP_GT_GT] = ACTIONS(367), [anon_sym_DOLLAR] = ACTIONS(369), [anon_sym_BQUOTE] = ACTIONS(367), @@ -8685,7 +8734,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(361), }, [41] = { - [aux_sym_concatenation_repeat1] = STATE(643), + [aux_sym_concatenation_repeat1] = STATE(644), [anon_sym_AMP] = ACTIONS(373), [anon_sym_AMP_GT_GT] = ACTIONS(373), [anon_sym_DOLLAR] = ACTIONS(373), @@ -8724,7 +8773,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(373), }, [42] = { - [aux_sym__literal_repeat1] = STATE(646), + [aux_sym__literal_repeat1] = STATE(647), [anon_sym_AMP] = ACTIONS(379), [anon_sym_AMP_GT_GT] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(379), @@ -8768,7 +8817,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_declaration_command_repeat1] = STATE(109), [sym_process_substitution] = STATE(41), [sym_simple_expansion] = STATE(41), - [sym_subscript] = STATE(2444), + [sym_subscript] = STATE(2456), [sym_string_expansion] = STATE(41), [sym_variable_assignment] = STATE(109), [sym_concatenation] = STATE(109), @@ -8810,7 +8859,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(385), }, [44] = { - [aux_sym_concatenation_repeat1] = STATE(699), + [aux_sym_concatenation_repeat1] = STATE(700), [anon_sym_AMP] = ACTIONS(391), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(391), @@ -8848,7 +8897,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(391), }, [45] = { - [aux_sym__literal_repeat1] = STATE(702), + [aux_sym__literal_repeat1] = STATE(703), [anon_sym_AMP] = ACTIONS(397), [anon_sym_AMP_GT_GT] = ACTIONS(397), [anon_sym_DOLLAR] = ACTIONS(397), @@ -9229,10 +9278,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(485), }, [61] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_LT_LT_DASH] = ACTIONS(489), [anon_sym_PIPE_AMP] = ACTIONS(491), [anon_sym_AMP_GT_GT] = ACTIONS(493), @@ -9255,10 +9304,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(497), }, [62] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_PIPE_AMP] = ACTIONS(491), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), @@ -9294,36 +9343,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(497), }, [63] = { - [aux_sym__literal_repeat1] = STATE(386), + [aux_sym__literal_repeat1] = STATE(387), [sym_if_statement] = STATE(61), [sym_function_definition] = STATE(61), [sym_negated_command] = STATE(61), [sym_test_command] = STATE(61), [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(421), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(422), [sym_redirected_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_compound_statement] = STATE(61), [sym_subshell] = STATE(61), [sym_declaration_command] = STATE(61), [sym_unset_command] = STATE(61), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym_c_style_for_statement] = STATE(61), [sym_while_statement] = STATE(61), [sym_case_statement] = STATE(61), [sym_pipeline] = STATE(61), [sym_list] = STATE(61), [sym_command] = STATE(61), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -9371,10 +9420,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(41), }, [65] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_PIPE_AMP] = ACTIONS(491), [anon_sym_AMP_GT_GT] = ACTIONS(493), [anon_sym_LT_LT] = ACTIONS(489), @@ -9397,10 +9446,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(511), }, [66] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_AMP] = ACTIONS(511), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), @@ -9436,7 +9485,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(491), }, [67] = { - [aux_sym_concatenation_repeat1] = STATE(738), + [aux_sym_concatenation_repeat1] = STATE(739), [anon_sym_SEMI_SEMI] = ACTIONS(513), [sym_comment] = ACTIONS(3), [sym__concat] = ACTIONS(515), @@ -9446,7 +9495,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(513), }, [68] = { - [aux_sym__literal_repeat1] = STATE(741), + [aux_sym__literal_repeat1] = STATE(742), [anon_sym_in] = ACTIONS(521), [anon_sym_SEMI] = ACTIONS(523), [sym_comment] = ACTIONS(3), @@ -9495,7 +9544,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__special_character] = ACTIONS(255), }, [71] = { - [aux_sym_concatenation_repeat1] = STATE(775), + [aux_sym_concatenation_repeat1] = STATE(776), [anon_sym_PLUS_EQ] = ACTIONS(529), [anon_sym_PLUS_PLUS] = ACTIONS(529), [anon_sym_DASH] = ACTIONS(531), @@ -9551,7 +9600,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__special_character] = ACTIONS(255), }, [73] = { - [aux_sym__literal_repeat1] = STATE(778), + [aux_sym__literal_repeat1] = STATE(779), [anon_sym_PLUS_EQ] = ACTIONS(535), [anon_sym_PLUS_PLUS] = ACTIONS(535), [anon_sym_DASH] = ACTIONS(537), @@ -9797,73 +9846,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(41), }, [85] = { - [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(163), - [sym_postfix_expression] = STATE(163), - [sym_string] = STATE(559), - [aux_sym__literal_repeat1] = STATE(561), - [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(163), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(163), - [sym_binary_expression] = STATE(163), - [sym_concatenation] = STATE(163), - [sym_expansion] = STATE(559), + [aux_sym__literal_repeat1] = STATE(562), + [sym_unary_expression] = STATE(164), + [sym_postfix_expression] = STATE(164), + [sym_string] = STATE(560), + [sym_process_substitution] = STATE(560), + [sym_variable_assignment] = STATE(163), + [sym_subscript] = STATE(2485), + [sym__expression] = STATE(164), + [sym_binary_expression] = STATE(164), + [sym_concatenation] = STATE(164), + [sym_expansion] = STATE(560), + [sym_command_substitution] = STATE(560), + [sym_parenthesized_expression] = STATE(164), + [sym_simple_expansion] = STATE(560), + [sym_string_expansion] = STATE(560), [anon_sym_LPAREN] = ACTIONS(607), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(609), [anon_sym_LF] = ACTIONS(611), [anon_sym_BANG] = ACTIONS(613), [anon_sym_SEMI] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(615), + [sym_variable_name] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(617), [sym_test_operator] = ACTIONS(613), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_GT_LPAREN] = ACTIONS(619), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_GT_LPAREN] = ACTIONS(621), [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(625), [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_LT_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_LT_LPAREN] = ACTIONS(621), [sym_ansii_c_string] = ACTIONS(609), - [sym__special_character] = ACTIONS(627), + [sym__special_character] = ACTIONS(629), [anon_sym_SEMI_SEMI] = ACTIONS(611), [anon_sym_AMP] = ACTIONS(611), }, [86] = { - [anon_sym_AMP] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(631), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_in] = ACTIONS(633), - [anon_sym_SEMI_SEMI] = ACTIONS(629), + [anon_sym_LF] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym_in] = ACTIONS(635), + [anon_sym_SEMI_SEMI] = ACTIONS(631), }, [87] = { - [sym_do_group] = STATE(167), + [sym_do_group] = STATE(168), [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), }, [88] = { - [anon_sym_BANG_EQ] = ACTIONS(637), - [anon_sym_PLUS_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(639), + [anon_sym_PLUS_EQ] = ACTIONS(639), [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_GT] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(641), - [sym_test_operator] = ACTIONS(637), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_EQ_TILDE] = ACTIONS(643), - [anon_sym_DASH_DASH] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [anon_sym_DASH_EQ] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [sym_test_operator] = ACTIONS(639), + [anon_sym_EQ_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(639), + [anon_sym_GT_EQ] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_EQ_TILDE] = ACTIONS(645), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_LT_EQ] = ACTIONS(639), + [anon_sym_AMP_AMP] = ACTIONS(639), + [anon_sym_DASH_EQ] = ACTIONS(639), }, [89] = { [anon_sym_BANG_EQ] = ACTIONS(541), @@ -9925,112 +9977,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [91] = { [aux_sym__literal_repeat1] = STATE(91), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_EQ_TILDE] = ACTIONS(645), - [sym__special_character] = ACTIONS(647), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_EQ_EQ] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [ts_builtin_sym_end] = ACTIONS(650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_EQ_TILDE] = ACTIONS(647), + [sym__special_character] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [ts_builtin_sym_end] = ACTIONS(652), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, [92] = { - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [ts_builtin_sym_end] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(658), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [93] = { [aux_sym__literal_repeat1] = STATE(27), - [sym_if_statement] = STATE(168), - [sym_function_definition] = STATE(168), - [sym_negated_command] = STATE(168), - [sym_test_command] = STATE(168), - [sym_variable_assignment] = STATE(169), + [sym_if_statement] = STATE(169), + [sym_function_definition] = STATE(169), + [sym_negated_command] = STATE(169), + [sym_test_command] = STATE(169), + [sym_variable_assignment] = STATE(170), [sym_subscript] = STATE(30), [sym_concatenation] = STATE(31), [sym_expansion] = STATE(9), [sym_command_substitution] = STATE(9), - [sym_redirected_statement] = STATE(168), - [sym_for_statement] = STATE(168), - [sym_compound_statement] = STATE(168), - [sym_subshell] = STATE(168), - [sym_declaration_command] = STATE(168), - [sym_unset_command] = STATE(168), + [sym_redirected_statement] = STATE(169), + [sym_for_statement] = STATE(169), + [sym_compound_statement] = STATE(169), + [sym_subshell] = STATE(169), + [sym_declaration_command] = STATE(169), + [sym_unset_command] = STATE(169), [sym_file_redirect] = STATE(34), [sym_string] = STATE(9), [sym_process_substitution] = STATE(9), [aux_sym_command_repeat1] = STATE(34), - [sym_c_style_for_statement] = STATE(168), - [sym_while_statement] = STATE(168), - [sym_case_statement] = STATE(168), - [sym_pipeline] = STATE(168), - [sym_list] = STATE(168), - [sym_command] = STATE(168), + [sym_c_style_for_statement] = STATE(169), + [sym_while_statement] = STATE(169), + [sym_case_statement] = STATE(169), + [sym_pipeline] = STATE(169), + [sym_list] = STATE(169), + [sym_command] = STATE(169), [sym_command_name] = STATE(36), [sym_simple_expansion] = STATE(9), [sym_string_expansion] = STATE(9), @@ -10076,82 +10128,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(61), }, [94] = { - [sym_heredoc_body] = STATE(172), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(658), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(660), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [ts_builtin_sym_end] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [sym_heredoc_body] = STATE(173), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(660), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [sym__heredoc_body_beginning] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(658), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [95] = { - [sym_heredoc_start] = ACTIONS(662), + [sym_heredoc_start] = ACTIONS(664), [sym_comment] = ACTIONS(41), }, [96] = { [aux_sym__literal_repeat1] = STATE(27), - [sym_if_statement] = STATE(174), - [sym_function_definition] = STATE(174), - [sym_negated_command] = STATE(174), - [sym_test_command] = STATE(174), - [sym_variable_assignment] = STATE(175), + [sym_if_statement] = STATE(175), + [sym_function_definition] = STATE(175), + [sym_negated_command] = STATE(175), + [sym_test_command] = STATE(175), + [sym_variable_assignment] = STATE(176), [sym_subscript] = STATE(30), [sym_concatenation] = STATE(31), [sym_expansion] = STATE(9), [sym_command_substitution] = STATE(9), - [sym_redirected_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_compound_statement] = STATE(174), - [sym_subshell] = STATE(174), - [sym_declaration_command] = STATE(174), - [sym_unset_command] = STATE(174), + [sym_redirected_statement] = STATE(175), + [sym_for_statement] = STATE(175), + [sym_compound_statement] = STATE(175), + [sym_subshell] = STATE(175), + [sym_declaration_command] = STATE(175), + [sym_unset_command] = STATE(175), [sym_file_redirect] = STATE(34), [sym_string] = STATE(9), [sym_process_substitution] = STATE(9), [aux_sym_command_repeat1] = STATE(34), - [sym_c_style_for_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_pipeline] = STATE(174), - [sym_list] = STATE(174), - [sym_command] = STATE(174), + [sym_c_style_for_statement] = STATE(175), + [sym_while_statement] = STATE(175), + [sym_case_statement] = STATE(175), + [sym_pipeline] = STATE(175), + [sym_list] = STATE(175), + [sym_command] = STATE(175), [sym_command_name] = STATE(36), [sym_simple_expansion] = STATE(9), [sym_string_expansion] = STATE(9), @@ -10197,54 +10249,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(61), }, [97] = { - [sym_command_substitution] = STATE(176), - [aux_sym__literal_repeat1] = STATE(177), - [sym_string] = STATE(176), - [sym_process_substitution] = STATE(176), - [sym_simple_expansion] = STATE(176), - [sym_string_expansion] = STATE(176), - [sym_concatenation] = STATE(178), - [sym_expansion] = STATE(176), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), - [anon_sym_DQUOTE] = ACTIONS(666), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(668), - [sym_word] = ACTIONS(670), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), - [anon_sym_DOLLAR] = ACTIONS(674), - [sym_ansii_c_string] = ACTIONS(668), - [anon_sym_LT_LPAREN] = ACTIONS(676), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym__special_character] = ACTIONS(680), - [sym_number] = ACTIONS(670), - [anon_sym_GT_LPAREN] = ACTIONS(676), + [sym_command_substitution] = STATE(177), + [aux_sym__literal_repeat1] = STATE(178), + [sym_string] = STATE(177), + [sym_process_substitution] = STATE(177), + [sym_simple_expansion] = STATE(177), + [sym_string_expansion] = STATE(177), + [sym_concatenation] = STATE(179), + [sym_expansion] = STATE(177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(670), + [sym_word] = ACTIONS(672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(674), + [anon_sym_DOLLAR] = ACTIONS(676), + [sym_ansii_c_string] = ACTIONS(670), + [anon_sym_LT_LPAREN] = ACTIONS(678), + [anon_sym_BQUOTE] = ACTIONS(680), + [sym__special_character] = ACTIONS(682), + [sym_number] = ACTIONS(672), + [anon_sym_GT_LPAREN] = ACTIONS(678), }, [98] = { - [sym_heredoc_redirect] = STATE(179), - [aux_sym_redirected_statement_repeat1] = STATE(179), - [sym_herestring_redirect] = STATE(179), - [sym_file_redirect] = STATE(179), + [sym_heredoc_redirect] = STATE(180), + [aux_sym_redirected_statement_repeat1] = STATE(180), + [sym_herestring_redirect] = STATE(180), + [sym_file_redirect] = STATE(180), [anon_sym_LT_LT_DASH] = ACTIONS(321), - [anon_sym_AMP] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(684), [anon_sym_AMP_GT_GT] = ACTIONS(315), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(682), + [anon_sym_LF] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(684), [anon_sym_LT_LT] = ACTIONS(321), [sym_file_descriptor] = ACTIONS(319), [anon_sym_GT] = ACTIONS(315), [anon_sym_AMP_GT] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(682), - [ts_builtin_sym_end] = ACTIONS(684), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [ts_builtin_sym_end] = ACTIONS(686), [anon_sym_LT_LT_LT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(684), [anon_sym_GT_AMP] = ACTIONS(315), [anon_sym_LT] = ACTIONS(315), [anon_sym_LT_AMP] = ACTIONS(315), [anon_sym_GT_GT] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(682), - [anon_sym_SEMI_SEMI] = ACTIONS(682), - [anon_sym_PIPE_AMP] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(684), + [anon_sym_SEMI_SEMI] = ACTIONS(684), + [anon_sym_PIPE_AMP] = ACTIONS(684), }, [99] = { [sym_heredoc_redirect] = STATE(98), @@ -10255,14 +10307,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(329), [anon_sym_AMP_GT_GT] = ACTIONS(315), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(686), - [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), [sym_file_descriptor] = ACTIONS(319), [anon_sym_LT_LT] = ACTIONS(321), [anon_sym_GT] = ACTIONS(315), [anon_sym_AMP_GT] = ACTIONS(315), [anon_sym_PIPE_PIPE] = ACTIONS(323), - [ts_builtin_sym_end] = ACTIONS(656), + [ts_builtin_sym_end] = ACTIONS(658), [anon_sym_LT_LT_LT] = ACTIONS(327), [anon_sym_GT_AMP] = ACTIONS(315), [anon_sym_PIPE] = ACTIONS(329), @@ -10270,8 +10322,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(315), [anon_sym_GT_GT] = ACTIONS(315), [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_SEMI_SEMI] = ACTIONS(688), - [anon_sym_AMP] = ACTIONS(688), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), }, [100] = { [sym_heredoc_redirect] = STATE(98), @@ -10296,94 +10348,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(321), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(686), - [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(331), - [ts_builtin_sym_end] = ACTIONS(656), + [ts_builtin_sym_end] = ACTIONS(658), [anon_sym_GT_AMP] = ACTIONS(331), [anon_sym_LT_LT_LT] = ACTIONS(327), [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_SEMI_SEMI] = ACTIONS(688), - [anon_sym_AMP] = ACTIONS(688), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), }, [101] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1374), - [sym_function_definition] = STATE(1374), - [sym_negated_command] = STATE(1374), - [sym_test_command] = STATE(1374), - [sym_variable_assignment] = STATE(1375), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1381), + [sym_function_definition] = STATE(1381), + [sym_negated_command] = STATE(1381), + [sym_test_command] = STATE(1381), + [sym_variable_assignment] = STATE(1382), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(1374), - [sym_for_statement] = STATE(1374), - [sym_compound_statement] = STATE(1374), - [sym_subshell] = STATE(1374), - [sym_declaration_command] = STATE(1374), - [sym_unset_command] = STATE(1374), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(1374), - [sym_while_statement] = STATE(1374), - [sym_case_statement] = STATE(1374), - [sym_pipeline] = STATE(1374), - [sym_list] = STATE(1374), - [sym_command] = STATE(1374), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_local] = ACTIONS(696), - [anon_sym_typeset] = ACTIONS(696), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(708), - [sym_number] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(714), - [anon_sym_function] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_LT] = ACTIONS(723), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_export] = ACTIONS(696), - [sym_word] = ACTIONS(726), - [sym__special_character] = ACTIONS(729), - [anon_sym_if] = ACTIONS(732), - [anon_sym_case] = ACTIONS(735), - [anon_sym_LPAREN_LPAREN] = ACTIONS(738), - [sym_raw_string] = ACTIONS(741), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_declare] = ACTIONS(696), - [sym_variable_name] = ACTIONS(747), - [sym_file_descriptor] = ACTIONS(750), - [anon_sym_GT] = ACTIONS(723), - [anon_sym_AMP_GT] = ACTIONS(723), - [anon_sym_readonly] = ACTIONS(696), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_GT_AMP] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), - [anon_sym_LT_LPAREN] = ACTIONS(708), - [anon_sym_for] = ACTIONS(759), - [anon_sym_while] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(765), - [sym_ansii_c_string] = ACTIONS(741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(768), + [sym_redirected_statement] = STATE(1381), + [sym_for_statement] = STATE(1381), + [sym_compound_statement] = STATE(1381), + [sym_subshell] = STATE(1381), + [sym_declaration_command] = STATE(1381), + [sym_unset_command] = STATE(1381), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym_c_style_for_statement] = STATE(1381), + [sym_while_statement] = STATE(1381), + [sym_case_statement] = STATE(1381), + [sym_pipeline] = STATE(1381), + [sym_list] = STATE(1381), + [sym_command] = STATE(1381), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(698), + [anon_sym_typeset] = ACTIONS(698), + [anon_sym_unsetenv] = ACTIONS(701), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(710), + [sym_number] = ACTIONS(713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(716), + [anon_sym_function] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(698), + [sym_word] = ACTIONS(728), + [sym__special_character] = ACTIONS(731), + [anon_sym_if] = ACTIONS(734), + [anon_sym_case] = ACTIONS(737), + [anon_sym_LPAREN_LPAREN] = ACTIONS(740), + [sym_raw_string] = ACTIONS(743), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_declare] = ACTIONS(698), + [sym_variable_name] = ACTIONS(749), + [sym_file_descriptor] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(698), + [anon_sym_unset] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(710), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(767), + [sym_ansii_c_string] = ACTIONS(743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(770), }, [102] = { [sym_command_substitution] = STATE(105), @@ -10392,173 +10444,173 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(105), [sym_simple_expansion] = STATE(105), [sym_string_expansion] = STATE(105), - [aux_sym_command_repeat2] = STATE(182), - [sym_concatenation] = STATE(182), + [aux_sym_command_repeat2] = STATE(183), + [sym_concatenation] = STATE(183), [sym_expansion] = STATE(105), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_LT_LT] = ACTIONS(773), [anon_sym_BQUOTE] = ACTIONS(343), [anon_sym_GT_LPAREN] = ACTIONS(345), [sym_number] = ACTIONS(347), [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), [sym_word] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), [anon_sym_EQ_TILDE] = ACTIONS(351), [sym__special_character] = ACTIONS(31), - [anon_sym_LT_LT_DASH] = ACTIONS(771), + [anon_sym_LT_LT_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(773), [sym_raw_string] = ACTIONS(347), - [sym_file_descriptor] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(771), + [sym_file_descriptor] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), [anon_sym_EQ_EQ] = ACTIONS(351), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), + [ts_builtin_sym_end] = ACTIONS(775), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), [anon_sym_LT_LPAREN] = ACTIONS(345), [sym_ansii_c_string] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(773), }, [103] = { [sym_variable_assignment] = STATE(103), - [sym_subscript] = STATE(2455), + [sym_subscript] = STATE(2467), [aux_sym_command_repeat1] = STATE(103), [sym_file_redirect] = STATE(103), - [anon_sym_AMP_GT_GT] = ACTIONS(775), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(778), - [anon_sym_DOLLAR] = ACTIONS(780), - [sym_file_descriptor] = ACTIONS(782), - [sym_variable_name] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(778), - [anon_sym_AMP_GT] = ACTIONS(788), - [sym_number] = ACTIONS(780), - [anon_sym_GT_LPAREN] = ACTIONS(778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), - [anon_sym_DQUOTE] = ACTIONS(778), - [anon_sym_GT_AMP] = ACTIONS(775), - [sym_word] = ACTIONS(780), - [anon_sym_LT] = ACTIONS(788), - [anon_sym_LT_AMP] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [sym_ansii_c_string] = ACTIONS(778), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), - [anon_sym_LT_LPAREN] = ACTIONS(778), - [sym__special_character] = ACTIONS(778), + [anon_sym_AMP_GT_GT] = ACTIONS(777), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(782), + [sym_file_descriptor] = ACTIONS(784), + [sym_variable_name] = ACTIONS(787), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(780), + [anon_sym_AMP_GT] = ACTIONS(790), + [sym_number] = ACTIONS(782), + [anon_sym_GT_LPAREN] = ACTIONS(780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(780), + [anon_sym_GT_AMP] = ACTIONS(777), + [sym_word] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(777), + [sym_ansii_c_string] = ACTIONS(780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(780), + [anon_sym_LT_LPAREN] = ACTIONS(780), + [sym__special_character] = ACTIONS(780), }, [104] = { - [sym_command_substitution] = STATE(184), - [aux_sym__literal_repeat1] = STATE(185), - [sym_string] = STATE(184), - [sym_process_substitution] = STATE(184), - [sym_simple_expansion] = STATE(184), - [sym_string_expansion] = STATE(184), - [sym_concatenation] = STATE(183), - [sym_expansion] = STATE(184), + [sym_command_substitution] = STATE(185), + [aux_sym__literal_repeat1] = STATE(186), + [sym_string] = STATE(185), + [sym_process_substitution] = STATE(185), + [sym_simple_expansion] = STATE(185), + [sym_string_expansion] = STATE(185), + [sym_concatenation] = STATE(184), + [sym_expansion] = STATE(185), [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), [anon_sym_GT_LPAREN] = ACTIONS(17), [anon_sym_DQUOTE] = ACTIONS(51), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(791), - [sym_word] = ACTIONS(793), + [sym_raw_string] = ACTIONS(793), + [sym_word] = ACTIONS(795), [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), [anon_sym_DOLLAR] = ACTIONS(13), - [sym_ansii_c_string] = ACTIONS(791), + [sym_ansii_c_string] = ACTIONS(793), [anon_sym_LT_LPAREN] = ACTIONS(17), [anon_sym_BQUOTE] = ACTIONS(15), - [sym_regex] = ACTIONS(795), + [sym_regex] = ACTIONS(797), [sym__special_character] = ACTIONS(337), - [sym_number] = ACTIONS(793), + [sym_number] = ACTIONS(795), }, [105] = { [aux_sym_concatenation_repeat1] = STATE(53), - [anon_sym_AMP] = ACTIONS(797), - [anon_sym_AMP_GT_GT] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(797), - [anon_sym_LT_LT] = ACTIONS(797), - [anon_sym_BQUOTE] = ACTIONS(797), - [anon_sym_GT_LPAREN] = ACTIONS(797), - [sym_number] = ACTIONS(797), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_PIPE_PIPE] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_LT_LT] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(799), + [anon_sym_GT_LPAREN] = ACTIONS(799), + [sym_number] = ACTIONS(799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), [sym__concat] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(797), - [sym_word] = ACTIONS(797), - [anon_sym_LT] = ACTIONS(797), - [anon_sym_LT_AMP] = ACTIONS(797), - [anon_sym_GT_GT] = ACTIONS(797), - [anon_sym_EQ_TILDE] = ACTIONS(797), - [sym__special_character] = ACTIONS(797), - [anon_sym_LT_LT_DASH] = ACTIONS(797), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(799), - [anon_sym_SEMI] = ACTIONS(797), - [sym_raw_string] = ACTIONS(797), - [sym_file_descriptor] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(797), - [anon_sym_AMP_GT] = ACTIONS(797), - [anon_sym_EQ_EQ] = ACTIONS(797), - [anon_sym_DQUOTE] = ACTIONS(797), - [anon_sym_LT_LT_LT] = ACTIONS(797), - [anon_sym_GT_AMP] = ACTIONS(797), - [ts_builtin_sym_end] = ACTIONS(799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(797), - [anon_sym_LT_LPAREN] = ACTIONS(797), - [sym_ansii_c_string] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(797), - [anon_sym_SEMI_SEMI] = ACTIONS(797), - [anon_sym_PIPE_AMP] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(799), + [sym_word] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(799), + [anon_sym_EQ_TILDE] = ACTIONS(799), + [sym__special_character] = ACTIONS(799), + [anon_sym_LT_LT_DASH] = ACTIONS(799), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(799), + [sym_raw_string] = ACTIONS(799), + [sym_file_descriptor] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_EQ_EQ] = ACTIONS(799), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_LT_LT_LT] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [ts_builtin_sym_end] = ACTIONS(801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(799), + [anon_sym_LT_LPAREN] = ACTIONS(799), + [sym_ansii_c_string] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_SEMI_SEMI] = ACTIONS(799), + [anon_sym_PIPE_AMP] = ACTIONS(799), }, [106] = { [aux_sym__literal_repeat1] = STATE(91), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_AMP_GT_GT] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(801), - [anon_sym_LT_LT] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(801), - [anon_sym_GT_LPAREN] = ACTIONS(801), - [sym_number] = ACTIONS(801), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(801), - [anon_sym_PIPE_PIPE] = ACTIONS(801), - [anon_sym_PIPE] = ACTIONS(801), - [sym_word] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_LT_AMP] = ACTIONS(801), - [anon_sym_GT_GT] = ACTIONS(801), - [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(803), + [anon_sym_AMP_GT_GT] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_GT_LPAREN] = ACTIONS(803), + [sym_number] = ACTIONS(803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), + [anon_sym_PIPE_PIPE] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [sym_word] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_AMP] = ACTIONS(803), + [anon_sym_GT_GT] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), [sym__special_character] = ACTIONS(309), - [anon_sym_LT_LT_DASH] = ACTIONS(801), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(801), - [sym_raw_string] = ACTIONS(801), - [sym_file_descriptor] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_AMP_GT] = ACTIONS(801), - [anon_sym_EQ_EQ] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(801), - [anon_sym_LT_LT_LT] = ACTIONS(801), - [anon_sym_GT_AMP] = ACTIONS(801), - [ts_builtin_sym_end] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_LT_LPAREN] = ACTIONS(801), - [sym_ansii_c_string] = ACTIONS(801), - [anon_sym_AMP_AMP] = ACTIONS(801), - [anon_sym_SEMI_SEMI] = ACTIONS(801), - [anon_sym_PIPE_AMP] = ACTIONS(801), + [anon_sym_LT_LT_DASH] = ACTIONS(803), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(805), + [anon_sym_SEMI] = ACTIONS(803), + [sym_raw_string] = ACTIONS(803), + [sym_file_descriptor] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_AMP_GT] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_LT_LT_LT] = ACTIONS(803), + [anon_sym_GT_AMP] = ACTIONS(803), + [ts_builtin_sym_end] = ACTIONS(805), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(803), + [sym_ansii_c_string] = ACTIONS(803), + [anon_sym_AMP_AMP] = ACTIONS(803), + [anon_sym_SEMI_SEMI] = ACTIONS(803), + [anon_sym_PIPE_AMP] = ACTIONS(803), }, [107] = { [sym_command_substitution] = STATE(105), @@ -10567,67 +10619,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(105), [sym_simple_expansion] = STATE(105), [sym_string_expansion] = STATE(105), - [aux_sym_command_repeat2] = STATE(186), - [sym_concatenation] = STATE(186), + [aux_sym_command_repeat2] = STATE(187), + [sym_concatenation] = STATE(187), [sym_expansion] = STATE(105), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(771), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_LT_LT] = ACTIONS(773), [anon_sym_BQUOTE] = ACTIONS(343), [anon_sym_GT_LPAREN] = ACTIONS(345), [sym_number] = ACTIONS(347), [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), [sym_word] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), [anon_sym_EQ_TILDE] = ACTIONS(351), [sym__special_character] = ACTIONS(31), - [anon_sym_LT_LT_DASH] = ACTIONS(771), + [anon_sym_LT_LT_DASH] = ACTIONS(773), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(773), [sym_raw_string] = ACTIONS(347), - [sym_file_descriptor] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(771), + [sym_file_descriptor] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), [anon_sym_EQ_EQ] = ACTIONS(351), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), + [ts_builtin_sym_end] = ACTIONS(775), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(355), [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), [anon_sym_LT_LPAREN] = ACTIONS(345), [sym_ansii_c_string] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(773), }, [108] = { - [anon_sym_LT_LT_DASH] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(805), - [anon_sym_AMP_GT_GT] = ACTIONS(805), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_LT_LT] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_AMP_GT] = ACTIONS(805), - [anon_sym_PIPE_PIPE] = ACTIONS(805), - [ts_builtin_sym_end] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_GT_AMP] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_LT_AMP] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(805), - [anon_sym_AMP_AMP] = ACTIONS(805), - [anon_sym_SEMI_SEMI] = ACTIONS(805), - [anon_sym_PIPE_AMP] = ACTIONS(805), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(807), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [ts_builtin_sym_end] = ACTIONS(809), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), }, [109] = { [sym_command_substitution] = STATE(41), @@ -10636,46 +10688,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_declaration_command_repeat1] = STATE(109), [sym_process_substitution] = STATE(41), [sym_simple_expansion] = STATE(41), - [sym_subscript] = STATE(2444), + [sym_subscript] = STATE(2456), [sym_string_expansion] = STATE(41), [sym_variable_assignment] = STATE(109), [sym_concatenation] = STATE(109), [sym_expansion] = STATE(41), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_BQUOTE] = ACTIONS(814), - [anon_sym_GT_LPAREN] = ACTIONS(817), - [sym_number] = ACTIONS(820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [sym_word] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_LT_AMP] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(809), - [sym__special_character] = ACTIONS(826), - [anon_sym_LT_LT_DASH] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(809), - [sym_raw_string] = ACTIONS(820), - [sym_variable_name] = ACTIONS(831), - [sym_file_descriptor] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(809), - [anon_sym_GT_AMP] = ACTIONS(809), - [ts_builtin_sym_end] = ACTIONS(829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(837), - [aux_sym__simple_variable_name_token1] = ACTIONS(840), - [anon_sym_LT_LPAREN] = ACTIONS(817), - [sym_ansii_c_string] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(809), - [anon_sym_PIPE_AMP] = ACTIONS(809), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(819), + [sym_number] = ACTIONS(822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [sym_word] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(828), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(811), + [sym_raw_string] = ACTIONS(822), + [sym_variable_name] = ACTIONS(833), + [sym_file_descriptor] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [ts_builtin_sym_end] = ACTIONS(831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(839), + [aux_sym__simple_variable_name_token1] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(819), + [sym_ansii_c_string] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [110] = { [sym_command_substitution] = STATE(44), @@ -10687,154 +10739,154 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string_expansion] = STATE(44), [sym_concatenation] = STATE(110), [sym_expansion] = STATE(44), - [anon_sym_AMP] = ACTIONS(843), - [anon_sym_AMP_GT_GT] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_LT_LT] = ACTIONS(843), - [anon_sym_BQUOTE] = ACTIONS(848), - [anon_sym_GT_LPAREN] = ACTIONS(851), - [sym_number] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(843), - [sym_word] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_LT_AMP] = ACTIONS(843), - [anon_sym_GT_GT] = ACTIONS(843), - [sym__special_character] = ACTIONS(860), - [anon_sym_LT_LT_DASH] = ACTIONS(843), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(843), - [sym_raw_string] = ACTIONS(854), - [sym_file_descriptor] = ACTIONS(863), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_AMP_GT] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_LT_LT_LT] = ACTIONS(843), - [anon_sym_GT_AMP] = ACTIONS(843), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(868), - [aux_sym__simple_variable_name_token1] = ACTIONS(871), - [anon_sym_LT_LPAREN] = ACTIONS(851), - [sym_ansii_c_string] = ACTIONS(854), - [anon_sym_AMP_AMP] = ACTIONS(843), - [anon_sym_SEMI_SEMI] = ACTIONS(843), - [anon_sym_PIPE_AMP] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(845), + [anon_sym_AMP_GT_GT] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_number] = ACTIONS(856), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(845), + [sym_word] = ACTIONS(856), + [anon_sym_LT] = ACTIONS(845), + [anon_sym_LT_AMP] = ACTIONS(845), + [anon_sym_GT_GT] = ACTIONS(845), + [sym__special_character] = ACTIONS(862), + [anon_sym_LT_LT_DASH] = ACTIONS(845), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(845), + [sym_raw_string] = ACTIONS(856), + [sym_file_descriptor] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_LT_LT_LT] = ACTIONS(845), + [anon_sym_GT_AMP] = ACTIONS(845), + [ts_builtin_sym_end] = ACTIONS(865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(870), + [aux_sym__simple_variable_name_token1] = ACTIONS(873), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [sym_ansii_c_string] = ACTIONS(856), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), }, [111] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [112] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [anon_sym_EQ_TILDE] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_EQ_EQ] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [ts_builtin_sym_end] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [ts_builtin_sym_end] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [113] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [114] = { [sym_command_substitution] = STATE(113), @@ -10849,7 +10901,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(425), [sym_word] = ACTIONS(427), [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(888), [anon_sym_LT_LPAREN] = ACTIONS(17), [sym_ansii_c_string] = ACTIONS(425), [anon_sym_BQUOTE] = ACTIONS(15), @@ -10859,67 +10911,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [115] = { [aux_sym_concatenation_repeat1] = STATE(115), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(888), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [116] = { - [aux_sym_concatenation_repeat1] = STATE(908), - [anon_sym_PERCENT] = ACTIONS(891), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(893), - [sym_raw_string] = ACTIONS(893), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_COLON_DASH] = ACTIONS(891), - [anon_sym_EQ] = ACTIONS(891), - [sym_number] = ACTIONS(891), - [anon_sym_COLON_QMARK] = ACTIONS(891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(893), - [anon_sym_BQUOTE] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(893), - [anon_sym_GT_LPAREN] = ACTIONS(893), - [sym__concat] = ACTIONS(895), - [sym_word] = ACTIONS(891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(893), - [anon_sym_LT_LPAREN] = ACTIONS(893), - [sym_ansii_c_string] = ACTIONS(893), - [anon_sym_COLON] = ACTIONS(891), - [sym__special_character] = ACTIONS(891), + [aux_sym_concatenation_repeat1] = STATE(914), + [anon_sym_PERCENT] = ACTIONS(893), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(895), + [sym_raw_string] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_COLON_DASH] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(893), + [sym_number] = ACTIONS(893), + [anon_sym_COLON_QMARK] = ACTIONS(893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(895), + [anon_sym_BQUOTE] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [anon_sym_GT_LPAREN] = ACTIONS(895), + [sym__concat] = ACTIONS(897), + [sym_word] = ACTIONS(893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(895), + [anon_sym_LT_LPAREN] = ACTIONS(895), + [sym_ansii_c_string] = ACTIONS(895), + [anon_sym_COLON] = ACTIONS(893), + [sym__special_character] = ACTIONS(893), }, [117] = { [sym_command_substitution] = STATE(116), @@ -10928,93 +10980,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(190), - [sym_concatenation] = STATE(190), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(899), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(901), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_COLON_DASH] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_COLON_DASH] = ACTIONS(899), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(899), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(897), + [anon_sym_COLON_QMARK] = ACTIONS(899), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(899), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(903), + [sym_regex] = ACTIONS(905), }, [118] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_EQ_TILDE] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [ts_builtin_sym_end] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [ts_builtin_sym_end] = ACTIONS(909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, [119] = { - [aux_sym__literal_repeat1] = STATE(911), - [anon_sym_PERCENT] = ACTIONS(909), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(911), - [sym_raw_string] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_COLON_DASH] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(909), - [sym_number] = ACTIONS(909), - [anon_sym_COLON_QMARK] = ACTIONS(909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [anon_sym_GT_LPAREN] = ACTIONS(911), - [sym_word] = ACTIONS(909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(911), - [anon_sym_LT_LPAREN] = ACTIONS(911), - [sym_ansii_c_string] = ACTIONS(911), - [anon_sym_COLON] = ACTIONS(909), - [sym__special_character] = ACTIONS(913), + [aux_sym__literal_repeat1] = STATE(917), + [anon_sym_PERCENT] = ACTIONS(911), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(913), + [sym_raw_string] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_COLON_DASH] = ACTIONS(911), + [anon_sym_EQ] = ACTIONS(911), + [sym_number] = ACTIONS(911), + [anon_sym_COLON_QMARK] = ACTIONS(911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(913), + [anon_sym_BQUOTE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [anon_sym_GT_LPAREN] = ACTIONS(913), + [sym_word] = ACTIONS(911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(913), + [anon_sym_LT_LPAREN] = ACTIONS(913), + [sym_ansii_c_string] = ACTIONS(913), + [anon_sym_COLON] = ACTIONS(911), + [sym__special_character] = ACTIONS(915), }, [120] = { [sym_command_substitution] = STATE(116), @@ -11023,29 +11075,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, [121] = { @@ -11055,34 +11107,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(190), - [sym_concatenation] = STATE(190), + [aux_sym_expansion_repeat1] = STATE(191), + [sym_concatenation] = STATE(191), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(899), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(901), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(921), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(899), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(897), - [anon_sym_EQ] = ACTIONS(897), + [anon_sym_COLON_DASH] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(899), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(897), + [anon_sym_COLON_QMARK] = ACTIONS(899), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(903), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(899), [sym__special_character] = ACTIONS(459), }, [122] = { - [anon_sym_EQ] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(923), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, @@ -11093,55 +11145,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(196), - [sym_concatenation] = STATE(196), + [aux_sym_expansion_repeat1] = STATE(197), + [sym_concatenation] = STATE(197), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(925), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(927), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(929), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(925), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(923), + [anon_sym_COLON_DASH] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(925), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(923), + [anon_sym_COLON_QMARK] = ACTIONS(925), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(931), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(925), [sym__special_character] = ACTIONS(459), }, [124] = { - [sym_command_substitution] = STATE(197), - [aux_sym__literal_repeat1] = STATE(198), - [sym_string] = STATE(197), - [sym_process_substitution] = STATE(197), - [sym_simple_expansion] = STATE(197), - [sym_string_expansion] = STATE(197), - [sym_concatenation] = STATE(199), - [sym_expansion] = STATE(197), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(935), - [sym_word] = ACTIONS(937), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(935), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(901), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(937), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_command_substitution] = STATE(198), + [aux_sym__literal_repeat1] = STATE(199), + [sym_string] = STATE(198), + [sym_process_substitution] = STATE(198), + [sym_simple_expansion] = STATE(198), + [sym_string_expansion] = STATE(198), + [sym_concatenation] = STATE(200), + [sym_expansion] = STATE(198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(937), + [sym_word] = ACTIONS(939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(937), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(903), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(939), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, [125] = { [sym_command_substitution] = STATE(116), @@ -11150,69 +11202,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(202), - [sym_concatenation] = STATE(202), + [aux_sym_expansion_repeat1] = STATE(203), + [sym_concatenation] = STATE(203), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(951), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(953), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_COLON_DASH] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_COLON_DASH] = ACTIONS(951), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(951), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(949), + [anon_sym_COLON_QMARK] = ACTIONS(951), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(951), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(955), + [sym_regex] = ACTIONS(957), }, [126] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [ts_builtin_sym_end] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, [127] = { [sym_command_substitution] = STATE(116), @@ -11221,209 +11273,209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, [128] = { - [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(963), [sym_comment] = ACTIONS(41), }, [129] = { - [anon_sym_LT_LT_DASH] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_AMP_GT_GT] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_LT_LT] = ACTIONS(963), - [sym_file_descriptor] = ACTIONS(965), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_AMP_GT] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [ts_builtin_sym_end] = ACTIONS(965), - [anon_sym_LT_LT_LT] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_GT_AMP] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LT_AMP] = ACTIONS(963), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_SEMI_SEMI] = ACTIONS(963), - [anon_sym_PIPE_AMP] = ACTIONS(963), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [ts_builtin_sym_end] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), }, [130] = { - [sym_compound_statement] = STATE(204), + [sym_compound_statement] = STATE(205), [anon_sym_LBRACE] = ACTIONS(27), [sym_comment] = ACTIONS(41), }, [131] = { - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [132] = { - [sym_heredoc_body] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(967), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [sym_heredoc_body] = STATE(206), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(969), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [133] = { - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(973), + [anon_sym_AMP_GT_GT] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_LT_LT] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(973), + [anon_sym_PIPE_PIPE] = ACTIONS(973), + [ts_builtin_sym_end] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_GT_AMP] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_LT_AMP] = ACTIONS(973), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(973), + [anon_sym_SEMI_SEMI] = ACTIONS(973), + [anon_sym_PIPE_AMP] = ACTIONS(973), }, [134] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_elif_clause] = STATE(212), - [sym_else_clause] = STATE(211), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_if_statement_repeat1] = STATE(212), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(213), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_elif_clause] = STATE(213), + [sym_else_clause] = STATE(212), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_if_statement_repeat1] = STATE(213), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(214), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -11431,8 +11483,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsetenv] = ACTIONS(67), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_fi] = ACTIONS(975), - [anon_sym_else] = ACTIONS(977), + [anon_sym_fi] = ACTIONS(977), + [anon_sym_else] = ACTIONS(979), [sym_number] = ACTIONS(75), [anon_sym_GT_LPAREN] = ACTIONS(73), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), @@ -11460,7 +11512,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_elif] = ACTIONS(979), + [anon_sym_elif] = ACTIONS(981), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), @@ -11469,31 +11521,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(73), }, [135] = { - [anon_sym_do] = ACTIONS(981), - [anon_sym_then] = ACTIONS(981), + [anon_sym_do] = ACTIONS(983), + [anon_sym_then] = ACTIONS(983), [sym_comment] = ACTIONS(41), }, [136] = { - [anon_sym_in] = ACTIONS(983), + [anon_sym_in] = ACTIONS(985), [sym_comment] = ACTIONS(41), }, [137] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_SEMI_SEMI] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), }, [138] = { - [anon_sym_in] = ACTIONS(989), + [anon_sym_in] = ACTIONS(991), [sym_comment] = ACTIONS(41), }, [139] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_SEMI_SEMI] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), + [anon_sym_LF] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(995), }, [140] = { [anon_sym_PLUS_EQ] = ACTIONS(541), @@ -11507,7 +11559,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(541), [anon_sym_BANG_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(997), [sym_test_operator] = ACTIONS(541), [anon_sym_GT] = ACTIONS(545), [anon_sym_EQ] = ACTIONS(545), @@ -11520,9 +11572,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(541), [anon_sym_PLUS_PLUS] = ACTIONS(543), [anon_sym_DASH] = ACTIONS(545), - [anon_sym_RPAREN_RPAREN] = ACTIONS(997), + [anon_sym_RPAREN_RPAREN] = ACTIONS(999), [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_RBRACK_RBRACK] = ACTIONS(997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(999), [anon_sym_LT] = ACTIONS(545), [anon_sym_EQ_TILDE] = ACTIONS(547), [anon_sym_DASH_DASH] = ACTIONS(543), @@ -11530,7 +11582,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(541), [anon_sym_BANG_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(1001), [sym_test_operator] = ACTIONS(541), [anon_sym_GT] = ACTIONS(545), [anon_sym_EQ] = ACTIONS(545), @@ -11541,16 +11593,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [142] = { [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(219), - [sym_postfix_expression] = STATE(219), + [sym_unary_expression] = STATE(220), + [sym_postfix_expression] = STATE(220), [sym_string] = STATE(71), [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(219), - [sym_binary_expression] = STATE(219), - [sym_concatenation] = STATE(219), + [sym__expression] = STATE(220), + [sym_binary_expression] = STATE(220), + [sym_concatenation] = STATE(220), [sym_expansion] = STATE(71), [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(219), + [sym_parenthesized_expression] = STATE(220), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), @@ -11571,40 +11623,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__special_character] = ACTIONS(255), }, [143] = { - [anon_sym_PLUS_EQ] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1001), - [anon_sym_PIPE_PIPE] = ACTIONS(1001), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_DASH_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1003), - [sym_test_operator] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1003), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1001), + [anon_sym_PLUS_EQ] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_EQ_TILDE] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_DASH_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1005), + [sym_test_operator] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1003), }, [144] = { [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(219), - [sym_postfix_expression] = STATE(219), + [sym_unary_expression] = STATE(220), + [sym_postfix_expression] = STATE(220), [sym_string] = STATE(71), [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(219), - [sym_binary_expression] = STATE(219), - [sym_concatenation] = STATE(219), + [sym__expression] = STATE(220), + [sym_binary_expression] = STATE(220), + [sym_concatenation] = STATE(220), [sym_expansion] = STATE(71), [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(219), + [sym_parenthesized_expression] = STATE(220), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), @@ -11623,323 +11675,323 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(245), [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), - [sym_regex] = ACTIONS(1005), + [sym_regex] = ACTIONS(1007), }, [145] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_LT_LT] = ACTIONS(1007), - [sym_file_descriptor] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1007), - [anon_sym_PIPE_PIPE] = ACTIONS(1007), - [ts_builtin_sym_end] = ACTIONS(1009), - [anon_sym_LT_LT_LT] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1007), - [anon_sym_SEMI_SEMI] = ACTIONS(1007), - [anon_sym_PIPE_AMP] = ACTIONS(1007), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1011), + [anon_sym_SEMI] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1011), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [ts_builtin_sym_end] = ACTIONS(1011), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_PIPE_AMP] = ACTIONS(1009), }, [146] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(224), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(224), - [sym_expansion] = STATE(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [sym_ansii_c_string] = ACTIONS(1015), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(1027), - [sym__special_character] = ACTIONS(1029), - [sym_number] = ACTIONS(1017), - [anon_sym_GT_LPAREN] = ACTIONS(1023), + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(225), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(225), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1029), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), }, [147] = { - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [ts_builtin_sym_end] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [148] = { - [aux_sym_concatenation_repeat1] = STATE(940), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [sym__concat] = ACTIONS(1035), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [ts_builtin_sym_end] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [aux_sym_concatenation_repeat1] = STATE(946), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [sym__concat] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [149] = { - [aux_sym__literal_repeat1] = STATE(943), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), - [sym_number] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [sym_word] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [sym__special_character] = ACTIONS(1039), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1041), - [sym_file_descriptor] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [ts_builtin_sym_end] = ACTIONS(1041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [sym_ansii_c_string] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), + [aux_sym__literal_repeat1] = STATE(949), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_number] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [sym_word] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_LT_AMP] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [sym__special_character] = ACTIONS(1041), + [anon_sym_LT_LT_DASH] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1039), + [sym_raw_string] = ACTIONS(1039), + [sym_variable_name] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_LT_LT_LT] = ACTIONS(1039), + [anon_sym_GT_AMP] = ACTIONS(1039), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1039), + [sym_ansii_c_string] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), }, [150] = { - [aux_sym_concatenation_repeat1] = STATE(2432), - [anon_sym_RBRACK] = ACTIONS(1043), + [aux_sym_concatenation_repeat1] = STATE(2444), + [anon_sym_RBRACK] = ACTIONS(1045), [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1045), + [sym__concat] = ACTIONS(1047), }, [151] = { - [aux_sym__literal_repeat1] = STATE(975), - [anon_sym_RBRACK] = ACTIONS(1047), + [aux_sym__literal_repeat1] = STATE(981), + [anon_sym_RBRACK] = ACTIONS(1049), [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1049), - [sym__special_character] = ACTIONS(1051), + [sym__concat] = ACTIONS(1051), + [sym__special_character] = ACTIONS(1053), }, [152] = { - [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1045), [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1053), + [sym__concat] = ACTIONS(1055), }, [153] = { - [aux_sym_concatenation_repeat1] = STATE(558), - [anon_sym_AMP_GT_GT] = ACTIONS(1055), - [anon_sym_DOLLAR] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1055), - [anon_sym_GT_LPAREN] = ACTIONS(1055), - [sym_number] = ACTIONS(1057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), + [aux_sym_concatenation_repeat1] = STATE(559), + [anon_sym_AMP_GT_GT] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1057), + [anon_sym_GT_LPAREN] = ACTIONS(1057), + [sym_number] = ACTIONS(1059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), [sym__concat] = ACTIONS(365), - [sym_word] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1055), - [sym__special_character] = ACTIONS(1055), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1055), - [sym_variable_name] = ACTIONS(1055), - [sym_file_descriptor] = ACTIONS(1055), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_GT_AMP] = ACTIONS(1055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1055), - [anon_sym_LT_LPAREN] = ACTIONS(1055), - [sym_ansii_c_string] = ACTIONS(1055), + [sym_word] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1057), + [sym__special_character] = ACTIONS(1057), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1057), + [sym_variable_name] = ACTIONS(1057), + [sym_file_descriptor] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1059), + [anon_sym_DQUOTE] = ACTIONS(1057), + [anon_sym_GT_AMP] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), + [anon_sym_LT_LPAREN] = ACTIONS(1057), + [sym_ansii_c_string] = ACTIONS(1057), }, [154] = { - [aux_sym__literal_repeat1] = STATE(564), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_GT_LPAREN] = ACTIONS(1059), - [sym_number] = ACTIONS(1061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1059), - [sym_word] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1059), + [aux_sym__literal_repeat1] = STATE(565), + [anon_sym_AMP_GT_GT] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1061), + [anon_sym_GT_LPAREN] = ACTIONS(1061), + [sym_number] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1061), + [sym_word] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1061), + [anon_sym_GT_GT] = ACTIONS(1061), [sym__special_character] = ACTIONS(371), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1059), - [sym_variable_name] = ACTIONS(1059), - [sym_file_descriptor] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_AMP_GT] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1059), - [anon_sym_LT_LPAREN] = ACTIONS(1059), - [sym_ansii_c_string] = ACTIONS(1059), + [sym_raw_string] = ACTIONS(1061), + [sym_variable_name] = ACTIONS(1061), + [sym_file_descriptor] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1061), + [anon_sym_GT_AMP] = ACTIONS(1061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1061), + [anon_sym_LT_LPAREN] = ACTIONS(1061), + [sym_ansii_c_string] = ACTIONS(1061), }, [155] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1055), - [anon_sym_DOLLAR] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1055), - [anon_sym_GT_LPAREN] = ACTIONS(1055), - [sym_number] = ACTIONS(1057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), - [sym_word] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1055), - [sym__special_character] = ACTIONS(1055), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1055), - [sym_variable_name] = ACTIONS(1055), - [sym_file_descriptor] = ACTIONS(1055), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_GT_AMP] = ACTIONS(1055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1055), - [anon_sym_LT_LPAREN] = ACTIONS(1055), - [sym_ansii_c_string] = ACTIONS(1055), + [anon_sym_AMP_GT_GT] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1057), + [anon_sym_GT_LPAREN] = ACTIONS(1057), + [sym_number] = ACTIONS(1059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [sym_word] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1057), + [sym__special_character] = ACTIONS(1057), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1057), + [sym_variable_name] = ACTIONS(1057), + [sym_file_descriptor] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1059), + [anon_sym_DQUOTE] = ACTIONS(1057), + [anon_sym_GT_AMP] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), + [anon_sym_LT_LPAREN] = ACTIONS(1057), + [sym_ansii_c_string] = ACTIONS(1057), }, [156] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_EQ_TILDE] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_EQ_EQ] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [157] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [anon_sym_DQUOTE] = ACTIONS(1067), - [sym__concat] = ACTIONS(1069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1069), + [sym__concat] = ACTIONS(1071), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), - [sym__string_content] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1067), - [anon_sym_BQUOTE] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1069), + [sym__string_content] = ACTIONS(1069), + [anon_sym_DOLLAR] = ACTIONS(1069), + [anon_sym_BQUOTE] = ACTIONS(1069), }, [158] = { - [anon_sym_DOLLAR] = ACTIONS(1067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [anon_sym_DQUOTE] = ACTIONS(1067), - [anon_sym_BQUOTE] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1069), + [anon_sym_BQUOTE] = ACTIONS(1069), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), - [sym__string_content] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1069), + [sym__string_content] = ACTIONS(1069), }, [159] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1073), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -11957,171 +12009,178 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(1073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1067), - [anon_sym_BQUOTE] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1069), + [anon_sym_BQUOTE] = ACTIONS(1081), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), - [sym__string_content] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1084), + [sym__string_content] = ACTIONS(1087), }, [161] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [162] = { - [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(234), - [sym_postfix_expression] = STATE(234), - [sym_string] = STATE(559), - [aux_sym__literal_repeat1] = STATE(561), - [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(234), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(234), - [sym_binary_expression] = STATE(234), - [sym_concatenation] = STATE(234), - [sym_expansion] = STATE(559), + [sym_command_substitution] = STATE(560), + [sym_unary_expression] = STATE(235), + [sym_postfix_expression] = STATE(235), + [sym_string] = STATE(560), + [aux_sym__literal_repeat1] = STATE(562), + [sym_process_substitution] = STATE(560), + [sym_parenthesized_expression] = STATE(235), + [sym_simple_expansion] = STATE(560), + [sym_string_expansion] = STATE(560), + [sym__expression] = STATE(235), + [sym_binary_expression] = STATE(235), + [sym_concatenation] = STATE(235), + [sym_expansion] = STATE(560), [anon_sym_LPAREN] = ACTIONS(607), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(1088), + [anon_sym_LF] = ACTIONS(1090), [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(617), [sym_test_operator] = ACTIONS(613), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_GT_LPAREN] = ACTIONS(619), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_GT_LPAREN] = ACTIONS(621), [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(625), [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_LT_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_LT_LPAREN] = ACTIONS(621), [sym_ansii_c_string] = ACTIONS(609), - [sym__special_character] = ACTIONS(627), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1088), + [sym__special_character] = ACTIONS(629), + [anon_sym_SEMI_SEMI] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), }, [163] = { - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_PLUS_EQ] = ACTIONS(1090), - [anon_sym_DASH_EQ] = ACTIONS(1090), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1090), - [sym_test_operator] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(1096), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ_TILDE] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), }, [164] = { - [sym_command_substitution] = STATE(482), - [aux_sym__literal_repeat1] = STATE(484), - [sym_string] = STATE(482), - [sym_process_substitution] = STATE(482), - [aux_sym_for_statement_repeat1] = STATE(236), - [sym_simple_expansion] = STATE(482), - [sym_string_expansion] = STATE(482), - [sym_concatenation] = STATE(236), - [sym_expansion] = STATE(482), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1102), - [sym_word] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_ansii_c_string] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1110), - [anon_sym_BQUOTE] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_number] = ACTIONS(1104), - [anon_sym_GT_LPAREN] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1096), + [anon_sym_PLUS_EQ] = ACTIONS(1096), + [anon_sym_DASH_EQ] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1096), + [sym_test_operator] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1096), + [anon_sym_GT_EQ] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_EQ_TILDE] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_LT_EQ] = ACTIONS(1096), + [anon_sym_AMP_AMP] = ACTIONS(1096), + [anon_sym_SEMI_SEMI] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), }, [165] = { - [sym_do_group] = STATE(237), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(635), + [sym_command_substitution] = STATE(483), + [aux_sym__literal_repeat1] = STATE(485), + [sym_string] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_for_statement_repeat1] = STATE(237), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_concatenation] = STATE(237), + [sym_expansion] = STATE(483), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1106), + [sym_word] = ACTIONS(1108), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_DOLLAR] = ACTIONS(1112), + [sym_ansii_c_string] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1114), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym__special_character] = ACTIONS(1118), + [sym_number] = ACTIONS(1108), + [anon_sym_GT_LPAREN] = ACTIONS(1114), }, [166] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(239), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_do_group] = STATE(238), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(637), + }, + [167] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(240), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -12129,7 +12188,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsetenv] = ACTIONS(67), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_done] = ACTIONS(1116), + [anon_sym_done] = ACTIONS(1120), [anon_sym_GT_LPAREN] = ACTIONS(73), [sym_number] = ACTIONS(75), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), @@ -12164,34 +12223,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [167] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_AMP_GT_GT] = ACTIONS(1118), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1118), - [sym_file_descriptor] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1118), - [anon_sym_AMP_GT] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1118), - [ts_builtin_sym_end] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1118), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_GT_AMP] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_LT_AMP] = ACTIONS(1118), - [anon_sym_GT_GT] = ACTIONS(1118), - [anon_sym_AMP_AMP] = ACTIONS(1118), - [anon_sym_SEMI_SEMI] = ACTIONS(1118), - [anon_sym_PIPE_AMP] = ACTIONS(1118), - }, [168] = { - [sym_heredoc_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), [anon_sym_LT_LT_DASH] = ACTIONS(1122), [anon_sym_AMP] = ACTIONS(1122), [anon_sym_AMP_GT_GT] = ACTIONS(1122), @@ -12219,98 +12251,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [ts_builtin_sym_end] = ACTIONS(1128), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), + }, + [170] = { + [sym_heredoc_redirect] = STATE(98), + [aux_sym_redirected_statement_repeat1] = STATE(98), + [sym_herestring_redirect] = STATE(98), + [sym_file_redirect] = STATE(98), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1126), [anon_sym_BQUOTE] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_GT_GT] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1122), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), - [ts_builtin_sym_end] = ACTIONS(1124), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), + [ts_builtin_sym_end] = ACTIONS(1128), [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), - }, - [170] = { - [ts_builtin_sym_end] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), }, [171] = { - [sym_command_substitution] = STATE(242), - [sym_simple_expansion] = STATE(242), - [sym_expansion] = STATE(242), - [aux_sym_heredoc_body_repeat1] = STATE(242), - [anon_sym_DOLLAR] = ACTIONS(1130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1134), - [sym__heredoc_body_end] = ACTIONS(1136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), - [sym__heredoc_body_middle] = ACTIONS(1140), + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_SEMI_SEMI] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), + [sym_command_substitution] = STATE(243), + [sym_simple_expansion] = STATE(243), + [sym_expansion] = STATE(243), + [aux_sym_heredoc_body_repeat1] = STATE(243), + [anon_sym_DOLLAR] = ACTIONS(1134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1138), + [sym__heredoc_body_end] = ACTIONS(1140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1142), + [sym__heredoc_body_middle] = ACTIONS(1144), }, [173] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1148), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1148), - [sym_file_descriptor] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), - [ts_builtin_sym_end] = ACTIONS(1150), - [anon_sym_LT_LT_LT] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_GT_AMP] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_LT_AMP] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), }, [174] = { - [sym_heredoc_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), [anon_sym_LT_LT_DASH] = ACTIONS(1152), [anon_sym_AMP] = ACTIONS(1152), [anon_sym_AMP_GT_GT] = ACTIONS(1152), @@ -12324,368 +12356,356 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(1152), [ts_builtin_sym_end] = ACTIONS(1154), [anon_sym_LT_LT_LT] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(1152), [anon_sym_GT_AMP] = ACTIONS(1152), [anon_sym_LT] = ACTIONS(1152), [anon_sym_LT_AMP] = ACTIONS(1152), [anon_sym_GT_GT] = ACTIONS(1152), [anon_sym_AMP_AMP] = ACTIONS(1152), [anon_sym_SEMI_SEMI] = ACTIONS(1152), - [anon_sym_PIPE_AMP] = ACTIONS(329), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [175] = { [sym_heredoc_redirect] = STATE(98), [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_LT_LT] = ACTIONS(1156), + [sym_file_descriptor] = ACTIONS(1158), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_AMP_GT] = ACTIONS(1156), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [ts_builtin_sym_end] = ACTIONS(1158), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_GT_AMP] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_LT_AMP] = ACTIONS(1156), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(329), + }, + [176] = { + [sym_heredoc_redirect] = STATE(98), + [aux_sym_redirected_statement_repeat1] = STATE(98), + [sym_herestring_redirect] = STATE(98), + [sym_file_redirect] = STATE(98), + [anon_sym_AMP] = ACTIONS(1156), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1156), [anon_sym_BQUOTE] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), [anon_sym_PIPE] = ACTIONS(329), [sym_word] = ACTIONS(331), [anon_sym_LT] = ACTIONS(331), [anon_sym_LT_AMP] = ACTIONS(331), [anon_sym_GT_GT] = ACTIONS(331), [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1156), [anon_sym_GT_AMP] = ACTIONS(331), - [ts_builtin_sym_end] = ACTIONS(1154), + [ts_builtin_sym_end] = ACTIONS(1158), [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1152), - [anon_sym_SEMI_SEMI] = ACTIONS(1152), - [anon_sym_PIPE_AMP] = ACTIONS(329), - }, - [176] = { - [aux_sym_concatenation_repeat1] = STATE(1004), - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1156), - [sym_file_descriptor] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_AMP_GT] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [ts_builtin_sym_end] = ACTIONS(1158), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_GT_AMP] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_LT_AMP] = ACTIONS(1156), - [anon_sym_GT_GT] = ACTIONS(1156), - [sym__concat] = ACTIONS(1160), [anon_sym_AMP_AMP] = ACTIONS(1156), [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(329), }, [177] = { - [aux_sym__literal_repeat1] = STATE(1039), - [anon_sym_LT_LT_DASH] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_AMP_GT_GT] = ACTIONS(1162), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_LT_LT] = ACTIONS(1162), - [sym_file_descriptor] = ACTIONS(1164), - [anon_sym_GT] = ACTIONS(1162), - [anon_sym_AMP_GT] = ACTIONS(1162), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [ts_builtin_sym_end] = ACTIONS(1164), - [anon_sym_LT_LT_LT] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1162), - [anon_sym_GT_AMP] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(1162), - [anon_sym_LT_AMP] = ACTIONS(1162), - [anon_sym_GT_GT] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [sym__special_character] = ACTIONS(1166), - [anon_sym_SEMI_SEMI] = ACTIONS(1162), - [anon_sym_PIPE_AMP] = ACTIONS(1162), + [aux_sym_concatenation_repeat1] = STATE(1010), + [anon_sym_LT_LT_DASH] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_AMP_GT_GT] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1160), + [sym_file_descriptor] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1160), + [anon_sym_AMP_GT] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [ts_builtin_sym_end] = ACTIONS(1162), + [anon_sym_LT_LT_LT] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_GT_AMP] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_LT_AMP] = ACTIONS(1160), + [anon_sym_GT_GT] = ACTIONS(1160), + [sym__concat] = ACTIONS(1164), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_SEMI_SEMI] = ACTIONS(1160), + [anon_sym_PIPE_AMP] = ACTIONS(1160), }, [178] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1156), - [sym_file_descriptor] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_AMP_GT] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [ts_builtin_sym_end] = ACTIONS(1158), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_GT_AMP] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_LT_AMP] = ACTIONS(1156), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_AMP_AMP] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(1156), + [aux_sym__literal_repeat1] = STATE(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1166), + [anon_sym_AMP_GT_GT] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1166), + [anon_sym_LT_LT] = ACTIONS(1166), + [sym_file_descriptor] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1166), + [anon_sym_AMP_GT] = ACTIONS(1166), + [anon_sym_PIPE_PIPE] = ACTIONS(1166), + [ts_builtin_sym_end] = ACTIONS(1168), + [anon_sym_LT_LT_LT] = ACTIONS(1166), + [anon_sym_PIPE] = ACTIONS(1166), + [anon_sym_GT_AMP] = ACTIONS(1166), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_LT_AMP] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_AMP_AMP] = ACTIONS(1166), + [sym__special_character] = ACTIONS(1170), + [anon_sym_SEMI_SEMI] = ACTIONS(1166), + [anon_sym_PIPE_AMP] = ACTIONS(1166), }, [179] = { - [sym_heredoc_redirect] = STATE(179), - [aux_sym_redirected_statement_repeat1] = STATE(179), - [sym_herestring_redirect] = STATE(179), - [sym_file_redirect] = STATE(179), - [anon_sym_LT_LT_DASH] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_AMP_GT_GT] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_LT_LT] = ACTIONS(1168), - [sym_file_descriptor] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_AMP_GT] = ACTIONS(1173), - [anon_sym_PIPE_PIPE] = ACTIONS(1171), - [ts_builtin_sym_end] = ACTIONS(1176), - [anon_sym_LT_LT_LT] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_GT_AMP] = ACTIONS(1173), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_LT_AMP] = ACTIONS(1173), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1171), - [anon_sym_SEMI_SEMI] = ACTIONS(1171), - [anon_sym_PIPE_AMP] = ACTIONS(1171), + [anon_sym_LT_LT_DASH] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_AMP_GT_GT] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1160), + [sym_file_descriptor] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1160), + [anon_sym_AMP_GT] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [ts_builtin_sym_end] = ACTIONS(1162), + [anon_sym_LT_LT_LT] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_GT_AMP] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_LT_AMP] = ACTIONS(1160), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_SEMI_SEMI] = ACTIONS(1160), + [anon_sym_PIPE_AMP] = ACTIONS(1160), }, [180] = { - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [ts_builtin_sym_end] = ACTIONS(1142), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [sym_heredoc_redirect] = STATE(180), + [aux_sym_redirected_statement_repeat1] = STATE(180), + [sym_herestring_redirect] = STATE(180), + [sym_file_redirect] = STATE(180), + [anon_sym_LT_LT_DASH] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_AMP_GT_GT] = ACTIONS(1177), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_LT_LT] = ACTIONS(1172), + [sym_file_descriptor] = ACTIONS(1182), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_AMP_GT] = ACTIONS(1177), + [anon_sym_PIPE_PIPE] = ACTIONS(1175), + [ts_builtin_sym_end] = ACTIONS(1180), + [anon_sym_LT_LT_LT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1175), + [anon_sym_GT_AMP] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_LT_AMP] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(1175), + [anon_sym_SEMI_SEMI] = ACTIONS(1175), + [anon_sym_PIPE_AMP] = ACTIONS(1175), }, [181] = { - [sym_heredoc_body] = STATE(244), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(658), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(660), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [ts_builtin_sym_end] = ACTIONS(1142), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [ts_builtin_sym_end] = ACTIONS(1146), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [182] = { + [sym_heredoc_body] = STATE(245), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(660), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [sym__heredoc_body_beginning] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [ts_builtin_sym_end] = ACTIONS(1146), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + }, + [183] = { [sym_command_substitution] = STATE(105), [aux_sym__literal_repeat1] = STATE(106), [sym_string] = STATE(105), [sym_process_substitution] = STATE(105), [sym_simple_expansion] = STATE(105), [sym_string_expansion] = STATE(105), - [aux_sym_command_repeat2] = STATE(186), - [sym_concatenation] = STATE(186), + [aux_sym_command_repeat2] = STATE(187), + [sym_concatenation] = STATE(187), [sym_expansion] = STATE(105), - [anon_sym_PIPE_AMP] = ACTIONS(1184), - [anon_sym_AMP_GT_GT] = ACTIONS(1184), + [anon_sym_PIPE_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_LT_LT] = ACTIONS(1184), + [anon_sym_LT_LT] = ACTIONS(1188), [anon_sym_BQUOTE] = ACTIONS(343), [anon_sym_GT_LPAREN] = ACTIONS(345), [sym_number] = ACTIONS(347), [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [sym_word] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_LT_AMP] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_EQ_TILDE] = ACTIONS(351), - [sym__special_character] = ACTIONS(31), - [anon_sym_LT_LT_DASH] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1184), - [sym_raw_string] = ACTIONS(347), - [sym_file_descriptor] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_AMP_GT] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(351), - [ts_builtin_sym_end] = ACTIONS(1186), - [anon_sym_LT_LT_LT] = ACTIONS(1184), - [anon_sym_GT_AMP] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(1184), - [anon_sym_SEMI_SEMI] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - }, - [183] = { - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_GT_LPAREN] = ACTIONS(1188), - [sym_number] = ACTIONS(1188), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), [anon_sym_PIPE_PIPE] = ACTIONS(1188), [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(1188), + [sym_word] = ACTIONS(347), [anon_sym_LT] = ACTIONS(1188), [anon_sym_LT_AMP] = ACTIONS(1188), [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [sym__special_character] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(351), + [sym__special_character] = ACTIONS(31), [anon_sym_LT_LT_DASH] = ACTIONS(1188), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1190), [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(347), [sym_file_descriptor] = ACTIONS(1190), [anon_sym_GT] = ACTIONS(1188), [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(351), + [ts_builtin_sym_end] = ACTIONS(1190), [anon_sym_LT_LT_LT] = ACTIONS(1188), [anon_sym_GT_AMP] = ACTIONS(1188), - [ts_builtin_sym_end] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), - [anon_sym_LT_LPAREN] = ACTIONS(1188), - [sym_ansii_c_string] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(347), [anon_sym_AMP_AMP] = ACTIONS(1188), [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_PIPE_AMP] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), }, [184] = { - [aux_sym_concatenation_repeat1] = STATE(53), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_GT_LPAREN] = ACTIONS(1188), - [sym_number] = ACTIONS(1188), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [sym__concat] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_AMP] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [sym__special_character] = ACTIONS(1188), - [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_GT_LPAREN] = ACTIONS(1192), + [sym_number] = ACTIONS(1192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [sym_word] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_AMP] = ACTIONS(1192), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_EQ_TILDE] = ACTIONS(1192), + [sym__special_character] = ACTIONS(1192), + [anon_sym_LT_LT_DASH] = ACTIONS(1192), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(1188), - [sym_file_descriptor] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_GT_AMP] = ACTIONS(1188), - [ts_builtin_sym_end] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), - [anon_sym_LT_LPAREN] = ACTIONS(1188), - [sym_ansii_c_string] = ACTIONS(1188), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_PIPE_AMP] = ACTIONS(1188), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [sym_raw_string] = ACTIONS(1192), + [sym_file_descriptor] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_AMP_GT] = ACTIONS(1192), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_GT_AMP] = ACTIONS(1192), + [ts_builtin_sym_end] = ACTIONS(1194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1192), + [sym_ansii_c_string] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_SEMI_SEMI] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), }, [185] = { - [aux_sym__literal_repeat1] = STATE(91), + [aux_sym_concatenation_repeat1] = STATE(53), [anon_sym_AMP] = ACTIONS(1192), [anon_sym_AMP_GT_GT] = ACTIONS(1192), [anon_sym_DOLLAR] = ACTIONS(1192), @@ -12695,13 +12715,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1192), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [sym__concat] = ACTIONS(191), [anon_sym_PIPE] = ACTIONS(1192), [sym_word] = ACTIONS(1192), [anon_sym_LT] = ACTIONS(1192), [anon_sym_LT_AMP] = ACTIONS(1192), [anon_sym_GT_GT] = ACTIONS(1192), [anon_sym_EQ_TILDE] = ACTIONS(1192), - [sym__special_character] = ACTIONS(309), + [sym__special_character] = ACTIONS(1192), [anon_sym_LT_LT_DASH] = ACTIONS(1192), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1194), @@ -12723,606 +12744,644 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1192), }, [186] = { + [aux_sym__literal_repeat1] = STATE(91), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_number] = ACTIONS(1196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [sym_word] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_EQ_TILDE] = ACTIONS(1196), + [sym__special_character] = ACTIONS(309), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [ts_builtin_sym_end] = ACTIONS(1198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [sym_ansii_c_string] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + }, + [187] = { [sym_command_substitution] = STATE(105), [aux_sym__literal_repeat1] = STATE(106), [sym_string] = STATE(105), [sym_process_substitution] = STATE(105), [sym_simple_expansion] = STATE(105), [sym_string_expansion] = STATE(105), - [aux_sym_command_repeat2] = STATE(186), - [sym_concatenation] = STATE(186), + [aux_sym_command_repeat2] = STATE(187), + [sym_concatenation] = STATE(187), [sym_expansion] = STATE(105), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1199), - [anon_sym_GT_LPAREN] = ACTIONS(1202), - [sym_number] = ACTIONS(1205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_AMP] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1211), - [sym__special_character] = ACTIONS(1214), - [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1203), + [anon_sym_GT_LPAREN] = ACTIONS(1206), + [sym_number] = ACTIONS(1209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [sym_word] = ACTIONS(1209), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_AMP] = ACTIONS(1192), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [sym__special_character] = ACTIONS(1218), + [anon_sym_LT_LT_DASH] = ACTIONS(1192), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(1205), - [sym_file_descriptor] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1217), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_GT_AMP] = ACTIONS(1188), - [ts_builtin_sym_end] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1220), - [anon_sym_LT_LPAREN] = ACTIONS(1202), - [sym_ansii_c_string] = ACTIONS(1205), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_PIPE_AMP] = ACTIONS(1188), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [sym_raw_string] = ACTIONS(1209), + [sym_file_descriptor] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_AMP_GT] = ACTIONS(1192), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1221), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_GT_AMP] = ACTIONS(1192), + [ts_builtin_sym_end] = ACTIONS(1194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), + [anon_sym_LT_LPAREN] = ACTIONS(1206), + [sym_ansii_c_string] = ACTIONS(1209), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_SEMI_SEMI] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), }, - [187] = { + [188] = { [sym_string] = STATE(49), - [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1227), [anon_sym__] = ACTIONS(175), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(1225), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), [anon_sym_0] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), [anon_sym_STAR] = ACTIONS(175), - [anon_sym_EQ_TILDE] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [sym_raw_string] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1225), - [sym_file_descriptor] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_raw_string] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1231), [anon_sym_AT] = ACTIONS(175), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [ts_builtin_sym_end] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), [aux_sym__simple_variable_name_token1] = ACTIONS(175), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [sym_ansii_c_string] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), - }, - [188] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_EQ_TILDE] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_EQ_EQ] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [ts_builtin_sym_end] = ACTIONS(1233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, [189] = { + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [ts_builtin_sym_end] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), + }, + [190] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(246), - [sym_concatenation] = STATE(246), + [aux_sym_expansion_repeat1] = STATE(247), + [sym_concatenation] = STATE(247), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1239), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(1241), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_COLON_DASH] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_COLON_DASH] = ACTIONS(1239), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1239), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1235), + [anon_sym_COLON_QMARK] = ACTIONS(1239), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1235), + [anon_sym_COLON] = ACTIONS(1239), [sym__special_character] = ACTIONS(459), }, - [190] = { + [191] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [191] = { + [192] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1244), - [sym_raw_string] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_COLON_DASH] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1241), - [sym_number] = ACTIONS(1255), - [anon_sym_COLON_QMARK] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1264), - [anon_sym_GT_LPAREN] = ACTIONS(1267), - [sym_word] = ACTIONS(1255), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1267), - [sym_ansii_c_string] = ACTIONS(1247), - [anon_sym_COLON] = ACTIONS(1241), - [sym__special_character] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1245), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1248), + [sym_raw_string] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_COLON_DASH] = ACTIONS(1245), + [anon_sym_EQ] = ACTIONS(1245), + [sym_number] = ACTIONS(1259), + [anon_sym_COLON_QMARK] = ACTIONS(1245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1268), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_word] = ACTIONS(1259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [sym_ansii_c_string] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1245), + [sym__special_character] = ACTIONS(1277), }, - [192] = { + [193] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(246), - [sym_concatenation] = STATE(246), + [aux_sym_expansion_repeat1] = STATE(247), + [sym_concatenation] = STATE(247), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1239), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(1241), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_COLON_DASH] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_COLON_DASH] = ACTIONS(1239), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1239), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1235), + [anon_sym_COLON_QMARK] = ACTIONS(1239), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1235), + [anon_sym_COLON] = ACTIONS(1239), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(1276), - }, - [193] = { - [sym_command_substitution] = STATE(248), - [aux_sym__literal_repeat1] = STATE(249), - [sym_string] = STATE(248), - [sym_process_substitution] = STATE(248), - [sym_simple_expansion] = STATE(248), - [sym_string_expansion] = STATE(248), - [sym_concatenation] = STATE(250), - [sym_expansion] = STATE(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1278), - [sym_word] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(1278), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(1239), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(1280), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_regex] = ACTIONS(1280), }, [194] = { + [sym_command_substitution] = STATE(249), + [aux_sym__literal_repeat1] = STATE(250), + [sym_string] = STATE(249), + [sym_process_substitution] = STATE(249), + [sym_simple_expansion] = STATE(249), + [sym_string_expansion] = STATE(249), + [sym_concatenation] = STATE(251), + [sym_expansion] = STATE(249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1282), + [sym_word] = ACTIONS(1284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(1282), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(1243), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(1284), + [anon_sym_GT_LPAREN] = ACTIONS(945), + }, + [195] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(253), - [sym_concatenation] = STATE(253), + [aux_sym_expansion_repeat1] = STATE(254), + [sym_concatenation] = STATE(254), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1282), + [anon_sym_PERCENT] = ACTIONS(1286), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(1288), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_COLON_DASH] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_COLON_DASH] = ACTIONS(1286), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1282), + [anon_sym_COLON_QMARK] = ACTIONS(1286), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1282), + [anon_sym_COLON] = ACTIONS(1286), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(1288), - }, - [195] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [ts_builtin_sym_end] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [sym_regex] = ACTIONS(1292), }, [196] = { + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + }, + [197] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [197] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1239), - [sym__concat] = ACTIONS(1294), - }, [198] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1298), + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1243), + [sym__concat] = ACTIONS(1298), }, [199] = { - [anon_sym_RBRACE] = ACTIONS(1239), + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1302), [sym_comment] = ACTIONS(41), }, [200] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [ts_builtin_sym_end] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1243), + [sym_comment] = ACTIONS(41), }, [201] = { + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + }, + [202] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(256), - [sym_concatenation] = STATE(256), + [aux_sym_expansion_repeat1] = STATE(257), + [sym_concatenation] = STATE(257), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1308), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(1310), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_COLON_DASH] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_COLON_DASH] = ACTIONS(1308), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1308), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1304), + [anon_sym_COLON_QMARK] = ACTIONS(1308), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1304), + [anon_sym_COLON] = ACTIONS(1308), [sym__special_character] = ACTIONS(459), }, - [202] = { + [203] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [203] = { - [sym_compound_statement] = STATE(257), + [204] = { + [sym_compound_statement] = STATE(258), [anon_sym_LBRACE] = ACTIONS(27), [sym_comment] = ACTIONS(41), }, - [204] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1310), - [sym_file_descriptor] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_AMP_GT] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [ts_builtin_sym_end] = ACTIONS(1312), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_GT_AMP] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_SEMI_SEMI] = ACTIONS(1310), - [anon_sym_PIPE_AMP] = ACTIONS(1310), - }, [205] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_SEMI_SEMI] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1314), + [sym_file_descriptor] = ACTIONS(1316), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_AMP_GT] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [ts_builtin_sym_end] = ACTIONS(1316), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_GT_AMP] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_SEMI_SEMI] = ACTIONS(1314), + [anon_sym_PIPE_AMP] = ACTIONS(1314), }, [206] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1318), - [sym_file_descriptor] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_AMP_GT] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [ts_builtin_sym_end] = ACTIONS(1320), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_GT_AMP] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_SEMI_SEMI] = ACTIONS(1318), - [anon_sym_PIPE_AMP] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_SEMI_SEMI] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), }, [207] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(259), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [anon_sym_LT_LT_DASH] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_AMP_GT_GT] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_LT_LT] = ACTIONS(1322), + [sym_file_descriptor] = ACTIONS(1324), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_AMP_GT] = ACTIONS(1322), + [anon_sym_PIPE_PIPE] = ACTIONS(1322), + [ts_builtin_sym_end] = ACTIONS(1324), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_GT_AMP] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_LT_AMP] = ACTIONS(1322), + [anon_sym_GT_GT] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1322), + [anon_sym_SEMI_SEMI] = ACTIONS(1322), + [anon_sym_PIPE_AMP] = ACTIONS(1322), + }, + [208] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(260), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), [anon_sym_typeset] = ACTIONS(65), [anon_sym_unsetenv] = ACTIONS(67), [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(1322), + [anon_sym_fi] = ACTIONS(1326), [anon_sym_BQUOTE] = ACTIONS(71), [anon_sym_GT_LPAREN] = ACTIONS(73), [sym_number] = ACTIONS(75), @@ -13358,37 +13417,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [208] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym__terminated_statement] = STATE(260), + [209] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym__terminated_statement] = STATE(261), [sym_if_statement] = STATE(65), [sym_function_definition] = STATE(65), [sym_negated_command] = STATE(65), [sym_test_command] = STATE(65), [sym_variable_assignment] = STATE(66), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), [sym_redirected_statement] = STATE(65), [sym_for_statement] = STATE(65), [sym_compound_statement] = STATE(65), [sym_subshell] = STATE(65), [sym_declaration_command] = STATE(65), [sym_unset_command] = STATE(65), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym_c_style_for_statement] = STATE(65), [sym_while_statement] = STATE(65), [sym_case_statement] = STATE(65), [sym_pipeline] = STATE(65), [sym_list] = STATE(65), [sym_command] = STATE(65), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -13430,11 +13489,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [209] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [210] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_PIPE_AMP] = ACTIONS(491), [anon_sym_AMP_GT_GT] = ACTIONS(493), [anon_sym_LT_LT] = ACTIONS(489), @@ -13445,23 +13504,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(493), [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_LF] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1330), [sym_file_descriptor] = ACTIONS(499), [anon_sym_GT] = ACTIONS(493), [anon_sym_AMP_GT] = ACTIONS(493), [anon_sym_LT_LT_LT] = ACTIONS(503), [anon_sym_GT_AMP] = ACTIONS(493), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI_SEMI] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), }, - [210] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_AMP] = ACTIONS(1326), + [211] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_AMP] = ACTIONS(1330), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_LT_LT] = ACTIONS(489), @@ -13479,8 +13538,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_LF] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1330), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), @@ -13492,56 +13551,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(1326), + [anon_sym_SEMI_SEMI] = ACTIONS(1330), [anon_sym_PIPE_AMP] = ACTIONS(491), }, - [211] = { - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1328), - }, [212] = { - [aux_sym_if_statement_repeat1] = STATE(264), - [sym_elif_clause] = STATE(264), - [sym_else_clause] = STATE(265), - [anon_sym_elif] = ACTIONS(1330), [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1332), + [anon_sym_fi] = ACTIONS(1332), }, [213] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_elif_clause] = STATE(266), - [sym_else_clause] = STATE(265), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_if_statement_repeat1] = STATE(266), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(267), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [aux_sym_if_statement_repeat1] = STATE(265), + [sym_elif_clause] = STATE(265), + [sym_else_clause] = STATE(266), + [anon_sym_elif] = ACTIONS(1334), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1336), + }, + [214] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_elif_clause] = STATE(267), + [sym_else_clause] = STATE(266), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_if_statement_repeat1] = STATE(267), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(268), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -13549,8 +13608,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsetenv] = ACTIONS(67), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_fi] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(977), + [anon_sym_fi] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(979), [sym_number] = ACTIONS(75), [anon_sym_GT_LPAREN] = ACTIONS(73), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), @@ -13578,7 +13637,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_elif] = ACTIONS(979), + [anon_sym_elif] = ACTIONS(981), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), @@ -13586,97 +13645,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(109), [anon_sym_LT_LPAREN] = ACTIONS(73), }, - [214] = { + [215] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_SEMI_SEMI] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), }, - [215] = { - [sym_command_substitution] = STATE(269), - [aux_sym__literal_repeat1] = STATE(271), - [sym_case_item] = STATE(273), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(272), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(273), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), + [216] = { + [sym_command_substitution] = STATE(270), + [aux_sym__literal_repeat1] = STATE(272), + [sym_case_item] = STATE(274), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(273), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(274), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1344), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(1344), + [anon_sym_esac] = ACTIONS(1348), [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [anon_sym_LT_LPAREN] = ACTIONS(245), [anon_sym_BQUOTE] = ACTIONS(243), [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [216] = { + [217] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_SEMI_SEMI] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_LF] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_SEMI_SEMI] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), }, - [217] = { - [sym_command_substitution] = STATE(269), - [aux_sym__literal_repeat1] = STATE(271), - [sym_case_item] = STATE(278), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(277), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(278), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), + [218] = { + [sym_command_substitution] = STATE(270), + [aux_sym__literal_repeat1] = STATE(272), + [sym_case_item] = STATE(279), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(278), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(279), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1344), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(1350), + [anon_sym_esac] = ACTIONS(1354), [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [anon_sym_LT_LPAREN] = ACTIONS(245), [anon_sym_BQUOTE] = ACTIONS(243), [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [218] = { - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1354), - [sym_test_operator] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1352), - }, [219] = { [anon_sym_PLUS_EQ] = ACTIONS(1356), [anon_sym_PLUS_PLUS] = ACTIONS(1356), @@ -13701,214 +13737,237 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1356), }, [220] = { - [anon_sym_PLUS_EQ] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_DASH_EQ] = ACTIONS(1356), - [anon_sym_BANG_EQ] = ACTIONS(1356), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1358), - [sym_test_operator] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_EQ_TILDE] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1362), + [sym_test_operator] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1360), }, [221] = { - [aux_sym_concatenation_repeat1] = STATE(1132), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1360), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1360), - [anon_sym_BQUOTE] = ACTIONS(1360), - [anon_sym_GT_LPAREN] = ACTIONS(1360), - [sym_number] = ACTIONS(1362), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym__concat] = ACTIONS(1364), - [sym_word] = ACTIONS(1362), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1360), - [anon_sym_LT_LPAREN] = ACTIONS(1360), - [sym_ansii_c_string] = ACTIONS(1360), - [sym__special_character] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_EQ_TILDE] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1362), + [sym_test_operator] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1360), }, [222] = { - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [aux_sym_concatenation_repeat1] = STATE(1138), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1364), [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1366), - [anon_sym_BQUOTE] = ACTIONS(1366), - [anon_sym_GT_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_GT_LPAREN] = ACTIONS(1364), [sym_number] = ACTIONS(1366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym__concat] = ACTIONS(1368), [sym_word] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_LT_AMP] = ACTIONS(1366), - [anon_sym_GT_GT] = ACTIONS(1366), - [sym__special_character] = ACTIONS(1366), - [anon_sym_LT_LT_DASH] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [sym_raw_string] = ACTIONS(1366), - [sym_variable_name] = ACTIONS(1368), - [sym_file_descriptor] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_AMP_GT] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_LT_LT_LT] = ACTIONS(1366), - [anon_sym_GT_AMP] = ACTIONS(1366), - [ts_builtin_sym_end] = ACTIONS(1368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), - [anon_sym_LT_LPAREN] = ACTIONS(1366), - [sym_ansii_c_string] = ACTIONS(1366), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_SEMI_SEMI] = ACTIONS(1366), - [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_LT_LPAREN] = ACTIONS(1364), + [sym_ansii_c_string] = ACTIONS(1364), + [sym__special_character] = ACTIONS(1364), }, [223] = { - [aux_sym__literal_repeat1] = STATE(1167), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_AMP_GT_GT] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_comment] = ACTIONS(41), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [sym_word] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_LT_AMP] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1370), + [sym__special_character] = ACTIONS(1370), + [anon_sym_LT_LT_DASH] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), [sym_raw_string] = ACTIONS(1370), - [sym_word] = ACTIONS(1372), + [sym_variable_name] = ACTIONS(1372), + [sym_file_descriptor] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_AMP_GT] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_GT_AMP] = ACTIONS(1370), + [ts_builtin_sym_end] = ACTIONS(1372), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_RPAREN] = ACTIONS(1370), - [sym_ansii_c_string] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), [anon_sym_LT_LPAREN] = ACTIONS(1370), - [sym__special_character] = ACTIONS(1374), - [sym_number] = ACTIONS(1372), - [anon_sym_GT_LPAREN] = ACTIONS(1370), + [sym_ansii_c_string] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(1370), + [anon_sym_PIPE_AMP] = ACTIONS(1370), }, [224] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(280), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(280), - [sym_expansion] = STATE(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [sym_ansii_c_string] = ACTIONS(1015), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(1376), - [sym__special_character] = ACTIONS(1029), - [sym_number] = ACTIONS(1017), - [anon_sym_GT_LPAREN] = ACTIONS(1023), + [aux_sym__literal_repeat1] = STATE(1173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1374), + [sym_word] = ACTIONS(1376), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1376), + [anon_sym_RPAREN] = ACTIONS(1374), + [sym_ansii_c_string] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [anon_sym_LT_LPAREN] = ACTIONS(1374), + [sym__special_character] = ACTIONS(1378), + [sym_number] = ACTIONS(1376), + [anon_sym_GT_LPAREN] = ACTIONS(1374), }, [225] = { - [anon_sym_PLUS_EQ] = ACTIONS(1378), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1380), - [anon_sym_EQ] = ACTIONS(1378), + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(281), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(281), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1380), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), }, [226] = { - [sym_command_substitution] = STATE(818), - [sym_simple_expansion] = STATE(818), - [sym_string_expansion] = STATE(818), - [sym_string] = STATE(818), - [sym_process_substitution] = STATE(818), - [sym_expansion] = STATE(818), + [anon_sym_PLUS_EQ] = ACTIONS(1382), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1382), + }, + [227] = { + [sym_command_substitution] = STATE(819), + [sym_simple_expansion] = STATE(819), + [sym_string_expansion] = STATE(819), + [sym_string] = STATE(819), + [sym_process_substitution] = STATE(819), + [sym_expansion] = STATE(819), [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), [anon_sym_DQUOTE] = ACTIONS(301), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1382), - [sym_word] = ACTIONS(1384), + [sym_raw_string] = ACTIONS(1386), + [sym_word] = ACTIONS(1388), [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), [anon_sym_DOLLAR] = ACTIONS(289), [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(1382), + [sym_ansii_c_string] = ACTIONS(1386), [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_RBRACK] = ACTIONS(1386), + [anon_sym_RBRACK] = ACTIONS(1390), [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym__special_character] = ACTIONS(1384), - [sym_number] = ACTIONS(1384), - }, - [227] = { - [anon_sym_PLUS_EQ] = ACTIONS(1388), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1388), + [sym__special_character] = ACTIONS(1388), + [sym_number] = ACTIONS(1388), }, [228] = { - [anon_sym_RBRACK] = ACTIONS(1392), + [anon_sym_PLUS_EQ] = ACTIONS(1392), [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(1394), + [anon_sym_EQ] = ACTIONS(1392), }, [229] = { - [anon_sym_RBRACK] = ACTIONS(1386), + [anon_sym_RBRACK] = ACTIONS(1396), [sym_comment] = ACTIONS(41), }, [230] = { - [anon_sym_DOLLAR] = ACTIONS(1394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym_BQUOTE] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1394), - [sym__string_content] = ACTIONS(1394), + [anon_sym_RBRACK] = ACTIONS(1390), + [sym_comment] = ACTIONS(41), }, [231] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_EQ_TILDE] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [ts_builtin_sym_end] = ACTIONS(1398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [anon_sym_BQUOTE] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1398), + [sym__string_content] = ACTIONS(1398), }, [232] = { + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), + }, + [233] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -13922,19 +13981,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__string_content] = ACTIONS(593), [anon_sym_QMARK] = ACTIONS(587), }, - [233] = { + [234] = { [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(286), - [sym_postfix_expression] = STATE(286), + [sym_unary_expression] = STATE(287), + [sym_postfix_expression] = STATE(287), [sym_string] = STATE(71), [aux_sym__literal_repeat1] = STATE(73), [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(286), + [sym_parenthesized_expression] = STATE(287), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(286), - [sym_binary_expression] = STATE(286), - [sym_concatenation] = STATE(286), + [sym__expression] = STATE(287), + [sym_binary_expression] = STATE(287), + [sym_concatenation] = STATE(287), [sym_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), [sym_comment] = ACTIONS(41), @@ -13946,7 +14005,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(245), [sym_number] = ACTIONS(247), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1400), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(251), [sym_word] = ACTIONS(247), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), @@ -13954,115 +14013,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), }, - [234] = { - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_PLUS_EQ] = ACTIONS(1090), - [anon_sym_DASH_EQ] = ACTIONS(1090), + [235] = { + [anon_sym_BANG_EQ] = ACTIONS(1096), + [anon_sym_PLUS_EQ] = ACTIONS(1096), + [anon_sym_DASH_EQ] = ACTIONS(1096), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1090), - [sym_test_operator] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(1096), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ_TILDE] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_LF] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1096), + [sym_test_operator] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1096), + [anon_sym_GT_EQ] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_EQ_TILDE] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_LT_EQ] = ACTIONS(1096), + [anon_sym_AMP_AMP] = ACTIONS(1096), + [anon_sym_SEMI_SEMI] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), }, - [235] = { - [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(288), - [sym_postfix_expression] = STATE(288), - [sym_string] = STATE(559), - [aux_sym__literal_repeat1] = STATE(561), - [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(288), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(288), - [sym_binary_expression] = STATE(288), - [sym_concatenation] = STATE(288), - [sym_expansion] = STATE(559), + [236] = { + [sym_command_substitution] = STATE(560), + [sym_unary_expression] = STATE(289), + [sym_postfix_expression] = STATE(289), + [sym_string] = STATE(560), + [aux_sym__literal_repeat1] = STATE(562), + [sym_process_substitution] = STATE(560), + [sym_parenthesized_expression] = STATE(289), + [sym_simple_expansion] = STATE(560), + [sym_string_expansion] = STATE(560), + [sym__expression] = STATE(289), + [sym_binary_expression] = STATE(289), + [sym_concatenation] = STATE(289), + [sym_expansion] = STATE(560), [anon_sym_LPAREN] = ACTIONS(607), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(1402), + [anon_sym_LF] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_DOLLAR] = ACTIONS(617), [sym_test_operator] = ACTIONS(613), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_GT_LPAREN] = ACTIONS(619), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_GT_LPAREN] = ACTIONS(621), [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(625), [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_LT_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_LT_LPAREN] = ACTIONS(621), [sym_ansii_c_string] = ACTIONS(609), - [sym__special_character] = ACTIONS(627), - [anon_sym_SEMI_SEMI] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - }, - [236] = { - [sym_command_substitution] = STATE(482), - [aux_sym__literal_repeat1] = STATE(484), - [sym_string] = STATE(482), - [sym_process_substitution] = STATE(482), - [aux_sym_for_statement_repeat1] = STATE(503), - [sym_simple_expansion] = STATE(482), - [sym_string_expansion] = STATE(482), - [sym_concatenation] = STATE(503), - [sym_expansion] = STATE(482), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1104), - [anon_sym_LF] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_BQUOTE] = ACTIONS(1408), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym_word] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1416), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1104), - [sym__special_character] = ACTIONS(1418), + [sym__special_character] = ACTIONS(629), [anon_sym_SEMI_SEMI] = ACTIONS(1406), [anon_sym_AMP] = ACTIONS(1406), }, [237] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_AMP_GT_GT] = ACTIONS(1420), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1420), - [sym_file_descriptor] = ACTIONS(1422), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_AMP_GT] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [ts_builtin_sym_end] = ACTIONS(1422), - [anon_sym_LT_LT_LT] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_GT_AMP] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_LT_AMP] = ACTIONS(1420), - [anon_sym_GT_GT] = ACTIONS(1420), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_SEMI_SEMI] = ACTIONS(1420), - [anon_sym_PIPE_AMP] = ACTIONS(1420), + [sym_command_substitution] = STATE(483), + [aux_sym__literal_repeat1] = STATE(485), + [sym_string] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_for_statement_repeat1] = STATE(504), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_concatenation] = STATE(504), + [sym_expansion] = STATE(483), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_GT_LPAREN] = ACTIONS(1414), + [sym_number] = ACTIONS(1108), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_word] = ACTIONS(1108), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1420), + [anon_sym_LT_LPAREN] = ACTIONS(1414), + [sym_ansii_c_string] = ACTIONS(1108), + [sym__special_character] = ACTIONS(1422), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), }, [238] = { [anon_sym_LT_LT_DASH] = ACTIONS(1424), @@ -14088,36 +14124,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1424), }, [239] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(267), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1430), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), + }, + [240] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(268), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -14125,7 +14184,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsetenv] = ACTIONS(67), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_done] = ACTIONS(1428), + [anon_sym_done] = ACTIONS(1432), [anon_sym_GT_LPAREN] = ACTIONS(73), [sym_number] = ACTIONS(75), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), @@ -14160,349 +14219,311 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [240] = { - [anon_sym__] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_0] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1432), - [aux_sym__simple_variable_name_token1] = ACTIONS(1430), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_AT] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(1434), - }, [241] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_SEMI_SEMI] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_0] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1436), + [aux_sym__simple_variable_name_token1] = ACTIONS(1434), + [anon_sym_DOLLAR] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1438), }, [242] = { - [sym_command_substitution] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [aux_sym_heredoc_body_repeat1] = STATE(292), - [anon_sym_DOLLAR] = ACTIONS(1130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1134), - [sym__heredoc_body_end] = ACTIONS(1440), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), - [sym__heredoc_body_middle] = ACTIONS(1442), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_SEMI_SEMI] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), }, [243] = { - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_AMP_GT_GT] = ACTIONS(1446), - [anon_sym_local] = ACTIONS(1444), - [anon_sym_typeset] = ACTIONS(1444), - [anon_sym_unsetenv] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1446), - [anon_sym_GT_LPAREN] = ACTIONS(1446), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_AMP] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1444), - [sym_word] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), - [sym_raw_string] = ACTIONS(1446), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_declare] = ACTIONS(1444), - [sym_variable_name] = ACTIONS(1446), - [sym_file_descriptor] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_AMP_GT] = ACTIONS(1444), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_GT_AMP] = ACTIONS(1446), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT_LPAREN] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [sym_ansii_c_string] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [sym_command_substitution] = STATE(293), + [sym_simple_expansion] = STATE(293), + [sym_expansion] = STATE(293), + [aux_sym_heredoc_body_repeat1] = STATE(293), + [anon_sym_DOLLAR] = ACTIONS(1134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1138), + [sym__heredoc_body_end] = ACTIONS(1444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1142), + [sym__heredoc_body_middle] = ACTIONS(1446), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_SEMI_SEMI] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_AMP_GT_GT] = ACTIONS(1450), + [anon_sym_local] = ACTIONS(1448), + [anon_sym_typeset] = ACTIONS(1448), + [anon_sym_unsetenv] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_GT_LPAREN] = ACTIONS(1450), + [sym_number] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_LT_AMP] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1448), + [sym_word] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_declare] = ACTIONS(1448), + [sym_variable_name] = ACTIONS(1450), + [sym_file_descriptor] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_readonly] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_GT_AMP] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_LT_LPAREN] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [sym_ansii_c_string] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), }, [245] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_SEMI_SEMI] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), }, [246] = { + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [anon_sym_EQ_TILDE] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), + }, + [247] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [247] = { + [248] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(295), - [sym_concatenation] = STATE(295), + [aux_sym_expansion_repeat1] = STATE(296), + [sym_concatenation] = STATE(296), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1460), + [anon_sym_PERCENT] = ACTIONS(1464), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1466), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_COLON_DASH] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_COLON_DASH] = ACTIONS(1464), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(1464), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1460), + [anon_sym_COLON_QMARK] = ACTIONS(1464), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_COLON] = ACTIONS(1464), [sym__special_character] = ACTIONS(459), }, - [248] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1294), - }, [249] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1464), + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1462), + [sym__concat] = ACTIONS(1298), }, [250] = { - [anon_sym_RBRACE] = ACTIONS(1458), + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1468), [sym_comment] = ACTIONS(41), }, [251] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [anon_sym_EQ_TILDE] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1462), + [sym_comment] = ACTIONS(41), }, [252] = { + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [anon_sym_EQ_TILDE] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), + }, + [253] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(298), - [sym_concatenation] = STATE(298), + [aux_sym_expansion_repeat1] = STATE(299), + [sym_concatenation] = STATE(299), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1474), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1476), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_COLON_DASH] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_COLON_DASH] = ACTIONS(1474), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1474), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1470), + [anon_sym_COLON_QMARK] = ACTIONS(1474), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1470), + [anon_sym_COLON] = ACTIONS(1474), [sym__special_character] = ACTIONS(459), }, - [253] = { + [254] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [254] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_EQ_TILDE] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [ts_builtin_sym_end] = ACTIONS(1478), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), - }, [255] = { [anon_sym_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), @@ -14542,141 +14563,179 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [256] = { + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_EQ_TILDE] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), + }, + [257] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [257] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_AMP_GT_GT] = ACTIONS(1486), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_LT_LT] = ACTIONS(1486), - [sym_file_descriptor] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1486), - [anon_sym_AMP_GT] = ACTIONS(1486), - [anon_sym_PIPE_PIPE] = ACTIONS(1486), - [ts_builtin_sym_end] = ACTIONS(1488), - [anon_sym_LT_LT_LT] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_GT_AMP] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_LT_AMP] = ACTIONS(1486), - [anon_sym_GT_GT] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_SEMI_SEMI] = ACTIONS(1486), - [anon_sym_PIPE_AMP] = ACTIONS(1486), - }, [258] = { - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_AMP_GT_GT] = ACTIONS(1446), - [anon_sym_local] = ACTIONS(1444), - [anon_sym_typeset] = ACTIONS(1444), - [anon_sym_unsetenv] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1446), - [anon_sym_GT_LPAREN] = ACTIONS(1446), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_AMP] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1444), - [sym_word] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), - [sym_raw_string] = ACTIONS(1446), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_declare] = ACTIONS(1444), - [sym_variable_name] = ACTIONS(1446), - [sym_file_descriptor] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_AMP_GT] = ACTIONS(1444), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_GT_AMP] = ACTIONS(1446), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT_LPAREN] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [sym_ansii_c_string] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym_LT_LT_DASH] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_AMP_GT_GT] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1490), + [sym_file_descriptor] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_AMP_GT] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(1492), + [anon_sym_LT_LT_LT] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_GT_AMP] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_LT_AMP] = ACTIONS(1490), + [anon_sym_GT_GT] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_SEMI_SEMI] = ACTIONS(1490), + [anon_sym_PIPE_AMP] = ACTIONS(1490), }, [259] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(267), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_AMP_GT_GT] = ACTIONS(1450), + [anon_sym_local] = ACTIONS(1448), + [anon_sym_typeset] = ACTIONS(1448), + [anon_sym_unsetenv] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_GT_LPAREN] = ACTIONS(1450), + [sym_number] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_LT_AMP] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1448), + [sym_word] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_declare] = ACTIONS(1448), + [sym_variable_name] = ACTIONS(1450), + [sym_file_descriptor] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_readonly] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_GT_AMP] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_LT_LPAREN] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [sym_ansii_c_string] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + }, + [260] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(268), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), [anon_sym_typeset] = ACTIONS(65), [anon_sym_unsetenv] = ACTIONS(67), [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(1490), + [anon_sym_fi] = ACTIONS(1494), [anon_sym_BQUOTE] = ACTIONS(71), [anon_sym_GT_LPAREN] = ACTIONS(73), [sym_number] = ACTIONS(75), @@ -14712,499 +14771,499 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [260] = { - [anon_sym_then] = ACTIONS(1492), - [sym_comment] = ACTIONS(41), - }, [261] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1494), - [anon_sym_typeset] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1496), - [anon_sym_BQUOTE] = ACTIONS(1494), - [anon_sym_done] = ACTIONS(1496), - [anon_sym_GT_LPAREN] = ACTIONS(1494), - [sym_word] = ACTIONS(1496), - [anon_sym_LT_AMP] = ACTIONS(1494), - [anon_sym_export] = ACTIONS(1496), - [sym__special_character] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1494), - [sym_raw_string] = ACTIONS(1494), - [anon_sym_declare] = ACTIONS(1496), - [sym_variable_name] = ACTIONS(1494), - [anon_sym_readonly] = ACTIONS(1496), - [anon_sym_unset] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_GT_AMP] = ACTIONS(1494), - [anon_sym_elif] = ACTIONS(1496), - [sym_ansii_c_string] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_local] = ACTIONS(1496), - [anon_sym_unsetenv] = ACTIONS(1496), - [anon_sym_fi] = ACTIONS(1496), - [anon_sym_else] = ACTIONS(1496), - [sym_number] = ACTIONS(1496), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1494), - [anon_sym_function] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT_GT] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [sym_file_descriptor] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1496), - [anon_sym_AMP_GT] = ACTIONS(1496), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1494), - [anon_sym_LT_LPAREN] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym_then] = ACTIONS(1496), + [sym_comment] = ACTIONS(41), }, [262] = { - [sym_heredoc_body] = STATE(301), - [anon_sym_AMP_GT_GT] = ACTIONS(1494), - [anon_sym_typeset] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1496), - [anon_sym_BQUOTE] = ACTIONS(1494), - [anon_sym_done] = ACTIONS(1496), - [anon_sym_GT_LPAREN] = ACTIONS(1494), - [sym_word] = ACTIONS(1496), - [sym__simple_heredoc_body] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(1494), - [anon_sym_export] = ACTIONS(1496), - [sym__special_character] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1494), - [sym_raw_string] = ACTIONS(1494), - [anon_sym_declare] = ACTIONS(1496), - [sym_variable_name] = ACTIONS(1494), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_readonly] = ACTIONS(1496), - [anon_sym_unset] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_GT_AMP] = ACTIONS(1494), - [anon_sym_elif] = ACTIONS(1496), - [sym_ansii_c_string] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_local] = ACTIONS(1496), - [anon_sym_unsetenv] = ACTIONS(1496), - [anon_sym_fi] = ACTIONS(1496), - [anon_sym_else] = ACTIONS(1496), - [sym_number] = ACTIONS(1496), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1494), - [anon_sym_function] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT_GT] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [sym_file_descriptor] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1496), - [anon_sym_AMP_GT] = ACTIONS(1496), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1494), - [anon_sym_LT_LPAREN] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym_AMP_GT_GT] = ACTIONS(1498), + [anon_sym_typeset] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1498), + [anon_sym_done] = ACTIONS(1500), + [anon_sym_GT_LPAREN] = ACTIONS(1498), + [sym_word] = ACTIONS(1500), + [anon_sym_LT_AMP] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1500), + [sym__special_character] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1498), + [sym_raw_string] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1500), + [sym_variable_name] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_unset] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1498), + [anon_sym_GT_AMP] = ACTIONS(1498), + [anon_sym_elif] = ACTIONS(1500), + [sym_ansii_c_string] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_local] = ACTIONS(1500), + [anon_sym_unsetenv] = ACTIONS(1500), + [anon_sym_fi] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [sym_number] = ACTIONS(1500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1498), + [anon_sym_function] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [sym_file_descriptor] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1498), + [anon_sym_LT_LPAREN] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), }, [263] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), + [sym_heredoc_body] = STATE(302), [anon_sym_AMP_GT_GT] = ACTIONS(1498), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_LT_LT] = ACTIONS(1498), - [sym_file_descriptor] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_AMP_GT] = ACTIONS(1498), - [anon_sym_PIPE_PIPE] = ACTIONS(1498), - [ts_builtin_sym_end] = ACTIONS(1500), - [anon_sym_LT_LT_LT] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_GT_AMP] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), + [anon_sym_typeset] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1498), + [anon_sym_done] = ACTIONS(1500), + [anon_sym_GT_LPAREN] = ACTIONS(1498), + [sym_word] = ACTIONS(1500), + [sym__simple_heredoc_body] = ACTIONS(969), [anon_sym_LT_AMP] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1500), + [sym__special_character] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1498), + [sym_raw_string] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1500), + [sym_variable_name] = ACTIONS(1498), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_unset] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1498), + [anon_sym_GT_AMP] = ACTIONS(1498), + [anon_sym_elif] = ACTIONS(1500), + [sym_ansii_c_string] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_local] = ACTIONS(1500), + [anon_sym_unsetenv] = ACTIONS(1500), + [anon_sym_fi] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [sym_number] = ACTIONS(1500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1498), + [anon_sym_function] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1500), [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_SEMI_SEMI] = ACTIONS(1498), - [anon_sym_PIPE_AMP] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [sym_file_descriptor] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1498), + [anon_sym_LT_LPAREN] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), }, [264] = { - [aux_sym_if_statement_repeat1] = STATE(264), - [sym_elif_clause] = STATE(264), - [anon_sym_elif] = ACTIONS(1502), - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1505), - [anon_sym_else] = ACTIONS(1505), + [anon_sym_LT_LT_DASH] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_AMP_GT_GT] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1502), + [sym_file_descriptor] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1502), + [anon_sym_AMP_GT] = ACTIONS(1502), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [ts_builtin_sym_end] = ACTIONS(1504), + [anon_sym_LT_LT_LT] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_GT_AMP] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_LT_AMP] = ACTIONS(1502), + [anon_sym_GT_GT] = ACTIONS(1502), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_SEMI_SEMI] = ACTIONS(1502), + [anon_sym_PIPE_AMP] = ACTIONS(1502), }, [265] = { + [aux_sym_if_statement_repeat1] = STATE(265), + [sym_elif_clause] = STATE(265), + [anon_sym_elif] = ACTIONS(1506), [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1507), + [anon_sym_fi] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1509), }, [266] = { - [aux_sym_if_statement_repeat1] = STATE(264), - [sym_elif_clause] = STATE(264), - [sym_else_clause] = STATE(303), - [anon_sym_elif] = ACTIONS(1330), [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1507), - [anon_sym_else] = ACTIONS(1332), + [anon_sym_fi] = ACTIONS(1511), }, [267] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(267), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [anon_sym_AMP_GT_GT] = ACTIONS(1509), - [anon_sym_typeset] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_BQUOTE] = ACTIONS(1518), - [anon_sym_done] = ACTIONS(1496), - [anon_sym_GT_LPAREN] = ACTIONS(1521), - [sym_word] = ACTIONS(1524), - [anon_sym_LT_AMP] = ACTIONS(1509), - [anon_sym_export] = ACTIONS(1512), - [sym__special_character] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1530), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1533), - [sym_raw_string] = ACTIONS(1536), - [anon_sym_declare] = ACTIONS(1512), - [sym_variable_name] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1512), - [anon_sym_unset] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1545), - [anon_sym_GT_AMP] = ACTIONS(1509), - [anon_sym_elif] = ACTIONS(1496), - [sym_ansii_c_string] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_unsetenv] = ACTIONS(1542), - [anon_sym_fi] = ACTIONS(1496), - [anon_sym_else] = ACTIONS(1496), - [sym_number] = ACTIONS(1554), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1557), - [anon_sym_function] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1572), - [sym_file_descriptor] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1566), - [anon_sym_AMP_GT] = ACTIONS(1566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1578), - [anon_sym_LT_LPAREN] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1587), + [aux_sym_if_statement_repeat1] = STATE(265), + [sym_elif_clause] = STATE(265), + [sym_else_clause] = STATE(304), + [anon_sym_elif] = ACTIONS(1334), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(1511), + [anon_sym_else] = ACTIONS(1336), }, [268] = { - [sym_command_substitution] = STATE(269), - [aux_sym__literal_repeat1] = STATE(271), - [sym_case_item] = STATE(306), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(305), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(306), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(268), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), + [anon_sym_AMP_GT_GT] = ACTIONS(1513), + [anon_sym_typeset] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_done] = ACTIONS(1500), + [anon_sym_GT_LPAREN] = ACTIONS(1525), + [sym_word] = ACTIONS(1528), + [anon_sym_LT_AMP] = ACTIONS(1513), + [anon_sym_export] = ACTIONS(1516), + [sym__special_character] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1534), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1537), + [sym_raw_string] = ACTIONS(1540), + [anon_sym_declare] = ACTIONS(1516), + [sym_variable_name] = ACTIONS(1543), + [anon_sym_readonly] = ACTIONS(1516), + [anon_sym_unset] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1549), + [anon_sym_GT_AMP] = ACTIONS(1513), + [anon_sym_elif] = ACTIONS(1500), + [sym_ansii_c_string] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_local] = ACTIONS(1516), + [anon_sym_unsetenv] = ACTIONS(1546), + [anon_sym_fi] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [sym_number] = ACTIONS(1558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), + [anon_sym_function] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1570), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_case] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1576), + [sym_file_descriptor] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1570), + [anon_sym_AMP_GT] = ACTIONS(1570), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1582), + [anon_sym_LT_LPAREN] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), + }, + [269] = { + [sym_command_substitution] = STATE(270), + [aux_sym__literal_repeat1] = STATE(272), + [sym_case_item] = STATE(307), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(306), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(307), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1344), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(1590), + [anon_sym_esac] = ACTIONS(1594), [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [anon_sym_LT_LPAREN] = ACTIONS(245), [anon_sym_BQUOTE] = ACTIONS(243), [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [269] = { - [aux_sym_concatenation_repeat1] = STATE(775), - [aux_sym_case_item_repeat1] = STATE(309), - [anon_sym_RPAREN] = ACTIONS(1592), + [270] = { + [aux_sym_concatenation_repeat1] = STATE(776), + [aux_sym_case_item_repeat1] = STATE(310), + [anon_sym_RPAREN] = ACTIONS(1596), [sym_comment] = ACTIONS(41), [sym__concat] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(1594), - }, - [270] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1596), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_AMP_GT_GT] = ACTIONS(1596), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_LT_LT] = ACTIONS(1596), - [sym_file_descriptor] = ACTIONS(1598), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_AMP_GT] = ACTIONS(1596), - [anon_sym_PIPE_PIPE] = ACTIONS(1596), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_LT_LT_LT] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_GT_AMP] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_LT_AMP] = ACTIONS(1596), - [anon_sym_GT_GT] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_SEMI_SEMI] = ACTIONS(1596), - [anon_sym_PIPE_AMP] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), }, [271] = { - [aux_sym__literal_repeat1] = STATE(778), - [aux_sym_case_item_repeat1] = STATE(311), - [anon_sym_RPAREN] = ACTIONS(1600), - [sym_comment] = ACTIONS(41), - [anon_sym_PIPE] = ACTIONS(1594), - [sym__special_character] = ACTIONS(1602), + [anon_sym_LT_LT_DASH] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_AMP_GT_GT] = ACTIONS(1600), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LT_LT] = ACTIONS(1600), + [sym_file_descriptor] = ACTIONS(1602), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_AMP_GT] = ACTIONS(1600), + [anon_sym_PIPE_PIPE] = ACTIONS(1600), + [ts_builtin_sym_end] = ACTIONS(1602), + [anon_sym_LT_LT_LT] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_GT_AMP] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_LT_AMP] = ACTIONS(1600), + [anon_sym_GT_GT] = ACTIONS(1600), + [anon_sym_AMP_AMP] = ACTIONS(1600), + [anon_sym_SEMI_SEMI] = ACTIONS(1600), + [anon_sym_PIPE_AMP] = ACTIONS(1600), }, [272] = { + [aux_sym__literal_repeat1] = STATE(779), + [aux_sym_case_item_repeat1] = STATE(312), + [anon_sym_RPAREN] = ACTIONS(1604), [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1598), + [sym__special_character] = ACTIONS(1606), }, [273] = { - [sym_command_substitution] = STATE(269), - [aux_sym__literal_repeat1] = STATE(271), - [sym_case_item] = STATE(312), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(305), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(312), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1608), + }, + [274] = { + [sym_command_substitution] = STATE(270), + [aux_sym__literal_repeat1] = STATE(272), + [sym_case_item] = STATE(313), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(306), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(313), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1344), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [anon_sym_LT_LPAREN] = ACTIONS(245), [anon_sym_BQUOTE] = ACTIONS(243), [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [274] = { - [aux_sym_case_item_repeat1] = STATE(309), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_RPAREN] = ACTIONS(1592), + [275] = { + [aux_sym_case_item_repeat1] = STATE(310), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1596), [sym_comment] = ACTIONS(41), }, - [275] = { - [sym_command_substitution] = STATE(269), - [aux_sym__literal_repeat1] = STATE(271), - [sym_case_item] = STATE(315), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(314), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(315), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), + [276] = { + [sym_command_substitution] = STATE(270), + [aux_sym__literal_repeat1] = STATE(272), + [sym_case_item] = STATE(316), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(315), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(316), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1344), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(1606), + [anon_sym_esac] = ACTIONS(1610), [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [anon_sym_LT_LPAREN] = ACTIONS(245), [anon_sym_BQUOTE] = ACTIONS(243), [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [276] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_AMP_GT_GT] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_LT_LT] = ACTIONS(1608), - [sym_file_descriptor] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_AMP_GT] = ACTIONS(1608), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [ts_builtin_sym_end] = ACTIONS(1610), - [anon_sym_LT_LT_LT] = ACTIONS(1608), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_GT_AMP] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_LT_AMP] = ACTIONS(1608), - [anon_sym_GT_GT] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1608), - [anon_sym_SEMI_SEMI] = ACTIONS(1608), - [anon_sym_PIPE_AMP] = ACTIONS(1608), - }, [277] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1612), + [anon_sym_LT_LT_DASH] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_AMP_GT_GT] = ACTIONS(1612), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_LT_LT] = ACTIONS(1612), + [sym_file_descriptor] = ACTIONS(1614), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_AMP_GT] = ACTIONS(1612), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [ts_builtin_sym_end] = ACTIONS(1614), + [anon_sym_LT_LT_LT] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_GT_AMP] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_AMP] = ACTIONS(1612), + [anon_sym_GT_GT] = ACTIONS(1612), + [anon_sym_AMP_AMP] = ACTIONS(1612), + [anon_sym_SEMI_SEMI] = ACTIONS(1612), + [anon_sym_PIPE_AMP] = ACTIONS(1612), }, [278] = { - [sym_command_substitution] = STATE(269), - [aux_sym__literal_repeat1] = STATE(271), - [sym_case_item] = STATE(312), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(314), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(312), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1616), + }, + [279] = { + [sym_command_substitution] = STATE(270), + [aux_sym__literal_repeat1] = STATE(272), + [sym_case_item] = STATE(313), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(315), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(313), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1344), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [anon_sym_LT_LPAREN] = ACTIONS(245), [anon_sym_BQUOTE] = ACTIONS(243), [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [279] = { - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_AMP_GT_GT] = ACTIONS(1614), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_LT_LT] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [anon_sym_GT_LPAREN] = ACTIONS(1614), - [sym_number] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), - [anon_sym_PIPE_PIPE] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [sym_word] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_LT_AMP] = ACTIONS(1614), - [anon_sym_GT_GT] = ACTIONS(1614), - [sym__special_character] = ACTIONS(1614), - [anon_sym_LT_LT_DASH] = ACTIONS(1614), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [sym_raw_string] = ACTIONS(1614), - [sym_variable_name] = ACTIONS(1616), - [sym_file_descriptor] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_AMP_GT] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_LT_LT_LT] = ACTIONS(1614), - [anon_sym_GT_AMP] = ACTIONS(1614), - [ts_builtin_sym_end] = ACTIONS(1616), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), - [anon_sym_LT_LPAREN] = ACTIONS(1614), - [sym_ansii_c_string] = ACTIONS(1614), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_SEMI_SEMI] = ACTIONS(1614), - [anon_sym_PIPE_AMP] = ACTIONS(1614), - }, [280] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(280), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(280), - [sym_expansion] = STATE(221), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_AMP_GT_GT] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1618), + [anon_sym_GT_LPAREN] = ACTIONS(1618), + [sym_number] = ACTIONS(1618), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1624), - [sym_word] = ACTIONS(1627), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1630), - [anon_sym_DOLLAR] = ACTIONS(1633), - [anon_sym_RPAREN] = ACTIONS(1636), - [sym_ansii_c_string] = ACTIONS(1624), - [anon_sym_BQUOTE] = ACTIONS(1638), - [anon_sym_LT_LPAREN] = ACTIONS(1641), - [sym__special_character] = ACTIONS(1644), - [sym_number] = ACTIONS(1627), - [anon_sym_GT_LPAREN] = ACTIONS(1641), + [anon_sym_PIPE_PIPE] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [sym_word] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_AMP] = ACTIONS(1618), + [anon_sym_GT_GT] = ACTIONS(1618), + [sym__special_character] = ACTIONS(1618), + [anon_sym_LT_LT_DASH] = ACTIONS(1618), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1618), + [sym_raw_string] = ACTIONS(1618), + [sym_variable_name] = ACTIONS(1620), + [sym_file_descriptor] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_AMP_GT] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_LT_LT_LT] = ACTIONS(1618), + [anon_sym_GT_AMP] = ACTIONS(1618), + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), + [anon_sym_LT_LPAREN] = ACTIONS(1618), + [sym_ansii_c_string] = ACTIONS(1618), + [anon_sym_AMP_AMP] = ACTIONS(1618), + [anon_sym_SEMI_SEMI] = ACTIONS(1618), + [anon_sym_PIPE_AMP] = ACTIONS(1618), }, [281] = { - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_PLUS_EQ] = ACTIONS(1647), - [sym_comment] = ACTIONS(41), + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(281), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(281), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1628), + [sym_word] = ACTIONS(1631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1640), + [sym_ansii_c_string] = ACTIONS(1628), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_LT_LPAREN] = ACTIONS(1645), + [sym__special_character] = ACTIONS(1648), + [sym_number] = ACTIONS(1631), + [anon_sym_GT_LPAREN] = ACTIONS(1645), }, [282] = { - [anon_sym_PLUS_EQ] = ACTIONS(1647), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1649), - [anon_sym_EQ] = ACTIONS(1647), - }, - [283] = { [anon_sym_EQ] = ACTIONS(1651), [anon_sym_PLUS_EQ] = ACTIONS(1651), [sym_comment] = ACTIONS(41), }, - [284] = { + [283] = { [anon_sym_PLUS_EQ] = ACTIONS(1651), [sym_comment] = ACTIONS(41), [sym__concat] = ACTIONS(1653), [anon_sym_EQ] = ACTIONS(1651), }, + [284] = { + [anon_sym_EQ] = ACTIONS(1655), + [anon_sym_PLUS_EQ] = ACTIONS(1655), + [sym_comment] = ACTIONS(41), + }, [285] = { - [sym_do_group] = STATE(319), - [sym_compound_statement] = STATE(319), + [anon_sym_PLUS_EQ] = ACTIONS(1655), [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(635), + [sym__concat] = ACTIONS(1657), + [anon_sym_EQ] = ACTIONS(1655), }, [286] = { + [sym_do_group] = STATE(320), + [sym_compound_statement] = STATE(320), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(637), + }, + [287] = { [anon_sym_BANG_EQ] = ACTIONS(541), [anon_sym_PLUS_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(41), @@ -15214,7 +15273,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(545), [sym_test_operator] = ACTIONS(541), [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1657), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1661), [anon_sym_PIPE_PIPE] = ACTIONS(541), [anon_sym_GT_EQ] = ACTIONS(541), [anon_sym_PLUS] = ACTIONS(545), @@ -15225,19 +15284,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(541), [anon_sym_DASH_EQ] = ACTIONS(541), }, - [287] = { + [288] = { [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(321), - [sym_postfix_expression] = STATE(321), + [sym_unary_expression] = STATE(322), + [sym_postfix_expression] = STATE(322), [sym_string] = STATE(71), [aux_sym__literal_repeat1] = STATE(73), [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(321), + [sym_parenthesized_expression] = STATE(322), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(321), - [sym_binary_expression] = STATE(321), - [sym_concatenation] = STATE(321), + [sym__expression] = STATE(322), + [sym_binary_expression] = STATE(322), + [sym_concatenation] = STATE(322), [sym_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), [sym_comment] = ACTIONS(41), @@ -15249,7 +15308,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(245), [sym_number] = ACTIONS(247), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1657), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1661), [anon_sym_DQUOTE] = ACTIONS(251), [sym_word] = ACTIONS(247), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), @@ -15257,230 +15316,192 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), }, - [288] = { - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_PLUS_EQ] = ACTIONS(1090), - [anon_sym_DASH_EQ] = ACTIONS(1090), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1090), - [sym_test_operator] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(1096), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ_TILDE] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - }, [289] = { - [sym_do_group] = STATE(323), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(635), - }, - [290] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_AMP_GT_GT] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1096), + [anon_sym_PLUS_EQ] = ACTIONS(1096), + [anon_sym_DASH_EQ] = ACTIONS(1096), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_LT_LT] = ACTIONS(1661), - [sym_file_descriptor] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_AMP_GT] = ACTIONS(1661), - [anon_sym_PIPE_PIPE] = ACTIONS(1661), - [ts_builtin_sym_end] = ACTIONS(1663), - [anon_sym_LT_LT_LT] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_GT_AMP] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_AMP] = ACTIONS(1661), - [anon_sym_GT_GT] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1661), - [anon_sym_SEMI_SEMI] = ACTIONS(1661), - [anon_sym_PIPE_AMP] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1096), + [sym_test_operator] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1096), + [anon_sym_GT_EQ] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_EQ_TILDE] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_LT_EQ] = ACTIONS(1096), + [anon_sym_AMP_AMP] = ACTIONS(1096), + [anon_sym_SEMI_SEMI] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1663), + }, + [290] = { + [sym_do_group] = STATE(324), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(637), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_SEMI_SEMI] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_LT_LT_DASH] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_AMP_GT_GT] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [sym_file_descriptor] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_AMP_GT] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [ts_builtin_sym_end] = ACTIONS(1667), + [anon_sym_LT_LT_LT] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_GT_AMP] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_LT_AMP] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_SEMI_SEMI] = ACTIONS(1665), + [anon_sym_PIPE_AMP] = ACTIONS(1665), }, [292] = { - [sym_command_substitution] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [aux_sym_heredoc_body_repeat1] = STATE(292), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1672), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1675), - [sym__heredoc_body_end] = ACTIONS(1678), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1680), - [sym__heredoc_body_middle] = ACTIONS(1683), + [ts_builtin_sym_end] = ACTIONS(1669), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), }, [293] = { - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_AMP_GT_GT] = ACTIONS(1446), - [anon_sym_local] = ACTIONS(1444), - [anon_sym_typeset] = ACTIONS(1444), - [anon_sym_unsetenv] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1446), - [anon_sym_GT_LPAREN] = ACTIONS(1446), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_AMP] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1444), - [sym_word] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), - [sym_raw_string] = ACTIONS(1446), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_declare] = ACTIONS(1444), - [sym_variable_name] = ACTIONS(1446), - [sym_file_descriptor] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_AMP_GT] = ACTIONS(1444), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1446), - [ts_builtin_sym_end] = ACTIONS(1686), - [anon_sym_GT_AMP] = ACTIONS(1446), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT_LPAREN] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [sym_ansii_c_string] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [sym_command_substitution] = STATE(293), + [sym_simple_expansion] = STATE(293), + [sym_expansion] = STATE(293), + [aux_sym_heredoc_body_repeat1] = STATE(293), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1676), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1679), + [sym__heredoc_body_end] = ACTIONS(1682), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1684), + [sym__heredoc_body_middle] = ACTIONS(1687), }, [294] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [anon_sym_EQ_TILDE] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_EQ_EQ] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_AMP_GT_GT] = ACTIONS(1450), + [anon_sym_local] = ACTIONS(1448), + [anon_sym_typeset] = ACTIONS(1448), + [anon_sym_unsetenv] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_GT_LPAREN] = ACTIONS(1450), + [sym_number] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_LT_AMP] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1448), + [sym_word] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_declare] = ACTIONS(1448), + [sym_variable_name] = ACTIONS(1450), + [sym_file_descriptor] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_readonly] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1450), [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [anon_sym_GT_AMP] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_LT_LPAREN] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [sym_ansii_c_string] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), }, [295] = { + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [anon_sym_EQ_TILDE] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_EQ_EQ] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), + }, + [296] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [296] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [anon_sym_EQ_TILDE] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [ts_builtin_sym_end] = ACTIONS(1696), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), - }, [297] = { [anon_sym_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), @@ -15520,115 +15541,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [298] = { + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [anon_sym_EQ_TILDE] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), + }, + [299] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [299] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [anon_sym_EQ_TILDE] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [300] = { + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_EQ_TILDE] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_EQ_EQ] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, - [300] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(326), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [301] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(327), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), [anon_sym_typeset] = ACTIONS(65), [anon_sym_unsetenv] = ACTIONS(67), [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(1708), + [anon_sym_fi] = ACTIONS(1712), [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_else] = ACTIONS(1708), + [anon_sym_else] = ACTIONS(1712), [anon_sym_GT_LPAREN] = ACTIONS(73), [sym_number] = ACTIONS(75), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), @@ -15656,7 +15715,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_elif] = ACTIONS(1708), + [anon_sym_elif] = ACTIONS(1712), [anon_sym_LT_LPAREN] = ACTIONS(73), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), @@ -15664,405 +15723,405 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [301] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_SEMI_SEMI] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1712), - }, [302] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_AMP_GT_GT] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_LT_LT] = ACTIONS(1714), - [sym_file_descriptor] = ACTIONS(1716), - [anon_sym_GT] = ACTIONS(1714), - [anon_sym_AMP_GT] = ACTIONS(1714), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [ts_builtin_sym_end] = ACTIONS(1716), - [anon_sym_LT_LT_LT] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_GT_AMP] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_LT_AMP] = ACTIONS(1714), - [anon_sym_GT_GT] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1714), - [anon_sym_SEMI_SEMI] = ACTIONS(1714), - [anon_sym_PIPE_AMP] = ACTIONS(1714), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_SEMI_SEMI] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), }, [303] = { - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1718), + [anon_sym_LT_LT_DASH] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_AMP_GT_GT] = ACTIONS(1718), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LT_LT] = ACTIONS(1718), + [sym_file_descriptor] = ACTIONS(1720), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_AMP_GT] = ACTIONS(1718), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [ts_builtin_sym_end] = ACTIONS(1720), + [anon_sym_LT_LT_LT] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_GT_AMP] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_AMP] = ACTIONS(1718), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_SEMI_SEMI] = ACTIONS(1718), + [anon_sym_PIPE_AMP] = ACTIONS(1718), }, [304] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), - [anon_sym_AMP_GT_GT] = ACTIONS(1720), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [sym_file_descriptor] = ACTIONS(1722), - [anon_sym_GT] = ACTIONS(1720), - [anon_sym_AMP_GT] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [ts_builtin_sym_end] = ACTIONS(1722), - [anon_sym_LT_LT_LT] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_GT_AMP] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_LT_AMP] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_SEMI_SEMI] = ACTIONS(1720), - [anon_sym_PIPE_AMP] = ACTIONS(1720), + [sym_comment] = ACTIONS(41), + [anon_sym_fi] = ACTIONS(1722), }, [305] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1724), + [anon_sym_LT_LT_DASH] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_AMP_GT_GT] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [sym_file_descriptor] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_AMP_GT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_GT_AMP] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_AMP] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_AMP_AMP] = ACTIONS(1724), + [anon_sym_SEMI_SEMI] = ACTIONS(1724), + [anon_sym_PIPE_AMP] = ACTIONS(1724), }, [306] = { - [sym_command_substitution] = STATE(269), - [aux_sym__literal_repeat1] = STATE(271), - [sym_case_item] = STATE(312), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(330), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(312), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1728), + }, + [307] = { + [sym_command_substitution] = STATE(270), + [aux_sym__literal_repeat1] = STATE(272), + [sym_case_item] = STATE(313), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(331), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(313), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1344), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [anon_sym_LT_LPAREN] = ACTIONS(245), [anon_sym_BQUOTE] = ACTIONS(243), [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [307] = { - [sym_command_substitution] = STATE(331), - [aux_sym__literal_repeat1] = STATE(332), - [sym_string] = STATE(331), - [sym_process_substitution] = STATE(331), - [sym_simple_expansion] = STATE(331), - [sym_string_expansion] = STATE(331), - [sym_concatenation] = STATE(333), - [sym_expansion] = STATE(331), + [308] = { + [sym_command_substitution] = STATE(332), + [aux_sym__literal_repeat1] = STATE(333), + [sym_string] = STATE(332), + [sym_process_substitution] = STATE(332), + [sym_simple_expansion] = STATE(332), + [sym_string_expansion] = STATE(332), + [sym_concatenation] = STATE(334), + [sym_expansion] = STATE(332), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1726), - [sym_word] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1730), + [sym_word] = ACTIONS(1732), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1726), + [sym_ansii_c_string] = ACTIONS(1730), [anon_sym_LT_LPAREN] = ACTIONS(245), [anon_sym_BQUOTE] = ACTIONS(243), [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1728), + [sym_number] = ACTIONS(1732), [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [308] = { - [aux_sym__literal_repeat1] = STATE(539), - [sym_if_statement] = STATE(540), - [sym_function_definition] = STATE(540), - [sym_negated_command] = STATE(540), - [sym_test_command] = STATE(540), - [sym_variable_assignment] = STATE(635), - [sym_subscript] = STATE(2473), - [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [aux_sym__statements_repeat1] = STATE(636), - [sym_redirected_statement] = STATE(540), - [sym_for_statement] = STATE(540), - [sym_compound_statement] = STATE(540), - [sym_subshell] = STATE(540), - [sym_declaration_command] = STATE(540), - [sym_unset_command] = STATE(540), - [sym_file_redirect] = STATE(544), - [sym_string] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat1] = STATE(544), - [sym__statements] = STATE(335), - [sym_c_style_for_statement] = STATE(540), - [sym_while_statement] = STATE(540), - [sym_case_statement] = STATE(540), - [sym_pipeline] = STATE(540), - [sym_list] = STATE(540), - [sym_command] = STATE(540), - [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(535), - [sym_string_expansion] = STATE(535), + [309] = { + [aux_sym__literal_repeat1] = STATE(540), + [sym_if_statement] = STATE(541), + [sym_function_definition] = STATE(541), + [sym_negated_command] = STATE(541), + [sym_test_command] = STATE(541), + [sym_variable_assignment] = STATE(636), + [sym_subscript] = STATE(2494), + [sym_concatenation] = STATE(543), + [sym_expansion] = STATE(536), + [sym_command_substitution] = STATE(536), + [aux_sym__statements_repeat1] = STATE(637), + [sym_redirected_statement] = STATE(541), + [sym_for_statement] = STATE(541), + [sym_compound_statement] = STATE(541), + [sym_subshell] = STATE(541), + [sym_declaration_command] = STATE(541), + [sym_unset_command] = STATE(541), + [sym_file_redirect] = STATE(545), + [sym_string] = STATE(536), + [sym_process_substitution] = STATE(536), + [aux_sym_command_repeat1] = STATE(545), + [sym__statements] = STATE(336), + [sym_c_style_for_statement] = STATE(541), + [sym_while_statement] = STATE(541), + [sym_case_statement] = STATE(541), + [sym_pipeline] = STATE(541), + [sym_list] = STATE(541), + [sym_command] = STATE(541), + [sym_command_name] = STATE(638), + [sym_simple_expansion] = STATE(536), + [sym_string_expansion] = STATE(536), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1730), - [anon_sym_typeset] = ACTIONS(1730), - [anon_sym_unsetenv] = ACTIONS(1732), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [sym_number] = ACTIONS(1740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_typeset] = ACTIONS(1734), + [anon_sym_unsetenv] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym_number] = ACTIONS(1744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1744), + [sym_word] = ACTIONS(1748), [anon_sym_LBRACE] = ACTIONS(83), [anon_sym_LT] = ACTIONS(29), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1734), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1746), + [sym__special_character] = ACTIONS(1750), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1748), + [sym_raw_string] = ACTIONS(1752), [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_declare] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_declare] = ACTIONS(1734), + [sym_variable_name] = ACTIONS(1756), [sym_file_descriptor] = ACTIONS(47), [anon_sym_GT] = ACTIONS(29), [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1730), - [anon_sym_unset] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1734), + [anon_sym_unset] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1758), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_esac] = ACTIONS(1758), - [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_esac] = ACTIONS(1762), + [anon_sym_LT_LPAREN] = ACTIONS(1742), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1748), + [sym_ansii_c_string] = ACTIONS(1752), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1760), + [anon_sym_SEMI_SEMI] = ACTIONS(1764), }, - [309] = { - [aux_sym_case_item_repeat1] = STATE(337), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_RPAREN] = ACTIONS(1762), + [310] = { + [aux_sym_case_item_repeat1] = STATE(338), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1766), [sym_comment] = ACTIONS(41), }, - [310] = { - [aux_sym__literal_repeat1] = STATE(539), - [sym_if_statement] = STATE(540), - [sym_function_definition] = STATE(540), - [sym_negated_command] = STATE(540), - [sym_test_command] = STATE(540), - [sym_variable_assignment] = STATE(635), - [sym_subscript] = STATE(2473), - [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [aux_sym__statements_repeat1] = STATE(636), - [sym_redirected_statement] = STATE(540), - [sym_for_statement] = STATE(540), - [sym_compound_statement] = STATE(540), - [sym_subshell] = STATE(540), - [sym_declaration_command] = STATE(540), - [sym_unset_command] = STATE(540), - [sym_file_redirect] = STATE(544), - [sym_string] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat1] = STATE(544), - [sym__statements] = STATE(339), - [sym_c_style_for_statement] = STATE(540), - [sym_while_statement] = STATE(540), - [sym_case_statement] = STATE(540), - [sym_pipeline] = STATE(540), - [sym_list] = STATE(540), - [sym_command] = STATE(540), - [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(535), - [sym_string_expansion] = STATE(535), + [311] = { + [aux_sym__literal_repeat1] = STATE(540), + [sym_if_statement] = STATE(541), + [sym_function_definition] = STATE(541), + [sym_negated_command] = STATE(541), + [sym_test_command] = STATE(541), + [sym_variable_assignment] = STATE(636), + [sym_subscript] = STATE(2494), + [sym_concatenation] = STATE(543), + [sym_expansion] = STATE(536), + [sym_command_substitution] = STATE(536), + [aux_sym__statements_repeat1] = STATE(637), + [sym_redirected_statement] = STATE(541), + [sym_for_statement] = STATE(541), + [sym_compound_statement] = STATE(541), + [sym_subshell] = STATE(541), + [sym_declaration_command] = STATE(541), + [sym_unset_command] = STATE(541), + [sym_file_redirect] = STATE(545), + [sym_string] = STATE(536), + [sym_process_substitution] = STATE(536), + [aux_sym_command_repeat1] = STATE(545), + [sym__statements] = STATE(340), + [sym_c_style_for_statement] = STATE(541), + [sym_while_statement] = STATE(541), + [sym_case_statement] = STATE(541), + [sym_pipeline] = STATE(541), + [sym_list] = STATE(541), + [sym_command] = STATE(541), + [sym_command_name] = STATE(638), + [sym_simple_expansion] = STATE(536), + [sym_string_expansion] = STATE(536), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1730), - [anon_sym_typeset] = ACTIONS(1730), - [anon_sym_unsetenv] = ACTIONS(1732), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [sym_number] = ACTIONS(1740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_typeset] = ACTIONS(1734), + [anon_sym_unsetenv] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym_number] = ACTIONS(1744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1744), + [sym_word] = ACTIONS(1748), [anon_sym_LBRACE] = ACTIONS(83), [anon_sym_LT] = ACTIONS(29), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1734), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1746), + [sym__special_character] = ACTIONS(1750), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1748), + [sym_raw_string] = ACTIONS(1752), [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_declare] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_declare] = ACTIONS(1734), + [sym_variable_name] = ACTIONS(1756), [sym_file_descriptor] = ACTIONS(47), [anon_sym_GT] = ACTIONS(29), [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1730), - [anon_sym_unset] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1734), + [anon_sym_unset] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1758), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_esac] = ACTIONS(1764), - [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_esac] = ACTIONS(1768), + [anon_sym_LT_LPAREN] = ACTIONS(1742), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1748), + [sym_ansii_c_string] = ACTIONS(1752), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - }, - [311] = { - [aux_sym_case_item_repeat1] = STATE(337), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_RPAREN] = ACTIONS(1768), - [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), }, [312] = { - [sym_command_substitution] = STATE(341), - [aux_sym__literal_repeat1] = STATE(342), - [sym_case_item] = STATE(312), - [sym_string] = STATE(341), - [sym_process_substitution] = STATE(341), - [sym_simple_expansion] = STATE(341), - [sym_string_expansion] = STATE(341), - [aux_sym_case_statement_repeat1] = STATE(312), - [sym_concatenation] = STATE(343), - [sym_expansion] = STATE(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1776), - [sym_word] = ACTIONS(1779), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(1785), - [sym_ansii_c_string] = ACTIONS(1776), - [anon_sym_LT_LPAREN] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1791), - [sym__special_character] = ACTIONS(1794), - [sym_number] = ACTIONS(1779), - [anon_sym_GT_LPAREN] = ACTIONS(1788), + [aux_sym_case_item_repeat1] = STATE(338), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1772), + [sym_comment] = ACTIONS(41), }, [313] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1797), - [anon_sym_AMP_GT_GT] = ACTIONS(1797), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_LT_LT] = ACTIONS(1797), - [sym_file_descriptor] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_AMP_GT] = ACTIONS(1797), - [anon_sym_PIPE_PIPE] = ACTIONS(1797), - [ts_builtin_sym_end] = ACTIONS(1799), - [anon_sym_LT_LT_LT] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1797), - [anon_sym_GT_AMP] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_LT_AMP] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1797), - [anon_sym_AMP_AMP] = ACTIONS(1797), - [anon_sym_SEMI_SEMI] = ACTIONS(1797), - [anon_sym_PIPE_AMP] = ACTIONS(1797), + [sym_command_substitution] = STATE(342), + [aux_sym__literal_repeat1] = STATE(343), + [sym_case_item] = STATE(313), + [sym_string] = STATE(342), + [sym_process_substitution] = STATE(342), + [sym_simple_expansion] = STATE(342), + [sym_string_expansion] = STATE(342), + [aux_sym_case_statement_repeat1] = STATE(313), + [sym_concatenation] = STATE(344), + [sym_expansion] = STATE(342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1777), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1780), + [sym_word] = ACTIONS(1783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1789), + [sym_ansii_c_string] = ACTIONS(1780), + [anon_sym_LT_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1795), + [sym__special_character] = ACTIONS(1798), + [sym_number] = ACTIONS(1783), + [anon_sym_GT_LPAREN] = ACTIONS(1792), }, [314] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1801), + [anon_sym_LT_LT_DASH] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_AMP_GT_GT] = ACTIONS(1801), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_LT_LT] = ACTIONS(1801), + [sym_file_descriptor] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1801), + [anon_sym_AMP_GT] = ACTIONS(1801), + [anon_sym_PIPE_PIPE] = ACTIONS(1801), + [ts_builtin_sym_end] = ACTIONS(1803), + [anon_sym_LT_LT_LT] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_GT_AMP] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_LT_AMP] = ACTIONS(1801), + [anon_sym_GT_GT] = ACTIONS(1801), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_SEMI_SEMI] = ACTIONS(1801), + [anon_sym_PIPE_AMP] = ACTIONS(1801), }, [315] = { - [sym_command_substitution] = STATE(269), - [aux_sym__literal_repeat1] = STATE(271), - [sym_case_item] = STATE(312), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(345), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(312), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1805), + }, + [316] = { + [sym_command_substitution] = STATE(270), + [aux_sym__literal_repeat1] = STATE(272), + [sym_case_item] = STATE(313), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(346), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(313), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), - [sym_word] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1344), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [anon_sym_LT_LPAREN] = ACTIONS(245), [anon_sym_BQUOTE] = ACTIONS(243), [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_GT_LPAREN] = ACTIONS(245), }, - [316] = { - [anon_sym_EQ] = ACTIONS(1803), - [anon_sym_PLUS_EQ] = ACTIONS(1803), - [sym_comment] = ACTIONS(41), - }, [317] = { - [anon_sym_EQ] = ACTIONS(1805), - [anon_sym_PLUS_EQ] = ACTIONS(1805), + [anon_sym_EQ] = ACTIONS(1807), + [anon_sym_PLUS_EQ] = ACTIONS(1807), [sym_comment] = ACTIONS(41), }, [318] = { - [sym_do_group] = STATE(346), - [sym_compound_statement] = STATE(346), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym_PLUS_EQ] = ACTIONS(1809), [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(635), }, [319] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_AMP_GT_GT] = ACTIONS(1807), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1807), - [sym_file_descriptor] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_AMP_GT] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [ts_builtin_sym_end] = ACTIONS(1809), - [anon_sym_LT_LT_LT] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_GT_AMP] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_LT_AMP] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_SEMI_SEMI] = ACTIONS(1807), - [anon_sym_PIPE_AMP] = ACTIONS(1807), + [sym_do_group] = STATE(347), + [sym_compound_statement] = STATE(347), + [anon_sym_LBRACE] = ACTIONS(27), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(637), }, [320] = { - [sym_do_group] = STATE(346), - [sym_compound_statement] = STATE(346), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LT_LT_DASH] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_AMP_GT_GT] = ACTIONS(1811), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1813), [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(1811), + [sym_file_descriptor] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1811), + [anon_sym_AMP_GT] = ACTIONS(1811), + [anon_sym_PIPE_PIPE] = ACTIONS(1811), + [ts_builtin_sym_end] = ACTIONS(1813), + [anon_sym_LT_LT_LT] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1811), + [anon_sym_GT_AMP] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_LT_AMP] = ACTIONS(1811), + [anon_sym_GT_GT] = ACTIONS(1811), + [anon_sym_AMP_AMP] = ACTIONS(1811), + [anon_sym_SEMI_SEMI] = ACTIONS(1811), + [anon_sym_PIPE_AMP] = ACTIONS(1811), }, [321] = { + [sym_do_group] = STATE(347), + [sym_compound_statement] = STATE(347), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_do] = ACTIONS(637), + }, + [322] = { [anon_sym_BANG_EQ] = ACTIONS(541), [anon_sym_PLUS_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(41), @@ -16072,7 +16131,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(545), [sym_test_operator] = ACTIONS(541), [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1813), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1817), [anon_sym_PIPE_PIPE] = ACTIONS(541), [anon_sym_GT_EQ] = ACTIONS(541), [anon_sym_PLUS] = ACTIONS(545), @@ -16083,19 +16142,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(541), [anon_sym_DASH_EQ] = ACTIONS(541), }, - [322] = { + [323] = { [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(349), - [sym_postfix_expression] = STATE(349), + [sym_unary_expression] = STATE(350), + [sym_postfix_expression] = STATE(350), [sym_string] = STATE(71), [aux_sym__literal_repeat1] = STATE(73), [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(349), + [sym_parenthesized_expression] = STATE(350), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(349), - [sym_binary_expression] = STATE(349), - [sym_concatenation] = STATE(349), + [sym__expression] = STATE(350), + [sym_binary_expression] = STATE(350), + [sym_concatenation] = STATE(350), [sym_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), [sym_comment] = ACTIONS(41), @@ -16107,7 +16166,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(245), [sym_number] = ACTIONS(247), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1813), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1817), [anon_sym_DQUOTE] = ACTIONS(251), [sym_word] = ACTIONS(247), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), @@ -16115,63 +16174,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), }, - [323] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_AMP_GT_GT] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1815), - [sym_file_descriptor] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1815), - [anon_sym_AMP_GT] = ACTIONS(1815), - [anon_sym_PIPE_PIPE] = ACTIONS(1815), - [ts_builtin_sym_end] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_GT_AMP] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_LT_AMP] = ACTIONS(1815), - [anon_sym_GT_GT] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1815), - [anon_sym_SEMI_SEMI] = ACTIONS(1815), - [anon_sym_PIPE_AMP] = ACTIONS(1815), - }, [324] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1819), [anon_sym_AMP] = ACTIONS(1819), [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_EQ_TILDE] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1821), [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), [sym_file_descriptor] = ACTIONS(1821), [anon_sym_GT] = ACTIONS(1819), [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_EQ_EQ] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [ts_builtin_sym_end] = ACTIONS(1821), [anon_sym_LT_LT_LT] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), [anon_sym_GT_AMP] = ACTIONS(1819), - [ts_builtin_sym_end] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_LT_AMP] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1819), [anon_sym_AMP_AMP] = ACTIONS(1819), [anon_sym_SEMI_SEMI] = ACTIONS(1819), [anon_sym_PIPE_AMP] = ACTIONS(1819), @@ -16215,45 +16236,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [326] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(267), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [anon_sym_EQ_TILDE] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [327] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(268), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), [anon_sym_typeset] = ACTIONS(65), [anon_sym_unsetenv] = ACTIONS(67), [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(1827), + [anon_sym_fi] = ACTIONS(1831), [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_else] = ACTIONS(1827), + [anon_sym_else] = ACTIONS(1831), [anon_sym_GT_LPAREN] = ACTIONS(73), [sym_number] = ACTIONS(75), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), @@ -16281,7 +16340,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_elif] = ACTIONS(1827), + [anon_sym_elif] = ACTIONS(1831), [anon_sym_LT_LPAREN] = ACTIONS(73), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), @@ -16289,74 +16348,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [327] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1829), - [anon_sym_typeset] = ACTIONS(1831), - [anon_sym_DOLLAR] = ACTIONS(1831), - [anon_sym_BQUOTE] = ACTIONS(1829), - [anon_sym_done] = ACTIONS(1831), - [anon_sym_GT_LPAREN] = ACTIONS(1829), - [sym_word] = ACTIONS(1831), - [anon_sym_LT_AMP] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1831), - [sym__special_character] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1829), - [sym_raw_string] = ACTIONS(1829), - [anon_sym_declare] = ACTIONS(1831), - [sym_variable_name] = ACTIONS(1829), - [anon_sym_readonly] = ACTIONS(1831), - [anon_sym_unset] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1829), - [anon_sym_GT_AMP] = ACTIONS(1829), - [anon_sym_elif] = ACTIONS(1831), - [sym_ansii_c_string] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_local] = ACTIONS(1831), - [anon_sym_unsetenv] = ACTIONS(1831), - [anon_sym_fi] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1831), - [sym_number] = ACTIONS(1831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1829), - [anon_sym_function] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT_GT] = ACTIONS(1829), - [anon_sym_case] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_AMP_GT] = ACTIONS(1831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1829), - [anon_sym_LT_LPAREN] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1829), - }, [328] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1833), [anon_sym_AMP_GT_GT] = ACTIONS(1833), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_LT_LT] = ACTIONS(1833), - [sym_file_descriptor] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1833), - [anon_sym_AMP_GT] = ACTIONS(1833), - [anon_sym_PIPE_PIPE] = ACTIONS(1833), - [ts_builtin_sym_end] = ACTIONS(1835), - [anon_sym_LT_LT_LT] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_GT_AMP] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), + [anon_sym_typeset] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_BQUOTE] = ACTIONS(1833), + [anon_sym_done] = ACTIONS(1835), + [anon_sym_GT_LPAREN] = ACTIONS(1833), + [sym_word] = ACTIONS(1835), [anon_sym_LT_AMP] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1835), + [sym__special_character] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1833), + [sym_raw_string] = ACTIONS(1833), + [anon_sym_declare] = ACTIONS(1835), + [sym_variable_name] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1835), + [anon_sym_unset] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1833), + [anon_sym_GT_AMP] = ACTIONS(1833), + [anon_sym_elif] = ACTIONS(1835), + [sym_ansii_c_string] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_local] = ACTIONS(1835), + [anon_sym_unsetenv] = ACTIONS(1835), + [anon_sym_fi] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [sym_number] = ACTIONS(1835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1835), [anon_sym_GT_GT] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_SEMI_SEMI] = ACTIONS(1833), - [anon_sym_PIPE_AMP] = ACTIONS(1833), + [anon_sym_case] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1835), + [sym_file_descriptor] = ACTIONS(1833), + [anon_sym_GT] = ACTIONS(1835), + [anon_sym_AMP_GT] = ACTIONS(1835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1833), + [anon_sym_LT_LPAREN] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1833), }, [329] = { [anon_sym_LT_LT_DASH] = ACTIONS(1837), @@ -16382,314 +16418,337 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1837), }, [330] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1841), + [anon_sym_LT_LT_DASH] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1841), + [anon_sym_AMP_GT_GT] = ACTIONS(1841), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_LT_LT] = ACTIONS(1841), + [sym_file_descriptor] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_AMP_GT] = ACTIONS(1841), + [anon_sym_PIPE_PIPE] = ACTIONS(1841), + [ts_builtin_sym_end] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_GT_AMP] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_LT_AMP] = ACTIONS(1841), + [anon_sym_GT_GT] = ACTIONS(1841), + [anon_sym_AMP_AMP] = ACTIONS(1841), + [anon_sym_SEMI_SEMI] = ACTIONS(1841), + [anon_sym_PIPE_AMP] = ACTIONS(1841), }, [331] = { - [aux_sym_concatenation_repeat1] = STATE(775), - [anon_sym_RPAREN] = ACTIONS(1843), [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_esac] = ACTIONS(1845), }, [332] = { - [aux_sym__literal_repeat1] = STATE(778), - [anon_sym_RPAREN] = ACTIONS(1845), + [aux_sym_concatenation_repeat1] = STATE(776), + [anon_sym_RPAREN] = ACTIONS(1847), [sym_comment] = ACTIONS(41), - [anon_sym_PIPE] = ACTIONS(1845), - [sym__special_character] = ACTIONS(1602), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(1847), }, [333] = { - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_RPAREN] = ACTIONS(1843), + [aux_sym__literal_repeat1] = STATE(779), + [anon_sym_RPAREN] = ACTIONS(1849), [sym_comment] = ACTIONS(41), + [anon_sym_PIPE] = ACTIONS(1849), + [sym__special_character] = ACTIONS(1606), }, [334] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1847), - [sym_word] = ACTIONS(1849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1847), - [anon_sym_esac] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1849), - [sym_ansii_c_string] = ACTIONS(1847), - [anon_sym_LT_LPAREN] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1847), - [sym__special_character] = ACTIONS(1847), - [sym_number] = ACTIONS(1849), - [anon_sym_GT_LPAREN] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_RPAREN] = ACTIONS(1847), + [sym_comment] = ACTIONS(41), }, [335] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), [sym_comment] = ACTIONS(41), - [anon_sym_SEMI_SEMI] = ACTIONS(1853), + [sym_raw_string] = ACTIONS(1851), + [sym_word] = ACTIONS(1853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1851), [anon_sym_esac] = ACTIONS(1855), + [anon_sym_DOLLAR] = ACTIONS(1853), + [sym_ansii_c_string] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1851), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym__special_character] = ACTIONS(1851), + [sym_number] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1851), }, [336] = { - [aux_sym__literal_repeat1] = STATE(539), - [sym_if_statement] = STATE(540), - [sym_function_definition] = STATE(540), - [sym_negated_command] = STATE(540), - [sym_test_command] = STATE(540), - [sym_variable_assignment] = STATE(635), - [sym_subscript] = STATE(2473), - [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [aux_sym__statements_repeat1] = STATE(636), - [sym_redirected_statement] = STATE(540), - [sym_for_statement] = STATE(540), - [sym_compound_statement] = STATE(540), - [sym_subshell] = STATE(540), - [sym_declaration_command] = STATE(540), - [sym_unset_command] = STATE(540), - [sym_file_redirect] = STATE(544), - [sym_string] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat1] = STATE(544), - [sym__statements] = STATE(352), - [sym_c_style_for_statement] = STATE(540), - [sym_while_statement] = STATE(540), - [sym_case_statement] = STATE(540), - [sym_pipeline] = STATE(540), - [sym_list] = STATE(540), - [sym_command] = STATE(540), - [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(535), - [sym_string_expansion] = STATE(535), + [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1857), + [anon_sym_esac] = ACTIONS(1859), + }, + [337] = { + [aux_sym__literal_repeat1] = STATE(540), + [sym_if_statement] = STATE(541), + [sym_function_definition] = STATE(541), + [sym_negated_command] = STATE(541), + [sym_test_command] = STATE(541), + [sym_variable_assignment] = STATE(636), + [sym_subscript] = STATE(2494), + [sym_concatenation] = STATE(543), + [sym_expansion] = STATE(536), + [sym_command_substitution] = STATE(536), + [aux_sym__statements_repeat1] = STATE(637), + [sym_redirected_statement] = STATE(541), + [sym_for_statement] = STATE(541), + [sym_compound_statement] = STATE(541), + [sym_subshell] = STATE(541), + [sym_declaration_command] = STATE(541), + [sym_unset_command] = STATE(541), + [sym_file_redirect] = STATE(545), + [sym_string] = STATE(536), + [sym_process_substitution] = STATE(536), + [aux_sym_command_repeat1] = STATE(545), + [sym__statements] = STATE(353), + [sym_c_style_for_statement] = STATE(541), + [sym_while_statement] = STATE(541), + [sym_case_statement] = STATE(541), + [sym_pipeline] = STATE(541), + [sym_list] = STATE(541), + [sym_command] = STATE(541), + [sym_command_name] = STATE(638), + [sym_simple_expansion] = STATE(536), + [sym_string_expansion] = STATE(536), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1730), - [anon_sym_typeset] = ACTIONS(1730), - [anon_sym_unsetenv] = ACTIONS(1732), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [sym_number] = ACTIONS(1740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_typeset] = ACTIONS(1734), + [anon_sym_unsetenv] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym_number] = ACTIONS(1744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1744), + [sym_word] = ACTIONS(1748), [anon_sym_LBRACE] = ACTIONS(83), [anon_sym_LT] = ACTIONS(29), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1734), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1746), + [sym__special_character] = ACTIONS(1750), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1748), + [sym_raw_string] = ACTIONS(1752), [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_declare] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_declare] = ACTIONS(1734), + [sym_variable_name] = ACTIONS(1756), [sym_file_descriptor] = ACTIONS(47), [anon_sym_GT] = ACTIONS(29), [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1730), - [anon_sym_unset] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1734), + [anon_sym_unset] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1758), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_esac] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_esac] = ACTIONS(1855), + [anon_sym_LT_LPAREN] = ACTIONS(1742), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1748), + [sym_ansii_c_string] = ACTIONS(1752), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1853), - }, - [337] = { - [aux_sym_case_item_repeat1] = STATE(337), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1843), - [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1857), }, [338] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(1860), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1860), - [sym_word] = ACTIONS(1862), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), - [anon_sym_esac] = ACTIONS(1864), - [anon_sym_DOLLAR] = ACTIONS(1862), - [sym_ansii_c_string] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1860), - [anon_sym_BQUOTE] = ACTIONS(1860), - [sym__special_character] = ACTIONS(1860), - [sym_number] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1860), + [aux_sym_case_item_repeat1] = STATE(338), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_RPAREN] = ACTIONS(1847), + [sym_comment] = ACTIONS(41), }, [339] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1864), + [anon_sym_DQUOTE] = ACTIONS(1864), [sym_comment] = ACTIONS(41), - [anon_sym_SEMI_SEMI] = ACTIONS(1866), + [sym_raw_string] = ACTIONS(1864), + [sym_word] = ACTIONS(1866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1864), [anon_sym_esac] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_ansii_c_string] = ACTIONS(1864), + [anon_sym_LT_LPAREN] = ACTIONS(1864), + [anon_sym_BQUOTE] = ACTIONS(1864), + [sym__special_character] = ACTIONS(1864), + [sym_number] = ACTIONS(1866), + [anon_sym_GT_LPAREN] = ACTIONS(1864), }, [340] = { - [aux_sym__literal_repeat1] = STATE(539), - [sym_if_statement] = STATE(540), - [sym_function_definition] = STATE(540), - [sym_negated_command] = STATE(540), - [sym_test_command] = STATE(540), - [sym_variable_assignment] = STATE(635), - [sym_subscript] = STATE(2473), - [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [aux_sym__statements_repeat1] = STATE(636), - [sym_redirected_statement] = STATE(540), - [sym_for_statement] = STATE(540), - [sym_compound_statement] = STATE(540), - [sym_subshell] = STATE(540), - [sym_declaration_command] = STATE(540), - [sym_unset_command] = STATE(540), - [sym_file_redirect] = STATE(544), - [sym_string] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat1] = STATE(544), - [sym__statements] = STATE(354), - [sym_c_style_for_statement] = STATE(540), - [sym_while_statement] = STATE(540), - [sym_case_statement] = STATE(540), - [sym_pipeline] = STATE(540), - [sym_list] = STATE(540), - [sym_command] = STATE(540), - [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(535), - [sym_string_expansion] = STATE(535), + [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1870), + [anon_sym_esac] = ACTIONS(1872), + }, + [341] = { + [aux_sym__literal_repeat1] = STATE(540), + [sym_if_statement] = STATE(541), + [sym_function_definition] = STATE(541), + [sym_negated_command] = STATE(541), + [sym_test_command] = STATE(541), + [sym_variable_assignment] = STATE(636), + [sym_subscript] = STATE(2494), + [sym_concatenation] = STATE(543), + [sym_expansion] = STATE(536), + [sym_command_substitution] = STATE(536), + [aux_sym__statements_repeat1] = STATE(637), + [sym_redirected_statement] = STATE(541), + [sym_for_statement] = STATE(541), + [sym_compound_statement] = STATE(541), + [sym_subshell] = STATE(541), + [sym_declaration_command] = STATE(541), + [sym_unset_command] = STATE(541), + [sym_file_redirect] = STATE(545), + [sym_string] = STATE(536), + [sym_process_substitution] = STATE(536), + [aux_sym_command_repeat1] = STATE(545), + [sym__statements] = STATE(355), + [sym_c_style_for_statement] = STATE(541), + [sym_while_statement] = STATE(541), + [sym_case_statement] = STATE(541), + [sym_pipeline] = STATE(541), + [sym_list] = STATE(541), + [sym_command] = STATE(541), + [sym_command_name] = STATE(638), + [sym_simple_expansion] = STATE(536), + [sym_string_expansion] = STATE(536), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1730), - [anon_sym_typeset] = ACTIONS(1730), - [anon_sym_unsetenv] = ACTIONS(1732), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [sym_number] = ACTIONS(1740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_typeset] = ACTIONS(1734), + [anon_sym_unsetenv] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym_number] = ACTIONS(1744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1744), + [sym_word] = ACTIONS(1748), [anon_sym_LBRACE] = ACTIONS(83), [anon_sym_LT] = ACTIONS(29), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1734), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1746), + [sym__special_character] = ACTIONS(1750), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1748), + [sym_raw_string] = ACTIONS(1752), [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_declare] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_declare] = ACTIONS(1734), + [sym_variable_name] = ACTIONS(1756), [sym_file_descriptor] = ACTIONS(47), [anon_sym_GT] = ACTIONS(29), [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1730), - [anon_sym_unset] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1734), + [anon_sym_unset] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1758), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_esac] = ACTIONS(1864), - [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_esac] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1742), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1748), + [sym_ansii_c_string] = ACTIONS(1752), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1866), - }, - [341] = { - [aux_sym_concatenation_repeat1] = STATE(775), - [aux_sym_case_item_repeat1] = STATE(356), - [anon_sym_RPAREN] = ACTIONS(1870), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_SEMI_SEMI] = ACTIONS(1870), }, [342] = { - [aux_sym__literal_repeat1] = STATE(778), - [aux_sym_case_item_repeat1] = STATE(358), - [anon_sym_RPAREN] = ACTIONS(1872), + [aux_sym_concatenation_repeat1] = STATE(776), + [aux_sym_case_item_repeat1] = STATE(357), + [anon_sym_RPAREN] = ACTIONS(1874), [sym_comment] = ACTIONS(41), - [anon_sym_PIPE] = ACTIONS(1594), - [sym__special_character] = ACTIONS(1602), + [sym__concat] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(1598), }, [343] = { - [aux_sym_case_item_repeat1] = STATE(356), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_RPAREN] = ACTIONS(1870), + [aux_sym__literal_repeat1] = STATE(779), + [aux_sym_case_item_repeat1] = STATE(359), + [anon_sym_RPAREN] = ACTIONS(1876), [sym_comment] = ACTIONS(41), + [anon_sym_PIPE] = ACTIONS(1598), + [sym__special_character] = ACTIONS(1606), }, [344] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [ts_builtin_sym_end] = ACTIONS(1876), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [aux_sym_case_item_repeat1] = STATE(357), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1874), + [sym_comment] = ACTIONS(41), }, [345] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1880), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [346] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_AMP_GT_GT] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1880), - [sym_file_descriptor] = ACTIONS(1882), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_AMP_GT] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1880), - [ts_builtin_sym_end] = ACTIONS(1882), - [anon_sym_LT_LT_LT] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_GT_AMP] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_LT_AMP] = ACTIONS(1880), - [anon_sym_GT_GT] = ACTIONS(1880), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_SEMI_SEMI] = ACTIONS(1880), - [anon_sym_PIPE_AMP] = ACTIONS(1880), + [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1882), }, [347] = { - [sym_do_group] = STATE(360), - [sym_compound_statement] = STATE(360), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(1886), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), + }, + [348] = { + [sym_do_group] = STATE(361), + [sym_compound_statement] = STATE(361), [anon_sym_LBRACE] = ACTIONS(27), [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(635), + [anon_sym_do] = ACTIONS(637), }, - [348] = { - [sym_do_group] = STATE(360), - [sym_compound_statement] = STATE(360), + [349] = { + [sym_do_group] = STATE(361), + [sym_compound_statement] = STATE(361), [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_do] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(637), }, - [349] = { + [350] = { [anon_sym_BANG_EQ] = ACTIONS(541), [anon_sym_PLUS_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(41), @@ -16699,7 +16758,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(545), [sym_test_operator] = ACTIONS(541), [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1886), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1890), [anon_sym_PIPE_PIPE] = ACTIONS(541), [anon_sym_GT_EQ] = ACTIONS(541), [anon_sym_PLUS] = ACTIONS(545), @@ -16710,103 +16769,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(541), [anon_sym_DASH_EQ] = ACTIONS(541), }, - [350] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [sym_file_descriptor] = ACTIONS(1890), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [ts_builtin_sym_end] = ACTIONS(1890), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - }, [351] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1892), - [sym_word] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_esac] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1894), - [sym_ansii_c_string] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [sym__special_character] = ACTIONS(1892), - [sym_number] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [sym_file_descriptor] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [ts_builtin_sym_end] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), }, [352] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), [sym_comment] = ACTIONS(41), - [anon_sym_SEMI_SEMI] = ACTIONS(1898), + [sym_raw_string] = ACTIONS(1896), + [sym_word] = ACTIONS(1898), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1896), [anon_sym_esac] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1898), + [sym_ansii_c_string] = ACTIONS(1896), + [anon_sym_LT_LPAREN] = ACTIONS(1896), + [anon_sym_BQUOTE] = ACTIONS(1896), + [sym__special_character] = ACTIONS(1896), + [sym_number] = ACTIONS(1898), + [anon_sym_GT_LPAREN] = ACTIONS(1896), }, [353] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(1902), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1902), - [sym_word] = ACTIONS(1904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1902), - [anon_sym_esac] = ACTIONS(1906), - [anon_sym_DOLLAR] = ACTIONS(1904), - [sym_ansii_c_string] = ACTIONS(1902), - [anon_sym_LT_LPAREN] = ACTIONS(1902), - [anon_sym_BQUOTE] = ACTIONS(1902), - [sym__special_character] = ACTIONS(1902), - [sym_number] = ACTIONS(1904), - [anon_sym_GT_LPAREN] = ACTIONS(1902), + [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1902), + [anon_sym_esac] = ACTIONS(1904), }, [354] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), [sym_comment] = ACTIONS(41), - [anon_sym_SEMI_SEMI] = ACTIONS(1908), + [sym_raw_string] = ACTIONS(1906), + [sym_word] = ACTIONS(1908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), [anon_sym_esac] = ACTIONS(1910), + [anon_sym_DOLLAR] = ACTIONS(1908), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [sym_number] = ACTIONS(1908), + [anon_sym_GT_LPAREN] = ACTIONS(1906), }, [355] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(634), - [sym_function_definition] = STATE(634), - [sym_negated_command] = STATE(634), - [sym_test_command] = STATE(634), - [sym_variable_assignment] = STATE(695), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(1463), - [sym_redirected_statement] = STATE(634), - [sym_for_statement] = STATE(634), - [sym_compound_statement] = STATE(634), - [sym_subshell] = STATE(634), - [sym_declaration_command] = STATE(634), - [sym_unset_command] = STATE(634), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(366), - [sym_c_style_for_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_case_statement] = STATE(634), - [sym_pipeline] = STATE(634), - [sym_list] = STATE(634), - [sym_command] = STATE(634), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1912), + [anon_sym_esac] = ACTIONS(1914), + }, + [356] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(635), + [sym_function_definition] = STATE(635), + [sym_negated_command] = STATE(635), + [sym_test_command] = STATE(635), + [sym_variable_assignment] = STATE(696), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(1470), + [sym_redirected_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_compound_statement] = STATE(635), + [sym_subshell] = STATE(635), + [sym_declaration_command] = STATE(635), + [sym_unset_command] = STATE(635), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(367), + [sym_c_style_for_statement] = STATE(635), + [sym_while_statement] = STATE(635), + [sym_case_statement] = STATE(635), + [sym_pipeline] = STATE(635), + [sym_list] = STATE(635), + [sym_command] = STATE(635), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -16847,46 +16906,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), }, - [356] = { - [aux_sym_case_item_repeat1] = STATE(337), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_RPAREN] = ACTIONS(1914), + [357] = { + [aux_sym_case_item_repeat1] = STATE(338), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1918), [sym_comment] = ACTIONS(41), }, - [357] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(634), - [sym_function_definition] = STATE(634), - [sym_negated_command] = STATE(634), - [sym_test_command] = STATE(634), - [sym_variable_assignment] = STATE(695), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(1463), - [sym_redirected_statement] = STATE(634), - [sym_for_statement] = STATE(634), - [sym_compound_statement] = STATE(634), - [sym_subshell] = STATE(634), - [sym_declaration_command] = STATE(634), - [sym_unset_command] = STATE(634), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(369), - [sym_c_style_for_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_case_statement] = STATE(634), - [sym_pipeline] = STATE(634), - [sym_list] = STATE(634), - [sym_command] = STATE(634), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [358] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(635), + [sym_function_definition] = STATE(635), + [sym_negated_command] = STATE(635), + [sym_test_command] = STATE(635), + [sym_variable_assignment] = STATE(696), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(1470), + [sym_redirected_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_compound_statement] = STATE(635), + [sym_subshell] = STATE(635), + [sym_declaration_command] = STATE(635), + [sym_unset_command] = STATE(635), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(370), + [sym_c_style_for_statement] = STATE(635), + [sym_while_statement] = STATE(635), + [sym_case_statement] = STATE(635), + [sym_pipeline] = STATE(635), + [sym_list] = STATE(635), + [sym_command] = STATE(635), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -16927,36 +16986,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - }, - [358] = { - [aux_sym_case_item_repeat1] = STATE(337), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_RPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(41), + [anon_sym_SEMI_SEMI] = ACTIONS(1920), }, [359] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_AMP_GT_GT] = ACTIONS(1920), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_LT_LT] = ACTIONS(1920), - [sym_file_descriptor] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1920), - [anon_sym_AMP_GT] = ACTIONS(1920), - [anon_sym_PIPE_PIPE] = ACTIONS(1920), - [ts_builtin_sym_end] = ACTIONS(1922), - [anon_sym_LT_LT_LT] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_GT_AMP] = ACTIONS(1920), - [anon_sym_LT] = ACTIONS(1920), - [anon_sym_LT_AMP] = ACTIONS(1920), - [anon_sym_GT_GT] = ACTIONS(1920), - [anon_sym_AMP_AMP] = ACTIONS(1920), - [anon_sym_SEMI_SEMI] = ACTIONS(1920), - [anon_sym_PIPE_AMP] = ACTIONS(1920), + [aux_sym_case_item_repeat1] = STATE(338), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1922), + [sym_comment] = ACTIONS(41), }, [360] = { [anon_sym_LT_LT_DASH] = ACTIONS(1924), @@ -16982,103 +17018,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1924), }, [361] = { - [sym_do_group] = STATE(371), - [sym_compound_statement] = STATE(371), - [anon_sym_LBRACE] = ACTIONS(27), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(635), + [anon_sym_LT_LT_DASH] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [ts_builtin_sym_end] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_SEMI_SEMI] = ACTIONS(1928), + [anon_sym_PIPE_AMP] = ACTIONS(1928), }, [362] = { - [sym_do_group] = STATE(371), - [sym_compound_statement] = STATE(371), - [sym_comment] = ACTIONS(41), + [sym_do_group] = STATE(372), + [sym_compound_statement] = STATE(372), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_do] = ACTIONS(635), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(637), }, [363] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1930), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1930), - [sym_word] = ACTIONS(1932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1930), - [anon_sym_esac] = ACTIONS(1934), - [anon_sym_DOLLAR] = ACTIONS(1932), - [sym_ansii_c_string] = ACTIONS(1930), - [anon_sym_LT_LPAREN] = ACTIONS(1930), - [anon_sym_BQUOTE] = ACTIONS(1930), - [sym__special_character] = ACTIONS(1930), - [sym_number] = ACTIONS(1932), - [anon_sym_GT_LPAREN] = ACTIONS(1930), + [sym_do_group] = STATE(372), + [sym_compound_statement] = STATE(372), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(637), }, [364] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), - [anon_sym_DQUOTE] = ACTIONS(1936), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1936), - [sym_word] = ACTIONS(1938), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), - [anon_sym_esac] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1938), - [sym_ansii_c_string] = ACTIONS(1936), - [anon_sym_LT_LPAREN] = ACTIONS(1936), - [anon_sym_BQUOTE] = ACTIONS(1936), - [sym__special_character] = ACTIONS(1936), - [sym_number] = ACTIONS(1938), - [anon_sym_GT_LPAREN] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1934), + [anon_sym_esac] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1936), + [sym_ansii_c_string] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1934), + [anon_sym_BQUOTE] = ACTIONS(1934), + [sym__special_character] = ACTIONS(1934), + [sym_number] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1934), }, [365] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1847), - [sym_word] = ACTIONS(1849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1847), - [anon_sym_DOLLAR] = ACTIONS(1849), - [sym_ansii_c_string] = ACTIONS(1847), - [anon_sym_LT_LPAREN] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1847), - [sym__special_character] = ACTIONS(1847), - [sym_number] = ACTIONS(1849), - [anon_sym_GT_LPAREN] = ACTIONS(1847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1940), + [sym_word] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_esac] = ACTIONS(1944), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_ansii_c_string] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [sym__special_character] = ACTIONS(1940), + [sym_number] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1940), }, [366] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1942), - [sym_comment] = ACTIONS(41), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1851), + [sym_word] = ACTIONS(1853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(1853), + [sym_ansii_c_string] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1851), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym__special_character] = ACTIONS(1851), + [sym_number] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1851), }, [367] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(634), - [sym_function_definition] = STATE(634), - [sym_negated_command] = STATE(634), - [sym_test_command] = STATE(634), - [sym_variable_assignment] = STATE(695), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(1463), - [sym_redirected_statement] = STATE(634), - [sym_for_statement] = STATE(634), - [sym_compound_statement] = STATE(634), - [sym_subshell] = STATE(634), - [sym_declaration_command] = STATE(634), - [sym_unset_command] = STATE(634), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(374), - [sym_c_style_for_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_case_statement] = STATE(634), - [sym_pipeline] = STATE(634), - [sym_list] = STATE(634), - [sym_command] = STATE(634), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [anon_sym_SEMI_SEMI] = ACTIONS(1946), + [sym_comment] = ACTIONS(41), + }, + [368] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(635), + [sym_function_definition] = STATE(635), + [sym_negated_command] = STATE(635), + [sym_test_command] = STATE(635), + [sym_variable_assignment] = STATE(696), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(1470), + [sym_redirected_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_compound_statement] = STATE(635), + [sym_subshell] = STATE(635), + [sym_declaration_command] = STATE(635), + [sym_unset_command] = STATE(635), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(375), + [sym_c_style_for_statement] = STATE(635), + [sym_while_statement] = STATE(635), + [sym_case_statement] = STATE(635), + [sym_pipeline] = STATE(635), + [sym_list] = STATE(635), + [sym_command] = STATE(635), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -17119,59 +17178,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1942), - }, - [368] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(1860), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1860), - [sym_word] = ACTIONS(1862), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(1862), - [sym_ansii_c_string] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1860), - [anon_sym_BQUOTE] = ACTIONS(1860), - [sym__special_character] = ACTIONS(1860), - [sym_number] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1946), }, [369] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1944), - [sym_comment] = ACTIONS(41), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1864), + [anon_sym_DQUOTE] = ACTIONS(1864), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1864), + [sym_word] = ACTIONS(1866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1864), + [anon_sym_DOLLAR] = ACTIONS(1866), + [sym_ansii_c_string] = ACTIONS(1864), + [anon_sym_LT_LPAREN] = ACTIONS(1864), + [anon_sym_BQUOTE] = ACTIONS(1864), + [sym__special_character] = ACTIONS(1864), + [sym_number] = ACTIONS(1866), + [anon_sym_GT_LPAREN] = ACTIONS(1864), }, [370] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(634), - [sym_function_definition] = STATE(634), - [sym_negated_command] = STATE(634), - [sym_test_command] = STATE(634), - [sym_variable_assignment] = STATE(695), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(1463), - [sym_redirected_statement] = STATE(634), - [sym_for_statement] = STATE(634), - [sym_compound_statement] = STATE(634), - [sym_subshell] = STATE(634), - [sym_declaration_command] = STATE(634), - [sym_unset_command] = STATE(634), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(376), - [sym_c_style_for_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_case_statement] = STATE(634), - [sym_pipeline] = STATE(634), - [sym_list] = STATE(634), - [sym_command] = STATE(634), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), + [sym_comment] = ACTIONS(41), + }, + [371] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(635), + [sym_function_definition] = STATE(635), + [sym_negated_command] = STATE(635), + [sym_test_command] = STATE(635), + [sym_variable_assignment] = STATE(696), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(1470), + [sym_redirected_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_compound_statement] = STATE(635), + [sym_subshell] = STATE(635), + [sym_declaration_command] = STATE(635), + [sym_unset_command] = STATE(635), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(377), + [sym_c_style_for_statement] = STATE(635), + [sym_while_statement] = STATE(635), + [sym_case_statement] = STATE(635), + [sym_pipeline] = STATE(635), + [sym_list] = STATE(635), + [sym_command] = STATE(635), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -17212,224 +17271,224 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1944), - }, - [371] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_AMP_GT_GT] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_LT_LT] = ACTIONS(1946), - [sym_file_descriptor] = ACTIONS(1948), - [anon_sym_GT] = ACTIONS(1946), - [anon_sym_AMP_GT] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [ts_builtin_sym_end] = ACTIONS(1948), - [anon_sym_LT_LT_LT] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_GT_AMP] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_LT_AMP] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_SEMI_SEMI] = ACTIONS(1946), - [anon_sym_PIPE_AMP] = ACTIONS(1946), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), }, [372] = { - [sym_do_group] = STATE(377), - [sym_compound_statement] = STATE(377), - [anon_sym_LBRACE] = ACTIONS(27), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(635), + [anon_sym_LT_LT_DASH] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_AMP_GT_GT] = ACTIONS(1950), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_LT_LT] = ACTIONS(1950), + [sym_file_descriptor] = ACTIONS(1952), + [anon_sym_GT] = ACTIONS(1950), + [anon_sym_AMP_GT] = ACTIONS(1950), + [anon_sym_PIPE_PIPE] = ACTIONS(1950), + [ts_builtin_sym_end] = ACTIONS(1952), + [anon_sym_LT_LT_LT] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_GT_AMP] = ACTIONS(1950), + [anon_sym_LT] = ACTIONS(1950), + [anon_sym_LT_AMP] = ACTIONS(1950), + [anon_sym_GT_GT] = ACTIONS(1950), + [anon_sym_AMP_AMP] = ACTIONS(1950), + [anon_sym_SEMI_SEMI] = ACTIONS(1950), + [anon_sym_PIPE_AMP] = ACTIONS(1950), }, [373] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1892), - [sym_word] = ACTIONS(1894), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1894), - [sym_ansii_c_string] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [sym__special_character] = ACTIONS(1892), - [sym_number] = ACTIONS(1894), - [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_do_group] = STATE(378), + [sym_compound_statement] = STATE(378), + [anon_sym_LBRACE] = ACTIONS(27), + [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(637), }, [374] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1950), - [sym_comment] = ACTIONS(41), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1896), + [sym_word] = ACTIONS(1898), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(1898), + [sym_ansii_c_string] = ACTIONS(1896), + [anon_sym_LT_LPAREN] = ACTIONS(1896), + [anon_sym_BQUOTE] = ACTIONS(1896), + [sym__special_character] = ACTIONS(1896), + [sym_number] = ACTIONS(1898), + [anon_sym_GT_LPAREN] = ACTIONS(1896), }, [375] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(1902), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1902), - [sym_word] = ACTIONS(1904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1902), - [anon_sym_DOLLAR] = ACTIONS(1904), - [sym_ansii_c_string] = ACTIONS(1902), - [anon_sym_LT_LPAREN] = ACTIONS(1902), - [anon_sym_BQUOTE] = ACTIONS(1902), - [sym__special_character] = ACTIONS(1902), - [sym_number] = ACTIONS(1904), - [anon_sym_GT_LPAREN] = ACTIONS(1902), + [anon_sym_SEMI_SEMI] = ACTIONS(1954), + [sym_comment] = ACTIONS(41), }, [376] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1952), - [sym_comment] = ACTIONS(41), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1906), + [sym_word] = ACTIONS(1908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1908), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [sym_number] = ACTIONS(1908), + [anon_sym_GT_LPAREN] = ACTIONS(1906), }, [377] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_LT_LT] = ACTIONS(1954), - [sym_file_descriptor] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [ts_builtin_sym_end] = ACTIONS(1956), - [anon_sym_LT_LT_LT] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_GT_AMP] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_LT_AMP] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_PIPE_AMP] = ACTIONS(1954), + [anon_sym_SEMI_SEMI] = ACTIONS(1956), + [sym_comment] = ACTIONS(41), }, [378] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1930), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1930), - [sym_word] = ACTIONS(1932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1930), - [anon_sym_DOLLAR] = ACTIONS(1932), - [sym_ansii_c_string] = ACTIONS(1930), - [anon_sym_LT_LPAREN] = ACTIONS(1930), - [anon_sym_BQUOTE] = ACTIONS(1930), - [sym__special_character] = ACTIONS(1930), - [sym_number] = ACTIONS(1932), - [anon_sym_GT_LPAREN] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_AMP_GT_GT] = ACTIONS(1958), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1960), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_LT_LT] = ACTIONS(1958), + [sym_file_descriptor] = ACTIONS(1960), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_AMP_GT] = ACTIONS(1958), + [anon_sym_PIPE_PIPE] = ACTIONS(1958), + [ts_builtin_sym_end] = ACTIONS(1960), + [anon_sym_LT_LT_LT] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_GT_AMP] = ACTIONS(1958), + [anon_sym_LT] = ACTIONS(1958), + [anon_sym_LT_AMP] = ACTIONS(1958), + [anon_sym_GT_GT] = ACTIONS(1958), + [anon_sym_AMP_AMP] = ACTIONS(1958), + [anon_sym_SEMI_SEMI] = ACTIONS(1958), + [anon_sym_PIPE_AMP] = ACTIONS(1958), }, [379] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), - [anon_sym_DQUOTE] = ACTIONS(1936), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1936), - [sym_word] = ACTIONS(1938), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), - [anon_sym_DOLLAR] = ACTIONS(1938), - [sym_ansii_c_string] = ACTIONS(1936), - [anon_sym_LT_LPAREN] = ACTIONS(1936), - [anon_sym_BQUOTE] = ACTIONS(1936), - [sym__special_character] = ACTIONS(1936), - [sym_number] = ACTIONS(1938), - [anon_sym_GT_LPAREN] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1934), + [sym_word] = ACTIONS(1936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [sym_ansii_c_string] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1934), + [anon_sym_BQUOTE] = ACTIONS(1934), + [sym__special_character] = ACTIONS(1934), + [sym_number] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1934), }, [380] = { - [aux_sym__literal_repeat1] = STATE(397), - [sym_string] = STATE(396), - [sym_process_substitution] = STATE(396), - [sym_variable_assignment] = STATE(398), - [sym_subscript] = STATE(2464), - [sym_concatenation] = STATE(398), - [sym_expansion] = STATE(396), - [sym_command_substitution] = STATE(396), - [aux_sym_declaration_command_repeat1] = STATE(398), - [sym_simple_expansion] = STATE(396), - [sym_string_expansion] = STATE(396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1940), + [sym_word] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_ansii_c_string] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [sym__special_character] = ACTIONS(1940), + [sym_number] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + }, + [381] = { + [aux_sym__literal_repeat1] = STATE(398), + [sym_string] = STATE(397), + [sym_process_substitution] = STATE(397), + [sym_variable_assignment] = STATE(399), + [sym_subscript] = STATE(2476), + [sym_concatenation] = STATE(399), + [sym_expansion] = STATE(397), + [sym_command_substitution] = STATE(397), + [aux_sym_declaration_command_repeat1] = STATE(399), + [sym_simple_expansion] = STATE(397), + [sym_string_expansion] = STATE(397), [anon_sym_PIPE_AMP] = ACTIONS(129), [anon_sym_AMP_GT_GT] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1962), [anon_sym_LT_LT] = ACTIONS(129), - [anon_sym_BQUOTE] = ACTIONS(1960), - [anon_sym_GT_LPAREN] = ACTIONS(1962), - [sym_number] = ACTIONS(1964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1966), + [anon_sym_BQUOTE] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1966), + [sym_number] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), [anon_sym_PIPE_PIPE] = ACTIONS(129), [anon_sym_PIPE] = ACTIONS(129), - [sym_word] = ACTIONS(1964), + [sym_word] = ACTIONS(1968), [anon_sym_LT] = ACTIONS(129), [anon_sym_LT_AMP] = ACTIONS(129), [anon_sym_GT_GT] = ACTIONS(129), - [sym__special_character] = ACTIONS(1968), + [sym__special_character] = ACTIONS(1972), [anon_sym_LT_LT_DASH] = ACTIONS(129), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(129), - [sym_raw_string] = ACTIONS(1964), - [sym_variable_name] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1974), [anon_sym_RPAREN] = ACTIONS(129), [sym_file_descriptor] = ACTIONS(143), [anon_sym_GT] = ACTIONS(129), [anon_sym_AMP_GT] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1976), [anon_sym_LT_LT_LT] = ACTIONS(129), [anon_sym_GT_AMP] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [aux_sym__simple_variable_name_token1] = ACTIONS(1976), - [anon_sym_LT_LPAREN] = ACTIONS(1962), - [sym_ansii_c_string] = ACTIONS(1964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), + [aux_sym__simple_variable_name_token1] = ACTIONS(1980), + [anon_sym_LT_LPAREN] = ACTIONS(1966), + [sym_ansii_c_string] = ACTIONS(1968), [anon_sym_AMP_AMP] = ACTIONS(129), [anon_sym_SEMI_SEMI] = ACTIONS(129), [anon_sym_AMP] = ACTIONS(129), }, - [381] = { - [sym_command_substitution] = STATE(399), - [aux_sym__literal_repeat1] = STATE(400), - [sym_string] = STATE(399), - [aux_sym_unset_command_repeat1] = STATE(401), - [sym_process_substitution] = STATE(399), - [sym_simple_expansion] = STATE(399), - [sym_string_expansion] = STATE(399), - [sym_concatenation] = STATE(401), - [sym_expansion] = STATE(399), + [382] = { + [sym_command_substitution] = STATE(400), + [aux_sym__literal_repeat1] = STATE(401), + [sym_string] = STATE(400), + [aux_sym_unset_command_repeat1] = STATE(402), + [sym_process_substitution] = STATE(400), + [sym_simple_expansion] = STATE(400), + [sym_string_expansion] = STATE(400), + [sym_concatenation] = STATE(402), + [sym_expansion] = STATE(400), [anon_sym_PIPE_AMP] = ACTIONS(153), [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1982), [anon_sym_LT_LT] = ACTIONS(153), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_number] = ACTIONS(1984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1986), + [anon_sym_BQUOTE] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1986), + [sym_number] = ACTIONS(1988), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1990), [anon_sym_PIPE_PIPE] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(153), - [sym_word] = ACTIONS(1984), + [sym_word] = ACTIONS(1988), [anon_sym_LT] = ACTIONS(153), [anon_sym_LT_AMP] = ACTIONS(153), [anon_sym_GT_GT] = ACTIONS(153), - [sym__special_character] = ACTIONS(1988), + [sym__special_character] = ACTIONS(1992), [anon_sym_LT_LT_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(167), [anon_sym_SEMI] = ACTIONS(153), - [sym_raw_string] = ACTIONS(1984), + [sym_raw_string] = ACTIONS(1988), [anon_sym_RPAREN] = ACTIONS(153), [sym_file_descriptor] = ACTIONS(167), [anon_sym_GT] = ACTIONS(153), [anon_sym_AMP_GT] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1994), [anon_sym_LT_LT_LT] = ACTIONS(153), [anon_sym_GT_AMP] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), - [aux_sym__simple_variable_name_token1] = ACTIONS(1994), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [sym_ansii_c_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1996), + [aux_sym__simple_variable_name_token1] = ACTIONS(1998), + [anon_sym_LT_LPAREN] = ACTIONS(1986), + [sym_ansii_c_string] = ACTIONS(1988), [anon_sym_AMP_AMP] = ACTIONS(153), [anon_sym_SEMI_SEMI] = ACTIONS(153), [anon_sym_AMP] = ACTIONS(153), }, - [382] = { - [aux_sym_concatenation_repeat1] = STATE(405), + [383] = { + [aux_sym_concatenation_repeat1] = STATE(406), [anon_sym_AMP] = ACTIONS(189), [anon_sym_AMP_GT_GT] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(189), @@ -17439,7 +17498,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(189), [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(1996), + [sym__concat] = ACTIONS(2000), [anon_sym_PIPE] = ACTIONS(189), [sym_word] = ACTIONS(189), [anon_sym_LT] = ACTIONS(189), @@ -17467,10 +17526,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(189), [anon_sym_PIPE_AMP] = ACTIONS(189), }, - [383] = { - [aux_sym_concatenation_repeat1] = STATE(405), + [384] = { + [aux_sym_concatenation_repeat1] = STATE(406), [anon_sym_AMP] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(2002), [anon_sym_AMP_GT_GT] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(189), [anon_sym_LT_LT] = ACTIONS(189), @@ -17479,7 +17538,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(189), [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(1996), + [sym__concat] = ACTIONS(2000), [anon_sym_PIPE] = ACTIONS(189), [sym_word] = ACTIONS(189), [anon_sym_LT] = ACTIONS(189), @@ -17507,8 +17566,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(189), [anon_sym_PIPE_AMP] = ACTIONS(189), }, - [384] = { - [aux_sym_concatenation_repeat1] = STATE(405), + [385] = { + [aux_sym_concatenation_repeat1] = STATE(406), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -17518,7 +17577,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(1996), + [sym__concat] = ACTIONS(2000), [anon_sym_PIPE] = ACTIONS(211), [sym_word] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), @@ -17546,23 +17605,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [385] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [sym_test_command] = STATE(410), - [aux_sym_command_repeat1] = STATE(391), - [sym_subscript] = STATE(2455), - [sym_variable_assignment] = STATE(391), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_command] = STATE(410), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [sym_subshell] = STATE(410), - [sym_file_redirect] = STATE(391), + [386] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [sym_test_command] = STATE(411), + [aux_sym_command_repeat1] = STATE(392), + [sym_subscript] = STATE(2467), + [sym_variable_assignment] = STATE(392), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_command] = STATE(411), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), + [sym_subshell] = STATE(411), + [sym_file_redirect] = STATE(392), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_DOLLAR] = ACTIONS(69), @@ -17590,8 +17649,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [386] = { - [aux_sym__literal_repeat1] = STATE(413), + [387] = { + [aux_sym__literal_repeat1] = STATE(414), [anon_sym_AMP] = ACTIONS(307), [anon_sym_AMP_GT_GT] = ACTIONS(307), [anon_sym_DOLLAR] = ACTIONS(307), @@ -17607,7 +17666,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(307), [anon_sym_GT_GT] = ACTIONS(307), [anon_sym_EQ_TILDE] = ACTIONS(307), - [sym__special_character] = ACTIONS(2000), + [sym__special_character] = ACTIONS(2004), [anon_sym_LT_LT_DASH] = ACTIONS(307), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(311), @@ -17628,18 +17687,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(307), [anon_sym_PIPE_AMP] = ACTIONS(307), }, - [387] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [388] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI_SEMI] = ACTIONS(2006), [anon_sym_AMP_GT_GT] = ACTIONS(493), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_LF] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(2010), [sym_file_descriptor] = ACTIONS(499), [anon_sym_LT_LT] = ACTIONS(489), [anon_sym_GT] = ACTIONS(493), @@ -17655,12 +17714,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [anon_sym_PIPE_AMP] = ACTIONS(491), }, - [388] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_AMP] = ACTIONS(2002), + [389] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_AMP] = ACTIONS(2006), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_LT_LT] = ACTIONS(489), @@ -17678,10 +17737,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2006), [sym_variable_name] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(2010), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), @@ -17692,10 +17751,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2006), [anon_sym_PIPE_AMP] = ACTIONS(491), }, - [389] = { + [390] = { [anon_sym_AMP] = ACTIONS(189), [anon_sym_AMP_GT_GT] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(189), @@ -17732,37 +17791,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(189), [anon_sym_PIPE_AMP] = ACTIONS(189), }, - [390] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(419), - [sym_function_definition] = STATE(419), - [sym_negated_command] = STATE(419), - [sym_test_command] = STATE(419), - [sym_variable_assignment] = STATE(420), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), + [391] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(420), + [sym_function_definition] = STATE(420), + [sym_negated_command] = STATE(420), + [sym_test_command] = STATE(420), + [sym_variable_assignment] = STATE(421), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(419), - [sym_for_statement] = STATE(419), - [sym_compound_statement] = STATE(419), - [sym_subshell] = STATE(419), - [sym_declaration_command] = STATE(419), - [sym_unset_command] = STATE(419), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_case_statement] = STATE(419), - [sym_pipeline] = STATE(419), - [sym_list] = STATE(419), - [sym_command] = STATE(419), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_redirected_statement] = STATE(420), + [sym_for_statement] = STATE(420), + [sym_compound_statement] = STATE(420), + [sym_subshell] = STATE(420), + [sym_declaration_command] = STATE(420), + [sym_unset_command] = STATE(420), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym_c_style_for_statement] = STATE(420), + [sym_while_statement] = STATE(420), + [sym_case_statement] = STATE(420), + [sym_pipeline] = STATE(420), + [sym_list] = STATE(420), + [sym_command] = STATE(420), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -17804,19 +17863,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [391] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), + [392] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), [sym_variable_assignment] = STATE(103), - [sym_subscript] = STATE(2455), + [sym_subscript] = STATE(2467), [aux_sym_command_repeat1] = STATE(103), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_command_name] = STATE(422), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_command_name] = STATE(423), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [sym_file_redirect] = STATE(103), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_DOLLAR] = ACTIONS(69), @@ -17828,7 +17887,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym__special_character] = ACTIONS(2008), + [sym__special_character] = ACTIONS(2012), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(93), [sym_variable_name] = ACTIONS(257), @@ -17841,54 +17900,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(73), [sym_ansii_c_string] = ACTIONS(93), }, - [392] = { - [sym_command_substitution] = STATE(424), - [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(424), - [sym_process_substitution] = STATE(424), - [sym_simple_expansion] = STATE(424), - [sym_string_expansion] = STATE(424), - [aux_sym_command_repeat2] = STATE(426), - [sym_concatenation] = STATE(426), - [sym_expansion] = STATE(424), + [393] = { + [sym_command_substitution] = STATE(425), + [aux_sym__literal_repeat1] = STATE(426), + [sym_string] = STATE(425), + [sym_process_substitution] = STATE(425), + [sym_simple_expansion] = STATE(425), + [sym_string_expansion] = STATE(425), + [aux_sym_command_repeat2] = STATE(427), + [sym_concatenation] = STATE(427), + [sym_expansion] = STATE(425), [anon_sym_PIPE_AMP] = ACTIONS(341), [anon_sym_AMP_GT_GT] = ACTIONS(341), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_LT_LT] = ACTIONS(341), - [anon_sym_BQUOTE] = ACTIONS(2010), - [anon_sym_GT_LPAREN] = ACTIONS(2012), - [sym_number] = ACTIONS(2014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_BQUOTE] = ACTIONS(2014), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_number] = ACTIONS(2018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), [anon_sym_PIPE_PIPE] = ACTIONS(341), [anon_sym_PIPE] = ACTIONS(341), - [sym_word] = ACTIONS(2014), + [sym_word] = ACTIONS(2018), [anon_sym_LT] = ACTIONS(341), [anon_sym_LT_AMP] = ACTIONS(341), [anon_sym_GT_GT] = ACTIONS(341), - [anon_sym_EQ_TILDE] = ACTIONS(2018), + [anon_sym_EQ_TILDE] = ACTIONS(2022), [sym__special_character] = ACTIONS(85), [anon_sym_LT_LT_DASH] = ACTIONS(341), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(353), [anon_sym_SEMI] = ACTIONS(341), - [sym_raw_string] = ACTIONS(2014), + [sym_raw_string] = ACTIONS(2018), [anon_sym_RPAREN] = ACTIONS(341), [sym_file_descriptor] = ACTIONS(353), [anon_sym_GT] = ACTIONS(341), [anon_sym_AMP_GT] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), [anon_sym_LT_LT_LT] = ACTIONS(341), [anon_sym_GT_AMP] = ACTIONS(341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2012), - [sym_ansii_c_string] = ACTIONS(2014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [sym_ansii_c_string] = ACTIONS(2018), [anon_sym_AMP_AMP] = ACTIONS(341), [anon_sym_SEMI_SEMI] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(341), }, - [393] = { - [aux_sym_concatenation_repeat1] = STATE(1004), + [394] = { + [aux_sym_concatenation_repeat1] = STATE(1010), [anon_sym_LT_LT_DASH] = ACTIONS(363), [anon_sym_AMP] = ACTIONS(363), [anon_sym_AMP_GT_GT] = ACTIONS(363), @@ -17907,13 +17966,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(363), [anon_sym_LT_AMP] = ACTIONS(363), [anon_sym_GT_GT] = ACTIONS(363), - [sym__concat] = ACTIONS(1160), + [sym__concat] = ACTIONS(1164), [anon_sym_AMP_AMP] = ACTIONS(363), [anon_sym_SEMI_SEMI] = ACTIONS(363), [anon_sym_PIPE_AMP] = ACTIONS(363), }, - [394] = { - [aux_sym__literal_repeat1] = STATE(1039), + [395] = { + [aux_sym__literal_repeat1] = STATE(1045), [anon_sym_LT_LT_DASH] = ACTIONS(369), [anon_sym_AMP] = ACTIONS(369), [anon_sym_AMP_GT_GT] = ACTIONS(369), @@ -17933,11 +17992,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(369), [anon_sym_GT_GT] = ACTIONS(369), [anon_sym_AMP_AMP] = ACTIONS(369), - [sym__special_character] = ACTIONS(1166), + [sym__special_character] = ACTIONS(1170), [anon_sym_SEMI_SEMI] = ACTIONS(369), [anon_sym_PIPE_AMP] = ACTIONS(369), }, - [395] = { + [396] = { [anon_sym_LT_LT_DASH] = ACTIONS(363), [anon_sym_AMP] = ACTIONS(363), [anon_sym_AMP_GT_GT] = ACTIONS(363), @@ -17960,8 +18019,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(363), [anon_sym_PIPE_AMP] = ACTIONS(363), }, - [396] = { - [aux_sym_concatenation_repeat1] = STATE(844), + [397] = { + [aux_sym_concatenation_repeat1] = STATE(850), [anon_sym_AMP] = ACTIONS(373), [anon_sym_AMP_GT_GT] = ACTIONS(373), [anon_sym_DOLLAR] = ACTIONS(373), @@ -17971,7 +18030,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(373), [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), [anon_sym_PIPE_PIPE] = ACTIONS(373), - [sym__concat] = ACTIONS(2024), + [sym__concat] = ACTIONS(2028), [anon_sym_PIPE] = ACTIONS(373), [sym_word] = ACTIONS(373), [anon_sym_LT] = ACTIONS(373), @@ -17999,8 +18058,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(373), [anon_sym_PIPE_AMP] = ACTIONS(373), }, - [397] = { - [aux_sym__literal_repeat1] = STATE(847), + [398] = { + [aux_sym__literal_repeat1] = STATE(853), [anon_sym_AMP] = ACTIONS(379), [anon_sym_AMP_GT_GT] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(379), @@ -18015,7 +18074,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(379), [anon_sym_LT_AMP] = ACTIONS(379), [anon_sym_GT_GT] = ACTIONS(379), - [sym__special_character] = ACTIONS(2026), + [sym__special_character] = ACTIONS(2030), [anon_sym_LT_LT_DASH] = ACTIONS(379), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(383), @@ -18037,56 +18096,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(379), [anon_sym_PIPE_AMP] = ACTIONS(379), }, - [398] = { - [aux_sym__literal_repeat1] = STATE(397), - [sym_string] = STATE(396), - [sym_process_substitution] = STATE(396), - [sym_variable_assignment] = STATE(428), - [sym_subscript] = STATE(2464), - [sym_concatenation] = STATE(428), - [sym_expansion] = STATE(396), - [sym_command_substitution] = STATE(396), - [aux_sym_declaration_command_repeat1] = STATE(428), - [sym_simple_expansion] = STATE(396), - [sym_string_expansion] = STATE(396), + [399] = { + [aux_sym__literal_repeat1] = STATE(398), + [sym_string] = STATE(397), + [sym_process_substitution] = STATE(397), + [sym_variable_assignment] = STATE(429), + [sym_subscript] = STATE(2476), + [sym_concatenation] = STATE(429), + [sym_expansion] = STATE(397), + [sym_command_substitution] = STATE(397), + [aux_sym_declaration_command_repeat1] = STATE(429), + [sym_simple_expansion] = STATE(397), + [sym_string_expansion] = STATE(397), [anon_sym_PIPE_AMP] = ACTIONS(385), [anon_sym_AMP_GT_GT] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1962), [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(1960), - [anon_sym_GT_LPAREN] = ACTIONS(1962), - [sym_number] = ACTIONS(1964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1966), + [anon_sym_BQUOTE] = ACTIONS(1964), + [anon_sym_GT_LPAREN] = ACTIONS(1966), + [sym_number] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), [anon_sym_PIPE_PIPE] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(385), - [sym_word] = ACTIONS(1964), + [sym_word] = ACTIONS(1968), [anon_sym_LT] = ACTIONS(385), [anon_sym_LT_AMP] = ACTIONS(385), [anon_sym_GT_GT] = ACTIONS(385), - [sym__special_character] = ACTIONS(1968), + [sym__special_character] = ACTIONS(1972), [anon_sym_LT_LT_DASH] = ACTIONS(385), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(387), [anon_sym_SEMI] = ACTIONS(385), - [sym_raw_string] = ACTIONS(1964), - [sym_variable_name] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1974), [anon_sym_RPAREN] = ACTIONS(385), [sym_file_descriptor] = ACTIONS(387), [anon_sym_GT] = ACTIONS(385), [anon_sym_AMP_GT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1976), [anon_sym_LT_LT_LT] = ACTIONS(385), [anon_sym_GT_AMP] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [aux_sym__simple_variable_name_token1] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(1962), - [sym_ansii_c_string] = ACTIONS(1964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), + [aux_sym__simple_variable_name_token1] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(1966), + [sym_ansii_c_string] = ACTIONS(1968), [anon_sym_AMP_AMP] = ACTIONS(385), [anon_sym_SEMI_SEMI] = ACTIONS(385), [anon_sym_AMP] = ACTIONS(385), }, - [399] = { - [aux_sym_concatenation_repeat1] = STATE(876), + [400] = { + [aux_sym_concatenation_repeat1] = STATE(882), [anon_sym_AMP] = ACTIONS(391), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(391), @@ -18096,7 +18155,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(391), [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), [anon_sym_PIPE_PIPE] = ACTIONS(391), - [sym__concat] = ACTIONS(2030), + [sym__concat] = ACTIONS(2034), [anon_sym_PIPE] = ACTIONS(391), [sym_word] = ACTIONS(391), [anon_sym_LT] = ACTIONS(391), @@ -18123,8 +18182,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(391), [anon_sym_PIPE_AMP] = ACTIONS(391), }, - [400] = { - [aux_sym__literal_repeat1] = STATE(879), + [401] = { + [aux_sym__literal_repeat1] = STATE(885), [anon_sym_AMP] = ACTIONS(397), [anon_sym_AMP_GT_GT] = ACTIONS(397), [anon_sym_DOLLAR] = ACTIONS(397), @@ -18139,7 +18198,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(397), [anon_sym_LT_AMP] = ACTIONS(397), [anon_sym_GT_GT] = ACTIONS(397), - [sym__special_character] = ACTIONS(2032), + [sym__special_character] = ACTIONS(2036), [anon_sym_LT_LT_DASH] = ACTIONS(397), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(401), @@ -18160,52 +18219,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(397), [anon_sym_PIPE_AMP] = ACTIONS(397), }, - [401] = { - [sym_command_substitution] = STATE(399), - [aux_sym__literal_repeat1] = STATE(400), - [sym_string] = STATE(399), - [aux_sym_unset_command_repeat1] = STATE(429), - [sym_process_substitution] = STATE(399), - [sym_simple_expansion] = STATE(399), - [sym_string_expansion] = STATE(399), - [sym_concatenation] = STATE(429), - [sym_expansion] = STATE(399), + [402] = { + [sym_command_substitution] = STATE(400), + [aux_sym__literal_repeat1] = STATE(401), + [sym_string] = STATE(400), + [aux_sym_unset_command_repeat1] = STATE(430), + [sym_process_substitution] = STATE(400), + [sym_simple_expansion] = STATE(400), + [sym_string_expansion] = STATE(400), + [sym_concatenation] = STATE(430), + [sym_expansion] = STATE(400), [anon_sym_PIPE_AMP] = ACTIONS(403), [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1982), [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_number] = ACTIONS(1984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1986), + [anon_sym_BQUOTE] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1986), + [sym_number] = ACTIONS(1988), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1990), [anon_sym_PIPE_PIPE] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), - [sym_word] = ACTIONS(1984), + [sym_word] = ACTIONS(1988), [anon_sym_LT] = ACTIONS(403), [anon_sym_LT_AMP] = ACTIONS(403), [anon_sym_GT_GT] = ACTIONS(403), - [sym__special_character] = ACTIONS(1988), + [sym__special_character] = ACTIONS(1992), [anon_sym_LT_LT_DASH] = ACTIONS(403), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(405), [anon_sym_SEMI] = ACTIONS(403), - [sym_raw_string] = ACTIONS(1984), + [sym_raw_string] = ACTIONS(1988), [anon_sym_RPAREN] = ACTIONS(403), [sym_file_descriptor] = ACTIONS(405), [anon_sym_GT] = ACTIONS(403), [anon_sym_AMP_GT] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1994), [anon_sym_LT_LT_LT] = ACTIONS(403), [anon_sym_GT_AMP] = ACTIONS(403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), - [aux_sym__simple_variable_name_token1] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [sym_ansii_c_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1996), + [aux_sym__simple_variable_name_token1] = ACTIONS(2038), + [anon_sym_LT_LPAREN] = ACTIONS(1986), + [sym_ansii_c_string] = ACTIONS(1988), [anon_sym_AMP_AMP] = ACTIONS(403), [anon_sym_SEMI_SEMI] = ACTIONS(403), [anon_sym_AMP] = ACTIONS(403), }, - [402] = { + [403] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -18243,7 +18302,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [403] = { + [404] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -18281,7 +18340,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [404] = { + [405] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -18319,8 +18378,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [405] = { - [aux_sym_concatenation_repeat1] = STATE(434), + [406] = { + [aux_sym_concatenation_repeat1] = STATE(435), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -18330,7 +18389,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2036), + [sym__concat] = ACTIONS(2040), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -18358,7 +18417,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [406] = { + [407] = { [anon_sym_PIPE_AMP] = ACTIONS(485), [anon_sym_AMP_GT_GT] = ACTIONS(485), [anon_sym_LT_LT] = ACTIONS(485), @@ -18383,8 +18442,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(485), [anon_sym_AMP] = ACTIONS(485), }, - [407] = { - [aux_sym_concatenation_repeat1] = STATE(812), + [408] = { + [aux_sym_concatenation_repeat1] = STATE(813), [anon_sym_BANG_EQ] = ACTIONS(529), [anon_sym_PLUS_EQ] = ACTIONS(529), [sym_comment] = ACTIONS(41), @@ -18397,7 +18456,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(529), [anon_sym_PIPE_PIPE] = ACTIONS(529), [anon_sym_GT_EQ] = ACTIONS(529), - [sym__concat] = ACTIONS(2038), + [sym__concat] = ACTIONS(2042), [anon_sym_PLUS] = ACTIONS(531), [anon_sym_LT] = ACTIONS(531), [anon_sym_EQ_TILDE] = ACTIONS(529), @@ -18406,20 +18465,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(529), [anon_sym_DASH_EQ] = ACTIONS(529), }, - [408] = { - [sym_command_substitution] = STATE(407), - [sym_unary_expression] = STATE(441), - [sym_postfix_expression] = STATE(441), - [sym_string] = STATE(407), - [aux_sym__literal_repeat1] = STATE(409), - [sym_process_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(441), - [sym_simple_expansion] = STATE(407), - [sym_string_expansion] = STATE(407), - [sym__expression] = STATE(441), - [sym_binary_expression] = STATE(441), - [sym_concatenation] = STATE(441), - [sym_expansion] = STATE(407), + [409] = { + [sym_command_substitution] = STATE(408), + [sym_unary_expression] = STATE(442), + [sym_postfix_expression] = STATE(442), + [sym_string] = STATE(408), + [aux_sym__literal_repeat1] = STATE(410), + [sym_process_substitution] = STATE(408), + [sym_parenthesized_expression] = STATE(442), + [sym_simple_expansion] = STATE(408), + [sym_string_expansion] = STATE(408), + [sym__expression] = STATE(442), + [sym_binary_expression] = STATE(442), + [sym_concatenation] = STATE(442), + [sym_expansion] = STATE(408), [anon_sym_LPAREN] = ACTIONS(283), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(285), @@ -18437,8 +18496,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(285), [sym__special_character] = ACTIONS(305), }, - [409] = { - [aux_sym__literal_repeat1] = STATE(815), + [410] = { + [aux_sym__literal_repeat1] = STATE(816), [anon_sym_BANG_EQ] = ACTIONS(535), [anon_sym_PLUS_EQ] = ACTIONS(535), [sym_comment] = ACTIONS(41), @@ -18457,10 +18516,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(535), [anon_sym_LT_EQ] = ACTIONS(535), [anon_sym_AMP_AMP] = ACTIONS(535), - [sym__special_character] = ACTIONS(2040), + [sym__special_character] = ACTIONS(2044), [anon_sym_DASH_EQ] = ACTIONS(535), }, - [410] = { + [411] = { [anon_sym_PIPE_AMP] = ACTIONS(551), [anon_sym_AMP_GT_GT] = ACTIONS(551), [anon_sym_LT_LT] = ACTIONS(551), @@ -18485,7 +18544,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(551), [anon_sym_AMP] = ACTIONS(551), }, - [411] = { + [412] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -18523,7 +18582,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [412] = { + [413] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -18560,118 +18619,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [413] = { - [aux_sym__literal_repeat1] = STATE(413), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_EQ_TILDE] = ACTIONS(645), - [sym__special_character] = ACTIONS(2042), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(645), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_EQ_EQ] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), - }, [414] = { - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_word] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(656), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_while] = ACTIONS(652), - [anon_sym_SEMI_SEMI] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_local] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_case] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [aux_sym__literal_repeat1] = STATE(414), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_EQ_TILDE] = ACTIONS(647), + [sym__special_character] = ACTIONS(2046), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(647), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, [415] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(455), - [sym_function_definition] = STATE(455), - [sym_negated_command] = STATE(455), - [sym_test_command] = STATE(455), - [sym_variable_assignment] = STATE(456), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(455), - [sym_for_statement] = STATE(455), - [sym_compound_statement] = STATE(455), - [sym_subshell] = STATE(455), - [sym_declaration_command] = STATE(455), - [sym_unset_command] = STATE(455), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(455), - [sym_while_statement] = STATE(455), - [sym_case_statement] = STATE(455), - [sym_pipeline] = STATE(455), - [sym_list] = STATE(455), - [sym_command] = STATE(455), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_word] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_while] = ACTIONS(654), + [anon_sym_SEMI_SEMI] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_local] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_case] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + }, + [416] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(456), + [sym_function_definition] = STATE(456), + [sym_negated_command] = STATE(456), + [sym_test_command] = STATE(456), + [sym_variable_assignment] = STATE(457), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(456), + [sym_for_statement] = STATE(456), + [sym_compound_statement] = STATE(456), + [sym_subshell] = STATE(456), + [sym_declaration_command] = STATE(456), + [sym_unset_command] = STATE(456), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym_c_style_for_statement] = STATE(456), + [sym_while_statement] = STATE(456), + [sym_case_statement] = STATE(456), + [sym_pipeline] = STATE(456), + [sym_list] = STATE(456), + [sym_command] = STATE(456), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -18713,82 +18772,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [416] = { - [sym_heredoc_body] = STATE(458), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(967), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), - }, [417] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_negated_command] = STATE(460), - [sym_test_command] = STATE(460), - [sym_variable_assignment] = STATE(461), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_subshell] = STATE(460), - [sym_declaration_command] = STATE(460), - [sym_unset_command] = STATE(460), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_case_statement] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_command] = STATE(460), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_heredoc_body] = STATE(459), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(969), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [anon_sym_RPAREN] = ACTIONS(658), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + }, + [418] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(461), + [sym_function_definition] = STATE(461), + [sym_negated_command] = STATE(461), + [sym_test_command] = STATE(461), + [sym_variable_assignment] = STATE(462), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(461), + [sym_for_statement] = STATE(461), + [sym_compound_statement] = STATE(461), + [sym_subshell] = STATE(461), + [sym_declaration_command] = STATE(461), + [sym_unset_command] = STATE(461), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym_c_style_for_statement] = STATE(461), + [sym_while_statement] = STATE(461), + [sym_case_statement] = STATE(461), + [sym_pipeline] = STATE(461), + [sym_list] = STATE(461), + [sym_command] = STATE(461), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -18830,46 +18889,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [418] = { - [sym_heredoc_redirect] = STATE(465), - [aux_sym_redirected_statement_repeat1] = STATE(465), - [sym_herestring_redirect] = STATE(465), - [sym_file_redirect] = STATE(465), - [anon_sym_PIPE_AMP] = ACTIONS(682), + [419] = { + [sym_heredoc_redirect] = STATE(466), + [aux_sym_redirected_statement_repeat1] = STATE(466), + [sym_herestring_redirect] = STATE(466), + [sym_file_redirect] = STATE(466), + [anon_sym_PIPE_AMP] = ACTIONS(684), [anon_sym_AMP_GT_GT] = ACTIONS(493), [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(682), - [anon_sym_PIPE_PIPE] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(684), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(684), [anon_sym_LT] = ACTIONS(493), [anon_sym_LT_AMP] = ACTIONS(493), [anon_sym_GT_GT] = ACTIONS(493), [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(682), + [anon_sym_LF] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(684), [sym_file_descriptor] = ACTIONS(499), [anon_sym_GT] = ACTIONS(493), [anon_sym_AMP_GT] = ACTIONS(493), [anon_sym_LT_LT_LT] = ACTIONS(503), [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(682), - [anon_sym_SEMI_SEMI] = ACTIONS(682), - [anon_sym_AMP] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(684), + [anon_sym_SEMI_SEMI] = ACTIONS(684), + [anon_sym_AMP] = ACTIONS(684), }, - [419] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [420] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_LT_LT_DASH] = ACTIONS(489), [anon_sym_PIPE_AMP] = ACTIONS(491), [anon_sym_AMP_GT_GT] = ACTIONS(493), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2053), [sym_file_descriptor] = ACTIONS(499), [anon_sym_LT_LT] = ACTIONS(489), [anon_sym_GT] = ACTIONS(493), @@ -18882,14 +18941,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(493), [anon_sym_GT_GT] = ACTIONS(493), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_SEMI_SEMI] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(2051), }, - [420] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [421] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_PIPE_AMP] = ACTIONS(491), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), @@ -18908,11 +18967,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_LF] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2051), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2053), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(331), @@ -18922,815 +18981,815 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_SEMI_SEMI] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(2051), }, - [421] = { - [aux_sym__literal_repeat1] = STATE(386), + [422] = { + [aux_sym__literal_repeat1] = STATE(387), [sym_if_statement] = STATE(61), [sym_function_definition] = STATE(61), [sym_negated_command] = STATE(61), [sym_test_command] = STATE(61), [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(421), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(422), [sym_redirected_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_compound_statement] = STATE(61), [sym_subshell] = STATE(61), [sym_declaration_command] = STATE(61), [sym_unset_command] = STATE(61), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym_c_style_for_statement] = STATE(61), [sym_while_statement] = STATE(61), [sym_case_statement] = STATE(61), [sym_pipeline] = STATE(61), [sym_list] = STATE(61), [sym_command] = STATE(61), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_AMP_GT_GT] = ACTIONS(693), - [anon_sym_local] = ACTIONS(696), - [anon_sym_typeset] = ACTIONS(696), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_GT_LPAREN] = ACTIONS(708), - [sym_number] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(714), - [anon_sym_function] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_LT] = ACTIONS(723), - [anon_sym_LT_AMP] = ACTIONS(693), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_export] = ACTIONS(696), - [sym_word] = ACTIONS(726), - [sym__special_character] = ACTIONS(729), - [anon_sym_if] = ACTIONS(732), - [anon_sym_case] = ACTIONS(735), - [anon_sym_LPAREN_LPAREN] = ACTIONS(738), - [sym_raw_string] = ACTIONS(741), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_declare] = ACTIONS(696), - [sym_variable_name] = ACTIONS(747), - [sym_file_descriptor] = ACTIONS(750), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(723), - [anon_sym_AMP_GT] = ACTIONS(723), - [anon_sym_readonly] = ACTIONS(696), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_GT_AMP] = ACTIONS(693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), - [anon_sym_LT_LPAREN] = ACTIONS(708), - [anon_sym_for] = ACTIONS(759), - [anon_sym_while] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(765), - [sym_ansii_c_string] = ACTIONS(741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(768), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(698), + [anon_sym_typeset] = ACTIONS(698), + [anon_sym_unsetenv] = ACTIONS(701), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(710), + [sym_number] = ACTIONS(713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(716), + [anon_sym_function] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(698), + [sym_word] = ACTIONS(728), + [sym__special_character] = ACTIONS(731), + [anon_sym_if] = ACTIONS(734), + [anon_sym_case] = ACTIONS(737), + [anon_sym_LPAREN_LPAREN] = ACTIONS(740), + [sym_raw_string] = ACTIONS(743), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_declare] = ACTIONS(698), + [sym_variable_name] = ACTIONS(749), + [sym_file_descriptor] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(698), + [anon_sym_unset] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(710), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(767), + [sym_ansii_c_string] = ACTIONS(743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(770), }, - [422] = { - [sym_command_substitution] = STATE(424), - [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(424), - [sym_process_substitution] = STATE(424), - [sym_simple_expansion] = STATE(424), - [sym_string_expansion] = STATE(424), - [aux_sym_command_repeat2] = STATE(468), - [sym_concatenation] = STATE(468), - [sym_expansion] = STATE(424), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(771), + [423] = { + [sym_command_substitution] = STATE(425), + [aux_sym__literal_repeat1] = STATE(426), + [sym_string] = STATE(425), + [sym_process_substitution] = STATE(425), + [sym_simple_expansion] = STATE(425), + [sym_string_expansion] = STATE(425), + [aux_sym_command_repeat2] = STATE(469), + [sym_concatenation] = STATE(469), + [sym_expansion] = STATE(425), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(2010), - [anon_sym_GT_LPAREN] = ACTIONS(2012), - [sym_number] = ACTIONS(2014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [sym_word] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_EQ_TILDE] = ACTIONS(2018), + [anon_sym_LT_LT] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(2014), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_number] = ACTIONS(2018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [sym_word] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(2022), [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), - [sym_raw_string] = ACTIONS(2014), - [anon_sym_RPAREN] = ACTIONS(771), - [sym_file_descriptor] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2012), - [sym_ansii_c_string] = ACTIONS(2014), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(773), + [sym_raw_string] = ACTIONS(2018), + [anon_sym_RPAREN] = ACTIONS(773), + [sym_file_descriptor] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [sym_ansii_c_string] = ACTIONS(2018), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(773), }, - [423] = { - [sym_command_substitution] = STATE(470), - [aux_sym__literal_repeat1] = STATE(471), - [sym_string] = STATE(470), - [sym_process_substitution] = STATE(470), - [sym_simple_expansion] = STATE(470), - [sym_string_expansion] = STATE(470), - [sym_concatenation] = STATE(469), - [sym_expansion] = STATE(470), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2051), + [424] = { + [sym_command_substitution] = STATE(471), + [aux_sym__literal_repeat1] = STATE(472), + [sym_string] = STATE(471), + [sym_process_substitution] = STATE(471), + [sym_simple_expansion] = STATE(471), + [sym_string_expansion] = STATE(471), + [sym_concatenation] = STATE(470), + [sym_expansion] = STATE(471), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2055), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(2053), + [sym_number] = ACTIONS(2057), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_word] = ACTIONS(2053), + [sym_word] = ACTIONS(2057), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), [anon_sym_LT_LPAREN] = ACTIONS(73), - [sym_ansii_c_string] = ACTIONS(2051), - [sym_regex] = ACTIONS(2055), - [sym__special_character] = ACTIONS(2008), - }, - [424] = { - [aux_sym_concatenation_repeat1] = STATE(405), - [anon_sym_AMP] = ACTIONS(797), - [anon_sym_AMP_GT_GT] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(797), - [anon_sym_LT_LT] = ACTIONS(797), - [anon_sym_BQUOTE] = ACTIONS(797), - [anon_sym_GT_LPAREN] = ACTIONS(797), - [sym_number] = ACTIONS(797), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_PIPE_PIPE] = ACTIONS(797), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(797), - [sym_word] = ACTIONS(797), - [anon_sym_LT] = ACTIONS(797), - [anon_sym_LT_AMP] = ACTIONS(797), - [anon_sym_GT_GT] = ACTIONS(797), - [anon_sym_EQ_TILDE] = ACTIONS(797), - [sym__special_character] = ACTIONS(797), - [anon_sym_LT_LT_DASH] = ACTIONS(797), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(799), - [anon_sym_SEMI] = ACTIONS(797), - [sym_raw_string] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(797), - [sym_file_descriptor] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(797), - [anon_sym_AMP_GT] = ACTIONS(797), - [anon_sym_EQ_EQ] = ACTIONS(797), - [anon_sym_DQUOTE] = ACTIONS(797), - [anon_sym_LT_LT_LT] = ACTIONS(797), - [anon_sym_GT_AMP] = ACTIONS(797), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(797), - [anon_sym_LT_LPAREN] = ACTIONS(797), - [sym_ansii_c_string] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(797), - [anon_sym_SEMI_SEMI] = ACTIONS(797), - [anon_sym_PIPE_AMP] = ACTIONS(797), + [sym_ansii_c_string] = ACTIONS(2055), + [sym_regex] = ACTIONS(2059), + [sym__special_character] = ACTIONS(2012), }, [425] = { - [aux_sym__literal_repeat1] = STATE(413), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_AMP_GT_GT] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(801), - [anon_sym_LT_LT] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(801), - [anon_sym_GT_LPAREN] = ACTIONS(801), - [sym_number] = ACTIONS(801), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(801), - [anon_sym_PIPE_PIPE] = ACTIONS(801), - [anon_sym_PIPE] = ACTIONS(801), - [sym_word] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_LT_AMP] = ACTIONS(801), - [anon_sym_GT_GT] = ACTIONS(801), - [anon_sym_EQ_TILDE] = ACTIONS(801), - [sym__special_character] = ACTIONS(2000), - [anon_sym_LT_LT_DASH] = ACTIONS(801), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(801), - [sym_raw_string] = ACTIONS(801), - [anon_sym_RPAREN] = ACTIONS(801), - [sym_file_descriptor] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_AMP_GT] = ACTIONS(801), - [anon_sym_EQ_EQ] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(801), - [anon_sym_LT_LT_LT] = ACTIONS(801), - [anon_sym_GT_AMP] = ACTIONS(801), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_LT_LPAREN] = ACTIONS(801), - [sym_ansii_c_string] = ACTIONS(801), - [anon_sym_AMP_AMP] = ACTIONS(801), - [anon_sym_SEMI_SEMI] = ACTIONS(801), - [anon_sym_PIPE_AMP] = ACTIONS(801), + [aux_sym_concatenation_repeat1] = STATE(406), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_LT_LT] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(799), + [anon_sym_GT_LPAREN] = ACTIONS(799), + [sym_number] = ACTIONS(799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(799), + [sym_word] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(799), + [anon_sym_EQ_TILDE] = ACTIONS(799), + [sym__special_character] = ACTIONS(799), + [anon_sym_LT_LT_DASH] = ACTIONS(799), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(799), + [sym_raw_string] = ACTIONS(799), + [anon_sym_RPAREN] = ACTIONS(799), + [sym_file_descriptor] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_EQ_EQ] = ACTIONS(799), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_LT_LT_LT] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(799), + [anon_sym_LT_LPAREN] = ACTIONS(799), + [sym_ansii_c_string] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_SEMI_SEMI] = ACTIONS(799), + [anon_sym_PIPE_AMP] = ACTIONS(799), }, [426] = { - [sym_command_substitution] = STATE(424), - [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(424), - [sym_process_substitution] = STATE(424), - [sym_simple_expansion] = STATE(424), - [sym_string_expansion] = STATE(424), - [aux_sym_command_repeat2] = STATE(472), - [sym_concatenation] = STATE(472), - [sym_expansion] = STATE(424), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(2010), - [anon_sym_GT_LPAREN] = ACTIONS(2012), - [sym_number] = ACTIONS(2014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [sym_word] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_EQ_TILDE] = ACTIONS(2018), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), - [sym_raw_string] = ACTIONS(2014), - [anon_sym_RPAREN] = ACTIONS(771), - [sym_file_descriptor] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2012), - [sym_ansii_c_string] = ACTIONS(2014), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), + [aux_sym__literal_repeat1] = STATE(414), + [anon_sym_AMP] = ACTIONS(803), + [anon_sym_AMP_GT_GT] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_GT_LPAREN] = ACTIONS(803), + [sym_number] = ACTIONS(803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), + [anon_sym_PIPE_PIPE] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [sym_word] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_AMP] = ACTIONS(803), + [anon_sym_GT_GT] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [sym__special_character] = ACTIONS(2004), + [anon_sym_LT_LT_DASH] = ACTIONS(803), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(805), + [anon_sym_SEMI] = ACTIONS(803), + [sym_raw_string] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym_file_descriptor] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_AMP_GT] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_LT_LT_LT] = ACTIONS(803), + [anon_sym_GT_AMP] = ACTIONS(803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(803), + [sym_ansii_c_string] = ACTIONS(803), + [anon_sym_AMP_AMP] = ACTIONS(803), + [anon_sym_SEMI_SEMI] = ACTIONS(803), + [anon_sym_PIPE_AMP] = ACTIONS(803), }, [427] = { - [anon_sym_PIPE_AMP] = ACTIONS(805), - [anon_sym_AMP_GT_GT] = ACTIONS(805), - [anon_sym_LT_LT] = ACTIONS(805), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_PIPE_PIPE] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_LT_AMP] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(805), - [anon_sym_LT_LT_DASH] = ACTIONS(805), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym_file_descriptor] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_AMP_GT] = ACTIONS(805), - [anon_sym_LT_LT_LT] = ACTIONS(805), - [anon_sym_GT_AMP] = ACTIONS(805), - [anon_sym_esac] = ACTIONS(805), - [anon_sym_AMP_AMP] = ACTIONS(805), - [anon_sym_SEMI_SEMI] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(805), + [sym_command_substitution] = STATE(425), + [aux_sym__literal_repeat1] = STATE(426), + [sym_string] = STATE(425), + [sym_process_substitution] = STATE(425), + [sym_simple_expansion] = STATE(425), + [sym_string_expansion] = STATE(425), + [aux_sym_command_repeat2] = STATE(473), + [sym_concatenation] = STATE(473), + [sym_expansion] = STATE(425), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(2014), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_number] = ACTIONS(2018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [sym_word] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(2022), + [sym__special_character] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(773), + [sym_raw_string] = ACTIONS(2018), + [anon_sym_RPAREN] = ACTIONS(773), + [sym_file_descriptor] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [sym_ansii_c_string] = ACTIONS(2018), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(773), }, [428] = { - [aux_sym__literal_repeat1] = STATE(397), - [sym_string] = STATE(396), - [sym_process_substitution] = STATE(396), - [sym_variable_assignment] = STATE(428), - [sym_subscript] = STATE(2464), - [sym_concatenation] = STATE(428), - [sym_expansion] = STATE(396), - [sym_command_substitution] = STATE(396), - [aux_sym_declaration_command_repeat1] = STATE(428), - [sym_simple_expansion] = STATE(396), - [sym_string_expansion] = STATE(396), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_BQUOTE] = ACTIONS(2060), - [anon_sym_GT_LPAREN] = ACTIONS(2063), - [sym_number] = ACTIONS(2066), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [sym_word] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_LT_AMP] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(809), - [sym__special_character] = ACTIONS(2072), - [anon_sym_LT_LT_DASH] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(809), - [sym_raw_string] = ACTIONS(2066), - [sym_variable_name] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(809), - [sym_file_descriptor] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_LT_LT_LT] = ACTIONS(809), - [anon_sym_GT_AMP] = ACTIONS(809), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2081), - [aux_sym__simple_variable_name_token1] = ACTIONS(2084), - [anon_sym_LT_LPAREN] = ACTIONS(2063), - [sym_ansii_c_string] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(809), - [anon_sym_PIPE_AMP] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_esac] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(807), }, [429] = { - [sym_command_substitution] = STATE(399), - [aux_sym__literal_repeat1] = STATE(400), - [sym_string] = STATE(399), - [aux_sym_unset_command_repeat1] = STATE(429), - [sym_process_substitution] = STATE(399), - [sym_simple_expansion] = STATE(399), - [sym_string_expansion] = STATE(399), + [aux_sym__literal_repeat1] = STATE(398), + [sym_string] = STATE(397), + [sym_process_substitution] = STATE(397), + [sym_variable_assignment] = STATE(429), + [sym_subscript] = STATE(2476), [sym_concatenation] = STATE(429), - [sym_expansion] = STATE(399), - [anon_sym_AMP] = ACTIONS(843), - [anon_sym_AMP_GT_GT] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(2087), - [anon_sym_LT_LT] = ACTIONS(843), - [anon_sym_BQUOTE] = ACTIONS(2090), - [anon_sym_GT_LPAREN] = ACTIONS(2093), - [sym_number] = ACTIONS(2096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(843), - [sym_word] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_LT_AMP] = ACTIONS(843), - [anon_sym_GT_GT] = ACTIONS(843), - [sym__special_character] = ACTIONS(2102), - [anon_sym_LT_LT_DASH] = ACTIONS(843), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(843), - [sym_raw_string] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(843), - [sym_file_descriptor] = ACTIONS(863), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_AMP_GT] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_LT_LT_LT] = ACTIONS(843), - [anon_sym_GT_AMP] = ACTIONS(843), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2108), - [aux_sym__simple_variable_name_token1] = ACTIONS(2111), - [anon_sym_LT_LPAREN] = ACTIONS(2093), - [sym_ansii_c_string] = ACTIONS(2096), - [anon_sym_AMP_AMP] = ACTIONS(843), - [anon_sym_SEMI_SEMI] = ACTIONS(843), - [anon_sym_PIPE_AMP] = ACTIONS(843), + [sym_expansion] = STATE(397), + [sym_command_substitution] = STATE(397), + [aux_sym_declaration_command_repeat1] = STATE(429), + [sym_simple_expansion] = STATE(397), + [sym_string_expansion] = STATE(397), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_BQUOTE] = ACTIONS(2064), + [anon_sym_GT_LPAREN] = ACTIONS(2067), + [sym_number] = ACTIONS(2070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [sym_word] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(2076), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(811), + [sym_raw_string] = ACTIONS(2070), + [sym_variable_name] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2085), + [aux_sym__simple_variable_name_token1] = ACTIONS(2088), + [anon_sym_LT_LPAREN] = ACTIONS(2067), + [sym_ansii_c_string] = ACTIONS(2070), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [430] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [sym_command_substitution] = STATE(400), + [aux_sym__literal_repeat1] = STATE(401), + [sym_string] = STATE(400), + [aux_sym_unset_command_repeat1] = STATE(430), + [sym_process_substitution] = STATE(400), + [sym_simple_expansion] = STATE(400), + [sym_string_expansion] = STATE(400), + [sym_concatenation] = STATE(430), + [sym_expansion] = STATE(400), + [anon_sym_AMP] = ACTIONS(845), + [anon_sym_AMP_GT_GT] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(2091), + [anon_sym_LT_LT] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(2094), + [anon_sym_GT_LPAREN] = ACTIONS(2097), + [sym_number] = ACTIONS(2100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2103), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(845), + [sym_word] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(845), + [anon_sym_LT_AMP] = ACTIONS(845), + [anon_sym_GT_GT] = ACTIONS(845), + [sym__special_character] = ACTIONS(2106), + [anon_sym_LT_LT_DASH] = ACTIONS(845), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(845), + [sym_raw_string] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(845), + [sym_file_descriptor] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_LT_LT_LT] = ACTIONS(845), + [anon_sym_GT_AMP] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2112), + [aux_sym__simple_variable_name_token1] = ACTIONS(2115), + [anon_sym_LT_LPAREN] = ACTIONS(2097), + [sym_ansii_c_string] = ACTIONS(2100), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), }, [431] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [anon_sym_EQ_TILDE] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_EQ_EQ] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [432] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [433] = { - [sym_command_substitution] = STATE(432), - [sym_string] = STATE(432), - [sym_process_substitution] = STATE(432), - [sym_simple_expansion] = STATE(432), - [sym_string_expansion] = STATE(432), - [sym_expansion] = STATE(432), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2114), - [anon_sym_DOLLAR] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), + }, + [434] = { + [sym_command_substitution] = STATE(433), + [sym_string] = STATE(433), + [sym_process_substitution] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_string_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2120), [anon_sym_BQUOTE] = ACTIONS(71), [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(2118), + [sym_number] = ACTIONS(2122), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_word] = ACTIONS(2118), + [sym_word] = ACTIONS(2122), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), [anon_sym_LT_LPAREN] = ACTIONS(73), - [sym_ansii_c_string] = ACTIONS(2114), - [sym__special_character] = ACTIONS(2114), - }, - [434] = { - [aux_sym_concatenation_repeat1] = STATE(434), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(2118), + [sym__special_character] = ACTIONS(2118), }, [435] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_EQ_TILDE] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(435), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(905), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [436] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, [437] = { - [anon_sym_PIPE_AMP] = ACTIONS(963), - [anon_sym_AMP_GT_GT] = ACTIONS(963), - [anon_sym_LT_LT] = ACTIONS(963), - [anon_sym_BQUOTE] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LT_AMP] = ACTIONS(963), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_LT_LT_DASH] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [sym_file_descriptor] = ACTIONS(965), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_AMP_GT] = ACTIONS(963), - [anon_sym_LT_LT_LT] = ACTIONS(963), - [anon_sym_GT_AMP] = ACTIONS(963), - [anon_sym_esac] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_SEMI_SEMI] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, [438] = { - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_BQUOTE] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_esac] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(965), }, [439] = { - [sym_heredoc_body] = STATE(1419), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(967), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [440] = { - [anon_sym_PIPE_AMP] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), + [sym_heredoc_body] = STATE(1426), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(969), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [441] = { - [anon_sym_BANG_EQ] = ACTIONS(637), - [anon_sym_PLUS_EQ] = ACTIONS(637), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(639), - [anon_sym_RBRACK] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_GT] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(641), - [sym_test_operator] = ACTIONS(637), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_EQ_TILDE] = ACTIONS(643), - [anon_sym_DASH_DASH] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [anon_sym_DASH_EQ] = ACTIONS(637), + [anon_sym_PIPE_AMP] = ACTIONS(973), + [anon_sym_AMP_GT_GT] = ACTIONS(973), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(973), + [anon_sym_PIPE_PIPE] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_LT_AMP] = ACTIONS(973), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_LT_LT_DASH] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(973), + [anon_sym_LT_LT_LT] = ACTIONS(973), + [anon_sym_GT_AMP] = ACTIONS(973), + [anon_sym_esac] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(973), + [anon_sym_SEMI_SEMI] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(973), }, [442] = { - [sym_command_substitution] = STATE(407), - [sym_unary_expression] = STATE(480), - [sym_postfix_expression] = STATE(480), - [sym_string] = STATE(407), - [aux_sym__literal_repeat1] = STATE(409), - [sym_process_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(480), - [sym_simple_expansion] = STATE(407), - [sym_string_expansion] = STATE(407), - [sym__expression] = STATE(480), - [sym_binary_expression] = STATE(480), - [sym_concatenation] = STATE(480), - [sym_expansion] = STATE(407), + [anon_sym_BANG_EQ] = ACTIONS(639), + [anon_sym_PLUS_EQ] = ACTIONS(639), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [sym_test_operator] = ACTIONS(639), + [anon_sym_EQ_EQ] = ACTIONS(645), + [anon_sym_PIPE_PIPE] = ACTIONS(639), + [anon_sym_GT_EQ] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_EQ_TILDE] = ACTIONS(645), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_LT_EQ] = ACTIONS(639), + [anon_sym_AMP_AMP] = ACTIONS(639), + [anon_sym_DASH_EQ] = ACTIONS(639), + }, + [443] = { + [sym_command_substitution] = STATE(408), + [sym_unary_expression] = STATE(481), + [sym_postfix_expression] = STATE(481), + [sym_string] = STATE(408), + [aux_sym__literal_repeat1] = STATE(410), + [sym_process_substitution] = STATE(408), + [sym_parenthesized_expression] = STATE(481), + [sym_simple_expansion] = STATE(408), + [sym_string_expansion] = STATE(408), + [sym__expression] = STATE(481), + [sym_binary_expression] = STATE(481), + [sym_concatenation] = STATE(481), + [sym_expansion] = STATE(408), [anon_sym_LPAREN] = ACTIONS(283), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(285), @@ -19748,41 +19807,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(285), [sym__special_character] = ACTIONS(305), }, - [443] = { - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_PLUS_EQ] = ACTIONS(1001), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_RBRACK] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_GT] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1003), - [sym_test_operator] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_PIPE_PIPE] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_EQ_TILDE] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(1001), - [anon_sym_DASH_EQ] = ACTIONS(1001), - }, [444] = { - [sym_command_substitution] = STATE(407), - [sym_unary_expression] = STATE(480), - [sym_postfix_expression] = STATE(480), - [sym_string] = STATE(407), - [aux_sym__literal_repeat1] = STATE(409), - [sym_process_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(480), - [sym_simple_expansion] = STATE(407), - [sym_string_expansion] = STATE(407), - [sym__expression] = STATE(480), - [sym_binary_expression] = STATE(480), - [sym_concatenation] = STATE(480), - [sym_expansion] = STATE(407), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1003), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1005), + [sym_test_operator] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_EQ_TILDE] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_DASH_EQ] = ACTIONS(1003), + }, + [445] = { + [sym_command_substitution] = STATE(408), + [sym_unary_expression] = STATE(481), + [sym_postfix_expression] = STATE(481), + [sym_string] = STATE(408), + [aux_sym__literal_repeat1] = STATE(410), + [sym_process_substitution] = STATE(408), + [sym_parenthesized_expression] = STATE(481), + [sym_simple_expansion] = STATE(408), + [sym_string_expansion] = STATE(408), + [sym__expression] = STATE(481), + [sym_binary_expression] = STATE(481), + [sym_concatenation] = STATE(481), + [sym_expansion] = STATE(408), [anon_sym_LPAREN] = ACTIONS(283), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(285), @@ -19799,323 +19858,294 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(295), [sym_ansii_c_string] = ACTIONS(285), [sym__special_character] = ACTIONS(305), - [sym_regex] = ACTIONS(2123), - }, - [445] = { - [anon_sym_PIPE_AMP] = ACTIONS(1007), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_BQUOTE] = ACTIONS(1007), - [anon_sym_PIPE_PIPE] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_LT_LT_DASH] = ACTIONS(1007), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [sym_file_descriptor] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1007), - [anon_sym_LT_LT_LT] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [anon_sym_esac] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1007), - [anon_sym_SEMI_SEMI] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), + [sym_regex] = ACTIONS(2127), }, [446] = { - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_PIPE_AMP] = ACTIONS(1009), + [anon_sym_AMP_GT_GT] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_BQUOTE] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_LT_AMP] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_LT_LT_DASH] = ACTIONS(1009), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1011), + [anon_sym_SEMI] = ACTIONS(1009), + [anon_sym_RPAREN] = ACTIONS(1009), + [sym_file_descriptor] = ACTIONS(1011), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(1009), + [anon_sym_LT_LT_LT] = ACTIONS(1009), + [anon_sym_GT_AMP] = ACTIONS(1009), + [anon_sym_esac] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_SEMI_SEMI] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1009), }, [447] = { - [aux_sym_concatenation_repeat1] = STATE(1036), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [sym__concat] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [448] = { - [aux_sym__literal_repeat1] = STATE(1071), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), - [sym_number] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [sym_word] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [sym__special_character] = ACTIONS(2127), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1041), - [anon_sym_RPAREN] = ACTIONS(1037), - [sym_file_descriptor] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [sym_ansii_c_string] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), + [aux_sym_concatenation_repeat1] = STATE(1042), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [sym__concat] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [449] = { - [aux_sym_concatenation_repeat1] = STATE(1004), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1055), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [ts_builtin_sym_end] = ACTIONS(1055), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym__concat] = ACTIONS(1160), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), + [aux_sym__literal_repeat1] = STATE(1077), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_number] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [sym_word] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_LT_AMP] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [sym__special_character] = ACTIONS(2131), + [anon_sym_LT_LT_DASH] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1039), + [sym_raw_string] = ACTIONS(1039), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1039), + [sym_file_descriptor] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_LT_LT_LT] = ACTIONS(1039), + [anon_sym_GT_AMP] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1039), + [sym_ansii_c_string] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), }, [450] = { - [aux_sym__literal_repeat1] = STATE(1039), - [anon_sym_LT_LT_DASH] = ACTIONS(1061), - [anon_sym_AMP] = ACTIONS(1061), - [anon_sym_AMP_GT_GT] = ACTIONS(1061), + [aux_sym_concatenation_repeat1] = STATE(1010), + [anon_sym_LT_LT_DASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_LT_LT] = ACTIONS(1061), - [sym_file_descriptor] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_AMP_GT] = ACTIONS(1061), - [anon_sym_PIPE_PIPE] = ACTIONS(1061), - [ts_builtin_sym_end] = ACTIONS(1059), - [anon_sym_LT_LT_LT] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1061), - [anon_sym_GT_AMP] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_LT_AMP] = ACTIONS(1061), - [anon_sym_GT_GT] = ACTIONS(1061), - [anon_sym_AMP_AMP] = ACTIONS(1061), - [sym__special_character] = ACTIONS(1166), - [anon_sym_SEMI_SEMI] = ACTIONS(1061), - [anon_sym_PIPE_AMP] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [sym_file_descriptor] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [ts_builtin_sym_end] = ACTIONS(1057), + [anon_sym_LT_LT_LT] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_GT] = ACTIONS(1059), + [sym__concat] = ACTIONS(1164), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_SEMI_SEMI] = ACTIONS(1059), + [anon_sym_PIPE_AMP] = ACTIONS(1059), }, [451] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1055), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [ts_builtin_sym_end] = ACTIONS(1055), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - }, - [452] = { + [aux_sym__literal_repeat1] = STATE(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), [anon_sym_AMP] = ACTIONS(1063), [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), + [anon_sym_LF] = ACTIONS(1061), [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1063), [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [ts_builtin_sym_end] = ACTIONS(1061), [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_PIPE] = ACTIONS(1063), [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), [anon_sym_AMP_AMP] = ACTIONS(1063), + [sym__special_character] = ACTIONS(1170), [anon_sym_SEMI_SEMI] = ACTIONS(1063), [anon_sym_PIPE_AMP] = ACTIONS(1063), }, + [452] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [sym_file_descriptor] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [ts_builtin_sym_end] = ACTIONS(1057), + [anon_sym_LT_LT_LT] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_SEMI_SEMI] = ACTIONS(1059), + [anon_sym_PIPE_AMP] = ACTIONS(1059), + }, [453] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_EQ_TILDE] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_EQ_EQ] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [454] = { - [anon_sym_PIPE_AMP] = ACTIONS(1118), - [anon_sym_AMP_GT_GT] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1118), - [anon_sym_BQUOTE] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1118), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_LT_AMP] = ACTIONS(1118), - [anon_sym_GT_GT] = ACTIONS(1118), - [anon_sym_LT_LT_DASH] = ACTIONS(1118), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_RPAREN] = ACTIONS(1118), - [sym_file_descriptor] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1118), - [anon_sym_AMP_GT] = ACTIONS(1118), - [anon_sym_LT_LT_LT] = ACTIONS(1118), - [anon_sym_GT_AMP] = ACTIONS(1118), - [anon_sym_esac] = ACTIONS(1118), - [anon_sym_AMP_AMP] = ACTIONS(1118), - [anon_sym_SEMI_SEMI] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [455] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), [anon_sym_PIPE_AMP] = ACTIONS(1122), [anon_sym_AMP_GT_GT] = ACTIONS(1122), [anon_sym_LT_LT] = ACTIONS(1122), @@ -20135,103 +20165,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT] = ACTIONS(1122), [anon_sym_LT_LT_LT] = ACTIONS(1122), [anon_sym_GT_AMP] = ACTIONS(1122), + [anon_sym_esac] = ACTIONS(1122), [anon_sym_AMP_AMP] = ACTIONS(1122), [anon_sym_SEMI_SEMI] = ACTIONS(1122), [anon_sym_AMP] = ACTIONS(1122), }, [456] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_PIPE_AMP] = ACTIONS(1126), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + }, + [457] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1126), [anon_sym_BQUOTE] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_GT_GT] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1122), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), - }, - [457] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_esac] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), }, [458] = { - [anon_sym_RPAREN] = ACTIONS(2129), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2133), - [anon_sym_SEMI_SEMI] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LF] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_esac] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_BQUOTE] = ACTIONS(1132), + [anon_sym_SEMI_SEMI] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), }, [459] = { - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1148), - [anon_sym_BQUOTE] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_LT_AMP] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_LT_LT_DASH] = ACTIONS(1148), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_RPAREN] = ACTIONS(1148), - [sym_file_descriptor] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_LT_LT_LT] = ACTIONS(1148), - [anon_sym_GT_AMP] = ACTIONS(1148), - [anon_sym_esac] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_RPAREN] = ACTIONS(2133), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_SEMI_SEMI] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2137), }, [460] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_PIPE_AMP] = ACTIONS(1152), [anon_sym_AMP_GT_GT] = ACTIONS(1152), [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), [anon_sym_PIPE_PIPE] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(1152), [anon_sym_LT] = ACTIONS(1152), [anon_sym_LT_AMP] = ACTIONS(1152), [anon_sym_GT_GT] = ACTIONS(1152), @@ -20245,59 +20276,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT] = ACTIONS(1152), [anon_sym_LT_LT_LT] = ACTIONS(1152), [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_esac] = ACTIONS(1152), [anon_sym_AMP_AMP] = ACTIONS(1152), [anon_sym_SEMI_SEMI] = ACTIONS(1152), [anon_sym_AMP] = ACTIONS(1152), }, [461] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(491), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1152), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(1152), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1152), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1152), - [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_PIPE_AMP] = ACTIONS(491), - }, - [462] = { - [aux_sym_concatenation_repeat1] = STATE(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1156), [anon_sym_AMP_GT_GT] = ACTIONS(1156), [anon_sym_LT_LT] = ACTIONS(1156), - [anon_sym_BQUOTE] = ACTIONS(1156), [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [sym__concat] = ACTIONS(2135), - [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(491), [anon_sym_LT] = ACTIONS(1156), [anon_sym_LT_AMP] = ACTIONS(1156), [anon_sym_GT_GT] = ACTIONS(1156), @@ -20315,300 +20308,327 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1156), [anon_sym_AMP] = ACTIONS(1156), }, - [463] = { - [aux_sym__literal_repeat1] = STATE(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1162), - [anon_sym_AMP_GT_GT] = ACTIONS(1162), - [anon_sym_LT_LT] = ACTIONS(1162), - [anon_sym_BQUOTE] = ACTIONS(1162), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(1162), - [anon_sym_LT_AMP] = ACTIONS(1162), - [anon_sym_GT_GT] = ACTIONS(1162), - [sym__special_character] = ACTIONS(2137), - [anon_sym_LT_LT_DASH] = ACTIONS(1162), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_RPAREN] = ACTIONS(1162), - [sym_file_descriptor] = ACTIONS(1164), - [anon_sym_GT] = ACTIONS(1162), - [anon_sym_AMP_GT] = ACTIONS(1162), - [anon_sym_LT_LT_LT] = ACTIONS(1162), - [anon_sym_GT_AMP] = ACTIONS(1162), - [anon_sym_esac] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [anon_sym_SEMI_SEMI] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - }, - [464] = { - [anon_sym_PIPE_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [462] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_LT_LT] = ACTIONS(1156), - [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_LT_AMP] = ACTIONS(1156), - [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(491), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym__special_character] = ACTIONS(331), [anon_sym_LT_LT_DASH] = ACTIONS(1156), [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(331), [anon_sym_LF] = ACTIONS(1158), [anon_sym_SEMI] = ACTIONS(1156), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), [anon_sym_RPAREN] = ACTIONS(1156), - [sym_file_descriptor] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_AMP_GT] = ACTIONS(1156), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_GT_AMP] = ACTIONS(1156), - [anon_sym_esac] = ACTIONS(1156), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [sym_ansii_c_string] = ACTIONS(331), [anon_sym_AMP_AMP] = ACTIONS(1156), [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(491), + }, + [463] = { + [aux_sym_concatenation_repeat1] = STATE(1074), + [anon_sym_PIPE_AMP] = ACTIONS(1160), + [anon_sym_AMP_GT_GT] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [sym__concat] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_LT_AMP] = ACTIONS(1160), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_LT_LT_DASH] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_RPAREN] = ACTIONS(1160), + [sym_file_descriptor] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1160), + [anon_sym_AMP_GT] = ACTIONS(1160), + [anon_sym_LT_LT_LT] = ACTIONS(1160), + [anon_sym_GT_AMP] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_SEMI_SEMI] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + }, + [464] = { + [aux_sym__literal_repeat1] = STATE(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1166), + [anon_sym_AMP_GT_GT] = ACTIONS(1166), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_BQUOTE] = ACTIONS(1166), + [anon_sym_PIPE_PIPE] = ACTIONS(1166), + [anon_sym_PIPE] = ACTIONS(1166), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_LT_AMP] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [sym__special_character] = ACTIONS(2141), + [anon_sym_LT_LT_DASH] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1166), + [anon_sym_RPAREN] = ACTIONS(1166), + [sym_file_descriptor] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1166), + [anon_sym_AMP_GT] = ACTIONS(1166), + [anon_sym_LT_LT_LT] = ACTIONS(1166), + [anon_sym_GT_AMP] = ACTIONS(1166), + [anon_sym_esac] = ACTIONS(1166), + [anon_sym_AMP_AMP] = ACTIONS(1166), + [anon_sym_SEMI_SEMI] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1166), }, [465] = { - [sym_heredoc_redirect] = STATE(465), - [aux_sym_redirected_statement_repeat1] = STATE(465), - [sym_herestring_redirect] = STATE(465), - [sym_file_redirect] = STATE(465), - [anon_sym_PIPE_AMP] = ACTIONS(1171), - [anon_sym_AMP_GT_GT] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_BQUOTE] = ACTIONS(1171), - [anon_sym_PIPE_PIPE] = ACTIONS(1171), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_LT_AMP] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_LT_LT_DASH] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_RPAREN] = ACTIONS(1171), - [sym_file_descriptor] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_AMP_GT] = ACTIONS(2139), - [anon_sym_LT_LT_LT] = ACTIONS(2148), - [anon_sym_GT_AMP] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(1171), - [anon_sym_SEMI_SEMI] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_PIPE_AMP] = ACTIONS(1160), + [anon_sym_AMP_GT_GT] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_LT_AMP] = ACTIONS(1160), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_LT_LT_DASH] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_RPAREN] = ACTIONS(1160), + [sym_file_descriptor] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1160), + [anon_sym_AMP_GT] = ACTIONS(1160), + [anon_sym_LT_LT_LT] = ACTIONS(1160), + [anon_sym_GT_AMP] = ACTIONS(1160), + [anon_sym_esac] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_SEMI_SEMI] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), }, [466] = { - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_word] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(1142), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_while] = ACTIONS(652), - [anon_sym_SEMI_SEMI] = ACTIONS(1142), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_local] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_case] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [sym_heredoc_redirect] = STATE(466), + [aux_sym_redirected_statement_repeat1] = STATE(466), + [sym_herestring_redirect] = STATE(466), + [sym_file_redirect] = STATE(466), + [anon_sym_PIPE_AMP] = ACTIONS(1175), + [anon_sym_AMP_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT] = ACTIONS(2146), + [anon_sym_BQUOTE] = ACTIONS(1175), + [anon_sym_PIPE_PIPE] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1175), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_LT_AMP] = ACTIONS(2143), + [anon_sym_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_DASH] = ACTIONS(2146), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_RPAREN] = ACTIONS(1175), + [sym_file_descriptor] = ACTIONS(2149), + [anon_sym_GT] = ACTIONS(2143), + [anon_sym_AMP_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2152), + [anon_sym_GT_AMP] = ACTIONS(2143), + [anon_sym_AMP_AMP] = ACTIONS(1175), + [anon_sym_SEMI_SEMI] = ACTIONS(1175), + [anon_sym_AMP] = ACTIONS(1175), }, [467] = { - [sym_heredoc_body] = STATE(492), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(967), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(1142), - [anon_sym_GT] = ACTIONS(652), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_word] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [anon_sym_RPAREN] = ACTIONS(1146), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_while] = ACTIONS(654), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_local] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_case] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [468] = { - [sym_command_substitution] = STATE(424), - [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(424), - [sym_process_substitution] = STATE(424), - [sym_simple_expansion] = STATE(424), - [sym_string_expansion] = STATE(424), - [aux_sym_command_repeat2] = STATE(472), - [sym_concatenation] = STATE(472), - [sym_expansion] = STATE(424), - [anon_sym_PIPE_AMP] = ACTIONS(1184), - [anon_sym_AMP_GT_GT] = ACTIONS(1184), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_BQUOTE] = ACTIONS(2010), - [anon_sym_GT_LPAREN] = ACTIONS(2012), - [sym_number] = ACTIONS(2014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [sym_word] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_LT_AMP] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_EQ_TILDE] = ACTIONS(2018), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1184), - [sym_raw_string] = ACTIONS(2014), - [anon_sym_RPAREN] = ACTIONS(1184), - [sym_file_descriptor] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_AMP_GT] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(1184), - [anon_sym_GT_AMP] = ACTIONS(1184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2012), - [sym_ansii_c_string] = ACTIONS(2014), - [anon_sym_AMP_AMP] = ACTIONS(1184), - [anon_sym_SEMI_SEMI] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), + [sym_heredoc_body] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(969), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_RPAREN] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(654), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [469] = { - [anon_sym_AMP] = ACTIONS(1188), + [sym_command_substitution] = STATE(425), + [aux_sym__literal_repeat1] = STATE(426), + [sym_string] = STATE(425), + [sym_process_substitution] = STATE(425), + [sym_simple_expansion] = STATE(425), + [sym_string_expansion] = STATE(425), + [aux_sym_command_repeat2] = STATE(473), + [sym_concatenation] = STATE(473), + [sym_expansion] = STATE(425), + [anon_sym_PIPE_AMP] = ACTIONS(1188), [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_GT_LPAREN] = ACTIONS(1188), - [sym_number] = ACTIONS(1188), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(2014), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_number] = ACTIONS(2018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), [anon_sym_PIPE_PIPE] = ACTIONS(1188), [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(1188), + [sym_word] = ACTIONS(2018), [anon_sym_LT] = ACTIONS(1188), [anon_sym_LT_AMP] = ACTIONS(1188), [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [sym__special_character] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(2022), + [sym__special_character] = ACTIONS(85), [anon_sym_LT_LT_DASH] = ACTIONS(1188), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1190), [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(2018), [anon_sym_RPAREN] = ACTIONS(1188), [sym_file_descriptor] = ACTIONS(1190), [anon_sym_GT] = ACTIONS(1188), [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), [anon_sym_LT_LT_LT] = ACTIONS(1188), [anon_sym_GT_AMP] = ACTIONS(1188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), - [anon_sym_LT_LPAREN] = ACTIONS(1188), - [sym_ansii_c_string] = ACTIONS(1188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [sym_ansii_c_string] = ACTIONS(2018), [anon_sym_AMP_AMP] = ACTIONS(1188), [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_PIPE_AMP] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), }, [470] = { - [aux_sym_concatenation_repeat1] = STATE(405), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_GT_LPAREN] = ACTIONS(1188), - [sym_number] = ACTIONS(1188), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [sym__concat] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_AMP] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [sym__special_character] = ACTIONS(1188), - [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_GT_LPAREN] = ACTIONS(1192), + [sym_number] = ACTIONS(1192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [sym_word] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_AMP] = ACTIONS(1192), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_EQ_TILDE] = ACTIONS(1192), + [sym__special_character] = ACTIONS(1192), + [anon_sym_LT_LT_DASH] = ACTIONS(1192), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(1188), - [anon_sym_RPAREN] = ACTIONS(1188), - [sym_file_descriptor] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_GT_AMP] = ACTIONS(1188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), - [anon_sym_LT_LPAREN] = ACTIONS(1188), - [sym_ansii_c_string] = ACTIONS(1188), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_PIPE_AMP] = ACTIONS(1188), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [sym_raw_string] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1192), + [sym_file_descriptor] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_AMP_GT] = ACTIONS(1192), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_GT_AMP] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1192), + [sym_ansii_c_string] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_SEMI_SEMI] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), }, [471] = { - [aux_sym__literal_repeat1] = STATE(413), + [aux_sym_concatenation_repeat1] = STATE(406), [anon_sym_AMP] = ACTIONS(1192), [anon_sym_AMP_GT_GT] = ACTIONS(1192), [anon_sym_DOLLAR] = ACTIONS(1192), @@ -20618,13 +20638,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1192), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [sym__concat] = ACTIONS(2000), [anon_sym_PIPE] = ACTIONS(1192), [sym_word] = ACTIONS(1192), [anon_sym_LT] = ACTIONS(1192), [anon_sym_LT_AMP] = ACTIONS(1192), [anon_sym_GT_GT] = ACTIONS(1192), [anon_sym_EQ_TILDE] = ACTIONS(1192), - [sym__special_character] = ACTIONS(2000), + [sym__special_character] = ACTIONS(1192), [anon_sym_LT_LT_DASH] = ACTIONS(1192), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1194), @@ -20646,282 +20667,299 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1192), }, [472] = { - [sym_command_substitution] = STATE(424), - [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(424), - [sym_process_substitution] = STATE(424), - [sym_simple_expansion] = STATE(424), - [sym_string_expansion] = STATE(424), - [aux_sym_command_repeat2] = STATE(472), - [sym_concatenation] = STATE(472), - [sym_expansion] = STATE(424), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(2154), - [anon_sym_GT_LPAREN] = ACTIONS(2157), - [sym_number] = ACTIONS(2160), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2163), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_AMP] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(2166), - [sym__special_character] = ACTIONS(2169), - [anon_sym_LT_LT_DASH] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(1188), - [sym_file_descriptor] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2172), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_GT_AMP] = ACTIONS(1188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2175), - [anon_sym_LT_LPAREN] = ACTIONS(2157), - [sym_ansii_c_string] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_PIPE_AMP] = ACTIONS(1188), + [aux_sym__literal_repeat1] = STATE(414), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_number] = ACTIONS(1196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [sym_word] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_EQ_TILDE] = ACTIONS(1196), + [sym__special_character] = ACTIONS(2004), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [sym_ansii_c_string] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), }, [473] = { - [sym_string] = STATE(404), - [anon_sym__] = ACTIONS(2178), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_GT_AMP] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2178), - [sym_ansii_c_string] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [anon_sym_POUND] = ACTIONS(2180), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2180), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2178), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(425), + [aux_sym__literal_repeat1] = STATE(426), + [sym_string] = STATE(425), + [sym_process_substitution] = STATE(425), + [sym_simple_expansion] = STATE(425), + [sym_string_expansion] = STATE(425), + [aux_sym_command_repeat2] = STATE(473), + [sym_concatenation] = STATE(473), + [sym_expansion] = STATE(425), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(2158), + [anon_sym_GT_LPAREN] = ACTIONS(2161), + [sym_number] = ACTIONS(2164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2167), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [sym_word] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_AMP] = ACTIONS(1192), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_EQ_TILDE] = ACTIONS(2170), + [sym__special_character] = ACTIONS(2173), + [anon_sym_LT_LT_DASH] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [sym_raw_string] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(1192), + [sym_file_descriptor] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_AMP_GT] = ACTIONS(1192), + [anon_sym_EQ_EQ] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_GT_AMP] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2179), + [anon_sym_LT_LPAREN] = ACTIONS(2161), + [sym_ansii_c_string] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_SEMI_SEMI] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), }, [474] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_EQ_TILDE] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [sym_string] = STATE(405), + [anon_sym__] = ACTIONS(2182), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2182), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [anon_sym_RPAREN] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_EQ_EQ] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_GT_AMP] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2182), + [sym_ansii_c_string] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(2184), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(2184), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2182), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, [475] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [anon_sym_RPAREN] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, [476] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), }, [477] = { - [anon_sym_PIPE_AMP] = ACTIONS(1310), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_BQUOTE] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_RPAREN] = ACTIONS(1310), - [sym_file_descriptor] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_AMP_GT] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_GT_AMP] = ACTIONS(1310), - [anon_sym_esac] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_SEMI_SEMI] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), }, [478] = { - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_BQUOTE] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1318), - [sym_file_descriptor] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_AMP_GT] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_GT_AMP] = ACTIONS(1318), - [anon_sym_esac] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_SEMI_SEMI] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_PIPE_AMP] = ACTIONS(1314), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1314), + [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1314), + [sym_file_descriptor] = ACTIONS(1316), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_AMP_GT] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_GT_AMP] = ACTIONS(1314), + [anon_sym_esac] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_SEMI_SEMI] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), }, [479] = { - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1354), - [sym_test_operator] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), + [anon_sym_PIPE_AMP] = ACTIONS(1322), + [anon_sym_AMP_GT_GT] = ACTIONS(1322), + [anon_sym_LT_LT] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [anon_sym_PIPE_PIPE] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_LT_AMP] = ACTIONS(1322), + [anon_sym_GT_GT] = ACTIONS(1322), + [anon_sym_LT_LT_DASH] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(1322), + [sym_file_descriptor] = ACTIONS(1324), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_AMP_GT] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_GT_AMP] = ACTIONS(1322), + [anon_sym_esac] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1322), + [anon_sym_SEMI_SEMI] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), }, [480] = { [anon_sym_BANG_EQ] = ACTIONS(1356), @@ -20945,215 +20983,211 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(1356), }, [481] = { - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1356), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_RBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1358), - [sym_test_operator] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_DASH_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [sym_test_operator] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_EQ_TILDE] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), }, [482] = { - [aux_sym_concatenation_repeat1] = STATE(1164), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1362), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_BQUOTE] = ACTIONS(1362), - [anon_sym_GT_LPAREN] = ACTIONS(1362), - [sym_number] = ACTIONS(1362), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__concat] = ACTIONS(2184), - [sym_word] = ACTIONS(1362), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), - [anon_sym_LT_LPAREN] = ACTIONS(1362), - [sym_ansii_c_string] = ACTIONS(1362), - [sym__special_character] = ACTIONS(1362), - [anon_sym_SEMI_SEMI] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [sym_test_operator] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_EQ_TILDE] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), }, [483] = { - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [aux_sym_concatenation_repeat1] = STATE(1170), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1366), + [anon_sym_LF] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1366), [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1366), [anon_sym_BQUOTE] = ACTIONS(1366), [anon_sym_GT_LPAREN] = ACTIONS(1366), [sym_number] = ACTIONS(1366), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [sym_word] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_LT_AMP] = ACTIONS(1366), - [anon_sym_GT_GT] = ACTIONS(1366), - [sym__special_character] = ACTIONS(1366), - [anon_sym_LT_LT_DASH] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [sym_raw_string] = ACTIONS(1366), - [sym_variable_name] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1366), - [sym_file_descriptor] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_AMP_GT] = ACTIONS(1366), [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_LT_LT_LT] = ACTIONS(1366), - [anon_sym_GT_AMP] = ACTIONS(1366), + [sym__concat] = ACTIONS(2188), + [sym_word] = ACTIONS(1366), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), [anon_sym_LT_LPAREN] = ACTIONS(1366), [sym_ansii_c_string] = ACTIONS(1366), - [anon_sym_AMP_AMP] = ACTIONS(1366), + [sym__special_character] = ACTIONS(1366), [anon_sym_SEMI_SEMI] = ACTIONS(1366), - [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), }, [484] = { - [aux_sym__literal_repeat1] = STATE(1199), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1372), - [anon_sym_LF] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [anon_sym_GT_LPAREN] = ACTIONS(1372), - [sym_number] = ACTIONS(1372), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_word] = ACTIONS(1372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), - [anon_sym_LT_LPAREN] = ACTIONS(1372), - [sym_ansii_c_string] = ACTIONS(1372), - [sym__special_character] = ACTIONS(2186), - [anon_sym_SEMI_SEMI] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_AMP_GT_GT] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [sym_word] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_LT_AMP] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1370), + [sym__special_character] = ACTIONS(1370), + [anon_sym_LT_LT_DASH] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [sym_raw_string] = ACTIONS(1370), + [sym_variable_name] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1370), + [sym_file_descriptor] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_AMP_GT] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_GT_AMP] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), + [anon_sym_LT_LPAREN] = ACTIONS(1370), + [sym_ansii_c_string] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(1370), + [anon_sym_PIPE_AMP] = ACTIONS(1370), }, [485] = { - [anon_sym_PERCENT] = ACTIONS(2188), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1378), - [sym_raw_string] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_EQ] = ACTIONS(2188), - [anon_sym_COLON_DASH] = ACTIONS(2188), - [sym_number] = ACTIONS(2188), - [anon_sym_COLON_QMARK] = ACTIONS(2188), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1378), - [anon_sym_BQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [anon_sym_GT_LPAREN] = ACTIONS(1378), - [sym__concat] = ACTIONS(2190), - [sym_word] = ACTIONS(2188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1378), - [anon_sym_LT_LPAREN] = ACTIONS(1378), - [sym_ansii_c_string] = ACTIONS(1378), - [anon_sym_COLON] = ACTIONS(2188), - [sym__special_character] = ACTIONS(2188), + [aux_sym__literal_repeat1] = STATE(1205), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1376), + [anon_sym_LF] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_DOLLAR] = ACTIONS(1376), + [anon_sym_BQUOTE] = ACTIONS(1376), + [anon_sym_GT_LPAREN] = ACTIONS(1376), + [sym_number] = ACTIONS(1376), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_word] = ACTIONS(1376), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1376), + [anon_sym_LT_LPAREN] = ACTIONS(1376), + [sym_ansii_c_string] = ACTIONS(1376), + [sym__special_character] = ACTIONS(2190), + [anon_sym_SEMI_SEMI] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), }, [486] = { [anon_sym_PERCENT] = ACTIONS(2192), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1388), - [sym_raw_string] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1382), + [sym_raw_string] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1382), [anon_sym_DOLLAR] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1382), [anon_sym_DASH] = ACTIONS(2192), [anon_sym_EQ] = ACTIONS(2192), [anon_sym_COLON_DASH] = ACTIONS(2192), [sym_number] = ACTIONS(2192), [anon_sym_COLON_QMARK] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1388), - [anon_sym_BQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [anon_sym_GT_LPAREN] = ACTIONS(1388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_GT_LPAREN] = ACTIONS(1382), [sym__concat] = ACTIONS(2194), [sym_word] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1388), - [anon_sym_LT_LPAREN] = ACTIONS(1388), - [sym_ansii_c_string] = ACTIONS(1388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1382), + [anon_sym_LT_LPAREN] = ACTIONS(1382), + [sym_ansii_c_string] = ACTIONS(1382), [anon_sym_COLON] = ACTIONS(2192), [sym__special_character] = ACTIONS(2192), }, [487] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_EQ_TILDE] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1396), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_PERCENT] = ACTIONS(2196), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1392), + [sym_raw_string] = ACTIONS(1392), + [anon_sym_SLASH] = ACTIONS(1392), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_EQ] = ACTIONS(2196), + [anon_sym_COLON_DASH] = ACTIONS(2196), + [sym_number] = ACTIONS(2196), + [anon_sym_COLON_QMARK] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1392), + [anon_sym_BQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [anon_sym_GT_LPAREN] = ACTIONS(1392), + [sym__concat] = ACTIONS(2198), + [sym_word] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1392), + [anon_sym_LT_LPAREN] = ACTIONS(1392), + [sym_ansii_c_string] = ACTIONS(1392), + [anon_sym_COLON] = ACTIONS(2196), + [sym__special_character] = ACTIONS(2196), }, [488] = { - [anon_sym_PIPE_AMP] = ACTIONS(1420), - [anon_sym_AMP_GT_GT] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1420), - [anon_sym_BQUOTE] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_LT_AMP] = ACTIONS(1420), - [anon_sym_GT_GT] = ACTIONS(1420), - [anon_sym_LT_LT_DASH] = ACTIONS(1420), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1420), - [sym_file_descriptor] = ACTIONS(1422), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_AMP_GT] = ACTIONS(1420), - [anon_sym_LT_LT_LT] = ACTIONS(1420), - [anon_sym_GT_AMP] = ACTIONS(1420), - [anon_sym_esac] = ACTIONS(1420), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_SEMI_SEMI] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), }, [489] = { [anon_sym_PIPE_AMP] = ACTIONS(1424), @@ -21181,180 +21215,167 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1424), }, [490] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_esac] = ACTIONS(1438), - [anon_sym_RPAREN] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [anon_sym_SEMI_SEMI] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_PIPE_AMP] = ACTIONS(1428), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [anon_sym_esac] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), }, [491] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1446), - [anon_sym_typeset] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1446), - [anon_sym_GT_LPAREN] = ACTIONS(1446), - [sym_word] = ACTIONS(1444), - [anon_sym_LT_AMP] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), - [sym_raw_string] = ACTIONS(1446), - [anon_sym_declare] = ACTIONS(1444), - [sym_variable_name] = ACTIONS(1446), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_GT_AMP] = ACTIONS(1446), - [sym_ansii_c_string] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_SEMI_SEMI] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_local] = ACTIONS(1444), - [anon_sym_unsetenv] = ACTIONS(1444), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [sym_file_descriptor] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_AMP_GT] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT_LPAREN] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_esac] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_SEMI_SEMI] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), }, [492] = { - [anon_sym_RPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_SEMI_SEMI] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_AMP_GT_GT] = ACTIONS(1450), + [anon_sym_typeset] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_GT_LPAREN] = ACTIONS(1450), + [sym_word] = ACTIONS(1448), + [anon_sym_LT_AMP] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [anon_sym_declare] = ACTIONS(1448), + [sym_variable_name] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_readonly] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_GT_AMP] = ACTIONS(1450), + [sym_ansii_c_string] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_SEMI_SEMI] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_local] = ACTIONS(1448), + [anon_sym_unsetenv] = ACTIONS(1448), + [sym_number] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [sym_file_descriptor] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_LT_LPAREN] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), }, [493] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(2200), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_SEMI_SEMI] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2204), }, [494] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [anon_sym_EQ_TILDE] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [anon_sym_RPAREN] = ACTIONS(1466), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [anon_sym_EQ_TILDE] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), }, [495] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_EQ_TILDE] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [anon_sym_EQ_TILDE] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), }, [496] = { [anon_sym_AMP] = ACTIONS(1480), @@ -21395,261 +21416,250 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [497] = { - [anon_sym_PIPE_AMP] = ACTIONS(1486), - [anon_sym_AMP_GT_GT] = ACTIONS(1486), - [anon_sym_LT_LT] = ACTIONS(1486), - [anon_sym_BQUOTE] = ACTIONS(1486), - [anon_sym_PIPE_PIPE] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_LT_AMP] = ACTIONS(1486), - [anon_sym_GT_GT] = ACTIONS(1486), - [anon_sym_LT_LT_DASH] = ACTIONS(1486), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1486), - [sym_file_descriptor] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1486), - [anon_sym_AMP_GT] = ACTIONS(1486), - [anon_sym_LT_LT_LT] = ACTIONS(1486), - [anon_sym_GT_AMP] = ACTIONS(1486), - [anon_sym_esac] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_SEMI_SEMI] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_EQ_TILDE] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, [498] = { - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_AMP_GT_GT] = ACTIONS(1446), - [anon_sym_local] = ACTIONS(1444), - [anon_sym_typeset] = ACTIONS(1444), - [anon_sym_unsetenv] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1446), - [anon_sym_GT_LPAREN] = ACTIONS(1446), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_AMP] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1444), - [sym_word] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), - [sym_raw_string] = ACTIONS(1446), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_declare] = ACTIONS(1444), - [sym_variable_name] = ACTIONS(1446), - [sym_file_descriptor] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_AMP_GT] = ACTIONS(1444), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_GT_AMP] = ACTIONS(1446), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT_LPAREN] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [sym_ansii_c_string] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym_PIPE_AMP] = ACTIONS(1490), + [anon_sym_AMP_GT_GT] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_LT_AMP] = ACTIONS(1490), + [anon_sym_GT_GT] = ACTIONS(1490), + [anon_sym_LT_LT_DASH] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [sym_file_descriptor] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_AMP_GT] = ACTIONS(1490), + [anon_sym_LT_LT_LT] = ACTIONS(1490), + [anon_sym_GT_AMP] = ACTIONS(1490), + [anon_sym_esac] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_SEMI_SEMI] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), }, [499] = { - [anon_sym_PIPE_AMP] = ACTIONS(1498), - [anon_sym_AMP_GT_GT] = ACTIONS(1498), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [anon_sym_PIPE_PIPE] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_LT_AMP] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_LT_LT_DASH] = ACTIONS(1498), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1498), - [sym_file_descriptor] = ACTIONS(1500), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_AMP_GT] = ACTIONS(1498), - [anon_sym_LT_LT_LT] = ACTIONS(1498), - [anon_sym_GT_AMP] = ACTIONS(1498), - [anon_sym_esac] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_SEMI_SEMI] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_AMP_GT_GT] = ACTIONS(1450), + [anon_sym_local] = ACTIONS(1448), + [anon_sym_typeset] = ACTIONS(1448), + [anon_sym_unsetenv] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_GT_LPAREN] = ACTIONS(1450), + [sym_number] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_LT_AMP] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1448), + [sym_word] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_declare] = ACTIONS(1448), + [sym_variable_name] = ACTIONS(1450), + [sym_file_descriptor] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_readonly] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_GT_AMP] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_LT_LPAREN] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [sym_ansii_c_string] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), }, [500] = { - [anon_sym_PIPE_AMP] = ACTIONS(1596), - [anon_sym_AMP_GT_GT] = ACTIONS(1596), - [anon_sym_LT_LT] = ACTIONS(1596), - [anon_sym_BQUOTE] = ACTIONS(1596), - [anon_sym_PIPE_PIPE] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_LT_AMP] = ACTIONS(1596), - [anon_sym_GT_GT] = ACTIONS(1596), - [anon_sym_LT_LT_DASH] = ACTIONS(1596), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [sym_file_descriptor] = ACTIONS(1598), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_AMP_GT] = ACTIONS(1596), - [anon_sym_LT_LT_LT] = ACTIONS(1596), - [anon_sym_GT_AMP] = ACTIONS(1596), - [anon_sym_esac] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1596), - [anon_sym_SEMI_SEMI] = ACTIONS(1596), - [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_PIPE_AMP] = ACTIONS(1502), + [anon_sym_AMP_GT_GT] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1502), + [anon_sym_BQUOTE] = ACTIONS(1502), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_LT_AMP] = ACTIONS(1502), + [anon_sym_GT_GT] = ACTIONS(1502), + [anon_sym_LT_LT_DASH] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [sym_file_descriptor] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1502), + [anon_sym_AMP_GT] = ACTIONS(1502), + [anon_sym_LT_LT_LT] = ACTIONS(1502), + [anon_sym_GT_AMP] = ACTIONS(1502), + [anon_sym_esac] = ACTIONS(1502), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_SEMI_SEMI] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), }, [501] = { - [anon_sym_PIPE_AMP] = ACTIONS(1608), - [anon_sym_AMP_GT_GT] = ACTIONS(1608), - [anon_sym_LT_LT] = ACTIONS(1608), - [anon_sym_BQUOTE] = ACTIONS(1608), - [anon_sym_PIPE_PIPE] = ACTIONS(1608), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_LT_AMP] = ACTIONS(1608), - [anon_sym_GT_GT] = ACTIONS(1608), - [anon_sym_LT_LT_DASH] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1608), - [sym_file_descriptor] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_AMP_GT] = ACTIONS(1608), - [anon_sym_LT_LT_LT] = ACTIONS(1608), - [anon_sym_GT_AMP] = ACTIONS(1608), - [anon_sym_esac] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1608), - [anon_sym_SEMI_SEMI] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_PIPE_AMP] = ACTIONS(1600), + [anon_sym_AMP_GT_GT] = ACTIONS(1600), + [anon_sym_LT_LT] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_PIPE_PIPE] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_LT_AMP] = ACTIONS(1600), + [anon_sym_GT_GT] = ACTIONS(1600), + [anon_sym_LT_LT_DASH] = ACTIONS(1600), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [sym_file_descriptor] = ACTIONS(1602), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_AMP_GT] = ACTIONS(1600), + [anon_sym_LT_LT_LT] = ACTIONS(1600), + [anon_sym_GT_AMP] = ACTIONS(1600), + [anon_sym_esac] = ACTIONS(1600), + [anon_sym_AMP_AMP] = ACTIONS(1600), + [anon_sym_SEMI_SEMI] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), }, [502] = { - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_AMP_GT_GT] = ACTIONS(1614), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_LT_LT] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [anon_sym_GT_LPAREN] = ACTIONS(1614), - [sym_number] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), - [anon_sym_PIPE_PIPE] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [sym_word] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_LT_AMP] = ACTIONS(1614), - [anon_sym_GT_GT] = ACTIONS(1614), - [sym__special_character] = ACTIONS(1614), - [anon_sym_LT_LT_DASH] = ACTIONS(1614), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [sym_raw_string] = ACTIONS(1614), - [sym_variable_name] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1614), - [sym_file_descriptor] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_AMP_GT] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_LT_LT_LT] = ACTIONS(1614), - [anon_sym_GT_AMP] = ACTIONS(1614), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), - [anon_sym_LT_LPAREN] = ACTIONS(1614), - [sym_ansii_c_string] = ACTIONS(1614), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_SEMI_SEMI] = ACTIONS(1614), - [anon_sym_PIPE_AMP] = ACTIONS(1614), + [anon_sym_PIPE_AMP] = ACTIONS(1612), + [anon_sym_AMP_GT_GT] = ACTIONS(1612), + [anon_sym_LT_LT] = ACTIONS(1612), + [anon_sym_BQUOTE] = ACTIONS(1612), + [anon_sym_PIPE_PIPE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_AMP] = ACTIONS(1612), + [anon_sym_GT_GT] = ACTIONS(1612), + [anon_sym_LT_LT_DASH] = ACTIONS(1612), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [sym_file_descriptor] = ACTIONS(1614), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_AMP_GT] = ACTIONS(1612), + [anon_sym_LT_LT_LT] = ACTIONS(1612), + [anon_sym_GT_AMP] = ACTIONS(1612), + [anon_sym_esac] = ACTIONS(1612), + [anon_sym_AMP_AMP] = ACTIONS(1612), + [anon_sym_SEMI_SEMI] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), }, [503] = { - [sym_command_substitution] = STATE(482), - [aux_sym__literal_repeat1] = STATE(484), - [sym_string] = STATE(482), - [sym_process_substitution] = STATE(482), - [aux_sym_for_statement_repeat1] = STATE(503), - [sym_simple_expansion] = STATE(482), - [sym_string_expansion] = STATE(482), - [sym_concatenation] = STATE(503), - [sym_expansion] = STATE(482), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2202), - [anon_sym_LF] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_BQUOTE] = ACTIONS(2210), - [anon_sym_GT_LPAREN] = ACTIONS(2213), - [sym_number] = ACTIONS(2202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2219), - [sym_word] = ACTIONS(2202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2222), - [anon_sym_LT_LPAREN] = ACTIONS(2213), - [sym_ansii_c_string] = ACTIONS(2202), - [sym__special_character] = ACTIONS(2225), - [anon_sym_SEMI_SEMI] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_AMP_GT_GT] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1618), + [anon_sym_GT_LPAREN] = ACTIONS(1618), + [sym_number] = ACTIONS(1618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), + [anon_sym_PIPE_PIPE] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [sym_word] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_AMP] = ACTIONS(1618), + [anon_sym_GT_GT] = ACTIONS(1618), + [sym__special_character] = ACTIONS(1618), + [anon_sym_LT_LT_DASH] = ACTIONS(1618), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1618), + [sym_raw_string] = ACTIONS(1618), + [sym_variable_name] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1618), + [sym_file_descriptor] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_AMP_GT] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_LT_LT_LT] = ACTIONS(1618), + [anon_sym_GT_AMP] = ACTIONS(1618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), + [anon_sym_LT_LPAREN] = ACTIONS(1618), + [sym_ansii_c_string] = ACTIONS(1618), + [anon_sym_AMP_AMP] = ACTIONS(1618), + [anon_sym_SEMI_SEMI] = ACTIONS(1618), + [anon_sym_PIPE_AMP] = ACTIONS(1618), }, [504] = { - [anon_sym_PERCENT] = ACTIONS(2228), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1647), - [sym_raw_string] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_EQ] = ACTIONS(2228), - [anon_sym_COLON_DASH] = ACTIONS(2228), - [sym_number] = ACTIONS(2228), - [anon_sym_COLON_QMARK] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym_GT_LPAREN] = ACTIONS(1647), - [sym_word] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), - [anon_sym_LT_LPAREN] = ACTIONS(1647), - [sym_ansii_c_string] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(2228), - [sym__special_character] = ACTIONS(2228), + [sym_command_substitution] = STATE(483), + [aux_sym__literal_repeat1] = STATE(485), + [sym_string] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_for_statement_repeat1] = STATE(504), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_concatenation] = STATE(504), + [sym_expansion] = STATE(483), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2206), + [anon_sym_LF] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_BQUOTE] = ACTIONS(2214), + [anon_sym_GT_LPAREN] = ACTIONS(2217), + [sym_number] = ACTIONS(2206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2223), + [sym_word] = ACTIONS(2206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), + [anon_sym_LT_LPAREN] = ACTIONS(2217), + [sym_ansii_c_string] = ACTIONS(2206), + [sym__special_character] = ACTIONS(2229), + [anon_sym_SEMI_SEMI] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), }, [505] = { - [anon_sym_PERCENT] = ACTIONS(2228), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1647), - [sym_raw_string] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_EQ] = ACTIONS(2228), - [anon_sym_COLON_DASH] = ACTIONS(2228), - [sym_number] = ACTIONS(2228), - [anon_sym_COLON_QMARK] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym_GT_LPAREN] = ACTIONS(1647), - [sym__concat] = ACTIONS(2230), - [sym_word] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), - [anon_sym_LT_LPAREN] = ACTIONS(1647), - [sym_ansii_c_string] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(2228), - [sym__special_character] = ACTIONS(2228), - }, - [506] = { [anon_sym_PERCENT] = ACTIONS(2232), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(1651), @@ -21673,7 +21683,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(2232), [sym__special_character] = ACTIONS(2232), }, - [507] = { + [506] = { [anon_sym_PERCENT] = ACTIONS(2232), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(1651), @@ -21698,160 +21708,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(2232), [sym__special_character] = ACTIONS(2232), }, + [507] = { + [anon_sym_PERCENT] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1655), + [sym_raw_string] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_COLON_DASH] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [anon_sym_COLON_QMARK] = ACTIONS(2236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1655), + [anon_sym_BQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [anon_sym_GT_LPAREN] = ACTIONS(1655), + [sym_word] = ACTIONS(2236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1655), + [anon_sym_LT_LPAREN] = ACTIONS(1655), + [sym_ansii_c_string] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(2236), + [sym__special_character] = ACTIONS(2236), + }, [508] = { - [anon_sym_PIPE_AMP] = ACTIONS(1661), - [anon_sym_AMP_GT_GT] = ACTIONS(1661), - [anon_sym_LT_LT] = ACTIONS(1661), - [anon_sym_BQUOTE] = ACTIONS(1661), - [anon_sym_PIPE_PIPE] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_AMP] = ACTIONS(1661), - [anon_sym_GT_GT] = ACTIONS(1661), - [anon_sym_LT_LT_DASH] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(2236), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [sym_file_descriptor] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_AMP_GT] = ACTIONS(1661), - [anon_sym_LT_LT_LT] = ACTIONS(1661), - [anon_sym_GT_AMP] = ACTIONS(1661), - [anon_sym_esac] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1661), - [anon_sym_SEMI_SEMI] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(1655), + [sym_raw_string] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_COLON_DASH] = ACTIONS(2236), + [sym_number] = ACTIONS(2236), + [anon_sym_COLON_QMARK] = ACTIONS(2236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1655), + [anon_sym_BQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [anon_sym_GT_LPAREN] = ACTIONS(1655), + [sym__concat] = ACTIONS(2238), + [sym_word] = ACTIONS(2236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1655), + [anon_sym_LT_LPAREN] = ACTIONS(1655), + [sym_ansii_c_string] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(2236), + [sym__special_character] = ACTIONS(2236), }, [509] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_esac] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_BQUOTE] = ACTIONS(1667), - [anon_sym_SEMI_SEMI] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_PIPE_AMP] = ACTIONS(1665), + [anon_sym_AMP_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_BQUOTE] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_LT_AMP] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_RPAREN] = ACTIONS(1665), + [sym_file_descriptor] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_AMP_GT] = ACTIONS(1665), + [anon_sym_LT_LT_LT] = ACTIONS(1665), + [anon_sym_GT_AMP] = ACTIONS(1665), + [anon_sym_esac] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_SEMI_SEMI] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), }, [510] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1446), - [anon_sym_typeset] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1446), - [anon_sym_GT_LPAREN] = ACTIONS(1446), - [sym_word] = ACTIONS(1444), - [anon_sym_LT_AMP] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), - [sym_raw_string] = ACTIONS(1446), - [anon_sym_declare] = ACTIONS(1444), - [sym_variable_name] = ACTIONS(1446), - [anon_sym_RPAREN] = ACTIONS(1686), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_GT_AMP] = ACTIONS(1446), - [sym_ansii_c_string] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_SEMI_SEMI] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_local] = ACTIONS(1444), - [anon_sym_unsetenv] = ACTIONS(1444), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [sym_file_descriptor] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_AMP_GT] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT_LPAREN] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), }, [511] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [anon_sym_EQ_TILDE] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [anon_sym_RPAREN] = ACTIONS(1688), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_EQ_EQ] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [anon_sym_AMP_GT_GT] = ACTIONS(1450), + [anon_sym_typeset] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_GT_LPAREN] = ACTIONS(1450), + [sym_word] = ACTIONS(1448), + [anon_sym_LT_AMP] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [anon_sym_declare] = ACTIONS(1448), + [sym_variable_name] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1690), + [anon_sym_readonly] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_GT_AMP] = ACTIONS(1450), + [sym_ansii_c_string] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_SEMI_SEMI] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_local] = ACTIONS(1448), + [anon_sym_unsetenv] = ACTIONS(1448), + [sym_number] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [sym_file_descriptor] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_LT_LPAREN] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), }, [512] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [anon_sym_EQ_TILDE] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [anon_sym_EQ_TILDE] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [anon_sym_RPAREN] = ACTIONS(1692), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_EQ_EQ] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, [513] = { [anon_sym_AMP] = ACTIONS(1698), @@ -21892,253 +21913,253 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [514] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [anon_sym_EQ_TILDE] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [anon_sym_EQ_TILDE] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [anon_sym_RPAREN] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_EQ_EQ] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, [515] = { - [anon_sym_PIPE_AMP] = ACTIONS(1714), - [anon_sym_AMP_GT_GT] = ACTIONS(1714), - [anon_sym_LT_LT] = ACTIONS(1714), - [anon_sym_BQUOTE] = ACTIONS(1714), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_LT_AMP] = ACTIONS(1714), - [anon_sym_GT_GT] = ACTIONS(1714), - [anon_sym_LT_LT_DASH] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [sym_file_descriptor] = ACTIONS(1716), - [anon_sym_GT] = ACTIONS(1714), - [anon_sym_AMP_GT] = ACTIONS(1714), - [anon_sym_LT_LT_LT] = ACTIONS(1714), - [anon_sym_GT_AMP] = ACTIONS(1714), - [anon_sym_esac] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1714), - [anon_sym_SEMI_SEMI] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_EQ_TILDE] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, [516] = { - [anon_sym_PIPE_AMP] = ACTIONS(1720), - [anon_sym_AMP_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_BQUOTE] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_LT_AMP] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [sym_file_descriptor] = ACTIONS(1722), - [anon_sym_GT] = ACTIONS(1720), - [anon_sym_AMP_GT] = ACTIONS(1720), - [anon_sym_LT_LT_LT] = ACTIONS(1720), - [anon_sym_GT_AMP] = ACTIONS(1720), - [anon_sym_esac] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_SEMI_SEMI] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), + [anon_sym_PIPE_AMP] = ACTIONS(1718), + [anon_sym_AMP_GT_GT] = ACTIONS(1718), + [anon_sym_LT_LT] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1718), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_AMP] = ACTIONS(1718), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_LT_LT_DASH] = ACTIONS(1718), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1718), + [sym_file_descriptor] = ACTIONS(1720), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_AMP_GT] = ACTIONS(1718), + [anon_sym_LT_LT_LT] = ACTIONS(1718), + [anon_sym_GT_AMP] = ACTIONS(1718), + [anon_sym_esac] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_SEMI_SEMI] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), }, [517] = { - [anon_sym_PIPE_AMP] = ACTIONS(1797), - [anon_sym_AMP_GT_GT] = ACTIONS(1797), - [anon_sym_LT_LT] = ACTIONS(1797), - [anon_sym_BQUOTE] = ACTIONS(1797), - [anon_sym_PIPE_PIPE] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_LT_AMP] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1797), - [anon_sym_LT_LT_DASH] = ACTIONS(1797), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_RPAREN] = ACTIONS(1797), - [sym_file_descriptor] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_AMP_GT] = ACTIONS(1797), - [anon_sym_LT_LT_LT] = ACTIONS(1797), - [anon_sym_GT_AMP] = ACTIONS(1797), - [anon_sym_esac] = ACTIONS(1797), - [anon_sym_AMP_AMP] = ACTIONS(1797), - [anon_sym_SEMI_SEMI] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_PIPE_AMP] = ACTIONS(1724), + [anon_sym_AMP_GT_GT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_AMP] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_LT_LT_DASH] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [sym_file_descriptor] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_AMP_GT] = ACTIONS(1724), + [anon_sym_LT_LT_LT] = ACTIONS(1724), + [anon_sym_GT_AMP] = ACTIONS(1724), + [anon_sym_esac] = ACTIONS(1724), + [anon_sym_AMP_AMP] = ACTIONS(1724), + [anon_sym_SEMI_SEMI] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), }, [518] = { - [anon_sym_PERCENT] = ACTIONS(2236), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1803), - [sym_raw_string] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(2236), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(2236), - [anon_sym_EQ] = ACTIONS(2236), - [anon_sym_COLON_DASH] = ACTIONS(2236), - [sym_number] = ACTIONS(2236), - [anon_sym_COLON_QMARK] = ACTIONS(2236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1803), - [anon_sym_BQUOTE] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [anon_sym_GT_LPAREN] = ACTIONS(1803), - [sym_word] = ACTIONS(2236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1803), - [anon_sym_LT_LPAREN] = ACTIONS(1803), - [sym_ansii_c_string] = ACTIONS(1803), - [anon_sym_COLON] = ACTIONS(2236), - [sym__special_character] = ACTIONS(2236), + [anon_sym_PIPE_AMP] = ACTIONS(1801), + [anon_sym_AMP_GT_GT] = ACTIONS(1801), + [anon_sym_LT_LT] = ACTIONS(1801), + [anon_sym_BQUOTE] = ACTIONS(1801), + [anon_sym_PIPE_PIPE] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_LT_AMP] = ACTIONS(1801), + [anon_sym_GT_GT] = ACTIONS(1801), + [anon_sym_LT_LT_DASH] = ACTIONS(1801), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [sym_file_descriptor] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1801), + [anon_sym_AMP_GT] = ACTIONS(1801), + [anon_sym_LT_LT_LT] = ACTIONS(1801), + [anon_sym_GT_AMP] = ACTIONS(1801), + [anon_sym_esac] = ACTIONS(1801), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_SEMI_SEMI] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1801), }, [519] = { - [anon_sym_PERCENT] = ACTIONS(2238), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1805), - [sym_raw_string] = ACTIONS(1805), - [anon_sym_SLASH] = ACTIONS(1805), - [anon_sym_DOLLAR] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_EQ] = ACTIONS(2238), - [anon_sym_COLON_DASH] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [anon_sym_COLON_QMARK] = ACTIONS(2238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1805), - [anon_sym_BQUOTE] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [anon_sym_GT_LPAREN] = ACTIONS(1805), - [sym_word] = ACTIONS(2238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1805), - [anon_sym_LT_LPAREN] = ACTIONS(1805), - [sym_ansii_c_string] = ACTIONS(1805), - [anon_sym_COLON] = ACTIONS(2238), - [sym__special_character] = ACTIONS(2238), + [anon_sym_PERCENT] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1807), + [anon_sym_SLASH] = ACTIONS(1807), + [anon_sym_DOLLAR] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_EQ] = ACTIONS(2240), + [anon_sym_COLON_DASH] = ACTIONS(2240), + [sym_number] = ACTIONS(2240), + [anon_sym_COLON_QMARK] = ACTIONS(2240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1807), + [anon_sym_BQUOTE] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(1807), + [anon_sym_GT_LPAREN] = ACTIONS(1807), + [sym_word] = ACTIONS(2240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1807), + [anon_sym_LT_LPAREN] = ACTIONS(1807), + [sym_ansii_c_string] = ACTIONS(1807), + [anon_sym_COLON] = ACTIONS(2240), + [sym__special_character] = ACTIONS(2240), }, [520] = { - [anon_sym_PIPE_AMP] = ACTIONS(1807), - [anon_sym_AMP_GT_GT] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_BQUOTE] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_LT_AMP] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_LT_LT_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_RPAREN] = ACTIONS(1807), - [sym_file_descriptor] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_AMP_GT] = ACTIONS(1807), - [anon_sym_LT_LT_LT] = ACTIONS(1807), - [anon_sym_GT_AMP] = ACTIONS(1807), - [anon_sym_esac] = ACTIONS(1807), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_SEMI_SEMI] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_PERCENT] = ACTIONS(2242), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1809), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_EQ] = ACTIONS(2242), + [anon_sym_COLON_DASH] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [anon_sym_COLON_QMARK] = ACTIONS(2242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1809), + [anon_sym_BQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_GT_LPAREN] = ACTIONS(1809), + [sym_word] = ACTIONS(2242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1809), + [anon_sym_LT_LPAREN] = ACTIONS(1809), + [sym_ansii_c_string] = ACTIONS(1809), + [anon_sym_COLON] = ACTIONS(2242), + [sym__special_character] = ACTIONS(2242), }, [521] = { - [anon_sym_PIPE_AMP] = ACTIONS(1815), - [anon_sym_AMP_GT_GT] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1815), - [anon_sym_BQUOTE] = ACTIONS(1815), - [anon_sym_PIPE_PIPE] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_LT_AMP] = ACTIONS(1815), - [anon_sym_GT_GT] = ACTIONS(1815), - [anon_sym_LT_LT_DASH] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_RPAREN] = ACTIONS(1815), - [sym_file_descriptor] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1815), - [anon_sym_AMP_GT] = ACTIONS(1815), - [anon_sym_LT_LT_LT] = ACTIONS(1815), - [anon_sym_GT_AMP] = ACTIONS(1815), - [anon_sym_esac] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1815), - [anon_sym_SEMI_SEMI] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_PIPE_AMP] = ACTIONS(1811), + [anon_sym_AMP_GT_GT] = ACTIONS(1811), + [anon_sym_LT_LT] = ACTIONS(1811), + [anon_sym_BQUOTE] = ACTIONS(1811), + [anon_sym_PIPE_PIPE] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_LT_AMP] = ACTIONS(1811), + [anon_sym_GT_GT] = ACTIONS(1811), + [anon_sym_LT_LT_DASH] = ACTIONS(1811), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_RPAREN] = ACTIONS(1811), + [sym_file_descriptor] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1811), + [anon_sym_AMP_GT] = ACTIONS(1811), + [anon_sym_LT_LT_LT] = ACTIONS(1811), + [anon_sym_GT_AMP] = ACTIONS(1811), + [anon_sym_esac] = ACTIONS(1811), + [anon_sym_AMP_AMP] = ACTIONS(1811), + [anon_sym_SEMI_SEMI] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), }, [522] = { - [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_PIPE_AMP] = ACTIONS(1819), [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), [anon_sym_LT_LT] = ACTIONS(1819), [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), [anon_sym_LT] = ACTIONS(1819), [anon_sym_LT_AMP] = ACTIONS(1819), [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_EQ_TILDE] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), [anon_sym_LT_LT_DASH] = ACTIONS(1819), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1821), [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), [anon_sym_RPAREN] = ACTIONS(1819), [sym_file_descriptor] = ACTIONS(1821), [anon_sym_GT] = ACTIONS(1819), [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_EQ_EQ] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), [anon_sym_LT_LT_LT] = ACTIONS(1819), [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), + [anon_sym_esac] = ACTIONS(1819), [anon_sym_AMP_AMP] = ACTIONS(1819), [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1819), }, [523] = { [anon_sym_AMP] = ACTIONS(1823), @@ -22179,29 +22200,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [524] = { - [anon_sym_PIPE_AMP] = ACTIONS(1833), - [anon_sym_AMP_GT_GT] = ACTIONS(1833), - [anon_sym_LT_LT] = ACTIONS(1833), - [anon_sym_BQUOTE] = ACTIONS(1833), - [anon_sym_PIPE_PIPE] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_LT_AMP] = ACTIONS(1833), - [anon_sym_GT_GT] = ACTIONS(1833), - [anon_sym_LT_LT_DASH] = ACTIONS(1833), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_RPAREN] = ACTIONS(1833), - [sym_file_descriptor] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1833), - [anon_sym_AMP_GT] = ACTIONS(1833), - [anon_sym_LT_LT_LT] = ACTIONS(1833), - [anon_sym_GT_AMP] = ACTIONS(1833), - [anon_sym_esac] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_SEMI_SEMI] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [anon_sym_EQ_TILDE] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [anon_sym_RPAREN] = ACTIONS(1827), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), }, [525] = { [anon_sym_PIPE_AMP] = ACTIONS(1837), @@ -22229,104 +22263,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1837), }, [526] = { - [anon_sym_PIPE_AMP] = ACTIONS(1874), - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_BQUOTE] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [anon_sym_esac] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1841), + [anon_sym_AMP_GT_GT] = ACTIONS(1841), + [anon_sym_LT_LT] = ACTIONS(1841), + [anon_sym_BQUOTE] = ACTIONS(1841), + [anon_sym_PIPE_PIPE] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_LT_AMP] = ACTIONS(1841), + [anon_sym_GT_GT] = ACTIONS(1841), + [anon_sym_LT_LT_DASH] = ACTIONS(1841), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_RPAREN] = ACTIONS(1841), + [sym_file_descriptor] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_AMP_GT] = ACTIONS(1841), + [anon_sym_LT_LT_LT] = ACTIONS(1841), + [anon_sym_GT_AMP] = ACTIONS(1841), + [anon_sym_esac] = ACTIONS(1841), + [anon_sym_AMP_AMP] = ACTIONS(1841), + [anon_sym_SEMI_SEMI] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1841), }, [527] = { - [anon_sym_PIPE_AMP] = ACTIONS(1880), - [anon_sym_AMP_GT_GT] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1880), - [anon_sym_BQUOTE] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_LT_AMP] = ACTIONS(1880), - [anon_sym_GT_GT] = ACTIONS(1880), - [anon_sym_LT_LT_DASH] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1880), - [sym_file_descriptor] = ACTIONS(1882), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_AMP_GT] = ACTIONS(1880), - [anon_sym_LT_LT_LT] = ACTIONS(1880), - [anon_sym_GT_AMP] = ACTIONS(1880), - [anon_sym_esac] = ACTIONS(1880), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_SEMI_SEMI] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), }, [528] = { - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [sym_file_descriptor] = ACTIONS(1890), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_BQUOTE] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), }, [529] = { - [anon_sym_PIPE_AMP] = ACTIONS(1920), - [anon_sym_AMP_GT_GT] = ACTIONS(1920), - [anon_sym_LT_LT] = ACTIONS(1920), - [anon_sym_BQUOTE] = ACTIONS(1920), - [anon_sym_PIPE_PIPE] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_LT] = ACTIONS(1920), - [anon_sym_LT_AMP] = ACTIONS(1920), - [anon_sym_GT_GT] = ACTIONS(1920), - [anon_sym_LT_LT_DASH] = ACTIONS(1920), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [sym_file_descriptor] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1920), - [anon_sym_AMP_GT] = ACTIONS(1920), - [anon_sym_LT_LT_LT] = ACTIONS(1920), - [anon_sym_GT_AMP] = ACTIONS(1920), - [anon_sym_esac] = ACTIONS(1920), - [anon_sym_AMP_AMP] = ACTIONS(1920), - [anon_sym_SEMI_SEMI] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [sym_file_descriptor] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [530] = { [anon_sym_PIPE_AMP] = ACTIONS(1924), @@ -22354,148 +22388,173 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1924), }, [531] = { - [anon_sym_PIPE_AMP] = ACTIONS(1946), - [anon_sym_AMP_GT_GT] = ACTIONS(1946), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_BQUOTE] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_LT_AMP] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1946), - [anon_sym_LT_LT_DASH] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(1946), - [sym_file_descriptor] = ACTIONS(1948), - [anon_sym_GT] = ACTIONS(1946), - [anon_sym_AMP_GT] = ACTIONS(1946), - [anon_sym_LT_LT_LT] = ACTIONS(1946), - [anon_sym_GT_AMP] = ACTIONS(1946), - [anon_sym_esac] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_SEMI_SEMI] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_PIPE_AMP] = ACTIONS(1928), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1928), + [anon_sym_BQUOTE] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_LT_LT_DASH] = ACTIONS(1928), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_RPAREN] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1928), + [anon_sym_LT_LT_LT] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [anon_sym_esac] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_SEMI_SEMI] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), }, [532] = { - [anon_sym_PIPE_AMP] = ACTIONS(1954), - [anon_sym_AMP_GT_GT] = ACTIONS(1954), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_BQUOTE] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_LT_AMP] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1954), - [anon_sym_LT_LT_DASH] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [sym_file_descriptor] = ACTIONS(1956), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_AMP_GT] = ACTIONS(1954), - [anon_sym_LT_LT_LT] = ACTIONS(1954), - [anon_sym_GT_AMP] = ACTIONS(1954), - [anon_sym_esac] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_PIPE_AMP] = ACTIONS(1950), + [anon_sym_AMP_GT_GT] = ACTIONS(1950), + [anon_sym_LT_LT] = ACTIONS(1950), + [anon_sym_BQUOTE] = ACTIONS(1950), + [anon_sym_PIPE_PIPE] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_LT] = ACTIONS(1950), + [anon_sym_LT_AMP] = ACTIONS(1950), + [anon_sym_GT_GT] = ACTIONS(1950), + [anon_sym_LT_LT_DASH] = ACTIONS(1950), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1950), + [sym_file_descriptor] = ACTIONS(1952), + [anon_sym_GT] = ACTIONS(1950), + [anon_sym_AMP_GT] = ACTIONS(1950), + [anon_sym_LT_LT_LT] = ACTIONS(1950), + [anon_sym_GT_AMP] = ACTIONS(1950), + [anon_sym_esac] = ACTIONS(1950), + [anon_sym_AMP_AMP] = ACTIONS(1950), + [anon_sym_SEMI_SEMI] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), }, [533] = { - [sym_command_substitution] = STATE(396), - [aux_sym__literal_repeat1] = STATE(397), - [sym_string] = STATE(396), - [aux_sym_declaration_command_repeat1] = STATE(551), - [sym_process_substitution] = STATE(396), - [sym_simple_expansion] = STATE(396), - [sym_subscript] = STATE(2464), - [sym_string_expansion] = STATE(396), - [sym_variable_assignment] = STATE(551), - [sym_concatenation] = STATE(551), - [sym_expansion] = STATE(396), + [anon_sym_PIPE_AMP] = ACTIONS(1958), + [anon_sym_AMP_GT_GT] = ACTIONS(1958), + [anon_sym_LT_LT] = ACTIONS(1958), + [anon_sym_BQUOTE] = ACTIONS(1958), + [anon_sym_PIPE_PIPE] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_LT] = ACTIONS(1958), + [anon_sym_LT_AMP] = ACTIONS(1958), + [anon_sym_GT_GT] = ACTIONS(1958), + [anon_sym_LT_LT_DASH] = ACTIONS(1958), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1960), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(1958), + [sym_file_descriptor] = ACTIONS(1960), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_AMP_GT] = ACTIONS(1958), + [anon_sym_LT_LT_LT] = ACTIONS(1958), + [anon_sym_GT_AMP] = ACTIONS(1958), + [anon_sym_esac] = ACTIONS(1958), + [anon_sym_AMP_AMP] = ACTIONS(1958), + [anon_sym_SEMI_SEMI] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + }, + [534] = { + [sym_command_substitution] = STATE(397), + [aux_sym__literal_repeat1] = STATE(398), + [sym_string] = STATE(397), + [aux_sym_declaration_command_repeat1] = STATE(552), + [sym_process_substitution] = STATE(397), + [sym_simple_expansion] = STATE(397), + [sym_subscript] = STATE(2476), + [sym_string_expansion] = STATE(397), + [sym_variable_assignment] = STATE(552), + [sym_concatenation] = STATE(552), + [sym_expansion] = STATE(397), [anon_sym_PIPE_AMP] = ACTIONS(129), [anon_sym_AMP_GT_GT] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1962), [anon_sym_LT_LT] = ACTIONS(129), [anon_sym_BQUOTE] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(1962), - [sym_number] = ACTIONS(1964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1966), + [anon_sym_GT_LPAREN] = ACTIONS(1966), + [sym_number] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), [anon_sym_PIPE_PIPE] = ACTIONS(129), [anon_sym_PIPE] = ACTIONS(129), - [sym_word] = ACTIONS(1964), + [sym_word] = ACTIONS(1968), [anon_sym_LT] = ACTIONS(129), [anon_sym_LT_AMP] = ACTIONS(129), [anon_sym_GT_GT] = ACTIONS(129), - [sym__special_character] = ACTIONS(1968), + [sym__special_character] = ACTIONS(1972), [anon_sym_LT_LT_DASH] = ACTIONS(129), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(129), - [sym_raw_string] = ACTIONS(1964), - [sym_variable_name] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1974), [sym_file_descriptor] = ACTIONS(143), [anon_sym_GT] = ACTIONS(129), [anon_sym_AMP_GT] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1976), [anon_sym_LT_LT_LT] = ACTIONS(129), [anon_sym_GT_AMP] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [aux_sym__simple_variable_name_token1] = ACTIONS(2240), - [anon_sym_LT_LPAREN] = ACTIONS(1962), - [sym_ansii_c_string] = ACTIONS(1964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), + [aux_sym__simple_variable_name_token1] = ACTIONS(2244), + [anon_sym_LT_LPAREN] = ACTIONS(1966), + [sym_ansii_c_string] = ACTIONS(1968), [anon_sym_AMP_AMP] = ACTIONS(129), [anon_sym_SEMI_SEMI] = ACTIONS(129), [anon_sym_AMP] = ACTIONS(129), }, - [534] = { - [sym_command_substitution] = STATE(399), - [aux_sym__literal_repeat1] = STATE(400), - [sym_string] = STATE(399), - [aux_sym_unset_command_repeat1] = STATE(554), - [sym_process_substitution] = STATE(399), - [sym_simple_expansion] = STATE(399), - [sym_string_expansion] = STATE(399), - [sym_concatenation] = STATE(554), - [sym_expansion] = STATE(399), + [535] = { + [sym_command_substitution] = STATE(400), + [aux_sym__literal_repeat1] = STATE(401), + [sym_string] = STATE(400), + [aux_sym_unset_command_repeat1] = STATE(555), + [sym_process_substitution] = STATE(400), + [sym_simple_expansion] = STATE(400), + [sym_string_expansion] = STATE(400), + [sym_concatenation] = STATE(555), + [sym_expansion] = STATE(400), [anon_sym_PIPE_AMP] = ACTIONS(153), [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1982), [anon_sym_LT_LT] = ACTIONS(153), [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_number] = ACTIONS(1984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1986), + [anon_sym_GT_LPAREN] = ACTIONS(1986), + [sym_number] = ACTIONS(1988), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1990), [anon_sym_PIPE_PIPE] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(153), - [sym_word] = ACTIONS(1984), + [sym_word] = ACTIONS(1988), [anon_sym_LT] = ACTIONS(153), [anon_sym_LT_AMP] = ACTIONS(153), [anon_sym_GT_GT] = ACTIONS(153), - [sym__special_character] = ACTIONS(1988), + [sym__special_character] = ACTIONS(1992), [anon_sym_LT_LT_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(167), [anon_sym_SEMI] = ACTIONS(153), - [sym_raw_string] = ACTIONS(1984), + [sym_raw_string] = ACTIONS(1988), [sym_file_descriptor] = ACTIONS(167), [anon_sym_GT] = ACTIONS(153), [anon_sym_AMP_GT] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1994), [anon_sym_LT_LT_LT] = ACTIONS(153), [anon_sym_GT_AMP] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), - [aux_sym__simple_variable_name_token1] = ACTIONS(2242), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [sym_ansii_c_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1996), + [aux_sym__simple_variable_name_token1] = ACTIONS(2246), + [anon_sym_LT_LPAREN] = ACTIONS(1986), + [sym_ansii_c_string] = ACTIONS(1988), [anon_sym_AMP_AMP] = ACTIONS(153), [anon_sym_SEMI_SEMI] = ACTIONS(153), [anon_sym_AMP] = ACTIONS(153), }, - [535] = { - [aux_sym_concatenation_repeat1] = STATE(1196), + [536] = { + [aux_sym_concatenation_repeat1] = STATE(1202), [anon_sym_AMP] = ACTIONS(189), [anon_sym_AMP_GT_GT] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(189), @@ -22505,7 +22564,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(189), [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2244), + [sym__concat] = ACTIONS(2248), [anon_sym_PIPE] = ACTIONS(189), [sym_word] = ACTIONS(189), [anon_sym_LT] = ACTIONS(189), @@ -22533,10 +22592,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(189), [anon_sym_PIPE_AMP] = ACTIONS(189), }, - [536] = { - [aux_sym_concatenation_repeat1] = STATE(1196), + [537] = { + [aux_sym_concatenation_repeat1] = STATE(1202), [anon_sym_AMP] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(2002), [anon_sym_AMP_GT_GT] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(189), [anon_sym_LT_LT] = ACTIONS(189), @@ -22545,7 +22604,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(189), [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2244), + [sym__concat] = ACTIONS(2248), [anon_sym_PIPE] = ACTIONS(189), [sym_word] = ACTIONS(189), [anon_sym_LT] = ACTIONS(189), @@ -22573,8 +22632,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(189), [anon_sym_PIPE_AMP] = ACTIONS(189), }, - [537] = { - [aux_sym_concatenation_repeat1] = STATE(558), + [538] = { + [aux_sym_concatenation_repeat1] = STATE(559), [anon_sym_AMP_GT_GT] = ACTIONS(213), [anon_sym_DOLLAR] = ACTIONS(211), [anon_sym_BQUOTE] = ACTIONS(213), @@ -22600,52 +22659,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(213), [sym_ansii_c_string] = ACTIONS(213), }, - [538] = { - [aux_sym__literal_repeat1] = STATE(539), - [sym_string] = STATE(535), - [sym_process_substitution] = STATE(535), - [sym_test_command] = STATE(410), - [aux_sym_command_repeat1] = STATE(544), - [sym_subscript] = STATE(2455), - [sym_variable_assignment] = STATE(544), - [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [sym_command] = STATE(410), - [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(535), - [sym_string_expansion] = STATE(535), - [sym_subshell] = STATE(410), - [sym_file_redirect] = STATE(544), + [539] = { + [aux_sym__literal_repeat1] = STATE(540), + [sym_string] = STATE(536), + [sym_process_substitution] = STATE(536), + [sym_test_command] = STATE(411), + [aux_sym_command_repeat1] = STATE(545), + [sym_subscript] = STATE(2467), + [sym_variable_assignment] = STATE(545), + [sym_concatenation] = STATE(543), + [sym_expansion] = STATE(536), + [sym_command_substitution] = STATE(536), + [sym_command] = STATE(411), + [sym_command_name] = STATE(638), + [sym_simple_expansion] = STATE(536), + [sym_string_expansion] = STATE(536), + [sym_subshell] = STATE(411), + [sym_file_redirect] = STATE(545), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1748), + [sym_raw_string] = ACTIONS(1752), [sym_comment] = ACTIONS(41), [sym_variable_name] = ACTIONS(257), [sym_file_descriptor] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(29), - [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_BQUOTE] = ACTIONS(1740), [anon_sym_AMP_GT] = ACTIONS(29), - [sym_number] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_number] = ACTIONS(1744), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1758), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_word] = ACTIONS(1740), + [sym_word] = ACTIONS(1744), [anon_sym_LT] = ACTIONS(29), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(1748), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), + [sym_ansii_c_string] = ACTIONS(1752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_LT_LPAREN] = ACTIONS(1742), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [sym__special_character] = ACTIONS(1746), + [sym__special_character] = ACTIONS(1750), }, - [539] = { - [aux_sym__literal_repeat1] = STATE(1231), + [540] = { + [aux_sym__literal_repeat1] = STATE(1237), [anon_sym_AMP] = ACTIONS(307), [anon_sym_AMP_GT_GT] = ACTIONS(307), [anon_sym_DOLLAR] = ACTIONS(307), @@ -22661,7 +22720,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(307), [anon_sym_GT_GT] = ACTIONS(307), [anon_sym_EQ_TILDE] = ACTIONS(307), - [sym__special_character] = ACTIONS(2246), + [sym__special_character] = ACTIONS(2250), [anon_sym_LT_LT_DASH] = ACTIONS(307), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(311), @@ -22682,48 +22741,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(307), [anon_sym_PIPE_AMP] = ACTIONS(307), }, - [540] = { - [sym_heredoc_redirect] = STATE(2622), - [aux_sym_redirected_statement_repeat1] = STATE(2622), - [sym_herestring_redirect] = STATE(2622), - [sym_file_redirect] = STATE(2622), - [anon_sym_PIPE_AMP] = ACTIONS(2248), + [541] = { + [sym_heredoc_redirect] = STATE(2636), + [aux_sym_redirected_statement_repeat1] = STATE(2636), + [sym_herestring_redirect] = STATE(2636), + [sym_file_redirect] = STATE(2636), + [anon_sym_PIPE_AMP] = ACTIONS(2252), [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(2250), + [anon_sym_AMP_GT_GT] = ACTIONS(2254), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2254), - [sym_file_descriptor] = ACTIONS(2256), + [anon_sym_LF] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2258), + [sym_file_descriptor] = ACTIONS(2260), [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(2250), - [anon_sym_AMP_GT] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2258), - [anon_sym_LT_LT_LT] = ACTIONS(2260), - [anon_sym_GT_AMP] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2248), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_esac] = ACTIONS(2006), - [anon_sym_LT_AMP] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(2258), - [anon_sym_SEMI_SEMI] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_AMP_GT] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2262), + [anon_sym_LT_LT_LT] = ACTIONS(2264), + [anon_sym_GT_AMP] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_esac] = ACTIONS(2010), + [anon_sym_LT_AMP] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2262), + [anon_sym_SEMI_SEMI] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2258), }, - [541] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_AMP] = ACTIONS(2262), + [542] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_AMP] = ACTIONS(2266), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2010), [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(2264), - [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2270), [sym_word] = ACTIONS(331), [anon_sym_LT] = ACTIONS(331), [anon_sym_LT_AMP] = ACTIONS(331), @@ -22732,8 +22791,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_LF] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2266), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), @@ -22744,11 +22803,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(2264), - [anon_sym_SEMI_SEMI] = ACTIONS(2262), - [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_SEMI_SEMI] = ACTIONS(2266), + [anon_sym_PIPE_AMP] = ACTIONS(2270), }, - [542] = { + [543] = { [anon_sym_AMP] = ACTIONS(189), [anon_sym_AMP_GT_GT] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(189), @@ -22785,37 +22844,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(189), [anon_sym_PIPE_AMP] = ACTIONS(189), }, - [543] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(569), - [sym_function_definition] = STATE(569), - [sym_negated_command] = STATE(569), - [sym_test_command] = STATE(569), - [sym_variable_assignment] = STATE(570), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), + [544] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(570), + [sym_function_definition] = STATE(570), + [sym_negated_command] = STATE(570), + [sym_test_command] = STATE(570), + [sym_variable_assignment] = STATE(571), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(569), - [sym_for_statement] = STATE(569), - [sym_compound_statement] = STATE(569), - [sym_subshell] = STATE(569), - [sym_declaration_command] = STATE(569), - [sym_unset_command] = STATE(569), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym_c_style_for_statement] = STATE(569), - [sym_while_statement] = STATE(569), - [sym_case_statement] = STATE(569), - [sym_pipeline] = STATE(569), - [sym_list] = STATE(569), - [sym_command] = STATE(569), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_redirected_statement] = STATE(570), + [sym_for_statement] = STATE(570), + [sym_compound_statement] = STATE(570), + [sym_subshell] = STATE(570), + [sym_declaration_command] = STATE(570), + [sym_unset_command] = STATE(570), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym_c_style_for_statement] = STATE(570), + [sym_while_statement] = STATE(570), + [sym_case_statement] = STATE(570), + [sym_pipeline] = STATE(570), + [sym_list] = STATE(570), + [sym_command] = STATE(570), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -22857,96 +22916,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [544] = { - [sym_command_substitution] = STATE(535), - [aux_sym__literal_repeat1] = STATE(539), - [sym_expansion] = STATE(535), - [sym_string] = STATE(535), - [sym_command_name] = STATE(653), - [sym_process_substitution] = STATE(535), - [sym_simple_expansion] = STATE(535), - [sym_string_expansion] = STATE(535), - [sym_subscript] = STATE(2455), + [545] = { + [sym_command_substitution] = STATE(536), + [aux_sym__literal_repeat1] = STATE(540), + [sym_expansion] = STATE(536), + [sym_string] = STATE(536), + [sym_command_name] = STATE(654), + [sym_process_substitution] = STATE(536), + [sym_simple_expansion] = STATE(536), + [sym_string_expansion] = STATE(536), + [sym_subscript] = STATE(2467), [sym_variable_assignment] = STATE(103), [aux_sym_command_repeat1] = STATE(103), - [sym_concatenation] = STATE(542), + [sym_concatenation] = STATE(543), [sym_file_redirect] = STATE(103), [anon_sym_AMP_GT_GT] = ACTIONS(7), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1748), + [sym_raw_string] = ACTIONS(1752), [sym_variable_name] = ACTIONS(257), [sym_file_descriptor] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1738), [anon_sym_GT] = ACTIONS(29), - [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_BQUOTE] = ACTIONS(1740), [anon_sym_AMP_GT] = ACTIONS(29), - [sym_number] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_number] = ACTIONS(1744), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1758), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_word] = ACTIONS(1740), + [sym_word] = ACTIONS(1744), [anon_sym_LT] = ACTIONS(29), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(1748), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1738), - [sym__special_character] = ACTIONS(2270), + [sym_ansii_c_string] = ACTIONS(1752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1742), + [sym__special_character] = ACTIONS(2274), }, - [545] = { - [sym_command_substitution] = STATE(424), - [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(424), - [sym_process_substitution] = STATE(424), - [sym_simple_expansion] = STATE(424), - [sym_string_expansion] = STATE(424), - [aux_sym_command_repeat2] = STATE(575), - [sym_concatenation] = STATE(575), - [sym_expansion] = STATE(424), + [546] = { + [sym_command_substitution] = STATE(425), + [aux_sym__literal_repeat1] = STATE(426), + [sym_string] = STATE(425), + [sym_process_substitution] = STATE(425), + [sym_simple_expansion] = STATE(425), + [sym_string_expansion] = STATE(425), + [aux_sym_command_repeat2] = STATE(576), + [sym_concatenation] = STATE(576), + [sym_expansion] = STATE(425), [anon_sym_PIPE_AMP] = ACTIONS(341), [anon_sym_AMP_GT_GT] = ACTIONS(341), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_LT_LT] = ACTIONS(341), [anon_sym_BQUOTE] = ACTIONS(341), - [anon_sym_GT_LPAREN] = ACTIONS(2012), - [sym_number] = ACTIONS(2014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_number] = ACTIONS(2018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), [anon_sym_PIPE_PIPE] = ACTIONS(341), [anon_sym_PIPE] = ACTIONS(341), - [sym_word] = ACTIONS(2014), + [sym_word] = ACTIONS(2018), [anon_sym_LT] = ACTIONS(341), [anon_sym_LT_AMP] = ACTIONS(341), [anon_sym_GT_GT] = ACTIONS(341), - [anon_sym_EQ_TILDE] = ACTIONS(2018), + [anon_sym_EQ_TILDE] = ACTIONS(2022), [sym__special_character] = ACTIONS(85), [anon_sym_LT_LT_DASH] = ACTIONS(341), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(353), [anon_sym_SEMI] = ACTIONS(341), - [sym_raw_string] = ACTIONS(2014), + [sym_raw_string] = ACTIONS(2018), [sym_file_descriptor] = ACTIONS(353), [anon_sym_GT] = ACTIONS(341), [anon_sym_AMP_GT] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), [anon_sym_LT_LT_LT] = ACTIONS(341), [anon_sym_GT_AMP] = ACTIONS(341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2012), - [sym_ansii_c_string] = ACTIONS(2014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [sym_ansii_c_string] = ACTIONS(2018), [anon_sym_AMP_AMP] = ACTIONS(341), [anon_sym_SEMI_SEMI] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(341), }, - [546] = { - [aux_sym_concatenation_repeat1] = STATE(1068), + [547] = { + [aux_sym_concatenation_repeat1] = STATE(1074), [anon_sym_PIPE_AMP] = ACTIONS(363), [anon_sym_AMP_GT_GT] = ACTIONS(363), [anon_sym_LT_LT] = ACTIONS(363), [anon_sym_BQUOTE] = ACTIONS(363), [anon_sym_PIPE_PIPE] = ACTIONS(363), - [sym__concat] = ACTIONS(2135), + [sym__concat] = ACTIONS(2139), [anon_sym_PIPE] = ACTIONS(363), [anon_sym_LT] = ACTIONS(363), [anon_sym_LT_AMP] = ACTIONS(363), @@ -22965,8 +23024,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(363), [anon_sym_AMP] = ACTIONS(363), }, - [547] = { - [aux_sym__literal_repeat1] = STATE(1103), + [548] = { + [aux_sym__literal_repeat1] = STATE(1109), [anon_sym_PIPE_AMP] = ACTIONS(369), [anon_sym_AMP_GT_GT] = ACTIONS(369), [anon_sym_LT_LT] = ACTIONS(369), @@ -22976,7 +23035,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(369), [anon_sym_LT_AMP] = ACTIONS(369), [anon_sym_GT_GT] = ACTIONS(369), - [sym__special_character] = ACTIONS(2137), + [sym__special_character] = ACTIONS(2141), [anon_sym_LT_LT_DASH] = ACTIONS(369), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(367), @@ -22992,7 +23051,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(369), [anon_sym_AMP] = ACTIONS(369), }, - [548] = { + [549] = { [anon_sym_PIPE_AMP] = ACTIONS(363), [anon_sym_AMP_GT_GT] = ACTIONS(363), [anon_sym_LT_LT] = ACTIONS(363), @@ -23017,8 +23076,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(363), [anon_sym_AMP] = ACTIONS(363), }, - [549] = { - [aux_sym_concatenation_repeat1] = STATE(1228), + [550] = { + [aux_sym_concatenation_repeat1] = STATE(1234), [anon_sym_AMP] = ACTIONS(373), [anon_sym_AMP_GT_GT] = ACTIONS(373), [anon_sym_DOLLAR] = ACTIONS(373), @@ -23028,7 +23087,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(373), [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), [anon_sym_PIPE_PIPE] = ACTIONS(373), - [sym__concat] = ACTIONS(2272), + [sym__concat] = ACTIONS(2276), [anon_sym_PIPE] = ACTIONS(373), [sym_word] = ACTIONS(373), [anon_sym_LT] = ACTIONS(373), @@ -23056,8 +23115,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(373), [anon_sym_PIPE_AMP] = ACTIONS(373), }, - [550] = { - [aux_sym__literal_repeat1] = STATE(1263), + [551] = { + [aux_sym__literal_repeat1] = STATE(1269), [anon_sym_AMP] = ACTIONS(379), [anon_sym_AMP_GT_GT] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(379), @@ -23072,7 +23131,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(379), [anon_sym_LT_AMP] = ACTIONS(379), [anon_sym_GT_GT] = ACTIONS(379), - [sym__special_character] = ACTIONS(2274), + [sym__special_character] = ACTIONS(2278), [anon_sym_LT_LT_DASH] = ACTIONS(379), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(383), @@ -23094,55 +23153,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(379), [anon_sym_PIPE_AMP] = ACTIONS(379), }, - [551] = { - [sym_command_substitution] = STATE(396), - [aux_sym__literal_repeat1] = STATE(397), - [sym_string] = STATE(396), - [aux_sym_declaration_command_repeat1] = STATE(428), - [sym_process_substitution] = STATE(396), - [sym_simple_expansion] = STATE(396), - [sym_subscript] = STATE(2464), - [sym_string_expansion] = STATE(396), - [sym_variable_assignment] = STATE(428), - [sym_concatenation] = STATE(428), - [sym_expansion] = STATE(396), + [552] = { + [sym_command_substitution] = STATE(397), + [aux_sym__literal_repeat1] = STATE(398), + [sym_string] = STATE(397), + [aux_sym_declaration_command_repeat1] = STATE(429), + [sym_process_substitution] = STATE(397), + [sym_simple_expansion] = STATE(397), + [sym_subscript] = STATE(2476), + [sym_string_expansion] = STATE(397), + [sym_variable_assignment] = STATE(429), + [sym_concatenation] = STATE(429), + [sym_expansion] = STATE(397), [anon_sym_PIPE_AMP] = ACTIONS(385), [anon_sym_AMP_GT_GT] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1962), [anon_sym_LT_LT] = ACTIONS(385), [anon_sym_BQUOTE] = ACTIONS(385), - [anon_sym_GT_LPAREN] = ACTIONS(1962), - [sym_number] = ACTIONS(1964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1966), + [anon_sym_GT_LPAREN] = ACTIONS(1966), + [sym_number] = ACTIONS(1968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), [anon_sym_PIPE_PIPE] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(385), - [sym_word] = ACTIONS(1964), + [sym_word] = ACTIONS(1968), [anon_sym_LT] = ACTIONS(385), [anon_sym_LT_AMP] = ACTIONS(385), [anon_sym_GT_GT] = ACTIONS(385), - [sym__special_character] = ACTIONS(1968), + [sym__special_character] = ACTIONS(1972), [anon_sym_LT_LT_DASH] = ACTIONS(385), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(387), [anon_sym_SEMI] = ACTIONS(385), - [sym_raw_string] = ACTIONS(1964), - [sym_variable_name] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1974), [sym_file_descriptor] = ACTIONS(387), [anon_sym_GT] = ACTIONS(385), [anon_sym_AMP_GT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1976), [anon_sym_LT_LT_LT] = ACTIONS(385), [anon_sym_GT_AMP] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [aux_sym__simple_variable_name_token1] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(1962), - [sym_ansii_c_string] = ACTIONS(1964), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), + [aux_sym__simple_variable_name_token1] = ACTIONS(2032), + [anon_sym_LT_LPAREN] = ACTIONS(1966), + [sym_ansii_c_string] = ACTIONS(1968), [anon_sym_AMP_AMP] = ACTIONS(385), [anon_sym_SEMI_SEMI] = ACTIONS(385), [anon_sym_AMP] = ACTIONS(385), }, - [552] = { - [aux_sym_concatenation_repeat1] = STATE(1260), + [553] = { + [aux_sym_concatenation_repeat1] = STATE(1266), [anon_sym_AMP] = ACTIONS(391), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(391), @@ -23152,7 +23211,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(391), [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), [anon_sym_PIPE_PIPE] = ACTIONS(391), - [sym__concat] = ACTIONS(2276), + [sym__concat] = ACTIONS(2280), [anon_sym_PIPE] = ACTIONS(391), [sym_word] = ACTIONS(391), [anon_sym_LT] = ACTIONS(391), @@ -23179,8 +23238,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(391), [anon_sym_PIPE_AMP] = ACTIONS(391), }, - [553] = { - [aux_sym__literal_repeat1] = STATE(1295), + [554] = { + [aux_sym__literal_repeat1] = STATE(1301), [anon_sym_AMP] = ACTIONS(397), [anon_sym_AMP_GT_GT] = ACTIONS(397), [anon_sym_DOLLAR] = ACTIONS(397), @@ -23195,7 +23254,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(397), [anon_sym_LT_AMP] = ACTIONS(397), [anon_sym_GT_GT] = ACTIONS(397), - [sym__special_character] = ACTIONS(2278), + [sym__special_character] = ACTIONS(2282), [anon_sym_LT_LT_DASH] = ACTIONS(397), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(401), @@ -23216,51 +23275,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(397), [anon_sym_PIPE_AMP] = ACTIONS(397), }, - [554] = { - [sym_command_substitution] = STATE(399), - [aux_sym__literal_repeat1] = STATE(400), - [sym_string] = STATE(399), - [aux_sym_unset_command_repeat1] = STATE(429), - [sym_process_substitution] = STATE(399), - [sym_simple_expansion] = STATE(399), - [sym_string_expansion] = STATE(399), - [sym_concatenation] = STATE(429), - [sym_expansion] = STATE(399), + [555] = { + [sym_command_substitution] = STATE(400), + [aux_sym__literal_repeat1] = STATE(401), + [sym_string] = STATE(400), + [aux_sym_unset_command_repeat1] = STATE(430), + [sym_process_substitution] = STATE(400), + [sym_simple_expansion] = STATE(400), + [sym_string_expansion] = STATE(400), + [sym_concatenation] = STATE(430), + [sym_expansion] = STATE(400), [anon_sym_PIPE_AMP] = ACTIONS(403), [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1982), [anon_sym_LT_LT] = ACTIONS(403), [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_GT_LPAREN] = ACTIONS(1982), - [sym_number] = ACTIONS(1984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1986), + [anon_sym_GT_LPAREN] = ACTIONS(1986), + [sym_number] = ACTIONS(1988), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1990), [anon_sym_PIPE_PIPE] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), - [sym_word] = ACTIONS(1984), + [sym_word] = ACTIONS(1988), [anon_sym_LT] = ACTIONS(403), [anon_sym_LT_AMP] = ACTIONS(403), [anon_sym_GT_GT] = ACTIONS(403), - [sym__special_character] = ACTIONS(1988), + [sym__special_character] = ACTIONS(1992), [anon_sym_LT_LT_DASH] = ACTIONS(403), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(405), [anon_sym_SEMI] = ACTIONS(403), - [sym_raw_string] = ACTIONS(1984), + [sym_raw_string] = ACTIONS(1988), [sym_file_descriptor] = ACTIONS(405), [anon_sym_GT] = ACTIONS(403), [anon_sym_AMP_GT] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1994), [anon_sym_LT_LT_LT] = ACTIONS(403), [anon_sym_GT_AMP] = ACTIONS(403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), - [aux_sym__simple_variable_name_token1] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(1982), - [sym_ansii_c_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1996), + [aux_sym__simple_variable_name_token1] = ACTIONS(2038), + [anon_sym_LT_LPAREN] = ACTIONS(1986), + [sym_ansii_c_string] = ACTIONS(1988), [anon_sym_AMP_AMP] = ACTIONS(403), [anon_sym_SEMI_SEMI] = ACTIONS(403), [anon_sym_AMP] = ACTIONS(403), }, - [555] = { + [556] = { [anon_sym_AMP_GT_GT] = ACTIONS(411), [anon_sym_DOLLAR] = ACTIONS(409), [anon_sym_BQUOTE] = ACTIONS(411), @@ -23286,7 +23345,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(411), [sym_ansii_c_string] = ACTIONS(411), }, - [556] = { + [557] = { [anon_sym_AMP_GT_GT] = ACTIONS(415), [anon_sym_DOLLAR] = ACTIONS(413), [anon_sym_BQUOTE] = ACTIONS(415), @@ -23312,7 +23371,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(415), [sym_ansii_c_string] = ACTIONS(415), }, - [557] = { + [558] = { [anon_sym_AMP_GT_GT] = ACTIONS(419), [anon_sym_DOLLAR] = ACTIONS(417), [anon_sym_BQUOTE] = ACTIONS(419), @@ -23338,15 +23397,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(419), [sym_ansii_c_string] = ACTIONS(419), }, - [558] = { - [aux_sym_concatenation_repeat1] = STATE(582), + [559] = { + [aux_sym_concatenation_repeat1] = STATE(583), [anon_sym_AMP_GT_GT] = ACTIONS(433), [anon_sym_DOLLAR] = ACTIONS(429), [anon_sym_BQUOTE] = ACTIONS(433), [anon_sym_GT_LPAREN] = ACTIONS(433), [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(433), - [sym__concat] = ACTIONS(2280), + [sym__concat] = ACTIONS(2284), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), [anon_sym_LT_AMP] = ACTIONS(433), @@ -23365,8 +23424,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(433), [sym_ansii_c_string] = ACTIONS(433), }, - [559] = { - [aux_sym_concatenation_repeat1] = STATE(972), + [560] = { + [aux_sym_concatenation_repeat1] = STATE(978), [anon_sym_BANG_EQ] = ACTIONS(531), [anon_sym_PLUS_EQ] = ACTIONS(531), [anon_sym_AMP] = ACTIONS(531), @@ -23381,7 +23440,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(531), [anon_sym_PIPE_PIPE] = ACTIONS(531), [anon_sym_GT_EQ] = ACTIONS(531), - [sym__concat] = ACTIONS(2282), + [sym__concat] = ACTIONS(2286), [anon_sym_PLUS] = ACTIONS(531), [anon_sym_LT] = ACTIONS(531), [anon_sym_EQ_TILDE] = ACTIONS(531), @@ -23391,43 +23450,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(531), [anon_sym_DASH_EQ] = ACTIONS(531), }, - [560] = { - [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(585), - [sym_postfix_expression] = STATE(585), - [sym_string] = STATE(559), - [aux_sym__literal_repeat1] = STATE(561), - [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(585), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_concatenation] = STATE(585), - [sym_expansion] = STATE(559), - [anon_sym_LPAREN] = ACTIONS(2284), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2286), + [561] = { + [sym_command_substitution] = STATE(560), + [sym_unary_expression] = STATE(586), + [sym_postfix_expression] = STATE(586), + [sym_string] = STATE(560), + [aux_sym__literal_repeat1] = STATE(562), + [sym_process_substitution] = STATE(560), + [sym_parenthesized_expression] = STATE(586), + [sym_simple_expansion] = STATE(560), + [sym_string_expansion] = STATE(560), + [sym__expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_concatenation] = STATE(586), + [sym_expansion] = STATE(560), + [anon_sym_LPAREN] = ACTIONS(2288), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2290), [anon_sym_BANG] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(615), - [sym_test_operator] = ACTIONS(2288), - [anon_sym_BQUOTE] = ACTIONS(2290), - [anon_sym_GT_LPAREN] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(617), + [sym_test_operator] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2294), + [anon_sym_GT_LPAREN] = ACTIONS(2296), [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2300), [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2298), - [anon_sym_LT_LPAREN] = ACTIONS(2292), - [sym_ansii_c_string] = ACTIONS(2286), - [sym__special_character] = ACTIONS(2300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2302), + [anon_sym_LT_LPAREN] = ACTIONS(2296), + [sym_ansii_c_string] = ACTIONS(2290), + [sym__special_character] = ACTIONS(2304), }, - [561] = { - [aux_sym__literal_repeat1] = STATE(1007), + [562] = { + [aux_sym__literal_repeat1] = STATE(1013), [anon_sym_BANG_EQ] = ACTIONS(537), [anon_sym_PLUS_EQ] = ACTIONS(537), [anon_sym_AMP] = ACTIONS(537), - [sym__special_character] = ACTIONS(2302), + [sym__special_character] = ACTIONS(2306), [anon_sym_LF] = ACTIONS(537), [anon_sym_SEMI] = ACTIONS(537), [anon_sym_PLUS_PLUS] = ACTIONS(537), @@ -23448,7 +23507,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(537), [anon_sym_DASH_EQ] = ACTIONS(537), }, - [562] = { + [563] = { [anon_sym_AMP_GT_GT] = ACTIONS(597), [anon_sym_DOLLAR] = ACTIONS(595), [anon_sym_BQUOTE] = ACTIONS(597), @@ -23474,7 +23533,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(597), [sym_ansii_c_string] = ACTIONS(597), }, - [563] = { + [564] = { [anon_sym_AMP_GT_GT] = ACTIONS(213), [anon_sym_DOLLAR] = ACTIONS(211), [anon_sym_BQUOTE] = ACTIONS(213), @@ -23499,104 +23558,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(213), [sym_ansii_c_string] = ACTIONS(213), }, - [564] = { - [aux_sym__literal_repeat1] = STATE(564), - [anon_sym_AMP_GT_GT] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_GT_LPAREN] = ACTIONS(650), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(650), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [sym__special_character] = ACTIONS(2304), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(650), - [sym_variable_name] = ACTIONS(650), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_GT_AMP] = ACTIONS(650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), - [anon_sym_LT_LPAREN] = ACTIONS(650), - [sym_ansii_c_string] = ACTIONS(650), - }, [565] = { - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [aux_sym__literal_repeat1] = STATE(565), + [anon_sym_AMP_GT_GT] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(652), + [anon_sym_GT_LPAREN] = ACTIONS(652), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(652), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(652), + [anon_sym_GT_GT] = ACTIONS(652), + [sym__special_character] = ACTIONS(2308), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(652), + [sym_variable_name] = ACTIONS(652), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(652), + [anon_sym_GT_AMP] = ACTIONS(652), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(652), + [anon_sym_LT_LPAREN] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(652), }, [566] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(455), - [sym_function_definition] = STATE(455), - [sym_negated_command] = STATE(455), - [sym_test_command] = STATE(455), - [sym_variable_assignment] = STATE(597), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(455), - [sym_for_statement] = STATE(455), - [sym_compound_statement] = STATE(455), - [sym_subshell] = STATE(455), - [sym_declaration_command] = STATE(455), - [sym_unset_command] = STATE(455), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym_c_style_for_statement] = STATE(455), - [sym_while_statement] = STATE(455), - [sym_case_statement] = STATE(455), - [sym_pipeline] = STATE(455), - [sym_list] = STATE(455), - [sym_command] = STATE(455), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(658), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + }, + [567] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(456), + [sym_function_definition] = STATE(456), + [sym_negated_command] = STATE(456), + [sym_test_command] = STATE(456), + [sym_variable_assignment] = STATE(598), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(456), + [sym_for_statement] = STATE(456), + [sym_compound_statement] = STATE(456), + [sym_subshell] = STATE(456), + [sym_declaration_command] = STATE(456), + [sym_unset_command] = STATE(456), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym_c_style_for_statement] = STATE(456), + [sym_while_statement] = STATE(456), + [sym_case_statement] = STATE(456), + [sym_pipeline] = STATE(456), + [sym_list] = STATE(456), + [sym_command] = STATE(456), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -23638,81 +23697,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [567] = { - [sym_heredoc_body] = STATE(1466), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(967), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), - }, [568] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(599), - [sym_function_definition] = STATE(599), - [sym_negated_command] = STATE(599), - [sym_test_command] = STATE(599), - [sym_variable_assignment] = STATE(600), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(599), - [sym_for_statement] = STATE(599), - [sym_compound_statement] = STATE(599), - [sym_subshell] = STATE(599), - [sym_declaration_command] = STATE(599), - [sym_unset_command] = STATE(599), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym_c_style_for_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_case_statement] = STATE(599), - [sym_pipeline] = STATE(599), - [sym_list] = STATE(599), - [sym_command] = STATE(599), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_heredoc_body] = STATE(1473), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(658), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(969), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + }, + [569] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(600), + [sym_function_definition] = STATE(600), + [sym_negated_command] = STATE(600), + [sym_test_command] = STATE(600), + [sym_variable_assignment] = STATE(601), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(600), + [sym_for_statement] = STATE(600), + [sym_compound_statement] = STATE(600), + [sym_subshell] = STATE(600), + [sym_declaration_command] = STATE(600), + [sym_unset_command] = STATE(600), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym_c_style_for_statement] = STATE(600), + [sym_while_statement] = STATE(600), + [sym_case_statement] = STATE(600), + [sym_pipeline] = STATE(600), + [sym_list] = STATE(600), + [sym_command] = STATE(600), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -23754,48 +23813,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [569] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [570] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_PIPE_AMP] = ACTIONS(2270), [anon_sym_AMP_GT_GT] = ACTIONS(493), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_LF] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2313), [sym_file_descriptor] = ACTIONS(499), [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(2049), + [anon_sym_BQUOTE] = ACTIONS(2053), [anon_sym_GT] = ACTIONS(493), [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(2264), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), [anon_sym_LT_LT_LT] = ACTIONS(503), [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2270), [anon_sym_LT] = ACTIONS(493), [anon_sym_LT_AMP] = ACTIONS(493), [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(2264), - [anon_sym_SEMI_SEMI] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_SEMI_SEMI] = ACTIONS(2313), + [anon_sym_AMP] = ACTIONS(2313), }, - [570] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_PIPE_AMP] = ACTIONS(2266), + [571] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_PIPE_AMP] = ACTIONS(2270), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(2049), + [anon_sym_BQUOTE] = ACTIONS(2053), [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(2264), - [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2270), [sym_word] = ACTIONS(331), [anon_sym_LT] = ACTIONS(331), [anon_sym_LT_AMP] = ACTIONS(331), @@ -23804,8 +23863,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_LF] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2313), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), @@ -23816,1150 +23875,1073 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(2264), - [anon_sym_SEMI_SEMI] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2309), - }, - [571] = { - [sym_command_substitution] = STATE(424), - [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(424), - [sym_process_substitution] = STATE(424), - [sym_simple_expansion] = STATE(424), - [sym_string_expansion] = STATE(424), - [aux_sym_command_repeat2] = STATE(603), - [sym_concatenation] = STATE(603), - [sym_expansion] = STATE(424), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(771), - [anon_sym_GT_LPAREN] = ACTIONS(2012), - [sym_number] = ACTIONS(2014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [sym_word] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_EQ_TILDE] = ACTIONS(2018), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), - [sym_raw_string] = ACTIONS(2014), - [sym_file_descriptor] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2012), - [sym_ansii_c_string] = ACTIONS(2014), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_SEMI_SEMI] = ACTIONS(2313), + [anon_sym_AMP] = ACTIONS(2313), }, [572] = { - [sym_command_substitution] = STATE(605), - [aux_sym__literal_repeat1] = STATE(606), - [sym_string] = STATE(605), - [sym_process_substitution] = STATE(605), - [sym_simple_expansion] = STATE(605), - [sym_string_expansion] = STATE(605), + [sym_command_substitution] = STATE(425), + [aux_sym__literal_repeat1] = STATE(426), + [sym_string] = STATE(425), + [sym_process_substitution] = STATE(425), + [sym_simple_expansion] = STATE(425), + [sym_string_expansion] = STATE(425), + [aux_sym_command_repeat2] = STATE(604), [sym_concatenation] = STATE(604), - [sym_expansion] = STATE(605), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(1754), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2311), - [sym_word] = ACTIONS(2313), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1734), - [sym_ansii_c_string] = ACTIONS(2311), - [anon_sym_LT_LPAREN] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1736), - [sym_regex] = ACTIONS(2315), - [sym__special_character] = ACTIONS(2270), - [sym_number] = ACTIONS(2313), + [sym_expansion] = STATE(425), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_number] = ACTIONS(2018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [sym_word] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(2022), + [sym__special_character] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(773), + [sym_raw_string] = ACTIONS(2018), + [sym_file_descriptor] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [sym_ansii_c_string] = ACTIONS(2018), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(773), }, [573] = { - [aux_sym_concatenation_repeat1] = STATE(1196), - [anon_sym_AMP] = ACTIONS(797), - [anon_sym_AMP_GT_GT] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(797), - [anon_sym_LT_LT] = ACTIONS(797), - [anon_sym_BQUOTE] = ACTIONS(797), - [anon_sym_GT_LPAREN] = ACTIONS(797), - [sym_number] = ACTIONS(797), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(797), - [anon_sym_PIPE_PIPE] = ACTIONS(797), - [sym__concat] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(797), - [sym_word] = ACTIONS(797), - [anon_sym_LT] = ACTIONS(797), - [anon_sym_LT_AMP] = ACTIONS(797), - [anon_sym_GT_GT] = ACTIONS(797), - [anon_sym_EQ_TILDE] = ACTIONS(797), - [sym__special_character] = ACTIONS(797), - [anon_sym_LT_LT_DASH] = ACTIONS(797), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(799), - [anon_sym_SEMI] = ACTIONS(797), - [sym_raw_string] = ACTIONS(797), - [sym_file_descriptor] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(797), - [anon_sym_AMP_GT] = ACTIONS(797), - [anon_sym_EQ_EQ] = ACTIONS(797), - [anon_sym_DQUOTE] = ACTIONS(797), - [anon_sym_LT_LT_LT] = ACTIONS(797), - [anon_sym_GT_AMP] = ACTIONS(797), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(797), - [anon_sym_esac] = ACTIONS(797), - [anon_sym_LT_LPAREN] = ACTIONS(797), - [sym_ansii_c_string] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(797), - [anon_sym_SEMI_SEMI] = ACTIONS(797), - [anon_sym_PIPE_AMP] = ACTIONS(797), + [sym_command_substitution] = STATE(606), + [aux_sym__literal_repeat1] = STATE(607), + [sym_string] = STATE(606), + [sym_process_substitution] = STATE(606), + [sym_simple_expansion] = STATE(606), + [sym_string_expansion] = STATE(606), + [sym_concatenation] = STATE(605), + [sym_expansion] = STATE(606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2315), + [sym_word] = ACTIONS(2317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1738), + [sym_ansii_c_string] = ACTIONS(2315), + [anon_sym_LT_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1740), + [sym_regex] = ACTIONS(2319), + [sym__special_character] = ACTIONS(2274), + [sym_number] = ACTIONS(2317), }, [574] = { - [aux_sym__literal_repeat1] = STATE(1231), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_AMP_GT_GT] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(801), - [anon_sym_LT_LT] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(801), - [anon_sym_GT_LPAREN] = ACTIONS(801), - [sym_number] = ACTIONS(801), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(801), - [anon_sym_PIPE_PIPE] = ACTIONS(801), - [anon_sym_PIPE] = ACTIONS(801), - [sym_word] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_LT_AMP] = ACTIONS(801), - [anon_sym_GT_GT] = ACTIONS(801), - [anon_sym_EQ_TILDE] = ACTIONS(801), - [sym__special_character] = ACTIONS(2246), - [anon_sym_LT_LT_DASH] = ACTIONS(801), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(801), - [sym_raw_string] = ACTIONS(801), - [sym_file_descriptor] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_AMP_GT] = ACTIONS(801), - [anon_sym_EQ_EQ] = ACTIONS(801), - [anon_sym_DQUOTE] = ACTIONS(801), - [anon_sym_LT_LT_LT] = ACTIONS(801), - [anon_sym_GT_AMP] = ACTIONS(801), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), - [anon_sym_esac] = ACTIONS(801), - [anon_sym_LT_LPAREN] = ACTIONS(801), - [sym_ansii_c_string] = ACTIONS(801), - [anon_sym_AMP_AMP] = ACTIONS(801), - [anon_sym_SEMI_SEMI] = ACTIONS(801), - [anon_sym_PIPE_AMP] = ACTIONS(801), + [aux_sym_concatenation_repeat1] = STATE(1202), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_LT_LT] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(799), + [anon_sym_GT_LPAREN] = ACTIONS(799), + [sym_number] = ACTIONS(799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [sym__concat] = ACTIONS(2248), + [anon_sym_PIPE] = ACTIONS(799), + [sym_word] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(799), + [anon_sym_EQ_TILDE] = ACTIONS(799), + [sym__special_character] = ACTIONS(799), + [anon_sym_LT_LT_DASH] = ACTIONS(799), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(799), + [sym_raw_string] = ACTIONS(799), + [sym_file_descriptor] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_EQ_EQ] = ACTIONS(799), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_LT_LT_LT] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(799), + [anon_sym_esac] = ACTIONS(799), + [anon_sym_LT_LPAREN] = ACTIONS(799), + [sym_ansii_c_string] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_SEMI_SEMI] = ACTIONS(799), + [anon_sym_PIPE_AMP] = ACTIONS(799), }, [575] = { - [sym_command_substitution] = STATE(424), - [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(424), - [sym_process_substitution] = STATE(424), - [sym_simple_expansion] = STATE(424), - [sym_string_expansion] = STATE(424), - [aux_sym_command_repeat2] = STATE(472), - [sym_concatenation] = STATE(472), - [sym_expansion] = STATE(424), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(771), - [anon_sym_GT_LPAREN] = ACTIONS(2012), - [sym_number] = ACTIONS(2014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [sym_word] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_EQ_TILDE] = ACTIONS(2018), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), - [sym_raw_string] = ACTIONS(2014), - [sym_file_descriptor] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2012), - [sym_ansii_c_string] = ACTIONS(2014), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), + [aux_sym__literal_repeat1] = STATE(1237), + [anon_sym_AMP] = ACTIONS(803), + [anon_sym_AMP_GT_GT] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_GT_LPAREN] = ACTIONS(803), + [sym_number] = ACTIONS(803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), + [anon_sym_PIPE_PIPE] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [sym_word] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_LT_AMP] = ACTIONS(803), + [anon_sym_GT_GT] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [sym__special_character] = ACTIONS(2250), + [anon_sym_LT_LT_DASH] = ACTIONS(803), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(805), + [anon_sym_SEMI] = ACTIONS(803), + [sym_raw_string] = ACTIONS(803), + [sym_file_descriptor] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_AMP_GT] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_LT_LT_LT] = ACTIONS(803), + [anon_sym_GT_AMP] = ACTIONS(803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), + [anon_sym_esac] = ACTIONS(803), + [anon_sym_LT_LPAREN] = ACTIONS(803), + [sym_ansii_c_string] = ACTIONS(803), + [anon_sym_AMP_AMP] = ACTIONS(803), + [anon_sym_SEMI_SEMI] = ACTIONS(803), + [anon_sym_PIPE_AMP] = ACTIONS(803), }, [576] = { - [sym_command_substitution] = STATE(549), - [aux_sym__literal_repeat1] = STATE(550), - [sym_string] = STATE(549), - [aux_sym_declaration_command_repeat1] = STATE(576), - [sym_process_substitution] = STATE(549), - [sym_simple_expansion] = STATE(549), - [sym_subscript] = STATE(2482), - [sym_string_expansion] = STATE(549), - [sym_variable_assignment] = STATE(576), - [sym_concatenation] = STATE(576), - [sym_expansion] = STATE(549), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_BQUOTE] = ACTIONS(2320), - [anon_sym_GT_LPAREN] = ACTIONS(2323), - [sym_number] = ACTIONS(2326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2329), - [anon_sym_PIPE_PIPE] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [sym_word] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_LT_AMP] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(809), - [sym__special_character] = ACTIONS(2332), - [anon_sym_LT_LT_DASH] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(809), - [sym_raw_string] = ACTIONS(2326), - [sym_variable_name] = ACTIONS(2335), - [sym_file_descriptor] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_LT_LT_LT] = ACTIONS(809), - [anon_sym_GT_AMP] = ACTIONS(809), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2341), - [anon_sym_esac] = ACTIONS(809), - [anon_sym_LT_LPAREN] = ACTIONS(2323), - [sym_ansii_c_string] = ACTIONS(2326), - [aux_sym__simple_variable_name_token1] = ACTIONS(2344), - [anon_sym_AMP_AMP] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(809), - [anon_sym_PIPE_AMP] = ACTIONS(809), + [sym_command_substitution] = STATE(425), + [aux_sym__literal_repeat1] = STATE(426), + [sym_string] = STATE(425), + [sym_process_substitution] = STATE(425), + [sym_simple_expansion] = STATE(425), + [sym_string_expansion] = STATE(425), + [aux_sym_command_repeat2] = STATE(473), + [sym_concatenation] = STATE(473), + [sym_expansion] = STATE(425), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_LT_LT] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_number] = ACTIONS(2018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [sym_word] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(2022), + [sym__special_character] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(773), + [sym_raw_string] = ACTIONS(2018), + [sym_file_descriptor] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [sym_ansii_c_string] = ACTIONS(2018), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(773), }, [577] = { - [sym_command_substitution] = STATE(552), - [aux_sym__literal_repeat1] = STATE(553), - [sym_string] = STATE(552), - [aux_sym_unset_command_repeat1] = STATE(577), - [sym_process_substitution] = STATE(552), - [sym_simple_expansion] = STATE(552), - [sym_string_expansion] = STATE(552), + [sym_command_substitution] = STATE(550), + [aux_sym__literal_repeat1] = STATE(551), + [sym_string] = STATE(550), + [aux_sym_declaration_command_repeat1] = STATE(577), + [sym_process_substitution] = STATE(550), + [sym_simple_expansion] = STATE(550), + [sym_subscript] = STATE(2503), + [sym_string_expansion] = STATE(550), + [sym_variable_assignment] = STATE(577), [sym_concatenation] = STATE(577), - [sym_expansion] = STATE(552), - [anon_sym_AMP] = ACTIONS(843), - [anon_sym_AMP_GT_GT] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(843), - [anon_sym_BQUOTE] = ACTIONS(2350), - [anon_sym_GT_LPAREN] = ACTIONS(2353), - [sym_number] = ACTIONS(2356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(843), - [sym_word] = ACTIONS(2356), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_LT_AMP] = ACTIONS(843), - [anon_sym_GT_GT] = ACTIONS(843), - [sym__special_character] = ACTIONS(2362), - [anon_sym_LT_LT_DASH] = ACTIONS(843), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(843), - [sym_raw_string] = ACTIONS(2356), - [sym_file_descriptor] = ACTIONS(863), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_AMP_GT] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_LT_LT_LT] = ACTIONS(843), - [anon_sym_GT_AMP] = ACTIONS(843), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2368), - [anon_sym_esac] = ACTIONS(843), - [anon_sym_LT_LPAREN] = ACTIONS(2353), - [sym_ansii_c_string] = ACTIONS(2356), - [aux_sym__simple_variable_name_token1] = ACTIONS(2371), - [anon_sym_AMP_AMP] = ACTIONS(843), - [anon_sym_SEMI_SEMI] = ACTIONS(843), - [anon_sym_PIPE_AMP] = ACTIONS(843), + [sym_expansion] = STATE(550), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(2321), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_BQUOTE] = ACTIONS(2324), + [anon_sym_GT_LPAREN] = ACTIONS(2327), + [sym_number] = ACTIONS(2330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2333), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [sym_word] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(2336), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(811), + [sym_raw_string] = ACTIONS(2330), + [sym_variable_name] = ACTIONS(2339), + [sym_file_descriptor] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(2342), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2345), + [anon_sym_esac] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(2327), + [sym_ansii_c_string] = ACTIONS(2330), + [aux_sym__simple_variable_name_token1] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [578] = { - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), + [sym_command_substitution] = STATE(553), + [aux_sym__literal_repeat1] = STATE(554), + [sym_string] = STATE(553), + [aux_sym_unset_command_repeat1] = STATE(578), + [sym_process_substitution] = STATE(553), + [sym_simple_expansion] = STATE(553), + [sym_string_expansion] = STATE(553), + [sym_concatenation] = STATE(578), + [sym_expansion] = STATE(553), + [anon_sym_AMP] = ACTIONS(845), + [anon_sym_AMP_GT_GT] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_LT_LT] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(2354), + [anon_sym_GT_LPAREN] = ACTIONS(2357), + [sym_number] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(845), + [sym_word] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(845), + [anon_sym_LT_AMP] = ACTIONS(845), + [anon_sym_GT_GT] = ACTIONS(845), + [sym__special_character] = ACTIONS(2366), + [anon_sym_LT_LT_DASH] = ACTIONS(845), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(845), + [sym_raw_string] = ACTIONS(2360), + [sym_file_descriptor] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(2369), + [anon_sym_LT_LT_LT] = ACTIONS(845), + [anon_sym_GT_AMP] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), + [anon_sym_esac] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(2357), + [sym_ansii_c_string] = ACTIONS(2360), + [aux_sym__simple_variable_name_token1] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), }, [579] = { - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [sym__concat] = ACTIONS(880), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(880), - [sym_variable_name] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), + [sym_raw_string] = ACTIONS(878), + [sym_variable_name] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), }, [580] = { - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [sym__concat] = ACTIONS(884), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [sym__concat] = ACTIONS(882), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), + [sym_raw_string] = ACTIONS(882), + [sym_variable_name] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_GT_AMP] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), }, [581] = { - [sym_command_substitution] = STATE(580), - [sym_string] = STATE(580), - [sym_process_substitution] = STATE(580), - [sym_simple_expansion] = STATE(580), - [sym_string_expansion] = STATE(580), - [sym_expansion] = STATE(580), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2376), + [anon_sym_AMP_GT_GT] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(886), + [anon_sym_GT_LPAREN] = ACTIONS(886), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), + [sym__concat] = ACTIONS(886), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(886), + [anon_sym_GT_GT] = ACTIONS(886), + [sym__special_character] = ACTIONS(886), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(886), + [sym_variable_name] = ACTIONS(886), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_GT_AMP] = ACTIONS(886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), + [anon_sym_LT_LPAREN] = ACTIONS(886), + [sym_ansii_c_string] = ACTIONS(886), + }, + [582] = { + [sym_command_substitution] = STATE(581), + [sym_string] = STATE(581), + [sym_process_substitution] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2378), + [anon_sym_DOLLAR] = ACTIONS(2380), [anon_sym_BQUOTE] = ACTIONS(115), [anon_sym_GT_LPAREN] = ACTIONS(117), - [sym_number] = ACTIONS(2378), + [sym_number] = ACTIONS(2382), [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_word] = ACTIONS(2378), + [sym_word] = ACTIONS(2382), [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), [anon_sym_LT_LPAREN] = ACTIONS(117), - [sym_ansii_c_string] = ACTIONS(2374), - [sym__special_character] = ACTIONS(2374), - }, - [582] = { - [aux_sym_concatenation_repeat1] = STATE(582), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [sym__concat] = ACTIONS(2380), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(2378), + [sym__special_character] = ACTIONS(2378), }, [583] = { - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [sym__concat] = ACTIONS(907), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(907), - [sym_variable_name] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), + [aux_sym_concatenation_repeat1] = STATE(583), + [anon_sym_AMP_GT_GT] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(886), + [anon_sym_GT_LPAREN] = ACTIONS(886), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), + [sym__concat] = ACTIONS(2384), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(886), + [anon_sym_GT_GT] = ACTIONS(886), + [sym__special_character] = ACTIONS(886), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(886), + [sym_variable_name] = ACTIONS(886), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_GT_AMP] = ACTIONS(886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), + [anon_sym_LT_LPAREN] = ACTIONS(886), + [sym_ansii_c_string] = ACTIONS(886), }, [584] = { - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [sym__concat] = ACTIONS(959), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(959), - [sym_variable_name] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(909), + [anon_sym_GT_LPAREN] = ACTIONS(909), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(909), + [sym__concat] = ACTIONS(909), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [sym__special_character] = ACTIONS(909), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(909), + [sym_variable_name] = ACTIONS(909), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(909), + [anon_sym_GT_AMP] = ACTIONS(909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(909), + [anon_sym_LT_LPAREN] = ACTIONS(909), + [sym_ansii_c_string] = ACTIONS(909), }, [585] = { - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_PLUS_EQ] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(999), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1090), - [sym_test_operator] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(1096), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ_TILDE] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(961), + [anon_sym_GT_LPAREN] = ACTIONS(961), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), + [sym__concat] = ACTIONS(961), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [sym__special_character] = ACTIONS(961), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(961), + [sym_variable_name] = ACTIONS(961), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), + [anon_sym_LT_LPAREN] = ACTIONS(961), + [sym_ansii_c_string] = ACTIONS(961), }, [586] = { - [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(613), - [sym_postfix_expression] = STATE(613), - [sym_string] = STATE(559), - [aux_sym__literal_repeat1] = STATE(561), - [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(613), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_concatenation] = STATE(613), - [sym_expansion] = STATE(559), - [anon_sym_LPAREN] = ACTIONS(2284), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(1096), + [anon_sym_PLUS_EQ] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1096), + [sym_test_operator] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1096), + [anon_sym_GT_EQ] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_EQ_TILDE] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1096), + [anon_sym_SEMI_SEMI] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1096), + }, + [587] = { + [sym_command_substitution] = STATE(560), + [sym_unary_expression] = STATE(614), + [sym_postfix_expression] = STATE(614), + [sym_string] = STATE(560), + [aux_sym__literal_repeat1] = STATE(562), + [sym_process_substitution] = STATE(560), + [sym_parenthesized_expression] = STATE(614), + [sym_simple_expansion] = STATE(560), + [sym_string_expansion] = STATE(560), + [sym__expression] = STATE(614), + [sym_binary_expression] = STATE(614), + [sym_concatenation] = STATE(614), + [sym_expansion] = STATE(560), + [anon_sym_LPAREN] = ACTIONS(2288), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2290), [anon_sym_BANG] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(615), - [sym_test_operator] = ACTIONS(2288), - [anon_sym_BQUOTE] = ACTIONS(2290), - [anon_sym_GT_LPAREN] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(617), + [sym_test_operator] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2294), + [anon_sym_GT_LPAREN] = ACTIONS(2296), [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2300), [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2298), - [anon_sym_LT_LPAREN] = ACTIONS(2292), - [sym_ansii_c_string] = ACTIONS(2286), - [sym__special_character] = ACTIONS(2300), - }, - [587] = { - [anon_sym_BANG_EQ] = ACTIONS(1003), - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1003), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_GT] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1003), - [sym_test_operator] = ACTIONS(1003), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_EQ_TILDE] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_SEMI_SEMI] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2302), + [anon_sym_LT_LPAREN] = ACTIONS(2296), + [sym_ansii_c_string] = ACTIONS(2290), + [sym__special_character] = ACTIONS(2304), }, [588] = { - [sym_command_substitution] = STATE(559), - [sym_unary_expression] = STATE(613), - [sym_postfix_expression] = STATE(613), - [sym_string] = STATE(559), - [aux_sym__literal_repeat1] = STATE(561), - [sym_process_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(613), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), - [sym__expression] = STATE(613), - [sym_binary_expression] = STATE(613), - [sym_concatenation] = STATE(613), - [sym_expansion] = STATE(559), - [anon_sym_LPAREN] = ACTIONS(2284), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1005), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1005), + [sym_test_operator] = ACTIONS(1005), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_PIPE_PIPE] = ACTIONS(1005), + [anon_sym_GT_EQ] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_EQ_TILDE] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1005), + [anon_sym_LT_EQ] = ACTIONS(1005), + [anon_sym_SEMI_SEMI] = ACTIONS(1005), + [anon_sym_DASH_EQ] = ACTIONS(1005), + }, + [589] = { + [sym_command_substitution] = STATE(560), + [sym_unary_expression] = STATE(614), + [sym_postfix_expression] = STATE(614), + [sym_string] = STATE(560), + [aux_sym__literal_repeat1] = STATE(562), + [sym_process_substitution] = STATE(560), + [sym_parenthesized_expression] = STATE(614), + [sym_simple_expansion] = STATE(560), + [sym_string_expansion] = STATE(560), + [sym__expression] = STATE(614), + [sym_binary_expression] = STATE(614), + [sym_concatenation] = STATE(614), + [sym_expansion] = STATE(560), + [anon_sym_LPAREN] = ACTIONS(2288), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2290), [anon_sym_BANG] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(615), - [sym_test_operator] = ACTIONS(2288), - [anon_sym_BQUOTE] = ACTIONS(2290), - [anon_sym_GT_LPAREN] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(617), + [sym_test_operator] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2294), + [anon_sym_GT_LPAREN] = ACTIONS(2296), [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2300), [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2298), - [anon_sym_LT_LPAREN] = ACTIONS(2292), - [sym_ansii_c_string] = ACTIONS(2286), - [sym__special_character] = ACTIONS(2300), - [sym_regex] = ACTIONS(2383), - }, - [589] = { - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [ts_builtin_sym_end] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [aux_sym__simple_variable_name_token1] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2302), + [anon_sym_LT_LPAREN] = ACTIONS(2296), + [sym_ansii_c_string] = ACTIONS(2290), + [sym__special_character] = ACTIONS(2304), + [sym_regex] = ACTIONS(2387), }, [590] = { - [aux_sym_concatenation_repeat1] = STATE(643), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [sym__concat] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [ts_builtin_sym_end] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [aux_sym__simple_variable_name_token1] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [aux_sym__simple_variable_name_token1] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [591] = { - [aux_sym__literal_repeat1] = STATE(646), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), - [sym_number] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [sym_word] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [sym__special_character] = ACTIONS(381), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1041), - [sym_file_descriptor] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [ts_builtin_sym_end] = ACTIONS(1041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [aux_sym__simple_variable_name_token1] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [sym_ansii_c_string] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), + [aux_sym_concatenation_repeat1] = STATE(644), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [sym__concat] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [ts_builtin_sym_end] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [aux_sym__simple_variable_name_token1] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [592] = { - [aux_sym_concatenation_repeat1] = STATE(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [sym__concat] = ACTIONS(2135), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1055), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_RPAREN] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1057), + [aux_sym__literal_repeat1] = STATE(647), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_number] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [sym_word] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_LT_AMP] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [sym__special_character] = ACTIONS(381), + [anon_sym_LT_LT_DASH] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1039), + [sym_raw_string] = ACTIONS(1039), + [sym_variable_name] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_LT_LT_LT] = ACTIONS(1039), + [anon_sym_GT_AMP] = ACTIONS(1039), + [ts_builtin_sym_end] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [aux_sym__simple_variable_name_token1] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1039), + [sym_ansii_c_string] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), }, [593] = { - [aux_sym__literal_repeat1] = STATE(1103), - [anon_sym_PIPE_AMP] = ACTIONS(1061), - [anon_sym_AMP_GT_GT] = ACTIONS(1061), - [anon_sym_LT_LT] = ACTIONS(1061), - [anon_sym_BQUOTE] = ACTIONS(1061), - [anon_sym_PIPE_PIPE] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_LT_AMP] = ACTIONS(1061), - [anon_sym_GT_GT] = ACTIONS(1061), - [sym__special_character] = ACTIONS(2137), - [anon_sym_LT_LT_DASH] = ACTIONS(1061), + [aux_sym_concatenation_repeat1] = STATE(1074), + [anon_sym_PIPE_AMP] = ACTIONS(1059), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [sym__concat] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_LT_LT_DASH] = ACTIONS(1059), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_RPAREN] = ACTIONS(1061), - [sym_file_descriptor] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_AMP_GT] = ACTIONS(1061), - [anon_sym_LT_LT_LT] = ACTIONS(1061), - [anon_sym_GT_AMP] = ACTIONS(1061), - [anon_sym_esac] = ACTIONS(1061), - [anon_sym_AMP_AMP] = ACTIONS(1061), - [anon_sym_SEMI_SEMI] = ACTIONS(1061), - [anon_sym_AMP] = ACTIONS(1061), + [anon_sym_LF] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1059), + [sym_file_descriptor] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1059), + [anon_sym_LT_LT_LT] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_SEMI_SEMI] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1059), }, [594] = { - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1055), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_RPAREN] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_esac] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1057), - }, - [595] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1065), - [sym_word] = ACTIONS(1063), + [aux_sym__literal_repeat1] = STATE(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [anon_sym_PIPE] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [sym__special_character] = ACTIONS(2141), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1063), + [sym_file_descriptor] = ACTIONS(1061), [anon_sym_GT] = ACTIONS(1063), [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_esac] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1063), + }, + [595] = { + [anon_sym_PIPE_AMP] = ACTIONS(1059), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_LT_LT_DASH] = ACTIONS(1059), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1059), + [sym_file_descriptor] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1059), + [anon_sym_LT_LT_LT] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [anon_sym_esac] = ACTIONS(1059), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_SEMI_SEMI] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1059), }, [596] = { - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1067), + [anon_sym_GT_LPAREN] = ACTIONS(1067), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), + [sym__concat] = ACTIONS(1067), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1067), + [sym__special_character] = ACTIONS(1067), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1067), + [sym_variable_name] = ACTIONS(1067), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), + [anon_sym_LT_LPAREN] = ACTIONS(1067), + [sym_ansii_c_string] = ACTIONS(1067), }, [597] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(878), + [sym_variable_name] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + }, + [598] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1126), [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_GT_GT] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1122), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), - }, - [598] = { - [anon_sym_AMP] = ACTIONS(2385), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2385), - [anon_sym_SEMI_SEMI] = ACTIONS(2129), - [anon_sym_esac] = ACTIONS(2129), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), }, [599] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_LT_LT_DASH] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(2389), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1152), - [sym_file_descriptor] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(1152), - [anon_sym_AMP_GT] = ACTIONS(1152), - [anon_sym_PIPE_PIPE] = ACTIONS(1152), - [anon_sym_LT_LT_LT] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_GT_AMP] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_LT_AMP] = ACTIONS(1152), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_AMP_AMP] = ACTIONS(1152), - [anon_sym_SEMI_SEMI] = ACTIONS(1152), - [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_LF] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2389), + [anon_sym_SEMI_SEMI] = ACTIONS(2133), + [anon_sym_esac] = ACTIONS(2133), }, [600] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_AMP] = ACTIONS(1152), + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_LT_LT] = ACTIONS(1156), + [sym_file_descriptor] = ACTIONS(1158), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_AMP_GT] = ACTIONS(1156), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_GT_AMP] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_LT_AMP] = ACTIONS(1156), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(2270), + }, + [601] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_AMP] = ACTIONS(1156), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1156), [anon_sym_BQUOTE] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(2270), [sym_word] = ACTIONS(331), [anon_sym_LT] = ACTIONS(331), [anon_sym_LT_AMP] = ACTIONS(331), [anon_sym_GT_GT] = ACTIONS(331), [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1156), [anon_sym_GT_AMP] = ACTIONS(331), [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1152), - [anon_sym_SEMI_SEMI] = ACTIONS(1152), - [anon_sym_PIPE_AMP] = ACTIONS(2266), - }, - [601] = { - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(1142), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(2270), }, [602] = { - [sym_heredoc_body] = STATE(1468), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(1142), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(967), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(1146), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [603] = { - [sym_command_substitution] = STATE(424), - [aux_sym__literal_repeat1] = STATE(425), - [sym_string] = STATE(424), - [sym_process_substitution] = STATE(424), - [sym_simple_expansion] = STATE(424), - [sym_string_expansion] = STATE(424), - [aux_sym_command_repeat2] = STATE(472), - [sym_concatenation] = STATE(472), - [sym_expansion] = STATE(424), - [anon_sym_PIPE_AMP] = ACTIONS(1184), - [anon_sym_AMP_GT_GT] = ACTIONS(1184), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_BQUOTE] = ACTIONS(1184), - [anon_sym_GT_LPAREN] = ACTIONS(2012), - [sym_number] = ACTIONS(2014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [sym_word] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_LT_AMP] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_EQ_TILDE] = ACTIONS(2018), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1184), - [sym_raw_string] = ACTIONS(2014), - [sym_file_descriptor] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_AMP_GT] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_LT_LT_LT] = ACTIONS(1184), - [anon_sym_GT_AMP] = ACTIONS(1184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2012), - [sym_ansii_c_string] = ACTIONS(2014), - [anon_sym_AMP_AMP] = ACTIONS(1184), - [anon_sym_SEMI_SEMI] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), + [sym_heredoc_body] = STATE(1475), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(1146), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(969), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), }, [604] = { - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_GT_LPAREN] = ACTIONS(1188), - [sym_number] = ACTIONS(1188), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_AMP] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [sym__special_character] = ACTIONS(1188), - [anon_sym_LT_LT_DASH] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(1188), - [sym_file_descriptor] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_GT_AMP] = ACTIONS(1188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), - [anon_sym_esac] = ACTIONS(1188), - [anon_sym_LT_LPAREN] = ACTIONS(1188), - [sym_ansii_c_string] = ACTIONS(1188), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [sym_command_substitution] = STATE(425), + [aux_sym__literal_repeat1] = STATE(426), + [sym_string] = STATE(425), + [sym_process_substitution] = STATE(425), + [sym_simple_expansion] = STATE(425), + [sym_string_expansion] = STATE(425), + [aux_sym_command_repeat2] = STATE(473), + [sym_concatenation] = STATE(473), + [sym_expansion] = STATE(425), [anon_sym_PIPE_AMP] = ACTIONS(1188), - }, - [605] = { - [aux_sym_concatenation_repeat1] = STATE(1196), - [anon_sym_AMP] = ACTIONS(1188), [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_LT_LT] = ACTIONS(1188), [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_GT_LPAREN] = ACTIONS(1188), - [sym_number] = ACTIONS(1188), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1188), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_number] = ACTIONS(2018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [sym__concat] = ACTIONS(2244), [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(1188), + [sym_word] = ACTIONS(2018), [anon_sym_LT] = ACTIONS(1188), [anon_sym_LT_AMP] = ACTIONS(1188), [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1188), - [sym__special_character] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(2022), + [sym__special_character] = ACTIONS(85), [anon_sym_LT_LT_DASH] = ACTIONS(1188), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1190), [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(2018), [sym_file_descriptor] = ACTIONS(1190), [anon_sym_GT] = ACTIONS(1188), [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), [anon_sym_LT_LT_LT] = ACTIONS(1188), [anon_sym_GT_AMP] = ACTIONS(1188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1188), - [anon_sym_esac] = ACTIONS(1188), - [anon_sym_LT_LPAREN] = ACTIONS(1188), - [sym_ansii_c_string] = ACTIONS(1188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [sym_ansii_c_string] = ACTIONS(2018), [anon_sym_AMP_AMP] = ACTIONS(1188), [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_PIPE_AMP] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), }, - [606] = { - [aux_sym__literal_repeat1] = STATE(1231), + [605] = { [anon_sym_AMP] = ACTIONS(1192), [anon_sym_AMP_GT_GT] = ACTIONS(1192), [anon_sym_DOLLAR] = ACTIONS(1192), @@ -24975,7 +24957,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(1192), [anon_sym_GT_GT] = ACTIONS(1192), [anon_sym_EQ_TILDE] = ACTIONS(1192), - [sym__special_character] = ACTIONS(2246), + [sym__special_character] = ACTIONS(1192), [anon_sym_LT_LT_DASH] = ACTIONS(1192), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1194), @@ -24996,188 +24978,241 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1192), [anon_sym_PIPE_AMP] = ACTIONS(1192), }, - [607] = { - [sym_command_substitution] = STATE(573), - [aux_sym__literal_repeat1] = STATE(574), - [sym_string] = STATE(573), - [sym_process_substitution] = STATE(573), - [sym_simple_expansion] = STATE(573), - [sym_string_expansion] = STATE(573), - [aux_sym_command_repeat2] = STATE(607), - [sym_concatenation] = STATE(607), - [sym_expansion] = STATE(573), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(2392), - [anon_sym_GT_LPAREN] = ACTIONS(2395), - [sym_number] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2401), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_AMP] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(2404), - [sym__special_character] = ACTIONS(2407), - [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [606] = { + [aux_sym_concatenation_repeat1] = STATE(1202), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_GT_LPAREN] = ACTIONS(1192), + [sym_number] = ACTIONS(1192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [sym__concat] = ACTIONS(2248), + [anon_sym_PIPE] = ACTIONS(1192), + [sym_word] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_AMP] = ACTIONS(1192), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_EQ_TILDE] = ACTIONS(1192), + [sym__special_character] = ACTIONS(1192), + [anon_sym_LT_LT_DASH] = ACTIONS(1192), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(2398), - [sym_file_descriptor] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2410), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_GT_AMP] = ACTIONS(1188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2413), - [anon_sym_esac] = ACTIONS(1188), - [anon_sym_LT_LPAREN] = ACTIONS(2395), - [sym_ansii_c_string] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_PIPE_AMP] = ACTIONS(1188), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [sym_raw_string] = ACTIONS(1192), + [sym_file_descriptor] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_AMP_GT] = ACTIONS(1192), + [anon_sym_EQ_EQ] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_GT_AMP] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), + [anon_sym_esac] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1192), + [sym_ansii_c_string] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_SEMI_SEMI] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), + }, + [607] = { + [aux_sym__literal_repeat1] = STATE(1237), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_number] = ACTIONS(1196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [sym_word] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_EQ_TILDE] = ACTIONS(1196), + [sym__special_character] = ACTIONS(2250), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_esac] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [sym_ansii_c_string] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), }, [608] = { - [sym_string] = STATE(557), - [anon_sym__] = ACTIONS(2416), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2416), - [sym_word] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), + [sym_command_substitution] = STATE(574), + [aux_sym__literal_repeat1] = STATE(575), + [sym_string] = STATE(574), + [sym_process_substitution] = STATE(574), + [sym_simple_expansion] = STATE(574), + [sym_string_expansion] = STATE(574), + [aux_sym_command_repeat2] = STATE(608), + [sym_concatenation] = STATE(608), + [sym_expansion] = STATE(574), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_GT_LPAREN] = ACTIONS(2399), + [sym_number] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [sym_word] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_AMP] = ACTIONS(1192), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_EQ_TILDE] = ACTIONS(2408), + [sym__special_character] = ACTIONS(2411), + [anon_sym_LT_LT_DASH] = ACTIONS(1192), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2420), - [sym_raw_string] = ACTIONS(2422), - [anon_sym_BANG] = ACTIONS(2418), - [sym_variable_name] = ACTIONS(1227), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2416), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2416), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [sym_raw_string] = ACTIONS(2402), + [sym_file_descriptor] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_AMP_GT] = ACTIONS(1192), + [anon_sym_EQ_EQ] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_GT_AMP] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2417), + [anon_sym_esac] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(2399), + [sym_ansii_c_string] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_SEMI_SEMI] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), }, [609] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1233), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1233), - [anon_sym_GT_LPAREN] = ACTIONS(1233), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), - [sym__concat] = ACTIONS(1233), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [sym__special_character] = ACTIONS(1233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1233), - [sym_variable_name] = ACTIONS(1233), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_RPAREN] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1233), - [anon_sym_GT_AMP] = ACTIONS(1233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [anon_sym_LT_LPAREN] = ACTIONS(1233), - [sym_ansii_c_string] = ACTIONS(1233), + [sym_string] = STATE(558), + [anon_sym__] = ACTIONS(2420), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_0] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2420), + [sym_word] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2424), + [sym_raw_string] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2422), + [sym_variable_name] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [aux_sym__simple_variable_name_token1] = ACTIONS(2420), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(2420), }, [610] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_GT] = ACTIONS(1292), - [sym__special_character] = ACTIONS(1292), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1292), - [sym_variable_name] = ACTIONS(1292), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [sym_ansii_c_string] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1237), + [anon_sym_GT_LPAREN] = ACTIONS(1237), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1237), + [anon_sym_GT_GT] = ACTIONS(1237), + [sym__special_character] = ACTIONS(1237), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1237), + [sym_variable_name] = ACTIONS(1237), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1237), + [anon_sym_GT_AMP] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), + [anon_sym_LT_LPAREN] = ACTIONS(1237), + [sym_ansii_c_string] = ACTIONS(1237), }, [611] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1302), - [anon_sym_GT_LPAREN] = ACTIONS(1302), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), - [sym__concat] = ACTIONS(1302), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1302), - [sym__special_character] = ACTIONS(1302), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1302), - [sym_variable_name] = ACTIONS(1302), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1302), - [anon_sym_GT_AMP] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [anon_sym_LT_LPAREN] = ACTIONS(1302), - [sym_ansii_c_string] = ACTIONS(1302), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1296), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1296), + [sym_variable_name] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), }, [612] = { - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1354), - [sym_test_operator] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_SEMI_SEMI] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), + [anon_sym_AMP_GT_GT] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1306), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1306), + [anon_sym_GT_GT] = ACTIONS(1306), + [sym__special_character] = ACTIONS(1306), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1306), + [sym_variable_name] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1306), + [anon_sym_GT_AMP] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1306), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [sym_ansii_c_string] = ACTIONS(1306), }, [613] = { [anon_sym_BANG_EQ] = ACTIONS(1358), @@ -25204,219 +25239,217 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(1358), }, [614] = { - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_PLUS_EQ] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1362), + [anon_sym_PLUS_EQ] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1358), - [sym_test_operator] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_SEMI_SEMI] = ACTIONS(1358), - [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [sym_test_operator] = ACTIONS(1362), + [anon_sym_EQ_EQ] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1362), + [anon_sym_GT_EQ] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_EQ_TILDE] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1362), + [anon_sym_SEMI_SEMI] = ACTIONS(1362), + [anon_sym_DASH_EQ] = ACTIONS(1362), }, [615] = { - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_AMP_GT_GT] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1366), - [anon_sym_BQUOTE] = ACTIONS(1366), - [anon_sym_GT_LPAREN] = ACTIONS(1366), - [sym_number] = ACTIONS(1366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [sym_word] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_LT_AMP] = ACTIONS(1366), - [anon_sym_GT_GT] = ACTIONS(1366), - [sym__special_character] = ACTIONS(1366), - [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [anon_sym_BANG_EQ] = ACTIONS(1362), + [anon_sym_PLUS_EQ] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [sym_raw_string] = ACTIONS(1366), - [sym_variable_name] = ACTIONS(1368), - [sym_file_descriptor] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_AMP_GT] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_LT_LT_LT] = ACTIONS(1366), - [anon_sym_GT_AMP] = ACTIONS(1366), - [ts_builtin_sym_end] = ACTIONS(1368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), - [aux_sym__simple_variable_name_token1] = ACTIONS(1366), - [anon_sym_LT_LPAREN] = ACTIONS(1366), - [sym_ansii_c_string] = ACTIONS(1366), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_SEMI_SEMI] = ACTIONS(1366), - [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_LF] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [sym_test_operator] = ACTIONS(1362), + [anon_sym_EQ_EQ] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1362), + [anon_sym_GT_EQ] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_EQ_TILDE] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1362), + [anon_sym_SEMI_SEMI] = ACTIONS(1362), + [anon_sym_DASH_EQ] = ACTIONS(1362), }, [616] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1398), - [anon_sym_GT_LPAREN] = ACTIONS(1398), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1398), - [sym__concat] = ACTIONS(1398), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1398), - [sym__special_character] = ACTIONS(1398), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1398), - [sym_variable_name] = ACTIONS(1398), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_GT_AMP] = ACTIONS(1398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1398), - [anon_sym_LT_LPAREN] = ACTIONS(1398), - [sym_ansii_c_string] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_AMP_GT_GT] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [sym_word] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_LT_AMP] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1370), + [sym__special_character] = ACTIONS(1370), + [anon_sym_LT_LT_DASH] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [sym_raw_string] = ACTIONS(1370), + [sym_variable_name] = ACTIONS(1372), + [sym_file_descriptor] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_AMP_GT] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_GT_AMP] = ACTIONS(1370), + [ts_builtin_sym_end] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), + [aux_sym__simple_variable_name_token1] = ACTIONS(1370), + [anon_sym_LT_LPAREN] = ACTIONS(1370), + [sym_ansii_c_string] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(1370), + [anon_sym_PIPE_AMP] = ACTIONS(1370), }, [617] = { - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_AMP_GT_GT] = ACTIONS(1446), - [anon_sym_local] = ACTIONS(1444), - [anon_sym_typeset] = ACTIONS(1444), - [anon_sym_unsetenv] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1448), - [anon_sym_GT_LPAREN] = ACTIONS(1446), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_AMP] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1444), - [sym_word] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), - [sym_raw_string] = ACTIONS(1446), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_declare] = ACTIONS(1444), - [sym_variable_name] = ACTIONS(1446), - [sym_file_descriptor] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_AMP_GT] = ACTIONS(1444), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_GT_AMP] = ACTIONS(1446), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT_LPAREN] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [sym_ansii_c_string] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym_AMP_GT_GT] = ACTIONS(1402), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1402), + [anon_sym_GT_LPAREN] = ACTIONS(1402), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1402), + [sym__concat] = ACTIONS(1402), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1402), + [anon_sym_GT_GT] = ACTIONS(1402), + [sym__special_character] = ACTIONS(1402), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1402), + [sym_variable_name] = ACTIONS(1402), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1402), + [anon_sym_GT_AMP] = ACTIONS(1402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1402), + [anon_sym_LT_LPAREN] = ACTIONS(1402), + [sym_ansii_c_string] = ACTIONS(1402), }, [618] = { - [anon_sym_AMP] = ACTIONS(2424), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_SEMI_SEMI] = ACTIONS(2196), - [anon_sym_esac] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_AMP_GT_GT] = ACTIONS(1450), + [anon_sym_local] = ACTIONS(1448), + [anon_sym_typeset] = ACTIONS(1448), + [anon_sym_unsetenv] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1452), + [anon_sym_GT_LPAREN] = ACTIONS(1450), + [sym_number] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_LT_AMP] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1448), + [sym_word] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_declare] = ACTIONS(1448), + [sym_variable_name] = ACTIONS(1450), + [sym_file_descriptor] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_readonly] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_GT_AMP] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_LT_LPAREN] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [sym_ansii_c_string] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), }, [619] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1456), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1456), - [anon_sym_GT_LPAREN] = ACTIONS(1456), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1456), - [sym__concat] = ACTIONS(1456), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1456), - [anon_sym_GT_GT] = ACTIONS(1456), - [sym__special_character] = ACTIONS(1456), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1456), - [sym_variable_name] = ACTIONS(1456), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1456), - [anon_sym_GT_AMP] = ACTIONS(1456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1456), - [anon_sym_LT_LPAREN] = ACTIONS(1456), - [sym_ansii_c_string] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(2428), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2428), + [anon_sym_SEMI_SEMI] = ACTIONS(2200), + [anon_sym_esac] = ACTIONS(2200), }, [620] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1468), - [anon_sym_GT_LPAREN] = ACTIONS(1468), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1468), - [sym__concat] = ACTIONS(1468), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [sym__special_character] = ACTIONS(1468), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1468), - [sym_variable_name] = ACTIONS(1468), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1468), - [anon_sym_GT_AMP] = ACTIONS(1468), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1468), - [anon_sym_LT_LPAREN] = ACTIONS(1468), - [sym_ansii_c_string] = ACTIONS(1468), + [anon_sym_AMP_GT_GT] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1460), + [anon_sym_GT_LPAREN] = ACTIONS(1460), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1460), + [sym__concat] = ACTIONS(1460), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [sym__special_character] = ACTIONS(1460), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1460), + [sym_variable_name] = ACTIONS(1460), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1460), + [anon_sym_GT_AMP] = ACTIONS(1460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), + [anon_sym_LT_LPAREN] = ACTIONS(1460), + [sym_ansii_c_string] = ACTIONS(1460), }, [621] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1478), - [anon_sym_GT_LPAREN] = ACTIONS(1478), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1478), - [sym__concat] = ACTIONS(1478), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1478), - [sym__special_character] = ACTIONS(1478), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1478), - [sym_variable_name] = ACTIONS(1478), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1478), - [anon_sym_GT_AMP] = ACTIONS(1478), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1478), - [anon_sym_LT_LPAREN] = ACTIONS(1478), - [sym_ansii_c_string] = ACTIONS(1478), + [anon_sym_AMP_GT_GT] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_GT_LPAREN] = ACTIONS(1472), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1472), + [sym__concat] = ACTIONS(1472), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1472), + [anon_sym_GT_GT] = ACTIONS(1472), + [sym__special_character] = ACTIONS(1472), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1472), + [sym_variable_name] = ACTIONS(1472), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_GT_AMP] = ACTIONS(1472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1472), + [anon_sym_LT_LPAREN] = ACTIONS(1472), + [sym_ansii_c_string] = ACTIONS(1472), }, [622] = { [anon_sym_AMP_GT_GT] = ACTIONS(1482), @@ -25445,135 +25478,135 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(1482), }, [623] = { - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_AMP_GT_GT] = ACTIONS(1614), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_LT_LT] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [anon_sym_GT_LPAREN] = ACTIONS(1614), - [sym_number] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), - [anon_sym_PIPE_PIPE] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [sym_word] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_LT_AMP] = ACTIONS(1614), - [anon_sym_GT_GT] = ACTIONS(1614), - [sym__special_character] = ACTIONS(1614), - [anon_sym_LT_LT_DASH] = ACTIONS(1614), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [sym_raw_string] = ACTIONS(1614), - [sym_variable_name] = ACTIONS(1616), - [sym_file_descriptor] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_AMP_GT] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_LT_LT_LT] = ACTIONS(1614), - [anon_sym_GT_AMP] = ACTIONS(1614), - [ts_builtin_sym_end] = ACTIONS(1616), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), - [aux_sym__simple_variable_name_token1] = ACTIONS(1614), - [anon_sym_LT_LPAREN] = ACTIONS(1614), - [sym_ansii_c_string] = ACTIONS(1614), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_SEMI_SEMI] = ACTIONS(1614), - [anon_sym_PIPE_AMP] = ACTIONS(1614), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [sym__concat] = ACTIONS(1486), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1486), + [sym_variable_name] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), }, [624] = { - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_AMP_GT_GT] = ACTIONS(1446), - [anon_sym_local] = ACTIONS(1444), - [anon_sym_typeset] = ACTIONS(1444), - [anon_sym_unsetenv] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_GT_LPAREN] = ACTIONS(1446), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_AMP] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1444), - [sym_word] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), - [sym_raw_string] = ACTIONS(1446), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_declare] = ACTIONS(1444), - [sym_variable_name] = ACTIONS(1446), - [sym_file_descriptor] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_AMP_GT] = ACTIONS(1444), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_GT_AMP] = ACTIONS(1446), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT_LPAREN] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [sym_ansii_c_string] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_AMP_GT_GT] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1618), + [anon_sym_GT_LPAREN] = ACTIONS(1618), + [sym_number] = ACTIONS(1618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), + [anon_sym_PIPE_PIPE] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [sym_word] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_AMP] = ACTIONS(1618), + [anon_sym_GT_GT] = ACTIONS(1618), + [sym__special_character] = ACTIONS(1618), + [anon_sym_LT_LT_DASH] = ACTIONS(1618), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1618), + [sym_raw_string] = ACTIONS(1618), + [sym_variable_name] = ACTIONS(1620), + [sym_file_descriptor] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_AMP_GT] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_LT_LT_LT] = ACTIONS(1618), + [anon_sym_GT_AMP] = ACTIONS(1618), + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), + [aux_sym__simple_variable_name_token1] = ACTIONS(1618), + [anon_sym_LT_LPAREN] = ACTIONS(1618), + [sym_ansii_c_string] = ACTIONS(1618), + [anon_sym_AMP_AMP] = ACTIONS(1618), + [anon_sym_SEMI_SEMI] = ACTIONS(1618), + [anon_sym_PIPE_AMP] = ACTIONS(1618), }, [625] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_AMP_GT_GT] = ACTIONS(1450), + [anon_sym_local] = ACTIONS(1448), + [anon_sym_typeset] = ACTIONS(1448), + [anon_sym_unsetenv] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), [anon_sym_BQUOTE] = ACTIONS(1690), - [anon_sym_GT_LPAREN] = ACTIONS(1690), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1690), - [sym__concat] = ACTIONS(1690), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1690), - [anon_sym_GT_GT] = ACTIONS(1690), - [sym__special_character] = ACTIONS(1690), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1690), - [sym_variable_name] = ACTIONS(1690), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_RPAREN] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1690), - [anon_sym_GT_AMP] = ACTIONS(1690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1690), - [anon_sym_LT_LPAREN] = ACTIONS(1690), - [sym_ansii_c_string] = ACTIONS(1690), + [anon_sym_GT_LPAREN] = ACTIONS(1450), + [sym_number] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_LT_AMP] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1448), + [sym_word] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_declare] = ACTIONS(1448), + [sym_variable_name] = ACTIONS(1450), + [sym_file_descriptor] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_readonly] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_GT_AMP] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_LT_LPAREN] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [sym_ansii_c_string] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), }, [626] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1696), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1696), - [anon_sym_GT_LPAREN] = ACTIONS(1696), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1696), - [sym__concat] = ACTIONS(1696), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [sym__special_character] = ACTIONS(1696), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1696), - [sym_variable_name] = ACTIONS(1696), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1696), - [anon_sym_GT_AMP] = ACTIONS(1696), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), - [anon_sym_LT_LPAREN] = ACTIONS(1696), - [sym_ansii_c_string] = ACTIONS(1696), + [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1694), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1694), + [sym_variable_name] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_RPAREN] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_GT_AMP] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), }, [627] = { [anon_sym_AMP_GT_GT] = ACTIONS(1700), @@ -25602,56 +25635,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(1700), }, [628] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1706), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1706), - [anon_sym_GT_LPAREN] = ACTIONS(1706), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), - [sym__concat] = ACTIONS(1706), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1706), - [anon_sym_GT_GT] = ACTIONS(1706), - [sym__special_character] = ACTIONS(1706), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1706), - [sym_variable_name] = ACTIONS(1706), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_GT_AMP] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1706), - [anon_sym_LT_LPAREN] = ACTIONS(1706), - [sym_ansii_c_string] = ACTIONS(1706), + [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1704), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1704), + [anon_sym_GT_GT] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1704), + [sym_variable_name] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_GT_AMP] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), }, [629] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1821), - [anon_sym_GT_GT] = ACTIONS(1821), - [sym__special_character] = ACTIONS(1821), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1821), - [sym_variable_name] = ACTIONS(1821), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_GT_AMP] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [sym_ansii_c_string] = ACTIONS(1821), + [anon_sym_AMP_GT_GT] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1710), + [anon_sym_GT_LPAREN] = ACTIONS(1710), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1710), + [sym__concat] = ACTIONS(1710), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1710), + [anon_sym_GT_GT] = ACTIONS(1710), + [sym__special_character] = ACTIONS(1710), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1710), + [sym_variable_name] = ACTIONS(1710), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_RPAREN] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_GT_AMP] = ACTIONS(1710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1710), + [anon_sym_LT_LPAREN] = ACTIONS(1710), + [sym_ansii_c_string] = ACTIONS(1710), }, [630] = { [anon_sym_AMP_GT_GT] = ACTIONS(1825), @@ -25680,100 +25713,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(1825), }, [631] = { - [sym_command_substitution] = STATE(549), - [aux_sym__literal_repeat1] = STATE(550), - [sym_string] = STATE(549), - [aux_sym_declaration_command_repeat1] = STATE(638), - [sym_process_substitution] = STATE(549), - [sym_simple_expansion] = STATE(549), - [sym_subscript] = STATE(2482), - [sym_string_expansion] = STATE(549), - [sym_variable_assignment] = STATE(638), - [sym_concatenation] = STATE(638), - [sym_expansion] = STATE(549), + [anon_sym_AMP_GT_GT] = ACTIONS(1829), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1829), + [anon_sym_GT_LPAREN] = ACTIONS(1829), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1829), + [sym__concat] = ACTIONS(1829), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1829), + [anon_sym_GT_GT] = ACTIONS(1829), + [sym__special_character] = ACTIONS(1829), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1829), + [sym_variable_name] = ACTIONS(1829), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1829), + [anon_sym_GT_AMP] = ACTIONS(1829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1829), + [anon_sym_LT_LPAREN] = ACTIONS(1829), + [sym_ansii_c_string] = ACTIONS(1829), + }, + [632] = { + [sym_command_substitution] = STATE(550), + [aux_sym__literal_repeat1] = STATE(551), + [sym_string] = STATE(550), + [aux_sym_declaration_command_repeat1] = STATE(639), + [sym_process_substitution] = STATE(550), + [sym_simple_expansion] = STATE(550), + [sym_subscript] = STATE(2503), + [sym_string_expansion] = STATE(550), + [sym_variable_assignment] = STATE(639), + [sym_concatenation] = STATE(639), + [sym_expansion] = STATE(550), [anon_sym_PIPE_AMP] = ACTIONS(129), [anon_sym_AMP_GT_GT] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(2428), + [anon_sym_DOLLAR] = ACTIONS(2432), [anon_sym_LT_LT] = ACTIONS(129), - [anon_sym_BQUOTE] = ACTIONS(2430), - [anon_sym_GT_LPAREN] = ACTIONS(2432), - [sym_number] = ACTIONS(2434), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2436), + [anon_sym_BQUOTE] = ACTIONS(2434), + [anon_sym_GT_LPAREN] = ACTIONS(2436), + [sym_number] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), [anon_sym_PIPE_PIPE] = ACTIONS(129), [anon_sym_PIPE] = ACTIONS(129), - [sym_word] = ACTIONS(2434), + [sym_word] = ACTIONS(2438), [anon_sym_LT] = ACTIONS(129), [anon_sym_LT_AMP] = ACTIONS(129), [anon_sym_GT_GT] = ACTIONS(129), - [sym__special_character] = ACTIONS(2438), + [sym__special_character] = ACTIONS(2442), [anon_sym_LT_LT_DASH] = ACTIONS(129), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(129), - [sym_raw_string] = ACTIONS(2434), - [sym_variable_name] = ACTIONS(2440), + [sym_raw_string] = ACTIONS(2438), + [sym_variable_name] = ACTIONS(2444), [sym_file_descriptor] = ACTIONS(143), [anon_sym_GT] = ACTIONS(129), [anon_sym_AMP_GT] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2446), [anon_sym_LT_LT_LT] = ACTIONS(129), [anon_sym_GT_AMP] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2448), [anon_sym_esac] = ACTIONS(129), - [aux_sym__simple_variable_name_token1] = ACTIONS(2446), - [sym_ansii_c_string] = ACTIONS(2434), - [anon_sym_LT_LPAREN] = ACTIONS(2432), + [aux_sym__simple_variable_name_token1] = ACTIONS(2450), + [sym_ansii_c_string] = ACTIONS(2438), + [anon_sym_LT_LPAREN] = ACTIONS(2436), [anon_sym_AMP_AMP] = ACTIONS(129), [anon_sym_SEMI_SEMI] = ACTIONS(129), [anon_sym_AMP] = ACTIONS(129), }, - [632] = { - [sym_command_substitution] = STATE(552), - [aux_sym__literal_repeat1] = STATE(553), - [sym_string] = STATE(552), - [aux_sym_unset_command_repeat1] = STATE(639), - [sym_process_substitution] = STATE(552), - [sym_simple_expansion] = STATE(552), - [sym_string_expansion] = STATE(552), - [sym_concatenation] = STATE(639), - [sym_expansion] = STATE(552), + [633] = { + [sym_command_substitution] = STATE(553), + [aux_sym__literal_repeat1] = STATE(554), + [sym_string] = STATE(553), + [aux_sym_unset_command_repeat1] = STATE(640), + [sym_process_substitution] = STATE(553), + [sym_simple_expansion] = STATE(553), + [sym_string_expansion] = STATE(553), + [sym_concatenation] = STATE(640), + [sym_expansion] = STATE(553), [anon_sym_PIPE_AMP] = ACTIONS(153), [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_DOLLAR] = ACTIONS(2452), [anon_sym_LT_LT] = ACTIONS(153), - [anon_sym_BQUOTE] = ACTIONS(2450), - [anon_sym_GT_LPAREN] = ACTIONS(2452), - [sym_number] = ACTIONS(2454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2454), + [anon_sym_GT_LPAREN] = ACTIONS(2456), + [sym_number] = ACTIONS(2458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), [anon_sym_PIPE_PIPE] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(153), - [sym_word] = ACTIONS(2454), + [sym_word] = ACTIONS(2458), [anon_sym_LT] = ACTIONS(153), [anon_sym_LT_AMP] = ACTIONS(153), [anon_sym_GT_GT] = ACTIONS(153), - [sym__special_character] = ACTIONS(2458), + [sym__special_character] = ACTIONS(2462), [anon_sym_LT_LT_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(167), [anon_sym_SEMI] = ACTIONS(153), - [sym_raw_string] = ACTIONS(2454), + [sym_raw_string] = ACTIONS(2458), [sym_file_descriptor] = ACTIONS(167), [anon_sym_GT] = ACTIONS(153), [anon_sym_AMP_GT] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_DQUOTE] = ACTIONS(2464), [anon_sym_LT_LT_LT] = ACTIONS(153), [anon_sym_GT_AMP] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), [anon_sym_esac] = ACTIONS(153), - [aux_sym__simple_variable_name_token1] = ACTIONS(2464), - [sym_ansii_c_string] = ACTIONS(2454), - [anon_sym_LT_LPAREN] = ACTIONS(2452), + [aux_sym__simple_variable_name_token1] = ACTIONS(2468), + [sym_ansii_c_string] = ACTIONS(2458), + [anon_sym_LT_LPAREN] = ACTIONS(2456), [anon_sym_AMP_AMP] = ACTIONS(153), [anon_sym_SEMI_SEMI] = ACTIONS(153), [anon_sym_AMP] = ACTIONS(153), }, - [633] = { - [aux_sym_concatenation_repeat1] = STATE(643), + [634] = { + [aux_sym_concatenation_repeat1] = STATE(644), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -25811,17 +25870,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [634] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_AMP] = ACTIONS(2002), + [635] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_AMP] = ACTIONS(2006), [anon_sym_LT_LT_DASH] = ACTIONS(489), [anon_sym_AMP_GT_GT] = ACTIONS(493), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2006), [sym_file_descriptor] = ACTIONS(499), [anon_sym_LT_LT] = ACTIONS(489), [anon_sym_GT] = ACTIONS(493), @@ -25834,15 +25893,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(493), [anon_sym_GT_GT] = ACTIONS(493), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2006), + [anon_sym_SEMI_SEMI] = ACTIONS(2010), [anon_sym_PIPE_AMP] = ACTIONS(491), }, - [635] = { - [sym_heredoc_redirect] = STATE(2622), - [aux_sym_redirected_statement_repeat1] = STATE(2622), - [sym_herestring_redirect] = STATE(2622), - [sym_file_redirect] = STATE(2622), - [anon_sym_AMP] = ACTIONS(2254), + [636] = { + [sym_heredoc_redirect] = STATE(2636), + [aux_sym_redirected_statement_repeat1] = STATE(2636), + [sym_herestring_redirect] = STATE(2636), + [sym_file_redirect] = STATE(2636), + [anon_sym_AMP] = ACTIONS(2258), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_LT_LT] = ACTIONS(489), @@ -25850,8 +25909,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PIPE_PIPE] = ACTIONS(2262), + [anon_sym_PIPE] = ACTIONS(2252), [sym_word] = ACTIONS(331), [anon_sym_LT] = ACTIONS(331), [anon_sym_LT_AMP] = ACTIONS(331), @@ -25860,235 +25919,235 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2258), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(2260), + [anon_sym_LT_LT_LT] = ACTIONS(2264), [anon_sym_GT_AMP] = ACTIONS(331), [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_esac] = ACTIONS(2006), + [anon_sym_esac] = ACTIONS(2010), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(2258), - [anon_sym_SEMI_SEMI] = ACTIONS(2006), - [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_AMP_AMP] = ACTIONS(2262), + [anon_sym_SEMI_SEMI] = ACTIONS(2010), + [anon_sym_PIPE_AMP] = ACTIONS(2252), }, - [636] = { - [aux_sym__literal_repeat1] = STATE(539), - [sym_if_statement] = STATE(651), - [sym_function_definition] = STATE(651), - [sym_negated_command] = STATE(651), - [sym_test_command] = STATE(651), - [sym_variable_assignment] = STATE(652), - [sym_subscript] = STATE(2473), - [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), + [637] = { + [aux_sym__literal_repeat1] = STATE(540), + [sym_if_statement] = STATE(652), + [sym_function_definition] = STATE(652), + [sym_negated_command] = STATE(652), + [sym_test_command] = STATE(652), + [sym_variable_assignment] = STATE(653), + [sym_subscript] = STATE(2494), + [sym_concatenation] = STATE(543), + [sym_expansion] = STATE(536), + [sym_command_substitution] = STATE(536), [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(651), - [sym_for_statement] = STATE(651), - [sym_compound_statement] = STATE(651), - [sym_subshell] = STATE(651), - [sym_declaration_command] = STATE(651), - [sym_unset_command] = STATE(651), - [sym_file_redirect] = STATE(544), - [sym_string] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat1] = STATE(544), - [sym_c_style_for_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_case_statement] = STATE(651), - [sym_pipeline] = STATE(651), - [sym_list] = STATE(651), - [sym_command] = STATE(651), - [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(535), - [sym_string_expansion] = STATE(535), + [sym_redirected_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_compound_statement] = STATE(652), + [sym_subshell] = STATE(652), + [sym_declaration_command] = STATE(652), + [sym_unset_command] = STATE(652), + [sym_file_redirect] = STATE(545), + [sym_string] = STATE(536), + [sym_process_substitution] = STATE(536), + [aux_sym_command_repeat1] = STATE(545), + [sym_c_style_for_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_pipeline] = STATE(652), + [sym_list] = STATE(652), + [sym_command] = STATE(652), + [sym_command_name] = STATE(638), + [sym_simple_expansion] = STATE(536), + [sym_string_expansion] = STATE(536), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1730), - [anon_sym_typeset] = ACTIONS(1730), - [anon_sym_unsetenv] = ACTIONS(1732), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [sym_number] = ACTIONS(1740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_typeset] = ACTIONS(1734), + [anon_sym_unsetenv] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym_number] = ACTIONS(1744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1744), + [sym_word] = ACTIONS(1748), [anon_sym_LBRACE] = ACTIONS(83), [anon_sym_LT] = ACTIONS(29), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1734), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1746), + [sym__special_character] = ACTIONS(1750), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1748), + [sym_raw_string] = ACTIONS(1752), [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_declare] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_declare] = ACTIONS(1734), + [sym_variable_name] = ACTIONS(1756), [sym_file_descriptor] = ACTIONS(47), [anon_sym_GT] = ACTIONS(29), [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1730), - [anon_sym_unset] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1734), + [anon_sym_unset] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1758), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1742), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1748), + [sym_ansii_c_string] = ACTIONS(1752), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [637] = { - [sym_command_substitution] = STATE(573), - [aux_sym__literal_repeat1] = STATE(574), - [sym_string] = STATE(573), - [sym_process_substitution] = STATE(573), - [sym_simple_expansion] = STATE(573), - [sym_string_expansion] = STATE(573), - [aux_sym_command_repeat2] = STATE(654), - [sym_concatenation] = STATE(654), - [sym_expansion] = STATE(573), + [638] = { + [sym_command_substitution] = STATE(574), + [aux_sym__literal_repeat1] = STATE(575), + [sym_string] = STATE(574), + [sym_process_substitution] = STATE(574), + [sym_simple_expansion] = STATE(574), + [sym_string_expansion] = STATE(574), + [aux_sym_command_repeat2] = STATE(655), + [sym_concatenation] = STATE(655), + [sym_expansion] = STATE(574), [anon_sym_PIPE_AMP] = ACTIONS(341), [anon_sym_AMP_GT_GT] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1738), [anon_sym_LT_LT] = ACTIONS(341), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_GT_LPAREN] = ACTIONS(2470), - [sym_number] = ACTIONS(2472), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2474), + [anon_sym_BQUOTE] = ACTIONS(2472), + [anon_sym_GT_LPAREN] = ACTIONS(2474), + [sym_number] = ACTIONS(2476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2478), [anon_sym_PIPE_PIPE] = ACTIONS(341), [anon_sym_PIPE] = ACTIONS(341), - [sym_word] = ACTIONS(2472), + [sym_word] = ACTIONS(2476), [anon_sym_LT] = ACTIONS(341), [anon_sym_LT_AMP] = ACTIONS(341), [anon_sym_GT_GT] = ACTIONS(341), - [anon_sym_EQ_TILDE] = ACTIONS(2476), - [sym__special_character] = ACTIONS(1746), + [anon_sym_EQ_TILDE] = ACTIONS(2480), + [sym__special_character] = ACTIONS(1750), [anon_sym_LT_LT_DASH] = ACTIONS(341), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(353), [anon_sym_SEMI] = ACTIONS(341), - [sym_raw_string] = ACTIONS(2472), + [sym_raw_string] = ACTIONS(2476), [sym_file_descriptor] = ACTIONS(353), [anon_sym_GT] = ACTIONS(341), [anon_sym_AMP_GT] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_EQ_EQ] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2482), [anon_sym_LT_LT_LT] = ACTIONS(341), [anon_sym_GT_AMP] = ACTIONS(341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), [anon_sym_esac] = ACTIONS(341), - [anon_sym_LT_LPAREN] = ACTIONS(2470), - [sym_ansii_c_string] = ACTIONS(2472), + [anon_sym_LT_LPAREN] = ACTIONS(2474), + [sym_ansii_c_string] = ACTIONS(2476), [anon_sym_AMP_AMP] = ACTIONS(341), [anon_sym_SEMI_SEMI] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(341), }, - [638] = { - [sym_command_substitution] = STATE(549), - [aux_sym__literal_repeat1] = STATE(550), - [sym_string] = STATE(549), - [aux_sym_declaration_command_repeat1] = STATE(576), - [sym_process_substitution] = STATE(549), - [sym_simple_expansion] = STATE(549), - [sym_subscript] = STATE(2482), - [sym_string_expansion] = STATE(549), - [sym_variable_assignment] = STATE(576), - [sym_concatenation] = STATE(576), - [sym_expansion] = STATE(549), + [639] = { + [sym_command_substitution] = STATE(550), + [aux_sym__literal_repeat1] = STATE(551), + [sym_string] = STATE(550), + [aux_sym_declaration_command_repeat1] = STATE(577), + [sym_process_substitution] = STATE(550), + [sym_simple_expansion] = STATE(550), + [sym_subscript] = STATE(2503), + [sym_string_expansion] = STATE(550), + [sym_variable_assignment] = STATE(577), + [sym_concatenation] = STATE(577), + [sym_expansion] = STATE(550), [anon_sym_PIPE_AMP] = ACTIONS(385), [anon_sym_AMP_GT_GT] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(2428), + [anon_sym_DOLLAR] = ACTIONS(2432), [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(2430), - [anon_sym_GT_LPAREN] = ACTIONS(2432), - [sym_number] = ACTIONS(2434), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2436), + [anon_sym_BQUOTE] = ACTIONS(2434), + [anon_sym_GT_LPAREN] = ACTIONS(2436), + [sym_number] = ACTIONS(2438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), [anon_sym_PIPE_PIPE] = ACTIONS(385), [anon_sym_PIPE] = ACTIONS(385), - [sym_word] = ACTIONS(2434), + [sym_word] = ACTIONS(2438), [anon_sym_LT] = ACTIONS(385), [anon_sym_LT_AMP] = ACTIONS(385), [anon_sym_GT_GT] = ACTIONS(385), - [sym__special_character] = ACTIONS(2438), + [sym__special_character] = ACTIONS(2442), [anon_sym_LT_LT_DASH] = ACTIONS(385), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(387), [anon_sym_SEMI] = ACTIONS(385), - [sym_raw_string] = ACTIONS(2434), - [sym_variable_name] = ACTIONS(2440), + [sym_raw_string] = ACTIONS(2438), + [sym_variable_name] = ACTIONS(2444), [sym_file_descriptor] = ACTIONS(387), [anon_sym_GT] = ACTIONS(385), [anon_sym_AMP_GT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2446), [anon_sym_LT_LT_LT] = ACTIONS(385), [anon_sym_GT_AMP] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2448), [anon_sym_esac] = ACTIONS(385), - [aux_sym__simple_variable_name_token1] = ACTIONS(2482), - [sym_ansii_c_string] = ACTIONS(2434), - [anon_sym_LT_LPAREN] = ACTIONS(2432), + [aux_sym__simple_variable_name_token1] = ACTIONS(2486), + [sym_ansii_c_string] = ACTIONS(2438), + [anon_sym_LT_LPAREN] = ACTIONS(2436), [anon_sym_AMP_AMP] = ACTIONS(385), [anon_sym_SEMI_SEMI] = ACTIONS(385), [anon_sym_AMP] = ACTIONS(385), }, - [639] = { - [sym_command_substitution] = STATE(552), - [aux_sym__literal_repeat1] = STATE(553), - [sym_string] = STATE(552), - [aux_sym_unset_command_repeat1] = STATE(577), - [sym_process_substitution] = STATE(552), - [sym_simple_expansion] = STATE(552), - [sym_string_expansion] = STATE(552), - [sym_concatenation] = STATE(577), - [sym_expansion] = STATE(552), + [640] = { + [sym_command_substitution] = STATE(553), + [aux_sym__literal_repeat1] = STATE(554), + [sym_string] = STATE(553), + [aux_sym_unset_command_repeat1] = STATE(578), + [sym_process_substitution] = STATE(553), + [sym_simple_expansion] = STATE(553), + [sym_string_expansion] = STATE(553), + [sym_concatenation] = STATE(578), + [sym_expansion] = STATE(553), [anon_sym_PIPE_AMP] = ACTIONS(403), [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_DOLLAR] = ACTIONS(2452), [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(2450), - [anon_sym_GT_LPAREN] = ACTIONS(2452), - [sym_number] = ACTIONS(2454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2454), + [anon_sym_GT_LPAREN] = ACTIONS(2456), + [sym_number] = ACTIONS(2458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), [anon_sym_PIPE_PIPE] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), - [sym_word] = ACTIONS(2454), + [sym_word] = ACTIONS(2458), [anon_sym_LT] = ACTIONS(403), [anon_sym_LT_AMP] = ACTIONS(403), [anon_sym_GT_GT] = ACTIONS(403), - [sym__special_character] = ACTIONS(2458), + [sym__special_character] = ACTIONS(2462), [anon_sym_LT_LT_DASH] = ACTIONS(403), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(405), [anon_sym_SEMI] = ACTIONS(403), - [sym_raw_string] = ACTIONS(2454), + [sym_raw_string] = ACTIONS(2458), [sym_file_descriptor] = ACTIONS(405), [anon_sym_GT] = ACTIONS(403), [anon_sym_AMP_GT] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(2460), + [anon_sym_DQUOTE] = ACTIONS(2464), [anon_sym_LT_LT_LT] = ACTIONS(403), [anon_sym_GT_AMP] = ACTIONS(403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), [anon_sym_esac] = ACTIONS(403), - [aux_sym__simple_variable_name_token1] = ACTIONS(2484), - [sym_ansii_c_string] = ACTIONS(2454), - [anon_sym_LT_LPAREN] = ACTIONS(2452), + [aux_sym__simple_variable_name_token1] = ACTIONS(2488), + [sym_ansii_c_string] = ACTIONS(2458), + [anon_sym_LT_LPAREN] = ACTIONS(2456), [anon_sym_AMP_AMP] = ACTIONS(403), [anon_sym_SEMI_SEMI] = ACTIONS(403), [anon_sym_AMP] = ACTIONS(403), }, - [640] = { + [641] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -26126,7 +26185,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [641] = { + [642] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -26164,7 +26223,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [642] = { + [643] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -26202,8 +26261,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [643] = { - [aux_sym_concatenation_repeat1] = STATE(659), + [644] = { + [aux_sym_concatenation_repeat1] = STATE(660), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -26213,7 +26272,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2486), + [sym__concat] = ACTIONS(2490), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -26241,7 +26300,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [644] = { + [645] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -26279,7 +26338,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [645] = { + [646] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -26316,310 +26375,310 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [646] = { - [aux_sym__literal_repeat1] = STATE(646), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [sym__special_character] = ACTIONS(2488), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [sym_variable_name] = ACTIONS(650), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [ts_builtin_sym_end] = ACTIONS(650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [aux_sym__simple_variable_name_token1] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), - }, [647] = { - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_esac] = ACTIONS(2049), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), - [anon_sym_SEMI_SEMI] = ACTIONS(656), + [aux_sym__literal_repeat1] = STATE(647), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [sym__special_character] = ACTIONS(2492), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [sym_variable_name] = ACTIONS(652), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [ts_builtin_sym_end] = ACTIONS(652), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [aux_sym__simple_variable_name_token1] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, [648] = { - [aux_sym__literal_repeat1] = STATE(539), - [sym_if_statement] = STATE(2623), - [sym_function_definition] = STATE(2623), - [sym_negated_command] = STATE(2623), - [sym_test_command] = STATE(2623), - [sym_variable_assignment] = STATE(667), - [sym_subscript] = STATE(2473), - [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [sym_redirected_statement] = STATE(2623), - [sym_for_statement] = STATE(2623), - [sym_compound_statement] = STATE(2623), - [sym_subshell] = STATE(2623), - [sym_declaration_command] = STATE(2623), - [sym_unset_command] = STATE(2623), - [sym_file_redirect] = STATE(544), - [sym_string] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat1] = STATE(544), - [sym_c_style_for_statement] = STATE(2623), - [sym_while_statement] = STATE(2623), - [sym_case_statement] = STATE(2623), - [sym_pipeline] = STATE(2623), - [sym_list] = STATE(2623), - [sym_command] = STATE(2623), - [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(535), - [sym_string_expansion] = STATE(535), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_esac] = ACTIONS(2053), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_SEMI_SEMI] = ACTIONS(658), + }, + [649] = { + [aux_sym__literal_repeat1] = STATE(540), + [sym_if_statement] = STATE(2637), + [sym_function_definition] = STATE(2637), + [sym_negated_command] = STATE(2637), + [sym_test_command] = STATE(2637), + [sym_variable_assignment] = STATE(668), + [sym_subscript] = STATE(2494), + [sym_concatenation] = STATE(543), + [sym_expansion] = STATE(536), + [sym_command_substitution] = STATE(536), + [sym_redirected_statement] = STATE(2637), + [sym_for_statement] = STATE(2637), + [sym_compound_statement] = STATE(2637), + [sym_subshell] = STATE(2637), + [sym_declaration_command] = STATE(2637), + [sym_unset_command] = STATE(2637), + [sym_file_redirect] = STATE(545), + [sym_string] = STATE(536), + [sym_process_substitution] = STATE(536), + [aux_sym_command_repeat1] = STATE(545), + [sym_c_style_for_statement] = STATE(2637), + [sym_while_statement] = STATE(2637), + [sym_case_statement] = STATE(2637), + [sym_pipeline] = STATE(2637), + [sym_list] = STATE(2637), + [sym_command] = STATE(2637), + [sym_command_name] = STATE(638), + [sym_simple_expansion] = STATE(536), + [sym_string_expansion] = STATE(536), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1730), - [anon_sym_typeset] = ACTIONS(1730), - [anon_sym_unsetenv] = ACTIONS(1732), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [sym_number] = ACTIONS(1740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_typeset] = ACTIONS(1734), + [anon_sym_unsetenv] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym_number] = ACTIONS(1744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1744), + [sym_word] = ACTIONS(1748), [anon_sym_LBRACE] = ACTIONS(83), [anon_sym_LT] = ACTIONS(29), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1734), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1746), + [sym__special_character] = ACTIONS(1750), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1748), + [sym_raw_string] = ACTIONS(1752), [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_declare] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_declare] = ACTIONS(1734), + [sym_variable_name] = ACTIONS(1756), [sym_file_descriptor] = ACTIONS(47), [anon_sym_GT] = ACTIONS(29), [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1730), - [anon_sym_unset] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1734), + [anon_sym_unset] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1758), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1742), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1748), + [sym_ansii_c_string] = ACTIONS(1752), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [649] = { - [sym_heredoc_body] = STATE(598), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(967), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_esac] = ACTIONS(2049), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), - [anon_sym_SEMI_SEMI] = ACTIONS(656), - }, [650] = { - [aux_sym__literal_repeat1] = STATE(539), - [sym_if_statement] = STATE(669), - [sym_function_definition] = STATE(669), - [sym_negated_command] = STATE(669), - [sym_test_command] = STATE(669), - [sym_variable_assignment] = STATE(670), - [sym_subscript] = STATE(2473), - [sym_concatenation] = STATE(542), - [sym_expansion] = STATE(535), - [sym_command_substitution] = STATE(535), - [sym_redirected_statement] = STATE(669), - [sym_for_statement] = STATE(669), - [sym_compound_statement] = STATE(669), - [sym_subshell] = STATE(669), - [sym_declaration_command] = STATE(669), - [sym_unset_command] = STATE(669), - [sym_file_redirect] = STATE(544), - [sym_string] = STATE(535), - [sym_process_substitution] = STATE(535), - [aux_sym_command_repeat1] = STATE(544), - [sym_c_style_for_statement] = STATE(669), - [sym_while_statement] = STATE(669), - [sym_case_statement] = STATE(669), - [sym_pipeline] = STATE(669), - [sym_list] = STATE(669), - [sym_command] = STATE(669), - [sym_command_name] = STATE(637), - [sym_simple_expansion] = STATE(535), - [sym_string_expansion] = STATE(535), + [sym_heredoc_body] = STATE(599), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(969), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_esac] = ACTIONS(2053), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_SEMI_SEMI] = ACTIONS(658), + }, + [651] = { + [aux_sym__literal_repeat1] = STATE(540), + [sym_if_statement] = STATE(670), + [sym_function_definition] = STATE(670), + [sym_negated_command] = STATE(670), + [sym_test_command] = STATE(670), + [sym_variable_assignment] = STATE(671), + [sym_subscript] = STATE(2494), + [sym_concatenation] = STATE(543), + [sym_expansion] = STATE(536), + [sym_command_substitution] = STATE(536), + [sym_redirected_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_compound_statement] = STATE(670), + [sym_subshell] = STATE(670), + [sym_declaration_command] = STATE(670), + [sym_unset_command] = STATE(670), + [sym_file_redirect] = STATE(545), + [sym_string] = STATE(536), + [sym_process_substitution] = STATE(536), + [aux_sym_command_repeat1] = STATE(545), + [sym_c_style_for_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_pipeline] = STATE(670), + [sym_list] = STATE(670), + [sym_command] = STATE(670), + [sym_command_name] = STATE(638), + [sym_simple_expansion] = STATE(536), + [sym_string_expansion] = STATE(536), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1730), - [anon_sym_typeset] = ACTIONS(1730), - [anon_sym_unsetenv] = ACTIONS(1732), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [sym_number] = ACTIONS(1740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_typeset] = ACTIONS(1734), + [anon_sym_unsetenv] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym_number] = ACTIONS(1744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1744), + [sym_word] = ACTIONS(1748), [anon_sym_LBRACE] = ACTIONS(83), [anon_sym_LT] = ACTIONS(29), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1734), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1746), + [sym__special_character] = ACTIONS(1750), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1748), + [sym_raw_string] = ACTIONS(1752), [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_declare] = ACTIONS(1730), - [sym_variable_name] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_declare] = ACTIONS(1734), + [sym_variable_name] = ACTIONS(1756), [sym_file_descriptor] = ACTIONS(47), [anon_sym_GT] = ACTIONS(29), [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1730), - [anon_sym_unset] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1734), + [anon_sym_unset] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1758), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_LT_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1742), [anon_sym_for] = ACTIONS(103), [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1748), + [sym_ansii_c_string] = ACTIONS(1752), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [651] = { - [sym_heredoc_redirect] = STATE(2622), - [aux_sym_redirected_statement_repeat1] = STATE(2622), - [sym_herestring_redirect] = STATE(2622), - [sym_file_redirect] = STATE(2622), + [652] = { + [sym_heredoc_redirect] = STATE(2636), + [aux_sym_redirected_statement_repeat1] = STATE(2636), + [sym_herestring_redirect] = STATE(2636), + [sym_file_redirect] = STATE(2636), [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_PIPE_AMP] = ACTIONS(2248), - [anon_sym_AMP_GT_GT] = ACTIONS(2250), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_GT_GT] = ACTIONS(2254), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [sym_file_descriptor] = ACTIONS(2256), + [anon_sym_LF] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [sym_file_descriptor] = ACTIONS(2260), [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(2250), - [anon_sym_AMP_GT] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2258), - [anon_sym_LT_LT_LT] = ACTIONS(2260), - [anon_sym_GT_AMP] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2248), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_esac] = ACTIONS(2049), - [anon_sym_LT_AMP] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(2258), - [anon_sym_SEMI_SEMI] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_AMP_GT] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2262), + [anon_sym_LT_LT_LT] = ACTIONS(2264), + [anon_sym_GT_AMP] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_esac] = ACTIONS(2053), + [anon_sym_LT_AMP] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2262), + [anon_sym_SEMI_SEMI] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2497), }, - [652] = { - [sym_heredoc_redirect] = STATE(2622), - [aux_sym_redirected_statement_repeat1] = STATE(2622), - [sym_herestring_redirect] = STATE(2622), - [sym_file_redirect] = STATE(2622), - [anon_sym_PIPE_AMP] = ACTIONS(2248), + [653] = { + [sym_heredoc_redirect] = STATE(2636), + [aux_sym_redirected_statement_repeat1] = STATE(2636), + [sym_herestring_redirect] = STATE(2636), + [sym_file_redirect] = STATE(2636), + [anon_sym_PIPE_AMP] = ACTIONS(2252), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_LT_LT] = ACTIONS(489), @@ -26627,8 +26686,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PIPE_PIPE] = ACTIONS(2262), + [anon_sym_PIPE] = ACTIONS(2252), [sym_word] = ACTIONS(331), [anon_sym_LT] = ACTIONS(331), [anon_sym_LT_AMP] = ACTIONS(331), @@ -26637,1153 +26696,1115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_LF] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(2260), + [anon_sym_LT_LT_LT] = ACTIONS(2264), [anon_sym_GT_AMP] = ACTIONS(331), [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_esac] = ACTIONS(2049), + [anon_sym_esac] = ACTIONS(2053), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(2258), - [anon_sym_SEMI_SEMI] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2493), - }, - [653] = { - [sym_command_substitution] = STATE(573), - [aux_sym__literal_repeat1] = STATE(574), - [sym_string] = STATE(573), - [sym_process_substitution] = STATE(573), - [sym_simple_expansion] = STATE(573), - [sym_string_expansion] = STATE(573), - [aux_sym_command_repeat2] = STATE(673), - [sym_concatenation] = STATE(673), - [sym_expansion] = STATE(573), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_GT_LPAREN] = ACTIONS(2470), - [sym_number] = ACTIONS(2472), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [sym_word] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_EQ_TILDE] = ACTIONS(2476), - [sym__special_character] = ACTIONS(1746), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), - [sym_raw_string] = ACTIONS(2472), - [sym_file_descriptor] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_LT_LT_LT] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2480), - [anon_sym_esac] = ACTIONS(771), - [anon_sym_LT_LPAREN] = ACTIONS(2470), - [sym_ansii_c_string] = ACTIONS(2472), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(2262), + [anon_sym_SEMI_SEMI] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2497), }, [654] = { - [sym_command_substitution] = STATE(573), - [aux_sym__literal_repeat1] = STATE(574), - [sym_string] = STATE(573), - [sym_process_substitution] = STATE(573), - [sym_simple_expansion] = STATE(573), - [sym_string_expansion] = STATE(573), - [aux_sym_command_repeat2] = STATE(607), - [sym_concatenation] = STATE(607), - [sym_expansion] = STATE(573), - [anon_sym_PIPE_AMP] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_GT_LPAREN] = ACTIONS(2470), - [sym_number] = ACTIONS(2472), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [sym_word] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_AMP] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_EQ_TILDE] = ACTIONS(2476), - [sym__special_character] = ACTIONS(1746), - [anon_sym_LT_LT_DASH] = ACTIONS(771), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), - [sym_raw_string] = ACTIONS(2472), - [sym_file_descriptor] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_LT_LT_LT] = ACTIONS(771), - [anon_sym_GT_AMP] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2480), - [anon_sym_esac] = ACTIONS(771), - [anon_sym_LT_LPAREN] = ACTIONS(2470), - [sym_ansii_c_string] = ACTIONS(2472), - [anon_sym_AMP_AMP] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), + [sym_command_substitution] = STATE(574), + [aux_sym__literal_repeat1] = STATE(575), + [sym_string] = STATE(574), + [sym_process_substitution] = STATE(574), + [sym_simple_expansion] = STATE(574), + [sym_string_expansion] = STATE(574), + [aux_sym_command_repeat2] = STATE(674), + [sym_concatenation] = STATE(674), + [sym_expansion] = STATE(574), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_LT_LT] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(2472), + [anon_sym_GT_LPAREN] = ACTIONS(2474), + [sym_number] = ACTIONS(2476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2478), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [sym_word] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(2480), + [sym__special_character] = ACTIONS(1750), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(773), + [sym_raw_string] = ACTIONS(2476), + [sym_file_descriptor] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_LT_LPAREN] = ACTIONS(2474), + [sym_ansii_c_string] = ACTIONS(2476), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(773), }, [655] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [sym_command_substitution] = STATE(574), + [aux_sym__literal_repeat1] = STATE(575), + [sym_string] = STATE(574), + [sym_process_substitution] = STATE(574), + [sym_simple_expansion] = STATE(574), + [sym_string_expansion] = STATE(574), + [aux_sym_command_repeat2] = STATE(608), + [sym_concatenation] = STATE(608), + [sym_expansion] = STATE(574), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_LT_LT] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(2472), + [anon_sym_GT_LPAREN] = ACTIONS(2474), + [sym_number] = ACTIONS(2476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2478), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [sym_word] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(2480), + [sym__special_character] = ACTIONS(1750), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(773), + [sym_raw_string] = ACTIONS(2476), + [sym_file_descriptor] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_LT_LPAREN] = ACTIONS(2474), + [sym_ansii_c_string] = ACTIONS(2476), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(773), }, [656] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [sym_variable_name] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [ts_builtin_sym_end] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [aux_sym__simple_variable_name_token1] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [657] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [sym_variable_name] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [ts_builtin_sym_end] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [aux_sym__simple_variable_name_token1] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [658] = { - [sym_command_substitution] = STATE(657), - [sym_simple_expansion] = STATE(657), - [sym_string_expansion] = STATE(657), - [sym_string] = STATE(657), - [sym_process_substitution] = STATE(657), - [sym_expansion] = STATE(657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2499), - [sym_word] = ACTIONS(2501), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2503), - [anon_sym_DOLLAR] = ACTIONS(2505), - [anon_sym_LT_LPAREN] = ACTIONS(2507), - [sym_ansii_c_string] = ACTIONS(2499), - [anon_sym_BQUOTE] = ACTIONS(2509), - [anon_sym_GT_LPAREN] = ACTIONS(2507), - [sym__special_character] = ACTIONS(2499), - [sym_number] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [659] = { - [aux_sym_concatenation_repeat1] = STATE(659), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [sym_command_substitution] = STATE(658), + [sym_simple_expansion] = STATE(658), + [sym_string_expansion] = STATE(658), + [sym_string] = STATE(658), + [sym_process_substitution] = STATE(658), + [sym_expansion] = STATE(658), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2503), + [sym_word] = ACTIONS(2505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2507), + [anon_sym_DOLLAR] = ACTIONS(2509), + [anon_sym_LT_LPAREN] = ACTIONS(2511), + [sym_ansii_c_string] = ACTIONS(2503), + [anon_sym_BQUOTE] = ACTIONS(2513), + [anon_sym_GT_LPAREN] = ACTIONS(2511), + [sym__special_character] = ACTIONS(2503), + [sym_number] = ACTIONS(2505), }, [660] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(660), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2515), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [sym_variable_name] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [ts_builtin_sym_end] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [aux_sym__simple_variable_name_token1] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [661] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [sym_variable_name] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [ts_builtin_sym_end] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [aux_sym__simple_variable_name_token1] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [sym_variable_name] = ACTIONS(909), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [ts_builtin_sym_end] = ACTIONS(909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [aux_sym__simple_variable_name_token1] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, [662] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [sym_variable_name] = ACTIONS(961), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [aux_sym__simple_variable_name_token1] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, [663] = { - [aux_sym_concatenation_repeat1] = STATE(558), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__concat] = ACTIONS(365), - [anon_sym_GT_AMP] = ACTIONS(1033), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1035), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1035), + [sym_variable_name] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_AMP_GT] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [anon_sym_GT_AMP] = ACTIONS(1035), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [sym_ansii_c_string] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), + [anon_sym_LT_LPAREN] = ACTIONS(1035), + [sym__special_character] = ACTIONS(1035), }, [664] = { - [aux_sym__literal_repeat1] = STATE(564), - [anon_sym_AMP_GT_GT] = ACTIONS(1041), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1037), - [sym_file_descriptor] = ACTIONS(1041), - [sym_variable_name] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1041), - [anon_sym_AMP_GT] = ACTIONS(1037), - [sym_number] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym_GT_AMP] = ACTIONS(1041), - [sym_word] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [sym_ansii_c_string] = ACTIONS(1041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1041), - [anon_sym_LT_LPAREN] = ACTIONS(1041), - [sym__special_character] = ACTIONS(371), + [aux_sym_concatenation_repeat1] = STATE(559), + [anon_sym_AMP_GT_GT] = ACTIONS(1035), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1035), + [sym_variable_name] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_AMP_GT] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym__concat] = ACTIONS(365), + [anon_sym_GT_AMP] = ACTIONS(1035), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [sym_ansii_c_string] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), + [anon_sym_LT_LPAREN] = ACTIONS(1035), + [sym__special_character] = ACTIONS(1035), }, [665] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [sym_variable_name] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [aux_sym__simple_variable_name_token1] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [aux_sym__literal_repeat1] = STATE(565), + [anon_sym_AMP_GT_GT] = ACTIONS(1043), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1039), + [sym_file_descriptor] = ACTIONS(1043), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1043), + [anon_sym_AMP_GT] = ACTIONS(1039), + [sym_number] = ACTIONS(1039), + [anon_sym_GT_LPAREN] = ACTIONS(1043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_GT_AMP] = ACTIONS(1043), + [sym_word] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_LT_AMP] = ACTIONS(1043), + [anon_sym_GT_GT] = ACTIONS(1043), + [sym_ansii_c_string] = ACTIONS(1043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), + [anon_sym_LT_LPAREN] = ACTIONS(1043), + [sym__special_character] = ACTIONS(371), }, [666] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(1067), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [aux_sym__simple_variable_name_token1] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [667] = { - [sym_heredoc_redirect] = STATE(2622), - [aux_sym_redirected_statement_repeat1] = STATE(2622), - [sym_herestring_redirect] = STATE(2622), - [sym_file_redirect] = STATE(2622), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), + }, + [668] = { + [sym_heredoc_redirect] = STATE(2636), + [aux_sym_redirected_statement_repeat1] = STATE(2636), + [sym_herestring_redirect] = STATE(2636), + [sym_file_redirect] = STATE(2636), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1126), [anon_sym_BQUOTE] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_GT_GT] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1122), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1122), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_esac] = ACTIONS(1122), + [anon_sym_esac] = ACTIONS(1126), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), - }, - [668] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2133), - [anon_sym_SEMI_SEMI] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), }, [669] = { - [sym_heredoc_redirect] = STATE(2622), - [aux_sym_redirected_statement_repeat1] = STATE(2622), - [sym_herestring_redirect] = STATE(2622), - [sym_file_redirect] = STATE(2622), - [anon_sym_LT_LT_DASH] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_AMP_GT_GT] = ACTIONS(1152), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1152), - [sym_file_descriptor] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_AMP_GT] = ACTIONS(1152), - [anon_sym_PIPE_PIPE] = ACTIONS(1152), - [anon_sym_LT_LT_LT] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(2248), - [anon_sym_GT_AMP] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_esac] = ACTIONS(1152), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_LT_AMP] = ACTIONS(1152), - [anon_sym_AMP_AMP] = ACTIONS(1152), - [anon_sym_SEMI_SEMI] = ACTIONS(1152), - [anon_sym_PIPE_AMP] = ACTIONS(2248), + [anon_sym_LF] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_SEMI_SEMI] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2137), }, [670] = { - [sym_heredoc_redirect] = STATE(2622), - [aux_sym_redirected_statement_repeat1] = STATE(2622), - [sym_herestring_redirect] = STATE(2622), - [sym_file_redirect] = STATE(2622), - [anon_sym_AMP] = ACTIONS(1152), + [sym_heredoc_redirect] = STATE(2636), + [aux_sym_redirected_statement_repeat1] = STATE(2636), + [sym_herestring_redirect] = STATE(2636), + [sym_file_redirect] = STATE(2636), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_LT_LT] = ACTIONS(1156), + [sym_file_descriptor] = ACTIONS(1158), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_AMP_GT] = ACTIONS(1156), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_GT_AMP] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_esac] = ACTIONS(1156), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_LT_AMP] = ACTIONS(1156), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + }, + [671] = { + [sym_heredoc_redirect] = STATE(2636), + [aux_sym_redirected_statement_repeat1] = STATE(2636), + [sym_herestring_redirect] = STATE(2636), + [sym_file_redirect] = STATE(2636), + [anon_sym_AMP] = ACTIONS(1156), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1156), [anon_sym_BQUOTE] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(2252), [sym_word] = ACTIONS(331), [anon_sym_LT] = ACTIONS(331), [anon_sym_LT_AMP] = ACTIONS(331), [anon_sym_GT_GT] = ACTIONS(331), [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1156), [anon_sym_GT_AMP] = ACTIONS(331), [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_esac] = ACTIONS(1152), + [anon_sym_esac] = ACTIONS(1156), [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1152), - [anon_sym_SEMI_SEMI] = ACTIONS(1152), - [anon_sym_PIPE_AMP] = ACTIONS(2248), - }, - [671] = { - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_esac] = ACTIONS(2129), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), - [anon_sym_SEMI_SEMI] = ACTIONS(1142), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(2252), }, [672] = { - [sym_heredoc_body] = STATE(618), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(967), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_esac] = ACTIONS(2129), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), - [anon_sym_SEMI_SEMI] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_esac] = ACTIONS(2133), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), }, [673] = { - [sym_command_substitution] = STATE(573), - [aux_sym__literal_repeat1] = STATE(574), - [sym_string] = STATE(573), - [sym_process_substitution] = STATE(573), - [sym_simple_expansion] = STATE(573), - [sym_string_expansion] = STATE(573), - [aux_sym_command_repeat2] = STATE(607), - [sym_concatenation] = STATE(607), - [sym_expansion] = STATE(573), - [anon_sym_PIPE_AMP] = ACTIONS(1184), - [anon_sym_AMP_GT_GT] = ACTIONS(1184), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_GT_LPAREN] = ACTIONS(2470), - [sym_number] = ACTIONS(2472), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [sym_word] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_LT_AMP] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_EQ_TILDE] = ACTIONS(2476), - [sym__special_character] = ACTIONS(1746), - [anon_sym_LT_LT_DASH] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1184), - [sym_raw_string] = ACTIONS(2472), - [sym_file_descriptor] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_AMP_GT] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_LT_LT_LT] = ACTIONS(1184), - [anon_sym_GT_AMP] = ACTIONS(1184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2480), - [anon_sym_esac] = ACTIONS(1184), - [anon_sym_LT_LPAREN] = ACTIONS(2470), - [sym_ansii_c_string] = ACTIONS(2472), - [anon_sym_AMP_AMP] = ACTIONS(1184), - [anon_sym_SEMI_SEMI] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), + [sym_heredoc_body] = STATE(619), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(969), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_esac] = ACTIONS(2133), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), }, [674] = { - [sym_string] = STATE(642), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym__] = ACTIONS(2514), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2514), - [anon_sym_DOLLAR] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(2516), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2514), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2514), - [sym__special_character] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2516), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [sym_raw_string] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2516), - [sym_variable_name] = ACTIONS(1227), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2514), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(147), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [ts_builtin_sym_end] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2514), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [sym_ansii_c_string] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(574), + [aux_sym__literal_repeat1] = STATE(575), + [sym_string] = STATE(574), + [sym_process_substitution] = STATE(574), + [sym_simple_expansion] = STATE(574), + [sym_string_expansion] = STATE(574), + [aux_sym_command_repeat2] = STATE(608), + [sym_concatenation] = STATE(608), + [sym_expansion] = STATE(574), + [anon_sym_PIPE_AMP] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(2472), + [anon_sym_GT_LPAREN] = ACTIONS(2474), + [sym_number] = ACTIONS(2476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2478), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [sym_word] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_AMP] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(2480), + [sym__special_character] = ACTIONS(1750), + [anon_sym_LT_LT_DASH] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [sym_raw_string] = ACTIONS(2476), + [sym_file_descriptor] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_GT_AMP] = ACTIONS(1188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), + [anon_sym_esac] = ACTIONS(1188), + [anon_sym_LT_LPAREN] = ACTIONS(2474), + [sym_ansii_c_string] = ACTIONS(2476), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_SEMI_SEMI] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), }, [675] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [sym_variable_name] = ACTIONS(1233), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [ts_builtin_sym_end] = ACTIONS(1233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [aux_sym__simple_variable_name_token1] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [sym_string] = STATE(643), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym__] = ACTIONS(2518), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2518), + [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2518), + [sym__special_character] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_raw_string] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2520), + [sym_variable_name] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(147), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2518), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, [676] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_variable_name] = ACTIONS(1292), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [ts_builtin_sym_end] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [aux_sym__simple_variable_name_token1] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_variable_name] = ACTIONS(1237), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [ts_builtin_sym_end] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [aux_sym__simple_variable_name_token1] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, [677] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_variable_name] = ACTIONS(1302), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [ts_builtin_sym_end] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [aux_sym__simple_variable_name_token1] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_variable_name] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [aux_sym__simple_variable_name_token1] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), }, [678] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1368), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1366), - [sym_file_descriptor] = ACTIONS(1368), - [sym_variable_name] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_BQUOTE] = ACTIONS(1368), - [anon_sym_AMP_GT] = ACTIONS(1366), - [sym_number] = ACTIONS(1366), - [anon_sym_GT_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [anon_sym_GT_AMP] = ACTIONS(1368), - [sym_word] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_LT_AMP] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1368), - [sym_ansii_c_string] = ACTIONS(1368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), - [anon_sym_LT_LPAREN] = ACTIONS(1368), - [sym__special_character] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_variable_name] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [aux_sym__simple_variable_name_token1] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), }, [679] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [sym_variable_name] = ACTIONS(1398), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [ts_builtin_sym_end] = ACTIONS(1398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [aux_sym__simple_variable_name_token1] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1372), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1370), + [sym_file_descriptor] = ACTIONS(1372), + [sym_variable_name] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_AMP_GT] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1372), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_GT_AMP] = ACTIONS(1372), + [sym_word] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_LT_AMP] = ACTIONS(1372), + [anon_sym_GT_GT] = ACTIONS(1372), + [sym_ansii_c_string] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [sym__special_character] = ACTIONS(1372), }, [680] = { - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_AMP_GT_GT] = ACTIONS(1446), - [anon_sym_local] = ACTIONS(1444), - [anon_sym_typeset] = ACTIONS(1444), - [anon_sym_unsetenv] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1446), - [anon_sym_GT_LPAREN] = ACTIONS(1446), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_AMP] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1444), - [sym_word] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), - [sym_raw_string] = ACTIONS(1446), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_declare] = ACTIONS(1444), - [sym_variable_name] = ACTIONS(1446), - [sym_file_descriptor] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_AMP_GT] = ACTIONS(1444), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_GT_AMP] = ACTIONS(1446), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_esac] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [sym_ansii_c_string] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym_SEMI_SEMI] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [sym_variable_name] = ACTIONS(1402), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [aux_sym__simple_variable_name_token1] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), }, [681] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_SEMI_SEMI] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_AMP_GT_GT] = ACTIONS(1450), + [anon_sym_local] = ACTIONS(1448), + [anon_sym_typeset] = ACTIONS(1448), + [anon_sym_unsetenv] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_GT_LPAREN] = ACTIONS(1450), + [sym_number] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_LT_AMP] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1448), + [sym_word] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_declare] = ACTIONS(1448), + [sym_variable_name] = ACTIONS(1450), + [sym_file_descriptor] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_readonly] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_GT_AMP] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_esac] = ACTIONS(2200), + [anon_sym_LT_LPAREN] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [sym_ansii_c_string] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym_SEMI_SEMI] = ACTIONS(1452), }, [682] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [sym_variable_name] = ACTIONS(1456), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [aux_sym__simple_variable_name_token1] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_SEMI_SEMI] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2204), }, [683] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [sym_variable_name] = ACTIONS(1468), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [aux_sym__simple_variable_name_token1] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [sym_variable_name] = ACTIONS(1460), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [aux_sym__simple_variable_name_token1] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), }, [684] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [sym_variable_name] = ACTIONS(1478), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [ts_builtin_sym_end] = ACTIONS(1478), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [aux_sym__simple_variable_name_token1] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [sym_variable_name] = ACTIONS(1472), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [aux_sym__simple_variable_name_token1] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), }, [685] = { [anon_sym_AMP] = ACTIONS(1480), @@ -27824,148 +27845,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [686] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1616), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1616), - [anon_sym_DOLLAR] = ACTIONS(1614), - [sym_file_descriptor] = ACTIONS(1616), - [sym_variable_name] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1616), - [anon_sym_AMP_GT] = ACTIONS(1614), - [sym_number] = ACTIONS(1614), - [anon_sym_GT_LPAREN] = ACTIONS(1616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1616), - [anon_sym_GT_AMP] = ACTIONS(1616), - [sym_word] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_LT_AMP] = ACTIONS(1616), - [anon_sym_GT_GT] = ACTIONS(1616), - [sym_ansii_c_string] = ACTIONS(1616), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1616), - [anon_sym_LT_LPAREN] = ACTIONS(1616), - [sym__special_character] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [sym_variable_name] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [aux_sym__simple_variable_name_token1] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, [687] = { - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_AMP_GT_GT] = ACTIONS(1446), - [anon_sym_local] = ACTIONS(1444), - [anon_sym_typeset] = ACTIONS(1444), - [anon_sym_unsetenv] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1446), - [anon_sym_GT_LPAREN] = ACTIONS(1446), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_AMP] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_export] = ACTIONS(1444), - [sym_word] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1446), - [sym_raw_string] = ACTIONS(1446), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_declare] = ACTIONS(1444), - [sym_variable_name] = ACTIONS(1446), - [sym_file_descriptor] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_AMP_GT] = ACTIONS(1444), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_GT_AMP] = ACTIONS(1446), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_esac] = ACTIONS(2520), - [anon_sym_LT_LPAREN] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [sym_ansii_c_string] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym_SEMI_SEMI] = ACTIONS(1686), + [anon_sym_AMP_GT_GT] = ACTIONS(1620), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1618), + [sym_file_descriptor] = ACTIONS(1620), + [sym_variable_name] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1620), + [anon_sym_AMP_GT] = ACTIONS(1618), + [sym_number] = ACTIONS(1618), + [anon_sym_GT_LPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [anon_sym_GT_AMP] = ACTIONS(1620), + [sym_word] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_AMP] = ACTIONS(1620), + [anon_sym_GT_GT] = ACTIONS(1620), + [sym_ansii_c_string] = ACTIONS(1620), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1620), + [anon_sym_LT_LPAREN] = ACTIONS(1620), + [sym__special_character] = ACTIONS(1620), }, [688] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [sym_variable_name] = ACTIONS(1690), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [aux_sym__simple_variable_name_token1] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_AMP_GT_GT] = ACTIONS(1450), + [anon_sym_local] = ACTIONS(1448), + [anon_sym_typeset] = ACTIONS(1448), + [anon_sym_unsetenv] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_GT_LPAREN] = ACTIONS(1450), + [sym_number] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_function] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_LT_AMP] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1448), + [sym_word] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_declare] = ACTIONS(1448), + [sym_variable_name] = ACTIONS(1450), + [sym_file_descriptor] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_readonly] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_GT_AMP] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_esac] = ACTIONS(2524), + [anon_sym_LT_LPAREN] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [sym_ansii_c_string] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym_SEMI_SEMI] = ACTIONS(1690), }, [689] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [sym_variable_name] = ACTIONS(1696), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [ts_builtin_sym_end] = ACTIONS(1696), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [aux_sym__simple_variable_name_token1] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [sym_variable_name] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [aux_sym__simple_variable_name_token1] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, [690] = { [anon_sym_AMP] = ACTIONS(1698), @@ -28006,80 +28027,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [691] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [sym_variable_name] = ACTIONS(1706), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [aux_sym__simple_variable_name_token1] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [sym_variable_name] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [aux_sym__simple_variable_name_token1] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, [692] = { - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), - [sym_variable_name] = ACTIONS(1821), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [ts_builtin_sym_end] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [aux_sym__simple_variable_name_token1] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [sym_variable_name] = ACTIONS(1710), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [aux_sym__simple_variable_name_token1] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, [693] = { [anon_sym_AMP] = ACTIONS(1823), @@ -28120,7 +28141,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [694] = { - [aux_sym_concatenation_repeat1] = STATE(699), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [sym_variable_name] = ACTIONS(1829), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [aux_sym__simple_variable_name_token1] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [695] = { + [aux_sym_concatenation_repeat1] = STATE(700), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -28157,12 +28216,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [695] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_AMP] = ACTIONS(2002), + [696] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_AMP] = ACTIONS(2006), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_LT_LT] = ACTIONS(489), @@ -28180,8 +28239,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2006), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), @@ -28193,10 +28252,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2006), + [anon_sym_SEMI_SEMI] = ACTIONS(2010), [anon_sym_PIPE_AMP] = ACTIONS(491), }, - [696] = { + [697] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -28233,7 +28292,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [697] = { + [698] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -28270,7 +28329,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [698] = { + [699] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -28307,8 +28366,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [699] = { - [aux_sym_concatenation_repeat1] = STATE(709), + [700] = { + [aux_sym_concatenation_repeat1] = STATE(710), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -28318,7 +28377,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2522), + [sym__concat] = ACTIONS(2526), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -28345,7 +28404,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [700] = { + [701] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -28382,7 +28441,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [701] = { + [702] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -28418,54 +28477,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [702] = { - [aux_sym__literal_repeat1] = STATE(702), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [sym__special_character] = ACTIONS(2524), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [ts_builtin_sym_end] = ACTIONS(650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [aux_sym__simple_variable_name_token1] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), - }, [703] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [aux_sym__literal_repeat1] = STATE(703), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [sym__special_character] = ACTIONS(2528), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [ts_builtin_sym_end] = ACTIONS(652), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [aux_sym__simple_variable_name_token1] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), + }, + [704] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_LT_LT_DASH] = ACTIONS(489), [anon_sym_PIPE_AMP] = ACTIONS(491), [anon_sym_AMP_GT_GT] = ACTIONS(493), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_LF] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2051), [sym_file_descriptor] = ACTIONS(499), [anon_sym_LT_LT] = ACTIONS(489), [anon_sym_GT] = ACTIONS(493), @@ -28478,14 +28537,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(493), [anon_sym_GT_GT] = ACTIONS(493), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_SEMI_SEMI] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2051), }, - [704] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [705] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_PIPE_AMP] = ACTIONS(491), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), @@ -28504,8 +28563,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_LF] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2051), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), @@ -28517,781 +28576,744 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2047), - }, - [705] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2051), }, [706] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [ts_builtin_sym_end] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [aux_sym__simple_variable_name_token1] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [707] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [ts_builtin_sym_end] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [aux_sym__simple_variable_name_token1] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [708] = { - [sym_command_substitution] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_string_expansion] = STATE(707), - [sym_string] = STATE(707), - [sym_process_substitution] = STATE(707), - [sym_expansion] = STATE(707), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2533), - [sym_word] = ACTIONS(2535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_LT_LPAREN] = ACTIONS(2541), - [sym_ansii_c_string] = ACTIONS(2533), - [anon_sym_BQUOTE] = ACTIONS(2543), - [anon_sym_GT_LPAREN] = ACTIONS(2541), - [sym__special_character] = ACTIONS(2533), - [sym_number] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [709] = { - [aux_sym_concatenation_repeat1] = STATE(709), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2545), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [sym_command_substitution] = STATE(708), + [sym_simple_expansion] = STATE(708), + [sym_string_expansion] = STATE(708), + [sym_string] = STATE(708), + [sym_process_substitution] = STATE(708), + [sym_expansion] = STATE(708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2535), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2537), + [sym_word] = ACTIONS(2539), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2541), + [anon_sym_DOLLAR] = ACTIONS(2543), + [anon_sym_LT_LPAREN] = ACTIONS(2545), + [sym_ansii_c_string] = ACTIONS(2537), + [anon_sym_BQUOTE] = ACTIONS(2547), + [anon_sym_GT_LPAREN] = ACTIONS(2545), + [sym__special_character] = ACTIONS(2537), + [sym_number] = ACTIONS(2539), }, [710] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(710), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [ts_builtin_sym_end] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [aux_sym__simple_variable_name_token1] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [711] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [ts_builtin_sym_end] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [aux_sym__simple_variable_name_token1] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [ts_builtin_sym_end] = ACTIONS(909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [aux_sym__simple_variable_name_token1] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, [712] = { - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [aux_sym__simple_variable_name_token1] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [aux_sym__simple_variable_name_token1] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, [713] = { - [aux_sym_concatenation_repeat1] = STATE(844), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [sym__concat] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1031), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [aux_sym__simple_variable_name_token1] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [aux_sym__simple_variable_name_token1] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [714] = { - [aux_sym__literal_repeat1] = STATE(847), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), - [sym_number] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [sym_word] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [sym__special_character] = ACTIONS(2026), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1041), - [anon_sym_RPAREN] = ACTIONS(1037), - [sym_file_descriptor] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [aux_sym__simple_variable_name_token1] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [sym_ansii_c_string] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), + [aux_sym_concatenation_repeat1] = STATE(850), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [sym__concat] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1033), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [aux_sym__simple_variable_name_token1] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [715] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [aux_sym__simple_variable_name_token1] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [aux_sym__literal_repeat1] = STATE(853), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_number] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [sym_word] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_LT_AMP] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [sym__special_character] = ACTIONS(2030), + [anon_sym_LT_LT_DASH] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1039), + [sym_raw_string] = ACTIONS(1039), + [sym_variable_name] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1039), + [sym_file_descriptor] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_LT_LT_LT] = ACTIONS(1039), + [anon_sym_GT_AMP] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [aux_sym__simple_variable_name_token1] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1039), + [sym_ansii_c_string] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), }, [716] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [aux_sym__simple_variable_name_token1] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [717] = { - [sym_string] = STATE(698), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym__] = ACTIONS(2548), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_DOLLAR] = ACTIONS(2550), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2548), - [sym__special_character] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2550), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [sym_raw_string] = ACTIONS(2552), - [anon_sym_BANG] = ACTIONS(2550), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2548), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [ts_builtin_sym_end] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2548), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [sym_ansii_c_string] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [718] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [ts_builtin_sym_end] = ACTIONS(1233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [aux_sym__simple_variable_name_token1] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [sym_string] = STATE(699), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym__] = ACTIONS(2552), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2552), + [anon_sym_DOLLAR] = ACTIONS(2554), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2554), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2552), + [sym__special_character] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2554), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_raw_string] = ACTIONS(2556), + [anon_sym_BANG] = ACTIONS(2554), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2552), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, [719] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [ts_builtin_sym_end] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [aux_sym__simple_variable_name_token1] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [ts_builtin_sym_end] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [aux_sym__simple_variable_name_token1] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, [720] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [ts_builtin_sym_end] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [aux_sym__simple_variable_name_token1] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [aux_sym__simple_variable_name_token1] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), }, [721] = { - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_AMP_GT_GT] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1366), - [anon_sym_BQUOTE] = ACTIONS(1366), - [anon_sym_GT_LPAREN] = ACTIONS(1366), - [sym_number] = ACTIONS(1366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [sym_word] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_LT_AMP] = ACTIONS(1366), - [anon_sym_GT_GT] = ACTIONS(1366), - [sym__special_character] = ACTIONS(1366), - [anon_sym_LT_LT_DASH] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [sym_raw_string] = ACTIONS(1366), - [sym_variable_name] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1366), - [sym_file_descriptor] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_AMP_GT] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_LT_LT_LT] = ACTIONS(1366), - [anon_sym_GT_AMP] = ACTIONS(1366), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), - [aux_sym__simple_variable_name_token1] = ACTIONS(1366), - [anon_sym_LT_LPAREN] = ACTIONS(1366), - [sym_ansii_c_string] = ACTIONS(1366), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_SEMI_SEMI] = ACTIONS(1366), - [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [aux_sym__simple_variable_name_token1] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), }, [722] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [ts_builtin_sym_end] = ACTIONS(1398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [aux_sym__simple_variable_name_token1] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_AMP_GT_GT] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [sym_word] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_LT_AMP] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1370), + [sym__special_character] = ACTIONS(1370), + [anon_sym_LT_LT_DASH] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [sym_raw_string] = ACTIONS(1370), + [sym_variable_name] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1370), + [sym_file_descriptor] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_AMP_GT] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_GT_AMP] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), + [aux_sym__simple_variable_name_token1] = ACTIONS(1370), + [anon_sym_LT_LPAREN] = ACTIONS(1370), + [sym_ansii_c_string] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(1370), + [anon_sym_PIPE_AMP] = ACTIONS(1370), }, [723] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [aux_sym__simple_variable_name_token1] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [aux_sym__simple_variable_name_token1] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), }, [724] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [aux_sym__simple_variable_name_token1] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [aux_sym__simple_variable_name_token1] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), }, [725] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [ts_builtin_sym_end] = ACTIONS(1478), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [aux_sym__simple_variable_name_token1] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [aux_sym__simple_variable_name_token1] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), }, [726] = { [anon_sym_AMP] = ACTIONS(1480), @@ -29331,115 +29353,115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1480), }, [727] = { - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_AMP_GT_GT] = ACTIONS(1614), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_LT_LT] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [anon_sym_GT_LPAREN] = ACTIONS(1614), - [sym_number] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), - [anon_sym_PIPE_PIPE] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [sym_word] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_LT_AMP] = ACTIONS(1614), - [anon_sym_GT_GT] = ACTIONS(1614), - [sym__special_character] = ACTIONS(1614), - [anon_sym_LT_LT_DASH] = ACTIONS(1614), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [sym_raw_string] = ACTIONS(1614), - [sym_variable_name] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1614), - [sym_file_descriptor] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_AMP_GT] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_LT_LT_LT] = ACTIONS(1614), - [anon_sym_GT_AMP] = ACTIONS(1614), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), - [aux_sym__simple_variable_name_token1] = ACTIONS(1614), - [anon_sym_LT_LPAREN] = ACTIONS(1614), - [sym_ansii_c_string] = ACTIONS(1614), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_SEMI_SEMI] = ACTIONS(1614), - [anon_sym_PIPE_AMP] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [aux_sym__simple_variable_name_token1] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, [728] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [aux_sym__simple_variable_name_token1] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_AMP_GT_GT] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1618), + [anon_sym_GT_LPAREN] = ACTIONS(1618), + [sym_number] = ACTIONS(1618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), + [anon_sym_PIPE_PIPE] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [sym_word] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_AMP] = ACTIONS(1618), + [anon_sym_GT_GT] = ACTIONS(1618), + [sym__special_character] = ACTIONS(1618), + [anon_sym_LT_LT_DASH] = ACTIONS(1618), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1618), + [sym_raw_string] = ACTIONS(1618), + [sym_variable_name] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1618), + [sym_file_descriptor] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_AMP_GT] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_LT_LT_LT] = ACTIONS(1618), + [anon_sym_GT_AMP] = ACTIONS(1618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), + [aux_sym__simple_variable_name_token1] = ACTIONS(1618), + [anon_sym_LT_LPAREN] = ACTIONS(1618), + [sym_ansii_c_string] = ACTIONS(1618), + [anon_sym_AMP_AMP] = ACTIONS(1618), + [anon_sym_SEMI_SEMI] = ACTIONS(1618), + [anon_sym_PIPE_AMP] = ACTIONS(1618), }, [729] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [ts_builtin_sym_end] = ACTIONS(1696), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [aux_sym__simple_variable_name_token1] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [aux_sym__simple_variable_name_token1] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, [730] = { [anon_sym_AMP] = ACTIONS(1698), @@ -29479,78 +29501,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1698), }, [731] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [aux_sym__simple_variable_name_token1] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [aux_sym__simple_variable_name_token1] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, [732] = { - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [ts_builtin_sym_end] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [aux_sym__simple_variable_name_token1] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [aux_sym__simple_variable_name_token1] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, [733] = { [anon_sym_AMP] = ACTIONS(1823), @@ -29590,7 +29612,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_AMP] = ACTIONS(1823), }, [734] = { - [aux_sym_concatenation_repeat1] = STATE(738), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [aux_sym__simple_variable_name_token1] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [735] = { + [aux_sym_concatenation_repeat1] = STATE(739), [anon_sym_SEMI_SEMI] = ACTIONS(211), [sym_comment] = ACTIONS(3), [sym__concat] = ACTIONS(515), @@ -29600,497 +29659,353 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(211), [anon_sym_AMP] = ACTIONS(211), }, - [735] = { - [anon_sym_AMP] = ACTIONS(409), + [736] = { + [anon_sym_SEMI_SEMI] = ACTIONS(409), [sym_comment] = ACTIONS(3), [sym__concat] = ACTIONS(411), [anon_sym_LF] = ACTIONS(411), [anon_sym_SEMI] = ACTIONS(409), [anon_sym_in] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(409), }, - [736] = { - [anon_sym_AMP] = ACTIONS(413), + [737] = { + [anon_sym_SEMI_SEMI] = ACTIONS(413), [sym_comment] = ACTIONS(3), [sym__concat] = ACTIONS(415), [anon_sym_LF] = ACTIONS(415), [anon_sym_SEMI] = ACTIONS(413), [anon_sym_in] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(413), }, - [737] = { - [anon_sym_AMP] = ACTIONS(417), + [738] = { + [anon_sym_SEMI_SEMI] = ACTIONS(417), [sym_comment] = ACTIONS(3), [sym__concat] = ACTIONS(419), [anon_sym_LF] = ACTIONS(419), [anon_sym_SEMI] = ACTIONS(417), [anon_sym_in] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(417), }, - [738] = { - [aux_sym_concatenation_repeat1] = STATE(746), + [739] = { + [aux_sym_concatenation_repeat1] = STATE(747), [anon_sym_AMP] = ACTIONS(429), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(2554), + [sym__concat] = ACTIONS(2558), [anon_sym_LF] = ACTIONS(433), [anon_sym_SEMI] = ACTIONS(429), [anon_sym_in] = ACTIONS(429), [anon_sym_SEMI_SEMI] = ACTIONS(429), }, - [739] = { - [anon_sym_AMP] = ACTIONS(595), + [740] = { + [anon_sym_SEMI_SEMI] = ACTIONS(595), [sym_comment] = ACTIONS(3), [sym__concat] = ACTIONS(597), [anon_sym_LF] = ACTIONS(597), [anon_sym_SEMI] = ACTIONS(595), [anon_sym_in] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(595), }, - [740] = { - [sym__special_character] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), + [741] = { + [anon_sym_SEMI_SEMI] = ACTIONS(211), [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(213), [anon_sym_SEMI] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), [anon_sym_in] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - }, - [741] = { - [aux_sym__literal_repeat1] = STATE(741), - [sym__special_character] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_in] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(211), }, [742] = { - [anon_sym_AMP] = ACTIONS(874), + [aux_sym__literal_repeat1] = STATE(742), + [anon_sym_SEMI_SEMI] = ACTIONS(647), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(876), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_in] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym__special_character] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(647), }, [743] = { - [anon_sym_AMP] = ACTIONS(878), + [anon_sym_SEMI_SEMI] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(880), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_in] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_in] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), }, [744] = { - [anon_sym_AMP] = ACTIONS(882), + [anon_sym_SEMI_SEMI] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(884), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_in] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), + [sym__concat] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), }, [745] = { - [sym_command_substitution] = STATE(744), - [sym_simple_expansion] = STATE(744), - [sym_string_expansion] = STATE(744), - [sym_string] = STATE(744), - [sym_process_substitution] = STATE(744), - [sym_expansion] = STATE(744), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(886), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_in] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), + }, + [746] = { + [sym_command_substitution] = STATE(745), + [sym_simple_expansion] = STATE(745), + [sym_string_expansion] = STATE(745), + [sym_string] = STATE(745), + [sym_process_substitution] = STATE(745), + [sym_expansion] = STATE(745), [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(217), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2559), - [sym_word] = ACTIONS(2561), + [sym_raw_string] = ACTIONS(2563), + [sym_word] = ACTIONS(2565), [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2567), [anon_sym_LT_LPAREN] = ACTIONS(227), - [sym_ansii_c_string] = ACTIONS(2559), + [sym_ansii_c_string] = ACTIONS(2563), [anon_sym_BQUOTE] = ACTIONS(229), [anon_sym_GT_LPAREN] = ACTIONS(227), - [sym__special_character] = ACTIONS(2559), - [sym_number] = ACTIONS(2561), - }, - [746] = { - [aux_sym_concatenation_repeat1] = STATE(746), - [anon_sym_AMP] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(2565), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_in] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), + [sym__special_character] = ACTIONS(2563), + [sym_number] = ACTIONS(2565), }, [747] = { - [anon_sym_AMP] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(747), + [anon_sym_SEMI_SEMI] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(907), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_in] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), + [sym__concat] = ACTIONS(2569), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_in] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), }, [748] = { - [anon_sym_AMP] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(907), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_in] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), + [sym__concat] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_in] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(907), }, [749] = { - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [anon_sym_esac] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(961), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_in] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), }, [750] = { - [aux_sym_concatenation_repeat1] = STATE(1292), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [sym__concat] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [anon_sym_esac] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(1033), }, [751] = { - [aux_sym__literal_repeat1] = STATE(1324), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), - [sym_number] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [sym_word] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [sym__special_character] = ACTIONS(2570), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1041), - [sym_file_descriptor] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_esac] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [sym_ansii_c_string] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), + [aux_sym_concatenation_repeat1] = STATE(2443), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(515), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(1033), }, [752] = { - [anon_sym_AMP] = ACTIONS(1063), + [aux_sym__literal_repeat1] = STATE(742), + [sym__special_character] = ACTIONS(527), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), }, [753] = { - [anon_sym_AMP] = ACTIONS(874), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(876), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_in] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), + [sym__concat] = ACTIONS(1067), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_in] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1065), }, [754] = { - [sym_string] = STATE(737), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(878), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_in] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), + }, + [755] = { + [sym_string] = STATE(738), [anon_sym__] = ACTIONS(2572), [anon_sym_QMARK] = ACTIONS(2572), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(2574), [sym_raw_string] = ACTIONS(2576), [anon_sym_DOLLAR] = ACTIONS(2574), [anon_sym_AT] = ACTIONS(2572), [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(1223), + [anon_sym_in] = ACTIONS(1227), [anon_sym_DQUOTE] = ACTIONS(2578), [anon_sym_0] = ACTIONS(2572), [anon_sym_STAR] = ACTIONS(2572), [aux_sym__simple_variable_name_token1] = ACTIONS(2572), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - }, - [755] = { - [anon_sym_AMP] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1233), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), }, [756] = { - [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1292), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_in] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [sym__concat] = ACTIONS(1237), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), }, [757] = { - [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_in] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [sym__concat] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_in] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), }, [758] = { - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_AMP_GT_GT] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1366), - [anon_sym_BQUOTE] = ACTIONS(1366), - [anon_sym_GT_LPAREN] = ACTIONS(1366), - [sym_number] = ACTIONS(1366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [sym_word] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_LT_AMP] = ACTIONS(1366), - [anon_sym_GT_GT] = ACTIONS(1366), - [sym__special_character] = ACTIONS(1366), - [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [sym_raw_string] = ACTIONS(1366), - [sym_variable_name] = ACTIONS(1368), - [sym_file_descriptor] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_AMP_GT] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_LT_LT_LT] = ACTIONS(1366), - [anon_sym_GT_AMP] = ACTIONS(1366), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), - [anon_sym_esac] = ACTIONS(1366), - [anon_sym_LT_LPAREN] = ACTIONS(1366), - [sym_ansii_c_string] = ACTIONS(1366), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_SEMI_SEMI] = ACTIONS(1366), - [anon_sym_PIPE_AMP] = ACTIONS(1366), + [sym__concat] = ACTIONS(1306), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_in] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), }, [759] = { - [anon_sym_AMP] = ACTIONS(1396), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1398), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_in] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_LF] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), }, [760] = { - [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1456), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), + [sym__concat] = ACTIONS(1402), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), }, [761] = { - [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1468), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_in] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), + [sym__concat] = ACTIONS(1460), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_in] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), }, [762] = { - [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1478), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), + [sym__concat] = ACTIONS(1472), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_in] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), }, [763] = { - [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), [sym_comment] = ACTIONS(3), [sym__concat] = ACTIONS(1482), [anon_sym_LF] = ACTIONS(1482), [anon_sym_SEMI] = ACTIONS(1480), [anon_sym_in] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), }, [764] = { - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_AMP_GT_GT] = ACTIONS(1614), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_LT_LT] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [anon_sym_GT_LPAREN] = ACTIONS(1614), - [sym_number] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), - [anon_sym_PIPE_PIPE] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [sym_word] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_LT_AMP] = ACTIONS(1614), - [anon_sym_GT_GT] = ACTIONS(1614), - [sym__special_character] = ACTIONS(1614), - [anon_sym_LT_LT_DASH] = ACTIONS(1614), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [sym_raw_string] = ACTIONS(1614), - [sym_variable_name] = ACTIONS(1616), - [sym_file_descriptor] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_AMP_GT] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_LT_LT_LT] = ACTIONS(1614), - [anon_sym_GT_AMP] = ACTIONS(1614), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), - [anon_sym_esac] = ACTIONS(1614), - [anon_sym_LT_LPAREN] = ACTIONS(1614), - [sym_ansii_c_string] = ACTIONS(1614), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_SEMI_SEMI] = ACTIONS(1614), - [anon_sym_PIPE_AMP] = ACTIONS(1614), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_in] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), }, [765] = { - [anon_sym_AMP] = ACTIONS(1688), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1690), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_in] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), + [anon_sym_LF] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_SEMI_SEMI] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1618), }, [766] = { - [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1696), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), + [sym__concat] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), }, [767] = { - [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_SEMI_SEMI] = ACTIONS(1698), [sym_comment] = ACTIONS(3), [sym__concat] = ACTIONS(1700), [anon_sym_LF] = ACTIONS(1700), [anon_sym_SEMI] = ACTIONS(1698), [anon_sym_in] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), }, [768] = { - [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1706), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), + [sym__concat] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), }, [769] = { - [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1821), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_in] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), + [sym__concat] = ACTIONS(1710), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_in] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), }, [770] = { - [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_SEMI_SEMI] = ACTIONS(1823), [sym_comment] = ACTIONS(3), [sym__concat] = ACTIONS(1825), [anon_sym_LF] = ACTIONS(1825), [anon_sym_SEMI] = ACTIONS(1823), [anon_sym_in] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1823), }, [771] = { - [aux_sym_concatenation_repeat1] = STATE(775), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(1829), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_in] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1827), + }, + [772] = { + [aux_sym_concatenation_repeat1] = STATE(776), [anon_sym_PLUS_EQ] = ACTIONS(213), [anon_sym_PLUS_PLUS] = ACTIONS(213), [anon_sym_DASH] = ACTIONS(211), @@ -30116,7 +30031,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(211), [anon_sym_AMP_AMP] = ACTIONS(213), }, - [772] = { + [773] = { [anon_sym_PLUS_EQ] = ACTIONS(411), [anon_sym_PLUS_PLUS] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(409), @@ -30141,7 +30056,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(409), [anon_sym_AMP_AMP] = ACTIONS(411), }, - [773] = { + [774] = { [anon_sym_PLUS_EQ] = ACTIONS(415), [anon_sym_PLUS_PLUS] = ACTIONS(415), [anon_sym_DASH] = ACTIONS(413), @@ -30166,7 +30081,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(413), [anon_sym_AMP_AMP] = ACTIONS(415), }, - [774] = { + [775] = { [anon_sym_PLUS_EQ] = ACTIONS(419), [anon_sym_PLUS_PLUS] = ACTIONS(419), [anon_sym_DASH] = ACTIONS(417), @@ -30191,8 +30106,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(417), [anon_sym_AMP_AMP] = ACTIONS(419), }, - [775] = { - [aux_sym_concatenation_repeat1] = STATE(783), + [776] = { + [aux_sym_concatenation_repeat1] = STATE(784), [anon_sym_PLUS_EQ] = ACTIONS(433), [anon_sym_PLUS_PLUS] = ACTIONS(433), [anon_sym_DASH] = ACTIONS(429), @@ -30217,7 +30132,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(429), [anon_sym_AMP_AMP] = ACTIONS(433), }, - [776] = { + [777] = { [anon_sym_PLUS_EQ] = ACTIONS(597), [anon_sym_PLUS_PLUS] = ACTIONS(597), [anon_sym_DASH] = ACTIONS(595), @@ -30242,7 +30157,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(595), [anon_sym_AMP_AMP] = ACTIONS(597), }, - [777] = { + [778] = { [anon_sym_PLUS_EQ] = ACTIONS(213), [anon_sym_PLUS_PLUS] = ACTIONS(213), [anon_sym_DASH] = ACTIONS(211), @@ -30267,114 +30182,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(211), [anon_sym_AMP_AMP] = ACTIONS(213), }, - [778] = { - [aux_sym__literal_repeat1] = STATE(778), - [anon_sym_PLUS_EQ] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_RPAREN_RPAREN] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(650), - [anon_sym_RBRACK_RBRACK] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_EQ_TILDE] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(650), - [sym__special_character] = ACTIONS(2582), - [anon_sym_DASH_EQ] = ACTIONS(650), - [anon_sym_BANG_EQ] = ACTIONS(650), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(645), - [sym_test_operator] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_EQ] = ACTIONS(645), - [anon_sym_EQ_EQ] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(650), - }, [779] = { - [anon_sym_PLUS_EQ] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_RPAREN_RPAREN] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_RBRACK_RBRACK] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_DASH_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_test_operator] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(876), + [aux_sym__literal_repeat1] = STATE(779), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_RPAREN_RPAREN] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_RBRACK_RBRACK] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_EQ_TILDE] = ACTIONS(652), + [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(652), + [sym__special_character] = ACTIONS(2582), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(647), + [sym_test_operator] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_EQ] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(652), }, [780] = { - [anon_sym_PLUS_EQ] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_RPAREN_RPAREN] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_RBRACK_RBRACK] = ACTIONS(880), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_EQ_TILDE] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_DASH_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [anon_sym_PLUS_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_RPAREN_RPAREN] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [anon_sym_RBRACK_RBRACK] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(878), + [anon_sym_DASH_DASH] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ] = ACTIONS(878), [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(878), - [sym_test_operator] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_EQ] = ACTIONS(878), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_test_operator] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(878), }, [781] = { - [anon_sym_PLUS_EQ] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_RPAREN_RPAREN] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_RBRACK_RBRACK] = ACTIONS(884), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_DASH_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(882), + [anon_sym_PLUS_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_RPAREN_RPAREN] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [anon_sym_RBRACK_RBRACK] = ACTIONS(882), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(882), + [anon_sym_DASH_EQ] = ACTIONS(882), + [anon_sym_BANG_EQ] = ACTIONS(882), [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_test_operator] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(880), + [sym_test_operator] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(882), }, [782] = { - [sym_command_substitution] = STATE(781), - [sym_string] = STATE(781), - [sym_process_substitution] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_string_expansion] = STATE(781), - [sym_expansion] = STATE(781), + [anon_sym_PLUS_EQ] = ACTIONS(886), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_RPAREN_RPAREN] = ACTIONS(886), + [anon_sym_PIPE_PIPE] = ACTIONS(886), + [anon_sym_RBRACK_RBRACK] = ACTIONS(886), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_LT_EQ] = ACTIONS(886), + [anon_sym_DASH_EQ] = ACTIONS(886), + [anon_sym_BANG_EQ] = ACTIONS(886), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_test_operator] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(886), + [anon_sym_GT_EQ] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(886), + }, + [783] = { + [sym_command_substitution] = STATE(782), + [sym_string] = STATE(782), + [sym_process_substitution] = STATE(782), + [sym_simple_expansion] = STATE(782), + [sym_string_expansion] = STATE(782), + [sym_expansion] = STATE(782), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(2585), [anon_sym_DOLLAR] = ACTIONS(2587), @@ -30389,493 +30304,464 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(2585), [sym__special_character] = ACTIONS(2585), }, - [783] = { - [aux_sym_concatenation_repeat1] = STATE(783), - [anon_sym_PLUS_EQ] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_RPAREN_RPAREN] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_RBRACK_RBRACK] = ACTIONS(884), - [sym__concat] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_DASH_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_test_operator] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(884), - }, [784] = { - [anon_sym_PLUS_EQ] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_RPAREN_RPAREN] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_RBRACK_RBRACK] = ACTIONS(907), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_DASH_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), + [aux_sym_concatenation_repeat1] = STATE(784), + [anon_sym_PLUS_EQ] = ACTIONS(886), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_RPAREN_RPAREN] = ACTIONS(886), + [anon_sym_PIPE_PIPE] = ACTIONS(886), + [anon_sym_RBRACK_RBRACK] = ACTIONS(886), + [sym__concat] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_LT_EQ] = ACTIONS(886), + [anon_sym_DASH_EQ] = ACTIONS(886), + [anon_sym_BANG_EQ] = ACTIONS(886), [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(905), - [sym_test_operator] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_test_operator] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(886), + [anon_sym_GT_EQ] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(886), }, [785] = { - [anon_sym_PLUS_EQ] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_RPAREN_RPAREN] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [anon_sym_RBRACK_RBRACK] = ACTIONS(959), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_DASH_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_PLUS_EQ] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_RPAREN_RPAREN] = ACTIONS(909), + [anon_sym_PIPE_PIPE] = ACTIONS(909), + [anon_sym_RBRACK_RBRACK] = ACTIONS(909), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_DASH_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(957), - [sym_test_operator] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(907), + [sym_test_operator] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(909), }, [786] = { - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [anon_sym_esac] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [aux_sym__simple_variable_name_token1] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_RPAREN_RPAREN] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_RBRACK_RBRACK] = ACTIONS(961), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(959), + [sym_test_operator] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(961), }, [787] = { - [aux_sym_concatenation_repeat1] = STATE(1228), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_number] = ACTIONS(1031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [sym__concat] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(1031), - [sym_word] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym__special_character] = ACTIONS(1031), - [anon_sym_LT_LT_DASH] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [sym_raw_string] = ACTIONS(1031), - [sym_variable_name] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_AMP_GT] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_GT_AMP] = ACTIONS(1031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), - [anon_sym_esac] = ACTIONS(1031), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [sym_ansii_c_string] = ACTIONS(1031), - [aux_sym__simple_variable_name_token1] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_SEMI_SEMI] = ACTIONS(1031), - [anon_sym_PIPE_AMP] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_esac] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [788] = { - [aux_sym__literal_repeat1] = STATE(1263), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), - [sym_number] = ACTIONS(1037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [sym_word] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [sym__special_character] = ACTIONS(2274), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1041), - [sym_file_descriptor] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_esac] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [sym_ansii_c_string] = ACTIONS(1037), - [aux_sym__simple_variable_name_token1] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), + [aux_sym_concatenation_repeat1] = STATE(1298), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [sym__concat] = ACTIONS(2594), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_esac] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [789] = { - [anon_sym_PLUS_EQ] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1065), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_DASH_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1063), - [sym_test_operator] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_EQ] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1065), + [aux_sym__literal_repeat1] = STATE(1330), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_number] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [sym_word] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_LT_AMP] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [sym__special_character] = ACTIONS(2596), + [anon_sym_LT_LT_DASH] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1039), + [sym_raw_string] = ACTIONS(1039), + [sym_variable_name] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_LT_LT_LT] = ACTIONS(1039), + [anon_sym_GT_AMP] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_esac] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1039), + [sym_ansii_c_string] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), }, [790] = { - [anon_sym_PLUS_EQ] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_RPAREN_RPAREN] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_RBRACK_RBRACK] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_DASH_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1067), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_EQ_TILDE] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_LT_EQ] = ACTIONS(1067), + [anon_sym_DASH_EQ] = ACTIONS(1067), + [anon_sym_BANG_EQ] = ACTIONS(1067), [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_test_operator] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym_test_operator] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_EQ_EQ] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1067), }, [791] = { - [sym_string] = STATE(774), - [anon_sym__] = ACTIONS(2594), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2598), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2600), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_EQ_TILDE] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2596), - [sym_raw_string] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_AT] = ACTIONS(2600), - [sym_test_operator] = ACTIONS(1227), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2594), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2600), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [anon_sym_PLUS_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_RPAREN_RPAREN] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [anon_sym_RBRACK_RBRACK] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(878), + [anon_sym_DASH_DASH] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ] = ACTIONS(878), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_test_operator] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(878), }, [792] = { - [anon_sym_PLUS_EQ] = ACTIONS(1233), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1233), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1233), - [anon_sym_DASH_EQ] = ACTIONS(1233), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1231), - [sym_test_operator] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_EQ] = ACTIONS(1231), - [anon_sym_EQ_EQ] = ACTIONS(1233), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1233), + [sym_string] = STATE(775), + [anon_sym__] = ACTIONS(2598), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1231), + [anon_sym_0] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2600), + [sym_raw_string] = ACTIONS(2606), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_AT] = ACTIONS(2604), + [sym_test_operator] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2598), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(2604), }, [793] = { - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_BANG_EQ] = ACTIONS(1292), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1290), - [sym_test_operator] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_GT_EQ] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1237), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1235), + [sym_test_operator] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1237), }, [794] = { - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1302), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1300), - [sym_test_operator] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1296), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_GT_EQ] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1296), }, [795] = { - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_AMP_GT_GT] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1366), - [anon_sym_BQUOTE] = ACTIONS(1366), - [anon_sym_GT_LPAREN] = ACTIONS(1366), - [sym_number] = ACTIONS(1366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [sym_word] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_LT_AMP] = ACTIONS(1366), - [anon_sym_GT_GT] = ACTIONS(1366), - [sym__special_character] = ACTIONS(1366), - [anon_sym_LT_LT_DASH] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [sym_raw_string] = ACTIONS(1366), - [sym_variable_name] = ACTIONS(1368), - [sym_file_descriptor] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_AMP_GT] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_LT_LT_LT] = ACTIONS(1366), - [anon_sym_GT_AMP] = ACTIONS(1366), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), - [anon_sym_esac] = ACTIONS(1366), - [anon_sym_LT_LPAREN] = ACTIONS(1366), - [sym_ansii_c_string] = ACTIONS(1366), - [aux_sym__simple_variable_name_token1] = ACTIONS(1366), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_SEMI_SEMI] = ACTIONS(1366), - [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_PLUS_EQ] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_DASH_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1306), }, [796] = { - [anon_sym_PLUS_EQ] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1398), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_EQ_TILDE] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_DASH_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1398), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1396), - [sym_test_operator] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_AMP_GT_GT] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [sym_word] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_LT_AMP] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1370), + [sym__special_character] = ACTIONS(1370), + [anon_sym_LT_LT_DASH] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [sym_raw_string] = ACTIONS(1370), + [sym_variable_name] = ACTIONS(1372), + [sym_file_descriptor] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_AMP_GT] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_GT_AMP] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), + [anon_sym_esac] = ACTIONS(1370), + [anon_sym_LT_LPAREN] = ACTIONS(1370), + [sym_ansii_c_string] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(1370), + [anon_sym_PIPE_AMP] = ACTIONS(1370), }, [797] = { - [anon_sym_PLUS_EQ] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1456), - [anon_sym_PIPE_PIPE] = ACTIONS(1456), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1456), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1456), - [anon_sym_DASH_EQ] = ACTIONS(1456), - [anon_sym_BANG_EQ] = ACTIONS(1456), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1454), - [sym_test_operator] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1456), - [anon_sym_GT_EQ] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1402), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_DASH_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1400), + [sym_test_operator] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1402), }, [798] = { - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1468), - [anon_sym_PIPE_PIPE] = ACTIONS(1468), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1468), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_EQ_TILDE] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym_LT_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_BANG_EQ] = ACTIONS(1468), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1466), - [sym_test_operator] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_EQ_EQ] = ACTIONS(1468), - [anon_sym_GT_EQ] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PLUS_EQ] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1460), + [anon_sym_PIPE_PIPE] = ACTIONS(1460), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1460), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_EQ_TILDE] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_DASH_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1458), + [sym_test_operator] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1460), }, [799] = { - [anon_sym_PLUS_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1478), - [anon_sym_PIPE_PIPE] = ACTIONS(1478), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1478), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_EQ_TILDE] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_LT_EQ] = ACTIONS(1478), - [anon_sym_DASH_EQ] = ACTIONS(1478), - [anon_sym_BANG_EQ] = ACTIONS(1478), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1476), - [sym_test_operator] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1472), + [anon_sym_PIPE_PIPE] = ACTIONS(1472), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1472), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_EQ_TILDE] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_LT_EQ] = ACTIONS(1472), + [anon_sym_DASH_EQ] = ACTIONS(1472), + [anon_sym_BANG_EQ] = ACTIONS(1472), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1470), + [sym_test_operator] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1472), + [anon_sym_GT_EQ] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1472), }, [800] = { [anon_sym_PLUS_EQ] = ACTIONS(1482), @@ -30903,91 +30789,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1482), }, [801] = { - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_AMP_GT_GT] = ACTIONS(1614), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_LT_LT] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [anon_sym_GT_LPAREN] = ACTIONS(1614), - [sym_number] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1614), - [anon_sym_PIPE_PIPE] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [sym_word] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_LT_AMP] = ACTIONS(1614), - [anon_sym_GT_GT] = ACTIONS(1614), - [sym__special_character] = ACTIONS(1614), - [anon_sym_LT_LT_DASH] = ACTIONS(1614), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [sym_raw_string] = ACTIONS(1614), - [sym_variable_name] = ACTIONS(1616), - [sym_file_descriptor] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_AMP_GT] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_LT_LT_LT] = ACTIONS(1614), - [anon_sym_GT_AMP] = ACTIONS(1614), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1614), - [anon_sym_esac] = ACTIONS(1614), - [anon_sym_LT_LPAREN] = ACTIONS(1614), - [sym_ansii_c_string] = ACTIONS(1614), - [aux_sym__simple_variable_name_token1] = ACTIONS(1614), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_SEMI_SEMI] = ACTIONS(1614), - [anon_sym_PIPE_AMP] = ACTIONS(1614), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1486), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_EQ_TILDE] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1484), + [sym_test_operator] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1486), }, [802] = { - [anon_sym_PLUS_EQ] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1688), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1690), - [anon_sym_PIPE_PIPE] = ACTIONS(1690), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1690), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_EQ_TILDE] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_LT_EQ] = ACTIONS(1690), - [anon_sym_DASH_EQ] = ACTIONS(1690), - [anon_sym_BANG_EQ] = ACTIONS(1690), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1688), - [sym_test_operator] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_EQ] = ACTIONS(1688), - [anon_sym_EQ_EQ] = ACTIONS(1690), - [anon_sym_GT_EQ] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_AMP_GT_GT] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1618), + [anon_sym_GT_LPAREN] = ACTIONS(1618), + [sym_number] = ACTIONS(1618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), + [anon_sym_PIPE_PIPE] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [sym_word] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_AMP] = ACTIONS(1618), + [anon_sym_GT_GT] = ACTIONS(1618), + [sym__special_character] = ACTIONS(1618), + [anon_sym_LT_LT_DASH] = ACTIONS(1618), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1618), + [sym_raw_string] = ACTIONS(1618), + [sym_variable_name] = ACTIONS(1620), + [sym_file_descriptor] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_AMP_GT] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_LT_LT_LT] = ACTIONS(1618), + [anon_sym_GT_AMP] = ACTIONS(1618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), + [anon_sym_esac] = ACTIONS(1618), + [anon_sym_LT_LPAREN] = ACTIONS(1618), + [sym_ansii_c_string] = ACTIONS(1618), + [anon_sym_AMP_AMP] = ACTIONS(1618), + [anon_sym_SEMI_SEMI] = ACTIONS(1618), + [anon_sym_PIPE_AMP] = ACTIONS(1618), }, [803] = { - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1696), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_EQ_TILDE] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), - [anon_sym_BANG_EQ] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1694), + [anon_sym_PLUS_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1694), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_EQ_TILDE] = ACTIONS(1694), + [anon_sym_DASH_DASH] = ACTIONS(1694), + [anon_sym_LT_EQ] = ACTIONS(1694), + [anon_sym_DASH_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ] = ACTIONS(1694), [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1694), - [sym_test_operator] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1692), + [sym_test_operator] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1692), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_GT_EQ] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1694), }, [804] = { [anon_sym_PLUS_EQ] = ACTIONS(1700), @@ -31015,54 +30900,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1700), }, [805] = { - [anon_sym_PLUS_EQ] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1706), - [anon_sym_PIPE_PIPE] = ACTIONS(1706), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1706), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_EQ_TILDE] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_LT_EQ] = ACTIONS(1706), - [anon_sym_DASH_EQ] = ACTIONS(1706), - [anon_sym_BANG_EQ] = ACTIONS(1706), + [anon_sym_PLUS_EQ] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1704), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_EQ_TILDE] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_LT_EQ] = ACTIONS(1704), + [anon_sym_DASH_EQ] = ACTIONS(1704), + [anon_sym_BANG_EQ] = ACTIONS(1704), [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1704), - [sym_test_operator] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_EQ] = ACTIONS(1704), - [anon_sym_EQ_EQ] = ACTIONS(1706), - [anon_sym_GT_EQ] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1702), + [sym_test_operator] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1704), + [anon_sym_GT_EQ] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1704), }, [806] = { - [anon_sym_PLUS_EQ] = ACTIONS(1821), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_EQ_TILDE] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_LT_EQ] = ACTIONS(1821), - [anon_sym_DASH_EQ] = ACTIONS(1821), - [anon_sym_BANG_EQ] = ACTIONS(1821), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1819), - [sym_test_operator] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_EQ] = ACTIONS(1819), - [anon_sym_EQ_EQ] = ACTIONS(1821), - [anon_sym_GT_EQ] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1821), + [anon_sym_PLUS_EQ] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1710), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1710), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_EQ_TILDE] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_LT_EQ] = ACTIONS(1710), + [anon_sym_DASH_EQ] = ACTIONS(1710), + [anon_sym_BANG_EQ] = ACTIONS(1710), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1708), + [sym_test_operator] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1710), + [anon_sym_GT_EQ] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1710), }, [807] = { [anon_sym_PLUS_EQ] = ACTIONS(1825), @@ -31090,7 +30975,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1825), }, [808] = { - [aux_sym_concatenation_repeat1] = STATE(812), + [anon_sym_PLUS_EQ] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1829), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_EQ_TILDE] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_LT_EQ] = ACTIONS(1829), + [anon_sym_DASH_EQ] = ACTIONS(1829), + [anon_sym_BANG_EQ] = ACTIONS(1829), + [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(1827), + [sym_test_operator] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_EQ] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1829), + [anon_sym_GT_EQ] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1829), + }, + [809] = { + [aux_sym_concatenation_repeat1] = STATE(813), [anon_sym_BANG_EQ] = ACTIONS(213), [anon_sym_PLUS_EQ] = ACTIONS(213), [sym_comment] = ACTIONS(41), @@ -31103,7 +31013,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(213), [anon_sym_PIPE_PIPE] = ACTIONS(213), [anon_sym_GT_EQ] = ACTIONS(213), - [sym__concat] = ACTIONS(2038), + [sym__concat] = ACTIONS(2042), [anon_sym_PLUS] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), [anon_sym_EQ_TILDE] = ACTIONS(213), @@ -31113,7 +31023,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__special_character] = ACTIONS(211), [anon_sym_DASH_EQ] = ACTIONS(213), }, - [809] = { + [810] = { [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), [anon_sym_DQUOTE] = ACTIONS(409), [sym__concat] = ACTIONS(411), @@ -31123,7 +31033,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(409), [anon_sym_BQUOTE] = ACTIONS(409), }, - [810] = { + [811] = { [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), [anon_sym_DQUOTE] = ACTIONS(413), [sym__concat] = ACTIONS(415), @@ -31133,7 +31043,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(413), [anon_sym_BQUOTE] = ACTIONS(413), }, - [811] = { + [812] = { [anon_sym_BANG_EQ] = ACTIONS(419), [anon_sym_PLUS_EQ] = ACTIONS(419), [sym_comment] = ACTIONS(41), @@ -31155,8 +31065,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(419), [anon_sym_DASH_EQ] = ACTIONS(419), }, - [812] = { - [aux_sym_concatenation_repeat1] = STATE(820), + [813] = { + [aux_sym_concatenation_repeat1] = STATE(821), [anon_sym_BANG_EQ] = ACTIONS(433), [anon_sym_PLUS_EQ] = ACTIONS(433), [sym_comment] = ACTIONS(41), @@ -31169,7 +31079,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(433), [anon_sym_PIPE_PIPE] = ACTIONS(433), [anon_sym_GT_EQ] = ACTIONS(433), - [sym__concat] = ACTIONS(2604), + [sym__concat] = ACTIONS(2608), [anon_sym_PLUS] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), [anon_sym_EQ_TILDE] = ACTIONS(433), @@ -31178,7 +31088,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(433), [anon_sym_DASH_EQ] = ACTIONS(433), }, - [813] = { + [814] = { [anon_sym_BANG_EQ] = ACTIONS(597), [anon_sym_PLUS_EQ] = ACTIONS(597), [sym_comment] = ACTIONS(41), @@ -31200,7 +31110,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(597), [anon_sym_DASH_EQ] = ACTIONS(597), }, - [814] = { + [815] = { [anon_sym_BANG_EQ] = ACTIONS(213), [anon_sym_PLUS_EQ] = ACTIONS(213), [sym_comment] = ACTIONS(41), @@ -31222,295 +31132,436 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__special_character] = ACTIONS(211), [anon_sym_DASH_EQ] = ACTIONS(213), }, - [815] = { - [aux_sym__literal_repeat1] = STATE(815), - [anon_sym_BANG_EQ] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(650), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_RBRACK] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_EQ] = ACTIONS(645), - [sym_test_operator] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(650), - [anon_sym_PIPE_PIPE] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_EQ_TILDE] = ACTIONS(650), - [anon_sym_DASH_DASH] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(650), - [sym__special_character] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(650), - }, [816] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [sym__string_content] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), + [aux_sym__literal_repeat1] = STATE(816), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(652), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_EQ] = ACTIONS(647), + [sym_test_operator] = ACTIONS(652), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_EQ_TILDE] = ACTIONS(652), + [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_AMP_AMP] = ACTIONS(652), + [sym__special_character] = ACTIONS(2610), + [anon_sym_DASH_EQ] = ACTIONS(652), }, [817] = { - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_PLUS_EQ] = ACTIONS(880), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_EQ] = ACTIONS(878), - [sym_test_operator] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [sym__concat] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_EQ_TILDE] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_DASH_EQ] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [sym__string_content] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), }, [818] = { - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_PLUS_EQ] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(882), + [anon_sym_PLUS_EQ] = ACTIONS(882), [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_RBRACK] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_EQ] = ACTIONS(882), - [sym_test_operator] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [sym__concat] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_DASH_EQ] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(882), + [anon_sym_RBRACK] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(880), + [sym_test_operator] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(882), + [sym__concat] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_DASH_EQ] = ACTIONS(882), }, [819] = { - [sym_command_substitution] = STATE(818), - [sym_simple_expansion] = STATE(818), - [sym_string_expansion] = STATE(818), - [sym_string] = STATE(818), - [sym_process_substitution] = STATE(818), - [sym_expansion] = STATE(818), + [anon_sym_BANG_EQ] = ACTIONS(886), + [anon_sym_PLUS_EQ] = ACTIONS(886), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_RBRACK] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [sym_test_operator] = ACTIONS(886), + [anon_sym_EQ_EQ] = ACTIONS(886), + [anon_sym_PIPE_PIPE] = ACTIONS(886), + [anon_sym_GT_EQ] = ACTIONS(886), + [sym__concat] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_LT_EQ] = ACTIONS(886), + [anon_sym_AMP_AMP] = ACTIONS(886), + [anon_sym_DASH_EQ] = ACTIONS(886), + }, + [820] = { + [sym_command_substitution] = STATE(819), + [sym_simple_expansion] = STATE(819), + [sym_string_expansion] = STATE(819), + [sym_string] = STATE(819), + [sym_process_substitution] = STATE(819), + [sym_expansion] = STATE(819), [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), [anon_sym_DQUOTE] = ACTIONS(301), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1382), - [sym_word] = ACTIONS(1384), + [sym_raw_string] = ACTIONS(1386), + [sym_word] = ACTIONS(1388), [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(2609), + [anon_sym_DOLLAR] = ACTIONS(2613), [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(1382), + [sym_ansii_c_string] = ACTIONS(1386), [anon_sym_BQUOTE] = ACTIONS(293), [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym__special_character] = ACTIONS(1382), - [sym_number] = ACTIONS(1384), - }, - [820] = { - [aux_sym_concatenation_repeat1] = STATE(820), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_PLUS_EQ] = ACTIONS(884), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_RBRACK] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_EQ] = ACTIONS(882), - [sym_test_operator] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [sym__concat] = ACTIONS(2611), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_DASH_EQ] = ACTIONS(884), + [sym__special_character] = ACTIONS(1386), + [sym_number] = ACTIONS(1388), }, [821] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [sym__string_content] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(821), + [anon_sym_BANG_EQ] = ACTIONS(886), + [anon_sym_PLUS_EQ] = ACTIONS(886), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_RBRACK] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [sym_test_operator] = ACTIONS(886), + [anon_sym_EQ_EQ] = ACTIONS(886), + [anon_sym_PIPE_PIPE] = ACTIONS(886), + [anon_sym_GT_EQ] = ACTIONS(886), + [sym__concat] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(886), + [anon_sym_LT_EQ] = ACTIONS(886), + [anon_sym_AMP_AMP] = ACTIONS(886), + [anon_sym_DASH_EQ] = ACTIONS(886), }, [822] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [sym__string_content] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [sym__string_content] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), }, [823] = { - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_PLUS_EQ] = ACTIONS(1065), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_RBRACK] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_EQ] = ACTIONS(1063), - [sym_test_operator] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [sym__concat] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_DASH_EQ] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [sym__string_content] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), }, [824] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [sym__string_content] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_esac] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [aux_sym__simple_variable_name_token1] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [825] = { - [sym_string] = STATE(811), - [anon_sym__] = ACTIONS(2614), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_EQ_TILDE] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_BANG_EQ] = ACTIONS(1227), + [aux_sym_concatenation_repeat1] = STATE(1234), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_BQUOTE] = ACTIONS(1033), + [anon_sym_GT_LPAREN] = ACTIONS(1033), + [sym_number] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [sym__concat] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(1033), + [sym_word] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_LT_AMP] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [sym__special_character] = ACTIONS(1033), + [anon_sym_LT_LT_DASH] = ACTIONS(1033), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2616), - [sym_raw_string] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2618), - [anon_sym_RBRACK] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2620), - [sym_test_operator] = ACTIONS(1227), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2620), + [anon_sym_LF] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1033), + [sym_variable_name] = ACTIONS(1035), + [sym_file_descriptor] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_AMP_GT] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1033), + [anon_sym_GT_AMP] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), + [anon_sym_esac] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1033), + [sym_ansii_c_string] = ACTIONS(1033), + [aux_sym__simple_variable_name_token1] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_SEMI_SEMI] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(1033), }, [826] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [sym__string_content] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), + [aux_sym__literal_repeat1] = STATE(1269), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1039), + [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_number] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [sym_word] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_LT_AMP] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [sym__special_character] = ACTIONS(2278), + [anon_sym_LT_LT_DASH] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1039), + [sym_raw_string] = ACTIONS(1039), + [sym_variable_name] = ACTIONS(1043), + [sym_file_descriptor] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_LT_LT_LT] = ACTIONS(1039), + [anon_sym_GT_AMP] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_esac] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1039), + [sym_ansii_c_string] = ACTIONS(1039), + [aux_sym__simple_variable_name_token1] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [anon_sym_PIPE_AMP] = ACTIONS(1039), }, [827] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [sym__string_content] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), + [anon_sym_BANG_EQ] = ACTIONS(1067), + [anon_sym_PLUS_EQ] = ACTIONS(1067), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1067), + [anon_sym_RBRACK] = ACTIONS(1067), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [sym_test_operator] = ACTIONS(1067), + [anon_sym_EQ_EQ] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1067), + [sym__concat] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_EQ_TILDE] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1067), + [anon_sym_LT_EQ] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_DASH_EQ] = ACTIONS(1067), }, [828] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [sym__string_content] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [sym__string_content] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), }, [829] = { - [anon_sym_BANG_EQ] = ACTIONS(1398), - [anon_sym_PLUS_EQ] = ACTIONS(1398), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_RBRACK] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_EQ] = ACTIONS(1396), - [sym_test_operator] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [sym__concat] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_EQ_TILDE] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_DASH_EQ] = ACTIONS(1398), + [sym_string] = STATE(812), + [anon_sym__] = ACTIONS(2618), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_0] = ACTIONS(2618), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2620), + [sym_raw_string] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_RBRACK] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2624), + [sym_test_operator] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(2624), }, [830] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [sym__string_content] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [sym__string_content] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), }, [831] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [sym__string_content] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [sym__string_content] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), }, [832] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [sym__string_content] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [sym__string_content] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), }, [833] = { + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_AMP_GT_GT] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [sym_word] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_LT_AMP] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1370), + [sym__special_character] = ACTIONS(1370), + [anon_sym_LT_LT_DASH] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [sym_raw_string] = ACTIONS(1370), + [sym_variable_name] = ACTIONS(1372), + [sym_file_descriptor] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_AMP_GT] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_GT_AMP] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), + [anon_sym_esac] = ACTIONS(1370), + [anon_sym_LT_LPAREN] = ACTIONS(1370), + [sym_ansii_c_string] = ACTIONS(1370), + [aux_sym__simple_variable_name_token1] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(1370), + [anon_sym_PIPE_AMP] = ACTIONS(1370), + }, + [834] = { + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_PLUS_EQ] = ACTIONS(1402), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_RBRACK] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [sym_test_operator] = ACTIONS(1402), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), + [anon_sym_GT_EQ] = ACTIONS(1402), + [sym__concat] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_AMP_AMP] = ACTIONS(1402), + [anon_sym_DASH_EQ] = ACTIONS(1402), + }, + [835] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [sym__string_content] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + }, + [836] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [sym__string_content] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + }, + [837] = { [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(1480), [sym__concat] = ACTIONS(1482), @@ -31520,27 +31571,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1480), [anon_sym_BQUOTE] = ACTIONS(1480), }, - [834] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), + [838] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [sym__string_content] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [sym__string_content] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), }, - [835] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), + [839] = { + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_AMP_GT_GT] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_LT_LT] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1618), + [anon_sym_GT_LPAREN] = ACTIONS(1618), + [sym_number] = ACTIONS(1618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), + [anon_sym_PIPE_PIPE] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [sym_word] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_LT_AMP] = ACTIONS(1618), + [anon_sym_GT_GT] = ACTIONS(1618), + [sym__special_character] = ACTIONS(1618), + [anon_sym_LT_LT_DASH] = ACTIONS(1618), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1618), + [sym_raw_string] = ACTIONS(1618), + [sym_variable_name] = ACTIONS(1620), + [sym_file_descriptor] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_AMP_GT] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_LT_LT_LT] = ACTIONS(1618), + [anon_sym_GT_AMP] = ACTIONS(1618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), + [anon_sym_esac] = ACTIONS(1618), + [anon_sym_LT_LPAREN] = ACTIONS(1618), + [sym_ansii_c_string] = ACTIONS(1618), + [aux_sym__simple_variable_name_token1] = ACTIONS(1618), + [anon_sym_AMP_AMP] = ACTIONS(1618), + [anon_sym_SEMI_SEMI] = ACTIONS(1618), + [anon_sym_PIPE_AMP] = ACTIONS(1618), + }, + [840] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [sym__string_content] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [sym__string_content] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), }, - [836] = { + [841] = { [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), [anon_sym_DQUOTE] = ACTIONS(1698), [sym__concat] = ACTIONS(1700), @@ -31550,27 +31638,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1698), [anon_sym_BQUOTE] = ACTIONS(1698), }, - [837] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), + [842] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [sym__string_content] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [sym__string_content] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), }, - [838] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), + [843] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [sym__string_content] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [sym__string_content] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), }, - [839] = { + [844] = { [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), [anon_sym_DQUOTE] = ACTIONS(1823), [sym__concat] = ACTIONS(1825), @@ -31580,8 +31668,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1823), [anon_sym_BQUOTE] = ACTIONS(1823), }, - [840] = { - [aux_sym_concatenation_repeat1] = STATE(844), + [845] = { + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [sym__string_content] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + }, + [846] = { + [aux_sym_concatenation_repeat1] = STATE(850), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -31591,7 +31689,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2024), + [sym__concat] = ACTIONS(2028), [anon_sym_PIPE] = ACTIONS(211), [sym_word] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), @@ -31619,7 +31717,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [841] = { + [847] = { [anon_sym_BANG_EQ] = ACTIONS(411), [anon_sym_PLUS_EQ] = ACTIONS(411), [sym_comment] = ACTIONS(41), @@ -31641,7 +31739,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(411), [anon_sym_DASH_EQ] = ACTIONS(411), }, - [842] = { + [848] = { [anon_sym_BANG_EQ] = ACTIONS(415), [anon_sym_PLUS_EQ] = ACTIONS(415), [sym_comment] = ACTIONS(41), @@ -31663,7 +31761,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(415), [anon_sym_DASH_EQ] = ACTIONS(415), }, - [843] = { + [849] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -31701,8 +31799,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [844] = { - [aux_sym_concatenation_repeat1] = STATE(852), + [850] = { + [aux_sym_concatenation_repeat1] = STATE(858), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -31712,7 +31810,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2624), + [sym__concat] = ACTIONS(2628), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -31740,7 +31838,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [845] = { + [851] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -31778,7 +31876,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [846] = { + [852] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -31815,523 +31913,501 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [847] = { - [aux_sym__literal_repeat1] = STATE(847), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [sym__special_character] = ACTIONS(2626), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [sym_variable_name] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(645), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [aux_sym__simple_variable_name_token1] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), + [853] = { + [aux_sym__literal_repeat1] = STATE(853), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [sym__special_character] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [sym_variable_name] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(647), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [aux_sym__simple_variable_name_token1] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, - [848] = { - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_PLUS_EQ] = ACTIONS(876), + [854] = { + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_PLUS_EQ] = ACTIONS(878), [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_RBRACK] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(874), - [sym_test_operator] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_DASH_EQ] = ACTIONS(876), - }, - [849] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_PLUS_PLUS] = ACTIONS(878), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [sym_test_operator] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [sym_variable_name] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [aux_sym__simple_variable_name_token1] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(878), + [anon_sym_DASH_DASH] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), - }, - [850] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, - [851] = { - [sym_command_substitution] = STATE(850), - [sym_string] = STATE(850), - [sym_process_substitution] = STATE(850), - [sym_simple_expansion] = STATE(850), - [sym_string_expansion] = STATE(850), - [sym_expansion] = STATE(850), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2629), - [anon_sym_DOLLAR] = ACTIONS(2631), - [anon_sym_BQUOTE] = ACTIONS(2633), - [anon_sym_GT_LPAREN] = ACTIONS(2635), - [sym_number] = ACTIONS(2637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_word] = ACTIONS(2637), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2643), - [anon_sym_LT_LPAREN] = ACTIONS(2635), - [sym_ansii_c_string] = ACTIONS(2629), - [sym__special_character] = ACTIONS(2629), - }, - [852] = { - [aux_sym_concatenation_repeat1] = STATE(852), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2645), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, - [853] = { - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_PLUS_EQ] = ACTIONS(907), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(905), - [sym_test_operator] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(907), - [sym__concat] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_DASH_EQ] = ACTIONS(907), - }, - [854] = { - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_PLUS_EQ] = ACTIONS(959), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(957), - [sym_test_operator] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [sym__concat] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_DASH_EQ] = ACTIONS(959), + [anon_sym_DASH_EQ] = ACTIONS(878), }, [855] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [sym_variable_name] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [aux_sym__simple_variable_name_token1] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [sym_variable_name] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [aux_sym__simple_variable_name_token1] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [856] = { - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_PLUS_EQ] = ACTIONS(876), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_RBRACK] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(874), - [sym_test_operator] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_DASH_EQ] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [857] = { - [sym_string] = STATE(843), - [anon_sym__] = ACTIONS(2648), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2648), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2652), - [anon_sym_SEMI] = ACTIONS(1223), - [sym_variable_name] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2648), - [sym_ansii_c_string] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2650), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2648), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(856), + [sym_string] = STATE(856), + [sym_process_substitution] = STATE(856), + [sym_simple_expansion] = STATE(856), + [sym_string_expansion] = STATE(856), + [sym_expansion] = STATE(856), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2633), + [anon_sym_DOLLAR] = ACTIONS(2635), + [anon_sym_BQUOTE] = ACTIONS(2637), + [anon_sym_GT_LPAREN] = ACTIONS(2639), + [sym_number] = ACTIONS(2641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_word] = ACTIONS(2641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2647), + [anon_sym_LT_LPAREN] = ACTIONS(2639), + [sym_ansii_c_string] = ACTIONS(2633), + [sym__special_character] = ACTIONS(2633), }, [858] = { - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_PLUS_EQ] = ACTIONS(1233), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_RBRACK] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_EQ] = ACTIONS(1231), - [sym_test_operator] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_GT_EQ] = ACTIONS(1233), - [sym__concat] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1233), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_DASH_EQ] = ACTIONS(1233), + [aux_sym_concatenation_repeat1] = STATE(858), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [859] = { - [anon_sym_BANG_EQ] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_RBRACK] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1290), - [sym_test_operator] = ACTIONS(1292), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_GT_EQ] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_PLUS_EQ] = ACTIONS(909), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(907), + [sym_test_operator] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_PIPE_PIPE] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [sym__concat] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_DASH_EQ] = ACTIONS(909), }, [860] = { - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_RBRACK] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1300), - [sym_test_operator] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [sym__concat] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_EQ] = ACTIONS(959), + [sym_test_operator] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [sym__concat] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), }, [861] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [sym_variable_name] = ACTIONS(1398), - [anon_sym_RPAREN] = ACTIONS(1396), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [aux_sym__simple_variable_name_token1] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [aux_sym__simple_variable_name_token1] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [862] = { - [anon_sym_BANG_EQ] = ACTIONS(1456), - [anon_sym_PLUS_EQ] = ACTIONS(1456), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_RBRACK] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1454), - [sym_test_operator] = ACTIONS(1456), - [anon_sym_EQ_EQ] = ACTIONS(1456), - [anon_sym_PIPE_PIPE] = ACTIONS(1456), - [anon_sym_GT_EQ] = ACTIONS(1456), - [sym__concat] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_DASH_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(878), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [sym_test_operator] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(878), + [anon_sym_DASH_DASH] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), }, [863] = { - [anon_sym_BANG_EQ] = ACTIONS(1468), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_RBRACK] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1466), - [sym_test_operator] = ACTIONS(1468), - [anon_sym_EQ_EQ] = ACTIONS(1468), - [anon_sym_PIPE_PIPE] = ACTIONS(1468), - [anon_sym_GT_EQ] = ACTIONS(1468), - [sym__concat] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_EQ_TILDE] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym_LT_EQ] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), + [sym_string] = STATE(849), + [anon_sym__] = ACTIONS(2652), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_variable_name] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_GT_AMP] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2652), + [sym_ansii_c_string] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(2654), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(2654), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2652), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, [864] = { - [anon_sym_BANG_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1478), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_RBRACK] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1476), - [sym_test_operator] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1478), - [anon_sym_PIPE_PIPE] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1478), - [sym__concat] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_EQ_TILDE] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_LT_EQ] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1478), - [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_RBRACK] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [sym_test_operator] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), }, [865] = { + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_RBRACK] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_GT_EQ] = ACTIONS(1296), + [sym__concat] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + }, + [866] = { + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1306), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [anon_sym_DASH_EQ] = ACTIONS(1306), + }, + [867] = { + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [sym_variable_name] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1400), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [aux_sym__simple_variable_name_token1] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), + }, + [868] = { + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_PLUS_EQ] = ACTIONS(1460), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_RBRACK] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [sym_test_operator] = ACTIONS(1460), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_PIPE_PIPE] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [sym__concat] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_EQ_TILDE] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1460), + [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_DASH_EQ] = ACTIONS(1460), + }, + [869] = { + [anon_sym_BANG_EQ] = ACTIONS(1472), + [anon_sym_PLUS_EQ] = ACTIONS(1472), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1470), + [sym_test_operator] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1472), + [anon_sym_PIPE_PIPE] = ACTIONS(1472), + [anon_sym_GT_EQ] = ACTIONS(1472), + [sym__concat] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_EQ_TILDE] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_LT_EQ] = ACTIONS(1472), + [anon_sym_AMP_AMP] = ACTIONS(1472), + [anon_sym_DASH_EQ] = ACTIONS(1472), + }, + [870] = { [anon_sym_BANG_EQ] = ACTIONS(1482), [anon_sym_PLUS_EQ] = ACTIONS(1482), [sym_comment] = ACTIONS(41), @@ -32353,51 +32429,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1482), [anon_sym_DASH_EQ] = ACTIONS(1482), }, - [866] = { - [anon_sym_BANG_EQ] = ACTIONS(1690), - [anon_sym_PLUS_EQ] = ACTIONS(1690), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_RBRACK] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1688), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_EQ] = ACTIONS(1688), - [sym_test_operator] = ACTIONS(1690), - [anon_sym_EQ_EQ] = ACTIONS(1690), - [anon_sym_PIPE_PIPE] = ACTIONS(1690), - [anon_sym_GT_EQ] = ACTIONS(1690), - [sym__concat] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_EQ_TILDE] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_LT_EQ] = ACTIONS(1690), - [anon_sym_AMP_AMP] = ACTIONS(1690), - [anon_sym_DASH_EQ] = ACTIONS(1690), + [871] = { + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [sym_test_operator] = ACTIONS(1486), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_GT_EQ] = ACTIONS(1486), + [sym__concat] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_EQ_TILDE] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), }, - [867] = { - [anon_sym_BANG_EQ] = ACTIONS(1696), - [anon_sym_PLUS_EQ] = ACTIONS(1696), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [sym_test_operator] = ACTIONS(1696), - [anon_sym_EQ_EQ] = ACTIONS(1696), - [anon_sym_PIPE_PIPE] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1696), - [sym__concat] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_EQ_TILDE] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_DASH_EQ] = ACTIONS(1696), + [872] = { + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_PLUS_EQ] = ACTIONS(1694), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1694), + [anon_sym_RBRACK] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1692), + [sym_test_operator] = ACTIONS(1694), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1694), + [anon_sym_GT_EQ] = ACTIONS(1694), + [sym__concat] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_EQ_TILDE] = ACTIONS(1694), + [anon_sym_DASH_DASH] = ACTIONS(1694), + [anon_sym_LT_EQ] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_DASH_EQ] = ACTIONS(1694), }, - [868] = { + [873] = { [anon_sym_BANG_EQ] = ACTIONS(1700), [anon_sym_PLUS_EQ] = ACTIONS(1700), [sym_comment] = ACTIONS(41), @@ -32419,51 +32495,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1700), [anon_sym_DASH_EQ] = ACTIONS(1700), }, - [869] = { - [anon_sym_BANG_EQ] = ACTIONS(1706), - [anon_sym_PLUS_EQ] = ACTIONS(1706), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_RBRACK] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_EQ] = ACTIONS(1704), - [sym_test_operator] = ACTIONS(1706), - [anon_sym_EQ_EQ] = ACTIONS(1706), - [anon_sym_PIPE_PIPE] = ACTIONS(1706), - [anon_sym_GT_EQ] = ACTIONS(1706), - [sym__concat] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_EQ_TILDE] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_LT_EQ] = ACTIONS(1706), - [anon_sym_AMP_AMP] = ACTIONS(1706), - [anon_sym_DASH_EQ] = ACTIONS(1706), - }, - [870] = { - [anon_sym_BANG_EQ] = ACTIONS(1821), - [anon_sym_PLUS_EQ] = ACTIONS(1821), + [874] = { + [anon_sym_BANG_EQ] = ACTIONS(1704), + [anon_sym_PLUS_EQ] = ACTIONS(1704), [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_RBRACK] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_EQ] = ACTIONS(1819), - [sym_test_operator] = ACTIONS(1821), - [anon_sym_EQ_EQ] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_GT_EQ] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_EQ_TILDE] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_LT_EQ] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_DASH_EQ] = ACTIONS(1821), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_RBRACK] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1702), + [sym_test_operator] = ACTIONS(1704), + [anon_sym_EQ_EQ] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [anon_sym_GT_EQ] = ACTIONS(1704), + [sym__concat] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_EQ_TILDE] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_LT_EQ] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_DASH_EQ] = ACTIONS(1704), }, - [871] = { + [875] = { + [anon_sym_BANG_EQ] = ACTIONS(1710), + [anon_sym_PLUS_EQ] = ACTIONS(1710), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_RBRACK] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [sym_test_operator] = ACTIONS(1710), + [anon_sym_EQ_EQ] = ACTIONS(1710), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_GT_EQ] = ACTIONS(1710), + [sym__concat] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_EQ_TILDE] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_LT_EQ] = ACTIONS(1710), + [anon_sym_AMP_AMP] = ACTIONS(1710), + [anon_sym_DASH_EQ] = ACTIONS(1710), + }, + [876] = { [anon_sym_BANG_EQ] = ACTIONS(1825), [anon_sym_PLUS_EQ] = ACTIONS(1825), [sym_comment] = ACTIONS(41), @@ -32485,8 +32561,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1825), [anon_sym_DASH_EQ] = ACTIONS(1825), }, - [872] = { - [aux_sym_concatenation_repeat1] = STATE(876), + [877] = { + [anon_sym_BANG_EQ] = ACTIONS(1829), + [anon_sym_PLUS_EQ] = ACTIONS(1829), + [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_RBRACK] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_EQ] = ACTIONS(1827), + [sym_test_operator] = ACTIONS(1829), + [anon_sym_EQ_EQ] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [anon_sym_GT_EQ] = ACTIONS(1829), + [sym__concat] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_EQ_TILDE] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_LT_EQ] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_DASH_EQ] = ACTIONS(1829), + }, + [878] = { + [aux_sym_concatenation_repeat1] = STATE(882), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -32496,7 +32594,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2030), + [sym__concat] = ACTIONS(2034), [anon_sym_PIPE] = ACTIONS(211), [sym_word] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), @@ -32523,7 +32621,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [873] = { + [879] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -32561,7 +32659,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [874] = { + [880] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -32599,7 +32697,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [875] = { + [881] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -32636,8 +32734,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [876] = { - [aux_sym_concatenation_repeat1] = STATE(884), + [882] = { + [aux_sym_concatenation_repeat1] = STATE(890), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -32647,7 +32745,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2654), + [sym__concat] = ACTIONS(2658), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -32674,7 +32772,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [877] = { + [883] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -32711,7 +32809,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [878] = { + [884] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -32747,676 +32845,638 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [879] = { - [aux_sym__literal_repeat1] = STATE(879), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [sym__special_character] = ACTIONS(2656), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(645), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [aux_sym__simple_variable_name_token1] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), - }, - [880] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), - }, - [881] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [aux_sym__simple_variable_name_token1] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), - }, - [882] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, - [883] = { - [sym_command_substitution] = STATE(882), - [sym_string] = STATE(882), - [sym_process_substitution] = STATE(882), - [sym_simple_expansion] = STATE(882), - [sym_string_expansion] = STATE(882), - [sym_expansion] = STATE(882), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2659), - [anon_sym_DOLLAR] = ACTIONS(2661), - [anon_sym_BQUOTE] = ACTIONS(2663), - [anon_sym_GT_LPAREN] = ACTIONS(2665), - [sym_number] = ACTIONS(2667), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_word] = ACTIONS(2667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2673), - [anon_sym_LT_LPAREN] = ACTIONS(2665), - [sym_ansii_c_string] = ACTIONS(2659), - [sym__special_character] = ACTIONS(2659), - }, - [884] = { - [aux_sym_concatenation_repeat1] = STATE(884), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2675), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, [885] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [sym_variable_name] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(905), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [aux_sym__simple_variable_name_token1] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [aux_sym__literal_repeat1] = STATE(885), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [sym__special_character] = ACTIONS(2660), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(647), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [aux_sym__simple_variable_name_token1] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, [886] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [sym_variable_name] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(957), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [aux_sym__simple_variable_name_token1] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [887] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [aux_sym__simple_variable_name_token1] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [aux_sym__simple_variable_name_token1] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [888] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [889] = { - [sym_string] = STATE(875), - [anon_sym__] = ACTIONS(2678), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_GT_AMP] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2678), - [sym_ansii_c_string] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2680), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2678), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(888), + [sym_string] = STATE(888), + [sym_process_substitution] = STATE(888), + [sym_simple_expansion] = STATE(888), + [sym_string_expansion] = STATE(888), + [sym_expansion] = STATE(888), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2663), + [anon_sym_DOLLAR] = ACTIONS(2665), + [anon_sym_BQUOTE] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2669), + [sym_number] = ACTIONS(2671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2675), + [sym_word] = ACTIONS(2671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2677), + [anon_sym_LT_LPAREN] = ACTIONS(2669), + [sym_ansii_c_string] = ACTIONS(2663), + [sym__special_character] = ACTIONS(2663), }, [890] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [aux_sym_concatenation_repeat1] = STATE(890), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [sym_variable_name] = ACTIONS(1233), - [anon_sym_RPAREN] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [aux_sym__simple_variable_name_token1] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [891] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_variable_name] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [aux_sym__simple_variable_name_token1] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [sym_variable_name] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [aux_sym__simple_variable_name_token1] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, [892] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_variable_name] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [aux_sym__simple_variable_name_token1] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [sym_variable_name] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [aux_sym__simple_variable_name_token1] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, [893] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1396), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [aux_sym__simple_variable_name_token1] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [aux_sym__simple_variable_name_token1] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [894] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [sym_variable_name] = ACTIONS(1456), - [anon_sym_RPAREN] = ACTIONS(1454), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [aux_sym__simple_variable_name_token1] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [895] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [sym_variable_name] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1466), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [aux_sym__simple_variable_name_token1] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [sym_string] = STATE(881), + [anon_sym__] = ACTIONS(2682), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2682), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_GT_AMP] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2682), + [sym_ansii_c_string] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(2684), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2682), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2682), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, [896] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [sym_variable_name] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1476), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [aux_sym__simple_variable_name_token1] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_variable_name] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [aux_sym__simple_variable_name_token1] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, [897] = { + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_variable_name] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [aux_sym__simple_variable_name_token1] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + }, + [898] = { + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_variable_name] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [aux_sym__simple_variable_name_token1] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + }, + [899] = { + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [aux_sym__simple_variable_name_token1] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), + }, + [900] = { + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [sym_variable_name] = ACTIONS(1460), + [anon_sym_RPAREN] = ACTIONS(1458), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [aux_sym__simple_variable_name_token1] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), + }, + [901] = { + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [sym_variable_name] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1470), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [aux_sym__simple_variable_name_token1] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), + }, + [902] = { [anon_sym_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1480), @@ -33454,83 +33514,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_PIPE_AMP] = ACTIONS(1480), }, - [898] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [sym_variable_name] = ACTIONS(1690), - [anon_sym_RPAREN] = ACTIONS(1688), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [aux_sym__simple_variable_name_token1] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [903] = { + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [sym_variable_name] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1484), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [aux_sym__simple_variable_name_token1] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, - [899] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [904] = { + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [sym_variable_name] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [aux_sym__simple_variable_name_token1] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [sym_variable_name] = ACTIONS(1694), + [anon_sym_RPAREN] = ACTIONS(1692), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [aux_sym__simple_variable_name_token1] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, - [900] = { + [905] = { [anon_sym_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), [anon_sym_DOLLAR] = ACTIONS(1698), @@ -33568,83 +33628,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_PIPE_AMP] = ACTIONS(1698), }, - [901] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [906] = { + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [sym_variable_name] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [aux_sym__simple_variable_name_token1] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [sym_variable_name] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [aux_sym__simple_variable_name_token1] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, - [902] = { - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [907] = { + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1819), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [aux_sym__simple_variable_name_token1] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [sym_variable_name] = ACTIONS(1710), + [anon_sym_RPAREN] = ACTIONS(1708), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [aux_sym__simple_variable_name_token1] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, - [903] = { + [908] = { [anon_sym_AMP] = ACTIONS(1823), [anon_sym_AMP_GT_GT] = ACTIONS(1823), [anon_sym_DOLLAR] = ACTIONS(1823), @@ -33682,8 +33742,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_PIPE_AMP] = ACTIONS(1823), }, - [904] = { - [aux_sym_concatenation_repeat1] = STATE(908), + [909] = { + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [sym_variable_name] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1827), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [aux_sym__simple_variable_name_token1] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [910] = { + [aux_sym_concatenation_repeat1] = STATE(914), [anon_sym_PERCENT] = ACTIONS(211), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(213), @@ -33699,7 +33797,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(213), [anon_sym_DQUOTE] = ACTIONS(213), [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym__concat] = ACTIONS(895), + [sym__concat] = ACTIONS(897), [sym_word] = ACTIONS(211), [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), [anon_sym_LT_LPAREN] = ACTIONS(213), @@ -33707,7 +33805,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(211), [sym__special_character] = ACTIONS(211), }, - [905] = { + [911] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -33744,7 +33842,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [906] = { + [912] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -33781,7 +33879,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [907] = { + [913] = { [anon_sym_PERCENT] = ACTIONS(417), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(419), @@ -33805,8 +33903,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(417), [sym__special_character] = ACTIONS(417), }, - [908] = { - [aux_sym_concatenation_repeat1] = STATE(916), + [914] = { + [aux_sym_concatenation_repeat1] = STATE(922), [anon_sym_PERCENT] = ACTIONS(429), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(433), @@ -33822,7 +33920,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(433), [anon_sym_DQUOTE] = ACTIONS(433), [anon_sym_GT_LPAREN] = ACTIONS(433), - [sym__concat] = ACTIONS(2684), + [sym__concat] = ACTIONS(2688), [sym_word] = ACTIONS(429), [anon_sym_DOLLAR_LPAREN] = ACTIONS(433), [anon_sym_LT_LPAREN] = ACTIONS(433), @@ -33830,7 +33928,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(429), [sym__special_character] = ACTIONS(429), }, - [909] = { + [915] = { [anon_sym_PERCENT] = ACTIONS(595), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(597), @@ -33854,7 +33952,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(595), [sym__special_character] = ACTIONS(595), }, - [910] = { + [916] = { [anon_sym_PERCENT] = ACTIONS(211), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(213), @@ -33877,574 +33975,537 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(211), [sym__special_character] = ACTIONS(211), }, - [911] = { - [aux_sym__literal_repeat1] = STATE(911), - [anon_sym_PERCENT] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(650), - [sym_raw_string] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_COLON_DASH] = ACTIONS(645), - [anon_sym_EQ] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_COLON_QMARK] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_GT_LPAREN] = ACTIONS(650), - [sym_word] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), - [anon_sym_LT_LPAREN] = ACTIONS(650), - [sym_ansii_c_string] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(645), - [sym__special_character] = ACTIONS(2686), + [917] = { + [aux_sym__literal_repeat1] = STATE(917), + [anon_sym_PERCENT] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(652), + [sym_raw_string] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_COLON_DASH] = ACTIONS(647), + [anon_sym_EQ] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_COLON_QMARK] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(652), + [anon_sym_GT_LPAREN] = ACTIONS(652), + [sym_word] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(652), + [anon_sym_LT_LPAREN] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(652), + [anon_sym_COLON] = ACTIONS(647), + [sym__special_character] = ACTIONS(2690), }, - [912] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [918] = { + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, - [913] = { - [anon_sym_PERCENT] = ACTIONS(878), + [919] = { + [anon_sym_PERCENT] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_COLON_DASH] = ACTIONS(878), - [anon_sym_EQ] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_COLON_QMARK] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym__concat] = ACTIONS(880), - [sym_word] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_COLON] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(882), + [sym_raw_string] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_COLON_DASH] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_COLON_QMARK] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym__concat] = ACTIONS(882), + [sym_word] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), }, - [914] = { - [anon_sym_PERCENT] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_COLON_DASH] = ACTIONS(882), - [anon_sym_EQ] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_COLON_QMARK] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym__concat] = ACTIONS(884), - [sym_word] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_COLON] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), + [920] = { + [anon_sym_PERCENT] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(886), + [sym_raw_string] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_COLON_DASH] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_COLON_QMARK] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), + [anon_sym_BQUOTE] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_GT_LPAREN] = ACTIONS(886), + [sym__concat] = ACTIONS(886), + [sym_word] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), + [anon_sym_LT_LPAREN] = ACTIONS(886), + [sym_ansii_c_string] = ACTIONS(886), + [anon_sym_COLON] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), }, - [915] = { - [sym_command_substitution] = STATE(914), - [sym_simple_expansion] = STATE(914), - [sym_string_expansion] = STATE(914), - [sym_string] = STATE(914), - [sym_process_substitution] = STATE(914), - [sym_expansion] = STATE(914), + [921] = { + [sym_command_substitution] = STATE(920), + [sym_simple_expansion] = STATE(920), + [sym_string_expansion] = STATE(920), + [sym_string] = STATE(920), + [sym_process_substitution] = STATE(920), + [sym_expansion] = STATE(920), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [anon_sym_DQUOTE] = ACTIONS(453), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2689), - [sym_word] = ACTIONS(2691), + [sym_raw_string] = ACTIONS(2693), + [sym_word] = ACTIONS(2695), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_DOLLAR] = ACTIONS(2697), [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(2689), + [sym_ansii_c_string] = ACTIONS(2693), [anon_sym_BQUOTE] = ACTIONS(445), [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym__special_character] = ACTIONS(2689), - [sym_number] = ACTIONS(2691), + [sym__special_character] = ACTIONS(2693), + [sym_number] = ACTIONS(2695), }, - [916] = { - [aux_sym_concatenation_repeat1] = STATE(916), - [anon_sym_PERCENT] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_COLON_DASH] = ACTIONS(882), - [anon_sym_EQ] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_COLON_QMARK] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym__concat] = ACTIONS(2695), - [sym_word] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_COLON] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - }, - [917] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(905), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [aux_sym__simple_variable_name_token1] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [922] = { + [aux_sym_concatenation_repeat1] = STATE(922), + [anon_sym_PERCENT] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(886), + [sym_raw_string] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_COLON_DASH] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_COLON_QMARK] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), + [anon_sym_BQUOTE] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_GT_LPAREN] = ACTIONS(886), + [sym__concat] = ACTIONS(2699), + [sym_word] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), + [anon_sym_LT_LPAREN] = ACTIONS(886), + [sym_ansii_c_string] = ACTIONS(886), + [anon_sym_COLON] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), }, - [918] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [923] = { + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [aux_sym__simple_variable_name_token1] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [aux_sym__simple_variable_name_token1] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, - [919] = { - [anon_sym_PERCENT] = ACTIONS(1063), + [924] = { + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_DASH] = ACTIONS(1063), - [anon_sym_EQ] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_COLON_QMARK] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym__concat] = ACTIONS(1065), - [sym_word] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_COLON] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [aux_sym__simple_variable_name_token1] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, - [920] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [925] = { + [anon_sym_PERCENT] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1067), + [sym_raw_string] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1067), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_COLON_DASH] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_COLON_QMARK] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), + [anon_sym_BQUOTE] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1067), + [anon_sym_GT_LPAREN] = ACTIONS(1067), + [sym__concat] = ACTIONS(1067), + [sym_word] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), + [anon_sym_LT_LPAREN] = ACTIONS(1067), + [sym_ansii_c_string] = ACTIONS(1067), + [anon_sym_COLON] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), }, - [921] = { - [sym_string] = STATE(907), - [anon_sym__] = ACTIONS(2698), - [anon_sym_PERCENT] = ACTIONS(1223), + [926] = { + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2700), - [sym_raw_string] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_DOLLAR] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_COLON_DASH] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_COLON_QMARK] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2698), - [sym_word] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2698), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [anon_sym_COLON] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2698), - [sym__special_character] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2698), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, - [922] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), + [927] = { + [sym_string] = STATE(913), + [anon_sym__] = ACTIONS(2702), + [anon_sym_PERCENT] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2704), + [sym_raw_string] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_COLON_DASH] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_COLON_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [anon_sym_RPAREN] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(2702), + [sym_word] = ACTIONS(1227), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [aux_sym__simple_variable_name_token1] = ACTIONS(1231), + [anon_sym_0] = ACTIONS(2702), [anon_sym_LT_LPAREN] = ACTIONS(1231), [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_COLON] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2702), + [sym__special_character] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2702), }, - [923] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [anon_sym_RPAREN] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [aux_sym__simple_variable_name_token1] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [928] = { + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [aux_sym__simple_variable_name_token1] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, - [924] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [aux_sym__simple_variable_name_token1] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [929] = { + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [aux_sym__simple_variable_name_token1] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), }, - [925] = { - [anon_sym_PERCENT] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1398), - [sym_raw_string] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_COLON_DASH] = ACTIONS(1396), - [anon_sym_EQ] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_COLON_QMARK] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1398), - [anon_sym_BQUOTE] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_GT_LPAREN] = ACTIONS(1398), - [sym__concat] = ACTIONS(1398), - [sym_word] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1398), - [anon_sym_LT_LPAREN] = ACTIONS(1398), - [sym_ansii_c_string] = ACTIONS(1398), - [anon_sym_COLON] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), + [930] = { + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [aux_sym__simple_variable_name_token1] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), }, - [926] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [aux_sym__simple_variable_name_token1] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [931] = { + [anon_sym_PERCENT] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1402), + [sym_raw_string] = ACTIONS(1402), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_COLON_DASH] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_COLON_QMARK] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1402), + [anon_sym_BQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [anon_sym_GT_LPAREN] = ACTIONS(1402), + [sym__concat] = ACTIONS(1402), + [sym_word] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1402), + [anon_sym_LT_LPAREN] = ACTIONS(1402), + [sym_ansii_c_string] = ACTIONS(1402), + [anon_sym_COLON] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), }, - [927] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [anon_sym_RPAREN] = ACTIONS(1466), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [aux_sym__simple_variable_name_token1] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [932] = { + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [aux_sym__simple_variable_name_token1] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), }, - [928] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [aux_sym__simple_variable_name_token1] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [933] = { + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [aux_sym__simple_variable_name_token1] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), }, - [929] = { + [934] = { [anon_sym_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1480), @@ -34477,85 +34538,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__simple_variable_name_token1] = ACTIONS(1480), [anon_sym_LT_LPAREN] = ACTIONS(1480), [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), - }, - [930] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [anon_sym_RPAREN] = ACTIONS(1688), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [aux_sym__simple_variable_name_token1] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), - }, - [931] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), + }, + [935] = { + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [aux_sym__simple_variable_name_token1] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), + }, + [936] = { + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [aux_sym__simple_variable_name_token1] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [anon_sym_RPAREN] = ACTIONS(1692), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [aux_sym__simple_variable_name_token1] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, - [932] = { + [937] = { [anon_sym_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), [anon_sym_DOLLAR] = ACTIONS(1698), @@ -34592,81 +34653,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_PIPE_AMP] = ACTIONS(1698), }, - [933] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [938] = { + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [anon_sym_RPAREN] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [aux_sym__simple_variable_name_token1] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [aux_sym__simple_variable_name_token1] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, - [934] = { - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [939] = { + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1819), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [aux_sym__simple_variable_name_token1] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [aux_sym__simple_variable_name_token1] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, - [935] = { + [940] = { [anon_sym_AMP] = ACTIONS(1823), [anon_sym_AMP_GT_GT] = ACTIONS(1823), [anon_sym_DOLLAR] = ACTIONS(1823), @@ -34703,8 +34764,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_PIPE_AMP] = ACTIONS(1823), }, - [936] = { - [aux_sym_concatenation_repeat1] = STATE(940), + [941] = { + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [anon_sym_RPAREN] = ACTIONS(1827), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [aux_sym__simple_variable_name_token1] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [942] = { + [aux_sym_concatenation_repeat1] = STATE(946), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -34714,7 +34812,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(1035), + [sym__concat] = ACTIONS(1037), [anon_sym_PIPE] = ACTIONS(211), [sym_word] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), @@ -34741,7 +34839,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [937] = { + [943] = { [anon_sym_PERCENT] = ACTIONS(409), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(411), @@ -34765,7 +34863,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(409), [sym__special_character] = ACTIONS(409), }, - [938] = { + [944] = { [anon_sym_PERCENT] = ACTIONS(413), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(415), @@ -34789,7 +34887,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(413), [sym__special_character] = ACTIONS(413), }, - [939] = { + [945] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -34826,8 +34924,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [940] = { - [aux_sym_concatenation_repeat1] = STATE(948), + [946] = { + [aux_sym_concatenation_repeat1] = STATE(954), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -34837,7 +34935,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2706), + [sym__concat] = ACTIONS(2710), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -34864,7 +34962,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [941] = { + [947] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -34901,7 +34999,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [942] = { + [948] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -34937,537 +35035,513 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [943] = { - [aux_sym__literal_repeat1] = STATE(943), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [sym__special_character] = ACTIONS(2708), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [sym_variable_name] = ACTIONS(650), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [ts_builtin_sym_end] = ACTIONS(650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), - }, - [944] = { - [anon_sym_PERCENT] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_COLON_DASH] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_COLON_QMARK] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - [sym_word] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_COLON] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), + [949] = { + [aux_sym__literal_repeat1] = STATE(949), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [sym__special_character] = ACTIONS(2712), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [sym_variable_name] = ACTIONS(652), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [ts_builtin_sym_end] = ACTIONS(652), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, - [945] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), + [950] = { + [anon_sym_PERCENT] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(878), [sym_raw_string] = ACTIONS(878), - [sym_variable_name] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_COLON_DASH] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_COLON_QMARK] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [ts_builtin_sym_end] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [sym_word] = ACTIONS(876), [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), [anon_sym_LT_LPAREN] = ACTIONS(878), [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), + [anon_sym_COLON] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), }, - [946] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), + [951] = { + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [sym_variable_name] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [ts_builtin_sym_end] = ACTIONS(882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, - [947] = { - [sym_command_substitution] = STATE(946), - [sym_simple_expansion] = STATE(946), - [sym_string_expansion] = STATE(946), - [sym_string] = STATE(946), - [sym_process_substitution] = STATE(946), - [sym_expansion] = STATE(946), + [952] = { + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), + }, + [953] = { + [sym_command_substitution] = STATE(952), + [sym_simple_expansion] = STATE(952), + [sym_string_expansion] = STATE(952), + [sym_string] = STATE(952), + [sym_process_substitution] = STATE(952), + [sym_expansion] = STATE(952), [anon_sym_DOLLAR_LBRACE] = ACTIONS(567), [anon_sym_DQUOTE] = ACTIONS(569), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2711), - [sym_word] = ACTIONS(2713), + [sym_raw_string] = ACTIONS(2715), + [sym_word] = ACTIONS(2717), [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2719), [anon_sym_LT_LPAREN] = ACTIONS(563), - [sym_ansii_c_string] = ACTIONS(2711), + [sym_ansii_c_string] = ACTIONS(2715), [anon_sym_BQUOTE] = ACTIONS(561), [anon_sym_GT_LPAREN] = ACTIONS(563), - [sym__special_character] = ACTIONS(2711), - [sym_number] = ACTIONS(2713), - }, - [948] = { - [aux_sym_concatenation_repeat1] = STATE(948), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2717), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, - [949] = { - [anon_sym_PERCENT] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_COLON_DASH] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_COLON_QMARK] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym__concat] = ACTIONS(907), - [sym_word] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - }, - [950] = { - [anon_sym_PERCENT] = ACTIONS(957), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_COLON_DASH] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_COLON_QMARK] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym__concat] = ACTIONS(959), - [sym_word] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_COLON] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - }, - [951] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [sym_variable_name] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), - }, - [952] = { - [anon_sym_PERCENT] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_COLON_DASH] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_COLON_QMARK] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - [sym_word] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_COLON] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - }, - [953] = { - [sym_string] = STATE(939), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym__] = ACTIONS(2720), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2720), - [sym__special_character] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [sym_raw_string] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2722), - [sym_variable_name] = ACTIONS(1227), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2720), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(2726), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [ts_builtin_sym_end] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2720), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [sym_ansii_c_string] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [sym__special_character] = ACTIONS(2715), + [sym_number] = ACTIONS(2717), }, [954] = { - [anon_sym_PERCENT] = ACTIONS(1231), + [aux_sym_concatenation_repeat1] = STATE(954), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2721), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1233), - [sym_raw_string] = ACTIONS(1233), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_COLON_DASH] = ACTIONS(1231), - [anon_sym_EQ] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_COLON_QMARK] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), - [anon_sym_BQUOTE] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [anon_sym_GT_LPAREN] = ACTIONS(1233), - [sym__concat] = ACTIONS(1233), - [sym_word] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [anon_sym_LT_LPAREN] = ACTIONS(1233), - [sym_ansii_c_string] = ACTIONS(1233), - [anon_sym_COLON] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [955] = { - [anon_sym_PERCENT] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1292), - [sym_raw_string] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_COLON_DASH] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_COLON_QMARK] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [sym_word] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [sym_ansii_c_string] = ACTIONS(1292), - [anon_sym_COLON] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), + [anon_sym_PERCENT] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(909), + [sym_raw_string] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_COLON_DASH] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_COLON_QMARK] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(909), + [anon_sym_BQUOTE] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [anon_sym_GT_LPAREN] = ACTIONS(909), + [sym__concat] = ACTIONS(909), + [sym_word] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(909), + [anon_sym_LT_LPAREN] = ACTIONS(909), + [sym_ansii_c_string] = ACTIONS(909), + [anon_sym_COLON] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), }, [956] = { - [anon_sym_PERCENT] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1302), - [sym_raw_string] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_COLON_DASH] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_COLON_QMARK] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [anon_sym_GT_LPAREN] = ACTIONS(1302), - [sym__concat] = ACTIONS(1302), - [sym_word] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [anon_sym_LT_LPAREN] = ACTIONS(1302), - [sym_ansii_c_string] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(961), + [sym_raw_string] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_COLON_DASH] = ACTIONS(959), + [anon_sym_EQ] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_COLON_QMARK] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [anon_sym_GT_LPAREN] = ACTIONS(961), + [sym__concat] = ACTIONS(961), + [sym_word] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), + [anon_sym_LT_LPAREN] = ACTIONS(961), + [sym_ansii_c_string] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), }, [957] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [sym_variable_name] = ACTIONS(1398), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [ts_builtin_sym_end] = ACTIONS(1398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(1067), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [958] = { - [anon_sym_PERCENT] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1456), - [sym_raw_string] = ACTIONS(1456), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_COLON_DASH] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_COLON_QMARK] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1456), - [anon_sym_BQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [anon_sym_GT_LPAREN] = ACTIONS(1456), - [sym__concat] = ACTIONS(1456), - [sym_word] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1456), - [anon_sym_LT_LPAREN] = ACTIONS(1456), - [sym_ansii_c_string] = ACTIONS(1456), - [anon_sym_COLON] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(878), + [sym_raw_string] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_COLON_DASH] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_COLON_QMARK] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [sym_word] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_COLON] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), }, [959] = { - [anon_sym_PERCENT] = ACTIONS(1466), + [sym_string] = STATE(945), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym__] = ACTIONS(2724), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_DOLLAR] = ACTIONS(2726), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2724), + [sym__special_character] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1468), - [sym_raw_string] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_COLON_DASH] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_COLON_QMARK] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1468), - [anon_sym_BQUOTE] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [anon_sym_GT_LPAREN] = ACTIONS(1468), - [sym__concat] = ACTIONS(1468), - [sym_word] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1468), - [anon_sym_LT_LPAREN] = ACTIONS(1468), - [sym_ansii_c_string] = ACTIONS(1468), - [anon_sym_COLON] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(2726), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_raw_string] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2726), + [sym_variable_name] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(2730), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2724), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, [960] = { - [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1235), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1478), - [sym_raw_string] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_COLON_DASH] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_COLON_QMARK] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1478), - [anon_sym_BQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [anon_sym_GT_LPAREN] = ACTIONS(1478), - [sym__concat] = ACTIONS(1478), - [sym_word] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1478), - [anon_sym_LT_LPAREN] = ACTIONS(1478), - [sym_ansii_c_string] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1237), + [sym_raw_string] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_COLON_DASH] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_COLON_QMARK] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), + [anon_sym_BQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [anon_sym_GT_LPAREN] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), + [sym_word] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), + [anon_sym_LT_LPAREN] = ACTIONS(1237), + [sym_ansii_c_string] = ACTIONS(1237), + [anon_sym_COLON] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), }, [961] = { + [anon_sym_PERCENT] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_COLON_DASH] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_COLON_QMARK] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym__concat] = ACTIONS(1296), + [sym_word] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + }, + [962] = { + [anon_sym_PERCENT] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_COLON_DASH] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_COLON_QMARK] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [anon_sym_BQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [sym_word] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1306), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [sym_ansii_c_string] = ACTIONS(1306), + [anon_sym_COLON] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + }, + [963] = { + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [sym_variable_name] = ACTIONS(1402), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), + }, + [964] = { + [anon_sym_PERCENT] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1460), + [sym_raw_string] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_COLON_DASH] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_COLON_QMARK] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [anon_sym_GT_LPAREN] = ACTIONS(1460), + [sym__concat] = ACTIONS(1460), + [sym_word] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), + [anon_sym_LT_LPAREN] = ACTIONS(1460), + [sym_ansii_c_string] = ACTIONS(1460), + [anon_sym_COLON] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + }, + [965] = { + [anon_sym_PERCENT] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1472), + [sym_raw_string] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_COLON_DASH] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_COLON_QMARK] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_GT_LPAREN] = ACTIONS(1472), + [sym__concat] = ACTIONS(1472), + [sym_word] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1472), + [anon_sym_LT_LPAREN] = ACTIONS(1472), + [sym_ansii_c_string] = ACTIONS(1472), + [anon_sym_COLON] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + }, + [966] = { [anon_sym_PERCENT] = ACTIONS(1480), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(1482), @@ -35491,55 +35565,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1480), [sym__special_character] = ACTIONS(1480), }, - [962] = { - [anon_sym_PERCENT] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1690), - [sym_raw_string] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1688), - [anon_sym_COLON_DASH] = ACTIONS(1688), - [anon_sym_EQ] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_COLON_QMARK] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1690), - [anon_sym_BQUOTE] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [anon_sym_GT_LPAREN] = ACTIONS(1690), - [sym__concat] = ACTIONS(1690), - [sym_word] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1690), - [anon_sym_LT_LPAREN] = ACTIONS(1690), - [sym_ansii_c_string] = ACTIONS(1690), - [anon_sym_COLON] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), + [967] = { + [anon_sym_PERCENT] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_COLON_DASH] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_COLON_QMARK] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [sym__concat] = ACTIONS(1486), + [sym_word] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_COLON] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), }, - [963] = { - [anon_sym_PERCENT] = ACTIONS(1694), + [968] = { + [anon_sym_PERCENT] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1696), - [sym_raw_string] = ACTIONS(1696), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_COLON_DASH] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_COLON_QMARK] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1696), - [anon_sym_BQUOTE] = ACTIONS(1696), - [anon_sym_DQUOTE] = ACTIONS(1696), - [anon_sym_GT_LPAREN] = ACTIONS(1696), - [sym__concat] = ACTIONS(1696), - [sym_word] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), - [anon_sym_LT_LPAREN] = ACTIONS(1696), - [sym_ansii_c_string] = ACTIONS(1696), - [anon_sym_COLON] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_COLON_DASH] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_COLON_QMARK] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym__concat] = ACTIONS(1694), + [sym_word] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_COLON] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), }, - [964] = { + [969] = { [anon_sym_PERCENT] = ACTIONS(1698), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(1700), @@ -35563,55 +35637,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1698), [sym__special_character] = ACTIONS(1698), }, - [965] = { - [anon_sym_PERCENT] = ACTIONS(1704), + [970] = { + [anon_sym_PERCENT] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1706), - [sym_raw_string] = ACTIONS(1706), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_COLON_DASH] = ACTIONS(1704), - [anon_sym_EQ] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_COLON_QMARK] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), - [anon_sym_BQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_GT_LPAREN] = ACTIONS(1706), - [sym__concat] = ACTIONS(1706), - [sym_word] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1706), - [anon_sym_LT_LPAREN] = ACTIONS(1706), - [sym_ansii_c_string] = ACTIONS(1706), - [anon_sym_COLON] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), + [anon_sym_POUND] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_COLON_DASH] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_COLON_QMARK] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym__concat] = ACTIONS(1704), + [sym_word] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_COLON] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), }, - [966] = { - [anon_sym_PERCENT] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_COLON_DASH] = ACTIONS(1819), - [anon_sym_EQ] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_COLON_QMARK] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [sym_word] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [sym_ansii_c_string] = ACTIONS(1821), - [anon_sym_COLON] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), + [971] = { + [anon_sym_PERCENT] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1710), + [sym_raw_string] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_COLON_DASH] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_COLON_QMARK] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1710), + [anon_sym_BQUOTE] = ACTIONS(1710), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_GT_LPAREN] = ACTIONS(1710), + [sym__concat] = ACTIONS(1710), + [sym_word] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1710), + [anon_sym_LT_LPAREN] = ACTIONS(1710), + [sym_ansii_c_string] = ACTIONS(1710), + [anon_sym_COLON] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), }, - [967] = { + [972] = { [anon_sym_PERCENT] = ACTIONS(1823), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(1825), @@ -35635,14 +35709,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1823), [sym__special_character] = ACTIONS(1823), }, - [968] = { - [aux_sym_concatenation_repeat1] = STATE(2432), + [973] = { + [anon_sym_PERCENT] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1829), + [sym_raw_string] = ACTIONS(1829), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_COLON_DASH] = ACTIONS(1827), + [anon_sym_EQ] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_COLON_QMARK] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1829), + [anon_sym_BQUOTE] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1829), + [anon_sym_GT_LPAREN] = ACTIONS(1829), + [sym__concat] = ACTIONS(1829), + [sym_word] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1829), + [anon_sym_LT_LPAREN] = ACTIONS(1829), + [sym_ansii_c_string] = ACTIONS(1829), + [anon_sym_COLON] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + }, + [974] = { + [aux_sym_concatenation_repeat1] = STATE(2444), [anon_sym_RBRACK] = ACTIONS(213), [sym_comment] = ACTIONS(41), [sym__concat] = ACTIONS(213), [sym__special_character] = ACTIONS(211), }, - [969] = { + [975] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -35679,7 +35777,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [970] = { + [976] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -35716,7 +35814,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [971] = { + [977] = { [anon_sym_BANG_EQ] = ACTIONS(417), [anon_sym_PLUS_EQ] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(417), @@ -35741,8 +35839,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_DASH_EQ] = ACTIONS(417), }, - [972] = { - [aux_sym_concatenation_repeat1] = STATE(980), + [978] = { + [aux_sym_concatenation_repeat1] = STATE(986), [anon_sym_BANG_EQ] = ACTIONS(429), [anon_sym_PLUS_EQ] = ACTIONS(429), [anon_sym_AMP] = ACTIONS(429), @@ -35757,7 +35855,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), [anon_sym_GT_EQ] = ACTIONS(429), - [sym__concat] = ACTIONS(2728), + [sym__concat] = ACTIONS(2732), [anon_sym_PLUS] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), [anon_sym_EQ_TILDE] = ACTIONS(429), @@ -35767,7 +35865,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_DASH_EQ] = ACTIONS(429), }, - [973] = { + [979] = { [anon_sym_BANG_EQ] = ACTIONS(595), [anon_sym_PLUS_EQ] = ACTIONS(595), [anon_sym_AMP] = ACTIONS(595), @@ -35792,555 +35890,518 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_DASH_EQ] = ACTIONS(595), }, - [974] = { + [980] = { [anon_sym_RBRACK] = ACTIONS(213), [sym_comment] = ACTIONS(41), [sym__concat] = ACTIONS(213), [sym__special_character] = ACTIONS(211), }, - [975] = { - [aux_sym__literal_repeat1] = STATE(975), - [anon_sym_RBRACK] = ACTIONS(650), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(650), - [sym__special_character] = ACTIONS(2730), - }, - [976] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), - }, - [977] = { - [anon_sym_BANG_EQ] = ACTIONS(878), - [anon_sym_PLUS_EQ] = ACTIONS(878), - [anon_sym_AMP] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS_PLUS] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_EQ] = ACTIONS(878), - [sym_test_operator] = ACTIONS(878), - [anon_sym_EQ_EQ] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_EQ_TILDE] = ACTIONS(878), - [anon_sym_DASH_DASH] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_LT_EQ] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_DASH_EQ] = ACTIONS(878), - }, - [978] = { - [anon_sym_BANG_EQ] = ACTIONS(882), - [anon_sym_PLUS_EQ] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_PLUS_PLUS] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_EQ] = ACTIONS(882), - [sym_test_operator] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [anon_sym_GT_EQ] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(882), - [anon_sym_DASH_DASH] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_LT_EQ] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_DASH_EQ] = ACTIONS(882), - }, - [979] = { - [sym_command_substitution] = STATE(978), - [sym_simple_expansion] = STATE(978), - [sym_string_expansion] = STATE(978), - [sym_string] = STATE(978), - [sym_process_substitution] = STATE(978), - [sym_expansion] = STATE(978), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2296), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2733), - [sym_word] = ACTIONS(2735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2298), - [anon_sym_DOLLAR] = ACTIONS(2737), - [anon_sym_LT_LPAREN] = ACTIONS(2292), - [sym_ansii_c_string] = ACTIONS(2733), - [anon_sym_BQUOTE] = ACTIONS(2290), - [anon_sym_GT_LPAREN] = ACTIONS(2292), - [sym__special_character] = ACTIONS(2733), - [sym_number] = ACTIONS(2735), - }, - [980] = { - [aux_sym_concatenation_repeat1] = STATE(980), - [anon_sym_BANG_EQ] = ACTIONS(882), - [anon_sym_PLUS_EQ] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_PLUS_PLUS] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_EQ] = ACTIONS(882), - [sym_test_operator] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [anon_sym_GT_EQ] = ACTIONS(882), - [sym__concat] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(882), - [anon_sym_DASH_DASH] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_LT_EQ] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_DASH_EQ] = ACTIONS(882), - }, [981] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [sym_variable_name] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [ts_builtin_sym_end] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [aux_sym__literal_repeat1] = STATE(981), + [anon_sym_RBRACK] = ACTIONS(652), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(652), + [sym__special_character] = ACTIONS(2734), }, [982] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [sym_variable_name] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [ts_builtin_sym_end] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [983] = { - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_PLUS_EQ] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_EQ] = ACTIONS(1063), - [sym_test_operator] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_DASH_EQ] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(880), + [sym_test_operator] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_DASH_DASH] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_DASH_EQ] = ACTIONS(880), }, [984] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [sym_test_operator] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [anon_sym_GT_EQ] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_DASH_EQ] = ACTIONS(884), }, [985] = { - [sym_string] = STATE(811), - [anon_sym__] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2616), - [sym_raw_string] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_RBRACK] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym__concat] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_0] = ACTIONS(2614), - [aux_sym__simple_variable_name_token1] = ACTIONS(2614), - [anon_sym_QMARK] = ACTIONS(2620), + [sym_command_substitution] = STATE(984), + [sym_simple_expansion] = STATE(984), + [sym_string_expansion] = STATE(984), + [sym_string] = STATE(984), + [sym_process_substitution] = STATE(984), + [sym_expansion] = STATE(984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2300), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2737), + [sym_word] = ACTIONS(2739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2302), + [anon_sym_DOLLAR] = ACTIONS(2741), + [anon_sym_LT_LPAREN] = ACTIONS(2296), + [sym_ansii_c_string] = ACTIONS(2737), + [anon_sym_BQUOTE] = ACTIONS(2294), + [anon_sym_GT_LPAREN] = ACTIONS(2296), + [sym__special_character] = ACTIONS(2737), + [sym_number] = ACTIONS(2739), }, [986] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [sym_variable_name] = ACTIONS(1233), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [ts_builtin_sym_end] = ACTIONS(1233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [aux_sym_concatenation_repeat1] = STATE(986), + [anon_sym_BANG_EQ] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [sym_test_operator] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [anon_sym_GT_EQ] = ACTIONS(884), + [sym__concat] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_DASH_EQ] = ACTIONS(884), }, [987] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_variable_name] = ACTIONS(1292), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [ts_builtin_sym_end] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [sym_variable_name] = ACTIONS(909), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [ts_builtin_sym_end] = ACTIONS(909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, [988] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_variable_name] = ACTIONS(1302), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [ts_builtin_sym_end] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [sym_variable_name] = ACTIONS(961), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, [989] = { - [anon_sym_BANG_EQ] = ACTIONS(1396), - [anon_sym_PLUS_EQ] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_EQ] = ACTIONS(1396), - [sym_test_operator] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_GT_EQ] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_EQ_TILDE] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_DASH_EQ] = ACTIONS(1396), + [anon_sym_BANG_EQ] = ACTIONS(1065), + [anon_sym_PLUS_EQ] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [sym_test_operator] = ACTIONS(1065), + [anon_sym_EQ_EQ] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [anon_sym_GT_EQ] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_EQ_TILDE] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_LT_EQ] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_DASH_EQ] = ACTIONS(1065), }, [990] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [sym_variable_name] = ACTIONS(1456), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [991] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [sym_variable_name] = ACTIONS(1468), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [sym_string] = STATE(812), + [anon_sym__] = ACTIONS(2618), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2620), + [sym_raw_string] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_RBRACK] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym__concat] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_0] = ACTIONS(2618), + [aux_sym__simple_variable_name_token1] = ACTIONS(2618), + [anon_sym_QMARK] = ACTIONS(2624), }, [992] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [sym_variable_name] = ACTIONS(1478), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [ts_builtin_sym_end] = ACTIONS(1478), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_variable_name] = ACTIONS(1237), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [ts_builtin_sym_end] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, [993] = { + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_variable_name] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + }, + [994] = { + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_variable_name] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + }, + [995] = { + [anon_sym_BANG_EQ] = ACTIONS(1400), + [anon_sym_PLUS_EQ] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [sym_test_operator] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_DASH_EQ] = ACTIONS(1400), + }, + [996] = { + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [sym_variable_name] = ACTIONS(1460), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), + }, + [997] = { + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [sym_variable_name] = ACTIONS(1472), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), + }, + [998] = { [anon_sym_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1480), @@ -36377,81 +36438,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_PIPE_AMP] = ACTIONS(1480), }, - [994] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [sym_variable_name] = ACTIONS(1690), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [999] = { + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [sym_variable_name] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, - [995] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [1000] = { + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [sym_variable_name] = ACTIONS(1696), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [ts_builtin_sym_end] = ACTIONS(1696), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [sym_variable_name] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, - [996] = { + [1001] = { [anon_sym_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), [anon_sym_DOLLAR] = ACTIONS(1698), @@ -36488,81 +36549,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_PIPE_AMP] = ACTIONS(1698), }, - [997] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [1002] = { + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [sym_variable_name] = ACTIONS(1706), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [sym_variable_name] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, - [998] = { - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [1003] = { + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), - [sym_variable_name] = ACTIONS(1821), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [ts_builtin_sym_end] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [sym_variable_name] = ACTIONS(1710), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, - [999] = { + [1004] = { [anon_sym_AMP] = ACTIONS(1823), [anon_sym_AMP_GT_GT] = ACTIONS(1823), [anon_sym_DOLLAR] = ACTIONS(1823), @@ -36599,8 +36660,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_PIPE_AMP] = ACTIONS(1823), }, - [1000] = { - [aux_sym_concatenation_repeat1] = STATE(972), + [1005] = { + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [sym_variable_name] = ACTIONS(1829), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [1006] = { + [aux_sym_concatenation_repeat1] = STATE(978), [anon_sym_BANG_EQ] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(211), [sym__special_character] = ACTIONS(211), @@ -36616,7 +36714,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), [anon_sym_GT_EQ] = ACTIONS(211), - [sym__concat] = ACTIONS(2282), + [sym__concat] = ACTIONS(2286), [anon_sym_PLUS] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), [anon_sym_EQ_TILDE] = ACTIONS(211), @@ -36626,7 +36724,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_DASH_EQ] = ACTIONS(211), }, - [1001] = { + [1007] = { [anon_sym_BANG_EQ] = ACTIONS(409), [anon_sym_PLUS_EQ] = ACTIONS(409), [anon_sym_AMP] = ACTIONS(409), @@ -36651,7 +36749,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_DASH_EQ] = ACTIONS(409), }, - [1002] = { + [1008] = { [anon_sym_BANG_EQ] = ACTIONS(413), [anon_sym_PLUS_EQ] = ACTIONS(413), [anon_sym_AMP] = ACTIONS(413), @@ -36676,7 +36774,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_DASH_EQ] = ACTIONS(413), }, - [1003] = { + [1009] = { [anon_sym_LT_LT_DASH] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), @@ -36700,8 +36798,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [1004] = { - [aux_sym_concatenation_repeat1] = STATE(1012), + [1010] = { + [aux_sym_concatenation_repeat1] = STATE(1018), [anon_sym_LT_LT_DASH] = ACTIONS(429), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), @@ -36720,12 +36818,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(429), [anon_sym_LT_AMP] = ACTIONS(429), [anon_sym_GT_GT] = ACTIONS(429), - [sym__concat] = ACTIONS(2742), + [sym__concat] = ACTIONS(2746), [anon_sym_AMP_AMP] = ACTIONS(429), [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [1005] = { + [1011] = { [anon_sym_LT_LT_DASH] = ACTIONS(595), [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), @@ -36749,7 +36847,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [1006] = { + [1012] = { [anon_sym_BANG_EQ] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(211), [sym__special_character] = ACTIONS(211), @@ -36774,461 +36872,436 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_DASH_EQ] = ACTIONS(211), }, - [1007] = { - [aux_sym__literal_repeat1] = STATE(1007), - [anon_sym_BANG_EQ] = ACTIONS(645), - [anon_sym_PLUS_EQ] = ACTIONS(645), - [sym__special_character] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_LF] = ACTIONS(645), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_EQ] = ACTIONS(645), - [sym_test_operator] = ACTIONS(645), - [anon_sym_EQ_EQ] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_GT_EQ] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_EQ_TILDE] = ACTIONS(645), - [anon_sym_DASH_DASH] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_DASH_EQ] = ACTIONS(645), - }, - [1008] = { - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_PLUS_EQ] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(874), - [sym_test_operator] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_DASH_EQ] = ACTIONS(874), - }, - [1009] = { - [anon_sym_LT_LT_DASH] = ACTIONS(878), - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [ts_builtin_sym_end] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), - }, - [1010] = { - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, - [1011] = { - [sym_command_substitution] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_string_expansion] = STATE(1010), - [sym_string] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [sym_expansion] = STATE(1010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), - [anon_sym_DQUOTE] = ACTIONS(666), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2747), - [sym_word] = ACTIONS(2749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), - [anon_sym_DOLLAR] = ACTIONS(2751), - [anon_sym_LT_LPAREN] = ACTIONS(676), - [sym_ansii_c_string] = ACTIONS(2747), - [anon_sym_BQUOTE] = ACTIONS(678), - [anon_sym_GT_LPAREN] = ACTIONS(676), - [sym__special_character] = ACTIONS(2747), - [sym_number] = ACTIONS(2749), - }, - [1012] = { - [aux_sym_concatenation_repeat1] = STATE(1012), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__concat] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, [1013] = { - [anon_sym_BANG_EQ] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(905), - [sym_test_operator] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [anon_sym_GT_EQ] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_EQ_TILDE] = ACTIONS(905), - [anon_sym_DASH_DASH] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_LT_EQ] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_DASH_EQ] = ACTIONS(905), + [aux_sym__literal_repeat1] = STATE(1013), + [anon_sym_BANG_EQ] = ACTIONS(647), + [anon_sym_PLUS_EQ] = ACTIONS(647), + [sym__special_character] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_LF] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_EQ] = ACTIONS(647), + [sym_test_operator] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_EQ_TILDE] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_LT_EQ] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_DASH_EQ] = ACTIONS(647), }, [1014] = { - [anon_sym_BANG_EQ] = ACTIONS(957), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(957), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_PLUS_PLUS] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(957), - [sym_test_operator] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_GT_EQ] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(957), - [anon_sym_DASH_DASH] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_LT_EQ] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [sym_test_operator] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_DASH_EQ] = ACTIONS(876), }, [1015] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [ts_builtin_sym_end] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [ts_builtin_sym_end] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [1016] = { - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_PLUS_EQ] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(874), - [sym_test_operator] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_DASH_EQ] = ACTIONS(874), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [1017] = { - [sym_string] = STATE(971), - [anon_sym__] = ACTIONS(2756), - [anon_sym_PLUS_EQ] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2756), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_LT_EQ] = ACTIONS(1223), - [anon_sym_DASH_EQ] = ACTIONS(1223), - [anon_sym_BANG_EQ] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2760), - [anon_sym_AT] = ACTIONS(2756), - [sym_test_operator] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_GT_EQ] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(1016), + [sym_simple_expansion] = STATE(1016), + [sym_string_expansion] = STATE(1016), + [sym_string] = STATE(1016), + [sym_process_substitution] = STATE(1016), + [sym_expansion] = STATE(1016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2751), + [sym_word] = ACTIONS(2753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(674), + [anon_sym_DOLLAR] = ACTIONS(2755), + [anon_sym_LT_LPAREN] = ACTIONS(678), + [sym_ansii_c_string] = ACTIONS(2751), + [anon_sym_BQUOTE] = ACTIONS(680), + [anon_sym_GT_LPAREN] = ACTIONS(678), + [sym__special_character] = ACTIONS(2751), + [sym_number] = ACTIONS(2753), }, [1018] = { - [anon_sym_BANG_EQ] = ACTIONS(1231), - [anon_sym_PLUS_EQ] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), + [aux_sym_concatenation_repeat1] = STATE(1018), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_EQ] = ACTIONS(1231), - [sym_test_operator] = ACTIONS(1231), - [anon_sym_EQ_EQ] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [anon_sym_GT_EQ] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_EQ_TILDE] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_LT_EQ] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__concat] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [1019] = { - [anon_sym_BANG_EQ] = ACTIONS(1290), - [anon_sym_PLUS_EQ] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1290), - [sym_test_operator] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_LT_EQ] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_DASH_EQ] = ACTIONS(1290), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(907), + [sym_test_operator] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_DASH_EQ] = ACTIONS(907), }, [1020] = { - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1300), - [sym_test_operator] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_PLUS_EQ] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_EQ] = ACTIONS(959), + [sym_test_operator] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_DASH_EQ] = ACTIONS(959), }, [1021] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [ts_builtin_sym_end] = ACTIONS(1398), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(1067), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [1022] = { - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_PLUS_EQ] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1454), - [sym_test_operator] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_DASH_EQ] = ACTIONS(1454), + [anon_sym_LF] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [sym_test_operator] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_DASH_EQ] = ACTIONS(876), }, [1023] = { - [anon_sym_BANG_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1466), - [sym_test_operator] = ACTIONS(1466), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_EQ_TILDE] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), + [sym_string] = STATE(977), + [anon_sym__] = ACTIONS(2760), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2762), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(2762), + [sym_raw_string] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2760), + [sym_test_operator] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2760), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), }, [1024] = { - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1476), - [sym_test_operator] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_GT_EQ] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_EQ_TILDE] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [sym_test_operator] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), }, [1025] = { + [anon_sym_BANG_EQ] = ACTIONS(1294), + [anon_sym_PLUS_EQ] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_LT_EQ] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_DASH_EQ] = ACTIONS(1294), + }, + [1026] = { + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + }, + [1027] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), + }, + [1028] = { + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_PLUS_EQ] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [sym_test_operator] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_EQ_TILDE] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_DASH_EQ] = ACTIONS(1458), + }, + [1029] = { + [anon_sym_BANG_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1470), + [sym_test_operator] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_EQ_TILDE] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + }, + [1030] = { [anon_sym_BANG_EQ] = ACTIONS(1480), [anon_sym_PLUS_EQ] = ACTIONS(1480), [anon_sym_AMP] = ACTIONS(1480), @@ -37253,57 +37326,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_DASH_EQ] = ACTIONS(1480), }, - [1026] = { - [anon_sym_BANG_EQ] = ACTIONS(1688), - [anon_sym_PLUS_EQ] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_PLUS_PLUS] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1688), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_EQ] = ACTIONS(1688), - [sym_test_operator] = ACTIONS(1688), - [anon_sym_EQ_EQ] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [anon_sym_GT_EQ] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_EQ_TILDE] = ACTIONS(1688), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_LT_EQ] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_DASH_EQ] = ACTIONS(1688), + [1031] = { + [anon_sym_BANG_EQ] = ACTIONS(1484), + [anon_sym_PLUS_EQ] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [sym_test_operator] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_EQ_TILDE] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_DASH_EQ] = ACTIONS(1484), }, - [1027] = { - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_PLUS_EQ] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [sym_test_operator] = ACTIONS(1694), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [anon_sym_GT_EQ] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_EQ_TILDE] = ACTIONS(1694), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_LT_EQ] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_DASH_EQ] = ACTIONS(1694), + [1032] = { + [anon_sym_BANG_EQ] = ACTIONS(1692), + [anon_sym_PLUS_EQ] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1692), + [sym_test_operator] = ACTIONS(1692), + [anon_sym_EQ_EQ] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [anon_sym_GT_EQ] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_EQ_TILDE] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_LT_EQ] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_DASH_EQ] = ACTIONS(1692), }, - [1028] = { + [1033] = { [anon_sym_BANG_EQ] = ACTIONS(1698), [anon_sym_PLUS_EQ] = ACTIONS(1698), [anon_sym_AMP] = ACTIONS(1698), @@ -37328,57 +37401,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_DASH_EQ] = ACTIONS(1698), }, - [1029] = { - [anon_sym_BANG_EQ] = ACTIONS(1704), - [anon_sym_PLUS_EQ] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1704), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_EQ] = ACTIONS(1704), - [sym_test_operator] = ACTIONS(1704), - [anon_sym_EQ_EQ] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [anon_sym_GT_EQ] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_EQ_TILDE] = ACTIONS(1704), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_LT_EQ] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_DASH_EQ] = ACTIONS(1704), + [1034] = { + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_PLUS_EQ] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1702), + [sym_test_operator] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_GT_EQ] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_EQ_TILDE] = ACTIONS(1702), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_DASH_EQ] = ACTIONS(1702), }, - [1030] = { - [anon_sym_BANG_EQ] = ACTIONS(1819), - [anon_sym_PLUS_EQ] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_EQ] = ACTIONS(1819), - [sym_test_operator] = ACTIONS(1819), - [anon_sym_EQ_EQ] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [anon_sym_GT_EQ] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_EQ_TILDE] = ACTIONS(1819), - [anon_sym_DASH_DASH] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_LT_EQ] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_DASH_EQ] = ACTIONS(1819), + [1035] = { + [anon_sym_BANG_EQ] = ACTIONS(1708), + [anon_sym_PLUS_EQ] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_PLUS_PLUS] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [sym_test_operator] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_EQ_TILDE] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_LT_EQ] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_DASH_EQ] = ACTIONS(1708), }, - [1031] = { + [1036] = { [anon_sym_BANG_EQ] = ACTIONS(1823), [anon_sym_PLUS_EQ] = ACTIONS(1823), [anon_sym_AMP] = ACTIONS(1823), @@ -37403,8 +37476,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_DASH_EQ] = ACTIONS(1823), }, - [1032] = { - [aux_sym_concatenation_repeat1] = STATE(1004), + [1037] = { + [anon_sym_BANG_EQ] = ACTIONS(1827), + [anon_sym_PLUS_EQ] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_PLUS_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_EQ] = ACTIONS(1827), + [sym_test_operator] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [anon_sym_GT_EQ] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_EQ_TILDE] = ACTIONS(1827), + [anon_sym_DASH_DASH] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_LT_EQ] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_DASH_EQ] = ACTIONS(1827), + }, + [1038] = { + [aux_sym_concatenation_repeat1] = STATE(1010), [anon_sym_LT_LT_DASH] = ACTIONS(211), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), @@ -37423,13 +37521,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(211), [anon_sym_LT_AMP] = ACTIONS(211), [anon_sym_GT_GT] = ACTIONS(211), - [sym__concat] = ACTIONS(1160), + [sym__concat] = ACTIONS(1164), [anon_sym_AMP_AMP] = ACTIONS(211), [sym__special_character] = ACTIONS(211), [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [1033] = { + [1039] = { [anon_sym_LT_LT_DASH] = ACTIONS(409), [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), @@ -37453,7 +37551,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [1034] = { + [1040] = { [anon_sym_LT_LT_DASH] = ACTIONS(413), [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), @@ -37477,7 +37575,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [1035] = { + [1041] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -37514,8 +37612,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [1036] = { - [aux_sym_concatenation_repeat1] = STATE(1044), + [1042] = { + [aux_sym_concatenation_repeat1] = STATE(1050), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -37525,7 +37623,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2762), + [sym__concat] = ACTIONS(2766), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -37552,7 +37650,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [1037] = { + [1043] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -37589,7 +37687,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [1038] = { + [1044] = { [anon_sym_LT_LT_DASH] = ACTIONS(211), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), @@ -37608,520 +37706,496 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(211), [anon_sym_LT_AMP] = ACTIONS(211), [anon_sym_GT_GT] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), - }, - [1039] = { - [aux_sym__literal_repeat1] = STATE(1039), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [ts_builtin_sym_end] = ACTIONS(650), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [sym__special_character] = ACTIONS(2764), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), - }, - [1040] = { - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), - }, - [1041] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [sym_variable_name] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), - }, - [1042] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, - [1043] = { - [sym_command_substitution] = STATE(1042), - [sym_string] = STATE(1042), - [sym_process_substitution] = STATE(1042), - [sym_simple_expansion] = STATE(1042), - [sym_string_expansion] = STATE(1042), - [sym_expansion] = STATE(1042), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2767), - [anon_sym_DOLLAR] = ACTIONS(2769), - [anon_sym_BQUOTE] = ACTIONS(2771), - [anon_sym_GT_LPAREN] = ACTIONS(2773), - [sym_number] = ACTIONS(2775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_word] = ACTIONS(2775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2781), - [anon_sym_LT_LPAREN] = ACTIONS(2773), - [sym_ansii_c_string] = ACTIONS(2767), - [sym__special_character] = ACTIONS(2767), - }, - [1044] = { - [aux_sym_concatenation_repeat1] = STATE(1044), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2783), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1045] = { - [anon_sym_LT_LT_DASH] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [ts_builtin_sym_end] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [aux_sym__literal_repeat1] = STATE(1045), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [ts_builtin_sym_end] = ACTIONS(652), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [sym__special_character] = ACTIONS(2768), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, [1046] = { - [anon_sym_LT_LT_DASH] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [ts_builtin_sym_end] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [1047] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [sym_variable_name] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [sym_variable_name] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [1048] = { - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [1049] = { - [sym_string] = STATE(1003), - [anon_sym__] = ACTIONS(2786), - [anon_sym_PIPE_AMP] = ACTIONS(1223), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(2788), - [sym_raw_string] = ACTIONS(2790), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [ts_builtin_sym_end] = ACTIONS(1227), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(2792), - [aux_sym__simple_variable_name_token1] = ACTIONS(2786), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(1048), + [sym_string] = STATE(1048), + [sym_process_substitution] = STATE(1048), + [sym_simple_expansion] = STATE(1048), + [sym_string_expansion] = STATE(1048), + [sym_expansion] = STATE(1048), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2771), + [anon_sym_DOLLAR] = ACTIONS(2773), + [anon_sym_BQUOTE] = ACTIONS(2775), + [anon_sym_GT_LPAREN] = ACTIONS(2777), + [sym_number] = ACTIONS(2779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_word] = ACTIONS(2779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2785), + [anon_sym_LT_LPAREN] = ACTIONS(2777), + [sym_ansii_c_string] = ACTIONS(2771), + [sym__special_character] = ACTIONS(2771), }, [1050] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [aux_sym_concatenation_repeat1] = STATE(1050), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2787), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [ts_builtin_sym_end] = ACTIONS(1233), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [1051] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [ts_builtin_sym_end] = ACTIONS(1292), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [ts_builtin_sym_end] = ACTIONS(909), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, [1052] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [ts_builtin_sym_end] = ACTIONS(1302), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, [1053] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [sym_variable_name] = ACTIONS(1398), - [anon_sym_RPAREN] = ACTIONS(1396), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [1054] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(878), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [1055] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [sym_string] = STATE(1009), + [anon_sym__] = ACTIONS(2790), + [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2792), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2792), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(2792), + [sym_raw_string] = ACTIONS(2794), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(2796), + [aux_sym__simple_variable_name_token1] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), }, [1056] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [ts_builtin_sym_end] = ACTIONS(1478), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [ts_builtin_sym_end] = ACTIONS(1237), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, [1057] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + }, + [1058] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + }, + [1059] = { + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [sym_variable_name] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1400), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), + }, + [1060] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1460), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), + }, + [1061] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1472), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), + }, + [1062] = { [anon_sym_LT_LT_DASH] = ACTIONS(1480), [anon_sym_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), @@ -38145,55 +38219,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_PIPE_AMP] = ACTIONS(1480), }, - [1058] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [1063] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, - [1059] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), + [1064] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [ts_builtin_sym_end] = ACTIONS(1696), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1694), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, - [1060] = { + [1065] = { [anon_sym_LT_LT_DASH] = ACTIONS(1698), [anon_sym_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), @@ -38217,55 +38291,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_PIPE_AMP] = ACTIONS(1698), }, - [1061] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), + [1066] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, - [1062] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), + [1067] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [ts_builtin_sym_end] = ACTIONS(1821), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, - [1063] = { + [1068] = { [anon_sym_LT_LT_DASH] = ACTIONS(1823), [anon_sym_AMP] = ACTIONS(1823), [anon_sym_AMP_GT_GT] = ACTIONS(1823), @@ -38289,8 +38363,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_PIPE_AMP] = ACTIONS(1823), }, - [1064] = { - [aux_sym_concatenation_repeat1] = STATE(1036), + [1069] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1829), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [1070] = { + [aux_sym_concatenation_repeat1] = STATE(1042), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -38300,7 +38398,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2125), + [sym__concat] = ACTIONS(2129), [anon_sym_PIPE] = ACTIONS(211), [sym_word] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), @@ -38327,7 +38425,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [1065] = { + [1071] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -38364,7 +38462,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [1066] = { + [1072] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -38401,7 +38499,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [1067] = { + [1073] = { [anon_sym_PIPE_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_LT_LT] = ACTIONS(417), @@ -38427,14 +38525,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(417), }, - [1068] = { - [aux_sym_concatenation_repeat1] = STATE(1076), + [1074] = { + [aux_sym_concatenation_repeat1] = STATE(1082), [anon_sym_PIPE_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_LT_LT] = ACTIONS(429), [anon_sym_BQUOTE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2794), + [sym__concat] = ACTIONS(2798), [anon_sym_PIPE] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), [anon_sym_LT_AMP] = ACTIONS(429), @@ -38453,7 +38551,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_AMP] = ACTIONS(429), }, - [1069] = { + [1075] = { [anon_sym_PIPE_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_LT_LT] = ACTIONS(595), @@ -38479,7 +38577,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_AMP] = ACTIONS(595), }, - [1070] = { + [1076] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -38515,612 +38613,575 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [1071] = { - [aux_sym__literal_repeat1] = STATE(1071), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [sym__special_character] = ACTIONS(2796), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [sym_variable_name] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(645), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), - }, - [1072] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), - }, - [1073] = { - [anon_sym_PIPE_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_esac] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_AMP] = ACTIONS(878), - }, - [1074] = { - [anon_sym_PIPE_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_esac] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - }, - [1075] = { - [sym_command_substitution] = STATE(1074), - [sym_string] = STATE(1074), - [sym_process_substitution] = STATE(1074), - [sym_simple_expansion] = STATE(1074), - [sym_string_expansion] = STATE(1074), - [sym_expansion] = STATE(1074), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2799), - [anon_sym_DOLLAR] = ACTIONS(2801), - [anon_sym_BQUOTE] = ACTIONS(2803), - [anon_sym_GT_LPAREN] = ACTIONS(2805), - [sym_number] = ACTIONS(2807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_word] = ACTIONS(2807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), - [anon_sym_LT_LPAREN] = ACTIONS(2805), - [sym_ansii_c_string] = ACTIONS(2799), - [sym__special_character] = ACTIONS(2799), - }, - [1076] = { - [aux_sym_concatenation_repeat1] = STATE(1076), - [anon_sym_PIPE_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_esac] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - }, [1077] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [sym_variable_name] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(905), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [aux_sym__literal_repeat1] = STATE(1077), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [sym__special_character] = ACTIONS(2800), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [sym_variable_name] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(647), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, [1078] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [sym_variable_name] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(957), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [1079] = { - [anon_sym_PIPE_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_esac] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_esac] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), }, [1080] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_esac] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), }, [1081] = { - [sym_string] = STATE(1035), - [anon_sym__] = ACTIONS(2818), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(1223), - [sym_variable_name] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(2824), - [anon_sym_GT_AMP] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2818), - [sym_ansii_c_string] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2820), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(1080), + [sym_string] = STATE(1080), + [sym_process_substitution] = STATE(1080), + [sym_simple_expansion] = STATE(1080), + [sym_string_expansion] = STATE(1080), + [sym_expansion] = STATE(1080), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2805), + [anon_sym_BQUOTE] = ACTIONS(2807), + [anon_sym_GT_LPAREN] = ACTIONS(2809), + [sym_number] = ACTIONS(2811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_word] = ACTIONS(2811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2809), + [sym_ansii_c_string] = ACTIONS(2803), + [sym__special_character] = ACTIONS(2803), }, [1082] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [aux_sym_concatenation_repeat1] = STATE(1082), + [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [sym_variable_name] = ACTIONS(1233), - [anon_sym_RPAREN] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_esac] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), }, [1083] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_variable_name] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [sym_variable_name] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, [1084] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_variable_name] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [sym_variable_name] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, [1085] = { - [anon_sym_PIPE_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1396), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_esac] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_esac] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1065), }, [1086] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [sym_variable_name] = ACTIONS(1456), - [anon_sym_RPAREN] = ACTIONS(1454), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [1087] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [sym_variable_name] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1466), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [sym_string] = STATE(1041), + [anon_sym__] = ACTIONS(2822), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_variable_name] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(2828), + [anon_sym_GT_AMP] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2822), + [sym_ansii_c_string] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(2824), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(2824), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2822), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, [1088] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [sym_variable_name] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1476), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_variable_name] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, [1089] = { + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_variable_name] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + }, + [1090] = { + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_variable_name] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + }, + [1091] = { + [anon_sym_PIPE_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [anon_sym_esac] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + }, + [1092] = { + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [sym_variable_name] = ACTIONS(1460), + [anon_sym_RPAREN] = ACTIONS(1458), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), + }, + [1093] = { + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [sym_variable_name] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1470), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), + }, + [1094] = { [anon_sym_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1480), @@ -39157,81 +39218,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_PIPE_AMP] = ACTIONS(1480), }, - [1090] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [sym_variable_name] = ACTIONS(1690), - [anon_sym_RPAREN] = ACTIONS(1688), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [1095] = { + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [sym_variable_name] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1484), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, - [1091] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [1096] = { + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [sym_variable_name] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [sym_variable_name] = ACTIONS(1694), + [anon_sym_RPAREN] = ACTIONS(1692), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, - [1092] = { + [1097] = { [anon_sym_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), [anon_sym_DOLLAR] = ACTIONS(1698), @@ -39268,81 +39329,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_PIPE_AMP] = ACTIONS(1698), }, - [1093] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [1098] = { + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [sym_variable_name] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [sym_variable_name] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, - [1094] = { - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [1099] = { + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1819), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [sym_variable_name] = ACTIONS(1710), + [anon_sym_RPAREN] = ACTIONS(1708), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, - [1095] = { + [1100] = { [anon_sym_AMP] = ACTIONS(1823), [anon_sym_AMP_GT_GT] = ACTIONS(1823), [anon_sym_DOLLAR] = ACTIONS(1823), @@ -39379,14 +39440,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_PIPE_AMP] = ACTIONS(1823), }, - [1096] = { - [aux_sym_concatenation_repeat1] = STATE(1068), + [1101] = { + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [sym_variable_name] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1827), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [1102] = { + [aux_sym_concatenation_repeat1] = STATE(1074), [anon_sym_PIPE_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_LT_LT] = ACTIONS(211), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2135), + [sym__concat] = ACTIONS(2139), [anon_sym_PIPE] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), [anon_sym_LT_AMP] = ACTIONS(211), @@ -39406,7 +39504,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_AMP] = ACTIONS(211), }, - [1097] = { + [1103] = { [anon_sym_PIPE_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_LT_LT] = ACTIONS(409), @@ -39432,7 +39530,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_AMP] = ACTIONS(409), }, - [1098] = { + [1104] = { [anon_sym_PIPE_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_LT] = ACTIONS(413), @@ -39458,23 +39556,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_AMP] = ACTIONS(413), }, - [1099] = { + [1105] = { [sym_comment] = ACTIONS(41), [anon_sym_RBRACE] = ACTIONS(419), [sym__concat] = ACTIONS(419), }, - [1100] = { - [aux_sym_concatenation_repeat1] = STATE(1108), + [1106] = { + [aux_sym_concatenation_repeat1] = STATE(1114), [sym_comment] = ACTIONS(41), [anon_sym_RBRACE] = ACTIONS(433), - [sym__concat] = ACTIONS(2826), + [sym__concat] = ACTIONS(2830), }, - [1101] = { + [1107] = { [sym_comment] = ACTIONS(41), [anon_sym_RBRACE] = ACTIONS(597), [sym__concat] = ACTIONS(597), }, - [1102] = { + [1108] = { [anon_sym_PIPE_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_LT_LT] = ACTIONS(211), @@ -39500,378 +39598,352 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_AMP] = ACTIONS(211), }, - [1103] = { - [aux_sym__literal_repeat1] = STATE(1103), - [anon_sym_PIPE_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [sym__special_character] = ACTIONS(2828), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(645), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [anon_sym_esac] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - }, - [1104] = { - [anon_sym_PIPE_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - }, - [1105] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(880), - [sym__concat] = ACTIONS(880), - }, - [1106] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(884), - [sym__concat] = ACTIONS(884), - }, - [1107] = { - [sym_command_substitution] = STATE(1106), - [sym_simple_expansion] = STATE(1106), - [sym_string_expansion] = STATE(1106), - [sym_string] = STATE(1106), - [sym_process_substitution] = STATE(1106), - [sym_expansion] = STATE(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2831), - [sym_word] = ACTIONS(2833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(2835), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(2831), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym__special_character] = ACTIONS(2831), - [sym_number] = ACTIONS(2833), - }, - [1108] = { - [aux_sym_concatenation_repeat1] = STATE(1108), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(884), - [sym__concat] = ACTIONS(2837), - }, [1109] = { - [anon_sym_PIPE_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(905), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), + [aux_sym__literal_repeat1] = STATE(1109), + [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [sym__special_character] = ACTIONS(2832), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(647), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_esac] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(647), }, [1110] = { - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [anon_sym_esac] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_esac] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), }, [1111] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(882), + [sym__concat] = ACTIONS(882), }, [1112] = { - [anon_sym_PIPE_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(886), + [sym__concat] = ACTIONS(886), }, [1113] = { - [sym_string] = STATE(1067), - [anon_sym__] = ACTIONS(2840), - [anon_sym_PIPE_AMP] = ACTIONS(1223), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(2842), - [sym_raw_string] = ACTIONS(2844), - [anon_sym_RPAREN] = ACTIONS(1223), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(1112), + [sym_simple_expansion] = STATE(1112), + [sym_string_expansion] = STATE(1112), + [sym_string] = STATE(1112), + [sym_process_substitution] = STATE(1112), + [sym_expansion] = STATE(1112), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2835), + [sym_word] = ACTIONS(2837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(2839), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(2835), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym__special_character] = ACTIONS(2835), + [sym_number] = ACTIONS(2837), }, [1114] = { - [anon_sym_PIPE_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_RPAREN] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [anon_sym_esac] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), + [aux_sym_concatenation_repeat1] = STATE(1114), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(886), + [sym__concat] = ACTIONS(2841), }, [1115] = { - [anon_sym_PIPE_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_RPAREN] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_esac] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_esac] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(907), }, [1116] = { - [anon_sym_PIPE_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_esac] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_esac] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), }, [1117] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1398), - [sym__concat] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1067), + [sym__concat] = ACTIONS(1067), }, [1118] = { - [anon_sym_PIPE_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [anon_sym_esac] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_esac] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), }, [1119] = { - [anon_sym_PIPE_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_RPAREN] = ACTIONS(1466), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [anon_sym_esac] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), + [sym_string] = STATE(1073), + [anon_sym__] = ACTIONS(2844), + [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2844), + [anon_sym_DOLLAR] = ACTIONS(2846), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(2846), + [sym_raw_string] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(1227), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2844), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), }, [1120] = { - [anon_sym_PIPE_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [anon_sym_esac] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_esac] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), }, [1121] = { + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_esac] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + }, + [1122] = { + [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_esac] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + }, + [1123] = { + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1402), + [sym__concat] = ACTIONS(1402), + }, + [1124] = { + [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [anon_sym_esac] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + }, + [1125] = { + [anon_sym_PIPE_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [anon_sym_esac] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + }, + [1126] = { [anon_sym_PIPE_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), [anon_sym_LT_LT] = ACTIONS(1480), @@ -39897,59 +39969,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_AMP] = ACTIONS(1480), }, - [1122] = { - [anon_sym_PIPE_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_RPAREN] = ACTIONS(1688), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [anon_sym_esac] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1688), + [1127] = { + [anon_sym_PIPE_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [anon_sym_esac] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), }, - [1123] = { - [anon_sym_PIPE_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [1128] = { + [anon_sym_PIPE_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_esac] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_RPAREN] = ACTIONS(1692), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [anon_sym_esac] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), }, - [1124] = { + [1129] = { [anon_sym_PIPE_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), [anon_sym_LT_LT] = ACTIONS(1698), @@ -39975,59 +40047,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_AMP] = ACTIONS(1698), }, - [1125] = { - [anon_sym_PIPE_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [1130] = { + [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_RPAREN] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_esac] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [anon_sym_esac] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), }, - [1126] = { - [anon_sym_PIPE_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [1131] = { + [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1819), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_esac] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [anon_sym_esac] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), }, - [1127] = { + [1132] = { [anon_sym_PIPE_AMP] = ACTIONS(1823), [anon_sym_AMP_GT_GT] = ACTIONS(1823), [anon_sym_LT_LT] = ACTIONS(1823), @@ -40053,24 +40125,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_AMP] = ACTIONS(1823), }, - [1128] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1133] = { + [anon_sym_PIPE_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_RPAREN] = ACTIONS(1827), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [anon_sym_esac] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1827), + }, + [1134] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [anon_sym_RBRACE] = ACTIONS(213), - [sym__concat] = ACTIONS(1294), + [sym__concat] = ACTIONS(1298), [sym_comment] = ACTIONS(41), [sym__special_character] = ACTIONS(211), }, - [1129] = { + [1135] = { [sym_comment] = ACTIONS(41), [anon_sym_RBRACE] = ACTIONS(411), [sym__concat] = ACTIONS(411), }, - [1130] = { + [1136] = { [sym_comment] = ACTIONS(41), [anon_sym_RBRACE] = ACTIONS(415), [sym__concat] = ACTIONS(415), }, - [1131] = { + [1137] = { [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(419), [anon_sym_DOLLAR] = ACTIONS(417), @@ -40087,8 +40185,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(419), [sym__special_character] = ACTIONS(419), }, - [1132] = { - [aux_sym_concatenation_repeat1] = STATE(1140), + [1138] = { + [aux_sym_concatenation_repeat1] = STATE(1146), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(433), [anon_sym_DOLLAR] = ACTIONS(429), @@ -40098,14 +40196,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(433), [anon_sym_DQUOTE] = ACTIONS(433), - [sym__concat] = ACTIONS(2848), + [sym__concat] = ACTIONS(2852), [sym_word] = ACTIONS(429), [anon_sym_DOLLAR_LPAREN] = ACTIONS(433), [anon_sym_LT_LPAREN] = ACTIONS(433), [sym_ansii_c_string] = ACTIONS(433), [sym__special_character] = ACTIONS(433), }, - [1133] = { + [1139] = { [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(597), [anon_sym_DOLLAR] = ACTIONS(595), @@ -40122,228 +40220,228 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(597), [sym__special_character] = ACTIONS(597), }, - [1134] = { + [1140] = { [sym__special_character] = ACTIONS(211), [anon_sym_RBRACE] = ACTIONS(213), [sym_comment] = ACTIONS(41), }, - [1135] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(2850), - [anon_sym_RBRACE] = ACTIONS(650), - [sym_comment] = ACTIONS(41), - }, - [1136] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - }, - [1137] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [sym__concat] = ACTIONS(880), - [sym_word] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - }, - [1138] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [sym__concat] = ACTIONS(884), - [sym_word] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - }, - [1139] = { - [sym_command_substitution] = STATE(1138), - [sym_simple_expansion] = STATE(1138), - [sym_string_expansion] = STATE(1138), - [sym_string] = STATE(1138), - [sym_process_substitution] = STATE(1138), - [sym_expansion] = STATE(1138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2853), - [sym_word] = ACTIONS(2855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(2857), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(2853), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_GT_LPAREN] = ACTIONS(1023), - [sym__special_character] = ACTIONS(2853), - [sym_number] = ACTIONS(2855), - }, - [1140] = { - [aux_sym_concatenation_repeat1] = STATE(1140), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [sym__concat] = ACTIONS(2859), - [sym_word] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - }, [1141] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(652), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(907), - [sym__concat] = ACTIONS(907), }, [1142] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(959), - [sym__concat] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(878), + [sym__concat] = ACTIONS(878), }, [1143] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1065), - [sym_word] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_GT_LPAREN] = ACTIONS(882), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), + [anon_sym_DQUOTE] = ACTIONS(882), + [sym__concat] = ACTIONS(882), + [sym_word] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(882), + [sym_ansii_c_string] = ACTIONS(882), + [sym__special_character] = ACTIONS(882), }, [1144] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(876), - [sym__concat] = ACTIONS(876), + [sym_raw_string] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_BQUOTE] = ACTIONS(886), + [anon_sym_GT_LPAREN] = ACTIONS(886), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(886), + [sym__concat] = ACTIONS(886), + [sym_word] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), + [anon_sym_LT_LPAREN] = ACTIONS(886), + [sym_ansii_c_string] = ACTIONS(886), + [sym__special_character] = ACTIONS(886), }, [1145] = { - [sym_string] = STATE(1099), - [anon_sym__] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_0] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2864), - [aux_sym__simple_variable_name_token1] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2866), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2864), - [sym_raw_string] = ACTIONS(2868), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2866), + [sym_command_substitution] = STATE(1144), + [sym_simple_expansion] = STATE(1144), + [sym_string_expansion] = STATE(1144), + [sym_string] = STATE(1144), + [sym_process_substitution] = STATE(1144), + [sym_expansion] = STATE(1144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2857), + [sym_word] = ACTIONS(2859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(2861), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [sym_ansii_c_string] = ACTIONS(2857), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym__special_character] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), }, [1146] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1233), - [sym__concat] = ACTIONS(1233), + [aux_sym_concatenation_repeat1] = STATE(1146), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_BQUOTE] = ACTIONS(886), + [anon_sym_GT_LPAREN] = ACTIONS(886), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(886), + [sym__concat] = ACTIONS(2863), + [sym_word] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), + [anon_sym_LT_LPAREN] = ACTIONS(886), + [sym_ansii_c_string] = ACTIONS(886), + [sym__special_character] = ACTIONS(886), }, [1147] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(909), + [sym__concat] = ACTIONS(909), }, [1148] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1302), - [sym__concat] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(961), + [sym__concat] = ACTIONS(961), }, [1149] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_BQUOTE] = ACTIONS(1398), - [anon_sym_GT_LPAREN] = ACTIONS(1398), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [sym__concat] = ACTIONS(1398), - [sym_word] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1398), - [anon_sym_LT_LPAREN] = ACTIONS(1398), - [sym_ansii_c_string] = ACTIONS(1398), - [sym__special_character] = ACTIONS(1398), + [sym_raw_string] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1067), + [anon_sym_BQUOTE] = ACTIONS(1067), + [anon_sym_GT_LPAREN] = ACTIONS(1067), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1067), + [sym__concat] = ACTIONS(1067), + [sym_word] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), + [anon_sym_LT_LPAREN] = ACTIONS(1067), + [sym_ansii_c_string] = ACTIONS(1067), + [sym__special_character] = ACTIONS(1067), }, [1150] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1456), - [sym__concat] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(878), + [sym__concat] = ACTIONS(878), }, [1151] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1468), - [sym__concat] = ACTIONS(1468), + [sym_string] = STATE(1105), + [anon_sym__] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_0] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2868), + [aux_sym__simple_variable_name_token1] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(2868), + [sym_raw_string] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2870), }, [1152] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1478), - [sym__concat] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), }, [1153] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1482), - [sym__concat] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1296), }, [1154] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1690), - [sym__concat] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), }, [1155] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1696), - [sym__concat] = ACTIONS(1696), + [sym_raw_string] = ACTIONS(1402), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_BQUOTE] = ACTIONS(1402), + [anon_sym_GT_LPAREN] = ACTIONS(1402), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym__concat] = ACTIONS(1402), + [sym_word] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1402), + [anon_sym_LT_LPAREN] = ACTIONS(1402), + [sym_ansii_c_string] = ACTIONS(1402), + [sym__special_character] = ACTIONS(1402), }, [1156] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1700), - [sym__concat] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1460), + [sym__concat] = ACTIONS(1460), }, [1157] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1706), - [sym__concat] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1472), + [sym__concat] = ACTIONS(1472), }, [1158] = { [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1482), + [sym__concat] = ACTIONS(1482), }, [1159] = { + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1486), + [sym__concat] = ACTIONS(1486), + }, + [1160] = { + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1694), + }, + [1161] = { + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1700), + [sym__concat] = ACTIONS(1700), + }, + [1162] = { + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1704), + }, + [1163] = { + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1710), + [sym__concat] = ACTIONS(1710), + }, + [1164] = { [sym_comment] = ACTIONS(41), [anon_sym_RBRACE] = ACTIONS(1825), [sym__concat] = ACTIONS(1825), }, - [1160] = { - [aux_sym_concatenation_repeat1] = STATE(1132), + [1165] = { + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1829), + [sym__concat] = ACTIONS(1829), + }, + [1166] = { + [aux_sym_concatenation_repeat1] = STATE(1138), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(213), [anon_sym_DOLLAR] = ACTIONS(211), @@ -40353,14 +40451,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), [anon_sym_DQUOTE] = ACTIONS(213), - [sym__concat] = ACTIONS(1364), + [sym__concat] = ACTIONS(1368), [sym_word] = ACTIONS(211), [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), [anon_sym_LT_LPAREN] = ACTIONS(213), [sym_ansii_c_string] = ACTIONS(213), [sym__special_character] = ACTIONS(213), }, - [1161] = { + [1167] = { [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(411), [anon_sym_DOLLAR] = ACTIONS(409), @@ -40377,7 +40475,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(411), [sym__special_character] = ACTIONS(411), }, - [1162] = { + [1168] = { [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(415), [anon_sym_DOLLAR] = ACTIONS(413), @@ -40394,7 +40492,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(415), [sym__special_character] = ACTIONS(415), }, - [1163] = { + [1169] = { [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(417), [anon_sym_LF] = ACTIONS(419), @@ -40414,8 +40512,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(417), }, - [1164] = { - [aux_sym_concatenation_repeat1] = STATE(1172), + [1170] = { + [aux_sym_concatenation_repeat1] = STATE(1178), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(429), [anon_sym_LF] = ACTIONS(433), @@ -40426,7 +40524,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_DQUOTE] = ACTIONS(429), - [sym__concat] = ACTIONS(2870), + [sym__concat] = ACTIONS(2874), [sym_word] = ACTIONS(429), [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), [anon_sym_LT_LPAREN] = ACTIONS(429), @@ -40435,7 +40533,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_AMP] = ACTIONS(429), }, - [1165] = { + [1171] = { [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(595), [anon_sym_LF] = ACTIONS(597), @@ -40455,7 +40553,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_AMP] = ACTIONS(595), }, - [1166] = { + [1172] = { [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), [anon_sym_DQUOTE] = ACTIONS(213), [sym_comment] = ACTIONS(41), @@ -40471,342 +40569,325 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_GT_LPAREN] = ACTIONS(213), }, - [1167] = { - [aux_sym__literal_repeat1] = STATE(1167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(650), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(650), - [sym_word] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(650), - [sym_ansii_c_string] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_LT_LPAREN] = ACTIONS(650), - [sym__special_character] = ACTIONS(2872), - [sym_number] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(650), + [1173] = { + [aux_sym__literal_repeat1] = STATE(1173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(652), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(652), + [sym_word] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(652), + [sym_ansii_c_string] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(652), + [anon_sym_LT_LPAREN] = ACTIONS(652), + [sym__special_character] = ACTIONS(2876), + [sym_number] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(652), }, - [1168] = { + [1174] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - [sym_word] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - }, - [1169] = { - [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(878), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(878), [anon_sym_BQUOTE] = ACTIONS(878), [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), + [sym_number] = ACTIONS(876), [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), [anon_sym_DQUOTE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [sym_word] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [sym_word] = ACTIONS(876), [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), [anon_sym_LT_LPAREN] = ACTIONS(878), [sym_ansii_c_string] = ACTIONS(878), [sym__special_character] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_AMP] = ACTIONS(878), - }, - [1170] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(882), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [sym_word] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - }, - [1171] = { - [sym_command_substitution] = STATE(1170), - [sym_simple_expansion] = STATE(1170), - [sym_string_expansion] = STATE(1170), - [sym_string] = STATE(1170), - [sym_process_substitution] = STATE(1170), - [sym_expansion] = STATE(1170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2875), - [sym_word] = ACTIONS(2877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(2879), - [anon_sym_LT_LPAREN] = ACTIONS(1110), - [sym_ansii_c_string] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(1112), - [anon_sym_GT_LPAREN] = ACTIONS(1110), - [sym__special_character] = ACTIONS(2875), - [sym_number] = ACTIONS(2877), - }, - [1172] = { - [aux_sym_concatenation_repeat1] = STATE(1172), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(882), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [sym__concat] = ACTIONS(2881), - [sym_word] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - }, - [1173] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [sym__concat] = ACTIONS(907), - [sym_word] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - }, - [1174] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__concat] = ACTIONS(959), - [sym_word] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), }, [1175] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1063), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [sym_word] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(880), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [sym_word] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), }, [1176] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [sym__concat] = ACTIONS(876), - [sym_word] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(884), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [sym_word] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), }, [1177] = { - [sym_string] = STATE(1131), - [anon_sym__] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2886), - [sym_raw_string] = ACTIONS(2888), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_0] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [sym_word] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2884), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2884), + [sym_command_substitution] = STATE(1176), + [sym_simple_expansion] = STATE(1176), + [sym_string_expansion] = STATE(1176), + [sym_string] = STATE(1176), + [sym_process_substitution] = STATE(1176), + [sym_expansion] = STATE(1176), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2879), + [sym_word] = ACTIONS(2881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_DOLLAR] = ACTIONS(2883), + [anon_sym_LT_LPAREN] = ACTIONS(1114), + [sym_ansii_c_string] = ACTIONS(2879), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_GT_LPAREN] = ACTIONS(1114), + [sym__special_character] = ACTIONS(2879), + [sym_number] = ACTIONS(2881), }, [1178] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1233), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_RPAREN] = ACTIONS(1233), - [anon_sym_BQUOTE] = ACTIONS(1233), - [anon_sym_GT_LPAREN] = ACTIONS(1233), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym__concat] = ACTIONS(1233), - [sym_word] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [anon_sym_LT_LPAREN] = ACTIONS(1233), - [sym_ansii_c_string] = ACTIONS(1233), - [sym__special_character] = ACTIONS(1233), + [aux_sym_concatenation_repeat1] = STATE(1178), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(884), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [sym__concat] = ACTIONS(2885), + [sym_word] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), }, [1179] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym__concat] = ACTIONS(1292), - [sym_word] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [sym_ansii_c_string] = ACTIONS(1292), - [sym__special_character] = ACTIONS(1292), + [sym_raw_string] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_BQUOTE] = ACTIONS(909), + [anon_sym_GT_LPAREN] = ACTIONS(909), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__concat] = ACTIONS(909), + [sym_word] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(909), + [anon_sym_LT_LPAREN] = ACTIONS(909), + [sym_ansii_c_string] = ACTIONS(909), + [sym__special_character] = ACTIONS(909), }, [1180] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), - [anon_sym_GT_LPAREN] = ACTIONS(1302), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__concat] = ACTIONS(1302), - [sym_word] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [anon_sym_LT_LPAREN] = ACTIONS(1302), - [sym_ansii_c_string] = ACTIONS(1302), - [sym__special_character] = ACTIONS(1302), + [sym_raw_string] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [anon_sym_GT_LPAREN] = ACTIONS(961), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym__concat] = ACTIONS(961), + [sym_word] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), + [anon_sym_LT_LPAREN] = ACTIONS(961), + [sym_ansii_c_string] = ACTIONS(961), + [sym__special_character] = ACTIONS(961), }, [1181] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1396), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [sym_word] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), + [sym_raw_string] = ACTIONS(1065), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [sym_word] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1065), }, [1182] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1456), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_BQUOTE] = ACTIONS(1456), - [anon_sym_GT_LPAREN] = ACTIONS(1456), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym__concat] = ACTIONS(1456), - [sym_word] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1456), - [anon_sym_LT_LPAREN] = ACTIONS(1456), - [sym_ansii_c_string] = ACTIONS(1456), - [sym__special_character] = ACTIONS(1456), + [sym_raw_string] = ACTIONS(878), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(878), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(878), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), + [anon_sym_DQUOTE] = ACTIONS(878), + [sym__concat] = ACTIONS(878), + [sym_word] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [anon_sym_LT_LPAREN] = ACTIONS(878), + [sym_ansii_c_string] = ACTIONS(878), + [sym__special_character] = ACTIONS(878), }, [1183] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_BQUOTE] = ACTIONS(1468), - [anon_sym_GT_LPAREN] = ACTIONS(1468), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [sym__concat] = ACTIONS(1468), - [sym_word] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1468), - [anon_sym_LT_LPAREN] = ACTIONS(1468), - [sym_ansii_c_string] = ACTIONS(1468), - [sym__special_character] = ACTIONS(1468), + [sym_string] = STATE(1137), + [anon_sym__] = ACTIONS(2888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2890), + [sym_raw_string] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2894), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2888), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1015), + [anon_sym_0] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2888), + [sym_word] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [aux_sym__simple_variable_name_token1] = ACTIONS(2888), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [sym_ansii_c_string] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(2888), }, [1184] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1478), - [anon_sym_BQUOTE] = ACTIONS(1478), - [anon_sym_GT_LPAREN] = ACTIONS(1478), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym__concat] = ACTIONS(1478), - [sym_word] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1478), - [anon_sym_LT_LPAREN] = ACTIONS(1478), - [sym_ansii_c_string] = ACTIONS(1478), - [sym__special_character] = ACTIONS(1478), + [sym_raw_string] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_BQUOTE] = ACTIONS(1237), + [anon_sym_GT_LPAREN] = ACTIONS(1237), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), + [sym_word] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), + [anon_sym_LT_LPAREN] = ACTIONS(1237), + [sym_ansii_c_string] = ACTIONS(1237), + [sym__special_character] = ACTIONS(1237), }, [1185] = { + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1296), + [sym_word] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + }, + [1186] = { + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_BQUOTE] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1306), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [sym_word] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1306), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [sym_ansii_c_string] = ACTIONS(1306), + [sym__special_character] = ACTIONS(1306), + }, + [1187] = { + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [sym_word] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + }, + [1188] = { + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(1460), + [anon_sym_GT_LPAREN] = ACTIONS(1460), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym__concat] = ACTIONS(1460), + [sym_word] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), + [anon_sym_LT_LPAREN] = ACTIONS(1460), + [sym_ansii_c_string] = ACTIONS(1460), + [sym__special_character] = ACTIONS(1460), + }, + [1189] = { + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_GT_LPAREN] = ACTIONS(1472), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym__concat] = ACTIONS(1472), + [sym_word] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1472), + [anon_sym_LT_LPAREN] = ACTIONS(1472), + [sym_ansii_c_string] = ACTIONS(1472), + [sym__special_character] = ACTIONS(1472), + }, + [1190] = { [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(1482), [anon_sym_DOLLAR] = ACTIONS(1480), @@ -40823,41 +40904,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(1482), [sym__special_character] = ACTIONS(1482), }, - [1186] = { + [1191] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_RPAREN] = ACTIONS(1690), - [anon_sym_BQUOTE] = ACTIONS(1690), - [anon_sym_GT_LPAREN] = ACTIONS(1690), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [sym__concat] = ACTIONS(1690), - [sym_word] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1690), - [anon_sym_LT_LPAREN] = ACTIONS(1690), - [sym_ansii_c_string] = ACTIONS(1690), - [sym__special_character] = ACTIONS(1690), + [sym_raw_string] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym__concat] = ACTIONS(1486), + [sym_word] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), }, - [1187] = { + [1192] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1696), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1696), - [anon_sym_BQUOTE] = ACTIONS(1696), - [anon_sym_GT_LPAREN] = ACTIONS(1696), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1696), - [anon_sym_DQUOTE] = ACTIONS(1696), - [sym__concat] = ACTIONS(1696), - [sym_word] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), - [anon_sym_LT_LPAREN] = ACTIONS(1696), - [sym_ansii_c_string] = ACTIONS(1696), - [sym__special_character] = ACTIONS(1696), + [sym_raw_string] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_RPAREN] = ACTIONS(1694), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(1694), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [sym__concat] = ACTIONS(1694), + [sym_word] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1694), + [sym_ansii_c_string] = ACTIONS(1694), + [sym__special_character] = ACTIONS(1694), }, - [1188] = { + [1193] = { [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(1700), [anon_sym_DOLLAR] = ACTIONS(1698), @@ -40874,41 +40955,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(1700), [sym__special_character] = ACTIONS(1700), }, - [1189] = { + [1194] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1706), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_BQUOTE] = ACTIONS(1706), - [anon_sym_GT_LPAREN] = ACTIONS(1706), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [sym__concat] = ACTIONS(1706), - [sym_word] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1706), - [anon_sym_LT_LPAREN] = ACTIONS(1706), - [sym_ansii_c_string] = ACTIONS(1706), - [sym__special_character] = ACTIONS(1706), + [sym_raw_string] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(1704), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [sym__concat] = ACTIONS(1704), + [sym_word] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [anon_sym_LT_LPAREN] = ACTIONS(1704), + [sym_ansii_c_string] = ACTIONS(1704), + [sym__special_character] = ACTIONS(1704), }, - [1190] = { + [1195] = { [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [sym_word] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [sym_ansii_c_string] = ACTIONS(1821), - [sym__special_character] = ACTIONS(1821), + [sym_raw_string] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1710), + [anon_sym_BQUOTE] = ACTIONS(1710), + [anon_sym_GT_LPAREN] = ACTIONS(1710), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1710), + [anon_sym_DQUOTE] = ACTIONS(1710), + [sym__concat] = ACTIONS(1710), + [sym_word] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1710), + [anon_sym_LT_LPAREN] = ACTIONS(1710), + [sym_ansii_c_string] = ACTIONS(1710), + [sym__special_character] = ACTIONS(1710), }, - [1191] = { + [1196] = { [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(1825), [anon_sym_DOLLAR] = ACTIONS(1823), @@ -40925,8 +41006,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(1825), [sym__special_character] = ACTIONS(1825), }, - [1192] = { - [aux_sym_concatenation_repeat1] = STATE(1164), + [1197] = { + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1829), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_BQUOTE] = ACTIONS(1829), + [anon_sym_GT_LPAREN] = ACTIONS(1829), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1829), + [sym__concat] = ACTIONS(1829), + [sym_word] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1829), + [anon_sym_LT_LPAREN] = ACTIONS(1829), + [sym_ansii_c_string] = ACTIONS(1829), + [sym__special_character] = ACTIONS(1829), + }, + [1198] = { + [aux_sym_concatenation_repeat1] = STATE(1170), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(211), [anon_sym_LF] = ACTIONS(213), @@ -40937,7 +41035,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(211), - [sym__concat] = ACTIONS(2184), + [sym__concat] = ACTIONS(2188), [sym_word] = ACTIONS(211), [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), [anon_sym_LT_LPAREN] = ACTIONS(211), @@ -40946,7 +41044,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_AMP] = ACTIONS(211), }, - [1193] = { + [1199] = { [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(409), [anon_sym_LF] = ACTIONS(411), @@ -40966,7 +41064,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_AMP] = ACTIONS(409), }, - [1194] = { + [1200] = { [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(413), [anon_sym_LF] = ACTIONS(415), @@ -40986,7 +41084,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_AMP] = ACTIONS(413), }, - [1195] = { + [1201] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -41024,8 +41122,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [1196] = { - [aux_sym_concatenation_repeat1] = STATE(1204), + [1202] = { + [aux_sym_concatenation_repeat1] = STATE(1210), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -41035,7 +41133,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2892), + [sym__concat] = ACTIONS(2896), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -41063,7 +41161,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [1197] = { + [1203] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -41101,7 +41199,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [1198] = { + [1204] = { [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(211), [anon_sym_LF] = ACTIONS(213), @@ -41120,468 +41218,448 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_AMP] = ACTIONS(211), }, - [1199] = { - [aux_sym__literal_repeat1] = STATE(1199), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(645), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [sym__special_character] = ACTIONS(2894), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - }, - [1200] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(874), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [sym_word] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - }, - [1201] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [anon_sym_EQ_TILDE] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_EQ_EQ] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_esac] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), - }, - [1202] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_esac] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, - [1203] = { - [sym_command_substitution] = STATE(1202), - [sym_simple_expansion] = STATE(1202), - [sym_string_expansion] = STATE(1202), - [sym_string] = STATE(1202), - [sym_process_substitution] = STATE(1202), - [sym_expansion] = STATE(1202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1754), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2897), - [sym_word] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(2901), - [anon_sym_LT_LPAREN] = ACTIONS(1738), - [sym_ansii_c_string] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [sym__special_character] = ACTIONS(2897), - [sym_number] = ACTIONS(2899), - }, - [1204] = { - [aux_sym_concatenation_repeat1] = STATE(1204), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_EQ_TILDE] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_esac] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, [1205] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(905), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [sym_word] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), + [aux_sym__literal_repeat1] = STATE(1205), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(647), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [sym__special_character] = ACTIONS(2898), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_AMP] = ACTIONS(647), }, [1206] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(957), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [sym_word] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(957), + [sym_raw_string] = ACTIONS(876), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [sym_word] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), }, [1207] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [anon_sym_EQ_TILDE] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_esac] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_esac] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [1208] = { + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(874), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [sym_word] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_esac] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [1209] = { - [sym_string] = STATE(1163), - [anon_sym__] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2908), - [sym_raw_string] = ACTIONS(2910), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_DOLLAR] = ACTIONS(2908), - [anon_sym_AT] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1414), - [anon_sym_0] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2906), - [sym_word] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2906), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [sym_ansii_c_string] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(1208), + [sym_simple_expansion] = STATE(1208), + [sym_string_expansion] = STATE(1208), + [sym_string] = STATE(1208), + [sym_process_substitution] = STATE(1208), + [sym_expansion] = STATE(1208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2901), + [sym_word] = ACTIONS(2903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(1742), + [sym_ansii_c_string] = ACTIONS(2901), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym__special_character] = ACTIONS(2901), + [sym_number] = ACTIONS(2903), }, [1210] = { + [aux_sym_concatenation_repeat1] = STATE(1210), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1231), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [sym_word] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_esac] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [1211] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1290), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [sym_word] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [sym_word] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(907), }, [1212] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1300), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [sym_word] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [sym_word] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), }, [1213] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_EQ_TILDE] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_esac] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_EQ_TILDE] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_EQ_EQ] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_esac] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [1214] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1454), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [sym_word] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), + [sym_raw_string] = ACTIONS(876), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [sym_word] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), }, [1215] = { + [sym_string] = STATE(1169), + [anon_sym__] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1466), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [sym_word] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(2912), + [sym_raw_string] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(2912), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1418), + [anon_sym_0] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [sym_word] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2910), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), }, [1216] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1476), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [sym_word] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1235), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [sym_word] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), }, [1217] = { + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1294), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [sym_word] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + }, + [1218] = { + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1304), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [sym_word] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + }, + [1219] = { + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [anon_sym_EQ_TILDE] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [anon_sym_esac] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), + }, + [1220] = { + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1458), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [sym_word] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + }, + [1221] = { + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1470), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [sym_word] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + }, + [1222] = { [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(1480), [anon_sym_LF] = ACTIONS(1482), @@ -41601,47 +41679,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_AMP] = ACTIONS(1480), }, - [1218] = { + [1223] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1688), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [sym_word] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1688), + [sym_raw_string] = ACTIONS(1484), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [sym_word] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), }, - [1219] = { + [1224] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1694), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [sym_word] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), + [sym_raw_string] = ACTIONS(1692), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [sym_word] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), }, - [1220] = { + [1225] = { [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(1698), [anon_sym_LF] = ACTIONS(1700), @@ -41661,47 +41739,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_AMP] = ACTIONS(1698), }, - [1221] = { + [1226] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1704), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [sym_word] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1704), + [sym_raw_string] = ACTIONS(1702), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [sym_word] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), }, - [1222] = { + [1227] = { [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1819), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [sym_word] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), + [sym_raw_string] = ACTIONS(1708), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [sym_word] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), }, - [1223] = { + [1228] = { [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(1823), [anon_sym_LF] = ACTIONS(1825), @@ -41721,8 +41799,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_AMP] = ACTIONS(1823), }, - [1224] = { - [aux_sym_concatenation_repeat1] = STATE(1196), + [1229] = { + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1827), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [sym_word] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1827), + }, + [1230] = { + [aux_sym_concatenation_repeat1] = STATE(1202), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -41732,7 +41830,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2244), + [sym__concat] = ACTIONS(2248), [anon_sym_PIPE] = ACTIONS(211), [sym_word] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), @@ -41760,7 +41858,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [1225] = { + [1231] = { [anon_sym_DOLLAR] = ACTIONS(409), [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), [sym_comment] = ACTIONS(41), @@ -41769,7 +41867,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), [sym__heredoc_body_middle] = ACTIONS(411), }, - [1226] = { + [1232] = { [anon_sym_DOLLAR] = ACTIONS(413), [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), [sym_comment] = ACTIONS(41), @@ -41778,7 +41876,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), [sym__heredoc_body_middle] = ACTIONS(415), }, - [1227] = { + [1233] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -41816,8 +41914,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [1228] = { - [aux_sym_concatenation_repeat1] = STATE(1236), + [1234] = { + [aux_sym_concatenation_repeat1] = STATE(1242), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -41827,7 +41925,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2912), + [sym__concat] = ACTIONS(2916), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -41855,7 +41953,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [1229] = { + [1235] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -41893,7 +41991,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [1230] = { + [1236] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -41930,394 +42028,358 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [1231] = { - [aux_sym__literal_repeat1] = STATE(1231), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_EQ_TILDE] = ACTIONS(645), - [sym__special_character] = ACTIONS(2914), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_EQ_EQ] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [anon_sym_esac] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), + [1237] = { + [aux_sym__literal_repeat1] = STATE(1237), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_EQ_TILDE] = ACTIONS(647), + [sym__special_character] = ACTIONS(2918), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [anon_sym_esac] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, - [1232] = { - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [1238] = { + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(876), - [sym__heredoc_body_end] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [sym__heredoc_body_middle] = ACTIONS(876), - }, - [1233] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [sym_variable_name] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), + [sym__heredoc_body_end] = ACTIONS(878), [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_esac] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [aux_sym__simple_variable_name_token1] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), + [sym__heredoc_body_middle] = ACTIONS(878), }, - [1234] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), + [1239] = { + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_esac] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [sym_variable_name] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_esac] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [aux_sym__simple_variable_name_token1] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, - [1235] = { - [sym_command_substitution] = STATE(1234), - [sym_simple_expansion] = STATE(1234), - [sym_string_expansion] = STATE(1234), - [sym_string] = STATE(1234), - [sym_process_substitution] = STATE(1234), - [sym_expansion] = STATE(1234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2921), - [sym_word] = ACTIONS(2923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_LT_LPAREN] = ACTIONS(2929), - [sym_ansii_c_string] = ACTIONS(2921), - [anon_sym_BQUOTE] = ACTIONS(2931), - [anon_sym_GT_LPAREN] = ACTIONS(2929), - [sym__special_character] = ACTIONS(2921), - [sym_number] = ACTIONS(2923), + [1240] = { + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_esac] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, - [1236] = { - [aux_sym_concatenation_repeat1] = STATE(1236), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2933), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), + [1241] = { + [sym_command_substitution] = STATE(1240), + [sym_simple_expansion] = STATE(1240), + [sym_string_expansion] = STATE(1240), + [sym_string] = STATE(1240), + [sym_process_substitution] = STATE(1240), + [sym_expansion] = STATE(1240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2925), + [sym_word] = ACTIONS(2927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2929), + [anon_sym_DOLLAR] = ACTIONS(2931), + [anon_sym_LT_LPAREN] = ACTIONS(2933), + [sym_ansii_c_string] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2935), + [anon_sym_GT_LPAREN] = ACTIONS(2933), + [sym__special_character] = ACTIONS(2925), + [sym_number] = ACTIONS(2927), + }, + [1242] = { + [aux_sym_concatenation_repeat1] = STATE(1242), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_esac] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_esac] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, - [1237] = { - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [1243] = { + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(909), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(907), - [sym__heredoc_body_end] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [sym__heredoc_body_middle] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(909), + [sym__heredoc_body_end] = ACTIONS(909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(909), + [sym__heredoc_body_middle] = ACTIONS(909), }, - [1238] = { - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [1244] = { + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(959), - [sym__heredoc_body_end] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [sym__heredoc_body_middle] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym__heredoc_body_end] = ACTIONS(961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), + [sym__heredoc_body_middle] = ACTIONS(961), }, - [1239] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [1245] = { + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [sym_variable_name] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_esac] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [aux_sym__simple_variable_name_token1] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(1067), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_esac] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [aux_sym__simple_variable_name_token1] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, - [1240] = { - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [1246] = { + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(876), - [sym__heredoc_body_end] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [sym__heredoc_body_middle] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(878), + [sym__heredoc_body_end] = ACTIONS(878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), + [sym__heredoc_body_middle] = ACTIONS(878), }, - [1241] = { - [sym_string] = STATE(1195), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym__] = ACTIONS(2936), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2936), - [anon_sym_EQ_TILDE] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2938), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [sym_raw_string] = ACTIONS(2940), - [anon_sym_BANG] = ACTIONS(2938), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(1223), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [sym_ansii_c_string] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [1247] = { + [sym_string] = STATE(738), + [anon_sym__] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2574), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(2574), + [sym_raw_string] = ACTIONS(2576), + [anon_sym_DOLLAR] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_0] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2572), + [aux_sym__simple_variable_name_token1] = ACTIONS(2572), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), }, - [1242] = { - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), + [1248] = { + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1233), - [sym__heredoc_body_end] = ACTIONS(1233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [sym__heredoc_body_middle] = ACTIONS(1233), + [anon_sym_BQUOTE] = ACTIONS(1237), + [sym__heredoc_body_end] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), + [sym__heredoc_body_middle] = ACTIONS(1237), }, - [1243] = { - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), + [1249] = { + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1292), - [sym__heredoc_body_end] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [sym__heredoc_body_middle] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym__heredoc_body_end] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [sym__heredoc_body_middle] = ACTIONS(1296), }, - [1244] = { - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), + [1250] = { + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1302), - [sym__heredoc_body_end] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [sym__heredoc_body_middle] = ACTIONS(1302), - }, - [1245] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [sym_variable_name] = ACTIONS(1398), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_esac] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [aux_sym__simple_variable_name_token1] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1306), + [sym__heredoc_body_end] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1306), + [sym__heredoc_body_middle] = ACTIONS(1306), }, - [1246] = { - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1456), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1456), - [sym__heredoc_body_end] = ACTIONS(1456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1456), - [sym__heredoc_body_middle] = ACTIONS(1456), + [1251] = { + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [sym_variable_name] = ACTIONS(1402), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [anon_sym_esac] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [aux_sym__simple_variable_name_token1] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), }, - [1247] = { - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1468), + [1252] = { + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1460), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1468), - [sym__heredoc_body_end] = ACTIONS(1468), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1468), - [sym__heredoc_body_middle] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1460), + [sym__heredoc_body_end] = ACTIONS(1460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), + [sym__heredoc_body_middle] = ACTIONS(1460), }, - [1248] = { - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1478), + [1253] = { + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1472), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1478), - [sym__heredoc_body_end] = ACTIONS(1478), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1478), - [sym__heredoc_body_middle] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1472), + [sym__heredoc_body_end] = ACTIONS(1472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1472), + [sym__heredoc_body_middle] = ACTIONS(1472), }, - [1249] = { + [1254] = { [anon_sym_DOLLAR] = ACTIONS(1480), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1482), [sym_comment] = ACTIONS(41), @@ -42326,25 +42388,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), [sym__heredoc_body_middle] = ACTIONS(1482), }, - [1250] = { - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1690), + [1255] = { + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1690), - [sym__heredoc_body_end] = ACTIONS(1690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1690), - [sym__heredoc_body_middle] = ACTIONS(1690), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym__heredoc_body_end] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [sym__heredoc_body_middle] = ACTIONS(1486), }, - [1251] = { - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1696), + [1256] = { + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1696), - [sym__heredoc_body_end] = ACTIONS(1696), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), - [sym__heredoc_body_middle] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1694), + [sym__heredoc_body_end] = ACTIONS(1694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), + [sym__heredoc_body_middle] = ACTIONS(1694), }, - [1252] = { + [1257] = { [anon_sym_DOLLAR] = ACTIONS(1698), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1700), [sym_comment] = ACTIONS(41), @@ -42353,25 +42415,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), [sym__heredoc_body_middle] = ACTIONS(1700), }, - [1253] = { - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1706), + [1258] = { + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1706), - [sym__heredoc_body_end] = ACTIONS(1706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1706), - [sym__heredoc_body_middle] = ACTIONS(1706), + [anon_sym_BQUOTE] = ACTIONS(1704), + [sym__heredoc_body_end] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), + [sym__heredoc_body_middle] = ACTIONS(1704), }, - [1254] = { - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), + [1259] = { + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1710), [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym__heredoc_body_end] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [sym__heredoc_body_middle] = ACTIONS(1821), + [anon_sym_BQUOTE] = ACTIONS(1710), + [sym__heredoc_body_end] = ACTIONS(1710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1710), + [sym__heredoc_body_middle] = ACTIONS(1710), }, - [1255] = { + [1260] = { [anon_sym_DOLLAR] = ACTIONS(1823), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1825), [sym_comment] = ACTIONS(41), @@ -42380,8 +42442,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN] = ACTIONS(1825), [sym__heredoc_body_middle] = ACTIONS(1825), }, - [1256] = { - [aux_sym_concatenation_repeat1] = STATE(1228), + [1261] = { + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1829), + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(1829), + [sym__heredoc_body_end] = ACTIONS(1829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1829), + [sym__heredoc_body_middle] = ACTIONS(1829), + }, + [1262] = { + [aux_sym_concatenation_repeat1] = STATE(1234), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -42391,7 +42462,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2272), + [sym__concat] = ACTIONS(2276), [anon_sym_PIPE] = ACTIONS(211), [sym_word] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), @@ -42419,7 +42490,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [1257] = { + [1263] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -42457,7 +42528,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [1258] = { + [1264] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -42495,7 +42566,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [1259] = { + [1265] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -42532,8 +42603,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [1260] = { - [aux_sym_concatenation_repeat1] = STATE(1268), + [1266] = { + [aux_sym_concatenation_repeat1] = STATE(1274), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -42543,7 +42614,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2942), + [sym__concat] = ACTIONS(2940), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -42570,7 +42641,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [1261] = { + [1267] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -42607,7 +42678,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [1262] = { + [1268] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -42644,678 +42715,641 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [1263] = { - [aux_sym__literal_repeat1] = STATE(1263), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [sym__special_character] = ACTIONS(2944), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [sym_variable_name] = ACTIONS(650), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [anon_sym_esac] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [aux_sym__simple_variable_name_token1] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), - }, - [1264] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), - }, - [1265] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_esac] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [aux_sym__simple_variable_name_token1] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), - }, - [1266] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_esac] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, - [1267] = { - [sym_command_substitution] = STATE(1266), - [sym_simple_expansion] = STATE(1266), - [sym_string_expansion] = STATE(1266), - [sym_string] = STATE(1266), - [sym_process_substitution] = STATE(1266), - [sym_expansion] = STATE(1266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2951), - [sym_word] = ACTIONS(2953), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [anon_sym_DOLLAR] = ACTIONS(2957), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [sym_ansii_c_string] = ACTIONS(2951), - [anon_sym_BQUOTE] = ACTIONS(2961), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym__special_character] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), - }, - [1268] = { - [aux_sym_concatenation_repeat1] = STATE(1268), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_esac] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [aux_sym__simple_variable_name_token1] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, [1269] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_EQ_TILDE] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [aux_sym__literal_repeat1] = STATE(1269), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [sym__special_character] = ACTIONS(2942), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [sym_variable_name] = ACTIONS(652), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [anon_sym_esac] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [aux_sym__simple_variable_name_token1] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, [1270] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [anon_sym_esac] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_esac] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [1271] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_esac] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [aux_sym__simple_variable_name_token1] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_esac] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [aux_sym__simple_variable_name_token1] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [1272] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_EQ_TILDE] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_esac] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [1273] = { - [sym_string] = STATE(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym__] = ACTIONS(2966), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2966), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2966), - [sym__special_character] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2968), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [sym_raw_string] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2968), - [sym_variable_name] = ACTIONS(1227), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2966), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(1223), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [sym_ansii_c_string] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(1272), + [sym_simple_expansion] = STATE(1272), + [sym_string_expansion] = STATE(1272), + [sym_string] = STATE(1272), + [sym_process_substitution] = STATE(1272), + [sym_expansion] = STATE(1272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2949), + [sym_word] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2953), + [anon_sym_DOLLAR] = ACTIONS(2955), + [anon_sym_LT_LPAREN] = ACTIONS(2957), + [sym_ansii_c_string] = ACTIONS(2949), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2957), + [sym__special_character] = ACTIONS(2949), + [sym_number] = ACTIONS(2951), }, [1274] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_EQ_TILDE] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_EQ_EQ] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [anon_sym_esac] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [aux_sym_concatenation_repeat1] = STATE(1274), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_esac] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [1275] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [anon_sym_esac] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_esac] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, [1276] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_esac] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_esac] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, [1277] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_esac] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [aux_sym__simple_variable_name_token1] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_esac] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [aux_sym__simple_variable_name_token1] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [1278] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [anon_sym_EQ_TILDE] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [anon_sym_esac] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_esac] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [1279] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [anon_sym_EQ_TILDE] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_esac] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [sym_string] = STATE(1201), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym__] = ACTIONS(2964), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_EQ_TILDE] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2966), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_raw_string] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2966), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_esac] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, [1280] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_EQ_TILDE] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [anon_sym_esac] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_esac] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, [1281] = { + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_esac] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + }, + [1282] = { + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_esac] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + }, + [1283] = { + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [anon_sym_esac] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [aux_sym__simple_variable_name_token1] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), + }, + [1284] = { + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [anon_sym_EQ_TILDE] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_esac] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), + }, + [1285] = { + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [anon_sym_EQ_TILDE] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_esac] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), + }, + [1286] = { [anon_sym_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1480), @@ -43353,83 +43387,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_PIPE_AMP] = ACTIONS(1480), }, - [1282] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [anon_sym_EQ_TILDE] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_EQ_EQ] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [anon_sym_esac] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [1287] = { + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_EQ_TILDE] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_esac] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, - [1283] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [anon_sym_EQ_TILDE] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [1288] = { + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [anon_sym_EQ_TILDE] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_esac] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_EQ_EQ] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [anon_sym_esac] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, - [1284] = { + [1289] = { [anon_sym_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), [anon_sym_DOLLAR] = ACTIONS(1698), @@ -43467,83 +43501,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_PIPE_AMP] = ACTIONS(1698), }, - [1285] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [anon_sym_EQ_TILDE] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [1290] = { + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [anon_sym_EQ_TILDE] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_EQ_EQ] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_esac] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [anon_sym_esac] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, - [1286] = { - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_EQ_TILDE] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [1291] = { + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_EQ_TILDE] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_EQ_EQ] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [anon_sym_esac] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [anon_sym_esac] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, - [1287] = { + [1292] = { [anon_sym_AMP] = ACTIONS(1823), [anon_sym_AMP_GT_GT] = ACTIONS(1823), [anon_sym_DOLLAR] = ACTIONS(1823), @@ -43581,8 +43615,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_PIPE_AMP] = ACTIONS(1823), }, - [1288] = { - [aux_sym_concatenation_repeat1] = STATE(1260), + [1293] = { + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [anon_sym_EQ_TILDE] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [anon_sym_esac] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [1294] = { + [aux_sym_concatenation_repeat1] = STATE(1266), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -43592,7 +43664,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2276), + [sym__concat] = ACTIONS(2280), [anon_sym_PIPE] = ACTIONS(211), [sym_word] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), @@ -43619,7 +43691,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [1289] = { + [1295] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -43657,7 +43729,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [1290] = { + [1296] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -43695,7 +43767,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [1291] = { + [1297] = { [anon_sym_AMP] = ACTIONS(417), [anon_sym_AMP_GT_GT] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(417), @@ -43732,8 +43804,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(417), [anon_sym_PIPE_AMP] = ACTIONS(417), }, - [1292] = { - [aux_sym_concatenation_repeat1] = STATE(1300), + [1298] = { + [aux_sym_concatenation_repeat1] = STATE(1306), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), [anon_sym_DOLLAR] = ACTIONS(429), @@ -43743,7 +43815,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(429), [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2972), + [sym__concat] = ACTIONS(2970), [anon_sym_PIPE] = ACTIONS(429), [sym_word] = ACTIONS(429), [anon_sym_LT] = ACTIONS(429), @@ -43770,7 +43842,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [1293] = { + [1299] = { [anon_sym_AMP] = ACTIONS(595), [anon_sym_AMP_GT_GT] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(595), @@ -43807,712 +43879,675 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(595), [anon_sym_PIPE_AMP] = ACTIONS(595), }, - [1294] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), - }, - [1295] = { - [aux_sym__literal_repeat1] = STATE(1295), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [sym__special_character] = ACTIONS(2974), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [anon_sym_esac] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [aux_sym__simple_variable_name_token1] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), - }, - [1296] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), - }, - [1297] = { - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [sym__concat] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(878), - [sym_word] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [anon_sym_LT_LT_DASH] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [sym_variable_name] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_AMP_GT] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_esac] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_SEMI_SEMI] = ACTIONS(878), - [anon_sym_PIPE_AMP] = ACTIONS(878), - }, - [1298] = { - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_esac] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), - }, - [1299] = { - [sym_command_substitution] = STATE(1298), - [sym_simple_expansion] = STATE(1298), - [sym_string_expansion] = STATE(1298), - [sym_string] = STATE(1298), - [sym_process_substitution] = STATE(1298), - [sym_expansion] = STATE(1298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2981), - [sym_word] = ACTIONS(2983), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), - [anon_sym_DOLLAR] = ACTIONS(2987), - [anon_sym_LT_LPAREN] = ACTIONS(2989), - [sym_ansii_c_string] = ACTIONS(2981), - [anon_sym_BQUOTE] = ACTIONS(2991), - [anon_sym_GT_LPAREN] = ACTIONS(2989), - [sym__special_character] = ACTIONS(2981), - [sym_number] = ACTIONS(2983), - }, - [1300] = { - [aux_sym_concatenation_repeat1] = STATE(1300), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [sym__concat] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(882), - [sym_word] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [anon_sym_LT_LT_DASH] = ACTIONS(882), + [1300] = { + [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), + [sym_number] = ACTIONS(211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(211), + [sym_word] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(211), + [anon_sym_LT_AMP] = ACTIONS(211), + [anon_sym_GT_GT] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(211), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_AMP_GT] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_esac] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(882), - [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [sym_raw_string] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(211), + [anon_sym_AMP_GT] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_LT_LT_LT] = ACTIONS(211), + [anon_sym_GT_AMP] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_esac] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [sym_ansii_c_string] = ACTIONS(211), + [aux_sym__simple_variable_name_token1] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [anon_sym_PIPE_AMP] = ACTIONS(211), }, [1301] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [sym_variable_name] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [aux_sym__simple_variable_name_token1] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [aux_sym__literal_repeat1] = STATE(1301), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [sym__special_character] = ACTIONS(2972), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [anon_sym_esac] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [aux_sym__simple_variable_name_token1] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, [1302] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [sym_variable_name] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [anon_sym_esac] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [aux_sym__simple_variable_name_token1] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_esac] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [1303] = { - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__concat] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1063), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1063), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_number] = ACTIONS(880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), + [anon_sym_PIPE_PIPE] = ACTIONS(880), + [sym__concat] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(880), + [sym_word] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_LT_AMP] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [sym__special_character] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [sym_raw_string] = ACTIONS(1063), - [sym_variable_name] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), - [anon_sym_esac] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [sym_ansii_c_string] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(880), + [sym_raw_string] = ACTIONS(880), + [sym_variable_name] = ACTIONS(882), + [sym_file_descriptor] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_AMP_GT] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_LT_LT_LT] = ACTIONS(880), + [anon_sym_GT_AMP] = ACTIONS(880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), + [anon_sym_esac] = ACTIONS(880), + [anon_sym_LT_LPAREN] = ACTIONS(880), + [sym_ansii_c_string] = ACTIONS(880), + [anon_sym_AMP_AMP] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(880), }, [1304] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_esac] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [1305] = { - [sym_string] = STATE(1259), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym__] = ACTIONS(2996), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2996), - [sym__special_character] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2998), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [sym_raw_string] = ACTIONS(3000), - [anon_sym_BANG] = ACTIONS(2998), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(2460), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(1223), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [sym_ansii_c_string] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [sym_command_substitution] = STATE(1304), + [sym_simple_expansion] = STATE(1304), + [sym_string_expansion] = STATE(1304), + [sym_string] = STATE(1304), + [sym_process_substitution] = STATE(1304), + [sym_expansion] = STATE(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2977), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2979), + [sym_word] = ACTIONS(2981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2983), + [anon_sym_DOLLAR] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2987), + [sym_ansii_c_string] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2989), + [anon_sym_GT_LPAREN] = ACTIONS(2987), + [sym__special_character] = ACTIONS(2979), + [sym_number] = ACTIONS(2981), }, [1306] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [sym_variable_name] = ACTIONS(1233), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [anon_sym_esac] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [aux_sym__simple_variable_name_token1] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [aux_sym_concatenation_repeat1] = STATE(1306), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(884), + [sym_number] = ACTIONS(884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), + [anon_sym_PIPE_PIPE] = ACTIONS(884), + [sym__concat] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(884), + [sym_word] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_LT_AMP] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [sym__special_character] = ACTIONS(884), + [anon_sym_LT_LT_DASH] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [sym_raw_string] = ACTIONS(884), + [sym_variable_name] = ACTIONS(886), + [sym_file_descriptor] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_AMP_GT] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [anon_sym_GT_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), + [anon_sym_esac] = ACTIONS(884), + [anon_sym_LT_LPAREN] = ACTIONS(884), + [sym_ansii_c_string] = ACTIONS(884), + [anon_sym_AMP_AMP] = ACTIONS(884), + [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_PIPE_AMP] = ACTIONS(884), }, [1307] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_variable_name] = ACTIONS(1292), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [anon_sym_esac] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [aux_sym__simple_variable_name_token1] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [sym_variable_name] = ACTIONS(909), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_esac] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [aux_sym__simple_variable_name_token1] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, [1308] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_variable_name] = ACTIONS(1302), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_esac] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [aux_sym__simple_variable_name_token1] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [sym_variable_name] = ACTIONS(961), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_esac] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [aux_sym__simple_variable_name_token1] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, [1309] = { - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_AMP_GT_GT] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [anon_sym_GT_LPAREN] = ACTIONS(1396), - [sym_number] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [sym__concat] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1396), - [sym_word] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_AMP] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [sym__special_character] = ACTIONS(1396), - [anon_sym_LT_LT_DASH] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [sym_raw_string] = ACTIONS(1396), - [sym_variable_name] = ACTIONS(1398), - [sym_file_descriptor] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_AMP_GT] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_GT_AMP] = ACTIONS(1396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_esac] = ACTIONS(1396), - [anon_sym_LT_LPAREN] = ACTIONS(1396), - [sym_ansii_c_string] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_SEMI_SEMI] = ACTIONS(1396), - [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_number] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym__concat] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1065), + [sym_word] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_GT] = ACTIONS(1065), + [sym__special_character] = ACTIONS(1065), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(1067), + [sym_file_descriptor] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_esac] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [sym_ansii_c_string] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_SEMI_SEMI] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), }, [1310] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [sym_variable_name] = ACTIONS(1456), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [anon_sym_esac] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [aux_sym__simple_variable_name_token1] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_esac] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, [1311] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [sym_variable_name] = ACTIONS(1468), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_esac] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [aux_sym__simple_variable_name_token1] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [sym_string] = STATE(1233), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym__] = ACTIONS(2994), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_DOLLAR] = ACTIONS(2996), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2994), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2994), + [sym__special_character] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_raw_string] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2996), + [sym_variable_name] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2994), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_esac] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, [1312] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [sym_variable_name] = ACTIONS(1478), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [anon_sym_esac] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [aux_sym__simple_variable_name_token1] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_variable_name] = ACTIONS(1237), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_esac] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [aux_sym__simple_variable_name_token1] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, [1313] = { + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_variable_name] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_esac] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [aux_sym__simple_variable_name_token1] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + }, + [1314] = { + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_variable_name] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_esac] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [aux_sym__simple_variable_name_token1] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + }, + [1315] = { + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_number] = ACTIONS(1400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [sym__concat] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1400), + [sym_word] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [sym__special_character] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [sym_raw_string] = ACTIONS(1400), + [sym_variable_name] = ACTIONS(1402), + [sym_file_descriptor] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_AMP_GT] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_GT_AMP] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), + [anon_sym_esac] = ACTIONS(1400), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1400), + [anon_sym_SEMI_SEMI] = ACTIONS(1400), + [anon_sym_PIPE_AMP] = ACTIONS(1400), + }, + [1316] = { + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [sym_variable_name] = ACTIONS(1460), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_esac] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [aux_sym__simple_variable_name_token1] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), + }, + [1317] = { + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [sym_variable_name] = ACTIONS(1472), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_esac] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [aux_sym__simple_variable_name_token1] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), + }, + [1318] = { [anon_sym_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1480), @@ -44550,83 +44585,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_PIPE_AMP] = ACTIONS(1480), }, - [1314] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [sym_variable_name] = ACTIONS(1690), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [anon_sym_esac] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [aux_sym__simple_variable_name_token1] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [1319] = { + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [sym_variable_name] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_esac] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [aux_sym__simple_variable_name_token1] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, - [1315] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [1320] = { + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [sym_variable_name] = ACTIONS(1696), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_esac] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [aux_sym__simple_variable_name_token1] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [sym_variable_name] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [anon_sym_esac] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [aux_sym__simple_variable_name_token1] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, - [1316] = { + [1321] = { [anon_sym_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), [anon_sym_DOLLAR] = ACTIONS(1698), @@ -44664,83 +44699,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_PIPE_AMP] = ACTIONS(1698), }, - [1317] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [1322] = { + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [sym_variable_name] = ACTIONS(1706), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_esac] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [aux_sym__simple_variable_name_token1] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [sym_variable_name] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [anon_sym_esac] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [aux_sym__simple_variable_name_token1] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, - [1318] = { - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [1323] = { + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), - [sym_variable_name] = ACTIONS(1821), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [anon_sym_esac] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [aux_sym__simple_variable_name_token1] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [sym_variable_name] = ACTIONS(1710), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [anon_sym_esac] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [aux_sym__simple_variable_name_token1] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, - [1319] = { + [1324] = { [anon_sym_AMP] = ACTIONS(1823), [anon_sym_AMP_GT_GT] = ACTIONS(1823), [anon_sym_DOLLAR] = ACTIONS(1823), @@ -44778,8 +44813,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_PIPE_AMP] = ACTIONS(1823), }, - [1320] = { - [aux_sym_concatenation_repeat1] = STATE(1292), + [1325] = { + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [sym_variable_name] = ACTIONS(1829), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [anon_sym_esac] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [aux_sym__simple_variable_name_token1] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [1326] = { + [aux_sym_concatenation_repeat1] = STATE(1298), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -44789,7 +44862,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2568), + [sym__concat] = ACTIONS(2594), [anon_sym_PIPE] = ACTIONS(211), [sym_word] = ACTIONS(211), [anon_sym_LT] = ACTIONS(211), @@ -44816,7 +44889,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [1321] = { + [1327] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -44853,7 +44926,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [1322] = { + [1328] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -44890,7 +44963,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [1323] = { + [1329] = { [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), [anon_sym_DOLLAR] = ACTIONS(211), @@ -44926,460 +44999,422 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [1324] = { - [aux_sym__literal_repeat1] = STATE(1324), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_AMP_GT_GT] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_GT_LPAREN] = ACTIONS(645), - [sym_number] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(645), - [sym_word] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_AMP] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [sym__special_character] = ACTIONS(3002), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(645), - [sym_raw_string] = ACTIONS(645), - [sym_variable_name] = ACTIONS(650), - [sym_file_descriptor] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_AMP_GT] = ACTIONS(645), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_LT_LT_LT] = ACTIONS(645), - [anon_sym_GT_AMP] = ACTIONS(645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(645), - [anon_sym_esac] = ACTIONS(645), - [anon_sym_LT_LPAREN] = ACTIONS(645), - [sym_ansii_c_string] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI] = ACTIONS(645), - [anon_sym_PIPE_AMP] = ACTIONS(645), + [1330] = { + [aux_sym__literal_repeat1] = STATE(1330), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(647), + [sym_number] = ACTIONS(647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_PIPE] = ACTIONS(647), + [sym_word] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [sym__special_character] = ACTIONS(3000), + [anon_sym_LT_LT_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(647), + [sym_raw_string] = ACTIONS(647), + [sym_variable_name] = ACTIONS(652), + [sym_file_descriptor] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(647), + [anon_sym_LT_LT_LT] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), + [anon_sym_esac] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(647), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_PIPE_AMP] = ACTIONS(647), }, - [1325] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [1331] = { + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_esac] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, - [1326] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), + [1332] = { + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [aux_sym__simple_variable_name_token1] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_esac] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [aux_sym__simple_variable_name_token1] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, - [1327] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [1333] = { + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [anon_sym_esac] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [aux_sym__simple_variable_name_token1] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_esac] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [aux_sym__simple_variable_name_token1] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, - [1328] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [1334] = { + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [aux_sym__simple_variable_name_token1] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), - }, - [1329] = { - [sym_string] = STATE(1291), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym__] = ACTIONS(3005), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), - [sym_number] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(1223), - [sym_word] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(3005), - [sym__special_character] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3007), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3007), - [sym_variable_name] = ACTIONS(1227), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(3011), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(1223), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [sym_ansii_c_string] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_esac] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [aux_sym__simple_variable_name_token1] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, - [1330] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [anon_sym_esac] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [aux_sym__simple_variable_name_token1] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [1335] = { + [sym_string] = STATE(1265), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym__] = ACTIONS(3003), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(3003), + [sym__special_character] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_raw_string] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3005), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_esac] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, - [1331] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [anon_sym_esac] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [aux_sym__simple_variable_name_token1] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [1336] = { + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_esac] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [aux_sym__simple_variable_name_token1] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, - [1332] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_esac] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [aux_sym__simple_variable_name_token1] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [1337] = { + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_esac] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [aux_sym__simple_variable_name_token1] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), }, - [1333] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [anon_sym_esac] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [aux_sym__simple_variable_name_token1] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [1338] = { + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_esac] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [aux_sym__simple_variable_name_token1] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), }, - [1334] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_esac] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [aux_sym__simple_variable_name_token1] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [1339] = { + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_esac] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [aux_sym__simple_variable_name_token1] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), }, - [1335] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [anon_sym_esac] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [aux_sym__simple_variable_name_token1] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [1340] = { + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_esac] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [aux_sym__simple_variable_name_token1] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), }, - [1336] = { + [1341] = { [anon_sym_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1480), @@ -45416,81 +45451,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_PIPE_AMP] = ACTIONS(1480), }, - [1337] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [anon_sym_esac] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [aux_sym__simple_variable_name_token1] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [1342] = { + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_esac] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [aux_sym__simple_variable_name_token1] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, - [1338] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [1343] = { + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_esac] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [aux_sym__simple_variable_name_token1] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [anon_sym_esac] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [aux_sym__simple_variable_name_token1] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, - [1339] = { + [1344] = { [anon_sym_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), [anon_sym_DOLLAR] = ACTIONS(1698), @@ -45527,81 +45562,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_PIPE_AMP] = ACTIONS(1698), }, - [1340] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [1345] = { + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_esac] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [aux_sym__simple_variable_name_token1] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [anon_sym_esac] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [aux_sym__simple_variable_name_token1] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, - [1341] = { - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [1346] = { + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [anon_sym_esac] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [aux_sym__simple_variable_name_token1] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [anon_sym_esac] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [aux_sym__simple_variable_name_token1] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, - [1342] = { + [1347] = { [anon_sym_AMP] = ACTIONS(1823), [anon_sym_AMP_GT_GT] = ACTIONS(1823), [anon_sym_DOLLAR] = ACTIONS(1823), @@ -45638,7 +45673,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_PIPE_AMP] = ACTIONS(1823), }, - [1343] = { + [1348] = { + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [anon_sym_esac] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [aux_sym__simple_variable_name_token1] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), + }, + [1349] = { [anon_sym_AMP] = ACTIONS(409), [anon_sym_AMP_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), @@ -45675,7 +45747,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [1344] = { + [1350] = { [anon_sym_AMP] = ACTIONS(413), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(413), @@ -45712,413 +45784,386 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(413), [anon_sym_PIPE_AMP] = ACTIONS(413), }, - [1345] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [1351] = { + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_esac] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, - [1346] = { - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_GT_LPAREN] = ACTIONS(905), - [sym_number] = ACTIONS(905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [sym__concat] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(905), - [sym_word] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_LT_AMP] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [sym__special_character] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(905), + [1352] = { + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(907), + [sym_number] = ACTIONS(907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [sym__concat] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(907), + [sym_word] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_AMP] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [sym__special_character] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(907), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(905), - [sym_raw_string] = ACTIONS(905), - [sym_variable_name] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_LT_LT_LT] = ACTIONS(905), - [anon_sym_GT_AMP] = ACTIONS(905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(905), - [sym_ansii_c_string] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(907), + [sym_raw_string] = ACTIONS(907), + [sym_variable_name] = ACTIONS(909), + [sym_file_descriptor] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_AMP_GT] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_LT_LT_LT] = ACTIONS(907), + [anon_sym_GT_AMP] = ACTIONS(907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), + [anon_sym_esac] = ACTIONS(907), + [anon_sym_LT_LPAREN] = ACTIONS(907), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(907), }, - [1347] = { - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_AMP_GT_GT] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_GT_LPAREN] = ACTIONS(957), - [sym_number] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [sym__concat] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(957), - [sym_word] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_LT_AMP] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [sym__special_character] = ACTIONS(957), - [anon_sym_LT_LT_DASH] = ACTIONS(957), + [1353] = { + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [sym__concat] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(959), + [sym_word] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_LT_AMP] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [sym__special_character] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(959), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(957), - [sym_raw_string] = ACTIONS(957), - [sym_variable_name] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_AMP_GT] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_LT_LT_LT] = ACTIONS(957), - [anon_sym_GT_AMP] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [anon_sym_esac] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(957), - [sym_ansii_c_string] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [sym_raw_string] = ACTIONS(959), + [sym_variable_name] = ACTIONS(961), + [sym_file_descriptor] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_GT_AMP] = ACTIONS(959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), + [anon_sym_esac] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [sym_ansii_c_string] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_PIPE_AMP] = ACTIONS(959), }, - [1348] = { - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_BQUOTE] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [sym__concat] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(874), - [sym_word] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_AMP] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [sym__special_character] = ACTIONS(874), - [anon_sym_LT_LT_DASH] = ACTIONS(874), + [1354] = { + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [sym_number] = ACTIONS(876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), + [anon_sym_PIPE_PIPE] = ACTIONS(876), + [sym__concat] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(876), + [sym_word] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_LT_AMP] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [sym__special_character] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [sym_raw_string] = ACTIONS(874), - [sym_variable_name] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_LT_LT_LT] = ACTIONS(874), - [anon_sym_GT_AMP] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(874), - [anon_sym_esac] = ACTIONS(874), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [sym_ansii_c_string] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_SEMI_SEMI] = ACTIONS(874), - [anon_sym_PIPE_AMP] = ACTIONS(874), - }, - [1349] = { - [sym_string] = STATE(1067), - [anon_sym__] = ACTIONS(2840), - [anon_sym_PIPE_AMP] = ACTIONS(1223), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(2842), - [sym_raw_string] = ACTIONS(2844), - [sym_file_descriptor] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [anon_sym_esac] = ACTIONS(1223), - [aux_sym__simple_variable_name_token1] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_LF] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(876), + [sym_raw_string] = ACTIONS(876), + [sym_variable_name] = ACTIONS(878), + [sym_file_descriptor] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_LT_LT_LT] = ACTIONS(876), + [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), + [anon_sym_esac] = ACTIONS(876), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(876), + [anon_sym_SEMI_SEMI] = ACTIONS(876), + [anon_sym_PIPE_AMP] = ACTIONS(876), }, - [1350] = { - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [sym__concat] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1231), - [sym_word] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_LT_LT_DASH] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [sym_raw_string] = ACTIONS(1231), - [sym_variable_name] = ACTIONS(1233), - [sym_file_descriptor] = ACTIONS(1233), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_GT_AMP] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [anon_sym_esac] = ACTIONS(1231), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_SEMI_SEMI] = ACTIONS(1231), - [anon_sym_PIPE_AMP] = ACTIONS(1231), + [1355] = { + [sym_string] = STATE(1297), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym__] = ACTIONS(3009), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), + [sym_number] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(1227), + [sym_word] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(3009), + [sym__special_character] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [sym_raw_string] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3011), + [sym_variable_name] = ACTIONS(1231), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(3015), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_esac] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [sym_ansii_c_string] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_PIPE_AMP] = ACTIONS(1227), }, - [1351] = { - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), - [sym_number] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [sym__concat] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [sym_word] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [sym__special_character] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_variable_name] = ACTIONS(1292), - [sym_file_descriptor] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_AMP_GT] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_GT_AMP] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1290), - [anon_sym_esac] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [sym_ansii_c_string] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), + [1356] = { + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_number] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym__concat] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [sym_word] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_variable_name] = ACTIONS(1237), + [sym_file_descriptor] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_esac] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [sym_ansii_c_string] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), }, - [1352] = { - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_number] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [sym__concat] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [sym_word] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_variable_name] = ACTIONS(1302), - [sym_file_descriptor] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_esac] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [sym_ansii_c_string] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), + [1357] = { + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_number] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [sym__concat] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [sym_word] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_variable_name] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_esac] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [sym_ansii_c_string] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), }, - [1353] = { - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_AMP_GT_GT] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_GT_LPAREN] = ACTIONS(1454), - [sym_number] = ACTIONS(1454), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [sym__concat] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1454), - [sym_word] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_AMP] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [sym__special_character] = ACTIONS(1454), - [anon_sym_LT_LT_DASH] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [sym_raw_string] = ACTIONS(1454), - [sym_variable_name] = ACTIONS(1456), - [sym_file_descriptor] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_AMP_GT] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_GT_AMP] = ACTIONS(1454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), - [anon_sym_esac] = ACTIONS(1454), - [anon_sym_LT_LPAREN] = ACTIONS(1454), - [sym_ansii_c_string] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1454), - [anon_sym_PIPE_AMP] = ACTIONS(1454), + [1358] = { + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_number] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [sym__concat] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [sym_word] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_variable_name] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_esac] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [sym_ansii_c_string] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), }, - [1354] = { - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_AMP_GT_GT] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1466), - [sym_word] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_AMP] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1466), - [sym__special_character] = ACTIONS(1466), - [anon_sym_LT_LT_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [sym_variable_name] = ACTIONS(1468), - [sym_file_descriptor] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_AMP_GT] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_GT_AMP] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), - [anon_sym_esac] = ACTIONS(1466), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI_SEMI] = ACTIONS(1466), - [anon_sym_PIPE_AMP] = ACTIONS(1466), + [1359] = { + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1458), + [sym_number] = ACTIONS(1458), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), + [anon_sym_PIPE_PIPE] = ACTIONS(1458), + [sym__concat] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1458), + [sym_word] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_AMP] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [sym__special_character] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [sym_raw_string] = ACTIONS(1458), + [sym_variable_name] = ACTIONS(1460), + [sym_file_descriptor] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_AMP_GT] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_GT_AMP] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_esac] = ACTIONS(1458), + [anon_sym_LT_LPAREN] = ACTIONS(1458), + [sym_ansii_c_string] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1458), + [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [anon_sym_PIPE_AMP] = ACTIONS(1458), }, - [1355] = { - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_AMP_GT_GT] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [sym__concat] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1476), - [sym_word] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_AMP] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1476), - [sym__special_character] = ACTIONS(1476), - [anon_sym_LT_LT_DASH] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(1476), - [sym_variable_name] = ACTIONS(1478), - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_AMP_GT] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_GT_AMP] = ACTIONS(1476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), - [anon_sym_esac] = ACTIONS(1476), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_SEMI_SEMI] = ACTIONS(1476), - [anon_sym_PIPE_AMP] = ACTIONS(1476), + [1360] = { + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_GT_LPAREN] = ACTIONS(1470), + [sym_number] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), + [anon_sym_PIPE_PIPE] = ACTIONS(1470), + [sym__concat] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [sym_word] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_LT_AMP] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [sym__special_character] = ACTIONS(1470), + [anon_sym_LT_LT_DASH] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [sym_raw_string] = ACTIONS(1470), + [sym_variable_name] = ACTIONS(1472), + [sym_file_descriptor] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_AMP_GT] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_GT_AMP] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_esac] = ACTIONS(1470), + [anon_sym_LT_LPAREN] = ACTIONS(1470), + [sym_ansii_c_string] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1470), + [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [anon_sym_PIPE_AMP] = ACTIONS(1470), }, - [1356] = { + [1361] = { [anon_sym_AMP] = ACTIONS(1480), [anon_sym_AMP_GT_GT] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1480), @@ -46155,81 +46200,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1480), [anon_sym_PIPE_AMP] = ACTIONS(1480), }, - [1357] = { - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_AMP_GT_GT] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_GT_LPAREN] = ACTIONS(1688), - [sym_number] = ACTIONS(1688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [sym__concat] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1688), - [sym_word] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_AMP] = ACTIONS(1688), - [anon_sym_GT_GT] = ACTIONS(1688), - [sym__special_character] = ACTIONS(1688), - [anon_sym_LT_LT_DASH] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [sym_raw_string] = ACTIONS(1688), - [sym_variable_name] = ACTIONS(1690), - [sym_file_descriptor] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_AMP_GT] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LT_LT_LT] = ACTIONS(1688), - [anon_sym_GT_AMP] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1688), - [anon_sym_esac] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(1688), - [sym_ansii_c_string] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_SEMI_SEMI] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), + [1362] = { + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [sym__concat] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1484), + [sym_word] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_AMP] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [sym__special_character] = ACTIONS(1484), + [anon_sym_LT_LT_DASH] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(1484), + [sym_variable_name] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_AMP_GT] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_GT_AMP] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_esac] = ACTIONS(1484), + [anon_sym_LT_LPAREN] = ACTIONS(1484), + [sym_ansii_c_string] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [anon_sym_PIPE_AMP] = ACTIONS(1484), }, - [1358] = { - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1694), - [sym_word] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [anon_sym_LT_LT_DASH] = ACTIONS(1694), + [1363] = { + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_GT_LPAREN] = ACTIONS(1692), + [sym_number] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [sym__concat] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1692), + [sym_word] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_AMP] = ACTIONS(1692), + [anon_sym_GT_GT] = ACTIONS(1692), + [sym__special_character] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(1692), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [sym_variable_name] = ACTIONS(1696), - [sym_file_descriptor] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_AMP_GT] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_esac] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_SEMI_SEMI] = ACTIONS(1694), - [anon_sym_PIPE_AMP] = ACTIONS(1694), + [anon_sym_LF] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(1692), + [sym_variable_name] = ACTIONS(1694), + [sym_file_descriptor] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_AMP_GT] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_LT_LT_LT] = ACTIONS(1692), + [anon_sym_GT_AMP] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [anon_sym_esac] = ACTIONS(1692), + [anon_sym_LT_LPAREN] = ACTIONS(1692), + [sym_ansii_c_string] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [anon_sym_PIPE_AMP] = ACTIONS(1692), }, - [1359] = { + [1364] = { [anon_sym_AMP] = ACTIONS(1698), [anon_sym_AMP_GT_GT] = ACTIONS(1698), [anon_sym_DOLLAR] = ACTIONS(1698), @@ -46266,81 +46311,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1698), [anon_sym_PIPE_AMP] = ACTIONS(1698), }, - [1360] = { - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1704), - [sym_word] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [anon_sym_LT_LT_DASH] = ACTIONS(1704), + [1365] = { + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_LT_LT] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_GT_LPAREN] = ACTIONS(1702), + [sym_number] = ACTIONS(1702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [sym__concat] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1702), + [sym_word] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_LT_AMP] = ACTIONS(1702), + [anon_sym_GT_GT] = ACTIONS(1702), + [sym__special_character] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [sym_variable_name] = ACTIONS(1706), - [sym_file_descriptor] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_AMP_GT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_esac] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_SEMI_SEMI] = ACTIONS(1704), - [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_LF] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [sym_raw_string] = ACTIONS(1702), + [sym_variable_name] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_AMP_GT] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_LT_LT_LT] = ACTIONS(1702), + [anon_sym_GT_AMP] = ACTIONS(1702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), + [anon_sym_esac] = ACTIONS(1702), + [anon_sym_LT_LPAREN] = ACTIONS(1702), + [sym_ansii_c_string] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_SEMI_SEMI] = ACTIONS(1702), + [anon_sym_PIPE_AMP] = ACTIONS(1702), }, - [1361] = { - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_GT_LPAREN] = ACTIONS(1819), - [sym_number] = ACTIONS(1819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1819), - [sym_word] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [sym__special_character] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), + [1366] = { + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(1708), + [sym_number] = ACTIONS(1708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1708), + [sym__concat] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1708), + [sym_word] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_AMP] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [sym__special_character] = ACTIONS(1708), + [anon_sym_LT_LT_DASH] = ACTIONS(1708), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_raw_string] = ACTIONS(1819), - [sym_variable_name] = ACTIONS(1821), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1819), - [anon_sym_esac] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(1819), - [sym_ansii_c_string] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [sym_raw_string] = ACTIONS(1708), + [sym_variable_name] = ACTIONS(1710), + [sym_file_descriptor] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_AMP_GT] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_LT_LT_LT] = ACTIONS(1708), + [anon_sym_GT_AMP] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), + [anon_sym_esac] = ACTIONS(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1708), + [sym_ansii_c_string] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [anon_sym_PIPE_AMP] = ACTIONS(1708), }, - [1362] = { + [1367] = { [anon_sym_AMP] = ACTIONS(1823), [anon_sym_AMP_GT_GT] = ACTIONS(1823), [anon_sym_DOLLAR] = ACTIONS(1823), @@ -46377,76 +46422,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI_SEMI] = ACTIONS(1823), [anon_sym_PIPE_AMP] = ACTIONS(1823), }, - [1363] = { - [sym_command_substitution] = STATE(393), - [aux_sym__literal_repeat1] = STATE(394), - [sym_string] = STATE(393), - [sym_process_substitution] = STATE(393), - [sym_simple_expansion] = STATE(393), - [sym_string_expansion] = STATE(393), - [sym_concatenation] = STATE(395), - [sym_expansion] = STATE(393), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), - [anon_sym_DQUOTE] = ACTIONS(666), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3013), - [sym_word] = ACTIONS(3015), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), - [anon_sym_DOLLAR] = ACTIONS(674), - [sym_ansii_c_string] = ACTIONS(3013), - [anon_sym_LT_LPAREN] = ACTIONS(676), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym__special_character] = ACTIONS(680), - [sym_number] = ACTIONS(3015), - [anon_sym_GT_LPAREN] = ACTIONS(676), + [1368] = { + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(1827), + [sym_number] = ACTIONS(1827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [sym__concat] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [sym_word] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_AMP] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1827), + [sym__special_character] = ACTIONS(1827), + [anon_sym_LT_LT_DASH] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_raw_string] = ACTIONS(1827), + [sym_variable_name] = ACTIONS(1829), + [sym_file_descriptor] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_AMP_GT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [anon_sym_LT_LT_LT] = ACTIONS(1827), + [anon_sym_GT_AMP] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [anon_sym_esac] = ACTIONS(1827), + [anon_sym_LT_LPAREN] = ACTIONS(1827), + [sym_ansii_c_string] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1827), }, - [1364] = { - [sym_string] = STATE(404), - [anon_sym__] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3017), - [sym_raw_string] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3017), + [1369] = { + [sym_string] = STATE(1073), + [anon_sym__] = ACTIONS(2844), + [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_AMP_GT_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(2844), + [anon_sym_DOLLAR] = ACTIONS(2846), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_0] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_AMP] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(2846), + [sym_raw_string] = ACTIONS(2848), + [sym_file_descriptor] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_AMP_GT] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_GT_AMP] = ACTIONS(1227), + [anon_sym_esac] = ACTIONS(1227), + [aux_sym__simple_variable_name_token1] = ACTIONS(2844), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_SEMI_SEMI] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + }, + [1370] = { + [sym_command_substitution] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_string] = STATE(394), + [sym_process_substitution] = STATE(394), + [sym_simple_expansion] = STATE(394), + [sym_string_expansion] = STATE(394), + [sym_concatenation] = STATE(396), + [sym_expansion] = STATE(394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3017), + [sym_word] = ACTIONS(3019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(674), + [anon_sym_DOLLAR] = ACTIONS(676), + [sym_ansii_c_string] = ACTIONS(3017), + [anon_sym_LT_LPAREN] = ACTIONS(678), + [anon_sym_BQUOTE] = ACTIONS(680), + [sym__special_character] = ACTIONS(682), + [sym_number] = ACTIONS(3019), + [anon_sym_GT_LPAREN] = ACTIONS(678), + }, + [1371] = { + [sym_string] = STATE(405), + [anon_sym__] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3021), + [sym_raw_string] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_DOLLAR] = ACTIONS(3021), + [anon_sym_AT] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3021), [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_0] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(3021), - [aux_sym__simple_variable_name_token1] = ACTIONS(2178), - [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_0] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(3025), + [aux_sym__simple_variable_name_token1] = ACTIONS(2182), + [anon_sym_QMARK] = ACTIONS(3025), }, - [1365] = { - [aux_sym__literal_repeat1] = STATE(386), + [1372] = { + [aux_sym__literal_repeat1] = STATE(387), [sym_if_statement] = STATE(61), [sym_function_definition] = STATE(61), [sym_negated_command] = STATE(61), [sym_test_command] = STATE(61), [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(1376), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(1383), [sym_redirected_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_compound_statement] = STATE(61), [sym_subshell] = STATE(61), [sym_declaration_command] = STATE(61), [sym_unset_command] = STATE(61), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym_c_style_for_statement] = STATE(61), [sym_while_statement] = STATE(61), [sym_case_statement] = STATE(61), [sym_pipeline] = STATE(61), [sym_list] = STATE(61), [sym_command] = STATE(61), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -46480,7 +46598,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(89), [anon_sym_BANG] = ACTIONS(95), [sym_file_descriptor] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_RBRACE] = ACTIONS(3027), [anon_sym_GT] = ACTIONS(29), [anon_sym_AMP_GT] = ACTIONS(29), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), @@ -46489,135 +46607,135 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [1366] = { + [1373] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1381), + [aux_sym_string_repeat1] = STATE(1388), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE] = ACTIONS(3029), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_DOLLAR] = ACTIONS(3031), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1367] = { - [anon_sym_RPAREN] = ACTIONS(3029), + [1374] = { + [anon_sym_RPAREN] = ACTIONS(3033), [sym_comment] = ACTIONS(41), }, - [1368] = { + [1375] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3031), + [anon_sym_BQUOTE] = ACTIONS(3035), }, - [1369] = { - [anon_sym_RPAREN] = ACTIONS(3033), + [1376] = { + [anon_sym_RPAREN] = ACTIONS(3037), [sym_comment] = ACTIONS(41), }, - [1370] = { - [sym_command_substitution] = STATE(432), - [sym_string] = STATE(432), - [sym_process_substitution] = STATE(432), - [sym_simple_expansion] = STATE(432), - [sym_string_expansion] = STATE(432), - [sym_expansion] = STATE(432), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2114), + [1377] = { + [sym_command_substitution] = STATE(433), + [sym_string] = STATE(433), + [sym_process_substitution] = STATE(433), + [sym_simple_expansion] = STATE(433), + [sym_string_expansion] = STATE(433), + [sym_expansion] = STATE(433), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2118), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(2118), + [sym_number] = ACTIONS(2122), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(99), - [sym_word] = ACTIONS(2118), + [sym_word] = ACTIONS(2122), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), [anon_sym_LT_LPAREN] = ACTIONS(73), - [sym_ansii_c_string] = ACTIONS(2114), - [sym__special_character] = ACTIONS(2114), + [sym_ansii_c_string] = ACTIONS(2118), + [sym__special_character] = ACTIONS(2118), }, - [1371] = { + [1378] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1390), - [sym_concatenation] = STATE(1390), + [aux_sym_expansion_repeat1] = STATE(1397), + [sym_concatenation] = STATE(1397), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3039), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3035), + [anon_sym_COLON_DASH] = ACTIONS(3039), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3039), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3039), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3037), + [anon_sym_POUND] = ACTIONS(3041), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_EQ] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_EQ] = ACTIONS(3039), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_COLON] = ACTIONS(3039), }, - [1372] = { + [1379] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1395), - [sym_concatenation] = STATE(1395), + [aux_sym_expansion_repeat1] = STATE(1402), + [sym_concatenation] = STATE(1402), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3047), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3043), + [anon_sym_COLON_DASH] = ACTIONS(3047), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3047), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3047), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3049), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_EQ] = ACTIONS(3043), + [anon_sym_SLASH] = ACTIONS(3051), + [anon_sym_RBRACE] = ACTIONS(3053), + [anon_sym_EQ] = ACTIONS(3047), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_COLON] = ACTIONS(3047), }, - [1373] = { - [sym_compound_statement] = STATE(437), - [anon_sym_LPAREN] = ACTIONS(3051), + [1380] = { + [sym_compound_statement] = STATE(438), + [anon_sym_LPAREN] = ACTIONS(3055), [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), }, - [1374] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [1381] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_LT_LT_DASH] = ACTIONS(489), [anon_sym_PIPE_AMP] = ACTIONS(491), [anon_sym_AMP_GT_GT] = ACTIONS(493), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), [sym_file_descriptor] = ACTIONS(499), [anon_sym_LT_LT] = ACTIONS(489), [anon_sym_GT] = ACTIONS(493), @@ -46630,14 +46748,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(493), [anon_sym_GT_GT] = ACTIONS(493), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI_SEMI] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3059), }, - [1375] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), + [1382] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), [anon_sym_PIPE_AMP] = ACTIONS(491), [anon_sym_AMP_GT_GT] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(331), @@ -46656,8 +46774,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(489), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), [anon_sym_GT] = ACTIONS(331), @@ -46669,40 +46787,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(331), [sym_ansii_c_string] = ACTIONS(331), [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI_SEMI] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3059), }, - [1376] = { - [aux_sym__literal_repeat1] = STATE(386), + [1383] = { + [aux_sym__literal_repeat1] = STATE(387), [sym_if_statement] = STATE(61), [sym_function_definition] = STATE(61), [sym_negated_command] = STATE(61), [sym_test_command] = STATE(61), [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(421), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(422), [sym_redirected_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_compound_statement] = STATE(61), [sym_subshell] = STATE(61), [sym_declaration_command] = STATE(61), [sym_unset_command] = STATE(61), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym_c_style_for_statement] = STATE(61), [sym_while_statement] = STATE(61), [sym_case_statement] = STATE(61), [sym_pipeline] = STATE(61), [sym_list] = STATE(61), [sym_command] = STATE(61), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -46736,7 +46854,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(89), [anon_sym_BANG] = ACTIONS(95), [sym_file_descriptor] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(3061), [anon_sym_GT] = ACTIONS(29), [anon_sym_AMP_GT] = ACTIONS(29), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), @@ -46745,11 +46863,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [1377] = { + [1384] = { [anon_sym_PLUS_EQ] = ACTIONS(541), [anon_sym_PLUS_PLUS] = ACTIONS(543), [anon_sym_DASH] = ACTIONS(545), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3059), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3063), [anon_sym_PIPE_PIPE] = ACTIONS(541), [anon_sym_LT] = ACTIONS(545), [anon_sym_EQ_TILDE] = ACTIONS(547), @@ -46766,56 +46884,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(545), [anon_sym_AMP_AMP] = ACTIONS(541), }, - [1378] = { - [sym_command_substitution] = STATE(447), - [aux_sym__literal_repeat1] = STATE(448), - [sym_string] = STATE(447), - [sym_array] = STATE(446), - [sym_process_substitution] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_concatenation] = STATE(446), - [sym_expansion] = STATE(447), - [anon_sym_LPAREN] = ACTIONS(3061), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3063), - [anon_sym_DOLLAR] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(2771), - [anon_sym_GT_LPAREN] = ACTIONS(2773), - [sym_number] = ACTIONS(3067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_word] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2781), - [anon_sym_LT_LPAREN] = ACTIONS(2773), - [sym_ansii_c_string] = ACTIONS(3063), - [sym__special_character] = ACTIONS(3069), - [sym__empty_value] = ACTIONS(3071), + [1385] = { + [sym_command_substitution] = STATE(448), + [aux_sym__literal_repeat1] = STATE(449), + [sym_string] = STATE(448), + [sym_array] = STATE(447), + [sym_process_substitution] = STATE(448), + [sym_simple_expansion] = STATE(448), + [sym_string_expansion] = STATE(448), + [sym_concatenation] = STATE(447), + [sym_expansion] = STATE(448), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(2775), + [anon_sym_GT_LPAREN] = ACTIONS(2777), + [sym_number] = ACTIONS(3071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_word] = ACTIONS(3071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2785), + [anon_sym_LT_LPAREN] = ACTIONS(2777), + [sym_ansii_c_string] = ACTIONS(3067), + [sym__special_character] = ACTIONS(3073), + [sym__empty_value] = ACTIONS(3075), }, - [1379] = { - [sym_command_substitution] = STATE(449), - [aux_sym__literal_repeat1] = STATE(450), - [sym_string] = STATE(449), - [sym_process_substitution] = STATE(449), - [sym_simple_expansion] = STATE(449), - [sym_string_expansion] = STATE(449), - [sym_concatenation] = STATE(451), - [sym_expansion] = STATE(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), - [anon_sym_DQUOTE] = ACTIONS(666), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3073), - [sym_word] = ACTIONS(3075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), - [anon_sym_DOLLAR] = ACTIONS(674), - [sym_ansii_c_string] = ACTIONS(3073), - [anon_sym_LT_LPAREN] = ACTIONS(676), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym__special_character] = ACTIONS(680), - [sym_number] = ACTIONS(3075), - [anon_sym_GT_LPAREN] = ACTIONS(676), + [1386] = { + [sym_command_substitution] = STATE(450), + [aux_sym__literal_repeat1] = STATE(451), + [sym_string] = STATE(450), + [sym_process_substitution] = STATE(450), + [sym_simple_expansion] = STATE(450), + [sym_string_expansion] = STATE(450), + [sym_concatenation] = STATE(452), + [sym_expansion] = STATE(450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3077), + [sym_word] = ACTIONS(3079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(674), + [anon_sym_DOLLAR] = ACTIONS(676), + [sym_ansii_c_string] = ACTIONS(3077), + [anon_sym_LT_LPAREN] = ACTIONS(678), + [anon_sym_BQUOTE] = ACTIONS(680), + [sym__special_character] = ACTIONS(682), + [sym_number] = ACTIONS(3079), + [anon_sym_GT_LPAREN] = ACTIONS(678), }, - [1380] = { + [1387] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -46824,26 +46942,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3081), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1381] = { + [1388] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3081), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3083), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1382] = { + [1389] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_BQUOTE] = ACTIONS(333), @@ -46859,7 +46977,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(333), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3081), + [anon_sym_RPAREN] = ACTIONS(3085), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(333), @@ -46868,42 +46986,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym_ansii_c_string] = ACTIONS(333), }, - [1383] = { - [anon_sym_RPAREN] = ACTIONS(3081), + [1390] = { + [anon_sym_RPAREN] = ACTIONS(3085), [sym_comment] = ACTIONS(41), }, - [1384] = { - [sym_do_group] = STATE(454), + [1391] = { + [sym_do_group] = STATE(455), [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3087), }, - [1385] = { - [anon_sym_PLUS_EQ] = ACTIONS(637), - [anon_sym_PLUS_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_EQ_TILDE] = ACTIONS(643), - [anon_sym_DASH_DASH] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_DASH_EQ] = ACTIONS(637), - [anon_sym_BANG_EQ] = ACTIONS(637), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACK] = ACTIONS(3059), - [sym_test_operator] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(641), - [anon_sym_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_AMP_AMP] = ACTIONS(637), + [1392] = { + [anon_sym_PLUS_EQ] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_PIPE_PIPE] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_EQ_TILDE] = ACTIONS(645), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_LT_EQ] = ACTIONS(639), + [anon_sym_DASH_EQ] = ACTIONS(639), + [anon_sym_BANG_EQ] = ACTIONS(639), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACK] = ACTIONS(3063), + [sym_test_operator] = ACTIONS(639), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(645), + [anon_sym_GT_EQ] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_AMP_AMP] = ACTIONS(639), }, - [1386] = { + [1393] = { [anon_sym_PLUS_EQ] = ACTIONS(541), [anon_sym_PLUS_PLUS] = ACTIONS(543), [anon_sym_DASH] = ACTIONS(545), [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3059), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3063), [anon_sym_LT] = ACTIONS(545), [anon_sym_EQ_TILDE] = ACTIONS(547), [anon_sym_DASH_DASH] = ACTIONS(543), @@ -46919,292 +47037,292 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(545), [anon_sym_AMP_AMP] = ACTIONS(541), }, - [1387] = { - [sym_heredoc_start] = ACTIONS(3085), + [1394] = { + [sym_heredoc_start] = ACTIONS(3089), [sym_comment] = ACTIONS(41), }, - [1388] = { - [sym_command_substitution] = STATE(462), - [aux_sym__literal_repeat1] = STATE(463), - [sym_string] = STATE(462), - [sym_process_substitution] = STATE(462), - [sym_simple_expansion] = STATE(462), - [sym_string_expansion] = STATE(462), - [sym_concatenation] = STATE(464), - [sym_expansion] = STATE(462), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_BQUOTE] = ACTIONS(2803), - [anon_sym_GT_LPAREN] = ACTIONS(2805), - [sym_number] = ACTIONS(3091), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_word] = ACTIONS(3091), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), - [anon_sym_LT_LPAREN] = ACTIONS(2805), - [sym_ansii_c_string] = ACTIONS(3087), - [sym__special_character] = ACTIONS(3093), + [1395] = { + [sym_command_substitution] = STATE(463), + [aux_sym__literal_repeat1] = STATE(464), + [sym_string] = STATE(463), + [sym_process_substitution] = STATE(463), + [sym_simple_expansion] = STATE(463), + [sym_string_expansion] = STATE(463), + [sym_concatenation] = STATE(465), + [sym_expansion] = STATE(463), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(2807), + [anon_sym_GT_LPAREN] = ACTIONS(2809), + [sym_number] = ACTIONS(3095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_word] = ACTIONS(3095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2809), + [sym_ansii_c_string] = ACTIONS(3091), + [sym__special_character] = ACTIONS(3097), }, - [1389] = { + [1396] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1408), - [sym_concatenation] = STATE(1408), + [aux_sym_expansion_repeat1] = STATE(1415), + [sym_concatenation] = STATE(1415), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3099), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3095), + [anon_sym_COLON_DASH] = ACTIONS(3099), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3099), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3099), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3097), + [anon_sym_POUND] = ACTIONS(3101), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3095), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(3099), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3095), - [sym_regex] = ACTIONS(3101), + [anon_sym_COLON] = ACTIONS(3099), + [sym_regex] = ACTIONS(3105), }, - [1390] = { + [1397] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1391] = { + [1398] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1408), - [sym_concatenation] = STATE(1408), + [aux_sym_expansion_repeat1] = STATE(1415), + [sym_concatenation] = STATE(1415), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3099), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3095), + [anon_sym_COLON_DASH] = ACTIONS(3099), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3099), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3099), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3097), + [anon_sym_POUND] = ACTIONS(3101), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3095), + [anon_sym_SLASH] = ACTIONS(3107), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(3099), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_COLON] = ACTIONS(3099), }, - [1392] = { + [1399] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1412), - [sym_concatenation] = STATE(1412), + [aux_sym_expansion_repeat1] = STATE(1419), + [sym_concatenation] = STATE(1419), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3109), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3105), + [anon_sym_COLON_DASH] = ACTIONS(3109), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3109), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3109), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3107), + [anon_sym_POUND] = ACTIONS(3111), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_EQ] = ACTIONS(3105), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3109), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_COLON] = ACTIONS(3109), }, - [1393] = { - [sym_command_substitution] = STATE(1413), - [aux_sym__literal_repeat1] = STATE(1414), - [sym_string] = STATE(1413), - [sym_process_substitution] = STATE(1413), - [sym_simple_expansion] = STATE(1413), - [sym_string_expansion] = STATE(1413), - [sym_concatenation] = STATE(1415), - [sym_expansion] = STATE(1413), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(3115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(3115), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3113), - [sym__special_character] = ACTIONS(947), + [1400] = { + [sym_command_substitution] = STATE(1420), + [aux_sym__literal_repeat1] = STATE(1421), + [sym_string] = STATE(1420), + [sym_process_substitution] = STATE(1420), + [sym_simple_expansion] = STATE(1420), + [sym_string_expansion] = STATE(1420), + [sym_concatenation] = STATE(1422), + [sym_expansion] = STATE(1420), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(3119), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(3119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(3117), + [sym__special_character] = ACTIONS(949), }, - [1394] = { + [1401] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1417), - [sym_concatenation] = STATE(1417), + [aux_sym_expansion_repeat1] = STATE(1424), + [sym_concatenation] = STATE(1424), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3121), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3117), + [anon_sym_COLON_DASH] = ACTIONS(3121), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3117), + [anon_sym_COLON_QMARK] = ACTIONS(3121), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3117), + [anon_sym_PERCENT] = ACTIONS(3121), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3119), + [anon_sym_POUND] = ACTIONS(3123), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_EQ] = ACTIONS(3121), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3117), - [sym_regex] = ACTIONS(3123), + [anon_sym_COLON] = ACTIONS(3121), + [sym_regex] = ACTIONS(3127), }, - [1395] = { + [1402] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1396] = { - [sym_compound_statement] = STATE(477), + [1403] = { + [sym_compound_statement] = STATE(478), [anon_sym_LBRACE] = ACTIONS(83), [sym_comment] = ACTIONS(41), }, - [1397] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_elif_clause] = STATE(1421), - [sym_else_clause] = STATE(1420), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_if_statement_repeat1] = STATE(1421), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(1422), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [1404] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_elif_clause] = STATE(1428), + [sym_else_clause] = STATE(1427), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_if_statement_repeat1] = STATE(1428), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(1429), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -47224,14 +47342,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unset] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_elif] = ACTIONS(979), + [anon_sym_elif] = ACTIONS(981), [sym_ansii_c_string] = ACTIONS(93), [anon_sym_while] = ACTIONS(105), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_local] = ACTIONS(65), [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_fi] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(977), + [anon_sym_fi] = ACTIONS(3129), + [anon_sym_else] = ACTIONS(979), [sym_number] = ACTIONS(75), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), [anon_sym_function] = ACTIONS(79), @@ -47249,12 +47367,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [1398] = { + [1405] = { [anon_sym_BANG_EQ] = ACTIONS(541), [anon_sym_PLUS_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(41), [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(3127), + [anon_sym_RPAREN] = ACTIONS(3131), [anon_sym_DASH] = ACTIONS(545), [anon_sym_GT] = ACTIONS(545), [anon_sym_EQ] = ACTIONS(545), @@ -47270,50 +47388,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(541), [anon_sym_DASH_EQ] = ACTIONS(541), }, - [1399] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(1425), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(1425), - [sym_expansion] = STATE(221), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_GT_LPAREN] = ACTIONS(1023), - [sym_number] = ACTIONS(1017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1015), - [sym__special_character] = ACTIONS(1029), - }, - [1400] = { - [aux_sym_concatenation_repeat1] = STATE(2432), - [anon_sym_RBRACK] = ACTIONS(3131), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(3133), + [1406] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(1432), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(1432), + [sym_expansion] = STATE(222), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(3133), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_number] = ACTIONS(1019), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [sym_ansii_c_string] = ACTIONS(1017), + [sym__special_character] = ACTIONS(1031), }, - [1401] = { - [aux_sym__literal_repeat1] = STATE(975), + [1407] = { + [aux_sym_concatenation_repeat1] = STATE(2444), [anon_sym_RBRACK] = ACTIONS(3135), [sym_comment] = ACTIONS(41), [sym__concat] = ACTIONS(3137), - [sym__special_character] = ACTIONS(1051), }, - [1402] = { - [anon_sym_RBRACK] = ACTIONS(3131), + [1408] = { + [aux_sym__literal_repeat1] = STATE(981), + [anon_sym_RBRACK] = ACTIONS(3139), [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(3139), + [sym__concat] = ACTIONS(3141), + [sym__special_character] = ACTIONS(1053), }, - [1403] = { + [1409] = { + [anon_sym_RBRACK] = ACTIONS(3135), + [sym_comment] = ACTIONS(41), + [sym__concat] = ACTIONS(3143), + }, + [1410] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -47322,53 +47440,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(3145), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1404] = { - [sym_do_group] = STATE(488), + [1411] = { + [sym_do_group] = STATE(489), [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3087), }, - [1405] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(1429), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [1412] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(1436), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_done] = ACTIONS(3143), + [anon_sym_done] = ACTIONS(3147), [anon_sym_GT_LPAREN] = ACTIONS(73), [sym_word] = ACTIONS(81), [anon_sym_LT_AMP] = ACTIONS(7), @@ -47406,344 +47524,344 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [1406] = { - [sym_command_substitution] = STATE(1430), - [sym_simple_expansion] = STATE(1430), - [sym_expansion] = STATE(1430), - [aux_sym_heredoc_body_repeat1] = STATE(1430), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), - [sym_comment] = ACTIONS(41), - [sym__heredoc_body_end] = ACTIONS(3145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), - [anon_sym_DOLLAR] = ACTIONS(1130), - [anon_sym_BQUOTE] = ACTIONS(1134), - [sym__heredoc_body_middle] = ACTIONS(3147), + [1413] = { + [sym_command_substitution] = STATE(1437), + [sym_simple_expansion] = STATE(1437), + [sym_expansion] = STATE(1437), + [aux_sym_heredoc_body_repeat1] = STATE(1437), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), + [sym_comment] = ACTIONS(41), + [sym__heredoc_body_end] = ACTIONS(3149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1142), + [anon_sym_DOLLAR] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(1138), + [sym__heredoc_body_middle] = ACTIONS(3151), }, - [1407] = { + [1414] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1431), - [sym_concatenation] = STATE(1431), + [aux_sym_expansion_repeat1] = STATE(1438), + [sym_concatenation] = STATE(1438), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3153), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3149), + [anon_sym_COLON_DASH] = ACTIONS(3153), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3149), + [anon_sym_COLON_QMARK] = ACTIONS(3153), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3149), + [anon_sym_PERCENT] = ACTIONS(3153), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3151), + [anon_sym_POUND] = ACTIONS(3155), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_EQ] = ACTIONS(3153), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3153), }, - [1408] = { + [1415] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1409] = { + [1416] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1431), - [sym_concatenation] = STATE(1431), + [aux_sym_expansion_repeat1] = STATE(1438), + [sym_concatenation] = STATE(1438), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3153), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3149), + [anon_sym_COLON_DASH] = ACTIONS(3153), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3149), + [anon_sym_COLON_QMARK] = ACTIONS(3153), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3149), + [anon_sym_PERCENT] = ACTIONS(3153), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3151), + [anon_sym_POUND] = ACTIONS(3155), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_EQ] = ACTIONS(3153), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3149), - [sym_regex] = ACTIONS(3155), + [anon_sym_COLON] = ACTIONS(3153), + [sym_regex] = ACTIONS(3159), }, - [1410] = { - [sym_command_substitution] = STATE(1433), - [aux_sym__literal_repeat1] = STATE(1434), - [sym_string] = STATE(1433), - [sym_process_substitution] = STATE(1433), - [sym_simple_expansion] = STATE(1433), - [sym_string_expansion] = STATE(1433), - [sym_concatenation] = STATE(1435), - [sym_expansion] = STATE(1433), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3157), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(3159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(3159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3157), - [sym__special_character] = ACTIONS(947), + [1417] = { + [sym_command_substitution] = STATE(1440), + [aux_sym__literal_repeat1] = STATE(1441), + [sym_string] = STATE(1440), + [sym_process_substitution] = STATE(1440), + [sym_simple_expansion] = STATE(1440), + [sym_string_expansion] = STATE(1440), + [sym_concatenation] = STATE(1442), + [sym_expansion] = STATE(1440), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(3163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(3163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(3161), + [sym__special_character] = ACTIONS(949), }, - [1411] = { + [1418] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1437), - [sym_concatenation] = STATE(1437), + [aux_sym_expansion_repeat1] = STATE(1444), + [sym_concatenation] = STATE(1444), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3165), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3161), + [anon_sym_COLON_DASH] = ACTIONS(3165), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3161), + [anon_sym_COLON_QMARK] = ACTIONS(3165), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3161), + [anon_sym_PERCENT] = ACTIONS(3165), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(3167), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3165), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3161), - [sym_regex] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3165), + [sym_regex] = ACTIONS(3171), }, - [1412] = { + [1419] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1413] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1420] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3153), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(3157), + [sym__concat] = ACTIONS(1298), }, - [1414] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3169), + [1421] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(3173), [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1300), }, - [1415] = { - [anon_sym_RBRACE] = ACTIONS(3153), + [1422] = { + [anon_sym_RBRACE] = ACTIONS(3157), [sym_comment] = ACTIONS(41), }, - [1416] = { + [1423] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1438), - [sym_concatenation] = STATE(1438), + [aux_sym_expansion_repeat1] = STATE(1445), + [sym_concatenation] = STATE(1445), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3175), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3171), + [anon_sym_COLON_DASH] = ACTIONS(3175), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3175), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3175), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3173), + [anon_sym_POUND] = ACTIONS(3177), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_EQ] = ACTIONS(3175), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_COLON] = ACTIONS(3175), }, - [1417] = { + [1424] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1418] = { - [sym_compound_statement] = STATE(497), + [1425] = { + [sym_compound_statement] = STATE(498), [anon_sym_LBRACE] = ACTIONS(83), [sym_comment] = ACTIONS(41), }, - [1419] = { + [1426] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym_SEMI_SEMI] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_LF] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_SEMI_SEMI] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), }, - [1420] = { + [1427] = { [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(3181), + [anon_sym_fi] = ACTIONS(3185), }, - [1421] = { - [aux_sym_if_statement_repeat1] = STATE(264), - [sym_elif_clause] = STATE(264), - [sym_else_clause] = STATE(1439), - [anon_sym_elif] = ACTIONS(1330), + [1428] = { + [aux_sym_if_statement_repeat1] = STATE(265), + [sym_elif_clause] = STATE(265), + [sym_else_clause] = STATE(1446), + [anon_sym_elif] = ACTIONS(1334), [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(3181), - [anon_sym_else] = ACTIONS(1332), + [anon_sym_fi] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(1336), }, - [1422] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_elif_clause] = STATE(1440), - [sym_else_clause] = STATE(1439), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_if_statement_repeat1] = STATE(1440), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(267), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [1429] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_elif_clause] = STATE(1447), + [sym_else_clause] = STATE(1446), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_if_statement_repeat1] = STATE(1447), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(268), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -47763,14 +47881,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unset] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_elif] = ACTIONS(979), + [anon_sym_elif] = ACTIONS(981), [sym_ansii_c_string] = ACTIONS(93), [anon_sym_while] = ACTIONS(105), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_local] = ACTIONS(65), [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_fi] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(977), + [anon_sym_fi] = ACTIONS(3187), + [anon_sym_else] = ACTIONS(979), [sym_number] = ACTIONS(75), [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), [anon_sym_function] = ACTIONS(79), @@ -47788,151 +47906,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [1423] = { - [aux_sym__literal_repeat1] = STATE(271), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(1442), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), - [sym_command_substitution] = STATE(269), - [sym_case_item] = STATE(2423), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(2423), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), + [1430] = { + [aux_sym__literal_repeat1] = STATE(272), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(1449), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_case_item] = STATE(2434), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(2434), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1344), [anon_sym_DOLLAR] = ACTIONS(239), [anon_sym_BQUOTE] = ACTIONS(243), [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1342), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(3185), + [anon_sym_esac] = ACTIONS(3189), [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [sym__special_character] = ACTIONS(255), }, - [1424] = { - [aux_sym__literal_repeat1] = STATE(271), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(1444), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), - [sym_command_substitution] = STATE(269), - [sym_case_item] = STATE(2424), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(2424), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), + [1431] = { + [aux_sym__literal_repeat1] = STATE(272), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(1451), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_case_item] = STATE(2435), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(2435), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1344), [anon_sym_DOLLAR] = ACTIONS(239), [anon_sym_BQUOTE] = ACTIONS(243), [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1342), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(3187), + [anon_sym_esac] = ACTIONS(3191), [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [sym__special_character] = ACTIONS(255), }, - [1425] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(280), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(280), - [sym_expansion] = STATE(221), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_GT_LPAREN] = ACTIONS(1023), - [sym_number] = ACTIONS(1017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1015), - [sym__special_character] = ACTIONS(1029), + [1432] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(281), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(281), + [sym_expansion] = STATE(222), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_number] = ACTIONS(1019), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [sym_ansii_c_string] = ACTIONS(1017), + [sym__special_character] = ACTIONS(1031), }, - [1426] = { - [sym_command_substitution] = STATE(818), - [sym_simple_expansion] = STATE(818), - [sym_string_expansion] = STATE(818), - [sym_string] = STATE(818), - [sym_process_substitution] = STATE(818), - [sym_expansion] = STATE(818), + [1433] = { + [sym_command_substitution] = STATE(819), + [sym_simple_expansion] = STATE(819), + [sym_string_expansion] = STATE(819), + [sym_string] = STATE(819), + [sym_process_substitution] = STATE(819), + [sym_expansion] = STATE(819), [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), [anon_sym_DQUOTE] = ACTIONS(301), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1382), - [sym_word] = ACTIONS(1384), + [sym_raw_string] = ACTIONS(1386), + [sym_word] = ACTIONS(1388), [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), [anon_sym_DOLLAR] = ACTIONS(289), [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(1382), + [sym_ansii_c_string] = ACTIONS(1386), [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_RBRACK] = ACTIONS(3191), + [anon_sym_RBRACK] = ACTIONS(3195), [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym__special_character] = ACTIONS(1384), - [sym_number] = ACTIONS(1384), + [sym__special_character] = ACTIONS(1388), + [sym_number] = ACTIONS(1388), }, - [1427] = { - [anon_sym_RBRACK] = ACTIONS(3193), + [1434] = { + [anon_sym_RBRACK] = ACTIONS(3197), [sym_comment] = ACTIONS(41), }, - [1428] = { - [anon_sym_RBRACK] = ACTIONS(3191), + [1435] = { + [anon_sym_RBRACK] = ACTIONS(3195), [sym_comment] = ACTIONS(41), }, - [1429] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_negated_command] = STATE(209), - [sym_test_command] = STATE(209), - [sym_variable_assignment] = STATE(210), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_redirected_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_compound_statement] = STATE(209), - [sym_subshell] = STATE(209), - [sym_declaration_command] = STATE(209), - [sym_unset_command] = STATE(209), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [aux_sym__statements2] = STATE(267), - [sym_c_style_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_case_statement] = STATE(209), - [sym_pipeline] = STATE(209), - [sym_list] = STATE(209), - [sym_command] = STATE(209), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [1436] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_negated_command] = STATE(210), + [sym_test_command] = STATE(210), + [sym_variable_assignment] = STATE(211), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_redirected_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_compound_statement] = STATE(210), + [sym_subshell] = STATE(210), + [sym_declaration_command] = STATE(210), + [sym_unset_command] = STATE(210), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [aux_sym__statements2] = STATE(268), + [sym_c_style_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_case_statement] = STATE(210), + [sym_pipeline] = STATE(210), + [sym_list] = STATE(210), + [sym_command] = STATE(210), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_done] = ACTIONS(3195), + [anon_sym_done] = ACTIONS(3199), [anon_sym_GT_LPAREN] = ACTIONS(73), [sym_word] = ACTIONS(81), [anon_sym_LT_AMP] = ACTIONS(7), @@ -47970,436 +48088,436 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [1430] = { - [sym_command_substitution] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [aux_sym_heredoc_body_repeat1] = STATE(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), - [sym_comment] = ACTIONS(41), - [sym__heredoc_body_end] = ACTIONS(3197), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1138), - [anon_sym_DOLLAR] = ACTIONS(1130), - [anon_sym_BQUOTE] = ACTIONS(1134), - [sym__heredoc_body_middle] = ACTIONS(1442), + [1437] = { + [sym_command_substitution] = STATE(293), + [sym_simple_expansion] = STATE(293), + [sym_expansion] = STATE(293), + [aux_sym_heredoc_body_repeat1] = STATE(293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), + [sym_comment] = ACTIONS(41), + [sym__heredoc_body_end] = ACTIONS(3201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1142), + [anon_sym_DOLLAR] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(1138), + [sym__heredoc_body_middle] = ACTIONS(1446), }, - [1431] = { + [1438] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3203), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1432] = { + [1439] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1447), - [sym_concatenation] = STATE(1447), + [aux_sym_expansion_repeat1] = STATE(1454), + [sym_concatenation] = STATE(1454), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3205), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3201), + [anon_sym_COLON_DASH] = ACTIONS(3205), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3201), + [anon_sym_COLON_QMARK] = ACTIONS(3205), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3201), + [anon_sym_PERCENT] = ACTIONS(3205), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3203), + [anon_sym_POUND] = ACTIONS(3207), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ] = ACTIONS(3201), + [anon_sym_RBRACE] = ACTIONS(3203), + [anon_sym_EQ] = ACTIONS(3205), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3201), + [anon_sym_COLON] = ACTIONS(3205), }, - [1433] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1440] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3199), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(3203), + [sym__concat] = ACTIONS(1298), }, - [1434] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3205), + [1441] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(3209), [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1300), }, - [1435] = { - [anon_sym_RBRACE] = ACTIONS(3199), + [1442] = { + [anon_sym_RBRACE] = ACTIONS(3203), [sym_comment] = ACTIONS(41), }, - [1436] = { + [1443] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1448), - [sym_concatenation] = STATE(1448), + [aux_sym_expansion_repeat1] = STATE(1455), + [sym_concatenation] = STATE(1455), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3211), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3207), + [anon_sym_COLON_DASH] = ACTIONS(3211), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3207), + [anon_sym_COLON_QMARK] = ACTIONS(3211), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3207), + [anon_sym_PERCENT] = ACTIONS(3211), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3209), + [anon_sym_POUND] = ACTIONS(3213), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_EQ] = ACTIONS(3207), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(3211), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3207), + [anon_sym_COLON] = ACTIONS(3211), }, - [1437] = { + [1444] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1438] = { + [1445] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1439] = { + [1446] = { [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(3215), + [anon_sym_fi] = ACTIONS(3219), }, - [1440] = { - [aux_sym_if_statement_repeat1] = STATE(264), - [sym_elif_clause] = STATE(264), - [sym_else_clause] = STATE(1449), - [anon_sym_elif] = ACTIONS(1330), + [1447] = { + [aux_sym_if_statement_repeat1] = STATE(265), + [sym_elif_clause] = STATE(265), + [sym_else_clause] = STATE(1456), + [anon_sym_elif] = ACTIONS(1334), [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(3215), - [anon_sym_else] = ACTIONS(1332), + [anon_sym_fi] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(1336), }, - [1441] = { - [aux_sym__literal_repeat1] = STATE(271), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(1450), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), - [sym_command_substitution] = STATE(269), - [sym_case_item] = STATE(2427), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(2427), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), + [1448] = { + [aux_sym__literal_repeat1] = STATE(272), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(1457), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_case_item] = STATE(2438), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(2438), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1344), [anon_sym_DOLLAR] = ACTIONS(239), [anon_sym_BQUOTE] = ACTIONS(243), [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1342), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(3217), + [anon_sym_esac] = ACTIONS(3221), [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [sym__special_character] = ACTIONS(255), }, - [1442] = { + [1449] = { [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3219), + [anon_sym_esac] = ACTIONS(3223), }, - [1443] = { - [aux_sym__literal_repeat1] = STATE(271), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(1451), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), - [sym_command_substitution] = STATE(269), - [sym_case_item] = STATE(2428), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(2428), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), + [1450] = { + [aux_sym__literal_repeat1] = STATE(272), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(1458), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_case_item] = STATE(2439), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(2439), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1344), [anon_sym_DOLLAR] = ACTIONS(239), [anon_sym_BQUOTE] = ACTIONS(243), [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1342), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(3221), + [anon_sym_esac] = ACTIONS(3225), [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [sym__special_character] = ACTIONS(255), }, - [1444] = { + [1451] = { [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3223), + [anon_sym_esac] = ACTIONS(3227), }, - [1445] = { - [sym_do_group] = STATE(520), - [sym_compound_statement] = STATE(520), + [1452] = { + [sym_do_group] = STATE(521), + [sym_compound_statement] = STATE(521), [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_do] = ACTIONS(3087), }, - [1446] = { - [sym_do_group] = STATE(521), + [1453] = { + [sym_do_group] = STATE(522), [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3087), }, - [1447] = { + [1454] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1448] = { + [1455] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1449] = { + [1456] = { [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(3231), + [anon_sym_fi] = ACTIONS(3235), }, - [1450] = { + [1457] = { [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3233), + [anon_sym_esac] = ACTIONS(3237), }, - [1451] = { + [1458] = { [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3235), + [anon_sym_esac] = ACTIONS(3239), }, - [1452] = { - [sym_do_group] = STATE(527), - [sym_compound_statement] = STATE(527), + [1459] = { + [sym_do_group] = STATE(528), + [sym_compound_statement] = STATE(528), [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3087), }, - [1453] = { - [sym_do_group] = STATE(527), - [sym_compound_statement] = STATE(527), + [1460] = { + [sym_do_group] = STATE(528), + [sym_compound_statement] = STATE(528), [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3087), }, - [1454] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3239), - }, - [1455] = { + [1461] = { [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3241), + [anon_sym_esac] = ACTIONS(3243), }, - [1456] = { - [sym_do_group] = STATE(530), - [sym_compound_statement] = STATE(530), + [1462] = { [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_esac] = ACTIONS(3245), }, - [1457] = { - [sym_do_group] = STATE(530), - [sym_compound_statement] = STATE(530), + [1463] = { + [sym_do_group] = STATE(531), + [sym_compound_statement] = STATE(531), [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3087), }, - [1458] = { + [1464] = { [sym_do_group] = STATE(531), [sym_compound_statement] = STATE(531), [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3087), }, - [1459] = { - [sym_do_group] = STATE(531), - [sym_compound_statement] = STATE(531), + [1465] = { + [sym_do_group] = STATE(532), + [sym_compound_statement] = STATE(532), [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_do] = ACTIONS(3087), }, - [1460] = { + [1466] = { [sym_do_group] = STATE(532), [sym_compound_statement] = STATE(532), [sym_comment] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_do] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3087), }, - [1461] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [sym_test_command] = STATE(410), - [aux_sym_command_repeat1] = STATE(1464), - [sym_subscript] = STATE(2455), - [sym_variable_assignment] = STATE(1464), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [sym_command] = STATE(410), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [sym_subshell] = STATE(410), - [sym_file_redirect] = STATE(1464), + [1467] = { + [sym_do_group] = STATE(533), + [sym_compound_statement] = STATE(533), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_do] = ACTIONS(3087), + }, + [1468] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [sym_test_command] = STATE(411), + [aux_sym_command_repeat1] = STATE(1471), + [sym_subscript] = STATE(2467), + [sym_variable_assignment] = STATE(1471), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [sym_command] = STATE(411), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), + [sym_subshell] = STATE(411), + [sym_file_redirect] = STATE(1471), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), @@ -48427,64 +48545,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(109), [sym__special_character] = ACTIONS(85), }, - [1462] = { - [sym_heredoc_redirect] = STATE(418), - [aux_sym_redirected_statement_repeat1] = STATE(418), - [sym_herestring_redirect] = STATE(418), - [sym_file_redirect] = STATE(418), - [anon_sym_PIPE_AMP] = ACTIONS(2266), - [anon_sym_SEMI_SEMI] = ACTIONS(2262), + [1469] = { + [sym_heredoc_redirect] = STATE(419), + [aux_sym_redirected_statement_repeat1] = STATE(419), + [sym_herestring_redirect] = STATE(419), + [sym_file_redirect] = STATE(419), + [anon_sym_PIPE_AMP] = ACTIONS(2270), + [anon_sym_SEMI_SEMI] = ACTIONS(2266), [anon_sym_AMP_GT_GT] = ACTIONS(493), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_LF] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2266), [sym_file_descriptor] = ACTIONS(499), [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2010), [anon_sym_GT] = ACTIONS(493), [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(2264), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), [anon_sym_LT_LT_LT] = ACTIONS(503), [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2270), [anon_sym_LT] = ACTIONS(493), [anon_sym_LT_AMP] = ACTIONS(493), [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(2264), + [anon_sym_AMP_AMP] = ACTIONS(2268), [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(2262), + [anon_sym_AMP] = ACTIONS(2266), }, - [1463] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(703), - [sym_function_definition] = STATE(703), - [sym_negated_command] = STATE(703), - [sym_test_command] = STATE(703), - [sym_variable_assignment] = STATE(704), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), + [1470] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(704), + [sym_function_definition] = STATE(704), + [sym_negated_command] = STATE(704), + [sym_test_command] = STATE(704), + [sym_variable_assignment] = STATE(705), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(703), - [sym_for_statement] = STATE(703), - [sym_compound_statement] = STATE(703), - [sym_subshell] = STATE(703), - [sym_declaration_command] = STATE(703), - [sym_unset_command] = STATE(703), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym_c_style_for_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_case_statement] = STATE(703), - [sym_pipeline] = STATE(703), - [sym_list] = STATE(703), - [sym_command] = STATE(703), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_redirected_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_compound_statement] = STATE(704), + [sym_subshell] = STATE(704), + [sym_declaration_command] = STATE(704), + [sym_unset_command] = STATE(704), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym_c_style_for_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_pipeline] = STATE(704), + [sym_list] = STATE(704), + [sym_command] = STATE(704), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -48526,19 +48644,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [1464] = { - [sym_command_substitution] = STATE(382), - [aux_sym__literal_repeat1] = STATE(386), - [sym_expansion] = STATE(382), - [sym_string] = STATE(382), - [sym_command_name] = STATE(571), - [sym_process_substitution] = STATE(382), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [sym_subscript] = STATE(2455), + [1471] = { + [sym_command_substitution] = STATE(383), + [aux_sym__literal_repeat1] = STATE(387), + [sym_expansion] = STATE(383), + [sym_string] = STATE(383), + [sym_command_name] = STATE(572), + [sym_process_substitution] = STATE(383), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), + [sym_subscript] = STATE(2467), [sym_variable_assignment] = STATE(103), [aux_sym_command_repeat1] = STATE(103), - [sym_concatenation] = STATE(389), + [sym_concatenation] = STATE(390), [sym_file_redirect] = STATE(103), [anon_sym_AMP_GT_GT] = ACTIONS(7), [sym_comment] = ACTIONS(41), @@ -48561,355 +48679,376 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), [anon_sym_LT_LPAREN] = ACTIONS(73), - [sym__special_character] = ACTIONS(2008), + [sym__special_character] = ACTIONS(2012), }, - [1465] = { - [sym_heredoc_body] = STATE(668), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(967), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), - [anon_sym_SEMI_SEMI] = ACTIONS(656), - }, - [1466] = { - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2129), - [anon_sym_LF] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_SEMI_SEMI] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3249), - }, - [1467] = { - [sym_heredoc_body] = STATE(681), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_AMP_GT_GT] = ACTIONS(654), - [anon_sym_local] = ACTIONS(652), - [anon_sym_typeset] = ACTIONS(652), - [anon_sym_unsetenv] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_number] = ACTIONS(652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_function] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_AMP] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_export] = ACTIONS(652), - [sym_word] = ACTIONS(652), - [sym__simple_heredoc_body] = ACTIONS(967), - [sym__special_character] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LPAREN_LPAREN] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_declare] = ACTIONS(652), - [sym_variable_name] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_AMP_GT] = ACTIONS(652), - [anon_sym_readonly] = ACTIONS(652), - [anon_sym_unset] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_GT_AMP] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_for] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(654), - [anon_sym_SEMI_SEMI] = ACTIONS(1142), + [1472] = { + [sym_heredoc_body] = STATE(669), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(969), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_SEMI_SEMI] = ACTIONS(658), }, - [1468] = { + [1473] = { [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2133), [anon_sym_LF] = ACTIONS(3251), [anon_sym_SEMI] = ACTIONS(3253), [anon_sym_SEMI_SEMI] = ACTIONS(3253), [anon_sym_AMP] = ACTIONS(3253), }, - [1469] = { - [sym_command_substitution] = STATE(818), - [sym_simple_expansion] = STATE(818), - [sym_string_expansion] = STATE(818), - [sym_string] = STATE(818), - [sym_process_substitution] = STATE(818), - [sym_expansion] = STATE(818), + [1474] = { + [sym_heredoc_body] = STATE(682), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_local] = ACTIONS(654), + [anon_sym_typeset] = ACTIONS(654), + [anon_sym_unsetenv] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_number] = ACTIONS(654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_function] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_export] = ACTIONS(654), + [sym_word] = ACTIONS(654), + [sym__simple_heredoc_body] = ACTIONS(969), + [sym__special_character] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LPAREN_LPAREN] = ACTIONS(656), + [sym_raw_string] = ACTIONS(656), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_declare] = ACTIONS(654), + [sym_variable_name] = ACTIONS(656), + [sym_file_descriptor] = ACTIONS(656), + [sym__heredoc_body_beginning] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_AMP_GT] = ACTIONS(654), + [anon_sym_readonly] = ACTIONS(654), + [anon_sym_unset] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_for] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(654), + [sym_ansii_c_string] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), + }, + [1475] = { + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2200), + [anon_sym_LF] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_SEMI_SEMI] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + }, + [1476] = { + [sym_command_substitution] = STATE(745), + [sym_simple_expansion] = STATE(745), + [sym_string_expansion] = STATE(745), + [sym_string] = STATE(745), + [sym_process_substitution] = STATE(745), + [sym_expansion] = STATE(745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2563), + [sym_word] = ACTIONS(2565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_DOLLAR] = ACTIONS(3259), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [sym_ansii_c_string] = ACTIONS(2563), + [anon_sym_BQUOTE] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym__special_character] = ACTIONS(2563), + [sym_number] = ACTIONS(2565), + }, + [1477] = { + [sym_command_substitution] = STATE(819), + [sym_simple_expansion] = STATE(819), + [sym_string_expansion] = STATE(819), + [sym_string] = STATE(819), + [sym_process_substitution] = STATE(819), + [sym_expansion] = STATE(819), [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), [anon_sym_DQUOTE] = ACTIONS(301), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1382), - [sym_word] = ACTIONS(1384), + [sym_raw_string] = ACTIONS(1386), + [sym_word] = ACTIONS(1388), [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(3255), + [anon_sym_DOLLAR] = ACTIONS(3261), [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(1382), + [sym_ansii_c_string] = ACTIONS(1386), [anon_sym_BQUOTE] = ACTIONS(293), [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym__special_character] = ACTIONS(1382), - [sym_number] = ACTIONS(1384), + [sym__special_character] = ACTIONS(1386), + [sym_number] = ACTIONS(1388), }, - [1470] = { - [sym_command_substitution] = STATE(1074), - [sym_simple_expansion] = STATE(1074), - [sym_string_expansion] = STATE(1074), - [sym_string] = STATE(1074), - [sym_process_substitution] = STATE(1074), - [sym_expansion] = STATE(1074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2799), - [sym_word] = ACTIONS(2807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), - [anon_sym_DOLLAR] = ACTIONS(3257), - [anon_sym_LT_LPAREN] = ACTIONS(2805), - [sym_ansii_c_string] = ACTIONS(2799), - [anon_sym_BQUOTE] = ACTIONS(2803), - [anon_sym_GT_LPAREN] = ACTIONS(2805), - [sym__special_character] = ACTIONS(2799), - [sym_number] = ACTIONS(2807), + [1478] = { + [sym_command_substitution] = STATE(1080), + [sym_simple_expansion] = STATE(1080), + [sym_string_expansion] = STATE(1080), + [sym_string] = STATE(1080), + [sym_process_substitution] = STATE(1080), + [sym_expansion] = STATE(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2803), + [sym_word] = ACTIONS(2811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(3263), + [anon_sym_LT_LPAREN] = ACTIONS(2809), + [sym_ansii_c_string] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2807), + [anon_sym_GT_LPAREN] = ACTIONS(2809), + [sym__special_character] = ACTIONS(2803), + [sym_number] = ACTIONS(2811), }, - [1471] = { - [sym_command_substitution] = STATE(546), - [aux_sym__literal_repeat1] = STATE(547), - [sym_string] = STATE(546), - [sym_process_substitution] = STATE(546), - [sym_simple_expansion] = STATE(546), - [sym_string_expansion] = STATE(546), - [sym_concatenation] = STATE(548), - [sym_expansion] = STATE(546), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3259), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_BQUOTE] = ACTIONS(2803), - [anon_sym_GT_LPAREN] = ACTIONS(2805), - [sym_number] = ACTIONS(3261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_word] = ACTIONS(3261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), - [anon_sym_LT_LPAREN] = ACTIONS(2805), - [sym_ansii_c_string] = ACTIONS(3259), - [sym__special_character] = ACTIONS(3093), + [1479] = { + [sym_command_substitution] = STATE(547), + [aux_sym__literal_repeat1] = STATE(548), + [sym_string] = STATE(547), + [sym_process_substitution] = STATE(547), + [sym_simple_expansion] = STATE(547), + [sym_string_expansion] = STATE(547), + [sym_concatenation] = STATE(549), + [sym_expansion] = STATE(547), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3265), + [anon_sym_DOLLAR] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(2807), + [anon_sym_GT_LPAREN] = ACTIONS(2809), + [sym_number] = ACTIONS(3267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_word] = ACTIONS(3267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2809), + [sym_ansii_c_string] = ACTIONS(3265), + [sym__special_character] = ACTIONS(3097), }, - [1472] = { - [sym_string] = STATE(557), - [anon_sym__] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2420), - [sym_raw_string] = ACTIONS(2422), - [anon_sym_BANG] = ACTIONS(2420), - [anon_sym_DOLLAR] = ACTIONS(2420), - [anon_sym_AT] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(2420), + [1480] = { + [sym_string] = STATE(558), + [anon_sym__] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2424), + [sym_raw_string] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2424), + [anon_sym_DOLLAR] = ACTIONS(2424), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(2424), [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_0] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(3263), - [aux_sym__simple_variable_name_token1] = ACTIONS(2416), - [anon_sym_QMARK] = ACTIONS(3263), + [anon_sym_0] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(3269), + [aux_sym__simple_variable_name_token1] = ACTIONS(2420), + [anon_sym_QMARK] = ACTIONS(3269), }, - [1473] = { + [1481] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1482), + [aux_sym_string_repeat1] = STATE(1490), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3271), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3273), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1474] = { + [1482] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3269), + [anon_sym_BQUOTE] = ACTIONS(3275), }, - [1475] = { - [anon_sym_RPAREN] = ACTIONS(3271), + [1483] = { + [anon_sym_RPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(41), }, - [1476] = { - [sym_command_substitution] = STATE(580), - [sym_string] = STATE(580), - [sym_process_substitution] = STATE(580), - [sym_simple_expansion] = STATE(580), - [sym_string_expansion] = STATE(580), - [sym_expansion] = STATE(580), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2374), + [1484] = { + [sym_command_substitution] = STATE(581), + [sym_string] = STATE(581), + [sym_process_substitution] = STATE(581), + [sym_simple_expansion] = STATE(581), + [sym_string_expansion] = STATE(581), + [sym_expansion] = STATE(581), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2378), [anon_sym_DOLLAR] = ACTIONS(113), [anon_sym_BQUOTE] = ACTIONS(115), [anon_sym_GT_LPAREN] = ACTIONS(117), - [sym_number] = ACTIONS(2378), + [sym_number] = ACTIONS(2382), [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_word] = ACTIONS(2378), + [sym_word] = ACTIONS(2382), [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), [anon_sym_LT_LPAREN] = ACTIONS(117), - [sym_ansii_c_string] = ACTIONS(2374), - [sym__special_character] = ACTIONS(2374), + [sym_ansii_c_string] = ACTIONS(2378), + [sym__special_character] = ACTIONS(2378), }, - [1477] = { + [1485] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1486), - [sym_concatenation] = STATE(1486), + [aux_sym_expansion_repeat1] = STATE(1494), + [sym_concatenation] = STATE(1494), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3279), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3273), + [anon_sym_COLON_DASH] = ACTIONS(3279), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3273), + [anon_sym_COLON_QMARK] = ACTIONS(3279), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3273), + [anon_sym_PERCENT] = ACTIONS(3279), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3275), + [anon_sym_POUND] = ACTIONS(3281), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3273), + [anon_sym_COLON] = ACTIONS(3279), }, - [1478] = { + [1486] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1491), - [sym_concatenation] = STATE(1491), + [aux_sym_expansion_repeat1] = STATE(1499), + [sym_concatenation] = STATE(1499), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3287), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3281), + [anon_sym_COLON_DASH] = ACTIONS(3287), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3287), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3287), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3283), + [anon_sym_POUND] = ACTIONS(3289), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_EQ] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(3287), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(3287), }, - [1479] = { - [sym_command_substitution] = STATE(590), - [aux_sym__literal_repeat1] = STATE(591), - [sym_string] = STATE(590), - [sym_array] = STATE(589), - [sym_process_substitution] = STATE(590), - [sym_simple_expansion] = STATE(590), - [sym_string_expansion] = STATE(590), - [sym_concatenation] = STATE(589), - [sym_expansion] = STATE(590), - [anon_sym_LPAREN] = ACTIONS(3289), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3291), + [1487] = { + [sym_command_substitution] = STATE(591), + [aux_sym__literal_repeat1] = STATE(592), + [sym_string] = STATE(591), + [sym_array] = STATE(590), + [sym_process_substitution] = STATE(591), + [sym_simple_expansion] = STATE(591), + [sym_string_expansion] = STATE(591), + [sym_concatenation] = STATE(590), + [sym_expansion] = STATE(591), + [anon_sym_LPAREN] = ACTIONS(3295), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3297), [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BQUOTE] = ACTIONS(2509), - [anon_sym_GT_LPAREN] = ACTIONS(2507), - [sym_number] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_word] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2503), - [anon_sym_LT_LPAREN] = ACTIONS(2507), - [sym_ansii_c_string] = ACTIONS(3291), - [sym__special_character] = ACTIONS(3295), - [sym__empty_value] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(2513), + [anon_sym_GT_LPAREN] = ACTIONS(2511), + [sym_number] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_word] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2507), + [anon_sym_LT_LPAREN] = ACTIONS(2511), + [sym_ansii_c_string] = ACTIONS(3297), + [sym__special_character] = ACTIONS(3301), + [sym__empty_value] = ACTIONS(3303), }, - [1480] = { - [sym_command_substitution] = STATE(592), - [aux_sym__literal_repeat1] = STATE(593), - [sym_string] = STATE(592), - [sym_process_substitution] = STATE(592), - [sym_simple_expansion] = STATE(592), - [sym_string_expansion] = STATE(592), - [sym_concatenation] = STATE(594), - [sym_expansion] = STATE(592), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_BQUOTE] = ACTIONS(2803), - [anon_sym_GT_LPAREN] = ACTIONS(2805), - [sym_number] = ACTIONS(3301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_word] = ACTIONS(3301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), - [anon_sym_LT_LPAREN] = ACTIONS(2805), - [sym_ansii_c_string] = ACTIONS(3299), - [sym__special_character] = ACTIONS(3093), + [1488] = { + [sym_command_substitution] = STATE(593), + [aux_sym__literal_repeat1] = STATE(594), + [sym_string] = STATE(593), + [sym_process_substitution] = STATE(593), + [sym_simple_expansion] = STATE(593), + [sym_string_expansion] = STATE(593), + [sym_concatenation] = STATE(595), + [sym_expansion] = STATE(593), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3305), + [anon_sym_DOLLAR] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(2807), + [anon_sym_GT_LPAREN] = ACTIONS(2809), + [sym_number] = ACTIONS(3307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_word] = ACTIONS(3307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2809), + [sym_ansii_c_string] = ACTIONS(3305), + [sym__special_character] = ACTIONS(3097), }, - [1481] = { + [1489] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -48918,26 +49057,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3309), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1482] = { + [1490] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3309), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3305), + [anon_sym_DOLLAR] = ACTIONS(3311), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1483] = { + [1491] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_BQUOTE] = ACTIONS(333), @@ -48953,7 +49092,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(333), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3307), + [anon_sym_RPAREN] = ACTIONS(3313), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(333), @@ -48962,236 +49101,236 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym_ansii_c_string] = ACTIONS(333), }, - [1484] = { - [anon_sym_RPAREN] = ACTIONS(3307), + [1492] = { + [anon_sym_RPAREN] = ACTIONS(3313), [sym_comment] = ACTIONS(41), }, - [1485] = { + [1493] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1496), - [sym_concatenation] = STATE(1496), + [aux_sym_expansion_repeat1] = STATE(1504), + [sym_concatenation] = STATE(1504), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3315), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3309), + [anon_sym_COLON_DASH] = ACTIONS(3315), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3309), + [anon_sym_COLON_QMARK] = ACTIONS(3315), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3315), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3311), + [anon_sym_POUND] = ACTIONS(3317), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_EQ] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_EQ] = ACTIONS(3315), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3309), - [sym_regex] = ACTIONS(3315), + [anon_sym_COLON] = ACTIONS(3315), + [sym_regex] = ACTIONS(3321), }, - [1486] = { + [1494] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1487] = { + [1495] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1496), - [sym_concatenation] = STATE(1496), + [aux_sym_expansion_repeat1] = STATE(1504), + [sym_concatenation] = STATE(1504), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3315), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3309), + [anon_sym_COLON_DASH] = ACTIONS(3315), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3309), + [anon_sym_COLON_QMARK] = ACTIONS(3315), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3315), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3311), + [anon_sym_POUND] = ACTIONS(3317), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_EQ] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_EQ] = ACTIONS(3315), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3309), + [anon_sym_COLON] = ACTIONS(3315), }, - [1488] = { + [1496] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1500), - [sym_concatenation] = STATE(1500), + [aux_sym_expansion_repeat1] = STATE(1508), + [sym_concatenation] = STATE(1508), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3325), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3319), + [anon_sym_COLON_DASH] = ACTIONS(3325), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3319), + [anon_sym_COLON_QMARK] = ACTIONS(3325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3325), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3321), + [anon_sym_POUND] = ACTIONS(3327), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_EQ] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_EQ] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3319), + [anon_sym_COLON] = ACTIONS(3325), }, - [1489] = { - [sym_command_substitution] = STATE(1501), - [aux_sym__literal_repeat1] = STATE(1502), - [sym_string] = STATE(1501), - [sym_process_substitution] = STATE(1501), - [sym_simple_expansion] = STATE(1501), - [sym_string_expansion] = STATE(1501), - [sym_concatenation] = STATE(1503), - [sym_expansion] = STATE(1501), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(3329), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(3329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3327), - [sym__special_character] = ACTIONS(947), + [1497] = { + [sym_command_substitution] = STATE(1509), + [aux_sym__literal_repeat1] = STATE(1510), + [sym_string] = STATE(1509), + [sym_process_substitution] = STATE(1509), + [sym_simple_expansion] = STATE(1509), + [sym_string_expansion] = STATE(1509), + [sym_concatenation] = STATE(1511), + [sym_expansion] = STATE(1509), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(3335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(3335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(3333), + [sym__special_character] = ACTIONS(949), }, - [1490] = { + [1498] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1505), - [sym_concatenation] = STATE(1505), + [aux_sym_expansion_repeat1] = STATE(1513), + [sym_concatenation] = STATE(1513), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3337), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3331), + [anon_sym_COLON_DASH] = ACTIONS(3337), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3331), + [anon_sym_COLON_QMARK] = ACTIONS(3337), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3331), + [anon_sym_PERCENT] = ACTIONS(3337), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3333), + [anon_sym_POUND] = ACTIONS(3339), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_EQ] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_EQ] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3331), - [sym_regex] = ACTIONS(3337), + [anon_sym_COLON] = ACTIONS(3337), + [sym_regex] = ACTIONS(3343), }, - [1491] = { + [1499] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1492] = { + [1500] = { [anon_sym_BANG_EQ] = ACTIONS(541), [anon_sym_PLUS_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(41), [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(3339), + [anon_sym_RPAREN] = ACTIONS(3345), [anon_sym_DASH] = ACTIONS(545), [anon_sym_GT] = ACTIONS(545), [anon_sym_EQ] = ACTIONS(545), @@ -49207,32 +49346,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(541), [anon_sym_DASH_EQ] = ACTIONS(541), }, - [1493] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(1506), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(1506), - [sym_expansion] = STATE(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [sym_ansii_c_string] = ACTIONS(1015), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(3341), - [sym__special_character] = ACTIONS(1029), - [sym_number] = ACTIONS(1017), - [anon_sym_GT_LPAREN] = ACTIONS(1023), + [1501] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(1514), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(1514), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(3347), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), }, - [1494] = { + [1502] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -49241,696 +49380,696 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3349), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1495] = { + [1503] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1507), - [sym_concatenation] = STATE(1507), + [aux_sym_expansion_repeat1] = STATE(1515), + [sym_concatenation] = STATE(1515), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3351), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3345), + [anon_sym_COLON_DASH] = ACTIONS(3351), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3345), + [anon_sym_COLON_QMARK] = ACTIONS(3351), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3345), + [anon_sym_PERCENT] = ACTIONS(3351), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3347), + [anon_sym_POUND] = ACTIONS(3353), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_EQ] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3351), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3345), + [anon_sym_COLON] = ACTIONS(3351), }, - [1496] = { + [1504] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1497] = { + [1505] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1507), - [sym_concatenation] = STATE(1507), + [aux_sym_expansion_repeat1] = STATE(1515), + [sym_concatenation] = STATE(1515), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3351), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3345), + [anon_sym_COLON_DASH] = ACTIONS(3351), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3345), + [anon_sym_COLON_QMARK] = ACTIONS(3351), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3345), + [anon_sym_PERCENT] = ACTIONS(3351), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3347), + [anon_sym_POUND] = ACTIONS(3353), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_EQ] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3351), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3345), - [sym_regex] = ACTIONS(3351), + [anon_sym_COLON] = ACTIONS(3351), + [sym_regex] = ACTIONS(3357), }, - [1498] = { - [sym_command_substitution] = STATE(1509), - [aux_sym__literal_repeat1] = STATE(1510), - [sym_string] = STATE(1509), - [sym_process_substitution] = STATE(1509), - [sym_simple_expansion] = STATE(1509), - [sym_string_expansion] = STATE(1509), - [sym_concatenation] = STATE(1511), - [sym_expansion] = STATE(1509), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3353), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(3355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(3355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3353), - [sym__special_character] = ACTIONS(947), + [1506] = { + [sym_command_substitution] = STATE(1517), + [aux_sym__literal_repeat1] = STATE(1518), + [sym_string] = STATE(1517), + [sym_process_substitution] = STATE(1517), + [sym_simple_expansion] = STATE(1517), + [sym_string_expansion] = STATE(1517), + [sym_concatenation] = STATE(1519), + [sym_expansion] = STATE(1517), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(3361), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(3361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(3359), + [sym__special_character] = ACTIONS(949), }, - [1499] = { + [1507] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1513), - [sym_concatenation] = STATE(1513), + [aux_sym_expansion_repeat1] = STATE(1521), + [sym_concatenation] = STATE(1521), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3363), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3357), + [anon_sym_COLON_DASH] = ACTIONS(3363), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3357), + [anon_sym_COLON_QMARK] = ACTIONS(3363), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3363), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3365), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_EQ] = ACTIONS(3363), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3357), - [sym_regex] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3363), + [sym_regex] = ACTIONS(3369), }, - [1500] = { + [1508] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1501] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1509] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3349), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(3355), + [sym__concat] = ACTIONS(1298), }, - [1502] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3365), + [1510] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(3371), [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1300), }, - [1503] = { - [anon_sym_RBRACE] = ACTIONS(3349), + [1511] = { + [anon_sym_RBRACE] = ACTIONS(3355), [sym_comment] = ACTIONS(41), }, - [1504] = { + [1512] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1514), - [sym_concatenation] = STATE(1514), + [aux_sym_expansion_repeat1] = STATE(1522), + [sym_concatenation] = STATE(1522), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3373), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3367), + [anon_sym_COLON_DASH] = ACTIONS(3373), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3367), + [anon_sym_COLON_QMARK] = ACTIONS(3373), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3367), + [anon_sym_PERCENT] = ACTIONS(3373), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3369), + [anon_sym_POUND] = ACTIONS(3375), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_EQ] = ACTIONS(3373), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3367), + [anon_sym_COLON] = ACTIONS(3373), }, - [1505] = { + [1513] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1506] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(280), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(280), - [sym_expansion] = STATE(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [sym_ansii_c_string] = ACTIONS(1015), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(3373), - [sym__special_character] = ACTIONS(1029), - [sym_number] = ACTIONS(1017), - [anon_sym_GT_LPAREN] = ACTIONS(1023), + [1514] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(281), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(281), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(3379), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), }, - [1507] = { + [1515] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1508] = { + [1516] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1515), - [sym_concatenation] = STATE(1515), + [aux_sym_expansion_repeat1] = STATE(1523), + [sym_concatenation] = STATE(1523), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3383), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3377), + [anon_sym_COLON_DASH] = ACTIONS(3383), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3377), + [anon_sym_COLON_QMARK] = ACTIONS(3383), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3377), + [anon_sym_PERCENT] = ACTIONS(3383), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3379), + [anon_sym_POUND] = ACTIONS(3385), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_EQ] = ACTIONS(3383), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3377), + [anon_sym_COLON] = ACTIONS(3383), }, - [1509] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1517] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3375), - [sym__concat] = ACTIONS(1294), - }, - [1510] = { - [aux_sym__literal_repeat1] = STATE(1135), [anon_sym_RBRACE] = ACTIONS(3381), + [sym__concat] = ACTIONS(1298), + }, + [1518] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(3387), [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1300), }, - [1511] = { - [anon_sym_RBRACE] = ACTIONS(3375), + [1519] = { + [anon_sym_RBRACE] = ACTIONS(3381), [sym_comment] = ACTIONS(41), }, - [1512] = { + [1520] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1516), - [sym_concatenation] = STATE(1516), + [aux_sym_expansion_repeat1] = STATE(1524), + [sym_concatenation] = STATE(1524), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3389), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3383), + [anon_sym_COLON_DASH] = ACTIONS(3389), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3383), + [anon_sym_COLON_QMARK] = ACTIONS(3389), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3383), + [anon_sym_PERCENT] = ACTIONS(3389), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3385), + [anon_sym_POUND] = ACTIONS(3391), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_EQ] = ACTIONS(3389), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3383), + [anon_sym_COLON] = ACTIONS(3389), }, - [1513] = { + [1521] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1514] = { + [1522] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1515] = { + [1523] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1516] = { + [1524] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1517] = { - [sym_string] = STATE(642), - [anon_sym__] = ACTIONS(2514), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3397), - [anon_sym_0] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(3395), - [aux_sym__simple_variable_name_token1] = ACTIONS(2514), - [anon_sym_DOLLAR] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3395), - [sym_raw_string] = ACTIONS(3399), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3397), + [1525] = { + [sym_string] = STATE(643), + [anon_sym__] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(3401), + [anon_sym_STAR] = ACTIONS(3403), + [anon_sym_0] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(3401), + [aux_sym__simple_variable_name_token1] = ACTIONS(2518), + [anon_sym_DOLLAR] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3401), + [sym_raw_string] = ACTIONS(3405), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3403), }, - [1518] = { + [1526] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1526), + [aux_sym_string_repeat1] = STATE(1534), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(3401), + [anon_sym_DOLLAR] = ACTIONS(3407), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3409), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [1519] = { + [1527] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3411), }, - [1520] = { - [anon_sym_RPAREN] = ACTIONS(3407), + [1528] = { + [anon_sym_RPAREN] = ACTIONS(3413), [sym_comment] = ACTIONS(41), }, - [1521] = { - [sym_command_substitution] = STATE(657), - [sym_simple_expansion] = STATE(657), - [sym_string_expansion] = STATE(657), - [sym_string] = STATE(657), - [sym_process_substitution] = STATE(657), - [sym_expansion] = STATE(657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2499), - [sym_word] = ACTIONS(2501), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2503), + [1529] = { + [sym_command_substitution] = STATE(658), + [sym_simple_expansion] = STATE(658), + [sym_string_expansion] = STATE(658), + [sym_string] = STATE(658), + [sym_process_substitution] = STATE(658), + [sym_expansion] = STATE(658), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2503), + [sym_word] = ACTIONS(2505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2507), [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_LT_LPAREN] = ACTIONS(2507), - [sym_ansii_c_string] = ACTIONS(2499), - [anon_sym_BQUOTE] = ACTIONS(2509), - [anon_sym_GT_LPAREN] = ACTIONS(2507), - [sym__special_character] = ACTIONS(2499), - [sym_number] = ACTIONS(2501), + [anon_sym_LT_LPAREN] = ACTIONS(2511), + [sym_ansii_c_string] = ACTIONS(2503), + [anon_sym_BQUOTE] = ACTIONS(2513), + [anon_sym_GT_LPAREN] = ACTIONS(2511), + [sym__special_character] = ACTIONS(2503), + [sym_number] = ACTIONS(2505), }, - [1522] = { + [1530] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1530), - [sym_concatenation] = STATE(1530), + [aux_sym_expansion_repeat1] = STATE(1538), + [sym_concatenation] = STATE(1538), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3409), + [anon_sym_PERCENT] = ACTIONS(3415), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(3417), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_SLASH] = ACTIONS(3419), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3415), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_COLON_DASH] = ACTIONS(3415), + [anon_sym_EQ] = ACTIONS(3415), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3409), + [anon_sym_COLON_QMARK] = ACTIONS(3415), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3421), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3409), + [anon_sym_COLON] = ACTIONS(3415), [sym__special_character] = ACTIONS(459), }, - [1523] = { + [1531] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1535), - [sym_concatenation] = STATE(1535), + [aux_sym_expansion_repeat1] = STATE(1543), + [sym_concatenation] = STATE(1543), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3423), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3419), + [anon_sym_POUND] = ACTIONS(3425), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_SLASH] = ACTIONS(3427), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3423), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_COLON_DASH] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3423), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3423), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3429), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_COLON] = ACTIONS(3423), [sym__special_character] = ACTIONS(459), }, - [1524] = { - [sym_command_substitution] = STATE(663), - [aux_sym__literal_repeat1] = STATE(664), - [sym_string] = STATE(663), - [sym_array] = STATE(662), - [sym_process_substitution] = STATE(663), - [sym_simple_expansion] = STATE(663), - [sym_string_expansion] = STATE(663), - [sym_concatenation] = STATE(662), - [sym_expansion] = STATE(663), - [anon_sym_LPAREN] = ACTIONS(3425), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3427), + [1532] = { + [sym_command_substitution] = STATE(664), + [aux_sym__literal_repeat1] = STATE(665), + [sym_string] = STATE(664), + [sym_array] = STATE(663), + [sym_process_substitution] = STATE(664), + [sym_simple_expansion] = STATE(664), + [sym_string_expansion] = STATE(664), + [sym_concatenation] = STATE(663), + [sym_expansion] = STATE(664), + [anon_sym_LPAREN] = ACTIONS(3431), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3433), [anon_sym_DOLLAR] = ACTIONS(113), [anon_sym_BQUOTE] = ACTIONS(115), [anon_sym_GT_LPAREN] = ACTIONS(117), - [sym_number] = ACTIONS(3429), + [sym_number] = ACTIONS(3435), [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_word] = ACTIONS(3429), + [sym_word] = ACTIONS(3435), [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), [anon_sym_LT_LPAREN] = ACTIONS(117), - [sym_ansii_c_string] = ACTIONS(3427), + [sym_ansii_c_string] = ACTIONS(3433), [sym__special_character] = ACTIONS(127), - [sym__empty_value] = ACTIONS(3431), + [sym__empty_value] = ACTIONS(3437), }, - [1525] = { + [1533] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3439), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -49943,20 +50082,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [1526] = { + [1534] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(3435), + [anon_sym_DOLLAR] = ACTIONS(3441), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3439), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [1527] = { + [1535] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -49969,7 +50108,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3437), + [anon_sym_RPAREN] = ACTIONS(3443), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -49981,258 +50120,258 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [1528] = { - [anon_sym_RPAREN] = ACTIONS(3437), + [1536] = { + [anon_sym_RPAREN] = ACTIONS(3443), [sym_comment] = ACTIONS(41), }, - [1529] = { + [1537] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1539), - [sym_concatenation] = STATE(1539), + [aux_sym_expansion_repeat1] = STATE(1547), + [sym_concatenation] = STATE(1547), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3439), + [anon_sym_PERCENT] = ACTIONS(3445), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3441), + [anon_sym_POUND] = ACTIONS(3447), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_COLON_DASH] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3445), + [anon_sym_COLON_DASH] = ACTIONS(3445), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_EQ] = ACTIONS(3445), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3439), + [anon_sym_COLON_QMARK] = ACTIONS(3445), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_COLON] = ACTIONS(3445), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3445), + [sym_regex] = ACTIONS(3451), }, - [1530] = { + [1538] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1531] = { + [1539] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1539), - [sym_concatenation] = STATE(1539), + [aux_sym_expansion_repeat1] = STATE(1547), + [sym_concatenation] = STATE(1547), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3439), + [anon_sym_PERCENT] = ACTIONS(3445), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3441), + [anon_sym_POUND] = ACTIONS(3447), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_SLASH] = ACTIONS(3453), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3445), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_COLON_DASH] = ACTIONS(3445), + [anon_sym_EQ] = ACTIONS(3445), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3439), + [anon_sym_COLON_QMARK] = ACTIONS(3445), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3443), + [anon_sym_RBRACE] = ACTIONS(3449), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_COLON] = ACTIONS(3445), [sym__special_character] = ACTIONS(459), }, - [1532] = { + [1540] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1543), - [sym_concatenation] = STATE(1543), + [aux_sym_expansion_repeat1] = STATE(1551), + [sym_concatenation] = STATE(1551), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3449), + [anon_sym_PERCENT] = ACTIONS(3455), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3451), + [anon_sym_POUND] = ACTIONS(3457), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3453), + [anon_sym_SLASH] = ACTIONS(3459), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3455), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3449), - [anon_sym_EQ] = ACTIONS(3449), + [anon_sym_COLON_DASH] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3455), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3449), + [anon_sym_COLON_QMARK] = ACTIONS(3455), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3455), + [anon_sym_RBRACE] = ACTIONS(3461), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3449), + [anon_sym_COLON] = ACTIONS(3455), [sym__special_character] = ACTIONS(459), }, - [1533] = { - [sym_command_substitution] = STATE(1544), - [aux_sym__literal_repeat1] = STATE(1545), - [sym_string] = STATE(1544), - [sym_process_substitution] = STATE(1544), - [sym_simple_expansion] = STATE(1544), - [sym_string_expansion] = STATE(1544), - [sym_concatenation] = STATE(1546), - [sym_expansion] = STATE(1544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3457), - [sym_word] = ACTIONS(3459), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(3457), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(3443), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(3459), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1541] = { + [sym_command_substitution] = STATE(1552), + [aux_sym__literal_repeat1] = STATE(1553), + [sym_string] = STATE(1552), + [sym_process_substitution] = STATE(1552), + [sym_simple_expansion] = STATE(1552), + [sym_string_expansion] = STATE(1552), + [sym_concatenation] = STATE(1554), + [sym_expansion] = STATE(1552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3463), + [sym_word] = ACTIONS(3465), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3463), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(3449), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(3465), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1534] = { + [1542] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1548), - [sym_concatenation] = STATE(1548), + [aux_sym_expansion_repeat1] = STATE(1556), + [sym_concatenation] = STATE(1556), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3461), + [anon_sym_PERCENT] = ACTIONS(3467), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3463), + [anon_sym_POUND] = ACTIONS(3469), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_COLON_DASH] = ACTIONS(3461), + [anon_sym_RBRACE] = ACTIONS(3471), + [anon_sym_DASH] = ACTIONS(3467), + [anon_sym_COLON_DASH] = ACTIONS(3467), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3467), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3461), + [anon_sym_COLON_QMARK] = ACTIONS(3467), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3461), + [anon_sym_COLON] = ACTIONS(3467), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3467), + [sym_regex] = ACTIONS(3473), }, - [1535] = { + [1543] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3471), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1536] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(1549), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(1549), - [sym_expansion] = STATE(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [sym_ansii_c_string] = ACTIONS(1015), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(3469), - [sym__special_character] = ACTIONS(1029), - [sym_number] = ACTIONS(1017), - [anon_sym_GT_LPAREN] = ACTIONS(1023), + [1544] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(1557), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(1557), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(3475), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), }, - [1537] = { + [1545] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(3471), + [anon_sym_DQUOTE] = ACTIONS(3477), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -50245,208 +50384,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [1538] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1550), - [sym_concatenation] = STATE(1550), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3475), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_COLON_DASH] = ACTIONS(3473), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3473), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3473), - [sym__special_character] = ACTIONS(459), - }, - [1539] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), - }, - [1540] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1550), - [sym_concatenation] = STATE(1550), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3475), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_COLON_DASH] = ACTIONS(3473), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3473), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3473), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3479), - }, - [1541] = { - [sym_command_substitution] = STATE(1552), - [aux_sym__literal_repeat1] = STATE(1553), - [sym_string] = STATE(1552), - [sym_process_substitution] = STATE(1552), - [sym_simple_expansion] = STATE(1552), - [sym_string_expansion] = STATE(1552), - [sym_concatenation] = STATE(1554), - [sym_expansion] = STATE(1552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3481), - [sym_word] = ACTIONS(3483), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(3481), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(3477), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(3483), - [anon_sym_GT_LPAREN] = ACTIONS(943), - }, - [1542] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1556), - [sym_concatenation] = STATE(1556), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3485), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3487), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_COLON_DASH] = ACTIONS(3485), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3485), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3485), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3491), - }, - [1543] = { + [1546] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1558), + [sym_concatenation] = STATE(1558), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(3479), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(3481), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_COLON_DASH] = ACTIONS(3479), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(3479), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(3479), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(3479), [sym__special_character] = ACTIONS(459), }, - [1544] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3477), - [sym__concat] = ACTIONS(1294), - }, - [1545] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(3493), - [sym_comment] = ACTIONS(41), - }, - [1546] = { - [anon_sym_RBRACE] = ACTIONS(3477), - [sym_comment] = ACTIONS(41), - }, [1547] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), @@ -50454,29 +50423,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1557), - [sym_concatenation] = STATE(1557), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3497), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3499), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_COLON_DASH] = ACTIONS(3495), + [anon_sym_RBRACE] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3495), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, [1548] = { @@ -50486,55 +50455,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1558), + [sym_concatenation] = STATE(1558), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(3479), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(3481), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3499), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_COLON_DASH] = ACTIONS(3479), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(3479), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(3479), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(3479), [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3485), }, [1549] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(280), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(280), - [sym_expansion] = STATE(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [sym_ansii_c_string] = ACTIONS(1015), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(3501), - [sym__special_character] = ACTIONS(1029), - [sym_number] = ACTIONS(1017), - [anon_sym_GT_LPAREN] = ACTIONS(1023), + [sym_command_substitution] = STATE(1560), + [aux_sym__literal_repeat1] = STATE(1561), + [sym_string] = STATE(1560), + [sym_process_substitution] = STATE(1560), + [sym_simple_expansion] = STATE(1560), + [sym_string_expansion] = STATE(1560), + [sym_concatenation] = STATE(1562), + [sym_expansion] = STATE(1560), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3487), + [sym_word] = ACTIONS(3489), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3487), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(3483), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(3489), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, [1550] = { [sym_command_substitution] = STATE(116), @@ -50543,30 +50512,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1564), + [sym_concatenation] = STATE(1564), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(3491), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(3493), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3503), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3491), + [anon_sym_COLON_DASH] = ACTIONS(3491), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(3491), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(3491), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(3491), [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(3497), }, [1551] = { [sym_command_substitution] = STATE(116), @@ -50575,45 +50545,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1558), - [sym_concatenation] = STATE(1558), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3505), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3507), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3503), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_COLON_DASH] = ACTIONS(3505), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3505), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, [1552] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3503), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(3483), + [sym__concat] = ACTIONS(1298), }, [1553] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(3509), + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(3499), [sym_comment] = ACTIONS(41), }, [1554] = { - [anon_sym_RBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(3483), [sym_comment] = ACTIONS(41), }, [1555] = { @@ -50623,15 +50593,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1559), - [sym_concatenation] = STATE(1559), + [aux_sym_expansion_repeat1] = STATE(1565), + [sym_concatenation] = STATE(1565), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(3501), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3503), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3505), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_COLON_DASH] = ACTIONS(3501), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(3501), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3501), + [sym__special_character] = ACTIONS(459), + }, + [1556] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3505), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(917), + [sym__special_character] = ACTIONS(459), + }, + [1557] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(281), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(281), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(3507), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), + }, + [1558] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3509), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(917), + [sym__special_character] = ACTIONS(459), + }, + [1559] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1566), + [sym_concatenation] = STATE(1566), [sym_expansion] = STATE(116), [anon_sym_PERCENT] = ACTIONS(3511), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(3513), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3515), + [anon_sym_RBRACE] = ACTIONS(3509), [anon_sym_DASH] = ACTIONS(3511), [anon_sym_COLON_DASH] = ACTIONS(3511), [anon_sym_BQUOTE] = ACTIONS(445), @@ -50648,287 +50739,335 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(3511), [sym__special_character] = ACTIONS(459), }, - [1556] = { + [1560] = { + [aux_sym_concatenation_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3509), + [sym__concat] = ACTIONS(1298), + }, + [1561] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(3515), + [sym_comment] = ACTIONS(41), + }, + [1562] = { + [anon_sym_RBRACE] = ACTIONS(3509), + [sym_comment] = ACTIONS(41), + }, + [1563] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1567), + [sym_concatenation] = STATE(1567), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(3517), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(3519), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_COLON_DASH] = ACTIONS(3517), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(3517), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(3517), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(3517), [sym__special_character] = ACTIONS(459), }, - [1557] = { + [1564] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1558] = { + [1565] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1559] = { + [1566] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1560] = { - [sym_string] = STATE(698), - [anon_sym__] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_POUND] = ACTIONS(3523), - [anon_sym_STAR] = ACTIONS(3525), - [anon_sym_0] = ACTIONS(2548), - [anon_sym_BANG] = ACTIONS(3523), - [aux_sym__simple_variable_name_token1] = ACTIONS(2548), - [anon_sym_DOLLAR] = ACTIONS(3523), - [anon_sym_AT] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(3523), - [sym_raw_string] = ACTIONS(3527), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3525), + [1567] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(917), + [sym__special_character] = ACTIONS(459), }, - [1561] = { + [1568] = { + [sym_string] = STATE(699), + [anon_sym__] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(2535), + [anon_sym_POUND] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_0] = ACTIONS(2552), + [anon_sym_BANG] = ACTIONS(3529), + [aux_sym__simple_variable_name_token1] = ACTIONS(2552), + [anon_sym_DOLLAR] = ACTIONS(3529), + [anon_sym_AT] = ACTIONS(3531), + [anon_sym_DASH] = ACTIONS(3529), + [sym_raw_string] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(3531), + }, + [1569] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1569), + [aux_sym_string_repeat1] = STATE(1577), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3535), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3531), + [anon_sym_DQUOTE] = ACTIONS(3537), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [1562] = { + [1570] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3533), + [anon_sym_BQUOTE] = ACTIONS(3539), }, - [1563] = { - [anon_sym_RPAREN] = ACTIONS(3535), + [1571] = { + [anon_sym_RPAREN] = ACTIONS(3541), [sym_comment] = ACTIONS(41), }, - [1564] = { - [sym_command_substitution] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_string_expansion] = STATE(707), - [sym_string] = STATE(707), - [sym_process_substitution] = STATE(707), - [sym_expansion] = STATE(707), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2533), - [sym_word] = ACTIONS(2535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2537), + [1572] = { + [sym_command_substitution] = STATE(708), + [sym_simple_expansion] = STATE(708), + [sym_string_expansion] = STATE(708), + [sym_string] = STATE(708), + [sym_process_substitution] = STATE(708), + [sym_expansion] = STATE(708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2535), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2537), + [sym_word] = ACTIONS(2539), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2541), [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LT_LPAREN] = ACTIONS(2541), - [sym_ansii_c_string] = ACTIONS(2533), - [anon_sym_BQUOTE] = ACTIONS(2543), - [anon_sym_GT_LPAREN] = ACTIONS(2541), - [sym__special_character] = ACTIONS(2533), - [sym_number] = ACTIONS(2535), + [anon_sym_LT_LPAREN] = ACTIONS(2545), + [sym_ansii_c_string] = ACTIONS(2537), + [anon_sym_BQUOTE] = ACTIONS(2547), + [anon_sym_GT_LPAREN] = ACTIONS(2545), + [sym__special_character] = ACTIONS(2537), + [sym_number] = ACTIONS(2539), }, - [1565] = { + [1573] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1573), - [sym_concatenation] = STATE(1573), + [aux_sym_expansion_repeat1] = STATE(1581), + [sym_concatenation] = STATE(1581), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3537), + [anon_sym_PERCENT] = ACTIONS(3543), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3539), + [anon_sym_POUND] = ACTIONS(3545), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3541), + [anon_sym_SLASH] = ACTIONS(3547), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3537), + [anon_sym_DASH] = ACTIONS(3543), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3537), - [anon_sym_EQ] = ACTIONS(3537), + [anon_sym_COLON_DASH] = ACTIONS(3543), + [anon_sym_EQ] = ACTIONS(3543), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3537), + [anon_sym_COLON_QMARK] = ACTIONS(3543), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3543), + [anon_sym_RBRACE] = ACTIONS(3549), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3537), + [anon_sym_COLON] = ACTIONS(3543), [sym__special_character] = ACTIONS(459), }, - [1566] = { + [1574] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1578), - [sym_concatenation] = STATE(1578), + [aux_sym_expansion_repeat1] = STATE(1586), + [sym_concatenation] = STATE(1586), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3545), + [anon_sym_PERCENT] = ACTIONS(3551), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3547), + [anon_sym_POUND] = ACTIONS(3553), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3549), + [anon_sym_SLASH] = ACTIONS(3555), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_DASH] = ACTIONS(3551), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3545), + [anon_sym_COLON_DASH] = ACTIONS(3551), + [anon_sym_EQ] = ACTIONS(3551), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3551), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3551), + [anon_sym_RBRACE] = ACTIONS(3557), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3545), + [anon_sym_COLON] = ACTIONS(3551), [sym__special_character] = ACTIONS(459), }, - [1567] = { - [sym_command_substitution] = STATE(713), - [aux_sym__literal_repeat1] = STATE(714), - [sym_string] = STATE(713), - [sym_array] = STATE(712), - [sym_process_substitution] = STATE(713), - [sym_simple_expansion] = STATE(713), - [sym_string_expansion] = STATE(713), - [sym_concatenation] = STATE(712), - [sym_expansion] = STATE(713), - [anon_sym_LPAREN] = ACTIONS(3553), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3555), - [anon_sym_DOLLAR] = ACTIONS(1958), - [anon_sym_BQUOTE] = ACTIONS(2633), - [anon_sym_GT_LPAREN] = ACTIONS(2635), - [sym_number] = ACTIONS(3557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_word] = ACTIONS(3557), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2643), - [anon_sym_LT_LPAREN] = ACTIONS(2635), - [sym_ansii_c_string] = ACTIONS(3555), - [sym__special_character] = ACTIONS(3559), - [sym__empty_value] = ACTIONS(3561), + [1575] = { + [sym_command_substitution] = STATE(714), + [aux_sym__literal_repeat1] = STATE(715), + [sym_string] = STATE(714), + [sym_array] = STATE(713), + [sym_process_substitution] = STATE(714), + [sym_simple_expansion] = STATE(714), + [sym_string_expansion] = STATE(714), + [sym_concatenation] = STATE(713), + [sym_expansion] = STATE(714), + [anon_sym_LPAREN] = ACTIONS(3559), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3561), + [anon_sym_DOLLAR] = ACTIONS(1962), + [anon_sym_BQUOTE] = ACTIONS(2637), + [anon_sym_GT_LPAREN] = ACTIONS(2639), + [sym_number] = ACTIONS(3563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_word] = ACTIONS(3563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2647), + [anon_sym_LT_LPAREN] = ACTIONS(2639), + [sym_ansii_c_string] = ACTIONS(3561), + [sym__special_character] = ACTIONS(3565), + [sym__empty_value] = ACTIONS(3567), }, - [1568] = { + [1576] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(3563), + [anon_sym_DQUOTE] = ACTIONS(3569), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -50941,20 +51080,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [1569] = { + [1577] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(3565), + [anon_sym_DOLLAR] = ACTIONS(3571), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3563), + [anon_sym_DQUOTE] = ACTIONS(3569), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [1570] = { + [1578] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -50967,7 +51106,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3567), + [anon_sym_RPAREN] = ACTIONS(3573), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -50979,258 +51118,258 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [1571] = { - [anon_sym_RPAREN] = ACTIONS(3567), + [1579] = { + [anon_sym_RPAREN] = ACTIONS(3573), [sym_comment] = ACTIONS(41), }, - [1572] = { + [1580] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1582), - [sym_concatenation] = STATE(1582), + [aux_sym_expansion_repeat1] = STATE(1590), + [sym_concatenation] = STATE(1590), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3569), + [anon_sym_PERCENT] = ACTIONS(3575), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3571), + [anon_sym_POUND] = ACTIONS(3577), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_COLON_DASH] = ACTIONS(3569), + [anon_sym_RBRACE] = ACTIONS(3579), + [anon_sym_DASH] = ACTIONS(3575), + [anon_sym_COLON_DASH] = ACTIONS(3575), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3569), + [anon_sym_EQ] = ACTIONS(3575), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3569), + [anon_sym_COLON_QMARK] = ACTIONS(3575), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3569), + [anon_sym_COLON] = ACTIONS(3575), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3575), + [sym_regex] = ACTIONS(3581), }, - [1573] = { + [1581] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3579), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1574] = { + [1582] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1582), - [sym_concatenation] = STATE(1582), + [aux_sym_expansion_repeat1] = STATE(1590), + [sym_concatenation] = STATE(1590), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3569), + [anon_sym_PERCENT] = ACTIONS(3575), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3571), + [anon_sym_POUND] = ACTIONS(3577), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3577), + [anon_sym_SLASH] = ACTIONS(3583), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3569), + [anon_sym_DASH] = ACTIONS(3575), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(3569), + [anon_sym_COLON_DASH] = ACTIONS(3575), + [anon_sym_EQ] = ACTIONS(3575), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3569), + [anon_sym_COLON_QMARK] = ACTIONS(3575), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3573), + [anon_sym_RBRACE] = ACTIONS(3579), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3569), + [anon_sym_COLON] = ACTIONS(3575), [sym__special_character] = ACTIONS(459), }, - [1575] = { + [1583] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1586), - [sym_concatenation] = STATE(1586), + [aux_sym_expansion_repeat1] = STATE(1594), + [sym_concatenation] = STATE(1594), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3579), + [anon_sym_PERCENT] = ACTIONS(3585), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3581), + [anon_sym_POUND] = ACTIONS(3587), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3583), + [anon_sym_SLASH] = ACTIONS(3589), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3579), + [anon_sym_DASH] = ACTIONS(3585), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3579), - [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON_DASH] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3585), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3579), + [anon_sym_COLON_QMARK] = ACTIONS(3585), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3585), + [anon_sym_RBRACE] = ACTIONS(3591), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3585), [sym__special_character] = ACTIONS(459), }, - [1576] = { - [sym_command_substitution] = STATE(1587), - [aux_sym__literal_repeat1] = STATE(1588), - [sym_string] = STATE(1587), - [sym_process_substitution] = STATE(1587), - [sym_simple_expansion] = STATE(1587), - [sym_string_expansion] = STATE(1587), - [sym_concatenation] = STATE(1589), - [sym_expansion] = STATE(1587), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3587), - [sym_word] = ACTIONS(3589), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(3587), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(3573), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(3589), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1584] = { + [sym_command_substitution] = STATE(1595), + [aux_sym__literal_repeat1] = STATE(1596), + [sym_string] = STATE(1595), + [sym_process_substitution] = STATE(1595), + [sym_simple_expansion] = STATE(1595), + [sym_string_expansion] = STATE(1595), + [sym_concatenation] = STATE(1597), + [sym_expansion] = STATE(1595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3593), + [sym_word] = ACTIONS(3595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3593), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(3579), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(3595), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1577] = { + [1585] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1591), - [sym_concatenation] = STATE(1591), + [aux_sym_expansion_repeat1] = STATE(1599), + [sym_concatenation] = STATE(1599), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3591), + [anon_sym_PERCENT] = ACTIONS(3597), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3593), + [anon_sym_POUND] = ACTIONS(3599), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3591), - [anon_sym_COLON_DASH] = ACTIONS(3591), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_COLON_DASH] = ACTIONS(3597), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3591), + [anon_sym_EQ] = ACTIONS(3597), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3591), + [anon_sym_COLON_QMARK] = ACTIONS(3597), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3591), + [anon_sym_COLON] = ACTIONS(3597), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3597), + [sym_regex] = ACTIONS(3603), }, - [1578] = { + [1586] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1579] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(1592), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(1592), - [sym_expansion] = STATE(221), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_RPAREN] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_GT_LPAREN] = ACTIONS(1023), - [sym_number] = ACTIONS(1017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1015), - [sym__special_character] = ACTIONS(1029), + [1587] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(1600), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(1600), + [sym_expansion] = STATE(222), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(3605), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_number] = ACTIONS(1019), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [sym_ansii_c_string] = ACTIONS(1017), + [sym__special_character] = ACTIONS(1031), }, - [1580] = { + [1588] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3607), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -51243,1592 +51382,1438 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [1581] = { + [1589] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1593), - [sym_concatenation] = STATE(1593), + [aux_sym_expansion_repeat1] = STATE(1601), + [sym_concatenation] = STATE(1601), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3609), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3605), + [anon_sym_POUND] = ACTIONS(3611), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3607), - [anon_sym_DASH] = ACTIONS(3603), - [anon_sym_COLON_DASH] = ACTIONS(3603), + [anon_sym_RBRACE] = ACTIONS(3613), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_COLON_DASH] = ACTIONS(3609), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3609), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3609), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COLON] = ACTIONS(3609), [sym__special_character] = ACTIONS(459), }, - [1582] = { + [1590] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3607), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3613), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1583] = { + [1591] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1593), - [sym_concatenation] = STATE(1593), + [aux_sym_expansion_repeat1] = STATE(1601), + [sym_concatenation] = STATE(1601), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3609), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3605), + [anon_sym_POUND] = ACTIONS(3611), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3607), - [anon_sym_DASH] = ACTIONS(3603), - [anon_sym_COLON_DASH] = ACTIONS(3603), + [anon_sym_RBRACE] = ACTIONS(3613), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_COLON_DASH] = ACTIONS(3609), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3609), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_QMARK] = ACTIONS(3609), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COLON] = ACTIONS(3609), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3609), + [sym_regex] = ACTIONS(3615), }, - [1584] = { - [sym_command_substitution] = STATE(1595), - [aux_sym__literal_repeat1] = STATE(1596), - [sym_string] = STATE(1595), - [sym_process_substitution] = STATE(1595), - [sym_simple_expansion] = STATE(1595), - [sym_string_expansion] = STATE(1595), - [sym_concatenation] = STATE(1597), - [sym_expansion] = STATE(1595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3611), - [sym_word] = ACTIONS(3613), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(3611), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(3607), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(3613), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1592] = { + [sym_command_substitution] = STATE(1603), + [aux_sym__literal_repeat1] = STATE(1604), + [sym_string] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [sym_simple_expansion] = STATE(1603), + [sym_string_expansion] = STATE(1603), + [sym_concatenation] = STATE(1605), + [sym_expansion] = STATE(1603), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3617), + [sym_word] = ACTIONS(3619), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3617), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(3613), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(3619), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1585] = { + [1593] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1599), - [sym_concatenation] = STATE(1599), + [aux_sym_expansion_repeat1] = STATE(1607), + [sym_concatenation] = STATE(1607), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3621), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3617), + [anon_sym_POUND] = ACTIONS(3623), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3615), - [anon_sym_COLON_DASH] = ACTIONS(3615), + [anon_sym_RBRACE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3621), + [anon_sym_COLON_DASH] = ACTIONS(3621), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3621), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3615), + [anon_sym_COLON_QMARK] = ACTIONS(3621), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3615), + [anon_sym_COLON] = ACTIONS(3621), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3621), + [sym_regex] = ACTIONS(3627), }, - [1586] = { + [1594] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1587] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1595] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3607), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(3613), + [sym__concat] = ACTIONS(1298), }, - [1588] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(3623), + [1596] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(3629), [sym_comment] = ACTIONS(41), }, - [1589] = { - [anon_sym_RBRACE] = ACTIONS(3607), + [1597] = { + [anon_sym_RBRACE] = ACTIONS(3613), [sym_comment] = ACTIONS(41), }, - [1590] = { + [1598] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1600), - [sym_concatenation] = STATE(1600), + [aux_sym_expansion_repeat1] = STATE(1608), + [sym_concatenation] = STATE(1608), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3625), + [anon_sym_PERCENT] = ACTIONS(3631), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3627), + [anon_sym_POUND] = ACTIONS(3633), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_COLON_DASH] = ACTIONS(3625), + [anon_sym_RBRACE] = ACTIONS(3635), + [anon_sym_DASH] = ACTIONS(3631), + [anon_sym_COLON_DASH] = ACTIONS(3631), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3625), + [anon_sym_EQ] = ACTIONS(3631), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3625), + [anon_sym_COLON_QMARK] = ACTIONS(3631), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3625), + [anon_sym_COLON] = ACTIONS(3631), [sym__special_character] = ACTIONS(459), }, - [1591] = { + [1599] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3629), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3635), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1592] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(280), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(280), - [sym_expansion] = STATE(221), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_RPAREN] = ACTIONS(3631), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_GT_LPAREN] = ACTIONS(1023), - [sym_number] = ACTIONS(1017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1015), - [sym__special_character] = ACTIONS(1029), + [1600] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(281), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(281), + [sym_expansion] = STATE(222), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(3637), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_number] = ACTIONS(1019), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [sym_ansii_c_string] = ACTIONS(1017), + [sym__special_character] = ACTIONS(1031), }, - [1593] = { + [1601] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3633), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1594] = { + [1602] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1601), - [sym_concatenation] = STATE(1601), + [aux_sym_expansion_repeat1] = STATE(1609), + [sym_concatenation] = STATE(1609), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3635), + [anon_sym_PERCENT] = ACTIONS(3641), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3637), + [anon_sym_POUND] = ACTIONS(3643), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3633), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_COLON_DASH] = ACTIONS(3635), + [anon_sym_RBRACE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_COLON_DASH] = ACTIONS(3641), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3635), + [anon_sym_EQ] = ACTIONS(3641), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3641), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3635), + [anon_sym_COLON] = ACTIONS(3641), [sym__special_character] = ACTIONS(459), }, - [1595] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1603] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3633), - [sym__concat] = ACTIONS(1294), - }, - [1596] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), [anon_sym_RBRACE] = ACTIONS(3639), + [sym__concat] = ACTIONS(1298), + }, + [1604] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(3645), [sym_comment] = ACTIONS(41), }, - [1597] = { - [anon_sym_RBRACE] = ACTIONS(3633), + [1605] = { + [anon_sym_RBRACE] = ACTIONS(3639), [sym_comment] = ACTIONS(41), }, - [1598] = { + [1606] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1602), - [sym_concatenation] = STATE(1602), + [aux_sym_expansion_repeat1] = STATE(1610), + [sym_concatenation] = STATE(1610), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3641), + [anon_sym_PERCENT] = ACTIONS(3647), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3643), + [anon_sym_POUND] = ACTIONS(3649), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3641), - [anon_sym_COLON_DASH] = ACTIONS(3641), + [anon_sym_RBRACE] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(3647), + [anon_sym_COLON_DASH] = ACTIONS(3647), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3641), + [anon_sym_EQ] = ACTIONS(3647), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3641), + [anon_sym_COLON_QMARK] = ACTIONS(3647), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3641), + [anon_sym_COLON] = ACTIONS(3647), [sym__special_character] = ACTIONS(459), }, - [1599] = { + [1607] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3651), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1600] = { + [1608] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1601] = { + [1609] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3649), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1602] = { + [1610] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1603] = { - [sym_string] = STATE(737), + [1611] = { + [sym_string] = STATE(738), [anon_sym__] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3659), + [sym_raw_string] = ACTIONS(3661), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_DOLLAR] = ACTIONS(3659), + [anon_sym_AT] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3659), [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_POUND] = ACTIONS(3653), - [anon_sym_STAR] = ACTIONS(3655), [anon_sym_0] = ACTIONS(2572), - [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_STAR] = ACTIONS(3663), [aux_sym__simple_variable_name_token1] = ACTIONS(2572), - [anon_sym_DOLLAR] = ACTIONS(3653), - [anon_sym_AT] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(3653), - [sym_raw_string] = ACTIONS(3657), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3663), }, - [1604] = { + [1612] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1612), + [aux_sym_string_repeat1] = STATE(1620), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(3659), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3661), - [anon_sym_BQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(3665), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3667), + [anon_sym_BQUOTE] = ACTIONS(273), }, - [1605] = { + [1613] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3663), + [anon_sym_BQUOTE] = ACTIONS(3669), }, - [1606] = { - [anon_sym_RPAREN] = ACTIONS(3665), + [1614] = { + [anon_sym_RPAREN] = ACTIONS(3671), [sym_comment] = ACTIONS(41), }, - [1607] = { - [sym_command_substitution] = STATE(744), - [sym_simple_expansion] = STATE(744), - [sym_string_expansion] = STATE(744), - [sym_string] = STATE(744), - [sym_process_substitution] = STATE(744), - [sym_expansion] = STATE(744), + [1615] = { + [sym_command_substitution] = STATE(745), + [sym_string] = STATE(745), + [sym_process_substitution] = STATE(745), + [sym_simple_expansion] = STATE(745), + [sym_string_expansion] = STATE(745), + [sym_expansion] = STATE(745), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_number] = ACTIONS(2565), [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(217), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2559), - [sym_word] = ACTIONS(2561), + [sym_word] = ACTIONS(2565), [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), [anon_sym_LT_LPAREN] = ACTIONS(227), - [sym_ansii_c_string] = ACTIONS(2559), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(227), - [sym__special_character] = ACTIONS(2559), - [sym_number] = ACTIONS(2561), + [sym_ansii_c_string] = ACTIONS(2563), + [sym__special_character] = ACTIONS(2563), }, - [1608] = { + [1616] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1616), - [sym_concatenation] = STATE(1616), + [aux_sym_expansion_repeat1] = STATE(1624), + [sym_concatenation] = STATE(1624), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3667), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3669), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3671), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3667), + [anon_sym_DASH] = ACTIONS(3673), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3667), - [anon_sym_EQ] = ACTIONS(3667), + [anon_sym_COLON_DASH] = ACTIONS(3673), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3673), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3667), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3673), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3673), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3675), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3677), + [anon_sym_RBRACE] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3667), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(3673), }, - [1609] = { + [1617] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1621), - [sym_concatenation] = STATE(1621), + [aux_sym_expansion_repeat1] = STATE(1629), + [sym_concatenation] = STATE(1629), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3675), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3677), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3679), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3681), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), + [anon_sym_COLON_DASH] = ACTIONS(3681), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3681), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3681), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3681), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3683), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3685), + [anon_sym_RBRACE] = ACTIONS(3687), + [anon_sym_EQ] = ACTIONS(3681), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3675), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(3681), }, - [1610] = { - [sym_command_substitution] = STATE(750), - [aux_sym__literal_repeat1] = STATE(751), - [sym_string] = STATE(750), - [sym_array] = STATE(749), - [sym_process_substitution] = STATE(750), - [sym_simple_expansion] = STATE(750), - [sym_string_expansion] = STATE(750), - [sym_concatenation] = STATE(749), - [sym_expansion] = STATE(750), - [anon_sym_LPAREN] = ACTIONS(3683), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3685), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_BQUOTE] = ACTIONS(2991), - [anon_sym_GT_LPAREN] = ACTIONS(2989), - [sym_number] = ACTIONS(3689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_word] = ACTIONS(3689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), - [anon_sym_LT_LPAREN] = ACTIONS(2989), - [sym_ansii_c_string] = ACTIONS(3685), - [sym__special_character] = ACTIONS(3691), - [sym__empty_value] = ACTIONS(3693), + [1618] = { + [sym_command_substitution] = STATE(751), + [aux_sym__literal_repeat1] = STATE(752), + [sym_string] = STATE(751), + [sym_array] = STATE(750), + [sym_process_substitution] = STATE(751), + [sym_simple_expansion] = STATE(751), + [sym_string_expansion] = STATE(751), + [sym_concatenation] = STATE(750), + [sym_expansion] = STATE(751), + [anon_sym_LPAREN] = ACTIONS(3689), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_number] = ACTIONS(3693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_word] = ACTIONS(3693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [sym_ansii_c_string] = ACTIONS(3691), + [sym__special_character] = ACTIONS(3695), + [sym__empty_value] = ACTIONS(3697), }, - [1611] = { + [1619] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(3695), + [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [sym__string_content] = ACTIONS(593), [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), + [anon_sym_DQUOTE] = ACTIONS(3699), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1612] = { + [1620] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(3697), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3695), - [anon_sym_BQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE] = ACTIONS(3699), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_BQUOTE] = ACTIONS(273), }, - [1613] = { + [1621] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3699), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), [anon_sym_LT] = ACTIONS(331), [anon_sym_LT_AMP] = ACTIONS(333), [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(3703), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), }, - [1614] = { - [anon_sym_RPAREN] = ACTIONS(3699), + [1622] = { + [anon_sym_RPAREN] = ACTIONS(3703), [sym_comment] = ACTIONS(41), }, - [1615] = { + [1623] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1625), - [sym_concatenation] = STATE(1625), + [aux_sym_expansion_repeat1] = STATE(1633), + [sym_concatenation] = STATE(1633), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3701), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3703), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3701), - [anon_sym_COLON_DASH] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3705), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_COLON_DASH] = ACTIONS(3705), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3705), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3707), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3709), + [anon_sym_EQ] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3701), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [sym_regex] = ACTIONS(3711), }, - [1616] = { + [1624] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3709), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(917), }, - [1617] = { + [1625] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1625), - [sym_concatenation] = STATE(1625), + [aux_sym_expansion_repeat1] = STATE(1633), + [sym_concatenation] = STATE(1633), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3701), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3703), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3709), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3705), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3701), - [anon_sym_EQ] = ACTIONS(3701), + [anon_sym_COLON_DASH] = ACTIONS(3705), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3705), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3701), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3705), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3705), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3707), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3713), + [anon_sym_RBRACE] = ACTIONS(3709), + [anon_sym_EQ] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3701), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(3705), }, - [1618] = { + [1626] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1629), - [sym_concatenation] = STATE(1629), + [aux_sym_expansion_repeat1] = STATE(1637), + [sym_concatenation] = STATE(1637), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3711), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3713), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3715), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3711), + [anon_sym_DASH] = ACTIONS(3715), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3711), - [anon_sym_EQ] = ACTIONS(3711), + [anon_sym_COLON_DASH] = ACTIONS(3715), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3715), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3711), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3717), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3715), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3717), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3719), + [anon_sym_RBRACE] = ACTIONS(3721), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3711), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(3715), }, - [1619] = { - [sym_command_substitution] = STATE(1630), - [aux_sym__literal_repeat1] = STATE(1631), - [sym_string] = STATE(1630), - [sym_process_substitution] = STATE(1630), - [sym_simple_expansion] = STATE(1630), - [sym_string_expansion] = STATE(1630), - [sym_concatenation] = STATE(1632), - [sym_expansion] = STATE(1630), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3719), - [sym_word] = ACTIONS(3721), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(3719), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(3705), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(3721), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1627] = { + [sym_command_substitution] = STATE(1638), + [aux_sym__literal_repeat1] = STATE(1639), + [sym_string] = STATE(1638), + [sym_process_substitution] = STATE(1638), + [sym_simple_expansion] = STATE(1638), + [sym_string_expansion] = STATE(1638), + [sym_concatenation] = STATE(1640), + [sym_expansion] = STATE(1638), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3723), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(3709), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(3725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(3725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(3723), + [sym__special_character] = ACTIONS(949), }, - [1620] = { + [1628] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1634), - [sym_concatenation] = STATE(1634), + [aux_sym_expansion_repeat1] = STATE(1642), + [sym_concatenation] = STATE(1642), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3723), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3725), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(3723), - [anon_sym_COLON_DASH] = ACTIONS(3723), + [anon_sym_DASH] = ACTIONS(3727), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3723), + [anon_sym_COLON_DASH] = ACTIONS(3727), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3723), + [anon_sym_COLON_QMARK] = ACTIONS(3727), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3727), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3729), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(3727), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3723), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3729), + [anon_sym_COLON] = ACTIONS(3727), + [sym_regex] = ACTIONS(3733), }, - [1621] = { + [1629] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3727), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(917), }, - [1622] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(1635), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(1635), - [sym_expansion] = STATE(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [sym_ansii_c_string] = ACTIONS(1015), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(3731), - [sym__special_character] = ACTIONS(1029), - [sym_number] = ACTIONS(1017), - [anon_sym_GT_LPAREN] = ACTIONS(1023), + [1630] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(1643), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(1643), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(3735), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), }, - [1623] = { + [1631] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(3733), + [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [sym__string_content] = ACTIONS(593), [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), + [anon_sym_DQUOTE] = ACTIONS(3737), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1624] = { + [1632] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1636), - [sym_concatenation] = STATE(1636), + [aux_sym_expansion_repeat1] = STATE(1644), + [sym_concatenation] = STATE(1644), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3735), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3737), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3735), - [anon_sym_COLON_DASH] = ACTIONS(3735), + [anon_sym_DASH] = ACTIONS(3739), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3735), + [anon_sym_COLON_DASH] = ACTIONS(3739), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3735), + [anon_sym_COLON_QMARK] = ACTIONS(3739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3739), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3741), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3735), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(3739), }, - [1625] = { + [1633] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(917), }, - [1626] = { + [1634] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1636), - [sym_concatenation] = STATE(1636), + [aux_sym_expansion_repeat1] = STATE(1644), + [sym_concatenation] = STATE(1644), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3735), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3737), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_DASH] = ACTIONS(3735), - [anon_sym_COLON_DASH] = ACTIONS(3735), + [anon_sym_DASH] = ACTIONS(3739), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3735), + [anon_sym_COLON_DASH] = ACTIONS(3739), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3735), + [anon_sym_COLON_QMARK] = ACTIONS(3739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3739), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3741), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3743), + [anon_sym_EQ] = ACTIONS(3739), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3735), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3741), + [anon_sym_COLON] = ACTIONS(3739), + [sym_regex] = ACTIONS(3745), }, - [1627] = { - [sym_command_substitution] = STATE(1638), - [aux_sym__literal_repeat1] = STATE(1639), - [sym_string] = STATE(1638), - [sym_process_substitution] = STATE(1638), - [sym_simple_expansion] = STATE(1638), - [sym_string_expansion] = STATE(1638), - [sym_concatenation] = STATE(1640), - [sym_expansion] = STATE(1638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3743), - [sym_word] = ACTIONS(3745), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(3743), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(3739), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(3745), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1635] = { + [sym_command_substitution] = STATE(1646), + [aux_sym__literal_repeat1] = STATE(1647), + [sym_string] = STATE(1646), + [sym_process_substitution] = STATE(1646), + [sym_simple_expansion] = STATE(1646), + [sym_string_expansion] = STATE(1646), + [sym_concatenation] = STATE(1648), + [sym_expansion] = STATE(1646), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3747), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(3743), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(3749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(3749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(3747), + [sym__special_character] = ACTIONS(949), }, - [1628] = { + [1636] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1642), - [sym_concatenation] = STATE(1642), + [aux_sym_expansion_repeat1] = STATE(1650), + [sym_concatenation] = STATE(1650), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3747), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3749), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3751), - [anon_sym_DASH] = ACTIONS(3747), - [anon_sym_COLON_DASH] = ACTIONS(3747), + [anon_sym_DASH] = ACTIONS(3751), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3747), + [anon_sym_COLON_DASH] = ACTIONS(3751), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3747), + [anon_sym_COLON_QMARK] = ACTIONS(3751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3751), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3753), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3755), + [anon_sym_EQ] = ACTIONS(3751), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3747), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3753), + [anon_sym_COLON] = ACTIONS(3751), + [sym_regex] = ACTIONS(3757), }, - [1629] = { + [1637] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3751), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3755), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(917), }, - [1630] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1638] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3739), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(3743), + [sym__concat] = ACTIONS(1298), }, - [1631] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(3755), + [1639] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(3759), [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1300), }, - [1632] = { - [anon_sym_RBRACE] = ACTIONS(3739), + [1640] = { + [anon_sym_RBRACE] = ACTIONS(3743), [sym_comment] = ACTIONS(41), }, - [1633] = { + [1641] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1643), - [sym_concatenation] = STATE(1643), + [aux_sym_expansion_repeat1] = STATE(1651), + [sym_concatenation] = STATE(1651), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3757), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3759), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3757), - [anon_sym_COLON_DASH] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3761), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3757), + [anon_sym_COLON_DASH] = ACTIONS(3761), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3757), + [anon_sym_COLON_QMARK] = ACTIONS(3761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3761), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3763), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3765), + [anon_sym_EQ] = ACTIONS(3761), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3757), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(3761), }, - [1634] = { + [1642] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3765), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(917), }, - [1635] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(280), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(280), - [sym_expansion] = STATE(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [sym_ansii_c_string] = ACTIONS(1015), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(3763), - [sym__special_character] = ACTIONS(1029), - [sym_number] = ACTIONS(1017), - [anon_sym_GT_LPAREN] = ACTIONS(1023), + [1643] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(281), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(281), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(3767), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), }, - [1636] = { + [1644] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3769), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(917), }, - [1637] = { + [1645] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1644), - [sym_concatenation] = STATE(1644), + [aux_sym_expansion_repeat1] = STATE(1652), + [sym_concatenation] = STATE(1652), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3767), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3769), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3767), - [anon_sym_COLON_DASH] = ACTIONS(3767), + [anon_sym_DASH] = ACTIONS(3771), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3767), + [anon_sym_COLON_DASH] = ACTIONS(3771), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3767), + [anon_sym_COLON_QMARK] = ACTIONS(3771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3771), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3773), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3769), + [anon_sym_EQ] = ACTIONS(3771), + [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3767), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(3771), }, - [1638] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1646] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3765), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(3769), + [sym__concat] = ACTIONS(1298), }, - [1639] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(3771), + [1647] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(3775), [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1300), }, - [1640] = { - [anon_sym_RBRACE] = ACTIONS(3765), + [1648] = { + [anon_sym_RBRACE] = ACTIONS(3769), [sym_comment] = ACTIONS(41), }, - [1641] = { + [1649] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1645), - [sym_concatenation] = STATE(1645), + [aux_sym_expansion_repeat1] = STATE(1653), + [sym_concatenation] = STATE(1653), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3773), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3775), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3777), - [anon_sym_DASH] = ACTIONS(3773), - [anon_sym_COLON_DASH] = ACTIONS(3773), + [anon_sym_DASH] = ACTIONS(3777), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3773), + [anon_sym_COLON_DASH] = ACTIONS(3777), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3773), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3773), - [sym__special_character] = ACTIONS(459), - }, - [1642] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3777), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_COLON_QMARK] = ACTIONS(3777), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), [sym__special_character] = ACTIONS(459), - }, - [1643] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(3777), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(3779), [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3779), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(3781), + [anon_sym_EQ] = ACTIONS(3777), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), - [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(3777), }, - [1644] = { + [1650] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3781), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), [sym__special_character] = ACTIONS(459), - }, - [1645] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3783), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(3781), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), - [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), - }, - [1646] = { - [sym_string] = STATE(774), - [anon_sym__] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2596), - [sym_raw_string] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_DOLLAR] = ACTIONS(2596), - [anon_sym_AT] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_0] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2600), - [aux_sym__simple_variable_name_token1] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2600), - }, - [1647] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1655), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3785), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3787), - [anon_sym_BQUOTE] = ACTIONS(273), - }, - [1648] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3789), - }, - [1649] = { - [anon_sym_RPAREN] = ACTIONS(3791), - [sym_comment] = ACTIONS(41), - }, - [1650] = { - [sym_command_substitution] = STATE(781), - [sym_string] = STATE(781), - [sym_process_substitution] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_string_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(239), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(2589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(2589), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(2585), - [sym__special_character] = ACTIONS(2585), + [anon_sym_COLON] = ACTIONS(917), }, [1651] = { [sym_command_substitution] = STATE(116), @@ -52837,31 +52822,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1659), - [sym_concatenation] = STATE(1659), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3793), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3793), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3793), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3795), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3797), - [anon_sym_RBRACE] = ACTIONS(3799), - [anon_sym_EQ] = ACTIONS(3793), + [anon_sym_RBRACE] = ACTIONS(3783), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3793), + [anon_sym_COLON] = ACTIONS(917), }, [1652] = { [sym_command_substitution] = STATE(116), @@ -52870,59 +52854,214 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1664), - [sym_concatenation] = STATE(1664), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3801), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3801), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3801), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3801), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3803), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3805), - [anon_sym_RBRACE] = ACTIONS(3807), - [anon_sym_EQ] = ACTIONS(3801), + [anon_sym_RBRACE] = ACTIONS(3785), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3801), + [anon_sym_COLON] = ACTIONS(917), }, [1653] = { - [sym_command_substitution] = STATE(787), - [aux_sym__literal_repeat1] = STATE(788), - [sym_string] = STATE(787), - [sym_array] = STATE(786), - [sym_process_substitution] = STATE(787), - [sym_simple_expansion] = STATE(787), - [sym_string_expansion] = STATE(787), - [sym_concatenation] = STATE(786), - [sym_expansion] = STATE(787), - [anon_sym_LPAREN] = ACTIONS(3809), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3811), - [anon_sym_DOLLAR] = ACTIONS(2428), - [anon_sym_BQUOTE] = ACTIONS(2931), - [anon_sym_GT_LPAREN] = ACTIONS(2929), - [sym_number] = ACTIONS(3813), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_word] = ACTIONS(3813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2925), - [anon_sym_LT_LPAREN] = ACTIONS(2929), - [sym_ansii_c_string] = ACTIONS(3811), - [sym__special_character] = ACTIONS(3815), - [sym__empty_value] = ACTIONS(3817), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(3787), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(917), }, [1654] = { + [sym_string] = STATE(775), + [anon_sym__] = ACTIONS(2598), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2600), + [sym_raw_string] = ACTIONS(2606), + [anon_sym_BANG] = ACTIONS(2600), + [anon_sym_DOLLAR] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_0] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2604), + [aux_sym__simple_variable_name_token1] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2604), + }, + [1655] = { + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1663), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(3789), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(3791), + [anon_sym_BQUOTE] = ACTIONS(273), + }, + [1656] = { + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(3793), + }, + [1657] = { + [anon_sym_RPAREN] = ACTIONS(3795), + [sym_comment] = ACTIONS(41), + }, + [1658] = { + [sym_command_substitution] = STATE(782), + [sym_string] = STATE(782), + [sym_process_substitution] = STATE(782), + [sym_simple_expansion] = STATE(782), + [sym_string_expansion] = STATE(782), + [sym_expansion] = STATE(782), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2585), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_number] = ACTIONS(2589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_word] = ACTIONS(2589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [sym_ansii_c_string] = ACTIONS(2585), + [sym__special_character] = ACTIONS(2585), + }, + [1659] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1667), + [sym_concatenation] = STATE(1667), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3797), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3797), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3797), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3799), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3801), + [anon_sym_RBRACE] = ACTIONS(3803), + [anon_sym_EQ] = ACTIONS(3797), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3797), + }, + [1660] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1672), + [sym_concatenation] = STATE(1672), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(3805), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(3805), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(3805), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(3805), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(3807), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(3809), + [anon_sym_RBRACE] = ACTIONS(3811), + [anon_sym_EQ] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3805), + }, + [1661] = { + [sym_command_substitution] = STATE(788), + [aux_sym__literal_repeat1] = STATE(789), + [sym_string] = STATE(788), + [sym_array] = STATE(787), + [sym_process_substitution] = STATE(788), + [sym_simple_expansion] = STATE(788), + [sym_string_expansion] = STATE(788), + [sym_concatenation] = STATE(787), + [sym_expansion] = STATE(788), + [anon_sym_LPAREN] = ACTIONS(3813), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3815), + [anon_sym_DOLLAR] = ACTIONS(3817), + [anon_sym_BQUOTE] = ACTIONS(2989), + [anon_sym_GT_LPAREN] = ACTIONS(2987), + [sym_number] = ACTIONS(3819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2977), + [sym_word] = ACTIONS(3819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2983), + [anon_sym_LT_LPAREN] = ACTIONS(2987), + [sym_ansii_c_string] = ACTIONS(3815), + [sym__special_character] = ACTIONS(3821), + [sym__empty_value] = ACTIONS(3823), + }, + [1662] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -52931,26 +53070,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3819), + [anon_sym_DQUOTE] = ACTIONS(3825), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1655] = { + [1663] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3819), + [anon_sym_DQUOTE] = ACTIONS(3825), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3821), + [anon_sym_DOLLAR] = ACTIONS(3827), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1656] = { + [1664] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_BQUOTE] = ACTIONS(333), @@ -52966,7 +53105,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(333), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3823), + [anon_sym_RPAREN] = ACTIONS(3829), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(333), @@ -52975,256 +53114,256 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym_ansii_c_string] = ACTIONS(333), }, - [1657] = { - [anon_sym_RPAREN] = ACTIONS(3823), + [1665] = { + [anon_sym_RPAREN] = ACTIONS(3829), [sym_comment] = ACTIONS(41), }, - [1658] = { + [1666] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1668), - [sym_concatenation] = STATE(1668), + [aux_sym_expansion_repeat1] = STATE(1676), + [sym_concatenation] = STATE(1676), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3831), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3825), + [anon_sym_COLON_DASH] = ACTIONS(3831), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3831), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3831), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3827), + [anon_sym_POUND] = ACTIONS(3833), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3829), - [anon_sym_EQ] = ACTIONS(3825), + [anon_sym_RBRACE] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(3831), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3825), - [sym_regex] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3831), + [sym_regex] = ACTIONS(3837), }, - [1659] = { + [1667] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3829), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1660] = { + [1668] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1668), - [sym_concatenation] = STATE(1668), + [aux_sym_expansion_repeat1] = STATE(1676), + [sym_concatenation] = STATE(1676), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3831), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3825), + [anon_sym_COLON_DASH] = ACTIONS(3831), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3831), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3831), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3827), + [anon_sym_POUND] = ACTIONS(3833), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3833), - [anon_sym_RBRACE] = ACTIONS(3829), - [anon_sym_EQ] = ACTIONS(3825), + [anon_sym_SLASH] = ACTIONS(3839), + [anon_sym_RBRACE] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(3831), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_COLON] = ACTIONS(3831), }, - [1661] = { + [1669] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1672), - [sym_concatenation] = STATE(1672), + [aux_sym_expansion_repeat1] = STATE(1680), + [sym_concatenation] = STATE(1680), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_DASH] = ACTIONS(3841), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3835), + [anon_sym_COLON_DASH] = ACTIONS(3841), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3835), + [anon_sym_COLON_QMARK] = ACTIONS(3841), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3835), + [anon_sym_PERCENT] = ACTIONS(3841), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3837), + [anon_sym_POUND] = ACTIONS(3843), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3839), - [anon_sym_RBRACE] = ACTIONS(3841), - [anon_sym_EQ] = ACTIONS(3835), + [anon_sym_SLASH] = ACTIONS(3845), + [anon_sym_RBRACE] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3841), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3835), + [anon_sym_COLON] = ACTIONS(3841), }, - [1662] = { - [sym_command_substitution] = STATE(1673), - [aux_sym__literal_repeat1] = STATE(1674), - [sym_string] = STATE(1673), - [sym_process_substitution] = STATE(1673), - [sym_simple_expansion] = STATE(1673), - [sym_string_expansion] = STATE(1673), - [sym_concatenation] = STATE(1675), - [sym_expansion] = STATE(1673), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3843), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(3829), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(3845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(3845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3843), - [sym__special_character] = ACTIONS(947), + [1670] = { + [sym_command_substitution] = STATE(1681), + [aux_sym__literal_repeat1] = STATE(1682), + [sym_string] = STATE(1681), + [sym_process_substitution] = STATE(1681), + [sym_simple_expansion] = STATE(1681), + [sym_string_expansion] = STATE(1681), + [sym_concatenation] = STATE(1683), + [sym_expansion] = STATE(1681), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(3835), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(3851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(3851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(3849), + [sym__special_character] = ACTIONS(949), }, - [1663] = { + [1671] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1677), - [sym_concatenation] = STATE(1677), + [aux_sym_expansion_repeat1] = STATE(1685), + [sym_concatenation] = STATE(1685), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3853), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3847), + [anon_sym_COLON_DASH] = ACTIONS(3853), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3853), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3853), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3849), + [anon_sym_POUND] = ACTIONS(3855), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3851), - [anon_sym_EQ] = ACTIONS(3847), + [anon_sym_RBRACE] = ACTIONS(3857), + [anon_sym_EQ] = ACTIONS(3853), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3847), - [sym_regex] = ACTIONS(3853), + [anon_sym_COLON] = ACTIONS(3853), + [sym_regex] = ACTIONS(3859), }, - [1664] = { + [1672] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3851), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3857), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1665] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(1678), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(1678), - [sym_expansion] = STATE(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [sym_ansii_c_string] = ACTIONS(1015), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(3855), - [sym__special_character] = ACTIONS(1029), - [sym_number] = ACTIONS(1017), - [anon_sym_GT_LPAREN] = ACTIONS(1023), + [1673] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(1686), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(1686), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(3861), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), }, - [1666] = { + [1674] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -53233,668 +53372,694 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_DQUOTE] = ACTIONS(3863), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1667] = { + [1675] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1679), - [sym_concatenation] = STATE(1679), + [aux_sym_expansion_repeat1] = STATE(1687), + [sym_concatenation] = STATE(1687), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3865), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3859), + [anon_sym_COLON_DASH] = ACTIONS(3865), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3865), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3865), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3861), + [anon_sym_POUND] = ACTIONS(3867), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3863), - [anon_sym_EQ] = ACTIONS(3859), + [anon_sym_RBRACE] = ACTIONS(3869), + [anon_sym_EQ] = ACTIONS(3865), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3865), }, - [1668] = { + [1676] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3863), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3869), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1669] = { + [1677] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1679), - [sym_concatenation] = STATE(1679), + [aux_sym_expansion_repeat1] = STATE(1687), + [sym_concatenation] = STATE(1687), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3865), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3859), + [anon_sym_COLON_DASH] = ACTIONS(3865), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3865), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3865), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3861), + [anon_sym_POUND] = ACTIONS(3867), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3863), - [anon_sym_EQ] = ACTIONS(3859), + [anon_sym_RBRACE] = ACTIONS(3869), + [anon_sym_EQ] = ACTIONS(3865), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3859), - [sym_regex] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3865), + [sym_regex] = ACTIONS(3871), }, - [1670] = { - [sym_command_substitution] = STATE(1681), - [aux_sym__literal_repeat1] = STATE(1682), - [sym_string] = STATE(1681), - [sym_process_substitution] = STATE(1681), - [sym_simple_expansion] = STATE(1681), - [sym_string_expansion] = STATE(1681), - [sym_concatenation] = STATE(1683), - [sym_expansion] = STATE(1681), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3867), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(3863), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(3869), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(3869), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3867), - [sym__special_character] = ACTIONS(947), + [1678] = { + [sym_command_substitution] = STATE(1689), + [aux_sym__literal_repeat1] = STATE(1690), + [sym_string] = STATE(1689), + [sym_process_substitution] = STATE(1689), + [sym_simple_expansion] = STATE(1689), + [sym_string_expansion] = STATE(1689), + [sym_concatenation] = STATE(1691), + [sym_expansion] = STATE(1689), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(3873), + [sym__special_character] = ACTIONS(949), }, - [1671] = { + [1679] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1685), - [sym_concatenation] = STATE(1685), + [aux_sym_expansion_repeat1] = STATE(1693), + [sym_concatenation] = STATE(1693), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_DASH] = ACTIONS(3877), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3871), + [anon_sym_COLON_DASH] = ACTIONS(3877), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3871), + [anon_sym_COLON_QMARK] = ACTIONS(3877), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3871), + [anon_sym_PERCENT] = ACTIONS(3877), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3873), + [anon_sym_POUND] = ACTIONS(3879), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3875), - [anon_sym_EQ] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3881), + [anon_sym_EQ] = ACTIONS(3877), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3871), - [sym_regex] = ACTIONS(3877), + [anon_sym_COLON] = ACTIONS(3877), + [sym_regex] = ACTIONS(3883), }, - [1672] = { + [1680] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3875), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3881), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1673] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1681] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3863), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(3869), + [sym__concat] = ACTIONS(1298), }, - [1674] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(3879), + [1682] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(3885), [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1300), }, - [1675] = { - [anon_sym_RBRACE] = ACTIONS(3863), + [1683] = { + [anon_sym_RBRACE] = ACTIONS(3869), [sym_comment] = ACTIONS(41), }, - [1676] = { + [1684] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1686), - [sym_concatenation] = STATE(1686), + [aux_sym_expansion_repeat1] = STATE(1694), + [sym_concatenation] = STATE(1694), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3887), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3881), + [anon_sym_COLON_DASH] = ACTIONS(3887), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3881), + [anon_sym_COLON_QMARK] = ACTIONS(3887), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_PERCENT] = ACTIONS(3887), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3883), + [anon_sym_POUND] = ACTIONS(3889), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3885), - [anon_sym_EQ] = ACTIONS(3881), + [anon_sym_RBRACE] = ACTIONS(3891), + [anon_sym_EQ] = ACTIONS(3887), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3881), + [anon_sym_COLON] = ACTIONS(3887), }, - [1677] = { + [1685] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3885), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3891), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1678] = { - [sym_command_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_string] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym_for_statement_repeat1] = STATE(280), - [sym_simple_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [sym_concatenation] = STATE(280), - [sym_expansion] = STATE(221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1015), - [sym_word] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [sym_ansii_c_string] = ACTIONS(1015), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(3887), - [sym__special_character] = ACTIONS(1029), - [sym_number] = ACTIONS(1017), - [anon_sym_GT_LPAREN] = ACTIONS(1023), + [1686] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(281), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(281), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(3893), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), }, - [1679] = { + [1687] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3889), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1680] = { + [1688] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1687), - [sym_concatenation] = STATE(1687), + [aux_sym_expansion_repeat1] = STATE(1695), + [sym_concatenation] = STATE(1695), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3891), + [anon_sym_DASH] = ACTIONS(3897), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3891), + [anon_sym_COLON_DASH] = ACTIONS(3897), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3891), + [anon_sym_COLON_QMARK] = ACTIONS(3897), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_PERCENT] = ACTIONS(3897), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3893), + [anon_sym_POUND] = ACTIONS(3899), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3889), - [anon_sym_EQ] = ACTIONS(3891), + [anon_sym_RBRACE] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3891), + [anon_sym_COLON] = ACTIONS(3897), }, - [1681] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1689] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3889), - [sym__concat] = ACTIONS(1294), - }, - [1682] = { - [aux_sym__literal_repeat1] = STATE(1135), [anon_sym_RBRACE] = ACTIONS(3895), + [sym__concat] = ACTIONS(1298), + }, + [1690] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(3901), [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1300), }, - [1683] = { - [anon_sym_RBRACE] = ACTIONS(3889), + [1691] = { + [anon_sym_RBRACE] = ACTIONS(3895), [sym_comment] = ACTIONS(41), }, - [1684] = { + [1692] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1688), - [sym_concatenation] = STATE(1688), + [aux_sym_expansion_repeat1] = STATE(1696), + [sym_concatenation] = STATE(1696), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3897), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3897), + [anon_sym_COLON_DASH] = ACTIONS(3903), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3897), + [anon_sym_COLON_QMARK] = ACTIONS(3903), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3897), + [anon_sym_PERCENT] = ACTIONS(3903), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3899), + [anon_sym_POUND] = ACTIONS(3905), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3901), - [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_RBRACE] = ACTIONS(3907), + [anon_sym_EQ] = ACTIONS(3903), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3903), }, - [1685] = { + [1693] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3901), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3907), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1686] = { + [1694] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3903), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1687] = { + [1695] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3905), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1688] = { + [1696] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3907), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3913), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1689] = { - [sym_string] = STATE(811), - [anon_sym__] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2616), - [sym_raw_string] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_DOLLAR] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2616), + [1697] = { + [sym_string] = STATE(812), + [anon_sym__] = ACTIONS(2618), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(2620), + [sym_raw_string] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_DOLLAR] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2620), [anon_sym_DQUOTE] = ACTIONS(301), - [anon_sym_0] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2620), - [aux_sym__simple_variable_name_token1] = ACTIONS(2614), - [anon_sym_QMARK] = ACTIONS(2620), + [anon_sym_0] = ACTIONS(2618), + [anon_sym_STAR] = ACTIONS(2624), + [aux_sym__simple_variable_name_token1] = ACTIONS(2618), + [anon_sym_QMARK] = ACTIONS(2624), }, - [1690] = { + [1698] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1697), + [aux_sym_string_repeat1] = STATE(1706), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3909), + [anon_sym_DQUOTE] = ACTIONS(3915), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3917), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1691] = { + [1699] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3913), + [anon_sym_BQUOTE] = ACTIONS(3919), }, - [1692] = { - [anon_sym_RPAREN] = ACTIONS(3915), + [1700] = { + [anon_sym_RPAREN] = ACTIONS(3921), [sym_comment] = ACTIONS(41), }, - [1693] = { - [sym_command_substitution] = STATE(818), - [sym_string] = STATE(818), - [sym_process_substitution] = STATE(818), - [sym_simple_expansion] = STATE(818), - [sym_string_expansion] = STATE(818), - [sym_expansion] = STATE(818), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1382), + [1701] = { + [sym_command_substitution] = STATE(819), + [sym_string] = STATE(819), + [sym_process_substitution] = STATE(819), + [sym_simple_expansion] = STATE(819), + [sym_string_expansion] = STATE(819), + [sym_expansion] = STATE(819), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1386), [anon_sym_DOLLAR] = ACTIONS(289), [anon_sym_BQUOTE] = ACTIONS(293), [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym_number] = ACTIONS(1384), + [sym_number] = ACTIONS(1388), [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), [anon_sym_DQUOTE] = ACTIONS(301), - [sym_word] = ACTIONS(1384), + [sym_word] = ACTIONS(1388), [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(1382), - [sym__special_character] = ACTIONS(1382), + [sym_ansii_c_string] = ACTIONS(1386), + [sym__special_character] = ACTIONS(1386), }, - [1694] = { + [1702] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1701), - [sym_concatenation] = STATE(1701), + [aux_sym_expansion_repeat1] = STATE(1710), + [sym_concatenation] = STATE(1710), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3923), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3919), + [anon_sym_POUND] = ACTIONS(3925), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3921), + [anon_sym_SLASH] = ACTIONS(3927), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_DASH] = ACTIONS(3923), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3917), - [anon_sym_EQ] = ACTIONS(3917), + [anon_sym_COLON_DASH] = ACTIONS(3923), + [anon_sym_EQ] = ACTIONS(3923), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3917), + [anon_sym_COLON_QMARK] = ACTIONS(3923), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3923), + [anon_sym_RBRACE] = ACTIONS(3929), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3917), + [anon_sym_COLON] = ACTIONS(3923), [sym__special_character] = ACTIONS(459), }, - [1695] = { + [1703] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1706), - [sym_concatenation] = STATE(1706), + [aux_sym_expansion_repeat1] = STATE(1715), + [sym_concatenation] = STATE(1715), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3931), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3927), + [anon_sym_POUND] = ACTIONS(3933), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3929), + [anon_sym_SLASH] = ACTIONS(3935), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3931), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3925), - [anon_sym_EQ] = ACTIONS(3925), + [anon_sym_COLON_DASH] = ACTIONS(3931), + [anon_sym_EQ] = ACTIONS(3931), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3931), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3931), + [anon_sym_RBRACE] = ACTIONS(3937), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_COLON] = ACTIONS(3931), [sym__special_character] = ACTIONS(459), }, - [1696] = { + [1704] = { + [sym_command_substitution] = STATE(825), + [aux_sym__literal_repeat1] = STATE(826), + [sym_string] = STATE(825), + [sym_array] = STATE(824), + [sym_process_substitution] = STATE(825), + [sym_simple_expansion] = STATE(825), + [sym_string_expansion] = STATE(825), + [sym_concatenation] = STATE(824), + [sym_expansion] = STATE(825), + [anon_sym_LPAREN] = ACTIONS(3939), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(2432), + [anon_sym_BQUOTE] = ACTIONS(2935), + [anon_sym_GT_LPAREN] = ACTIONS(2933), + [sym_number] = ACTIONS(3943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym_word] = ACTIONS(3943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2929), + [anon_sym_LT_LPAREN] = ACTIONS(2933), + [sym_ansii_c_string] = ACTIONS(3941), + [sym__special_character] = ACTIONS(3945), + [sym__empty_value] = ACTIONS(3947), + }, + [1705] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -53903,26 +54068,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3949), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1697] = { + [1706] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3949), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3951), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1698] = { + [1707] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -53935,7 +54100,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3937), + [anon_sym_RPAREN] = ACTIONS(3953), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -53947,231 +54112,256 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [1699] = { - [anon_sym_RPAREN] = ACTIONS(3937), + [1708] = { + [anon_sym_RPAREN] = ACTIONS(3953), [sym_comment] = ACTIONS(41), }, - [1700] = { + [1709] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1709), - [sym_concatenation] = STATE(1709), + [aux_sym_expansion_repeat1] = STATE(1719), + [sym_concatenation] = STATE(1719), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_PERCENT] = ACTIONS(3955), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3941), + [anon_sym_POUND] = ACTIONS(3957), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3939), - [anon_sym_COLON_DASH] = ACTIONS(3939), + [anon_sym_RBRACE] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_COLON_DASH] = ACTIONS(3955), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_EQ] = ACTIONS(3955), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3939), + [anon_sym_COLON_QMARK] = ACTIONS(3955), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3955), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3945), + [sym_regex] = ACTIONS(3961), }, - [1701] = { + [1710] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1702] = { + [1711] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1709), - [sym_concatenation] = STATE(1709), + [aux_sym_expansion_repeat1] = STATE(1719), + [sym_concatenation] = STATE(1719), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_PERCENT] = ACTIONS(3955), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3941), + [anon_sym_POUND] = ACTIONS(3957), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3963), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3939), + [anon_sym_DASH] = ACTIONS(3955), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON_DASH] = ACTIONS(3955), + [anon_sym_EQ] = ACTIONS(3955), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3939), + [anon_sym_COLON_QMARK] = ACTIONS(3955), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3959), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3955), [sym__special_character] = ACTIONS(459), }, - [1703] = { + [1712] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1713), - [sym_concatenation] = STATE(1713), + [aux_sym_expansion_repeat1] = STATE(1723), + [sym_concatenation] = STATE(1723), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3965), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3951), + [anon_sym_POUND] = ACTIONS(3967), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3953), + [anon_sym_SLASH] = ACTIONS(3969), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3965), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3949), - [anon_sym_EQ] = ACTIONS(3949), + [anon_sym_COLON_DASH] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3965), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3965), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3955), + [anon_sym_RBRACE] = ACTIONS(3971), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3965), [sym__special_character] = ACTIONS(459), }, - [1704] = { - [sym_command_substitution] = STATE(1714), - [aux_sym__literal_repeat1] = STATE(1715), - [sym_string] = STATE(1714), - [sym_process_substitution] = STATE(1714), - [sym_simple_expansion] = STATE(1714), - [sym_string_expansion] = STATE(1714), - [sym_concatenation] = STATE(1716), - [sym_expansion] = STATE(1714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3957), - [sym_word] = ACTIONS(3959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(3957), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(3943), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(3959), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1713] = { + [sym_command_substitution] = STATE(1724), + [aux_sym__literal_repeat1] = STATE(1725), + [sym_string] = STATE(1724), + [sym_process_substitution] = STATE(1724), + [sym_simple_expansion] = STATE(1724), + [sym_string_expansion] = STATE(1724), + [sym_concatenation] = STATE(1726), + [sym_expansion] = STATE(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3973), + [sym_word] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3973), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(3959), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1705] = { + [1714] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1718), - [sym_concatenation] = STATE(1718), + [aux_sym_expansion_repeat1] = STATE(1728), + [sym_concatenation] = STATE(1728), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3977), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3963), + [anon_sym_POUND] = ACTIONS(3979), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3965), - [anon_sym_DASH] = ACTIONS(3961), - [anon_sym_COLON_DASH] = ACTIONS(3961), + [anon_sym_RBRACE] = ACTIONS(3981), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_COLON_DASH] = ACTIONS(3977), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3977), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3977), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_COLON] = ACTIONS(3977), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3967), + [sym_regex] = ACTIONS(3983), }, - [1706] = { + [1715] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3965), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3981), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1707] = { + [1716] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(1729), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(1729), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(3985), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), + }, + [1717] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -54180,643 +54370,668 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3987), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1708] = { + [1718] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1719), - [sym_concatenation] = STATE(1719), + [aux_sym_expansion_repeat1] = STATE(1730), + [sym_concatenation] = STATE(1730), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3971), + [anon_sym_PERCENT] = ACTIONS(3989), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3973), + [anon_sym_POUND] = ACTIONS(3991), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_COLON_DASH] = ACTIONS(3971), + [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_COLON_DASH] = ACTIONS(3989), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_EQ] = ACTIONS(3989), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3971), + [anon_sym_COLON_QMARK] = ACTIONS(3989), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3989), [sym__special_character] = ACTIONS(459), }, - [1709] = { + [1719] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1710] = { + [1720] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1719), - [sym_concatenation] = STATE(1719), + [aux_sym_expansion_repeat1] = STATE(1730), + [sym_concatenation] = STATE(1730), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3971), + [anon_sym_PERCENT] = ACTIONS(3989), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3973), + [anon_sym_POUND] = ACTIONS(3991), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_COLON_DASH] = ACTIONS(3971), + [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_COLON_DASH] = ACTIONS(3989), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_EQ] = ACTIONS(3989), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3971), + [anon_sym_COLON_QMARK] = ACTIONS(3989), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3989), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3977), + [sym_regex] = ACTIONS(3995), }, - [1711] = { - [sym_command_substitution] = STATE(1721), - [aux_sym__literal_repeat1] = STATE(1722), - [sym_string] = STATE(1721), - [sym_process_substitution] = STATE(1721), - [sym_simple_expansion] = STATE(1721), - [sym_string_expansion] = STATE(1721), - [sym_concatenation] = STATE(1723), - [sym_expansion] = STATE(1721), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3979), - [sym_word] = ACTIONS(3981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(3979), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(3975), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(3981), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1721] = { + [sym_command_substitution] = STATE(1732), + [aux_sym__literal_repeat1] = STATE(1733), + [sym_string] = STATE(1732), + [sym_process_substitution] = STATE(1732), + [sym_simple_expansion] = STATE(1732), + [sym_string_expansion] = STATE(1732), + [sym_concatenation] = STATE(1734), + [sym_expansion] = STATE(1732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3997), + [sym_word] = ACTIONS(3999), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(3997), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(3993), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(3999), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1712] = { + [1722] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1725), - [sym_concatenation] = STATE(1725), + [aux_sym_expansion_repeat1] = STATE(1736), + [sym_concatenation] = STATE(1736), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3983), + [anon_sym_PERCENT] = ACTIONS(4001), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3985), + [anon_sym_POUND] = ACTIONS(4003), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3987), - [anon_sym_DASH] = ACTIONS(3983), - [anon_sym_COLON_DASH] = ACTIONS(3983), + [anon_sym_RBRACE] = ACTIONS(4005), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_COLON_DASH] = ACTIONS(4001), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3983), + [anon_sym_EQ] = ACTIONS(4001), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3983), + [anon_sym_COLON_QMARK] = ACTIONS(4001), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3983), + [anon_sym_COLON] = ACTIONS(4001), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3989), + [sym_regex] = ACTIONS(4007), }, - [1713] = { + [1723] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3987), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4005), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1714] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1724] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3975), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(3993), + [sym__concat] = ACTIONS(1298), }, - [1715] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(3991), + [1725] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(4009), [sym_comment] = ACTIONS(41), }, - [1716] = { - [anon_sym_RBRACE] = ACTIONS(3975), + [1726] = { + [anon_sym_RBRACE] = ACTIONS(3993), [sym_comment] = ACTIONS(41), }, - [1717] = { + [1727] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1726), - [sym_concatenation] = STATE(1726), + [aux_sym_expansion_repeat1] = STATE(1737), + [sym_concatenation] = STATE(1737), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3993), + [anon_sym_PERCENT] = ACTIONS(4011), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3995), + [anon_sym_POUND] = ACTIONS(4013), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_DASH] = ACTIONS(3993), - [anon_sym_COLON_DASH] = ACTIONS(3993), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(4011), + [anon_sym_COLON_DASH] = ACTIONS(4011), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3993), + [anon_sym_EQ] = ACTIONS(4011), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3993), + [anon_sym_COLON_QMARK] = ACTIONS(4011), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3993), + [anon_sym_COLON] = ACTIONS(4011), [sym__special_character] = ACTIONS(459), }, - [1718] = { + [1728] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3997), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1719] = { + [1729] = { + [sym_command_substitution] = STATE(222), + [aux_sym__literal_repeat1] = STATE(224), + [sym_string] = STATE(222), + [sym_process_substitution] = STATE(222), + [aux_sym_for_statement_repeat1] = STATE(281), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_concatenation] = STATE(281), + [sym_expansion] = STATE(222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1017), + [sym_word] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [sym_ansii_c_string] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(4017), + [sym__special_character] = ACTIONS(1031), + [sym_number] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1025), + }, + [1730] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1720] = { + [1731] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1727), - [sym_concatenation] = STATE(1727), + [aux_sym_expansion_repeat1] = STATE(1738), + [sym_concatenation] = STATE(1738), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4001), + [anon_sym_PERCENT] = ACTIONS(4021), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4003), + [anon_sym_POUND] = ACTIONS(4023), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(4001), - [anon_sym_COLON_DASH] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(4021), + [anon_sym_COLON_DASH] = ACTIONS(4021), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(4021), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4001), + [anon_sym_COLON_QMARK] = ACTIONS(4021), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4001), + [anon_sym_COLON] = ACTIONS(4021), [sym__special_character] = ACTIONS(459), }, - [1721] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1732] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3999), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(4019), + [sym__concat] = ACTIONS(1298), }, - [1722] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(4005), + [1733] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(4025), [sym_comment] = ACTIONS(41), }, - [1723] = { - [anon_sym_RBRACE] = ACTIONS(3999), + [1734] = { + [anon_sym_RBRACE] = ACTIONS(4019), [sym_comment] = ACTIONS(41), }, - [1724] = { + [1735] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1728), - [sym_concatenation] = STATE(1728), + [aux_sym_expansion_repeat1] = STATE(1739), + [sym_concatenation] = STATE(1739), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4007), + [anon_sym_PERCENT] = ACTIONS(4027), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4009), + [anon_sym_POUND] = ACTIONS(4029), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4007), - [anon_sym_COLON_DASH] = ACTIONS(4007), + [anon_sym_RBRACE] = ACTIONS(4031), + [anon_sym_DASH] = ACTIONS(4027), + [anon_sym_COLON_DASH] = ACTIONS(4027), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4007), + [anon_sym_EQ] = ACTIONS(4027), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4007), + [anon_sym_COLON_QMARK] = ACTIONS(4027), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4007), + [anon_sym_COLON] = ACTIONS(4027), [sym__special_character] = ACTIONS(459), }, - [1725] = { + [1736] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4031), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1726] = { + [1737] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4033), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1727] = { + [1738] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1728] = { + [1739] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1729] = { - [sym_string] = STATE(843), - [anon_sym__] = ACTIONS(2648), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4019), - [sym_raw_string] = ACTIONS(4021), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_DOLLAR] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_0] = ACTIONS(2648), - [anon_sym_STAR] = ACTIONS(4023), - [aux_sym__simple_variable_name_token1] = ACTIONS(2648), - [anon_sym_QMARK] = ACTIONS(4023), + [1740] = { + [sym_string] = STATE(849), + [anon_sym__] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4039), + [sym_raw_string] = ACTIONS(4041), + [anon_sym_BANG] = ACTIONS(4039), + [anon_sym_DOLLAR] = ACTIONS(4039), + [anon_sym_AT] = ACTIONS(4043), + [anon_sym_DASH] = ACTIONS(4039), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_0] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(4043), + [aux_sym__simple_variable_name_token1] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(4043), }, - [1730] = { + [1741] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1737), + [aux_sym_string_repeat1] = STATE(1748), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4025), + [anon_sym_DQUOTE] = ACTIONS(4045), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4027), + [anon_sym_DOLLAR] = ACTIONS(4047), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1731] = { + [1742] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4029), + [anon_sym_BQUOTE] = ACTIONS(4049), }, - [1732] = { - [anon_sym_RPAREN] = ACTIONS(4031), + [1743] = { + [anon_sym_RPAREN] = ACTIONS(4051), [sym_comment] = ACTIONS(41), }, - [1733] = { - [sym_command_substitution] = STATE(850), - [sym_string] = STATE(850), - [sym_process_substitution] = STATE(850), - [sym_simple_expansion] = STATE(850), - [sym_string_expansion] = STATE(850), - [sym_expansion] = STATE(850), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2629), - [anon_sym_DOLLAR] = ACTIONS(1958), - [anon_sym_BQUOTE] = ACTIONS(2633), - [anon_sym_GT_LPAREN] = ACTIONS(2635), - [sym_number] = ACTIONS(2637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_word] = ACTIONS(2637), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2643), - [anon_sym_LT_LPAREN] = ACTIONS(2635), - [sym_ansii_c_string] = ACTIONS(2629), - [sym__special_character] = ACTIONS(2629), + [1744] = { + [sym_command_substitution] = STATE(856), + [sym_string] = STATE(856), + [sym_process_substitution] = STATE(856), + [sym_simple_expansion] = STATE(856), + [sym_string_expansion] = STATE(856), + [sym_expansion] = STATE(856), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2633), + [anon_sym_DOLLAR] = ACTIONS(1962), + [anon_sym_BQUOTE] = ACTIONS(2637), + [anon_sym_GT_LPAREN] = ACTIONS(2639), + [sym_number] = ACTIONS(2641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_word] = ACTIONS(2641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2647), + [anon_sym_LT_LPAREN] = ACTIONS(2639), + [sym_ansii_c_string] = ACTIONS(2633), + [sym__special_character] = ACTIONS(2633), }, - [1734] = { + [1745] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1741), - [sym_concatenation] = STATE(1741), + [aux_sym_expansion_repeat1] = STATE(1752), + [sym_concatenation] = STATE(1752), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4033), + [anon_sym_DASH] = ACTIONS(4053), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4033), + [anon_sym_COLON_DASH] = ACTIONS(4053), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4033), + [anon_sym_COLON_QMARK] = ACTIONS(4053), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4033), + [anon_sym_PERCENT] = ACTIONS(4053), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4035), + [anon_sym_POUND] = ACTIONS(4055), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4037), - [anon_sym_RBRACE] = ACTIONS(4039), - [anon_sym_EQ] = ACTIONS(4033), + [anon_sym_SLASH] = ACTIONS(4057), + [anon_sym_RBRACE] = ACTIONS(4059), + [anon_sym_EQ] = ACTIONS(4053), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(4053), }, - [1735] = { + [1746] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1746), - [sym_concatenation] = STATE(1746), + [aux_sym_expansion_repeat1] = STATE(1757), + [sym_concatenation] = STATE(1757), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4041), + [anon_sym_DASH] = ACTIONS(4061), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4041), + [anon_sym_COLON_DASH] = ACTIONS(4061), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4041), + [anon_sym_COLON_QMARK] = ACTIONS(4061), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4041), + [anon_sym_PERCENT] = ACTIONS(4061), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4043), + [anon_sym_POUND] = ACTIONS(4063), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4045), - [anon_sym_RBRACE] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(4041), + [anon_sym_SLASH] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(4067), + [anon_sym_EQ] = ACTIONS(4061), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4041), + [anon_sym_COLON] = ACTIONS(4061), }, - [1736] = { + [1747] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -54825,26 +55040,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4069), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1737] = { + [1748] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4069), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4051), + [anon_sym_DOLLAR] = ACTIONS(4071), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1738] = { + [1749] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_BQUOTE] = ACTIONS(333), @@ -54860,7 +55075,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(333), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4053), + [anon_sym_RPAREN] = ACTIONS(4073), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(333), @@ -54869,231 +55084,231 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym_ansii_c_string] = ACTIONS(333), }, - [1739] = { - [anon_sym_RPAREN] = ACTIONS(4053), + [1750] = { + [anon_sym_RPAREN] = ACTIONS(4073), [sym_comment] = ACTIONS(41), }, - [1740] = { + [1751] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1749), - [sym_concatenation] = STATE(1749), + [aux_sym_expansion_repeat1] = STATE(1760), + [sym_concatenation] = STATE(1760), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4055), + [anon_sym_DASH] = ACTIONS(4075), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4055), + [anon_sym_COLON_DASH] = ACTIONS(4075), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4055), + [anon_sym_COLON_QMARK] = ACTIONS(4075), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4055), + [anon_sym_PERCENT] = ACTIONS(4075), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4057), + [anon_sym_POUND] = ACTIONS(4077), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4059), - [anon_sym_EQ] = ACTIONS(4055), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(4075), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4055), - [sym_regex] = ACTIONS(4061), + [anon_sym_COLON] = ACTIONS(4075), + [sym_regex] = ACTIONS(4081), }, - [1741] = { + [1752] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4059), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1742] = { + [1753] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1749), - [sym_concatenation] = STATE(1749), + [aux_sym_expansion_repeat1] = STATE(1760), + [sym_concatenation] = STATE(1760), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4055), + [anon_sym_DASH] = ACTIONS(4075), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4055), + [anon_sym_COLON_DASH] = ACTIONS(4075), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4055), + [anon_sym_COLON_QMARK] = ACTIONS(4075), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4055), + [anon_sym_PERCENT] = ACTIONS(4075), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4057), + [anon_sym_POUND] = ACTIONS(4077), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4063), - [anon_sym_RBRACE] = ACTIONS(4059), - [anon_sym_EQ] = ACTIONS(4055), + [anon_sym_SLASH] = ACTIONS(4083), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(4075), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4055), + [anon_sym_COLON] = ACTIONS(4075), }, - [1743] = { + [1754] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1753), - [sym_concatenation] = STATE(1753), + [aux_sym_expansion_repeat1] = STATE(1764), + [sym_concatenation] = STATE(1764), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4065), + [anon_sym_DASH] = ACTIONS(4085), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4065), + [anon_sym_COLON_DASH] = ACTIONS(4085), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4065), + [anon_sym_COLON_QMARK] = ACTIONS(4085), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4065), + [anon_sym_PERCENT] = ACTIONS(4085), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4067), + [anon_sym_POUND] = ACTIONS(4087), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4069), - [anon_sym_RBRACE] = ACTIONS(4071), - [anon_sym_EQ] = ACTIONS(4065), + [anon_sym_SLASH] = ACTIONS(4089), + [anon_sym_RBRACE] = ACTIONS(4091), + [anon_sym_EQ] = ACTIONS(4085), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4065), + [anon_sym_COLON] = ACTIONS(4085), }, - [1744] = { - [sym_command_substitution] = STATE(1754), - [aux_sym__literal_repeat1] = STATE(1755), - [sym_string] = STATE(1754), - [sym_process_substitution] = STATE(1754), - [sym_simple_expansion] = STATE(1754), - [sym_string_expansion] = STATE(1754), - [sym_concatenation] = STATE(1756), - [sym_expansion] = STATE(1754), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4073), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(4059), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(4075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(4075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4073), - [sym__special_character] = ACTIONS(947), + [1755] = { + [sym_command_substitution] = STATE(1765), + [aux_sym__literal_repeat1] = STATE(1766), + [sym_string] = STATE(1765), + [sym_process_substitution] = STATE(1765), + [sym_simple_expansion] = STATE(1765), + [sym_string_expansion] = STATE(1765), + [sym_concatenation] = STATE(1767), + [sym_expansion] = STATE(1765), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4093), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(4095), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(4095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(4093), + [sym__special_character] = ACTIONS(949), }, - [1745] = { + [1756] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1758), - [sym_concatenation] = STATE(1758), + [aux_sym_expansion_repeat1] = STATE(1769), + [sym_concatenation] = STATE(1769), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4097), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4077), + [anon_sym_COLON_DASH] = ACTIONS(4097), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4077), + [anon_sym_COLON_QMARK] = ACTIONS(4097), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4097), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4079), + [anon_sym_POUND] = ACTIONS(4099), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4081), - [anon_sym_EQ] = ACTIONS(4077), + [anon_sym_RBRACE] = ACTIONS(4101), + [anon_sym_EQ] = ACTIONS(4097), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4077), - [sym_regex] = ACTIONS(4083), + [anon_sym_COLON] = ACTIONS(4097), + [sym_regex] = ACTIONS(4103), }, - [1746] = { + [1757] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4081), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4101), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1747] = { + [1758] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -55102,278 +55317,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4085), + [anon_sym_DQUOTE] = ACTIONS(4105), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1748] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1759), - [sym_concatenation] = STATE(1759), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4087), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4087), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4087), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4087), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4089), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4091), - [anon_sym_EQ] = ACTIONS(4087), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4087), - }, - [1749] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4091), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - }, - [1750] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1759), - [sym_concatenation] = STATE(1759), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4087), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4087), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4087), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4087), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4089), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4091), - [anon_sym_EQ] = ACTIONS(4087), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4087), - [sym_regex] = ACTIONS(4093), - }, - [1751] = { - [sym_command_substitution] = STATE(1761), - [aux_sym__literal_repeat1] = STATE(1762), - [sym_string] = STATE(1761), - [sym_process_substitution] = STATE(1761), - [sym_simple_expansion] = STATE(1761), - [sym_string_expansion] = STATE(1761), - [sym_concatenation] = STATE(1763), - [sym_expansion] = STATE(1761), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(4091), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(4097), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(4097), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4095), - [sym__special_character] = ACTIONS(947), - }, - [1752] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1765), - [sym_concatenation] = STATE(1765), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4099), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4099), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4101), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_EQ] = ACTIONS(4099), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4099), - [sym_regex] = ACTIONS(4105), - }, - [1753] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4103), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - }, - [1754] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4091), - [sym__concat] = ACTIONS(1294), - }, - [1755] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4107), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), - }, - [1756] = { - [anon_sym_RBRACE] = ACTIONS(4091), - [sym_comment] = ACTIONS(41), - }, - [1757] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1766), - [sym_concatenation] = STATE(1766), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4109), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4109), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4109), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4109), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4111), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4113), - [anon_sym_EQ] = ACTIONS(4109), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4109), - }, - [1758] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4113), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - }, [1759] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), @@ -55381,30 +55330,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1770), + [sym_concatenation] = STATE(1770), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4107), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4107), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4107), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4107), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4109), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4115), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4111), + [anon_sym_EQ] = ACTIONS(4107), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4107), }, [1760] = { [sym_command_substitution] = STATE(116), @@ -55413,888 +55362,888 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1767), - [sym_concatenation] = STATE(1767), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4117), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4117), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4117), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4119), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4115), - [anon_sym_EQ] = ACTIONS(4117), + [anon_sym_RBRACE] = ACTIONS(4111), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4117), + [anon_sym_COLON] = ACTIONS(917), }, [1761] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4115), - [sym__concat] = ACTIONS(1294), - }, - [1762] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), - }, - [1763] = { - [anon_sym_RBRACE] = ACTIONS(4115), - [sym_comment] = ACTIONS(41), - }, - [1764] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1768), - [sym_concatenation] = STATE(1768), + [aux_sym_expansion_repeat1] = STATE(1770), + [sym_concatenation] = STATE(1770), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4107), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4123), + [anon_sym_COLON_DASH] = ACTIONS(4107), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4123), + [anon_sym_COLON_QMARK] = ACTIONS(4107), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4107), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4125), + [anon_sym_POUND] = ACTIONS(4109), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(4123), + [anon_sym_RBRACE] = ACTIONS(4111), + [anon_sym_EQ] = ACTIONS(4107), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4123), + [anon_sym_COLON] = ACTIONS(4107), + [sym_regex] = ACTIONS(4113), }, - [1765] = { + [1762] = { + [sym_command_substitution] = STATE(1772), + [aux_sym__literal_repeat1] = STATE(1773), + [sym_string] = STATE(1772), + [sym_process_substitution] = STATE(1772), + [sym_simple_expansion] = STATE(1772), + [sym_string_expansion] = STATE(1772), + [sym_concatenation] = STATE(1774), + [sym_expansion] = STATE(1772), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4115), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(4111), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(4117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(4117), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(4115), + [sym__special_character] = ACTIONS(949), + }, + [1763] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1776), + [sym_concatenation] = STATE(1776), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4119), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4119), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4119), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4119), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4121), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4127), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(4119), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4119), + [sym_regex] = ACTIONS(4125), }, - [1766] = { + [1764] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4129), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), + }, + [1765] = { + [aux_sym_concatenation_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4111), + [sym__concat] = ACTIONS(1298), + }, + [1766] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(4127), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1300), }, [1767] = { + [anon_sym_RBRACE] = ACTIONS(4111), + [sym_comment] = ACTIONS(41), + }, + [1768] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1777), + [sym_concatenation] = STATE(1777), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4129), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4129), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4129), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4129), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4131), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4131), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4133), + [anon_sym_EQ] = ACTIONS(4129), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4129), }, - [1768] = { + [1769] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_RBRACE] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - }, - [1769] = { - [sym_string] = STATE(875), - [anon_sym__] = ACTIONS(2678), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4135), - [sym_raw_string] = ACTIONS(4137), - [anon_sym_BANG] = ACTIONS(4135), - [anon_sym_DOLLAR] = ACTIONS(4135), - [anon_sym_AT] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4135), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_0] = ACTIONS(2678), - [anon_sym_STAR] = ACTIONS(4139), - [aux_sym__simple_variable_name_token1] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(917), }, [1770] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1777), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4141), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4143), - [anon_sym_BQUOTE] = ACTIONS(273), - }, - [1771] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4145), - }, - [1772] = { - [anon_sym_RPAREN] = ACTIONS(4147), - [sym_comment] = ACTIONS(41), - }, - [1773] = { - [sym_command_substitution] = STATE(882), - [sym_string] = STATE(882), - [sym_process_substitution] = STATE(882), - [sym_simple_expansion] = STATE(882), - [sym_string_expansion] = STATE(882), - [sym_expansion] = STATE(882), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2659), - [anon_sym_DOLLAR] = ACTIONS(1978), - [anon_sym_BQUOTE] = ACTIONS(2663), - [anon_sym_GT_LPAREN] = ACTIONS(2665), - [sym_number] = ACTIONS(2667), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_word] = ACTIONS(2667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2673), - [anon_sym_LT_LPAREN] = ACTIONS(2665), - [sym_ansii_c_string] = ACTIONS(2659), - [sym__special_character] = ACTIONS(2659), - }, - [1774] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1781), - [sym_concatenation] = STATE(1781), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4149), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4149), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4149), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4149), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4151), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4153), - [anon_sym_RBRACE] = ACTIONS(4155), - [anon_sym_EQ] = ACTIONS(4149), + [anon_sym_RBRACE] = ACTIONS(4135), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4149), + [anon_sym_COLON] = ACTIONS(917), }, - [1775] = { + [1771] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1786), - [sym_concatenation] = STATE(1786), + [aux_sym_expansion_repeat1] = STATE(1778), + [sym_concatenation] = STATE(1778), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4157), + [anon_sym_DASH] = ACTIONS(4137), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4157), + [anon_sym_COLON_DASH] = ACTIONS(4137), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4157), + [anon_sym_COLON_QMARK] = ACTIONS(4137), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4157), + [anon_sym_PERCENT] = ACTIONS(4137), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4159), + [anon_sym_POUND] = ACTIONS(4139), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4161), - [anon_sym_RBRACE] = ACTIONS(4163), - [anon_sym_EQ] = ACTIONS(4157), + [anon_sym_RBRACE] = ACTIONS(4135), + [anon_sym_EQ] = ACTIONS(4137), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4157), + [anon_sym_COLON] = ACTIONS(4137), }, - [1776] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4165), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), - }, - [1777] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4165), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_BQUOTE] = ACTIONS(273), + [1772] = { + [aux_sym_concatenation_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4135), + [sym__concat] = ACTIONS(1298), }, - [1778] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [1773] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(4141), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4169), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [sym__special_character] = ACTIONS(1300), }, - [1779] = { - [anon_sym_RPAREN] = ACTIONS(4169), + [1774] = { + [anon_sym_RBRACE] = ACTIONS(4135), [sym_comment] = ACTIONS(41), }, - [1780] = { + [1775] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1789), - [sym_concatenation] = STATE(1789), + [aux_sym_expansion_repeat1] = STATE(1779), + [sym_concatenation] = STATE(1779), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4143), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4171), + [anon_sym_COLON_DASH] = ACTIONS(4143), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4171), + [anon_sym_COLON_QMARK] = ACTIONS(4143), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4143), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4173), + [anon_sym_POUND] = ACTIONS(4145), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_RBRACE] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4143), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4171), - [sym_regex] = ACTIONS(4177), + [anon_sym_COLON] = ACTIONS(4143), }, - [1781] = { + [1776] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1782] = { + [1777] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1789), - [sym_concatenation] = STATE(1789), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4171), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4171), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4173), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_RBRACE] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(917), }, - [1783] = { + [1778] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1793), - [sym_concatenation] = STATE(1793), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4181), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4181), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4183), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4185), - [anon_sym_RBRACE] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4151), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(917), }, - [1784] = { - [sym_command_substitution] = STATE(1794), - [aux_sym__literal_repeat1] = STATE(1795), - [sym_string] = STATE(1794), - [sym_process_substitution] = STATE(1794), - [sym_simple_expansion] = STATE(1794), - [sym_string_expansion] = STATE(1794), - [sym_concatenation] = STATE(1796), - [sym_expansion] = STATE(1794), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4189), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(4175), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(4191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(4191), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4189), - [sym__special_character] = ACTIONS(947), - }, - [1785] = { + [1779] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1798), - [sym_concatenation] = STATE(1798), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4193), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4193), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4195), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4197), - [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_RBRACE] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4193), - [sym_regex] = ACTIONS(4199), + [anon_sym_COLON] = ACTIONS(917), }, - [1786] = { + [1780] = { + [sym_string] = STATE(881), + [anon_sym__] = ACTIONS(2682), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4155), + [sym_raw_string] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(4155), + [anon_sym_DOLLAR] = ACTIONS(4155), + [anon_sym_AT] = ACTIONS(4159), + [anon_sym_DASH] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_0] = ACTIONS(2682), + [anon_sym_STAR] = ACTIONS(4159), + [aux_sym__simple_variable_name_token1] = ACTIONS(2682), + [anon_sym_QMARK] = ACTIONS(4159), + }, + [1781] = { + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1788), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(4163), + [anon_sym_BQUOTE] = ACTIONS(273), + }, + [1782] = { + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4165), + }, + [1783] = { + [anon_sym_RPAREN] = ACTIONS(4167), + [sym_comment] = ACTIONS(41), + }, + [1784] = { + [sym_command_substitution] = STATE(888), + [sym_string] = STATE(888), + [sym_process_substitution] = STATE(888), + [sym_simple_expansion] = STATE(888), + [sym_string_expansion] = STATE(888), + [sym_expansion] = STATE(888), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2663), + [anon_sym_DOLLAR] = ACTIONS(1982), + [anon_sym_BQUOTE] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2669), + [sym_number] = ACTIONS(2671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2675), + [sym_word] = ACTIONS(2671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2677), + [anon_sym_LT_LPAREN] = ACTIONS(2669), + [sym_ansii_c_string] = ACTIONS(2663), + [sym__special_character] = ACTIONS(2663), + }, + [1785] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1792), + [sym_concatenation] = STATE(1792), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4169), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4169), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4169), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4169), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4171), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4197), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4175), + [anon_sym_EQ] = ACTIONS(4169), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - }, - [1787] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4201), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(4169), }, - [1788] = { + [1786] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1799), - [sym_concatenation] = STATE(1799), + [aux_sym_expansion_repeat1] = STATE(1797), + [sym_concatenation] = STATE(1797), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DASH] = ACTIONS(4177), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4203), + [anon_sym_COLON_DASH] = ACTIONS(4177), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4203), + [anon_sym_COLON_QMARK] = ACTIONS(4177), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4203), + [anon_sym_PERCENT] = ACTIONS(4177), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(4179), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4207), - [anon_sym_EQ] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(4177), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4203), + [anon_sym_COLON] = ACTIONS(4177), + }, + [1787] = { + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(4185), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), + }, + [1788] = { + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(160), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4185), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_BQUOTE] = ACTIONS(273), }, [1789] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + }, + [1790] = { + [anon_sym_RPAREN] = ACTIONS(4189), + [sym_comment] = ACTIONS(41), + }, + [1791] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1800), + [sym_concatenation] = STATE(1800), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4191), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4191), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4191), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4191), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4193), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4207), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_EQ] = ACTIONS(4191), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4191), + [sym_regex] = ACTIONS(4197), }, - [1790] = { + [1792] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1799), - [sym_concatenation] = STATE(1799), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4203), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4203), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4203), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4207), - [anon_sym_EQ] = ACTIONS(4203), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4203), - [sym_regex] = ACTIONS(4209), - }, - [1791] = { - [sym_command_substitution] = STATE(1801), - [aux_sym__literal_repeat1] = STATE(1802), - [sym_string] = STATE(1801), - [sym_process_substitution] = STATE(1801), - [sym_simple_expansion] = STATE(1801), - [sym_string_expansion] = STATE(1801), - [sym_concatenation] = STATE(1803), - [sym_expansion] = STATE(1801), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(4207), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(4213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(4213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4211), - [sym__special_character] = ACTIONS(947), + [anon_sym_COLON] = ACTIONS(917), }, - [1792] = { + [1793] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1805), - [sym_concatenation] = STATE(1805), + [aux_sym_expansion_repeat1] = STATE(1800), + [sym_concatenation] = STATE(1800), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_DASH] = ACTIONS(4191), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4215), + [anon_sym_COLON_DASH] = ACTIONS(4191), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4215), + [anon_sym_COLON_QMARK] = ACTIONS(4191), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4215), + [anon_sym_PERCENT] = ACTIONS(4191), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4217), + [anon_sym_POUND] = ACTIONS(4193), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_EQ] = ACTIONS(4191), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4215), - [sym_regex] = ACTIONS(4221), + [anon_sym_COLON] = ACTIONS(4191), }, - [1793] = { + [1794] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1804), + [sym_concatenation] = STATE(1804), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4201), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4201), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4201), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4201), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4203), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(4205), + [anon_sym_RBRACE] = ACTIONS(4207), + [anon_sym_EQ] = ACTIONS(4201), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - }, - [1794] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4207), - [sym__concat] = ACTIONS(1294), + [anon_sym_COLON] = ACTIONS(4201), }, [1795] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4223), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym_command_substitution] = STATE(1805), + [aux_sym__literal_repeat1] = STATE(1806), + [sym_string] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_concatenation] = STATE(1807), + [sym_expansion] = STATE(1805), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4209), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(4211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(4211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(4209), + [sym__special_character] = ACTIONS(949), }, [1796] = { - [anon_sym_RBRACE] = ACTIONS(4207), - [sym_comment] = ACTIONS(41), - }, - [1797] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1806), - [sym_concatenation] = STATE(1806), + [aux_sym_expansion_repeat1] = STATE(1809), + [sym_concatenation] = STATE(1809), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DASH] = ACTIONS(4213), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4225), + [anon_sym_COLON_DASH] = ACTIONS(4213), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4225), + [anon_sym_COLON_QMARK] = ACTIONS(4213), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4225), + [anon_sym_PERCENT] = ACTIONS(4213), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4215), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_EQ] = ACTIONS(4213), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4225), + [anon_sym_COLON] = ACTIONS(4213), + [sym_regex] = ACTIONS(4219), }, - [1798] = { + [1797] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), + }, + [1798] = { + [anon_sym__] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(4221), + [anon_sym_0] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), }, [1799] = { [sym_command_substitution] = STATE(116), @@ -56303,30 +56252,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1810), + [sym_concatenation] = STATE(1810), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4223), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4223), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4223), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4223), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4225), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4223), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4223), }, [1800] = { [sym_command_substitution] = STATE(116), @@ -56335,297 +56284,312 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1807), - [sym_concatenation] = STATE(1807), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4233), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4233), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4233), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_EQ] = ACTIONS(4233), + [anon_sym_RBRACE] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_COLON] = ACTIONS(917), }, [1801] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4231), - [sym__concat] = ACTIONS(1294), - }, - [1802] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4237), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), - }, - [1803] = { - [anon_sym_RBRACE] = ACTIONS(4231), - [sym_comment] = ACTIONS(41), - }, - [1804] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1808), - [sym_concatenation] = STATE(1808), + [aux_sym_expansion_repeat1] = STATE(1810), + [sym_concatenation] = STATE(1810), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4223), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4239), + [anon_sym_COLON_DASH] = ACTIONS(4223), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4239), + [anon_sym_COLON_QMARK] = ACTIONS(4223), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4223), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4241), + [anon_sym_POUND] = ACTIONS(4225), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4243), - [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4223), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4223), + [sym_regex] = ACTIONS(4229), }, - [1805] = { + [1802] = { + [sym_command_substitution] = STATE(1812), + [aux_sym__literal_repeat1] = STATE(1813), + [sym_string] = STATE(1812), + [sym_process_substitution] = STATE(1812), + [sym_simple_expansion] = STATE(1812), + [sym_string_expansion] = STATE(1812), + [sym_concatenation] = STATE(1814), + [sym_expansion] = STATE(1812), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(4227), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(4233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(4233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(4231), + [sym__special_character] = ACTIONS(949), + }, + [1803] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1816), + [sym_concatenation] = STATE(1816), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4235), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4235), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4235), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4235), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4237), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4243), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4235), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4235), + [sym_regex] = ACTIONS(4241), }, - [1806] = { + [1804] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4245), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), + }, + [1805] = { + [aux_sym_concatenation_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4227), + [sym__concat] = ACTIONS(1298), + }, + [1806] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(4243), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1300), }, [1807] = { + [anon_sym_RBRACE] = ACTIONS(4227), + [sym_comment] = ACTIONS(41), + }, + [1808] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1817), + [sym_concatenation] = STATE(1817), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4245), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4245), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4245), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4245), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4247), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4247), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4249), + [anon_sym_EQ] = ACTIONS(4245), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4245), }, - [1808] = { + [1809] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_RBRACE] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - }, - [1809] = { - [sym_string] = STATE(907), - [anon_sym__] = ACTIONS(2698), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(4251), - [anon_sym_0] = ACTIONS(2698), - [anon_sym_BANG] = ACTIONS(2700), - [aux_sym__simple_variable_name_token1] = ACTIONS(2698), - [anon_sym_DOLLAR] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(4251), - [anon_sym_DASH] = ACTIONS(2700), - [sym_raw_string] = ACTIONS(2702), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(917), }, [1810] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1817), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4253), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4255), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - }, - [1811] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4257), - }, - [1812] = { - [anon_sym_RPAREN] = ACTIONS(4259), - [sym_comment] = ACTIONS(41), - }, - [1813] = { - [sym_command_substitution] = STATE(914), - [sym_simple_expansion] = STATE(914), - [sym_string_expansion] = STATE(914), - [sym_string] = STATE(914), - [sym_process_substitution] = STATE(914), - [sym_expansion] = STATE(914), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2689), - [sym_word] = ACTIONS(2691), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_DOLLAR] = ACTIONS(443), [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(2689), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym__special_character] = ACTIONS(2689), - [sym_number] = ACTIONS(2691), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(917), }, - [1814] = { + [1811] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1821), - [sym_concatenation] = STATE(1821), + [aux_sym_expansion_repeat1] = STATE(1818), + [sym_concatenation] = STATE(1818), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DASH] = ACTIONS(4253), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4261), + [anon_sym_COLON_DASH] = ACTIONS(4253), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4261), + [anon_sym_COLON_QMARK] = ACTIONS(4253), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4261), + [anon_sym_PERCENT] = ACTIONS(4253), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4255), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4265), - [anon_sym_RBRACE] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4261), + [anon_sym_RBRACE] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4253), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4261), + [anon_sym_COLON] = ACTIONS(4253), + }, + [1812] = { + [aux_sym_concatenation_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4251), + [sym__concat] = ACTIONS(1298), + }, + [1813] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(4257), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1300), + }, + [1814] = { + [anon_sym_RBRACE] = ACTIONS(4251), + [sym_comment] = ACTIONS(41), }, [1815] = { [sym_command_substitution] = STATE(116), @@ -56634,243 +56598,216 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1826), - [sym_concatenation] = STATE(1826), + [aux_sym_expansion_repeat1] = STATE(1819), + [sym_concatenation] = STATE(1819), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4259), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4269), + [anon_sym_COLON_DASH] = ACTIONS(4259), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4269), + [anon_sym_COLON_QMARK] = ACTIONS(4259), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4269), + [anon_sym_PERCENT] = ACTIONS(4259), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4261), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4273), - [anon_sym_RBRACE] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4259), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4269), + [anon_sym_COLON] = ACTIONS(4259), }, [1816] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), - }, - [1817] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - }, - [1818] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4281), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - }, - [1819] = { - [anon_sym_RPAREN] = ACTIONS(4281), - [sym_comment] = ACTIONS(41), - }, - [1820] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1829), - [sym_concatenation] = STATE(1829), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4283), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4283), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4285), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_RBRACE] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4283), - [sym_regex] = ACTIONS(4289), + [anon_sym_COLON] = ACTIONS(917), }, - [1821] = { + [1817] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1822] = { + [1818] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1829), - [sym_concatenation] = STATE(1829), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4283), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4283), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4285), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_RBRACE] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_RBRACE] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(917), }, - [1823] = { + [1819] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1833), - [sym_concatenation] = STATE(1833), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4293), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4293), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4293), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4295), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4297), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4293), + [anon_sym_COLON] = ACTIONS(917), + }, + [1820] = { + [sym_string] = STATE(913), + [anon_sym__] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(4271), + [anon_sym_0] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2704), + [aux_sym__simple_variable_name_token1] = ACTIONS(2702), + [anon_sym_DOLLAR] = ACTIONS(2704), + [anon_sym_AT] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(2704), + [sym_raw_string] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4271), + }, + [1821] = { + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(1828), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_BQUOTE] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), + }, + [1822] = { + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4277), + }, + [1823] = { + [anon_sym_RPAREN] = ACTIONS(4279), + [sym_comment] = ACTIONS(41), }, [1824] = { - [sym_command_substitution] = STATE(1834), - [aux_sym__literal_repeat1] = STATE(1835), - [sym_string] = STATE(1834), - [sym_process_substitution] = STATE(1834), - [sym_simple_expansion] = STATE(1834), - [sym_string_expansion] = STATE(1834), - [sym_concatenation] = STATE(1836), - [sym_expansion] = STATE(1834), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4301), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(4287), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(4303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4301), - [sym__special_character] = ACTIONS(947), + [sym_command_substitution] = STATE(920), + [sym_simple_expansion] = STATE(920), + [sym_string_expansion] = STATE(920), + [sym_string] = STATE(920), + [sym_process_substitution] = STATE(920), + [sym_expansion] = STATE(920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(453), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2693), + [sym_word] = ACTIONS(2695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(2693), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym__special_character] = ACTIONS(2693), + [sym_number] = ACTIONS(2695), }, [1825] = { [sym_command_substitution] = STATE(116), @@ -56879,31 +56816,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1838), - [sym_concatenation] = STATE(1838), + [aux_sym_expansion_repeat1] = STATE(1832), + [sym_concatenation] = STATE(1832), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DASH] = ACTIONS(4281), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4305), + [anon_sym_COLON_DASH] = ACTIONS(4281), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4305), + [anon_sym_COLON_QMARK] = ACTIONS(4281), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4305), + [anon_sym_PERCENT] = ACTIONS(4281), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4307), + [anon_sym_POUND] = ACTIONS(4283), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4309), - [anon_sym_EQ] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4285), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_EQ] = ACTIONS(4281), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4305), - [sym_regex] = ACTIONS(4311), + [anon_sym_COLON] = ACTIONS(4281), }, [1826] = { [sym_command_substitution] = STATE(116), @@ -56912,34 +56849,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1837), + [sym_concatenation] = STATE(1837), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4289), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4289), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4289), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4289), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4291), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4309), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4289), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4289), }, [1827] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4297), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -56953,270 +56891,281 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(587), }, [1828] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1839), - [sym_concatenation] = STATE(1839), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4315), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4315), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4315), + [sym_command_substitution] = STATE(81), + [sym_simple_expansion] = STATE(81), + [aux_sym_string_repeat1] = STATE(160), + [sym_expansion] = STATE(81), + [anon_sym_DOLLAR] = ACTIONS(4299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4317), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_EQ] = ACTIONS(4315), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [sym__string_content] = ACTIONS(277), }, [1829] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_number] = ACTIONS(331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + }, + [1830] = { + [anon_sym_RPAREN] = ACTIONS(4301), + [sym_comment] = ACTIONS(41), + }, + [1831] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1840), + [sym_concatenation] = STATE(1840), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4303), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4303), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4303), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4303), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4305), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4303), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4303), + [sym_regex] = ACTIONS(4309), }, - [1830] = { + [1832] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1839), - [sym_concatenation] = STATE(1839), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4315), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4315), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4315), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4315), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4317), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_EQ] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4315), - [sym_regex] = ACTIONS(4321), + [anon_sym_COLON] = ACTIONS(917), }, - [1831] = { - [sym_command_substitution] = STATE(1841), - [aux_sym__literal_repeat1] = STATE(1842), - [sym_string] = STATE(1841), - [sym_process_substitution] = STATE(1841), - [sym_simple_expansion] = STATE(1841), - [sym_string_expansion] = STATE(1841), - [sym_concatenation] = STATE(1843), - [sym_expansion] = STATE(1841), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4323), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(4325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(4325), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4323), - [sym__special_character] = ACTIONS(947), - }, - [1832] = { + [1833] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1845), - [sym_concatenation] = STATE(1845), + [aux_sym_expansion_repeat1] = STATE(1840), + [sym_concatenation] = STATE(1840), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4303), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4327), + [anon_sym_COLON_DASH] = ACTIONS(4303), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4327), + [anon_sym_COLON_QMARK] = ACTIONS(4303), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4303), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4305), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_EQ] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4303), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4327), - [sym_regex] = ACTIONS(4333), + [anon_sym_COLON] = ACTIONS(4303), }, - [1833] = { + [1834] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1844), + [sym_concatenation] = STATE(1844), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4313), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4313), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4313), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4313), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4315), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(4317), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_EQ] = ACTIONS(4313), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - }, - [1834] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4319), - [sym__concat] = ACTIONS(1294), + [anon_sym_COLON] = ACTIONS(4313), }, [1835] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4335), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym_command_substitution] = STATE(1845), + [aux_sym__literal_repeat1] = STATE(1846), + [sym_string] = STATE(1845), + [sym_process_substitution] = STATE(1845), + [sym_simple_expansion] = STATE(1845), + [sym_string_expansion] = STATE(1845), + [sym_concatenation] = STATE(1847), + [sym_expansion] = STATE(1845), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4321), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(4323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(4323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(4321), + [sym__special_character] = ACTIONS(949), }, [1836] = { - [anon_sym_RBRACE] = ACTIONS(4319), - [sym_comment] = ACTIONS(41), - }, - [1837] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1846), - [sym_concatenation] = STATE(1846), + [aux_sym_expansion_repeat1] = STATE(1849), + [sym_concatenation] = STATE(1849), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4325), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4337), + [anon_sym_COLON_DASH] = ACTIONS(4325), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4337), + [anon_sym_COLON_QMARK] = ACTIONS(4325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4325), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4339), + [anon_sym_POUND] = ACTIONS(4327), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4325), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4325), + [sym_regex] = ACTIONS(4331), }, - [1838] = { + [1837] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), + }, + [1838] = { + [anon_sym__] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(4333), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_0] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(591), + [sym__string_content] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(587), }, [1839] = { [sym_command_substitution] = STATE(116), @@ -57225,30 +57174,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1850), + [sym_concatenation] = STATE(1850), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4335), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4335), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4335), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4335), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4337), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4343), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(4335), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4335), }, [1840] = { [sym_command_substitution] = STATE(116), @@ -57257,46 +57206,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1847), - [sym_concatenation] = STATE(1847), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4345), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4345), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4347), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4343), - [anon_sym_EQ] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4345), + [anon_sym_COLON] = ACTIONS(917), }, [1841] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4343), - [sym__concat] = ACTIONS(1294), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1850), + [sym_concatenation] = STATE(1850), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4335), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4335), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4337), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4335), + [sym_regex] = ACTIONS(4341), }, [1842] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4349), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym_command_substitution] = STATE(1852), + [aux_sym__literal_repeat1] = STATE(1853), + [sym_string] = STATE(1852), + [sym_process_substitution] = STATE(1852), + [sym_simple_expansion] = STATE(1852), + [sym_string_expansion] = STATE(1852), + [sym_concatenation] = STATE(1854), + [sym_expansion] = STATE(1852), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4343), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(4345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(4345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(4343), + [sym__special_character] = ACTIONS(949), }, [1843] = { - [anon_sym_RBRACE] = ACTIONS(4343), - [sym_comment] = ACTIONS(41), + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1856), + [sym_concatenation] = STATE(1856), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4347), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4347), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4349), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4347), + [sym_regex] = ACTIONS(4353), }, [1844] = { [sym_command_substitution] = STATE(116), @@ -57305,286 +57328,478 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1848), - [sym_concatenation] = STATE(1848), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4351), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4351), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4353), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(4351), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4351), + [anon_sym_COLON] = ACTIONS(917), }, [1845] = { + [aux_sym_concatenation_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4339), + [sym__concat] = ACTIONS(1298), + }, + [1846] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(4355), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1300), + }, + [1847] = { + [anon_sym_RBRACE] = ACTIONS(4339), + [sym_comment] = ACTIONS(41), + }, + [1848] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1857), + [sym_concatenation] = STATE(1857), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4357), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4357), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4357), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4357), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4359), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4355), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4357), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4357), }, - [1846] = { + [1849] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1847] = { + [1850] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4359), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [1848] = { + [1851] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1858), + [sym_concatenation] = STATE(1858), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(4365), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(4365), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4365), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4365), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4367), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4361), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4365), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4365), }, - [1849] = { - [sym_string] = STATE(939), - [anon_sym__] = ACTIONS(2720), + [1852] = { + [aux_sym_concatenation_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4363), + [sym__concat] = ACTIONS(1298), + }, + [1853] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(4369), + [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1300), + }, + [1854] = { + [anon_sym_RBRACE] = ACTIONS(4363), + [sym_comment] = ACTIONS(41), + }, + [1855] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1859), + [sym_concatenation] = STATE(1859), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(4371), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(4371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(4371), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4373), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4371), + }, + [1856] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(917), + }, + [1857] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(917), + }, + [1858] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(917), + }, + [1859] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), + [sym_expansion] = STATE(116), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_word] = ACTIONS(449), + [sym__special_character] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(917), + }, + [1860] = { + [sym_string] = STATE(945), + [anon_sym__] = ACTIONS(2724), [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_POUND] = ACTIONS(4363), - [anon_sym_STAR] = ACTIONS(4365), - [anon_sym_0] = ACTIONS(2720), - [anon_sym_BANG] = ACTIONS(4363), - [aux_sym__simple_variable_name_token1] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(4363), - [anon_sym_AT] = ACTIONS(4365), - [anon_sym_DASH] = ACTIONS(4363), - [sym_raw_string] = ACTIONS(4367), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4365), + [anon_sym_POUND] = ACTIONS(4383), + [anon_sym_STAR] = ACTIONS(4385), + [anon_sym_0] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(4383), + [aux_sym__simple_variable_name_token1] = ACTIONS(2724), + [anon_sym_DOLLAR] = ACTIONS(4383), + [anon_sym_AT] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4383), + [sym_raw_string] = ACTIONS(4387), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4385), }, - [1850] = { + [1861] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1857), + [aux_sym_string_repeat1] = STATE(1868), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4369), + [anon_sym_DOLLAR] = ACTIONS(4389), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4371), + [anon_sym_DQUOTE] = ACTIONS(4391), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [1851] = { + [1862] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_BQUOTE] = ACTIONS(4393), }, - [1852] = { - [anon_sym_RPAREN] = ACTIONS(4375), + [1863] = { + [anon_sym_RPAREN] = ACTIONS(4395), [sym_comment] = ACTIONS(41), }, - [1853] = { - [sym_command_substitution] = STATE(946), - [sym_simple_expansion] = STATE(946), - [sym_string_expansion] = STATE(946), - [sym_string] = STATE(946), - [sym_process_substitution] = STATE(946), - [sym_expansion] = STATE(946), + [1864] = { + [sym_command_substitution] = STATE(952), + [sym_simple_expansion] = STATE(952), + [sym_string_expansion] = STATE(952), + [sym_string] = STATE(952), + [sym_process_substitution] = STATE(952), + [sym_expansion] = STATE(952), [anon_sym_DOLLAR_LBRACE] = ACTIONS(567), [anon_sym_DQUOTE] = ACTIONS(569), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2711), - [sym_word] = ACTIONS(2713), + [sym_raw_string] = ACTIONS(2715), + [sym_word] = ACTIONS(2717), [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), [anon_sym_DOLLAR] = ACTIONS(559), [anon_sym_LT_LPAREN] = ACTIONS(563), - [sym_ansii_c_string] = ACTIONS(2711), + [sym_ansii_c_string] = ACTIONS(2715), [anon_sym_BQUOTE] = ACTIONS(561), [anon_sym_GT_LPAREN] = ACTIONS(563), - [sym__special_character] = ACTIONS(2711), - [sym_number] = ACTIONS(2713), + [sym__special_character] = ACTIONS(2715), + [sym_number] = ACTIONS(2717), }, - [1854] = { + [1865] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1861), - [sym_concatenation] = STATE(1861), + [aux_sym_expansion_repeat1] = STATE(1872), + [sym_concatenation] = STATE(1872), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4377), + [anon_sym_PERCENT] = ACTIONS(4397), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4399), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4401), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4397), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_COLON_DASH] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4377), + [anon_sym_COLON_QMARK] = ACTIONS(4397), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4383), + [anon_sym_RBRACE] = ACTIONS(4403), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4397), [sym__special_character] = ACTIONS(459), }, - [1855] = { + [1866] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1866), - [sym_concatenation] = STATE(1866), + [aux_sym_expansion_repeat1] = STATE(1877), + [sym_concatenation] = STATE(1877), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4385), + [anon_sym_PERCENT] = ACTIONS(4405), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4387), + [anon_sym_POUND] = ACTIONS(4407), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4409), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4405), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), + [anon_sym_COLON_DASH] = ACTIONS(4405), + [anon_sym_EQ] = ACTIONS(4405), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4385), + [anon_sym_COLON_QMARK] = ACTIONS(4405), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_RBRACE] = ACTIONS(4411), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4385), + [anon_sym_COLON] = ACTIONS(4405), [sym__special_character] = ACTIONS(459), }, - [1856] = { + [1867] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(4413), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -57597,20 +57812,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [1857] = { + [1868] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4395), + [anon_sym_DOLLAR] = ACTIONS(4415), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [1858] = { + [1869] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -57623,7 +57838,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4417), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -57635,233 +57850,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [1859] = { - [anon_sym_RPAREN] = ACTIONS(4397), + [1870] = { + [anon_sym_RPAREN] = ACTIONS(4417), [sym_comment] = ACTIONS(41), }, - [1860] = { + [1871] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1869), - [sym_concatenation] = STATE(1869), + [aux_sym_expansion_repeat1] = STATE(1880), + [sym_concatenation] = STATE(1880), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_PERCENT] = ACTIONS(4419), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4401), + [anon_sym_POUND] = ACTIONS(4421), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4399), - [anon_sym_COLON_DASH] = ACTIONS(4399), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_COLON_DASH] = ACTIONS(4419), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4399), + [anon_sym_EQ] = ACTIONS(4419), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4399), + [anon_sym_COLON_QMARK] = ACTIONS(4419), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4419), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4405), + [sym_regex] = ACTIONS(4425), }, - [1861] = { + [1872] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1862] = { + [1873] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1869), - [sym_concatenation] = STATE(1869), + [aux_sym_expansion_repeat1] = STATE(1880), + [sym_concatenation] = STATE(1880), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_PERCENT] = ACTIONS(4419), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4401), + [anon_sym_POUND] = ACTIONS(4421), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4427), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4419), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4399), - [anon_sym_EQ] = ACTIONS(4399), + [anon_sym_COLON_DASH] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4399), + [anon_sym_COLON_QMARK] = ACTIONS(4419), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4423), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4419), [sym__special_character] = ACTIONS(459), }, - [1863] = { + [1874] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1873), - [sym_concatenation] = STATE(1873), + [aux_sym_expansion_repeat1] = STATE(1884), + [sym_concatenation] = STATE(1884), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4429), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4411), + [anon_sym_POUND] = ACTIONS(4431), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4433), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4429), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4409), - [anon_sym_EQ] = ACTIONS(4409), + [anon_sym_COLON_DASH] = ACTIONS(4429), + [anon_sym_EQ] = ACTIONS(4429), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4409), + [anon_sym_COLON_QMARK] = ACTIONS(4429), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_RBRACE] = ACTIONS(4435), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4409), + [anon_sym_COLON] = ACTIONS(4429), [sym__special_character] = ACTIONS(459), }, - [1864] = { - [sym_command_substitution] = STATE(1874), - [aux_sym__literal_repeat1] = STATE(1875), - [sym_string] = STATE(1874), - [sym_process_substitution] = STATE(1874), - [sym_simple_expansion] = STATE(1874), - [sym_string_expansion] = STATE(1874), - [sym_concatenation] = STATE(1876), - [sym_expansion] = STATE(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(4417), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(4403), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(4419), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1875] = { + [sym_command_substitution] = STATE(1885), + [aux_sym__literal_repeat1] = STATE(1886), + [sym_string] = STATE(1885), + [sym_process_substitution] = STATE(1885), + [sym_simple_expansion] = STATE(1885), + [sym_string_expansion] = STATE(1885), + [sym_concatenation] = STATE(1887), + [sym_expansion] = STATE(1885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4437), + [sym_word] = ACTIONS(4439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4437), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(4423), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(4439), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1865] = { + [1876] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1878), - [sym_concatenation] = STATE(1878), + [aux_sym_expansion_repeat1] = STATE(1889), + [sym_concatenation] = STATE(1889), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4441), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4423), + [anon_sym_POUND] = ACTIONS(4443), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_DASH] = ACTIONS(4421), - [anon_sym_COLON_DASH] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_COLON_DASH] = ACTIONS(4441), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4421), + [anon_sym_EQ] = ACTIONS(4441), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4421), + [anon_sym_COLON_QMARK] = ACTIONS(4441), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4421), + [anon_sym_COLON] = ACTIONS(4441), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4427), + [sym_regex] = ACTIONS(4447), }, - [1866] = { + [1877] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1867] = { + [1878] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4449), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -57874,639 +58089,639 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [1868] = { + [1879] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1879), - [sym_concatenation] = STATE(1879), + [aux_sym_expansion_repeat1] = STATE(1890), + [sym_concatenation] = STATE(1890), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4431), + [anon_sym_PERCENT] = ACTIONS(4451), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4433), + [anon_sym_POUND] = ACTIONS(4453), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_COLON_DASH] = ACTIONS(4431), + [anon_sym_RBRACE] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_COLON_DASH] = ACTIONS(4451), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4431), + [anon_sym_EQ] = ACTIONS(4451), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4431), + [anon_sym_COLON_QMARK] = ACTIONS(4451), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4431), + [anon_sym_COLON] = ACTIONS(4451), [sym__special_character] = ACTIONS(459), }, - [1869] = { + [1880] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1870] = { + [1881] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1879), - [sym_concatenation] = STATE(1879), + [aux_sym_expansion_repeat1] = STATE(1890), + [sym_concatenation] = STATE(1890), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4431), + [anon_sym_PERCENT] = ACTIONS(4451), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4433), + [anon_sym_POUND] = ACTIONS(4453), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_COLON_DASH] = ACTIONS(4431), + [anon_sym_RBRACE] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_COLON_DASH] = ACTIONS(4451), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4431), + [anon_sym_EQ] = ACTIONS(4451), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4431), + [anon_sym_COLON_QMARK] = ACTIONS(4451), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4431), + [anon_sym_COLON] = ACTIONS(4451), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4437), + [sym_regex] = ACTIONS(4457), }, - [1871] = { - [sym_command_substitution] = STATE(1881), - [aux_sym__literal_repeat1] = STATE(1882), - [sym_string] = STATE(1881), - [sym_process_substitution] = STATE(1881), - [sym_simple_expansion] = STATE(1881), - [sym_string_expansion] = STATE(1881), - [sym_concatenation] = STATE(1883), - [sym_expansion] = STATE(1881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(4439), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(4435), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(4441), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1882] = { + [sym_command_substitution] = STATE(1892), + [aux_sym__literal_repeat1] = STATE(1893), + [sym_string] = STATE(1892), + [sym_process_substitution] = STATE(1892), + [sym_simple_expansion] = STATE(1892), + [sym_string_expansion] = STATE(1892), + [sym_concatenation] = STATE(1894), + [sym_expansion] = STATE(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4459), + [sym_word] = ACTIONS(4461), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4459), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(4455), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(4461), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1872] = { + [1883] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1885), - [sym_concatenation] = STATE(1885), + [aux_sym_expansion_repeat1] = STATE(1896), + [sym_concatenation] = STATE(1896), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4463), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4445), + [anon_sym_POUND] = ACTIONS(4465), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_COLON_DASH] = ACTIONS(4443), + [anon_sym_RBRACE] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_COLON_DASH] = ACTIONS(4463), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4463), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4443), + [anon_sym_COLON_QMARK] = ACTIONS(4463), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4463), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4449), + [sym_regex] = ACTIONS(4469), }, - [1873] = { + [1884] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1874] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1885] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4435), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(4455), + [sym__concat] = ACTIONS(1298), }, - [1875] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(4451), + [1886] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(4471), [sym_comment] = ACTIONS(41), }, - [1876] = { - [anon_sym_RBRACE] = ACTIONS(4435), + [1887] = { + [anon_sym_RBRACE] = ACTIONS(4455), [sym_comment] = ACTIONS(41), }, - [1877] = { + [1888] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1886), - [sym_concatenation] = STATE(1886), + [aux_sym_expansion_repeat1] = STATE(1897), + [sym_concatenation] = STATE(1897), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_PERCENT] = ACTIONS(4473), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4455), + [anon_sym_POUND] = ACTIONS(4475), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_COLON_DASH] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(4473), + [anon_sym_COLON_DASH] = ACTIONS(4473), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_EQ] = ACTIONS(4473), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4453), + [anon_sym_COLON_QMARK] = ACTIONS(4473), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4473), [sym__special_character] = ACTIONS(459), }, - [1878] = { + [1889] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4477), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1879] = { + [1890] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1880] = { + [1891] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1887), - [sym_concatenation] = STATE(1887), + [aux_sym_expansion_repeat1] = STATE(1898), + [sym_concatenation] = STATE(1898), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4461), + [anon_sym_PERCENT] = ACTIONS(4481), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4463), + [anon_sym_POUND] = ACTIONS(4483), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_COLON_DASH] = ACTIONS(4461), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_COLON_DASH] = ACTIONS(4481), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4461), + [anon_sym_EQ] = ACTIONS(4481), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4461), + [anon_sym_COLON_QMARK] = ACTIONS(4481), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4461), + [anon_sym_COLON] = ACTIONS(4481), [sym__special_character] = ACTIONS(459), }, - [1881] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1892] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4459), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(4479), + [sym__concat] = ACTIONS(1298), }, - [1882] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(4465), + [1893] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(4485), [sym_comment] = ACTIONS(41), }, - [1883] = { - [anon_sym_RBRACE] = ACTIONS(4459), + [1894] = { + [anon_sym_RBRACE] = ACTIONS(4479), [sym_comment] = ACTIONS(41), }, - [1884] = { + [1895] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1888), - [sym_concatenation] = STATE(1888), + [aux_sym_expansion_repeat1] = STATE(1899), + [sym_concatenation] = STATE(1899), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4487), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4469), + [anon_sym_POUND] = ACTIONS(4489), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4467), - [anon_sym_COLON_DASH] = ACTIONS(4467), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_COLON_DASH] = ACTIONS(4487), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4487), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4467), + [anon_sym_COLON_QMARK] = ACTIONS(4487), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4467), + [anon_sym_COLON] = ACTIONS(4487), [sym__special_character] = ACTIONS(459), }, - [1885] = { + [1896] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1886] = { + [1897] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4473), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1887] = { + [1898] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1888] = { + [1899] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1889] = { - [sym_string] = STATE(971), - [anon_sym__] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4481), - [anon_sym_0] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(4479), - [aux_sym__simple_variable_name_token1] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(4479), - [anon_sym_AT] = ACTIONS(4481), - [anon_sym_DASH] = ACTIONS(4479), - [sym_raw_string] = ACTIONS(4483), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4481), + [1900] = { + [sym_string] = STATE(977), + [anon_sym__] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4501), + [anon_sym_0] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(4499), + [aux_sym__simple_variable_name_token1] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_AT] = ACTIONS(4501), + [anon_sym_DASH] = ACTIONS(4499), + [sym_raw_string] = ACTIONS(4503), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4501), }, - [1890] = { + [1901] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1897), + [aux_sym_string_repeat1] = STATE(1908), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4505), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4487), + [anon_sym_DQUOTE] = ACTIONS(4507), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [1891] = { + [1902] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4489), + [anon_sym_BQUOTE] = ACTIONS(4509), }, - [1892] = { - [anon_sym_RPAREN] = ACTIONS(4491), + [1903] = { + [anon_sym_RPAREN] = ACTIONS(4511), [sym_comment] = ACTIONS(41), }, - [1893] = { - [sym_command_substitution] = STATE(978), - [sym_simple_expansion] = STATE(978), - [sym_string_expansion] = STATE(978), - [sym_string] = STATE(978), - [sym_process_substitution] = STATE(978), - [sym_expansion] = STATE(978), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2296), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2733), - [sym_word] = ACTIONS(2735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2298), - [anon_sym_DOLLAR] = ACTIONS(615), - [anon_sym_LT_LPAREN] = ACTIONS(2292), - [sym_ansii_c_string] = ACTIONS(2733), - [anon_sym_BQUOTE] = ACTIONS(2290), - [anon_sym_GT_LPAREN] = ACTIONS(2292), - [sym__special_character] = ACTIONS(2733), - [sym_number] = ACTIONS(2735), + [1904] = { + [sym_command_substitution] = STATE(984), + [sym_simple_expansion] = STATE(984), + [sym_string_expansion] = STATE(984), + [sym_string] = STATE(984), + [sym_process_substitution] = STATE(984), + [sym_expansion] = STATE(984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2300), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2737), + [sym_word] = ACTIONS(2739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2302), + [anon_sym_DOLLAR] = ACTIONS(617), + [anon_sym_LT_LPAREN] = ACTIONS(2296), + [sym_ansii_c_string] = ACTIONS(2737), + [anon_sym_BQUOTE] = ACTIONS(2294), + [anon_sym_GT_LPAREN] = ACTIONS(2296), + [sym__special_character] = ACTIONS(2737), + [sym_number] = ACTIONS(2739), }, - [1894] = { + [1905] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1901), - [sym_concatenation] = STATE(1901), + [aux_sym_expansion_repeat1] = STATE(1912), + [sym_concatenation] = STATE(1912), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4493), + [anon_sym_PERCENT] = ACTIONS(4513), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4515), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4517), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4513), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_COLON_DASH] = ACTIONS(4513), + [anon_sym_EQ] = ACTIONS(4513), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4493), + [anon_sym_COLON_QMARK] = ACTIONS(4513), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_RBRACE] = ACTIONS(4519), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4493), + [anon_sym_COLON] = ACTIONS(4513), [sym__special_character] = ACTIONS(459), }, - [1895] = { + [1906] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1906), - [sym_concatenation] = STATE(1906), + [aux_sym_expansion_repeat1] = STATE(1917), + [sym_concatenation] = STATE(1917), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4501), + [anon_sym_PERCENT] = ACTIONS(4521), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4523), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4525), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DASH] = ACTIONS(4521), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), + [anon_sym_COLON_DASH] = ACTIONS(4521), + [anon_sym_EQ] = ACTIONS(4521), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4501), + [anon_sym_COLON_QMARK] = ACTIONS(4521), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4527), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4521), [sym__special_character] = ACTIONS(459), }, - [1896] = { + [1907] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4509), + [anon_sym_DQUOTE] = ACTIONS(4529), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -58519,20 +58734,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [1897] = { + [1908] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4531), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4509), + [anon_sym_DQUOTE] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [1898] = { + [1909] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -58545,7 +58760,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4513), + [anon_sym_RPAREN] = ACTIONS(4533), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -58557,233 +58772,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [1899] = { - [anon_sym_RPAREN] = ACTIONS(4513), + [1910] = { + [anon_sym_RPAREN] = ACTIONS(4533), [sym_comment] = ACTIONS(41), }, - [1900] = { + [1911] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1909), - [sym_concatenation] = STATE(1909), + [aux_sym_expansion_repeat1] = STATE(1920), + [sym_concatenation] = STATE(1920), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4535), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4517), + [anon_sym_POUND] = ACTIONS(4537), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_DASH] = ACTIONS(4515), - [anon_sym_COLON_DASH] = ACTIONS(4515), + [anon_sym_RBRACE] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_COLON_DASH] = ACTIONS(4535), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4535), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4515), + [anon_sym_COLON_QMARK] = ACTIONS(4535), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4535), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4521), + [sym_regex] = ACTIONS(4541), }, - [1901] = { + [1912] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1902] = { + [1913] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1909), - [sym_concatenation] = STATE(1909), + [aux_sym_expansion_repeat1] = STATE(1920), + [sym_concatenation] = STATE(1920), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4535), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4517), + [anon_sym_POUND] = ACTIONS(4537), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4543), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4535), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_COLON_DASH] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4515), + [anon_sym_COLON_QMARK] = ACTIONS(4535), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4519), + [anon_sym_RBRACE] = ACTIONS(4539), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4535), [sym__special_character] = ACTIONS(459), }, - [1903] = { + [1914] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1913), - [sym_concatenation] = STATE(1913), + [aux_sym_expansion_repeat1] = STATE(1924), + [sym_concatenation] = STATE(1924), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_PERCENT] = ACTIONS(4545), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4547), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4549), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4545), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4525), - [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_COLON_DASH] = ACTIONS(4545), + [anon_sym_EQ] = ACTIONS(4545), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4525), + [anon_sym_COLON_QMARK] = ACTIONS(4545), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_RBRACE] = ACTIONS(4551), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4545), [sym__special_character] = ACTIONS(459), }, - [1904] = { - [sym_command_substitution] = STATE(1914), - [aux_sym__literal_repeat1] = STATE(1915), - [sym_string] = STATE(1914), - [sym_process_substitution] = STATE(1914), - [sym_simple_expansion] = STATE(1914), - [sym_string_expansion] = STATE(1914), - [sym_concatenation] = STATE(1916), - [sym_expansion] = STATE(1914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4533), - [sym_word] = ACTIONS(4535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(4533), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(4519), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(4535), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1915] = { + [sym_command_substitution] = STATE(1925), + [aux_sym__literal_repeat1] = STATE(1926), + [sym_string] = STATE(1925), + [sym_process_substitution] = STATE(1925), + [sym_simple_expansion] = STATE(1925), + [sym_string_expansion] = STATE(1925), + [sym_concatenation] = STATE(1927), + [sym_expansion] = STATE(1925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4553), + [sym_word] = ACTIONS(4555), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4553), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(4539), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(4555), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1905] = { + [1916] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1918), - [sym_concatenation] = STATE(1918), + [aux_sym_expansion_repeat1] = STATE(1929), + [sym_concatenation] = STATE(1929), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4557), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4539), + [anon_sym_POUND] = ACTIONS(4559), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4537), - [anon_sym_COLON_DASH] = ACTIONS(4537), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_COLON_DASH] = ACTIONS(4557), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(4557), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4537), + [anon_sym_COLON_QMARK] = ACTIONS(4557), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4537), + [anon_sym_COLON] = ACTIONS(4557), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4543), + [sym_regex] = ACTIONS(4563), }, - [1906] = { + [1917] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4561), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1907] = { + [1918] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4545), + [anon_sym_DQUOTE] = ACTIONS(4565), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -58796,639 +59011,639 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [1908] = { + [1919] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1919), - [sym_concatenation] = STATE(1919), + [aux_sym_expansion_repeat1] = STATE(1930), + [sym_concatenation] = STATE(1930), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4567), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4549), + [anon_sym_POUND] = ACTIONS(4569), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4547), - [anon_sym_COLON_DASH] = ACTIONS(4547), + [anon_sym_RBRACE] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_COLON_DASH] = ACTIONS(4567), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4567), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4547), + [anon_sym_COLON_QMARK] = ACTIONS(4567), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_COLON] = ACTIONS(4567), [sym__special_character] = ACTIONS(459), }, - [1909] = { + [1920] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1910] = { + [1921] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1919), - [sym_concatenation] = STATE(1919), + [aux_sym_expansion_repeat1] = STATE(1930), + [sym_concatenation] = STATE(1930), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4567), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4549), + [anon_sym_POUND] = ACTIONS(4569), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4547), - [anon_sym_COLON_DASH] = ACTIONS(4547), + [anon_sym_RBRACE] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_COLON_DASH] = ACTIONS(4567), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4567), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4547), + [anon_sym_COLON_QMARK] = ACTIONS(4567), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_COLON] = ACTIONS(4567), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4553), + [sym_regex] = ACTIONS(4573), }, - [1911] = { - [sym_command_substitution] = STATE(1921), - [aux_sym__literal_repeat1] = STATE(1922), - [sym_string] = STATE(1921), - [sym_process_substitution] = STATE(1921), - [sym_simple_expansion] = STATE(1921), - [sym_string_expansion] = STATE(1921), - [sym_concatenation] = STATE(1923), - [sym_expansion] = STATE(1921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4555), - [sym_word] = ACTIONS(4557), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(4555), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(4551), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(4557), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1922] = { + [sym_command_substitution] = STATE(1932), + [aux_sym__literal_repeat1] = STATE(1933), + [sym_string] = STATE(1932), + [sym_process_substitution] = STATE(1932), + [sym_simple_expansion] = STATE(1932), + [sym_string_expansion] = STATE(1932), + [sym_concatenation] = STATE(1934), + [sym_expansion] = STATE(1932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4575), + [sym_word] = ACTIONS(4577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4575), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(4571), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(4577), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1912] = { + [1923] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1925), - [sym_concatenation] = STATE(1925), + [aux_sym_expansion_repeat1] = STATE(1936), + [sym_concatenation] = STATE(1936), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4579), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4561), + [anon_sym_POUND] = ACTIONS(4581), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4563), - [anon_sym_DASH] = ACTIONS(4559), - [anon_sym_COLON_DASH] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4579), + [anon_sym_COLON_DASH] = ACTIONS(4579), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4579), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4559), + [anon_sym_COLON_QMARK] = ACTIONS(4579), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_COLON] = ACTIONS(4579), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4565), + [sym_regex] = ACTIONS(4585), }, - [1913] = { + [1924] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4563), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1914] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1925] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4551), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(4571), + [sym__concat] = ACTIONS(1298), }, - [1915] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(4567), + [1926] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(4587), [sym_comment] = ACTIONS(41), }, - [1916] = { - [anon_sym_RBRACE] = ACTIONS(4551), + [1927] = { + [anon_sym_RBRACE] = ACTIONS(4571), [sym_comment] = ACTIONS(41), }, - [1917] = { + [1928] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1926), - [sym_concatenation] = STATE(1926), + [aux_sym_expansion_repeat1] = STATE(1937), + [sym_concatenation] = STATE(1937), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4569), + [anon_sym_PERCENT] = ACTIONS(4589), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4571), + [anon_sym_POUND] = ACTIONS(4591), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_COLON_DASH] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_COLON_DASH] = ACTIONS(4589), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4569), + [anon_sym_EQ] = ACTIONS(4589), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4569), + [anon_sym_COLON_QMARK] = ACTIONS(4589), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(4589), [sym__special_character] = ACTIONS(459), }, - [1918] = { + [1929] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1919] = { + [1930] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1920] = { + [1931] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1927), - [sym_concatenation] = STATE(1927), + [aux_sym_expansion_repeat1] = STATE(1938), + [sym_concatenation] = STATE(1938), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4577), + [anon_sym_PERCENT] = ACTIONS(4597), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4579), + [anon_sym_POUND] = ACTIONS(4599), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_COLON_DASH] = ACTIONS(4577), + [anon_sym_RBRACE] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_COLON_DASH] = ACTIONS(4597), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4577), + [anon_sym_EQ] = ACTIONS(4597), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4577), + [anon_sym_COLON_QMARK] = ACTIONS(4597), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_COLON] = ACTIONS(4597), [sym__special_character] = ACTIONS(459), }, - [1921] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1932] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4575), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(4595), + [sym__concat] = ACTIONS(1298), }, - [1922] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(4581), + [1933] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(4601), [sym_comment] = ACTIONS(41), }, - [1923] = { - [anon_sym_RBRACE] = ACTIONS(4575), + [1934] = { + [anon_sym_RBRACE] = ACTIONS(4595), [sym_comment] = ACTIONS(41), }, - [1924] = { + [1935] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1928), - [sym_concatenation] = STATE(1928), + [aux_sym_expansion_repeat1] = STATE(1939), + [sym_concatenation] = STATE(1939), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4603), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4585), + [anon_sym_POUND] = ACTIONS(4605), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4583), - [anon_sym_COLON_DASH] = ACTIONS(4583), + [anon_sym_RBRACE] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4603), + [anon_sym_COLON_DASH] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4603), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4583), + [anon_sym_COLON_QMARK] = ACTIONS(4603), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4603), [sym__special_character] = ACTIONS(459), }, - [1925] = { + [1936] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1926] = { + [1937] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1927] = { + [1938] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1928] = { + [1939] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1929] = { - [sym_string] = STATE(1003), - [anon_sym__] = ACTIONS(2786), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(4595), - [anon_sym_STAR] = ACTIONS(4597), - [anon_sym_0] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(4595), - [aux_sym__simple_variable_name_token1] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(4595), - [anon_sym_AT] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4595), - [sym_raw_string] = ACTIONS(4599), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4597), + [1940] = { + [sym_string] = STATE(1009), + [anon_sym__] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_POUND] = ACTIONS(4615), + [anon_sym_STAR] = ACTIONS(4617), + [anon_sym_0] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__simple_variable_name_token1] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(4615), + [anon_sym_AT] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4615), + [sym_raw_string] = ACTIONS(4619), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(4617), }, - [1930] = { + [1941] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1937), + [aux_sym_string_repeat1] = STATE(1948), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4601), + [anon_sym_DOLLAR] = ACTIONS(4621), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4603), + [anon_sym_DQUOTE] = ACTIONS(4623), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [1931] = { + [1942] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4605), + [anon_sym_BQUOTE] = ACTIONS(4625), }, - [1932] = { - [anon_sym_RPAREN] = ACTIONS(4607), + [1943] = { + [anon_sym_RPAREN] = ACTIONS(4627), [sym_comment] = ACTIONS(41), }, - [1933] = { - [sym_command_substitution] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_string_expansion] = STATE(1010), - [sym_string] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [sym_expansion] = STATE(1010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), - [anon_sym_DQUOTE] = ACTIONS(666), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2747), - [sym_word] = ACTIONS(2749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), - [anon_sym_DOLLAR] = ACTIONS(674), - [anon_sym_LT_LPAREN] = ACTIONS(676), - [sym_ansii_c_string] = ACTIONS(2747), - [anon_sym_BQUOTE] = ACTIONS(678), - [anon_sym_GT_LPAREN] = ACTIONS(676), - [sym__special_character] = ACTIONS(2747), - [sym_number] = ACTIONS(2749), + [1944] = { + [sym_command_substitution] = STATE(1016), + [sym_simple_expansion] = STATE(1016), + [sym_string_expansion] = STATE(1016), + [sym_string] = STATE(1016), + [sym_process_substitution] = STATE(1016), + [sym_expansion] = STATE(1016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2751), + [sym_word] = ACTIONS(2753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(674), + [anon_sym_DOLLAR] = ACTIONS(676), + [anon_sym_LT_LPAREN] = ACTIONS(678), + [sym_ansii_c_string] = ACTIONS(2751), + [anon_sym_BQUOTE] = ACTIONS(680), + [anon_sym_GT_LPAREN] = ACTIONS(678), + [sym__special_character] = ACTIONS(2751), + [sym_number] = ACTIONS(2753), }, - [1934] = { + [1945] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1941), - [sym_concatenation] = STATE(1941), + [aux_sym_expansion_repeat1] = STATE(1952), + [sym_concatenation] = STATE(1952), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4609), + [anon_sym_PERCENT] = ACTIONS(4629), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4631), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4613), + [anon_sym_SLASH] = ACTIONS(4633), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_DASH] = ACTIONS(4629), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4609), - [anon_sym_EQ] = ACTIONS(4609), + [anon_sym_COLON_DASH] = ACTIONS(4629), + [anon_sym_EQ] = ACTIONS(4629), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4609), + [anon_sym_COLON_QMARK] = ACTIONS(4629), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4615), + [anon_sym_RBRACE] = ACTIONS(4635), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4609), + [anon_sym_COLON] = ACTIONS(4629), [sym__special_character] = ACTIONS(459), }, - [1935] = { + [1946] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1946), - [sym_concatenation] = STATE(1946), + [aux_sym_expansion_repeat1] = STATE(1957), + [sym_concatenation] = STATE(1957), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4637), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4639), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4641), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4637), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), + [anon_sym_COLON_DASH] = ACTIONS(4637), + [anon_sym_EQ] = ACTIONS(4637), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4617), + [anon_sym_COLON_QMARK] = ACTIONS(4637), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4623), + [anon_sym_RBRACE] = ACTIONS(4643), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4617), + [anon_sym_COLON] = ACTIONS(4637), [sym__special_character] = ACTIONS(459), }, - [1936] = { + [1947] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DQUOTE] = ACTIONS(4645), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -59441,20 +59656,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [1937] = { + [1948] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4647), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DQUOTE] = ACTIONS(4645), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [1938] = { + [1949] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -59467,7 +59682,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4629), + [anon_sym_RPAREN] = ACTIONS(4649), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -59479,233 +59694,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [1939] = { - [anon_sym_RPAREN] = ACTIONS(4629), + [1950] = { + [anon_sym_RPAREN] = ACTIONS(4649), [sym_comment] = ACTIONS(41), }, - [1940] = { + [1951] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1949), - [sym_concatenation] = STATE(1949), + [aux_sym_expansion_repeat1] = STATE(1960), + [sym_concatenation] = STATE(1960), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4631), + [anon_sym_PERCENT] = ACTIONS(4651), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4633), + [anon_sym_POUND] = ACTIONS(4653), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4635), - [anon_sym_DASH] = ACTIONS(4631), - [anon_sym_COLON_DASH] = ACTIONS(4631), + [anon_sym_RBRACE] = ACTIONS(4655), + [anon_sym_DASH] = ACTIONS(4651), + [anon_sym_COLON_DASH] = ACTIONS(4651), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4631), + [anon_sym_EQ] = ACTIONS(4651), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4631), + [anon_sym_COLON_QMARK] = ACTIONS(4651), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4631), + [anon_sym_COLON] = ACTIONS(4651), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4637), + [sym_regex] = ACTIONS(4657), }, - [1941] = { + [1952] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4635), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4655), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1942] = { + [1953] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1949), - [sym_concatenation] = STATE(1949), + [aux_sym_expansion_repeat1] = STATE(1960), + [sym_concatenation] = STATE(1960), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4631), + [anon_sym_PERCENT] = ACTIONS(4651), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4633), + [anon_sym_POUND] = ACTIONS(4653), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4639), + [anon_sym_SLASH] = ACTIONS(4659), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4631), + [anon_sym_DASH] = ACTIONS(4651), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4631), + [anon_sym_COLON_DASH] = ACTIONS(4651), + [anon_sym_EQ] = ACTIONS(4651), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4631), + [anon_sym_COLON_QMARK] = ACTIONS(4651), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4655), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4631), + [anon_sym_COLON] = ACTIONS(4651), [sym__special_character] = ACTIONS(459), }, - [1943] = { + [1954] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1953), - [sym_concatenation] = STATE(1953), + [aux_sym_expansion_repeat1] = STATE(1964), + [sym_concatenation] = STATE(1964), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4641), + [anon_sym_PERCENT] = ACTIONS(4661), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4643), + [anon_sym_POUND] = ACTIONS(4663), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4645), + [anon_sym_SLASH] = ACTIONS(4665), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4641), + [anon_sym_DASH] = ACTIONS(4661), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), + [anon_sym_COLON_DASH] = ACTIONS(4661), + [anon_sym_EQ] = ACTIONS(4661), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4641), + [anon_sym_COLON_QMARK] = ACTIONS(4661), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4647), + [anon_sym_RBRACE] = ACTIONS(4667), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4641), + [anon_sym_COLON] = ACTIONS(4661), [sym__special_character] = ACTIONS(459), }, - [1944] = { - [sym_command_substitution] = STATE(1954), - [aux_sym__literal_repeat1] = STATE(1955), - [sym_string] = STATE(1954), - [sym_process_substitution] = STATE(1954), - [sym_simple_expansion] = STATE(1954), - [sym_string_expansion] = STATE(1954), - [sym_concatenation] = STATE(1956), - [sym_expansion] = STATE(1954), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4649), - [sym_word] = ACTIONS(4651), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(4649), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(4635), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(4651), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1955] = { + [sym_command_substitution] = STATE(1965), + [aux_sym__literal_repeat1] = STATE(1966), + [sym_string] = STATE(1965), + [sym_process_substitution] = STATE(1965), + [sym_simple_expansion] = STATE(1965), + [sym_string_expansion] = STATE(1965), + [sym_concatenation] = STATE(1967), + [sym_expansion] = STATE(1965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4669), + [sym_word] = ACTIONS(4671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4669), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(4655), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(4671), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1945] = { + [1956] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1958), - [sym_concatenation] = STATE(1958), + [aux_sym_expansion_repeat1] = STATE(1969), + [sym_concatenation] = STATE(1969), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4653), + [anon_sym_PERCENT] = ACTIONS(4673), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4655), + [anon_sym_POUND] = ACTIONS(4675), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_COLON_DASH] = ACTIONS(4653), + [anon_sym_RBRACE] = ACTIONS(4677), + [anon_sym_DASH] = ACTIONS(4673), + [anon_sym_COLON_DASH] = ACTIONS(4673), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4653), + [anon_sym_EQ] = ACTIONS(4673), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4653), + [anon_sym_COLON_QMARK] = ACTIONS(4673), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4653), + [anon_sym_COLON] = ACTIONS(4673), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4659), + [sym_regex] = ACTIONS(4679), }, - [1946] = { + [1957] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4677), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1947] = { + [1958] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE] = ACTIONS(4681), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -59718,637 +59933,637 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [1948] = { + [1959] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1959), - [sym_concatenation] = STATE(1959), + [aux_sym_expansion_repeat1] = STATE(1970), + [sym_concatenation] = STATE(1970), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4663), + [anon_sym_PERCENT] = ACTIONS(4683), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4665), + [anon_sym_POUND] = ACTIONS(4685), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4667), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_COLON_DASH] = ACTIONS(4663), + [anon_sym_RBRACE] = ACTIONS(4687), + [anon_sym_DASH] = ACTIONS(4683), + [anon_sym_COLON_DASH] = ACTIONS(4683), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4663), + [anon_sym_EQ] = ACTIONS(4683), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4663), + [anon_sym_COLON_QMARK] = ACTIONS(4683), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4663), + [anon_sym_COLON] = ACTIONS(4683), [sym__special_character] = ACTIONS(459), }, - [1949] = { + [1960] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4667), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4687), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1950] = { + [1961] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1959), - [sym_concatenation] = STATE(1959), + [aux_sym_expansion_repeat1] = STATE(1970), + [sym_concatenation] = STATE(1970), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4663), + [anon_sym_PERCENT] = ACTIONS(4683), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4665), + [anon_sym_POUND] = ACTIONS(4685), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4667), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_COLON_DASH] = ACTIONS(4663), + [anon_sym_RBRACE] = ACTIONS(4687), + [anon_sym_DASH] = ACTIONS(4683), + [anon_sym_COLON_DASH] = ACTIONS(4683), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4663), + [anon_sym_EQ] = ACTIONS(4683), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4663), + [anon_sym_COLON_QMARK] = ACTIONS(4683), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4663), + [anon_sym_COLON] = ACTIONS(4683), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4669), + [sym_regex] = ACTIONS(4689), }, - [1951] = { - [sym_command_substitution] = STATE(1961), - [aux_sym__literal_repeat1] = STATE(1962), - [sym_string] = STATE(1961), - [sym_process_substitution] = STATE(1961), - [sym_simple_expansion] = STATE(1961), - [sym_string_expansion] = STATE(1961), - [sym_concatenation] = STATE(1963), - [sym_expansion] = STATE(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4671), - [sym_word] = ACTIONS(4673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(4671), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(4667), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(4673), - [anon_sym_GT_LPAREN] = ACTIONS(943), - }, - [1952] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1965), - [sym_concatenation] = STATE(1965), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4675), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4677), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_COLON_DASH] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4675), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4675), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4675), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4681), + [1962] = { + [sym_command_substitution] = STATE(1972), + [aux_sym__literal_repeat1] = STATE(1973), + [sym_string] = STATE(1972), + [sym_process_substitution] = STATE(1972), + [sym_simple_expansion] = STATE(1972), + [sym_string_expansion] = STATE(1972), + [sym_concatenation] = STATE(1974), + [sym_expansion] = STATE(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4691), + [sym_word] = ACTIONS(4693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(4687), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(4693), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1953] = { + [1963] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1976), + [sym_concatenation] = STATE(1976), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4695), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4697), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_COLON_DASH] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(4695), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4695), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4695), [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(4701), }, - [1954] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4667), - [sym__concat] = ACTIONS(1294), - }, - [1955] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(4683), - [sym_comment] = ACTIONS(41), - }, - [1956] = { - [anon_sym_RBRACE] = ACTIONS(4667), - [sym_comment] = ACTIONS(41), - }, - [1957] = { + [1964] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1966), - [sym_concatenation] = STATE(1966), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4685), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4687), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_COLON_DASH] = ACTIONS(4685), + [anon_sym_RBRACE] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4685), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4685), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4685), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1958] = { + [1965] = { + [aux_sym_concatenation_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4687), + [sym__concat] = ACTIONS(1298), + }, + [1966] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(4703), + [sym_comment] = ACTIONS(41), + }, + [1967] = { + [anon_sym_RBRACE] = ACTIONS(4687), + [sym_comment] = ACTIONS(41), + }, + [1968] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(1977), + [sym_concatenation] = STATE(1977), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(4705), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(4707), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4709), + [anon_sym_DASH] = ACTIONS(4705), + [anon_sym_COLON_DASH] = ACTIONS(4705), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(4705), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(4705), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(4705), [sym__special_character] = ACTIONS(459), }, - [1959] = { + [1969] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4709), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1960] = { + [1970] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1967), - [sym_concatenation] = STATE(1967), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4693), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4695), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4693), - [anon_sym_COLON_DASH] = ACTIONS(4693), + [anon_sym_RBRACE] = ACTIONS(4711), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4693), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4693), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4693), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1961] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [1971] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(1978), + [sym_concatenation] = STATE(1978), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(4713), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4715), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(4711), + [anon_sym_DASH] = ACTIONS(4713), + [anon_sym_COLON_DASH] = ACTIONS(4713), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(4713), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(4713), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4713), + [sym__special_character] = ACTIONS(459), + }, + [1972] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4691), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(4711), + [sym__concat] = ACTIONS(1298), }, - [1962] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(4697), + [1973] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(4717), [sym_comment] = ACTIONS(41), }, - [1963] = { - [anon_sym_RBRACE] = ACTIONS(4691), + [1974] = { + [anon_sym_RBRACE] = ACTIONS(4711), [sym_comment] = ACTIONS(41), }, - [1964] = { + [1975] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1968), - [sym_concatenation] = STATE(1968), + [aux_sym_expansion_repeat1] = STATE(1979), + [sym_concatenation] = STATE(1979), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4699), + [anon_sym_PERCENT] = ACTIONS(4719), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4701), + [anon_sym_POUND] = ACTIONS(4721), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_COLON_DASH] = ACTIONS(4699), + [anon_sym_RBRACE] = ACTIONS(4723), + [anon_sym_DASH] = ACTIONS(4719), + [anon_sym_COLON_DASH] = ACTIONS(4719), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4699), + [anon_sym_EQ] = ACTIONS(4719), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4699), + [anon_sym_COLON_QMARK] = ACTIONS(4719), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4699), + [anon_sym_COLON] = ACTIONS(4719), [sym__special_character] = ACTIONS(459), }, - [1965] = { + [1976] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4723), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1966] = { + [1977] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4705), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4725), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1967] = { + [1978] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4727), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1968] = { + [1979] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4709), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1969] = { - [sym_string] = STATE(1035), - [anon_sym__] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4711), - [sym_raw_string] = ACTIONS(4713), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_DOLLAR] = ACTIONS(4711), - [anon_sym_AT] = ACTIONS(4715), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_DQUOTE] = ACTIONS(2779), - [anon_sym_0] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(4715), - [aux_sym__simple_variable_name_token1] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(4715), + [1980] = { + [sym_string] = STATE(1041), + [anon_sym__] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4731), + [sym_raw_string] = ACTIONS(4733), + [anon_sym_BANG] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4731), + [anon_sym_AT] = ACTIONS(4735), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(2783), + [anon_sym_0] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(4735), + [aux_sym__simple_variable_name_token1] = ACTIONS(2822), + [anon_sym_QMARK] = ACTIONS(4735), }, - [1970] = { + [1981] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1977), + [aux_sym_string_repeat1] = STATE(1988), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4717), + [anon_sym_DQUOTE] = ACTIONS(4737), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4719), + [anon_sym_DOLLAR] = ACTIONS(4739), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1971] = { + [1982] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4721), + [anon_sym_BQUOTE] = ACTIONS(4741), }, - [1972] = { - [anon_sym_RPAREN] = ACTIONS(4723), + [1983] = { + [anon_sym_RPAREN] = ACTIONS(4743), [sym_comment] = ACTIONS(41), }, - [1973] = { - [sym_command_substitution] = STATE(1042), - [sym_string] = STATE(1042), - [sym_process_substitution] = STATE(1042), - [sym_simple_expansion] = STATE(1042), - [sym_string_expansion] = STATE(1042), - [sym_expansion] = STATE(1042), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2767), - [anon_sym_DOLLAR] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(2771), - [anon_sym_GT_LPAREN] = ACTIONS(2773), - [sym_number] = ACTIONS(2775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_word] = ACTIONS(2775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2781), - [anon_sym_LT_LPAREN] = ACTIONS(2773), - [sym_ansii_c_string] = ACTIONS(2767), - [sym__special_character] = ACTIONS(2767), + [1984] = { + [sym_command_substitution] = STATE(1048), + [sym_string] = STATE(1048), + [sym_process_substitution] = STATE(1048), + [sym_simple_expansion] = STATE(1048), + [sym_string_expansion] = STATE(1048), + [sym_expansion] = STATE(1048), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2771), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(2775), + [anon_sym_GT_LPAREN] = ACTIONS(2777), + [sym_number] = ACTIONS(2779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_word] = ACTIONS(2779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2785), + [anon_sym_LT_LPAREN] = ACTIONS(2777), + [sym_ansii_c_string] = ACTIONS(2771), + [sym__special_character] = ACTIONS(2771), }, - [1974] = { + [1985] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1981), - [sym_concatenation] = STATE(1981), + [aux_sym_expansion_repeat1] = STATE(1992), + [sym_concatenation] = STATE(1992), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4725), + [anon_sym_PERCENT] = ACTIONS(4745), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4727), + [anon_sym_POUND] = ACTIONS(4747), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4729), + [anon_sym_SLASH] = ACTIONS(4749), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4725), + [anon_sym_DASH] = ACTIONS(4745), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4725), - [anon_sym_EQ] = ACTIONS(4725), + [anon_sym_COLON_DASH] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4745), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4725), + [anon_sym_COLON_QMARK] = ACTIONS(4745), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4731), + [anon_sym_RBRACE] = ACTIONS(4751), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4725), + [anon_sym_COLON] = ACTIONS(4745), [sym__special_character] = ACTIONS(459), }, - [1975] = { + [1986] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1986), - [sym_concatenation] = STATE(1986), + [aux_sym_expansion_repeat1] = STATE(1997), + [sym_concatenation] = STATE(1997), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4733), + [anon_sym_PERCENT] = ACTIONS(4753), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4735), + [anon_sym_POUND] = ACTIONS(4755), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4737), + [anon_sym_SLASH] = ACTIONS(4757), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4733), + [anon_sym_DASH] = ACTIONS(4753), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4733), - [anon_sym_EQ] = ACTIONS(4733), + [anon_sym_COLON_DASH] = ACTIONS(4753), + [anon_sym_EQ] = ACTIONS(4753), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4733), + [anon_sym_COLON_QMARK] = ACTIONS(4753), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4739), + [anon_sym_RBRACE] = ACTIONS(4759), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4733), + [anon_sym_COLON] = ACTIONS(4753), [sym__special_character] = ACTIONS(459), }, - [1976] = { + [1987] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -60357,26 +60572,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4741), + [anon_sym_DQUOTE] = ACTIONS(4761), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1977] = { + [1988] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4741), + [anon_sym_DQUOTE] = ACTIONS(4761), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4763), [anon_sym_BQUOTE] = ACTIONS(273), }, - [1978] = { + [1989] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -60389,7 +60604,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_RPAREN] = ACTIONS(4765), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -60401,231 +60616,231 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [1979] = { - [anon_sym_RPAREN] = ACTIONS(4745), + [1990] = { + [anon_sym_RPAREN] = ACTIONS(4765), [sym_comment] = ACTIONS(41), }, - [1980] = { + [1991] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1989), - [sym_concatenation] = STATE(1989), + [aux_sym_expansion_repeat1] = STATE(2000), + [sym_concatenation] = STATE(2000), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4747), + [anon_sym_PERCENT] = ACTIONS(4767), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4749), + [anon_sym_POUND] = ACTIONS(4769), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4751), - [anon_sym_DASH] = ACTIONS(4747), - [anon_sym_COLON_DASH] = ACTIONS(4747), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4767), + [anon_sym_COLON_DASH] = ACTIONS(4767), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_EQ] = ACTIONS(4767), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4747), + [anon_sym_COLON_QMARK] = ACTIONS(4767), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4767), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4753), + [sym_regex] = ACTIONS(4773), }, - [1981] = { + [1992] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4751), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1982] = { + [1993] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1989), - [sym_concatenation] = STATE(1989), + [aux_sym_expansion_repeat1] = STATE(2000), + [sym_concatenation] = STATE(2000), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4747), + [anon_sym_PERCENT] = ACTIONS(4767), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4749), + [anon_sym_POUND] = ACTIONS(4769), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4755), + [anon_sym_SLASH] = ACTIONS(4775), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4767), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_COLON_DASH] = ACTIONS(4767), + [anon_sym_EQ] = ACTIONS(4767), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4747), + [anon_sym_COLON_QMARK] = ACTIONS(4767), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4771), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4767), [sym__special_character] = ACTIONS(459), }, - [1983] = { + [1994] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1993), - [sym_concatenation] = STATE(1993), + [aux_sym_expansion_repeat1] = STATE(2004), + [sym_concatenation] = STATE(2004), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4757), + [anon_sym_PERCENT] = ACTIONS(4777), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4759), + [anon_sym_POUND] = ACTIONS(4779), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4761), + [anon_sym_SLASH] = ACTIONS(4781), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_DASH] = ACTIONS(4777), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4757), - [anon_sym_EQ] = ACTIONS(4757), + [anon_sym_COLON_DASH] = ACTIONS(4777), + [anon_sym_EQ] = ACTIONS(4777), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4757), + [anon_sym_COLON_QMARK] = ACTIONS(4777), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4763), + [anon_sym_RBRACE] = ACTIONS(4783), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_COLON] = ACTIONS(4777), [sym__special_character] = ACTIONS(459), }, - [1984] = { - [sym_command_substitution] = STATE(1994), - [aux_sym__literal_repeat1] = STATE(1995), - [sym_string] = STATE(1994), - [sym_process_substitution] = STATE(1994), - [sym_simple_expansion] = STATE(1994), - [sym_string_expansion] = STATE(1994), - [sym_concatenation] = STATE(1996), - [sym_expansion] = STATE(1994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4765), - [sym_word] = ACTIONS(4767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(4765), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(4751), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(4767), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [1995] = { + [sym_command_substitution] = STATE(2005), + [aux_sym__literal_repeat1] = STATE(2006), + [sym_string] = STATE(2005), + [sym_process_substitution] = STATE(2005), + [sym_simple_expansion] = STATE(2005), + [sym_string_expansion] = STATE(2005), + [sym_concatenation] = STATE(2007), + [sym_expansion] = STATE(2005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4785), + [sym_word] = ACTIONS(4787), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4785), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(4771), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(4787), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1985] = { + [1996] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1998), - [sym_concatenation] = STATE(1998), + [aux_sym_expansion_repeat1] = STATE(2009), + [sym_concatenation] = STATE(2009), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4769), + [anon_sym_PERCENT] = ACTIONS(4789), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4771), + [anon_sym_POUND] = ACTIONS(4791), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_COLON_DASH] = ACTIONS(4769), + [anon_sym_RBRACE] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(4789), + [anon_sym_COLON_DASH] = ACTIONS(4789), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4769), + [anon_sym_EQ] = ACTIONS(4789), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4769), + [anon_sym_COLON_QMARK] = ACTIONS(4789), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4769), + [anon_sym_COLON] = ACTIONS(4789), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4775), + [sym_regex] = ACTIONS(4795), }, - [1986] = { + [1997] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4793), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1987] = { + [1998] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -60634,643 +60849,643 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4777), + [anon_sym_DQUOTE] = ACTIONS(4797), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [1988] = { + [1999] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1999), - [sym_concatenation] = STATE(1999), + [aux_sym_expansion_repeat1] = STATE(2010), + [sym_concatenation] = STATE(2010), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4779), + [anon_sym_PERCENT] = ACTIONS(4799), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4781), + [anon_sym_POUND] = ACTIONS(4801), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4783), - [anon_sym_DASH] = ACTIONS(4779), - [anon_sym_COLON_DASH] = ACTIONS(4779), + [anon_sym_RBRACE] = ACTIONS(4803), + [anon_sym_DASH] = ACTIONS(4799), + [anon_sym_COLON_DASH] = ACTIONS(4799), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4779), + [anon_sym_EQ] = ACTIONS(4799), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4779), + [anon_sym_COLON_QMARK] = ACTIONS(4799), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4779), + [anon_sym_COLON] = ACTIONS(4799), [sym__special_character] = ACTIONS(459), }, - [1989] = { + [2000] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4783), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4803), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1990] = { + [2001] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1999), - [sym_concatenation] = STATE(1999), + [aux_sym_expansion_repeat1] = STATE(2010), + [sym_concatenation] = STATE(2010), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4779), + [anon_sym_PERCENT] = ACTIONS(4799), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4781), + [anon_sym_POUND] = ACTIONS(4801), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4783), - [anon_sym_DASH] = ACTIONS(4779), - [anon_sym_COLON_DASH] = ACTIONS(4779), + [anon_sym_RBRACE] = ACTIONS(4803), + [anon_sym_DASH] = ACTIONS(4799), + [anon_sym_COLON_DASH] = ACTIONS(4799), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4779), + [anon_sym_EQ] = ACTIONS(4799), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4779), + [anon_sym_COLON_QMARK] = ACTIONS(4799), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4779), + [anon_sym_COLON] = ACTIONS(4799), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4785), + [sym_regex] = ACTIONS(4805), }, - [1991] = { - [sym_command_substitution] = STATE(2001), - [aux_sym__literal_repeat1] = STATE(2002), - [sym_string] = STATE(2001), - [sym_process_substitution] = STATE(2001), - [sym_simple_expansion] = STATE(2001), - [sym_string_expansion] = STATE(2001), - [sym_concatenation] = STATE(2003), - [sym_expansion] = STATE(2001), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4787), - [sym_word] = ACTIONS(4789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(4787), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(4783), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2002] = { + [sym_command_substitution] = STATE(2012), + [aux_sym__literal_repeat1] = STATE(2013), + [sym_string] = STATE(2012), + [sym_process_substitution] = STATE(2012), + [sym_simple_expansion] = STATE(2012), + [sym_string_expansion] = STATE(2012), + [sym_concatenation] = STATE(2014), + [sym_expansion] = STATE(2012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4807), + [sym_word] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(4807), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(4803), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [1992] = { + [2003] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2005), - [sym_concatenation] = STATE(2005), + [aux_sym_expansion_repeat1] = STATE(2016), + [sym_concatenation] = STATE(2016), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4791), + [anon_sym_PERCENT] = ACTIONS(4811), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4793), + [anon_sym_POUND] = ACTIONS(4813), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4791), - [anon_sym_COLON_DASH] = ACTIONS(4791), + [anon_sym_RBRACE] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(4811), + [anon_sym_COLON_DASH] = ACTIONS(4811), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4791), + [anon_sym_EQ] = ACTIONS(4811), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4791), + [anon_sym_COLON_QMARK] = ACTIONS(4811), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4791), + [anon_sym_COLON] = ACTIONS(4811), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4797), + [sym_regex] = ACTIONS(4817), }, - [1993] = { + [2004] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4815), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1994] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2005] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4783), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(4803), + [sym__concat] = ACTIONS(1298), }, - [1995] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(4799), + [2006] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(4819), [sym_comment] = ACTIONS(41), }, - [1996] = { - [anon_sym_RBRACE] = ACTIONS(4783), + [2007] = { + [anon_sym_RBRACE] = ACTIONS(4803), [sym_comment] = ACTIONS(41), }, - [1997] = { + [2008] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2006), - [sym_concatenation] = STATE(2006), + [aux_sym_expansion_repeat1] = STATE(2017), + [sym_concatenation] = STATE(2017), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4801), + [anon_sym_PERCENT] = ACTIONS(4821), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4803), + [anon_sym_POUND] = ACTIONS(4823), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4805), - [anon_sym_DASH] = ACTIONS(4801), - [anon_sym_COLON_DASH] = ACTIONS(4801), + [anon_sym_RBRACE] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4821), + [anon_sym_COLON_DASH] = ACTIONS(4821), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4801), + [anon_sym_EQ] = ACTIONS(4821), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4801), + [anon_sym_COLON_QMARK] = ACTIONS(4821), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4801), + [anon_sym_COLON] = ACTIONS(4821), [sym__special_character] = ACTIONS(459), }, - [1998] = { + [2009] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4805), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [1999] = { + [2010] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2000] = { + [2011] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2007), - [sym_concatenation] = STATE(2007), + [aux_sym_expansion_repeat1] = STATE(2018), + [sym_concatenation] = STATE(2018), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4809), + [anon_sym_PERCENT] = ACTIONS(4829), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4811), + [anon_sym_POUND] = ACTIONS(4831), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_DASH] = ACTIONS(4809), - [anon_sym_COLON_DASH] = ACTIONS(4809), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_COLON_DASH] = ACTIONS(4829), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4809), + [anon_sym_EQ] = ACTIONS(4829), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4809), + [anon_sym_COLON_QMARK] = ACTIONS(4829), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4809), + [anon_sym_COLON] = ACTIONS(4829), [sym__special_character] = ACTIONS(459), }, - [2001] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2012] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4807), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(4827), + [sym__concat] = ACTIONS(1298), }, - [2002] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(4813), + [2013] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(4833), [sym_comment] = ACTIONS(41), }, - [2003] = { - [anon_sym_RBRACE] = ACTIONS(4807), + [2014] = { + [anon_sym_RBRACE] = ACTIONS(4827), [sym_comment] = ACTIONS(41), }, - [2004] = { + [2015] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2008), - [sym_concatenation] = STATE(2008), + [aux_sym_expansion_repeat1] = STATE(2019), + [sym_concatenation] = STATE(2019), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4815), + [anon_sym_PERCENT] = ACTIONS(4835), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4817), + [anon_sym_POUND] = ACTIONS(4837), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_DASH] = ACTIONS(4815), - [anon_sym_COLON_DASH] = ACTIONS(4815), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_DASH] = ACTIONS(4835), + [anon_sym_COLON_DASH] = ACTIONS(4835), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(4835), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4815), + [anon_sym_COLON_QMARK] = ACTIONS(4835), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4815), + [anon_sym_COLON] = ACTIONS(4835), [sym__special_character] = ACTIONS(459), }, - [2005] = { + [2016] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2006] = { + [2017] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2007] = { + [2018] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4823), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4843), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2008] = { + [2019] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2009] = { - [sym_string] = STATE(1067), - [anon_sym__] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4827), - [sym_raw_string] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_AT] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(2811), - [anon_sym_0] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(4831), - [aux_sym__simple_variable_name_token1] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(4831), + [2020] = { + [sym_string] = STATE(1073), + [anon_sym__] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(4847), + [sym_raw_string] = ACTIONS(4849), + [anon_sym_BANG] = ACTIONS(4847), + [anon_sym_DOLLAR] = ACTIONS(4847), + [anon_sym_AT] = ACTIONS(4851), + [anon_sym_DASH] = ACTIONS(4847), + [anon_sym_DQUOTE] = ACTIONS(2815), + [anon_sym_0] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(4851), + [aux_sym__simple_variable_name_token1] = ACTIONS(2844), + [anon_sym_QMARK] = ACTIONS(4851), }, - [2010] = { + [2021] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2017), + [aux_sym_string_repeat1] = STATE(2028), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(4853), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4855), [anon_sym_BQUOTE] = ACTIONS(273), }, - [2011] = { + [2022] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(4857), }, - [2012] = { - [anon_sym_RPAREN] = ACTIONS(4839), + [2023] = { + [anon_sym_RPAREN] = ACTIONS(4859), [sym_comment] = ACTIONS(41), }, - [2013] = { - [sym_command_substitution] = STATE(1074), - [sym_string] = STATE(1074), - [sym_process_substitution] = STATE(1074), - [sym_simple_expansion] = STATE(1074), - [sym_string_expansion] = STATE(1074), - [sym_expansion] = STATE(1074), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2799), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_BQUOTE] = ACTIONS(2803), - [anon_sym_GT_LPAREN] = ACTIONS(2805), - [sym_number] = ACTIONS(2807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_word] = ACTIONS(2807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), - [anon_sym_LT_LPAREN] = ACTIONS(2805), - [sym_ansii_c_string] = ACTIONS(2799), - [sym__special_character] = ACTIONS(2799), + [2024] = { + [sym_command_substitution] = STATE(1080), + [sym_string] = STATE(1080), + [sym_process_substitution] = STATE(1080), + [sym_simple_expansion] = STATE(1080), + [sym_string_expansion] = STATE(1080), + [sym_expansion] = STATE(1080), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(2807), + [anon_sym_GT_LPAREN] = ACTIONS(2809), + [sym_number] = ACTIONS(2811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_word] = ACTIONS(2811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2809), + [sym_ansii_c_string] = ACTIONS(2803), + [sym__special_character] = ACTIONS(2803), }, - [2014] = { + [2025] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2021), - [sym_concatenation] = STATE(2021), + [aux_sym_expansion_repeat1] = STATE(2032), + [sym_concatenation] = STATE(2032), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4861), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4841), + [anon_sym_COLON_DASH] = ACTIONS(4861), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4841), + [anon_sym_COLON_QMARK] = ACTIONS(4861), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4861), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4843), + [anon_sym_POUND] = ACTIONS(4863), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_RBRACE] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_EQ] = ACTIONS(4861), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4841), + [anon_sym_COLON] = ACTIONS(4861), }, - [2015] = { + [2026] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2026), - [sym_concatenation] = STATE(2026), + [aux_sym_expansion_repeat1] = STATE(2037), + [sym_concatenation] = STATE(2037), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4849), + [anon_sym_DASH] = ACTIONS(4869), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4849), + [anon_sym_COLON_DASH] = ACTIONS(4869), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4849), + [anon_sym_COLON_QMARK] = ACTIONS(4869), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4849), + [anon_sym_PERCENT] = ACTIONS(4869), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4851), + [anon_sym_POUND] = ACTIONS(4871), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4853), - [anon_sym_RBRACE] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4849), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_EQ] = ACTIONS(4869), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4849), + [anon_sym_COLON] = ACTIONS(4869), }, - [2016] = { + [2027] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -61279,26 +61494,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_DQUOTE] = ACTIONS(4877), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [2017] = { + [2028] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4857), + [anon_sym_DQUOTE] = ACTIONS(4877), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(4879), [anon_sym_BQUOTE] = ACTIONS(273), }, - [2018] = { + [2029] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_BQUOTE] = ACTIONS(333), @@ -61314,7 +61529,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(333), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4881), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(333), @@ -61323,231 +61538,231 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym_ansii_c_string] = ACTIONS(333), }, - [2019] = { - [anon_sym_RPAREN] = ACTIONS(4861), + [2030] = { + [anon_sym_RPAREN] = ACTIONS(4881), [sym_comment] = ACTIONS(41), }, - [2020] = { + [2031] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2029), - [sym_concatenation] = STATE(2029), + [aux_sym_expansion_repeat1] = STATE(2040), + [sym_concatenation] = STATE(2040), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4863), + [anon_sym_DASH] = ACTIONS(4883), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4863), + [anon_sym_COLON_DASH] = ACTIONS(4883), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4863), + [anon_sym_COLON_QMARK] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4863), + [anon_sym_PERCENT] = ACTIONS(4883), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4885), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_EQ] = ACTIONS(4883), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4863), - [sym_regex] = ACTIONS(4869), + [anon_sym_COLON] = ACTIONS(4883), + [sym_regex] = ACTIONS(4889), }, - [2021] = { + [2032] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2022] = { + [2033] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2029), - [sym_concatenation] = STATE(2029), + [aux_sym_expansion_repeat1] = STATE(2040), + [sym_concatenation] = STATE(2040), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4863), + [anon_sym_DASH] = ACTIONS(4883), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4863), + [anon_sym_COLON_DASH] = ACTIONS(4883), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4863), + [anon_sym_COLON_QMARK] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4863), + [anon_sym_PERCENT] = ACTIONS(4883), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4885), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4871), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_SLASH] = ACTIONS(4891), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_EQ] = ACTIONS(4883), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4863), + [anon_sym_COLON] = ACTIONS(4883), }, - [2023] = { + [2034] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2033), - [sym_concatenation] = STATE(2033), + [aux_sym_expansion_repeat1] = STATE(2044), + [sym_concatenation] = STATE(2044), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4893), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4873), + [anon_sym_COLON_DASH] = ACTIONS(4893), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4873), + [anon_sym_COLON_QMARK] = ACTIONS(4893), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4893), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4875), + [anon_sym_POUND] = ACTIONS(4895), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4877), - [anon_sym_RBRACE] = ACTIONS(4879), - [anon_sym_EQ] = ACTIONS(4873), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4893), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4873), + [anon_sym_COLON] = ACTIONS(4893), }, - [2024] = { - [sym_command_substitution] = STATE(2034), - [aux_sym__literal_repeat1] = STATE(2035), - [sym_string] = STATE(2034), - [sym_process_substitution] = STATE(2034), - [sym_simple_expansion] = STATE(2034), - [sym_string_expansion] = STATE(2034), - [sym_concatenation] = STATE(2036), - [sym_expansion] = STATE(2034), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4881), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4881), - [sym__special_character] = ACTIONS(947), + [2035] = { + [sym_command_substitution] = STATE(2045), + [aux_sym__literal_repeat1] = STATE(2046), + [sym_string] = STATE(2045), + [sym_process_substitution] = STATE(2045), + [sym_simple_expansion] = STATE(2045), + [sym_string_expansion] = STATE(2045), + [sym_concatenation] = STATE(2047), + [sym_expansion] = STATE(2045), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(4901), + [sym__special_character] = ACTIONS(949), }, - [2025] = { + [2036] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2038), - [sym_concatenation] = STATE(2038), + [aux_sym_expansion_repeat1] = STATE(2049), + [sym_concatenation] = STATE(2049), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4885), + [anon_sym_DASH] = ACTIONS(4905), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4885), + [anon_sym_COLON_DASH] = ACTIONS(4905), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4885), + [anon_sym_COLON_QMARK] = ACTIONS(4905), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4885), + [anon_sym_PERCENT] = ACTIONS(4905), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4887), + [anon_sym_POUND] = ACTIONS(4907), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4909), + [anon_sym_EQ] = ACTIONS(4905), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4885), - [sym_regex] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4905), + [sym_regex] = ACTIONS(4911), }, - [2026] = { + [2037] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4909), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2027] = { + [2038] = { [anon_sym__] = ACTIONS(587), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(591), @@ -61556,645 +61771,645 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(591), [anon_sym_AT] = ACTIONS(587), [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4913), [anon_sym_0] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(587), [aux_sym__simple_variable_name_token1] = ACTIONS(587), [anon_sym_QMARK] = ACTIONS(587), }, - [2028] = { + [2039] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2039), - [sym_concatenation] = STATE(2039), + [aux_sym_expansion_repeat1] = STATE(2050), + [sym_concatenation] = STATE(2050), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4895), + [anon_sym_DASH] = ACTIONS(4915), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4895), + [anon_sym_COLON_DASH] = ACTIONS(4915), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4895), + [anon_sym_COLON_QMARK] = ACTIONS(4915), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4895), + [anon_sym_PERCENT] = ACTIONS(4915), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4897), + [anon_sym_POUND] = ACTIONS(4917), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4915), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4895), + [anon_sym_COLON] = ACTIONS(4915), }, - [2029] = { + [2040] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2030] = { + [2041] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2039), - [sym_concatenation] = STATE(2039), + [aux_sym_expansion_repeat1] = STATE(2050), + [sym_concatenation] = STATE(2050), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4895), + [anon_sym_DASH] = ACTIONS(4915), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4895), + [anon_sym_COLON_DASH] = ACTIONS(4915), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4895), + [anon_sym_COLON_QMARK] = ACTIONS(4915), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4895), + [anon_sym_PERCENT] = ACTIONS(4915), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4897), + [anon_sym_POUND] = ACTIONS(4917), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4915), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4895), - [sym_regex] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(4915), + [sym_regex] = ACTIONS(4921), }, - [2031] = { - [sym_command_substitution] = STATE(2041), - [aux_sym__literal_repeat1] = STATE(2042), - [sym_string] = STATE(2041), - [sym_process_substitution] = STATE(2041), - [sym_simple_expansion] = STATE(2041), - [sym_string_expansion] = STATE(2041), - [sym_concatenation] = STATE(2043), - [sym_expansion] = STATE(2041), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(4905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(4905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4903), - [sym__special_character] = ACTIONS(947), + [2042] = { + [sym_command_substitution] = STATE(2052), + [aux_sym__literal_repeat1] = STATE(2053), + [sym_string] = STATE(2052), + [sym_process_substitution] = STATE(2052), + [sym_simple_expansion] = STATE(2052), + [sym_string_expansion] = STATE(2052), + [sym_concatenation] = STATE(2054), + [sym_expansion] = STATE(2052), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(4925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(4925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(4923), + [sym__special_character] = ACTIONS(949), }, - [2032] = { + [2043] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2045), - [sym_concatenation] = STATE(2045), + [aux_sym_expansion_repeat1] = STATE(2056), + [sym_concatenation] = STATE(2056), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4907), + [anon_sym_DASH] = ACTIONS(4927), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4907), + [anon_sym_COLON_DASH] = ACTIONS(4927), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4907), + [anon_sym_COLON_QMARK] = ACTIONS(4927), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4907), + [anon_sym_PERCENT] = ACTIONS(4927), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4909), + [anon_sym_POUND] = ACTIONS(4929), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_EQ] = ACTIONS(4927), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4907), - [sym_regex] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4927), + [sym_regex] = ACTIONS(4933), }, - [2033] = { + [2044] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2034] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2045] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4899), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(4919), + [sym__concat] = ACTIONS(1298), }, - [2035] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4915), + [2046] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(4935), [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1300), }, - [2036] = { - [anon_sym_RBRACE] = ACTIONS(4899), + [2047] = { + [anon_sym_RBRACE] = ACTIONS(4919), [sym_comment] = ACTIONS(41), }, - [2037] = { + [2048] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2046), - [sym_concatenation] = STATE(2046), + [aux_sym_expansion_repeat1] = STATE(2057), + [sym_concatenation] = STATE(2057), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4937), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4917), + [anon_sym_COLON_DASH] = ACTIONS(4937), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4917), + [anon_sym_COLON_QMARK] = ACTIONS(4937), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4917), + [anon_sym_PERCENT] = ACTIONS(4937), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4919), + [anon_sym_POUND] = ACTIONS(4939), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4917), + [anon_sym_RBRACE] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4937), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4937), }, - [2038] = { + [2049] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2039] = { + [2050] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2040] = { + [2051] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2047), - [sym_concatenation] = STATE(2047), + [aux_sym_expansion_repeat1] = STATE(2058), + [sym_concatenation] = STATE(2058), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4945), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4925), + [anon_sym_COLON_DASH] = ACTIONS(4945), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4925), + [anon_sym_COLON_QMARK] = ACTIONS(4945), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_PERCENT] = ACTIONS(4945), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4927), + [anon_sym_POUND] = ACTIONS(4947), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(4925), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_EQ] = ACTIONS(4945), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4945), }, - [2041] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2052] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4923), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(4943), + [sym__concat] = ACTIONS(1298), }, - [2042] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(4929), + [2053] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(4949), [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1300), }, - [2043] = { - [anon_sym_RBRACE] = ACTIONS(4923), + [2054] = { + [anon_sym_RBRACE] = ACTIONS(4943), [sym_comment] = ACTIONS(41), }, - [2044] = { + [2055] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2048), - [sym_concatenation] = STATE(2048), + [aux_sym_expansion_repeat1] = STATE(2059), + [sym_concatenation] = STATE(2059), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4931), + [anon_sym_DASH] = ACTIONS(4951), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4931), + [anon_sym_COLON_DASH] = ACTIONS(4951), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4931), + [anon_sym_COLON_QMARK] = ACTIONS(4951), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4931), + [anon_sym_PERCENT] = ACTIONS(4951), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4933), + [anon_sym_POUND] = ACTIONS(4953), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4931), + [anon_sym_RBRACE] = ACTIONS(4955), + [anon_sym_EQ] = ACTIONS(4951), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4931), + [anon_sym_COLON] = ACTIONS(4951), }, - [2045] = { + [2056] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4955), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2046] = { + [2057] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4937), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2047] = { + [2058] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4959), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2048] = { + [2059] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4961), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2049] = { - [sym_string] = STATE(1099), - [anon_sym__] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_0] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2864), - [aux_sym__simple_variable_name_token1] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2864), - [sym_raw_string] = ACTIONS(2868), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2866), + [2060] = { + [sym_string] = STATE(1105), + [anon_sym__] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_0] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2868), + [aux_sym__simple_variable_name_token1] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [sym_raw_string] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(2870), }, - [2050] = { + [2061] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2057), + [aux_sym_string_repeat1] = STATE(2068), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4943), + [anon_sym_DOLLAR] = ACTIONS(4963), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4945), + [anon_sym_DQUOTE] = ACTIONS(4965), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2051] = { + [2062] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4967), }, - [2052] = { - [anon_sym_RPAREN] = ACTIONS(4949), + [2063] = { + [anon_sym_RPAREN] = ACTIONS(4969), [sym_comment] = ACTIONS(41), }, - [2053] = { - [sym_command_substitution] = STATE(1106), - [sym_simple_expansion] = STATE(1106), - [sym_string_expansion] = STATE(1106), - [sym_string] = STATE(1106), - [sym_process_substitution] = STATE(1106), - [sym_expansion] = STATE(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2831), - [sym_word] = ACTIONS(2833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(2831), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym__special_character] = ACTIONS(2831), - [sym_number] = ACTIONS(2833), + [2064] = { + [sym_command_substitution] = STATE(1112), + [sym_simple_expansion] = STATE(1112), + [sym_string_expansion] = STATE(1112), + [sym_string] = STATE(1112), + [sym_process_substitution] = STATE(1112), + [sym_expansion] = STATE(1112), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2835), + [sym_word] = ACTIONS(2837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(2835), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym__special_character] = ACTIONS(2835), + [sym_number] = ACTIONS(2837), }, - [2054] = { + [2065] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2061), - [sym_concatenation] = STATE(2061), + [aux_sym_expansion_repeat1] = STATE(2072), + [sym_concatenation] = STATE(2072), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4971), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4951), + [anon_sym_COLON_DASH] = ACTIONS(4971), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4951), + [anon_sym_COLON_QMARK] = ACTIONS(4971), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4951), + [anon_sym_PERCENT] = ACTIONS(4971), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4953), + [anon_sym_POUND] = ACTIONS(4973), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4951), + [anon_sym_SLASH] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_EQ] = ACTIONS(4971), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4951), + [anon_sym_COLON] = ACTIONS(4971), }, - [2055] = { + [2066] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2066), - [sym_concatenation] = STATE(2066), + [aux_sym_expansion_repeat1] = STATE(2077), + [sym_concatenation] = STATE(2077), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4979), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4959), + [anon_sym_COLON_DASH] = ACTIONS(4979), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4959), + [anon_sym_COLON_QMARK] = ACTIONS(4979), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4959), + [anon_sym_PERCENT] = ACTIONS(4979), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4961), + [anon_sym_POUND] = ACTIONS(4981), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4979), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4979), }, - [2056] = { + [2067] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4967), + [anon_sym_DQUOTE] = ACTIONS(4987), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -62207,20 +62422,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2057] = { + [2068] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_DOLLAR] = ACTIONS(4989), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4967), + [anon_sym_DQUOTE] = ACTIONS(4987), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2058] = { + [2069] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [anon_sym_DOLLAR] = ACTIONS(331), [anon_sym_BQUOTE] = ACTIONS(333), @@ -62236,7 +62451,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(333), [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_RPAREN] = ACTIONS(4991), [anon_sym_GT] = ACTIONS(331), [anon_sym_AMP_GT] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(333), @@ -62245,233 +62460,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym_ansii_c_string] = ACTIONS(333), }, - [2059] = { - [anon_sym_RPAREN] = ACTIONS(4971), + [2070] = { + [anon_sym_RPAREN] = ACTIONS(4991), [sym_comment] = ACTIONS(41), }, - [2060] = { + [2071] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2069), - [sym_concatenation] = STATE(2069), + [aux_sym_expansion_repeat1] = STATE(2080), + [sym_concatenation] = STATE(2080), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4993), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4973), + [anon_sym_COLON_DASH] = ACTIONS(4993), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4973), + [anon_sym_COLON_QMARK] = ACTIONS(4993), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4973), + [anon_sym_PERCENT] = ACTIONS(4993), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4975), + [anon_sym_POUND] = ACTIONS(4995), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_EQ] = ACTIONS(4973), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4993), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4973), - [sym_regex] = ACTIONS(4979), + [anon_sym_COLON] = ACTIONS(4993), + [sym_regex] = ACTIONS(4999), }, - [2061] = { + [2072] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2062] = { + [2073] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2069), - [sym_concatenation] = STATE(2069), + [aux_sym_expansion_repeat1] = STATE(2080), + [sym_concatenation] = STATE(2080), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4993), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4973), + [anon_sym_COLON_DASH] = ACTIONS(4993), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4973), + [anon_sym_COLON_QMARK] = ACTIONS(4993), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4973), + [anon_sym_PERCENT] = ACTIONS(4993), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4975), + [anon_sym_POUND] = ACTIONS(4995), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_EQ] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4993), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4993), }, - [2063] = { + [2074] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2073), - [sym_concatenation] = STATE(2073), + [aux_sym_expansion_repeat1] = STATE(2084), + [sym_concatenation] = STATE(2084), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(5003), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4983), + [anon_sym_COLON_DASH] = ACTIONS(5003), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4983), + [anon_sym_COLON_QMARK] = ACTIONS(5003), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4983), + [anon_sym_PERCENT] = ACTIONS(5003), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4985), + [anon_sym_POUND] = ACTIONS(5005), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5009), + [anon_sym_EQ] = ACTIONS(5003), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(5003), }, - [2064] = { - [sym_command_substitution] = STATE(2074), - [aux_sym__literal_repeat1] = STATE(2075), - [sym_string] = STATE(2074), - [sym_process_substitution] = STATE(2074), - [sym_simple_expansion] = STATE(2074), - [sym_string_expansion] = STATE(2074), - [sym_concatenation] = STATE(2076), - [sym_expansion] = STATE(2074), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(4993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(4993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4991), - [sym__special_character] = ACTIONS(947), + [2075] = { + [sym_command_substitution] = STATE(2085), + [aux_sym__literal_repeat1] = STATE(2086), + [sym_string] = STATE(2085), + [sym_process_substitution] = STATE(2085), + [sym_simple_expansion] = STATE(2085), + [sym_string_expansion] = STATE(2085), + [sym_concatenation] = STATE(2087), + [sym_expansion] = STATE(2085), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5011), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(5013), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(5013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(5011), + [sym__special_character] = ACTIONS(949), }, - [2065] = { + [2076] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2078), - [sym_concatenation] = STATE(2078), + [aux_sym_expansion_repeat1] = STATE(2089), + [sym_concatenation] = STATE(2089), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(5015), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4995), + [anon_sym_COLON_DASH] = ACTIONS(5015), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4995), + [anon_sym_COLON_QMARK] = ACTIONS(5015), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_PERCENT] = ACTIONS(5015), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4997), + [anon_sym_POUND] = ACTIONS(5017), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4995), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5015), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4995), - [sym_regex] = ACTIONS(5001), + [anon_sym_COLON] = ACTIONS(5015), + [sym_regex] = ACTIONS(5021), }, - [2066] = { + [2077] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2067] = { + [2078] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5003), + [anon_sym_DQUOTE] = ACTIONS(5023), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -62484,639 +62699,639 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2068] = { + [2079] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2079), - [sym_concatenation] = STATE(2079), + [aux_sym_expansion_repeat1] = STATE(2090), + [sym_concatenation] = STATE(2090), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5025), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5005), + [anon_sym_COLON_DASH] = ACTIONS(5025), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5005), + [anon_sym_COLON_QMARK] = ACTIONS(5025), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5025), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5007), + [anon_sym_POUND] = ACTIONS(5027), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(5025), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5005), + [anon_sym_COLON] = ACTIONS(5025), }, - [2069] = { + [2080] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2070] = { + [2081] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2079), - [sym_concatenation] = STATE(2079), + [aux_sym_expansion_repeat1] = STATE(2090), + [sym_concatenation] = STATE(2090), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5025), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5005), + [anon_sym_COLON_DASH] = ACTIONS(5025), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5005), + [anon_sym_COLON_QMARK] = ACTIONS(5025), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5025), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5007), + [anon_sym_POUND] = ACTIONS(5027), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(5025), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5005), - [sym_regex] = ACTIONS(5011), + [anon_sym_COLON] = ACTIONS(5025), + [sym_regex] = ACTIONS(5031), }, - [2071] = { - [sym_command_substitution] = STATE(2081), - [aux_sym__literal_repeat1] = STATE(2082), - [sym_string] = STATE(2081), - [sym_process_substitution] = STATE(2081), - [sym_simple_expansion] = STATE(2081), - [sym_string_expansion] = STATE(2081), - [sym_concatenation] = STATE(2083), - [sym_expansion] = STATE(2081), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_number] = ACTIONS(5015), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_word] = ACTIONS(5015), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5013), - [sym__special_character] = ACTIONS(947), + [2082] = { + [sym_command_substitution] = STATE(2092), + [aux_sym__literal_repeat1] = STATE(2093), + [sym_string] = STATE(2092), + [sym_process_substitution] = STATE(2092), + [sym_simple_expansion] = STATE(2092), + [sym_string_expansion] = STATE(2092), + [sym_concatenation] = STATE(2094), + [sym_expansion] = STATE(2092), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5033), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_number] = ACTIONS(5035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_word] = ACTIONS(5035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [sym_ansii_c_string] = ACTIONS(5033), + [sym__special_character] = ACTIONS(949), }, - [2072] = { + [2083] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2085), - [sym_concatenation] = STATE(2085), + [aux_sym_expansion_repeat1] = STATE(2096), + [sym_concatenation] = STATE(2096), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5037), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5017), + [anon_sym_COLON_DASH] = ACTIONS(5037), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_COLON_QMARK] = ACTIONS(5037), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5017), + [anon_sym_PERCENT] = ACTIONS(5037), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5019), + [anon_sym_POUND] = ACTIONS(5039), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_EQ] = ACTIONS(5037), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5017), - [sym_regex] = ACTIONS(5023), + [anon_sym_COLON] = ACTIONS(5037), + [sym_regex] = ACTIONS(5043), }, - [2073] = { + [2084] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2074] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2085] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5009), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5029), + [sym__concat] = ACTIONS(1298), }, - [2075] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(5025), + [2086] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(5045), [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1300), }, - [2076] = { - [anon_sym_RBRACE] = ACTIONS(5009), + [2087] = { + [anon_sym_RBRACE] = ACTIONS(5029), [sym_comment] = ACTIONS(41), }, - [2077] = { + [2088] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2086), - [sym_concatenation] = STATE(2086), + [aux_sym_expansion_repeat1] = STATE(2097), + [sym_concatenation] = STATE(2097), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5027), + [anon_sym_DASH] = ACTIONS(5047), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5027), + [anon_sym_COLON_DASH] = ACTIONS(5047), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5027), + [anon_sym_COLON_QMARK] = ACTIONS(5047), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5027), + [anon_sym_PERCENT] = ACTIONS(5047), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5029), + [anon_sym_POUND] = ACTIONS(5049), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5047), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5027), + [anon_sym_COLON] = ACTIONS(5047), }, - [2078] = { + [2089] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2079] = { + [2090] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2080] = { + [2091] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2087), - [sym_concatenation] = STATE(2087), + [aux_sym_expansion_repeat1] = STATE(2098), + [sym_concatenation] = STATE(2098), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_DASH] = ACTIONS(5055), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5035), + [anon_sym_COLON_DASH] = ACTIONS(5055), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5035), + [anon_sym_COLON_QMARK] = ACTIONS(5055), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5055), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5037), + [anon_sym_POUND] = ACTIONS(5057), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(5055), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5035), + [anon_sym_COLON] = ACTIONS(5055), }, - [2081] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2092] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5033), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5053), + [sym__concat] = ACTIONS(1298), }, - [2082] = { - [aux_sym__literal_repeat1] = STATE(1135), - [anon_sym_RBRACE] = ACTIONS(5039), + [2093] = { + [aux_sym__literal_repeat1] = STATE(1141), + [anon_sym_RBRACE] = ACTIONS(5059), [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1300), }, - [2083] = { - [anon_sym_RBRACE] = ACTIONS(5033), + [2094] = { + [anon_sym_RBRACE] = ACTIONS(5053), [sym_comment] = ACTIONS(41), }, - [2084] = { + [2095] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2088), - [sym_concatenation] = STATE(2088), + [aux_sym_expansion_repeat1] = STATE(2099), + [sym_concatenation] = STATE(2099), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5061), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5041), + [anon_sym_COLON_DASH] = ACTIONS(5061), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5041), + [anon_sym_COLON_QMARK] = ACTIONS(5061), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5041), + [anon_sym_PERCENT] = ACTIONS(5061), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5043), + [anon_sym_POUND] = ACTIONS(5063), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_EQ] = ACTIONS(5061), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_COLON] = ACTIONS(5061), }, - [2085] = { + [2096] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2086] = { + [2097] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2087] = { + [2098] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2088] = { + [2099] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_word] = ACTIONS(449), [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(453), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), }, - [2089] = { - [sym_string] = STATE(1131), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_0] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2886), - [aux_sym__simple_variable_name_token1] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_AT] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(2886), - [sym_raw_string] = ACTIONS(2888), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5053), + [2100] = { + [sym_string] = STATE(1137), + [anon_sym__] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_0] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2890), + [aux_sym__simple_variable_name_token1] = ACTIONS(2888), + [anon_sym_DOLLAR] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(2890), + [sym_raw_string] = ACTIONS(2892), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5073), }, - [2090] = { + [2101] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2097), + [aux_sym_string_repeat1] = STATE(2108), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5055), + [anon_sym_DOLLAR] = ACTIONS(5075), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5057), + [anon_sym_DQUOTE] = ACTIONS(5077), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2091] = { + [2102] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5059), + [anon_sym_BQUOTE] = ACTIONS(5079), }, - [2092] = { - [anon_sym_RPAREN] = ACTIONS(5061), + [2103] = { + [anon_sym_RPAREN] = ACTIONS(5081), [sym_comment] = ACTIONS(41), }, - [2093] = { - [sym_command_substitution] = STATE(1138), - [sym_simple_expansion] = STATE(1138), - [sym_string_expansion] = STATE(1138), - [sym_string] = STATE(1138), - [sym_process_substitution] = STATE(1138), - [sym_expansion] = STATE(1138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2853), - [sym_word] = ACTIONS(2855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_LT_LPAREN] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(2853), - [anon_sym_BQUOTE] = ACTIONS(1025), - [anon_sym_GT_LPAREN] = ACTIONS(1023), - [sym__special_character] = ACTIONS(2853), - [sym_number] = ACTIONS(2855), + [2104] = { + [sym_command_substitution] = STATE(1144), + [sym_simple_expansion] = STATE(1144), + [sym_string_expansion] = STATE(1144), + [sym_string] = STATE(1144), + [sym_process_substitution] = STATE(1144), + [sym_expansion] = STATE(1144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2857), + [sym_word] = ACTIONS(2859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_LT_LPAREN] = ACTIONS(1025), + [sym_ansii_c_string] = ACTIONS(2857), + [anon_sym_BQUOTE] = ACTIONS(1027), + [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym__special_character] = ACTIONS(2857), + [sym_number] = ACTIONS(2859), }, - [2094] = { + [2105] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2101), - [sym_concatenation] = STATE(2101), + [aux_sym_expansion_repeat1] = STATE(2112), + [sym_concatenation] = STATE(2112), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5083), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5065), + [anon_sym_POUND] = ACTIONS(5085), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5087), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5083), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_COLON_DASH] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5063), + [anon_sym_COLON_QMARK] = ACTIONS(5083), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5089), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5063), + [anon_sym_COLON] = ACTIONS(5083), [sym__special_character] = ACTIONS(459), }, - [2095] = { + [2106] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2106), - [sym_concatenation] = STATE(2106), + [aux_sym_expansion_repeat1] = STATE(2117), + [sym_concatenation] = STATE(2117), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5091), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5073), + [anon_sym_POUND] = ACTIONS(5093), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5075), + [anon_sym_SLASH] = ACTIONS(5095), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5091), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_COLON_DASH] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5071), + [anon_sym_COLON_QMARK] = ACTIONS(5091), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5077), + [anon_sym_RBRACE] = ACTIONS(5097), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5071), + [anon_sym_COLON] = ACTIONS(5091), [sym__special_character] = ACTIONS(459), }, - [2096] = { + [2107] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5079), + [anon_sym_DQUOTE] = ACTIONS(5099), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -63129,20 +63344,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2097] = { + [2108] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_DOLLAR] = ACTIONS(5101), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5079), + [anon_sym_DQUOTE] = ACTIONS(5099), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2098] = { + [2109] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -63155,7 +63370,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_RPAREN] = ACTIONS(5103), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -63167,233 +63382,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [2099] = { - [anon_sym_RPAREN] = ACTIONS(5083), + [2110] = { + [anon_sym_RPAREN] = ACTIONS(5103), [sym_comment] = ACTIONS(41), }, - [2100] = { + [2111] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2109), - [sym_concatenation] = STATE(2109), + [aux_sym_expansion_repeat1] = STATE(2120), + [sym_concatenation] = STATE(2120), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5105), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5087), + [anon_sym_POUND] = ACTIONS(5107), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_COLON_DASH] = ACTIONS(5085), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_COLON_DASH] = ACTIONS(5105), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5105), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5085), + [anon_sym_COLON_QMARK] = ACTIONS(5105), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5085), + [anon_sym_COLON] = ACTIONS(5105), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5091), + [sym_regex] = ACTIONS(5111), }, - [2101] = { + [2112] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2102] = { + [2113] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2109), - [sym_concatenation] = STATE(2109), + [aux_sym_expansion_repeat1] = STATE(2120), + [sym_concatenation] = STATE(2120), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5105), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5087), + [anon_sym_POUND] = ACTIONS(5107), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5113), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5105), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5085), - [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_COLON_DASH] = ACTIONS(5105), + [anon_sym_EQ] = ACTIONS(5105), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5085), + [anon_sym_COLON_QMARK] = ACTIONS(5105), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5089), + [anon_sym_RBRACE] = ACTIONS(5109), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5085), + [anon_sym_COLON] = ACTIONS(5105), [sym__special_character] = ACTIONS(459), }, - [2103] = { + [2114] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2113), - [sym_concatenation] = STATE(2113), + [aux_sym_expansion_repeat1] = STATE(2124), + [sym_concatenation] = STATE(2124), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5115), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5097), + [anon_sym_POUND] = ACTIONS(5117), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5119), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5115), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_COLON_DASH] = ACTIONS(5115), + [anon_sym_EQ] = ACTIONS(5115), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5095), + [anon_sym_COLON_QMARK] = ACTIONS(5115), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5121), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5095), + [anon_sym_COLON] = ACTIONS(5115), [sym__special_character] = ACTIONS(459), }, - [2104] = { - [sym_command_substitution] = STATE(2114), - [aux_sym__literal_repeat1] = STATE(2115), - [sym_string] = STATE(2114), - [sym_process_substitution] = STATE(2114), - [sym_simple_expansion] = STATE(2114), - [sym_string_expansion] = STATE(2114), - [sym_concatenation] = STATE(2116), - [sym_expansion] = STATE(2114), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5103), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5089), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5105), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2115] = { + [sym_command_substitution] = STATE(2125), + [aux_sym__literal_repeat1] = STATE(2126), + [sym_string] = STATE(2125), + [sym_process_substitution] = STATE(2125), + [sym_simple_expansion] = STATE(2125), + [sym_string_expansion] = STATE(2125), + [sym_concatenation] = STATE(2127), + [sym_expansion] = STATE(2125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5123), + [sym_word] = ACTIONS(5125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5123), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5109), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5125), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2105] = { + [2116] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2118), - [sym_concatenation] = STATE(2118), + [aux_sym_expansion_repeat1] = STATE(2129), + [sym_concatenation] = STATE(2129), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5107), + [anon_sym_PERCENT] = ACTIONS(5127), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5109), + [anon_sym_POUND] = ACTIONS(5129), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5107), - [anon_sym_COLON_DASH] = ACTIONS(5107), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_COLON_DASH] = ACTIONS(5127), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5127), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5107), + [anon_sym_COLON_QMARK] = ACTIONS(5127), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5107), + [anon_sym_COLON] = ACTIONS(5127), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5113), + [sym_regex] = ACTIONS(5133), }, - [2106] = { + [2117] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2107] = { + [2118] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5115), + [anon_sym_DQUOTE] = ACTIONS(5135), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -63406,639 +63621,639 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2108] = { + [2119] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2119), - [sym_concatenation] = STATE(2119), + [aux_sym_expansion_repeat1] = STATE(2130), + [sym_concatenation] = STATE(2130), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5137), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5119), + [anon_sym_POUND] = ACTIONS(5139), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_COLON_DASH] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_COLON_DASH] = ACTIONS(5137), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5137), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5117), + [anon_sym_COLON_QMARK] = ACTIONS(5137), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5117), + [anon_sym_COLON] = ACTIONS(5137), [sym__special_character] = ACTIONS(459), }, - [2109] = { + [2120] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2110] = { + [2121] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2119), - [sym_concatenation] = STATE(2119), + [aux_sym_expansion_repeat1] = STATE(2130), + [sym_concatenation] = STATE(2130), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5137), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5119), + [anon_sym_POUND] = ACTIONS(5139), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_COLON_DASH] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_COLON_DASH] = ACTIONS(5137), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5137), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5117), + [anon_sym_COLON_QMARK] = ACTIONS(5137), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5117), + [anon_sym_COLON] = ACTIONS(5137), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5123), + [sym_regex] = ACTIONS(5143), }, - [2111] = { - [sym_command_substitution] = STATE(2121), - [aux_sym__literal_repeat1] = STATE(2122), - [sym_string] = STATE(2121), - [sym_process_substitution] = STATE(2121), - [sym_simple_expansion] = STATE(2121), - [sym_string_expansion] = STATE(2121), - [sym_concatenation] = STATE(2123), - [sym_expansion] = STATE(2121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5125), - [sym_word] = ACTIONS(5127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5125), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5121), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5127), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2122] = { + [sym_command_substitution] = STATE(2132), + [aux_sym__literal_repeat1] = STATE(2133), + [sym_string] = STATE(2132), + [sym_process_substitution] = STATE(2132), + [sym_simple_expansion] = STATE(2132), + [sym_string_expansion] = STATE(2132), + [sym_concatenation] = STATE(2134), + [sym_expansion] = STATE(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5145), + [sym_word] = ACTIONS(5147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5145), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5141), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5147), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2112] = { + [2123] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2125), - [sym_concatenation] = STATE(2125), + [aux_sym_expansion_repeat1] = STATE(2136), + [sym_concatenation] = STATE(2136), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5149), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5131), + [anon_sym_POUND] = ACTIONS(5151), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5133), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_COLON_DASH] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_COLON_DASH] = ACTIONS(5149), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5149), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5129), + [anon_sym_COLON_QMARK] = ACTIONS(5149), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5129), + [anon_sym_COLON] = ACTIONS(5149), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5135), + [sym_regex] = ACTIONS(5155), }, - [2113] = { + [2124] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5133), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2114] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2125] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5121), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5141), + [sym__concat] = ACTIONS(1298), }, - [2115] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5137), + [2126] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5157), [sym_comment] = ACTIONS(41), }, - [2116] = { - [anon_sym_RBRACE] = ACTIONS(5121), + [2127] = { + [anon_sym_RBRACE] = ACTIONS(5141), [sym_comment] = ACTIONS(41), }, - [2117] = { + [2128] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2126), - [sym_concatenation] = STATE(2126), + [aux_sym_expansion_repeat1] = STATE(2137), + [sym_concatenation] = STATE(2137), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5159), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5141), + [anon_sym_POUND] = ACTIONS(5161), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_COLON_DASH] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_COLON_DASH] = ACTIONS(5159), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5159), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5139), + [anon_sym_COLON_QMARK] = ACTIONS(5159), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5159), [sym__special_character] = ACTIONS(459), }, - [2118] = { + [2129] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2119] = { + [2130] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2120] = { + [2131] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2127), - [sym_concatenation] = STATE(2127), + [aux_sym_expansion_repeat1] = STATE(2138), + [sym_concatenation] = STATE(2138), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5147), + [anon_sym_PERCENT] = ACTIONS(5167), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5149), + [anon_sym_POUND] = ACTIONS(5169), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_COLON_DASH] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5167), + [anon_sym_COLON_DASH] = ACTIONS(5167), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5167), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5147), + [anon_sym_COLON_QMARK] = ACTIONS(5167), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5147), + [anon_sym_COLON] = ACTIONS(5167), [sym__special_character] = ACTIONS(459), }, - [2121] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2132] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5145), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5165), + [sym__concat] = ACTIONS(1298), }, - [2122] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5151), + [2133] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5171), [sym_comment] = ACTIONS(41), }, - [2123] = { - [anon_sym_RBRACE] = ACTIONS(5145), + [2134] = { + [anon_sym_RBRACE] = ACTIONS(5165), [sym_comment] = ACTIONS(41), }, - [2124] = { + [2135] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2128), - [sym_concatenation] = STATE(2128), + [aux_sym_expansion_repeat1] = STATE(2139), + [sym_concatenation] = STATE(2139), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5173), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5155), + [anon_sym_POUND] = ACTIONS(5175), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_COLON_DASH] = ACTIONS(5153), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5173), + [anon_sym_COLON_DASH] = ACTIONS(5173), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5173), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5153), + [anon_sym_COLON_QMARK] = ACTIONS(5173), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5173), [sym__special_character] = ACTIONS(459), }, - [2125] = { + [2136] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2126] = { + [2137] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2127] = { + [2138] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2128] = { + [2139] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5183), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2129] = { - [sym_string] = STATE(1163), - [anon_sym__] = ACTIONS(2906), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_0] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(5165), - [aux_sym__simple_variable_name_token1] = ACTIONS(2906), - [anon_sym_DOLLAR] = ACTIONS(5165), - [anon_sym_AT] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5165), - [sym_raw_string] = ACTIONS(5169), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5167), + [2140] = { + [sym_string] = STATE(1169), + [anon_sym__] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_POUND] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5187), + [anon_sym_0] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(5185), + [aux_sym__simple_variable_name_token1] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(5185), + [anon_sym_AT] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5185), + [sym_raw_string] = ACTIONS(5189), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5187), }, - [2130] = { + [2141] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2137), + [aux_sym_string_repeat1] = STATE(2148), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5171), + [anon_sym_DOLLAR] = ACTIONS(5191), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5173), + [anon_sym_DQUOTE] = ACTIONS(5193), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2131] = { + [2142] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5175), + [anon_sym_BQUOTE] = ACTIONS(5195), }, - [2132] = { - [anon_sym_RPAREN] = ACTIONS(5177), + [2143] = { + [anon_sym_RPAREN] = ACTIONS(5197), [sym_comment] = ACTIONS(41), }, - [2133] = { - [sym_command_substitution] = STATE(1170), - [sym_simple_expansion] = STATE(1170), - [sym_string_expansion] = STATE(1170), - [sym_string] = STATE(1170), - [sym_process_substitution] = STATE(1170), - [sym_expansion] = STATE(1170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2875), - [sym_word] = ACTIONS(2877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_LT_LPAREN] = ACTIONS(1110), - [sym_ansii_c_string] = ACTIONS(2875), - [anon_sym_BQUOTE] = ACTIONS(1112), - [anon_sym_GT_LPAREN] = ACTIONS(1110), - [sym__special_character] = ACTIONS(2875), - [sym_number] = ACTIONS(2877), + [2144] = { + [sym_command_substitution] = STATE(1176), + [sym_simple_expansion] = STATE(1176), + [sym_string_expansion] = STATE(1176), + [sym_string] = STATE(1176), + [sym_process_substitution] = STATE(1176), + [sym_expansion] = STATE(1176), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2879), + [sym_word] = ACTIONS(2881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_LT_LPAREN] = ACTIONS(1114), + [sym_ansii_c_string] = ACTIONS(2879), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_GT_LPAREN] = ACTIONS(1114), + [sym__special_character] = ACTIONS(2879), + [sym_number] = ACTIONS(2881), }, - [2134] = { + [2145] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2141), - [sym_concatenation] = STATE(2141), + [aux_sym_expansion_repeat1] = STATE(2152), + [sym_concatenation] = STATE(2152), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5179), + [anon_sym_PERCENT] = ACTIONS(5199), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5181), + [anon_sym_POUND] = ACTIONS(5201), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5183), + [anon_sym_SLASH] = ACTIONS(5203), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5199), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_COLON_DASH] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5179), + [anon_sym_COLON_QMARK] = ACTIONS(5199), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5185), + [anon_sym_RBRACE] = ACTIONS(5205), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5179), + [anon_sym_COLON] = ACTIONS(5199), [sym__special_character] = ACTIONS(459), }, - [2135] = { + [2146] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2146), - [sym_concatenation] = STATE(2146), + [aux_sym_expansion_repeat1] = STATE(2157), + [sym_concatenation] = STATE(2157), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_PERCENT] = ACTIONS(5207), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5189), + [anon_sym_POUND] = ACTIONS(5209), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5191), + [anon_sym_SLASH] = ACTIONS(5211), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5207), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_COLON_DASH] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5187), + [anon_sym_COLON_QMARK] = ACTIONS(5207), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_RBRACE] = ACTIONS(5213), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5187), + [anon_sym_COLON] = ACTIONS(5207), [sym__special_character] = ACTIONS(459), }, - [2136] = { + [2147] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5195), + [anon_sym_DQUOTE] = ACTIONS(5215), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -64051,20 +64266,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2137] = { + [2148] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5197), + [anon_sym_DOLLAR] = ACTIONS(5217), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5195), + [anon_sym_DQUOTE] = ACTIONS(5215), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2138] = { + [2149] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -64077,7 +64292,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5219), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -64089,233 +64304,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [2139] = { - [anon_sym_RPAREN] = ACTIONS(5199), + [2150] = { + [anon_sym_RPAREN] = ACTIONS(5219), [sym_comment] = ACTIONS(41), }, - [2140] = { + [2151] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2149), - [sym_concatenation] = STATE(2149), + [aux_sym_expansion_repeat1] = STATE(2160), + [sym_concatenation] = STATE(2160), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5201), + [anon_sym_PERCENT] = ACTIONS(5221), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5203), + [anon_sym_POUND] = ACTIONS(5223), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_COLON_DASH] = ACTIONS(5201), + [anon_sym_RBRACE] = ACTIONS(5225), + [anon_sym_DASH] = ACTIONS(5221), + [anon_sym_COLON_DASH] = ACTIONS(5221), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5201), + [anon_sym_EQ] = ACTIONS(5221), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5201), + [anon_sym_COLON_QMARK] = ACTIONS(5221), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5221), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5207), + [sym_regex] = ACTIONS(5227), }, - [2141] = { + [2152] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5225), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2142] = { + [2153] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2149), - [sym_concatenation] = STATE(2149), + [aux_sym_expansion_repeat1] = STATE(2160), + [sym_concatenation] = STATE(2160), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5201), + [anon_sym_PERCENT] = ACTIONS(5221), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5203), + [anon_sym_POUND] = ACTIONS(5223), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5229), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5221), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5201), - [anon_sym_EQ] = ACTIONS(5201), + [anon_sym_COLON_DASH] = ACTIONS(5221), + [anon_sym_EQ] = ACTIONS(5221), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5201), + [anon_sym_COLON_QMARK] = ACTIONS(5221), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5205), + [anon_sym_RBRACE] = ACTIONS(5225), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5221), [sym__special_character] = ACTIONS(459), }, - [2143] = { + [2154] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2153), - [sym_concatenation] = STATE(2153), + [aux_sym_expansion_repeat1] = STATE(2164), + [sym_concatenation] = STATE(2164), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5211), + [anon_sym_PERCENT] = ACTIONS(5231), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5213), + [anon_sym_POUND] = ACTIONS(5233), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5215), + [anon_sym_SLASH] = ACTIONS(5235), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5211), + [anon_sym_DASH] = ACTIONS(5231), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_COLON_DASH] = ACTIONS(5231), + [anon_sym_EQ] = ACTIONS(5231), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5211), + [anon_sym_COLON_QMARK] = ACTIONS(5231), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5217), + [anon_sym_RBRACE] = ACTIONS(5237), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5211), + [anon_sym_COLON] = ACTIONS(5231), [sym__special_character] = ACTIONS(459), }, - [2144] = { - [sym_command_substitution] = STATE(2154), - [aux_sym__literal_repeat1] = STATE(2155), - [sym_string] = STATE(2154), - [sym_process_substitution] = STATE(2154), - [sym_simple_expansion] = STATE(2154), - [sym_string_expansion] = STATE(2154), - [sym_concatenation] = STATE(2156), - [sym_expansion] = STATE(2154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5219), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5205), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5221), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2155] = { + [sym_command_substitution] = STATE(2165), + [aux_sym__literal_repeat1] = STATE(2166), + [sym_string] = STATE(2165), + [sym_process_substitution] = STATE(2165), + [sym_simple_expansion] = STATE(2165), + [sym_string_expansion] = STATE(2165), + [sym_concatenation] = STATE(2167), + [sym_expansion] = STATE(2165), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5239), + [sym_word] = ACTIONS(5241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5239), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5225), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5241), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2145] = { + [2156] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2158), - [sym_concatenation] = STATE(2158), + [aux_sym_expansion_repeat1] = STATE(2169), + [sym_concatenation] = STATE(2169), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5223), + [anon_sym_PERCENT] = ACTIONS(5243), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5225), + [anon_sym_POUND] = ACTIONS(5245), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_COLON_DASH] = ACTIONS(5223), + [anon_sym_RBRACE] = ACTIONS(5247), + [anon_sym_DASH] = ACTIONS(5243), + [anon_sym_COLON_DASH] = ACTIONS(5243), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5223), + [anon_sym_EQ] = ACTIONS(5243), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5223), + [anon_sym_COLON_QMARK] = ACTIONS(5243), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5223), + [anon_sym_COLON] = ACTIONS(5243), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5229), + [sym_regex] = ACTIONS(5249), }, - [2146] = { + [2157] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5247), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2147] = { + [2158] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5231), + [anon_sym_DQUOTE] = ACTIONS(5251), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -64328,639 +64543,639 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2148] = { + [2159] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2159), - [sym_concatenation] = STATE(2159), + [aux_sym_expansion_repeat1] = STATE(2170), + [sym_concatenation] = STATE(2170), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5233), + [anon_sym_PERCENT] = ACTIONS(5253), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5235), + [anon_sym_POUND] = ACTIONS(5255), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_COLON_DASH] = ACTIONS(5233), + [anon_sym_RBRACE] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_COLON_DASH] = ACTIONS(5253), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5253), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5233), + [anon_sym_COLON_QMARK] = ACTIONS(5253), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5233), + [anon_sym_COLON] = ACTIONS(5253), [sym__special_character] = ACTIONS(459), }, - [2149] = { + [2160] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2150] = { + [2161] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2159), - [sym_concatenation] = STATE(2159), + [aux_sym_expansion_repeat1] = STATE(2170), + [sym_concatenation] = STATE(2170), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5233), + [anon_sym_PERCENT] = ACTIONS(5253), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5235), + [anon_sym_POUND] = ACTIONS(5255), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5237), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_COLON_DASH] = ACTIONS(5233), + [anon_sym_RBRACE] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_COLON_DASH] = ACTIONS(5253), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5253), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5233), + [anon_sym_COLON_QMARK] = ACTIONS(5253), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5233), + [anon_sym_COLON] = ACTIONS(5253), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5239), + [sym_regex] = ACTIONS(5259), }, - [2151] = { - [sym_command_substitution] = STATE(2161), - [aux_sym__literal_repeat1] = STATE(2162), - [sym_string] = STATE(2161), - [sym_process_substitution] = STATE(2161), - [sym_simple_expansion] = STATE(2161), - [sym_string_expansion] = STATE(2161), - [sym_concatenation] = STATE(2163), - [sym_expansion] = STATE(2161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5241), - [sym_word] = ACTIONS(5243), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5241), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5237), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5243), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2162] = { + [sym_command_substitution] = STATE(2172), + [aux_sym__literal_repeat1] = STATE(2173), + [sym_string] = STATE(2172), + [sym_process_substitution] = STATE(2172), + [sym_simple_expansion] = STATE(2172), + [sym_string_expansion] = STATE(2172), + [sym_concatenation] = STATE(2174), + [sym_expansion] = STATE(2172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5261), + [sym_word] = ACTIONS(5263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5261), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5257), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5263), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2152] = { + [2163] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2165), - [sym_concatenation] = STATE(2165), + [aux_sym_expansion_repeat1] = STATE(2176), + [sym_concatenation] = STATE(2176), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5245), + [anon_sym_PERCENT] = ACTIONS(5265), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5247), + [anon_sym_POUND] = ACTIONS(5267), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5249), - [anon_sym_DASH] = ACTIONS(5245), - [anon_sym_COLON_DASH] = ACTIONS(5245), + [anon_sym_RBRACE] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(5265), + [anon_sym_COLON_DASH] = ACTIONS(5265), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5245), + [anon_sym_EQ] = ACTIONS(5265), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5245), + [anon_sym_COLON_QMARK] = ACTIONS(5265), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5245), + [anon_sym_COLON] = ACTIONS(5265), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5251), + [sym_regex] = ACTIONS(5271), }, - [2153] = { + [2164] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5249), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2154] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2165] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5237), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5257), + [sym__concat] = ACTIONS(1298), }, - [2155] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5253), + [2166] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5273), [sym_comment] = ACTIONS(41), }, - [2156] = { - [anon_sym_RBRACE] = ACTIONS(5237), + [2167] = { + [anon_sym_RBRACE] = ACTIONS(5257), [sym_comment] = ACTIONS(41), }, - [2157] = { + [2168] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2166), - [sym_concatenation] = STATE(2166), + [aux_sym_expansion_repeat1] = STATE(2177), + [sym_concatenation] = STATE(2177), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5255), + [anon_sym_PERCENT] = ACTIONS(5275), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5257), + [anon_sym_POUND] = ACTIONS(5277), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_COLON_DASH] = ACTIONS(5255), + [anon_sym_RBRACE] = ACTIONS(5279), + [anon_sym_DASH] = ACTIONS(5275), + [anon_sym_COLON_DASH] = ACTIONS(5275), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5275), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5255), + [anon_sym_COLON_QMARK] = ACTIONS(5275), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5255), + [anon_sym_COLON] = ACTIONS(5275), [sym__special_character] = ACTIONS(459), }, - [2158] = { + [2169] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5279), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2159] = { + [2170] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5261), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5281), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2160] = { + [2171] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2167), - [sym_concatenation] = STATE(2167), + [aux_sym_expansion_repeat1] = STATE(2178), + [sym_concatenation] = STATE(2178), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5263), + [anon_sym_PERCENT] = ACTIONS(5283), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5265), + [anon_sym_POUND] = ACTIONS(5285), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5261), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_COLON_DASH] = ACTIONS(5263), + [anon_sym_RBRACE] = ACTIONS(5281), + [anon_sym_DASH] = ACTIONS(5283), + [anon_sym_COLON_DASH] = ACTIONS(5283), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5263), + [anon_sym_EQ] = ACTIONS(5283), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5263), + [anon_sym_COLON_QMARK] = ACTIONS(5283), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5263), + [anon_sym_COLON] = ACTIONS(5283), [sym__special_character] = ACTIONS(459), }, - [2161] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2172] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5261), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5281), + [sym__concat] = ACTIONS(1298), }, - [2162] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5267), + [2173] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5287), [sym_comment] = ACTIONS(41), }, - [2163] = { - [anon_sym_RBRACE] = ACTIONS(5261), + [2174] = { + [anon_sym_RBRACE] = ACTIONS(5281), [sym_comment] = ACTIONS(41), }, - [2164] = { + [2175] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2168), - [sym_concatenation] = STATE(2168), + [aux_sym_expansion_repeat1] = STATE(2179), + [sym_concatenation] = STATE(2179), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5269), + [anon_sym_PERCENT] = ACTIONS(5289), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5271), + [anon_sym_POUND] = ACTIONS(5291), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5273), - [anon_sym_DASH] = ACTIONS(5269), - [anon_sym_COLON_DASH] = ACTIONS(5269), + [anon_sym_RBRACE] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5289), + [anon_sym_COLON_DASH] = ACTIONS(5289), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5269), + [anon_sym_EQ] = ACTIONS(5289), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5269), + [anon_sym_COLON_QMARK] = ACTIONS(5289), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_COLON] = ACTIONS(5289), [sym__special_character] = ACTIONS(459), }, - [2165] = { + [2176] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5273), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2166] = { + [2177] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5275), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5295), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2167] = { + [2178] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5277), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2168] = { + [2179] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5299), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2169] = { - [sym_string] = STATE(1195), - [anon_sym__] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(5281), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_0] = ACTIONS(2936), - [anon_sym_BANG] = ACTIONS(5281), - [aux_sym__simple_variable_name_token1] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(5281), - [anon_sym_AT] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5281), - [sym_raw_string] = ACTIONS(5285), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5283), + [2180] = { + [sym_string] = STATE(1201), + [anon_sym__] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(5301), + [anon_sym_STAR] = ACTIONS(5303), + [anon_sym_0] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(5301), + [aux_sym__simple_variable_name_token1] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(5301), + [anon_sym_AT] = ACTIONS(5303), + [anon_sym_DASH] = ACTIONS(5301), + [sym_raw_string] = ACTIONS(5305), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5303), }, - [2170] = { + [2181] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2177), + [aux_sym_string_repeat1] = STATE(2188), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5287), + [anon_sym_DOLLAR] = ACTIONS(5307), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5289), + [anon_sym_DQUOTE] = ACTIONS(5309), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2171] = { + [2182] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5291), + [anon_sym_BQUOTE] = ACTIONS(5311), }, - [2172] = { - [anon_sym_RPAREN] = ACTIONS(5293), + [2183] = { + [anon_sym_RPAREN] = ACTIONS(5313), [sym_comment] = ACTIONS(41), }, - [2173] = { - [sym_command_substitution] = STATE(1202), - [sym_simple_expansion] = STATE(1202), - [sym_string_expansion] = STATE(1202), - [sym_string] = STATE(1202), - [sym_process_substitution] = STATE(1202), - [sym_expansion] = STATE(1202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1754), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2897), - [sym_word] = ACTIONS(2899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_LT_LPAREN] = ACTIONS(1738), - [sym_ansii_c_string] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1738), - [sym__special_character] = ACTIONS(2897), - [sym_number] = ACTIONS(2899), + [2184] = { + [sym_command_substitution] = STATE(1208), + [sym_simple_expansion] = STATE(1208), + [sym_string_expansion] = STATE(1208), + [sym_string] = STATE(1208), + [sym_process_substitution] = STATE(1208), + [sym_expansion] = STATE(1208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2901), + [sym_word] = ACTIONS(2903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_LT_LPAREN] = ACTIONS(1742), + [sym_ansii_c_string] = ACTIONS(2901), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_GT_LPAREN] = ACTIONS(1742), + [sym__special_character] = ACTIONS(2901), + [sym_number] = ACTIONS(2903), }, - [2174] = { + [2185] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2181), - [sym_concatenation] = STATE(2181), + [aux_sym_expansion_repeat1] = STATE(2192), + [sym_concatenation] = STATE(2192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5295), + [anon_sym_PERCENT] = ACTIONS(5315), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5297), + [anon_sym_POUND] = ACTIONS(5317), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5299), + [anon_sym_SLASH] = ACTIONS(5319), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5295), + [anon_sym_DASH] = ACTIONS(5315), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5295), - [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_COLON_DASH] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(5315), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5295), + [anon_sym_COLON_QMARK] = ACTIONS(5315), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5301), + [anon_sym_RBRACE] = ACTIONS(5321), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5295), + [anon_sym_COLON] = ACTIONS(5315), [sym__special_character] = ACTIONS(459), }, - [2175] = { + [2186] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2186), - [sym_concatenation] = STATE(2186), + [aux_sym_expansion_repeat1] = STATE(2197), + [sym_concatenation] = STATE(2197), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5303), + [anon_sym_PERCENT] = ACTIONS(5323), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5305), + [anon_sym_POUND] = ACTIONS(5325), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5307), + [anon_sym_SLASH] = ACTIONS(5327), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5303), + [anon_sym_DASH] = ACTIONS(5323), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_COLON_DASH] = ACTIONS(5323), + [anon_sym_EQ] = ACTIONS(5323), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5303), + [anon_sym_COLON_QMARK] = ACTIONS(5323), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5309), + [anon_sym_RBRACE] = ACTIONS(5329), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5303), + [anon_sym_COLON] = ACTIONS(5323), [sym__special_character] = ACTIONS(459), }, - [2176] = { + [2187] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5311), + [anon_sym_DQUOTE] = ACTIONS(5331), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -64973,20 +65188,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2177] = { + [2188] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_DOLLAR] = ACTIONS(5333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5311), + [anon_sym_DQUOTE] = ACTIONS(5331), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2178] = { + [2189] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -64999,7 +65214,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5315), + [anon_sym_RPAREN] = ACTIONS(5335), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -65011,233 +65226,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [2179] = { - [anon_sym_RPAREN] = ACTIONS(5315), + [2190] = { + [anon_sym_RPAREN] = ACTIONS(5335), [sym_comment] = ACTIONS(41), }, - [2180] = { + [2191] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2189), - [sym_concatenation] = STATE(2189), + [aux_sym_expansion_repeat1] = STATE(2200), + [sym_concatenation] = STATE(2200), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5317), + [anon_sym_PERCENT] = ACTIONS(5337), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5319), + [anon_sym_POUND] = ACTIONS(5339), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(5317), - [anon_sym_COLON_DASH] = ACTIONS(5317), + [anon_sym_RBRACE] = ACTIONS(5341), + [anon_sym_DASH] = ACTIONS(5337), + [anon_sym_COLON_DASH] = ACTIONS(5337), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5317), + [anon_sym_EQ] = ACTIONS(5337), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5317), + [anon_sym_COLON_QMARK] = ACTIONS(5337), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5337), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5323), + [sym_regex] = ACTIONS(5343), }, - [2181] = { + [2192] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5341), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2182] = { + [2193] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2189), - [sym_concatenation] = STATE(2189), + [aux_sym_expansion_repeat1] = STATE(2200), + [sym_concatenation] = STATE(2200), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5317), + [anon_sym_PERCENT] = ACTIONS(5337), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5319), + [anon_sym_POUND] = ACTIONS(5339), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5325), + [anon_sym_SLASH] = ACTIONS(5345), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5337), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(5317), + [anon_sym_COLON_DASH] = ACTIONS(5337), + [anon_sym_EQ] = ACTIONS(5337), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5317), + [anon_sym_COLON_QMARK] = ACTIONS(5337), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5321), + [anon_sym_RBRACE] = ACTIONS(5341), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(5337), [sym__special_character] = ACTIONS(459), }, - [2183] = { + [2194] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2193), - [sym_concatenation] = STATE(2193), + [aux_sym_expansion_repeat1] = STATE(2204), + [sym_concatenation] = STATE(2204), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5327), + [anon_sym_PERCENT] = ACTIONS(5347), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5329), + [anon_sym_POUND] = ACTIONS(5349), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5331), + [anon_sym_SLASH] = ACTIONS(5351), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5327), + [anon_sym_DASH] = ACTIONS(5347), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5327), + [anon_sym_COLON_DASH] = ACTIONS(5347), + [anon_sym_EQ] = ACTIONS(5347), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5327), + [anon_sym_COLON_QMARK] = ACTIONS(5347), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5333), + [anon_sym_RBRACE] = ACTIONS(5353), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5327), + [anon_sym_COLON] = ACTIONS(5347), [sym__special_character] = ACTIONS(459), }, - [2184] = { - [sym_command_substitution] = STATE(2194), - [aux_sym__literal_repeat1] = STATE(2195), - [sym_string] = STATE(2194), - [sym_process_substitution] = STATE(2194), - [sym_simple_expansion] = STATE(2194), - [sym_string_expansion] = STATE(2194), - [sym_concatenation] = STATE(2196), - [sym_expansion] = STATE(2194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5335), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5321), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5337), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2195] = { + [sym_command_substitution] = STATE(2205), + [aux_sym__literal_repeat1] = STATE(2206), + [sym_string] = STATE(2205), + [sym_process_substitution] = STATE(2205), + [sym_simple_expansion] = STATE(2205), + [sym_string_expansion] = STATE(2205), + [sym_concatenation] = STATE(2207), + [sym_expansion] = STATE(2205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5355), + [sym_word] = ACTIONS(5357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5355), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5341), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5357), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2185] = { + [2196] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2198), - [sym_concatenation] = STATE(2198), + [aux_sym_expansion_repeat1] = STATE(2209), + [sym_concatenation] = STATE(2209), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5339), + [anon_sym_PERCENT] = ACTIONS(5359), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5341), + [anon_sym_POUND] = ACTIONS(5361), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5343), - [anon_sym_DASH] = ACTIONS(5339), - [anon_sym_COLON_DASH] = ACTIONS(5339), + [anon_sym_RBRACE] = ACTIONS(5363), + [anon_sym_DASH] = ACTIONS(5359), + [anon_sym_COLON_DASH] = ACTIONS(5359), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5339), + [anon_sym_EQ] = ACTIONS(5359), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5339), + [anon_sym_COLON_QMARK] = ACTIONS(5359), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5339), + [anon_sym_COLON] = ACTIONS(5359), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5345), + [sym_regex] = ACTIONS(5365), }, - [2186] = { + [2197] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5343), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5363), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2187] = { + [2198] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5347), + [anon_sym_DQUOTE] = ACTIONS(5367), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -65250,639 +65465,639 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2188] = { + [2199] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2199), - [sym_concatenation] = STATE(2199), + [aux_sym_expansion_repeat1] = STATE(2210), + [sym_concatenation] = STATE(2210), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5349), + [anon_sym_PERCENT] = ACTIONS(5369), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5351), + [anon_sym_POUND] = ACTIONS(5371), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_COLON_DASH] = ACTIONS(5349), + [anon_sym_RBRACE] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(5369), + [anon_sym_COLON_DASH] = ACTIONS(5369), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5349), + [anon_sym_EQ] = ACTIONS(5369), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5349), + [anon_sym_COLON_QMARK] = ACTIONS(5369), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5349), + [anon_sym_COLON] = ACTIONS(5369), [sym__special_character] = ACTIONS(459), }, - [2189] = { + [2200] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2190] = { + [2201] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2199), - [sym_concatenation] = STATE(2199), + [aux_sym_expansion_repeat1] = STATE(2210), + [sym_concatenation] = STATE(2210), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5349), + [anon_sym_PERCENT] = ACTIONS(5369), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5351), + [anon_sym_POUND] = ACTIONS(5371), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_COLON_DASH] = ACTIONS(5349), + [anon_sym_RBRACE] = ACTIONS(5373), + [anon_sym_DASH] = ACTIONS(5369), + [anon_sym_COLON_DASH] = ACTIONS(5369), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5349), + [anon_sym_EQ] = ACTIONS(5369), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5349), + [anon_sym_COLON_QMARK] = ACTIONS(5369), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5349), + [anon_sym_COLON] = ACTIONS(5369), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5355), + [sym_regex] = ACTIONS(5375), }, - [2191] = { - [sym_command_substitution] = STATE(2201), - [aux_sym__literal_repeat1] = STATE(2202), - [sym_string] = STATE(2201), - [sym_process_substitution] = STATE(2201), - [sym_simple_expansion] = STATE(2201), - [sym_string_expansion] = STATE(2201), - [sym_concatenation] = STATE(2203), - [sym_expansion] = STATE(2201), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5357), - [sym_word] = ACTIONS(5359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5357), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5353), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5359), - [anon_sym_GT_LPAREN] = ACTIONS(943), - }, - [2192] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2205), - [sym_concatenation] = STATE(2205), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5361), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5363), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_COLON_DASH] = ACTIONS(5361), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5361), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5361), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5361), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5367), + [2202] = { + [sym_command_substitution] = STATE(2212), + [aux_sym__literal_repeat1] = STATE(2213), + [sym_string] = STATE(2212), + [sym_process_substitution] = STATE(2212), + [sym_simple_expansion] = STATE(2212), + [sym_string_expansion] = STATE(2212), + [sym_concatenation] = STATE(2214), + [sym_expansion] = STATE(2212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5377), + [sym_word] = ACTIONS(5379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5377), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5373), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5379), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2193] = { + [2203] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2216), + [sym_concatenation] = STATE(2216), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5381), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5383), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5365), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(5381), + [anon_sym_COLON_DASH] = ACTIONS(5381), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(5381), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(5381), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5381), [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5387), }, - [2194] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5353), - [sym__concat] = ACTIONS(1294), - }, - [2195] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5369), - [sym_comment] = ACTIONS(41), - }, - [2196] = { - [anon_sym_RBRACE] = ACTIONS(5353), - [sym_comment] = ACTIONS(41), - }, - [2197] = { + [2204] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2206), - [sym_concatenation] = STATE(2206), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5371), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5373), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_COLON_DASH] = ACTIONS(5371), + [anon_sym_RBRACE] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5371), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5371), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5371), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2198] = { + [2205] = { + [aux_sym_concatenation_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5373), + [sym__concat] = ACTIONS(1298), + }, + [2206] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5389), + [sym_comment] = ACTIONS(41), + }, + [2207] = { + [anon_sym_RBRACE] = ACTIONS(5373), + [sym_comment] = ACTIONS(41), + }, + [2208] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2217), + [sym_concatenation] = STATE(2217), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5391), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5393), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5395), + [anon_sym_DASH] = ACTIONS(5391), + [anon_sym_COLON_DASH] = ACTIONS(5391), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(5391), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(5391), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5391), [sym__special_character] = ACTIONS(459), }, - [2199] = { + [2209] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5377), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5395), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2200] = { + [2210] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2207), - [sym_concatenation] = STATE(2207), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5379), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5381), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5377), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_COLON_DASH] = ACTIONS(5379), + [anon_sym_RBRACE] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5379), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5379), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5379), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2201] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2211] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(2218), + [sym_concatenation] = STATE(2218), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5399), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5401), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(5399), + [anon_sym_COLON_DASH] = ACTIONS(5399), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5399), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5399), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5399), + [sym__special_character] = ACTIONS(459), + }, + [2212] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5377), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5397), + [sym__concat] = ACTIONS(1298), }, - [2202] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5383), + [2213] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5403), [sym_comment] = ACTIONS(41), }, - [2203] = { - [anon_sym_RBRACE] = ACTIONS(5377), + [2214] = { + [anon_sym_RBRACE] = ACTIONS(5397), [sym_comment] = ACTIONS(41), }, - [2204] = { + [2215] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2208), - [sym_concatenation] = STATE(2208), + [aux_sym_expansion_repeat1] = STATE(2219), + [sym_concatenation] = STATE(2219), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5385), + [anon_sym_PERCENT] = ACTIONS(5405), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5387), + [anon_sym_POUND] = ACTIONS(5407), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5389), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_COLON_DASH] = ACTIONS(5385), + [anon_sym_RBRACE] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_COLON_DASH] = ACTIONS(5405), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5385), + [anon_sym_EQ] = ACTIONS(5405), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5385), + [anon_sym_COLON_QMARK] = ACTIONS(5405), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5385), + [anon_sym_COLON] = ACTIONS(5405), [sym__special_character] = ACTIONS(459), }, - [2205] = { + [2216] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5389), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2206] = { + [2217] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5391), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5411), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2207] = { + [2218] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5393), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5413), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2208] = { + [2219] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5415), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2209] = { - [sym_string] = STATE(1227), - [anon_sym__] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(5397), - [anon_sym_STAR] = ACTIONS(5399), - [anon_sym_0] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(5397), - [aux_sym__simple_variable_name_token1] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(5397), - [anon_sym_AT] = ACTIONS(5399), - [anon_sym_DASH] = ACTIONS(5397), - [sym_raw_string] = ACTIONS(5401), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5399), + [2220] = { + [sym_string] = STATE(1233), + [anon_sym__] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2923), + [anon_sym_POUND] = ACTIONS(5417), + [anon_sym_STAR] = ACTIONS(5419), + [anon_sym_0] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(5417), + [aux_sym__simple_variable_name_token1] = ACTIONS(2994), + [anon_sym_DOLLAR] = ACTIONS(5417), + [anon_sym_AT] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5417), + [sym_raw_string] = ACTIONS(5421), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5419), }, - [2210] = { + [2221] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2217), + [aux_sym_string_repeat1] = STATE(2228), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5403), + [anon_sym_DOLLAR] = ACTIONS(5423), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5405), + [anon_sym_DQUOTE] = ACTIONS(5425), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2211] = { + [2222] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5407), + [anon_sym_BQUOTE] = ACTIONS(5427), }, - [2212] = { - [anon_sym_RPAREN] = ACTIONS(5409), + [2223] = { + [anon_sym_RPAREN] = ACTIONS(5429), [sym_comment] = ACTIONS(41), }, - [2213] = { - [sym_command_substitution] = STATE(1234), - [sym_simple_expansion] = STATE(1234), - [sym_string_expansion] = STATE(1234), - [sym_string] = STATE(1234), - [sym_process_substitution] = STATE(1234), - [sym_expansion] = STATE(1234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2921), - [sym_word] = ACTIONS(2923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2428), - [anon_sym_LT_LPAREN] = ACTIONS(2929), - [sym_ansii_c_string] = ACTIONS(2921), - [anon_sym_BQUOTE] = ACTIONS(2931), - [anon_sym_GT_LPAREN] = ACTIONS(2929), - [sym__special_character] = ACTIONS(2921), - [sym_number] = ACTIONS(2923), + [2224] = { + [sym_command_substitution] = STATE(1240), + [sym_simple_expansion] = STATE(1240), + [sym_string_expansion] = STATE(1240), + [sym_string] = STATE(1240), + [sym_process_substitution] = STATE(1240), + [sym_expansion] = STATE(1240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2925), + [sym_word] = ACTIONS(2927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2929), + [anon_sym_DOLLAR] = ACTIONS(2432), + [anon_sym_LT_LPAREN] = ACTIONS(2933), + [sym_ansii_c_string] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2935), + [anon_sym_GT_LPAREN] = ACTIONS(2933), + [sym__special_character] = ACTIONS(2925), + [sym_number] = ACTIONS(2927), }, - [2214] = { + [2225] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2221), - [sym_concatenation] = STATE(2221), + [aux_sym_expansion_repeat1] = STATE(2232), + [sym_concatenation] = STATE(2232), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5411), + [anon_sym_PERCENT] = ACTIONS(5431), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5413), + [anon_sym_POUND] = ACTIONS(5433), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5415), + [anon_sym_SLASH] = ACTIONS(5435), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_DASH] = ACTIONS(5431), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5411), - [anon_sym_EQ] = ACTIONS(5411), + [anon_sym_COLON_DASH] = ACTIONS(5431), + [anon_sym_EQ] = ACTIONS(5431), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5411), + [anon_sym_COLON_QMARK] = ACTIONS(5431), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5417), + [anon_sym_RBRACE] = ACTIONS(5437), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5411), + [anon_sym_COLON] = ACTIONS(5431), [sym__special_character] = ACTIONS(459), }, - [2215] = { + [2226] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2226), - [sym_concatenation] = STATE(2226), + [aux_sym_expansion_repeat1] = STATE(2237), + [sym_concatenation] = STATE(2237), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5419), + [anon_sym_PERCENT] = ACTIONS(5439), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5421), + [anon_sym_POUND] = ACTIONS(5441), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5423), + [anon_sym_SLASH] = ACTIONS(5443), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5439), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5419), - [anon_sym_EQ] = ACTIONS(5419), + [anon_sym_COLON_DASH] = ACTIONS(5439), + [anon_sym_EQ] = ACTIONS(5439), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5419), + [anon_sym_COLON_QMARK] = ACTIONS(5439), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5425), + [anon_sym_RBRACE] = ACTIONS(5445), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5419), + [anon_sym_COLON] = ACTIONS(5439), [sym__special_character] = ACTIONS(459), }, - [2216] = { + [2227] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5427), + [anon_sym_DQUOTE] = ACTIONS(5447), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -65895,20 +66110,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2217] = { + [2228] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5429), + [anon_sym_DOLLAR] = ACTIONS(5449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5427), + [anon_sym_DQUOTE] = ACTIONS(5447), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2218] = { + [2229] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -65921,7 +66136,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5431), + [anon_sym_RPAREN] = ACTIONS(5451), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -65933,233 +66148,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [2219] = { - [anon_sym_RPAREN] = ACTIONS(5431), + [2230] = { + [anon_sym_RPAREN] = ACTIONS(5451), [sym_comment] = ACTIONS(41), }, - [2220] = { + [2231] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2229), - [sym_concatenation] = STATE(2229), + [aux_sym_expansion_repeat1] = STATE(2240), + [sym_concatenation] = STATE(2240), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5433), + [anon_sym_PERCENT] = ACTIONS(5453), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5435), + [anon_sym_POUND] = ACTIONS(5455), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5437), - [anon_sym_DASH] = ACTIONS(5433), - [anon_sym_COLON_DASH] = ACTIONS(5433), + [anon_sym_RBRACE] = ACTIONS(5457), + [anon_sym_DASH] = ACTIONS(5453), + [anon_sym_COLON_DASH] = ACTIONS(5453), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5433), + [anon_sym_EQ] = ACTIONS(5453), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5433), + [anon_sym_COLON_QMARK] = ACTIONS(5453), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5433), + [anon_sym_COLON] = ACTIONS(5453), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5439), + [sym_regex] = ACTIONS(5459), }, - [2221] = { + [2232] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5437), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5457), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2222] = { + [2233] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2229), - [sym_concatenation] = STATE(2229), + [aux_sym_expansion_repeat1] = STATE(2240), + [sym_concatenation] = STATE(2240), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5433), + [anon_sym_PERCENT] = ACTIONS(5453), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5435), + [anon_sym_POUND] = ACTIONS(5455), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5441), + [anon_sym_SLASH] = ACTIONS(5461), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5433), + [anon_sym_DASH] = ACTIONS(5453), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5433), - [anon_sym_EQ] = ACTIONS(5433), + [anon_sym_COLON_DASH] = ACTIONS(5453), + [anon_sym_EQ] = ACTIONS(5453), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5433), + [anon_sym_COLON_QMARK] = ACTIONS(5453), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_RBRACE] = ACTIONS(5457), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5433), + [anon_sym_COLON] = ACTIONS(5453), [sym__special_character] = ACTIONS(459), }, - [2223] = { + [2234] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2233), - [sym_concatenation] = STATE(2233), + [aux_sym_expansion_repeat1] = STATE(2244), + [sym_concatenation] = STATE(2244), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5443), + [anon_sym_PERCENT] = ACTIONS(5463), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5445), + [anon_sym_POUND] = ACTIONS(5465), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_SLASH] = ACTIONS(5467), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5443), + [anon_sym_DASH] = ACTIONS(5463), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5443), - [anon_sym_EQ] = ACTIONS(5443), + [anon_sym_COLON_DASH] = ACTIONS(5463), + [anon_sym_EQ] = ACTIONS(5463), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5443), + [anon_sym_COLON_QMARK] = ACTIONS(5463), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5449), + [anon_sym_RBRACE] = ACTIONS(5469), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5443), + [anon_sym_COLON] = ACTIONS(5463), [sym__special_character] = ACTIONS(459), }, - [2224] = { - [sym_command_substitution] = STATE(2234), - [aux_sym__literal_repeat1] = STATE(2235), - [sym_string] = STATE(2234), - [sym_process_substitution] = STATE(2234), - [sym_simple_expansion] = STATE(2234), - [sym_string_expansion] = STATE(2234), - [sym_concatenation] = STATE(2236), - [sym_expansion] = STATE(2234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5451), - [sym_word] = ACTIONS(5453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5451), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5437), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5453), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2235] = { + [sym_command_substitution] = STATE(2245), + [aux_sym__literal_repeat1] = STATE(2246), + [sym_string] = STATE(2245), + [sym_process_substitution] = STATE(2245), + [sym_simple_expansion] = STATE(2245), + [sym_string_expansion] = STATE(2245), + [sym_concatenation] = STATE(2247), + [sym_expansion] = STATE(2245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5471), + [sym_word] = ACTIONS(5473), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5471), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5457), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5473), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2225] = { + [2236] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2238), - [sym_concatenation] = STATE(2238), + [aux_sym_expansion_repeat1] = STATE(2249), + [sym_concatenation] = STATE(2249), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5455), + [anon_sym_PERCENT] = ACTIONS(5475), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5457), + [anon_sym_POUND] = ACTIONS(5477), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5459), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_COLON_DASH] = ACTIONS(5455), + [anon_sym_RBRACE] = ACTIONS(5479), + [anon_sym_DASH] = ACTIONS(5475), + [anon_sym_COLON_DASH] = ACTIONS(5475), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5455), + [anon_sym_EQ] = ACTIONS(5475), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5455), + [anon_sym_COLON_QMARK] = ACTIONS(5475), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5455), + [anon_sym_COLON] = ACTIONS(5475), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5461), + [sym_regex] = ACTIONS(5481), }, - [2226] = { + [2237] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5459), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5479), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2227] = { + [2238] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5463), + [anon_sym_DQUOTE] = ACTIONS(5483), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -66172,639 +66387,639 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2228] = { + [2239] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2239), - [sym_concatenation] = STATE(2239), + [aux_sym_expansion_repeat1] = STATE(2250), + [sym_concatenation] = STATE(2250), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5465), + [anon_sym_PERCENT] = ACTIONS(5485), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5467), + [anon_sym_POUND] = ACTIONS(5487), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5469), - [anon_sym_DASH] = ACTIONS(5465), - [anon_sym_COLON_DASH] = ACTIONS(5465), + [anon_sym_RBRACE] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5485), + [anon_sym_COLON_DASH] = ACTIONS(5485), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5465), + [anon_sym_EQ] = ACTIONS(5485), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5465), + [anon_sym_COLON_QMARK] = ACTIONS(5485), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5465), + [anon_sym_COLON] = ACTIONS(5485), [sym__special_character] = ACTIONS(459), }, - [2229] = { + [2240] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5469), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2230] = { + [2241] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2239), - [sym_concatenation] = STATE(2239), + [aux_sym_expansion_repeat1] = STATE(2250), + [sym_concatenation] = STATE(2250), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5465), + [anon_sym_PERCENT] = ACTIONS(5485), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5467), + [anon_sym_POUND] = ACTIONS(5487), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5469), - [anon_sym_DASH] = ACTIONS(5465), - [anon_sym_COLON_DASH] = ACTIONS(5465), + [anon_sym_RBRACE] = ACTIONS(5489), + [anon_sym_DASH] = ACTIONS(5485), + [anon_sym_COLON_DASH] = ACTIONS(5485), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5465), + [anon_sym_EQ] = ACTIONS(5485), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5465), + [anon_sym_COLON_QMARK] = ACTIONS(5485), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5465), + [anon_sym_COLON] = ACTIONS(5485), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5471), + [sym_regex] = ACTIONS(5491), }, - [2231] = { - [sym_command_substitution] = STATE(2241), - [aux_sym__literal_repeat1] = STATE(2242), - [sym_string] = STATE(2241), - [sym_process_substitution] = STATE(2241), - [sym_simple_expansion] = STATE(2241), - [sym_string_expansion] = STATE(2241), - [sym_concatenation] = STATE(2243), - [sym_expansion] = STATE(2241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5473), - [sym_word] = ACTIONS(5475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5473), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5469), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5475), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2242] = { + [sym_command_substitution] = STATE(2252), + [aux_sym__literal_repeat1] = STATE(2253), + [sym_string] = STATE(2252), + [sym_process_substitution] = STATE(2252), + [sym_simple_expansion] = STATE(2252), + [sym_string_expansion] = STATE(2252), + [sym_concatenation] = STATE(2254), + [sym_expansion] = STATE(2252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5493), + [sym_word] = ACTIONS(5495), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5493), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5489), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5495), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2232] = { + [2243] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2245), - [sym_concatenation] = STATE(2245), + [aux_sym_expansion_repeat1] = STATE(2256), + [sym_concatenation] = STATE(2256), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5477), + [anon_sym_PERCENT] = ACTIONS(5497), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5479), + [anon_sym_POUND] = ACTIONS(5499), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5481), - [anon_sym_DASH] = ACTIONS(5477), - [anon_sym_COLON_DASH] = ACTIONS(5477), + [anon_sym_RBRACE] = ACTIONS(5501), + [anon_sym_DASH] = ACTIONS(5497), + [anon_sym_COLON_DASH] = ACTIONS(5497), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5477), + [anon_sym_EQ] = ACTIONS(5497), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5477), + [anon_sym_COLON_QMARK] = ACTIONS(5497), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5477), + [anon_sym_COLON] = ACTIONS(5497), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5483), + [sym_regex] = ACTIONS(5503), }, - [2233] = { + [2244] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5481), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5501), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2234] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2245] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5469), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5489), + [sym__concat] = ACTIONS(1298), }, - [2235] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5485), + [2246] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5505), [sym_comment] = ACTIONS(41), }, - [2236] = { - [anon_sym_RBRACE] = ACTIONS(5469), + [2247] = { + [anon_sym_RBRACE] = ACTIONS(5489), [sym_comment] = ACTIONS(41), }, - [2237] = { + [2248] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2246), - [sym_concatenation] = STATE(2246), + [aux_sym_expansion_repeat1] = STATE(2257), + [sym_concatenation] = STATE(2257), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5487), + [anon_sym_PERCENT] = ACTIONS(5507), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5489), + [anon_sym_POUND] = ACTIONS(5509), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(5487), - [anon_sym_COLON_DASH] = ACTIONS(5487), + [anon_sym_RBRACE] = ACTIONS(5511), + [anon_sym_DASH] = ACTIONS(5507), + [anon_sym_COLON_DASH] = ACTIONS(5507), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5487), + [anon_sym_EQ] = ACTIONS(5507), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5487), + [anon_sym_COLON_QMARK] = ACTIONS(5507), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5487), + [anon_sym_COLON] = ACTIONS(5507), [sym__special_character] = ACTIONS(459), }, - [2238] = { + [2249] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5491), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5511), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2239] = { + [2250] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5493), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5513), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2240] = { + [2251] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2247), - [sym_concatenation] = STATE(2247), + [aux_sym_expansion_repeat1] = STATE(2258), + [sym_concatenation] = STATE(2258), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5495), + [anon_sym_PERCENT] = ACTIONS(5515), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5497), + [anon_sym_POUND] = ACTIONS(5517), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5493), - [anon_sym_DASH] = ACTIONS(5495), - [anon_sym_COLON_DASH] = ACTIONS(5495), + [anon_sym_RBRACE] = ACTIONS(5513), + [anon_sym_DASH] = ACTIONS(5515), + [anon_sym_COLON_DASH] = ACTIONS(5515), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5495), + [anon_sym_EQ] = ACTIONS(5515), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5495), + [anon_sym_COLON_QMARK] = ACTIONS(5515), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5495), + [anon_sym_COLON] = ACTIONS(5515), [sym__special_character] = ACTIONS(459), }, - [2241] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2252] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5493), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5513), + [sym__concat] = ACTIONS(1298), }, - [2242] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5499), + [2253] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5519), [sym_comment] = ACTIONS(41), }, - [2243] = { - [anon_sym_RBRACE] = ACTIONS(5493), + [2254] = { + [anon_sym_RBRACE] = ACTIONS(5513), [sym_comment] = ACTIONS(41), }, - [2244] = { + [2255] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2248), - [sym_concatenation] = STATE(2248), + [aux_sym_expansion_repeat1] = STATE(2259), + [sym_concatenation] = STATE(2259), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5501), + [anon_sym_PERCENT] = ACTIONS(5521), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5503), + [anon_sym_POUND] = ACTIONS(5523), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5505), - [anon_sym_DASH] = ACTIONS(5501), - [anon_sym_COLON_DASH] = ACTIONS(5501), + [anon_sym_RBRACE] = ACTIONS(5525), + [anon_sym_DASH] = ACTIONS(5521), + [anon_sym_COLON_DASH] = ACTIONS(5521), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5501), + [anon_sym_EQ] = ACTIONS(5521), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5501), + [anon_sym_COLON_QMARK] = ACTIONS(5521), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5501), + [anon_sym_COLON] = ACTIONS(5521), [sym__special_character] = ACTIONS(459), }, - [2245] = { + [2256] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5505), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5525), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2246] = { + [2257] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5507), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2247] = { + [2258] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5509), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5529), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2248] = { + [2259] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5511), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5531), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2249] = { - [sym_string] = STATE(1259), - [anon_sym__] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2949), - [anon_sym_POUND] = ACTIONS(5513), - [anon_sym_STAR] = ACTIONS(5515), - [anon_sym_0] = ACTIONS(2996), - [anon_sym_BANG] = ACTIONS(5513), - [aux_sym__simple_variable_name_token1] = ACTIONS(2996), - [anon_sym_DOLLAR] = ACTIONS(5513), - [anon_sym_AT] = ACTIONS(5515), - [anon_sym_DASH] = ACTIONS(5513), - [sym_raw_string] = ACTIONS(5517), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5515), + [2260] = { + [sym_string] = STATE(1265), + [anon_sym__] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(5533), + [anon_sym_STAR] = ACTIONS(5535), + [anon_sym_0] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(5533), + [aux_sym__simple_variable_name_token1] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(5533), + [anon_sym_AT] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(5533), + [sym_raw_string] = ACTIONS(5537), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5535), }, - [2250] = { + [2261] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2257), + [aux_sym_string_repeat1] = STATE(2268), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5519), + [anon_sym_DOLLAR] = ACTIONS(5539), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5521), + [anon_sym_DQUOTE] = ACTIONS(5541), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2251] = { + [2262] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5523), + [anon_sym_BQUOTE] = ACTIONS(5543), }, - [2252] = { - [anon_sym_RPAREN] = ACTIONS(5525), + [2263] = { + [anon_sym_RPAREN] = ACTIONS(5545), [sym_comment] = ACTIONS(41), }, - [2253] = { - [sym_command_substitution] = STATE(1266), - [sym_simple_expansion] = STATE(1266), - [sym_string_expansion] = STATE(1266), - [sym_string] = STATE(1266), - [sym_process_substitution] = STATE(1266), - [sym_expansion] = STATE(1266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2951), - [sym_word] = ACTIONS(2953), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [anon_sym_DOLLAR] = ACTIONS(2448), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [sym_ansii_c_string] = ACTIONS(2951), - [anon_sym_BQUOTE] = ACTIONS(2961), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym__special_character] = ACTIONS(2951), - [sym_number] = ACTIONS(2953), + [2264] = { + [sym_command_substitution] = STATE(1272), + [sym_simple_expansion] = STATE(1272), + [sym_string_expansion] = STATE(1272), + [sym_string] = STATE(1272), + [sym_process_substitution] = STATE(1272), + [sym_expansion] = STATE(1272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2945), + [anon_sym_DQUOTE] = ACTIONS(2947), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2949), + [sym_word] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2953), + [anon_sym_DOLLAR] = ACTIONS(2452), + [anon_sym_LT_LPAREN] = ACTIONS(2957), + [sym_ansii_c_string] = ACTIONS(2949), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2957), + [sym__special_character] = ACTIONS(2949), + [sym_number] = ACTIONS(2951), }, - [2254] = { + [2265] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2261), - [sym_concatenation] = STATE(2261), + [aux_sym_expansion_repeat1] = STATE(2272), + [sym_concatenation] = STATE(2272), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5527), + [anon_sym_PERCENT] = ACTIONS(5547), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5529), + [anon_sym_POUND] = ACTIONS(5549), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5531), + [anon_sym_SLASH] = ACTIONS(5551), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(5547), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5527), - [anon_sym_EQ] = ACTIONS(5527), + [anon_sym_COLON_DASH] = ACTIONS(5547), + [anon_sym_EQ] = ACTIONS(5547), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5527), + [anon_sym_COLON_QMARK] = ACTIONS(5547), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5533), + [anon_sym_RBRACE] = ACTIONS(5553), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5527), + [anon_sym_COLON] = ACTIONS(5547), [sym__special_character] = ACTIONS(459), }, - [2255] = { + [2266] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2266), - [sym_concatenation] = STATE(2266), + [aux_sym_expansion_repeat1] = STATE(2277), + [sym_concatenation] = STATE(2277), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5535), + [anon_sym_PERCENT] = ACTIONS(5555), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5537), + [anon_sym_POUND] = ACTIONS(5557), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5539), + [anon_sym_SLASH] = ACTIONS(5559), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5535), + [anon_sym_DASH] = ACTIONS(5555), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5535), - [anon_sym_EQ] = ACTIONS(5535), + [anon_sym_COLON_DASH] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5555), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5535), + [anon_sym_COLON_QMARK] = ACTIONS(5555), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5541), + [anon_sym_RBRACE] = ACTIONS(5561), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5535), + [anon_sym_COLON] = ACTIONS(5555), [sym__special_character] = ACTIONS(459), }, - [2256] = { + [2267] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5543), + [anon_sym_DQUOTE] = ACTIONS(5563), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -66817,20 +67032,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2257] = { + [2268] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5545), + [anon_sym_DOLLAR] = ACTIONS(5565), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5543), + [anon_sym_DQUOTE] = ACTIONS(5563), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2258] = { + [2269] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -66843,7 +67058,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5547), + [anon_sym_RPAREN] = ACTIONS(5567), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -66855,233 +67070,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [2259] = { - [anon_sym_RPAREN] = ACTIONS(5547), + [2270] = { + [anon_sym_RPAREN] = ACTIONS(5567), [sym_comment] = ACTIONS(41), }, - [2260] = { + [2271] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2269), - [sym_concatenation] = STATE(2269), + [aux_sym_expansion_repeat1] = STATE(2280), + [sym_concatenation] = STATE(2280), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5549), + [anon_sym_PERCENT] = ACTIONS(5569), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5551), + [anon_sym_POUND] = ACTIONS(5571), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5553), - [anon_sym_DASH] = ACTIONS(5549), - [anon_sym_COLON_DASH] = ACTIONS(5549), + [anon_sym_RBRACE] = ACTIONS(5573), + [anon_sym_DASH] = ACTIONS(5569), + [anon_sym_COLON_DASH] = ACTIONS(5569), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5549), + [anon_sym_EQ] = ACTIONS(5569), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5549), + [anon_sym_COLON_QMARK] = ACTIONS(5569), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5549), + [anon_sym_COLON] = ACTIONS(5569), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5555), + [sym_regex] = ACTIONS(5575), }, - [2261] = { + [2272] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5553), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5573), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2262] = { + [2273] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2269), - [sym_concatenation] = STATE(2269), + [aux_sym_expansion_repeat1] = STATE(2280), + [sym_concatenation] = STATE(2280), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5549), + [anon_sym_PERCENT] = ACTIONS(5569), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5551), + [anon_sym_POUND] = ACTIONS(5571), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5557), + [anon_sym_SLASH] = ACTIONS(5577), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5549), + [anon_sym_DASH] = ACTIONS(5569), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5549), - [anon_sym_EQ] = ACTIONS(5549), + [anon_sym_COLON_DASH] = ACTIONS(5569), + [anon_sym_EQ] = ACTIONS(5569), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5549), + [anon_sym_COLON_QMARK] = ACTIONS(5569), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5553), + [anon_sym_RBRACE] = ACTIONS(5573), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5549), + [anon_sym_COLON] = ACTIONS(5569), [sym__special_character] = ACTIONS(459), }, - [2263] = { + [2274] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2273), - [sym_concatenation] = STATE(2273), + [aux_sym_expansion_repeat1] = STATE(2284), + [sym_concatenation] = STATE(2284), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5559), + [anon_sym_PERCENT] = ACTIONS(5579), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5561), + [anon_sym_POUND] = ACTIONS(5581), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5563), + [anon_sym_SLASH] = ACTIONS(5583), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5559), + [anon_sym_DASH] = ACTIONS(5579), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5559), - [anon_sym_EQ] = ACTIONS(5559), + [anon_sym_COLON_DASH] = ACTIONS(5579), + [anon_sym_EQ] = ACTIONS(5579), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5559), + [anon_sym_COLON_QMARK] = ACTIONS(5579), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5565), + [anon_sym_RBRACE] = ACTIONS(5585), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_COLON] = ACTIONS(5579), [sym__special_character] = ACTIONS(459), }, - [2264] = { - [sym_command_substitution] = STATE(2274), - [aux_sym__literal_repeat1] = STATE(2275), - [sym_string] = STATE(2274), - [sym_process_substitution] = STATE(2274), - [sym_simple_expansion] = STATE(2274), - [sym_string_expansion] = STATE(2274), - [sym_concatenation] = STATE(2276), - [sym_expansion] = STATE(2274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5567), - [sym_word] = ACTIONS(5569), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5553), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2275] = { + [sym_command_substitution] = STATE(2285), + [aux_sym__literal_repeat1] = STATE(2286), + [sym_string] = STATE(2285), + [sym_process_substitution] = STATE(2285), + [sym_simple_expansion] = STATE(2285), + [sym_string_expansion] = STATE(2285), + [sym_concatenation] = STATE(2287), + [sym_expansion] = STATE(2285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5587), + [sym_word] = ACTIONS(5589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5587), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5573), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5589), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2265] = { + [2276] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2278), - [sym_concatenation] = STATE(2278), + [aux_sym_expansion_repeat1] = STATE(2289), + [sym_concatenation] = STATE(2289), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5571), + [anon_sym_PERCENT] = ACTIONS(5591), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5573), + [anon_sym_POUND] = ACTIONS(5593), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5575), - [anon_sym_DASH] = ACTIONS(5571), - [anon_sym_COLON_DASH] = ACTIONS(5571), + [anon_sym_RBRACE] = ACTIONS(5595), + [anon_sym_DASH] = ACTIONS(5591), + [anon_sym_COLON_DASH] = ACTIONS(5591), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5571), + [anon_sym_EQ] = ACTIONS(5591), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5571), + [anon_sym_COLON_QMARK] = ACTIONS(5591), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5571), + [anon_sym_COLON] = ACTIONS(5591), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5577), + [sym_regex] = ACTIONS(5597), }, - [2266] = { + [2277] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5575), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5595), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2267] = { + [2278] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5579), + [anon_sym_DQUOTE] = ACTIONS(5599), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -67094,639 +67309,639 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2268] = { + [2279] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2279), - [sym_concatenation] = STATE(2279), + [aux_sym_expansion_repeat1] = STATE(2290), + [sym_concatenation] = STATE(2290), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5581), + [anon_sym_PERCENT] = ACTIONS(5601), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5583), + [anon_sym_POUND] = ACTIONS(5603), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5585), - [anon_sym_DASH] = ACTIONS(5581), - [anon_sym_COLON_DASH] = ACTIONS(5581), + [anon_sym_RBRACE] = ACTIONS(5605), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_COLON_DASH] = ACTIONS(5601), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5581), + [anon_sym_EQ] = ACTIONS(5601), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5581), + [anon_sym_COLON_QMARK] = ACTIONS(5601), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5581), + [anon_sym_COLON] = ACTIONS(5601), [sym__special_character] = ACTIONS(459), }, - [2269] = { + [2280] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5585), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5605), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2270] = { + [2281] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2279), - [sym_concatenation] = STATE(2279), + [aux_sym_expansion_repeat1] = STATE(2290), + [sym_concatenation] = STATE(2290), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5581), + [anon_sym_PERCENT] = ACTIONS(5601), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5583), + [anon_sym_POUND] = ACTIONS(5603), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5585), - [anon_sym_DASH] = ACTIONS(5581), - [anon_sym_COLON_DASH] = ACTIONS(5581), + [anon_sym_RBRACE] = ACTIONS(5605), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_COLON_DASH] = ACTIONS(5601), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5581), + [anon_sym_EQ] = ACTIONS(5601), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5581), + [anon_sym_COLON_QMARK] = ACTIONS(5601), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5581), + [anon_sym_COLON] = ACTIONS(5601), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5587), + [sym_regex] = ACTIONS(5607), }, - [2271] = { - [sym_command_substitution] = STATE(2281), - [aux_sym__literal_repeat1] = STATE(2282), - [sym_string] = STATE(2281), - [sym_process_substitution] = STATE(2281), - [sym_simple_expansion] = STATE(2281), - [sym_string_expansion] = STATE(2281), - [sym_concatenation] = STATE(2283), - [sym_expansion] = STATE(2281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5589), - [sym_word] = ACTIONS(5591), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5589), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5585), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5591), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2282] = { + [sym_command_substitution] = STATE(2292), + [aux_sym__literal_repeat1] = STATE(2293), + [sym_string] = STATE(2292), + [sym_process_substitution] = STATE(2292), + [sym_simple_expansion] = STATE(2292), + [sym_string_expansion] = STATE(2292), + [sym_concatenation] = STATE(2294), + [sym_expansion] = STATE(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5609), + [sym_word] = ACTIONS(5611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5609), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5605), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5611), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2272] = { + [2283] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2285), - [sym_concatenation] = STATE(2285), + [aux_sym_expansion_repeat1] = STATE(2296), + [sym_concatenation] = STATE(2296), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5593), + [anon_sym_PERCENT] = ACTIONS(5613), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5595), + [anon_sym_POUND] = ACTIONS(5615), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5597), - [anon_sym_DASH] = ACTIONS(5593), - [anon_sym_COLON_DASH] = ACTIONS(5593), + [anon_sym_RBRACE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5613), + [anon_sym_COLON_DASH] = ACTIONS(5613), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5593), + [anon_sym_EQ] = ACTIONS(5613), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5593), + [anon_sym_COLON_QMARK] = ACTIONS(5613), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5593), + [anon_sym_COLON] = ACTIONS(5613), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5599), + [sym_regex] = ACTIONS(5619), }, - [2273] = { + [2284] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5597), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2274] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2285] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5585), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5605), + [sym__concat] = ACTIONS(1298), }, - [2275] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5601), + [2286] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5621), [sym_comment] = ACTIONS(41), }, - [2276] = { - [anon_sym_RBRACE] = ACTIONS(5585), + [2287] = { + [anon_sym_RBRACE] = ACTIONS(5605), [sym_comment] = ACTIONS(41), }, - [2277] = { + [2288] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2286), - [sym_concatenation] = STATE(2286), + [aux_sym_expansion_repeat1] = STATE(2297), + [sym_concatenation] = STATE(2297), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5603), + [anon_sym_PERCENT] = ACTIONS(5623), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5605), + [anon_sym_POUND] = ACTIONS(5625), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5607), - [anon_sym_DASH] = ACTIONS(5603), - [anon_sym_COLON_DASH] = ACTIONS(5603), + [anon_sym_RBRACE] = ACTIONS(5627), + [anon_sym_DASH] = ACTIONS(5623), + [anon_sym_COLON_DASH] = ACTIONS(5623), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5623), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5603), + [anon_sym_COLON_QMARK] = ACTIONS(5623), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5603), + [anon_sym_COLON] = ACTIONS(5623), [sym__special_character] = ACTIONS(459), }, - [2278] = { + [2289] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5607), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5627), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2279] = { + [2290] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5609), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2280] = { + [2291] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2287), - [sym_concatenation] = STATE(2287), + [aux_sym_expansion_repeat1] = STATE(2298), + [sym_concatenation] = STATE(2298), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5611), + [anon_sym_PERCENT] = ACTIONS(5631), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5613), + [anon_sym_POUND] = ACTIONS(5633), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5609), - [anon_sym_DASH] = ACTIONS(5611), - [anon_sym_COLON_DASH] = ACTIONS(5611), + [anon_sym_RBRACE] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5631), + [anon_sym_COLON_DASH] = ACTIONS(5631), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5631), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5611), + [anon_sym_COLON_QMARK] = ACTIONS(5631), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5611), + [anon_sym_COLON] = ACTIONS(5631), [sym__special_character] = ACTIONS(459), }, - [2281] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2292] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5609), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5629), + [sym__concat] = ACTIONS(1298), }, - [2282] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5615), + [2293] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5635), [sym_comment] = ACTIONS(41), }, - [2283] = { - [anon_sym_RBRACE] = ACTIONS(5609), + [2294] = { + [anon_sym_RBRACE] = ACTIONS(5629), [sym_comment] = ACTIONS(41), }, - [2284] = { + [2295] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2288), - [sym_concatenation] = STATE(2288), + [aux_sym_expansion_repeat1] = STATE(2299), + [sym_concatenation] = STATE(2299), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5617), + [anon_sym_PERCENT] = ACTIONS(5637), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5619), + [anon_sym_POUND] = ACTIONS(5639), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5621), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_COLON_DASH] = ACTIONS(5617), + [anon_sym_RBRACE] = ACTIONS(5641), + [anon_sym_DASH] = ACTIONS(5637), + [anon_sym_COLON_DASH] = ACTIONS(5637), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5617), + [anon_sym_EQ] = ACTIONS(5637), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5617), + [anon_sym_COLON_QMARK] = ACTIONS(5637), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5617), + [anon_sym_COLON] = ACTIONS(5637), [sym__special_character] = ACTIONS(459), }, - [2285] = { + [2296] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5621), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5641), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2286] = { + [2297] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5623), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2287] = { + [2298] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5625), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2288] = { + [2299] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5627), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2289] = { - [sym_string] = STATE(1291), - [anon_sym__] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(2979), - [anon_sym_POUND] = ACTIONS(5629), - [anon_sym_STAR] = ACTIONS(5631), - [anon_sym_0] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(5629), - [aux_sym__simple_variable_name_token1] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(5629), - [anon_sym_AT] = ACTIONS(5631), - [anon_sym_DASH] = ACTIONS(5629), - [sym_raw_string] = ACTIONS(5633), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5631), + [2300] = { + [sym_string] = STATE(1297), + [anon_sym__] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_POUND] = ACTIONS(5649), + [anon_sym_STAR] = ACTIONS(5651), + [anon_sym_0] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(5649), + [aux_sym__simple_variable_name_token1] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(5649), + [anon_sym_AT] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5649), + [sym_raw_string] = ACTIONS(5653), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(5651), }, - [2290] = { + [2301] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2297), + [aux_sym_string_repeat1] = STATE(2308), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5635), + [anon_sym_DOLLAR] = ACTIONS(5655), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5637), + [anon_sym_DQUOTE] = ACTIONS(5657), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2291] = { + [2302] = { [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5639), + [anon_sym_BQUOTE] = ACTIONS(5659), }, - [2292] = { - [anon_sym_RPAREN] = ACTIONS(5641), + [2303] = { + [anon_sym_RPAREN] = ACTIONS(5661), [sym_comment] = ACTIONS(41), }, - [2293] = { - [sym_command_substitution] = STATE(1298), - [sym_simple_expansion] = STATE(1298), - [sym_string_expansion] = STATE(1298), - [sym_string] = STATE(1298), - [sym_process_substitution] = STATE(1298), - [sym_expansion] = STATE(1298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2981), - [sym_word] = ACTIONS(2983), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), - [anon_sym_DOLLAR] = ACTIONS(3687), - [anon_sym_LT_LPAREN] = ACTIONS(2989), - [sym_ansii_c_string] = ACTIONS(2981), - [anon_sym_BQUOTE] = ACTIONS(2991), - [anon_sym_GT_LPAREN] = ACTIONS(2989), - [sym__special_character] = ACTIONS(2981), - [sym_number] = ACTIONS(2983), + [2304] = { + [sym_command_substitution] = STATE(1304), + [sym_simple_expansion] = STATE(1304), + [sym_string_expansion] = STATE(1304), + [sym_string] = STATE(1304), + [sym_process_substitution] = STATE(1304), + [sym_expansion] = STATE(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2977), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2979), + [sym_word] = ACTIONS(2981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2983), + [anon_sym_DOLLAR] = ACTIONS(3817), + [anon_sym_LT_LPAREN] = ACTIONS(2987), + [sym_ansii_c_string] = ACTIONS(2979), + [anon_sym_BQUOTE] = ACTIONS(2989), + [anon_sym_GT_LPAREN] = ACTIONS(2987), + [sym__special_character] = ACTIONS(2979), + [sym_number] = ACTIONS(2981), }, - [2294] = { + [2305] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2301), - [sym_concatenation] = STATE(2301), + [aux_sym_expansion_repeat1] = STATE(2312), + [sym_concatenation] = STATE(2312), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5643), + [anon_sym_PERCENT] = ACTIONS(5663), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5645), + [anon_sym_POUND] = ACTIONS(5665), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5667), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5663), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5643), + [anon_sym_COLON_DASH] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5663), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5643), + [anon_sym_COLON_QMARK] = ACTIONS(5663), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5649), + [anon_sym_RBRACE] = ACTIONS(5669), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5663), [sym__special_character] = ACTIONS(459), }, - [2295] = { + [2306] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2306), - [sym_concatenation] = STATE(2306), + [aux_sym_expansion_repeat1] = STATE(2317), + [sym_concatenation] = STATE(2317), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5651), + [anon_sym_PERCENT] = ACTIONS(5671), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5653), + [anon_sym_POUND] = ACTIONS(5673), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5655), + [anon_sym_SLASH] = ACTIONS(5675), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5671), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5651), - [anon_sym_EQ] = ACTIONS(5651), + [anon_sym_COLON_DASH] = ACTIONS(5671), + [anon_sym_EQ] = ACTIONS(5671), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5651), + [anon_sym_COLON_QMARK] = ACTIONS(5671), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5677), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5651), + [anon_sym_COLON] = ACTIONS(5671), [sym__special_character] = ACTIONS(459), }, - [2296] = { + [2307] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5659), + [anon_sym_DQUOTE] = ACTIONS(5679), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -67739,20 +67954,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2297] = { + [2308] = { [sym_command_substitution] = STATE(81), [sym_simple_expansion] = STATE(81), [aux_sym_string_repeat1] = STATE(160), [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5661), + [anon_sym_DOLLAR] = ACTIONS(5681), [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5659), + [anon_sym_DQUOTE] = ACTIONS(5679), [anon_sym_BQUOTE] = ACTIONS(273), [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), [sym__string_content] = ACTIONS(277), }, - [2298] = { + [2309] = { [anon_sym_AMP_GT_GT] = ACTIONS(333), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(333), @@ -67765,7 +67980,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(331), [anon_sym_GT_LPAREN] = ACTIONS(333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5683), [anon_sym_DQUOTE] = ACTIONS(333), [anon_sym_GT_AMP] = ACTIONS(333), [sym_word] = ACTIONS(331), @@ -67777,233 +67992,233 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(333), [sym__special_character] = ACTIONS(333), }, - [2299] = { - [anon_sym_RPAREN] = ACTIONS(5663), + [2310] = { + [anon_sym_RPAREN] = ACTIONS(5683), [sym_comment] = ACTIONS(41), }, - [2300] = { + [2311] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2309), - [sym_concatenation] = STATE(2309), + [aux_sym_expansion_repeat1] = STATE(2320), + [sym_concatenation] = STATE(2320), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5665), + [anon_sym_PERCENT] = ACTIONS(5685), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5667), + [anon_sym_POUND] = ACTIONS(5687), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5669), - [anon_sym_DASH] = ACTIONS(5665), - [anon_sym_COLON_DASH] = ACTIONS(5665), + [anon_sym_RBRACE] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(5685), + [anon_sym_COLON_DASH] = ACTIONS(5685), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5665), + [anon_sym_EQ] = ACTIONS(5685), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5665), + [anon_sym_COLON_QMARK] = ACTIONS(5685), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5665), + [anon_sym_COLON] = ACTIONS(5685), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5671), + [sym_regex] = ACTIONS(5691), }, - [2301] = { + [2312] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5669), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2302] = { + [2313] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2309), - [sym_concatenation] = STATE(2309), + [aux_sym_expansion_repeat1] = STATE(2320), + [sym_concatenation] = STATE(2320), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5665), + [anon_sym_PERCENT] = ACTIONS(5685), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5667), + [anon_sym_POUND] = ACTIONS(5687), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5693), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5665), + [anon_sym_DASH] = ACTIONS(5685), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5665), - [anon_sym_EQ] = ACTIONS(5665), + [anon_sym_COLON_DASH] = ACTIONS(5685), + [anon_sym_EQ] = ACTIONS(5685), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5665), + [anon_sym_COLON_QMARK] = ACTIONS(5685), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5669), + [anon_sym_RBRACE] = ACTIONS(5689), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5665), + [anon_sym_COLON] = ACTIONS(5685), [sym__special_character] = ACTIONS(459), }, - [2303] = { + [2314] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2313), - [sym_concatenation] = STATE(2313), + [aux_sym_expansion_repeat1] = STATE(2324), + [sym_concatenation] = STATE(2324), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5675), + [anon_sym_PERCENT] = ACTIONS(5695), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5677), + [anon_sym_POUND] = ACTIONS(5697), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5679), + [anon_sym_SLASH] = ACTIONS(5699), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5675), + [anon_sym_DASH] = ACTIONS(5695), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5675), - [anon_sym_EQ] = ACTIONS(5675), + [anon_sym_COLON_DASH] = ACTIONS(5695), + [anon_sym_EQ] = ACTIONS(5695), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5675), + [anon_sym_COLON_QMARK] = ACTIONS(5695), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5681), + [anon_sym_RBRACE] = ACTIONS(5701), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5675), + [anon_sym_COLON] = ACTIONS(5695), [sym__special_character] = ACTIONS(459), }, - [2304] = { - [sym_command_substitution] = STATE(2314), - [aux_sym__literal_repeat1] = STATE(2315), - [sym_string] = STATE(2314), - [sym_process_substitution] = STATE(2314), - [sym_simple_expansion] = STATE(2314), - [sym_string_expansion] = STATE(2314), - [sym_concatenation] = STATE(2316), - [sym_expansion] = STATE(2314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5683), - [sym_word] = ACTIONS(5685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5683), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5669), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5685), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2315] = { + [sym_command_substitution] = STATE(2325), + [aux_sym__literal_repeat1] = STATE(2326), + [sym_string] = STATE(2325), + [sym_process_substitution] = STATE(2325), + [sym_simple_expansion] = STATE(2325), + [sym_string_expansion] = STATE(2325), + [sym_concatenation] = STATE(2327), + [sym_expansion] = STATE(2325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5703), + [sym_word] = ACTIONS(5705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5703), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5689), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5705), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2305] = { + [2316] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2318), - [sym_concatenation] = STATE(2318), + [aux_sym_expansion_repeat1] = STATE(2329), + [sym_concatenation] = STATE(2329), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5687), + [anon_sym_PERCENT] = ACTIONS(5707), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5689), + [anon_sym_POUND] = ACTIONS(5709), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5687), - [anon_sym_COLON_DASH] = ACTIONS(5687), + [anon_sym_RBRACE] = ACTIONS(5711), + [anon_sym_DASH] = ACTIONS(5707), + [anon_sym_COLON_DASH] = ACTIONS(5707), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5687), + [anon_sym_EQ] = ACTIONS(5707), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5687), + [anon_sym_COLON_QMARK] = ACTIONS(5707), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5687), + [anon_sym_COLON] = ACTIONS(5707), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5693), + [sym_regex] = ACTIONS(5713), }, - [2306] = { + [2317] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5711), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2307] = { + [2318] = { [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5695), + [anon_sym_DQUOTE] = ACTIONS(5715), [anon_sym_POUND] = ACTIONS(591), [anon_sym_STAR] = ACTIONS(587), [anon_sym_0] = ACTIONS(587), @@ -68016,710 +68231,517 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(587), }, - [2308] = { + [2319] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2319), - [sym_concatenation] = STATE(2319), + [aux_sym_expansion_repeat1] = STATE(2330), + [sym_concatenation] = STATE(2330), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5697), + [anon_sym_PERCENT] = ACTIONS(5717), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5699), + [anon_sym_POUND] = ACTIONS(5719), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(5697), - [anon_sym_COLON_DASH] = ACTIONS(5697), + [anon_sym_RBRACE] = ACTIONS(5721), + [anon_sym_DASH] = ACTIONS(5717), + [anon_sym_COLON_DASH] = ACTIONS(5717), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_EQ] = ACTIONS(5717), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5697), + [anon_sym_COLON_QMARK] = ACTIONS(5717), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5697), + [anon_sym_COLON] = ACTIONS(5717), [sym__special_character] = ACTIONS(459), }, - [2309] = { + [2320] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5721), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2310] = { + [2321] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2319), - [sym_concatenation] = STATE(2319), + [aux_sym_expansion_repeat1] = STATE(2330), + [sym_concatenation] = STATE(2330), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5697), + [anon_sym_PERCENT] = ACTIONS(5717), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5699), + [anon_sym_POUND] = ACTIONS(5719), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(5697), - [anon_sym_COLON_DASH] = ACTIONS(5697), + [anon_sym_RBRACE] = ACTIONS(5721), + [anon_sym_DASH] = ACTIONS(5717), + [anon_sym_COLON_DASH] = ACTIONS(5717), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_EQ] = ACTIONS(5717), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5697), + [anon_sym_COLON_QMARK] = ACTIONS(5717), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5697), + [anon_sym_COLON] = ACTIONS(5717), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5703), + [sym_regex] = ACTIONS(5723), }, - [2311] = { - [sym_command_substitution] = STATE(2321), - [aux_sym__literal_repeat1] = STATE(2322), - [sym_string] = STATE(2321), - [sym_process_substitution] = STATE(2321), - [sym_simple_expansion] = STATE(2321), - [sym_string_expansion] = STATE(2321), - [sym_concatenation] = STATE(2323), - [sym_expansion] = STATE(2321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5705), - [sym_word] = ACTIONS(5707), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5705), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5701), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5707), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2322] = { + [sym_command_substitution] = STATE(2332), + [aux_sym__literal_repeat1] = STATE(2333), + [sym_string] = STATE(2332), + [sym_process_substitution] = STATE(2332), + [sym_simple_expansion] = STATE(2332), + [sym_string_expansion] = STATE(2332), + [sym_concatenation] = STATE(2334), + [sym_expansion] = STATE(2332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5725), + [sym_word] = ACTIONS(5727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5725), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5721), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5727), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2312] = { + [2323] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2325), - [sym_concatenation] = STATE(2325), + [aux_sym_expansion_repeat1] = STATE(2336), + [sym_concatenation] = STATE(2336), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5709), + [anon_sym_PERCENT] = ACTIONS(5729), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5711), + [anon_sym_POUND] = ACTIONS(5731), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5713), - [anon_sym_DASH] = ACTIONS(5709), - [anon_sym_COLON_DASH] = ACTIONS(5709), + [anon_sym_RBRACE] = ACTIONS(5733), + [anon_sym_DASH] = ACTIONS(5729), + [anon_sym_COLON_DASH] = ACTIONS(5729), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5709), + [anon_sym_EQ] = ACTIONS(5729), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5709), + [anon_sym_COLON_QMARK] = ACTIONS(5729), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5709), + [anon_sym_COLON] = ACTIONS(5729), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5715), + [sym_regex] = ACTIONS(5735), }, - [2313] = { + [2324] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5713), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5733), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2314] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2325] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5701), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5721), + [sym__concat] = ACTIONS(1298), }, - [2315] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5717), + [2326] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5737), [sym_comment] = ACTIONS(41), }, - [2316] = { - [anon_sym_RBRACE] = ACTIONS(5701), + [2327] = { + [anon_sym_RBRACE] = ACTIONS(5721), [sym_comment] = ACTIONS(41), }, - [2317] = { + [2328] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2326), - [sym_concatenation] = STATE(2326), + [aux_sym_expansion_repeat1] = STATE(2337), + [sym_concatenation] = STATE(2337), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5719), + [anon_sym_PERCENT] = ACTIONS(5739), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5721), + [anon_sym_POUND] = ACTIONS(5741), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5723), - [anon_sym_DASH] = ACTIONS(5719), - [anon_sym_COLON_DASH] = ACTIONS(5719), + [anon_sym_RBRACE] = ACTIONS(5743), + [anon_sym_DASH] = ACTIONS(5739), + [anon_sym_COLON_DASH] = ACTIONS(5739), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5719), + [anon_sym_EQ] = ACTIONS(5739), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5719), + [anon_sym_COLON_QMARK] = ACTIONS(5739), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5719), + [anon_sym_COLON] = ACTIONS(5739), [sym__special_character] = ACTIONS(459), }, - [2318] = { + [2329] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5723), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5743), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2319] = { + [2330] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5725), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2320] = { + [2331] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2327), - [sym_concatenation] = STATE(2327), + [aux_sym_expansion_repeat1] = STATE(2338), + [sym_concatenation] = STATE(2338), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5727), + [anon_sym_PERCENT] = ACTIONS(5747), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5729), + [anon_sym_POUND] = ACTIONS(5749), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5725), - [anon_sym_DASH] = ACTIONS(5727), - [anon_sym_COLON_DASH] = ACTIONS(5727), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_DASH] = ACTIONS(5747), + [anon_sym_COLON_DASH] = ACTIONS(5747), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5727), + [anon_sym_EQ] = ACTIONS(5747), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5727), + [anon_sym_COLON_QMARK] = ACTIONS(5747), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5727), + [anon_sym_COLON] = ACTIONS(5747), [sym__special_character] = ACTIONS(459), }, - [2321] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2332] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5725), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5745), + [sym__concat] = ACTIONS(1298), }, - [2322] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5731), + [2333] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5751), [sym_comment] = ACTIONS(41), }, - [2323] = { - [anon_sym_RBRACE] = ACTIONS(5725), + [2334] = { + [anon_sym_RBRACE] = ACTIONS(5745), [sym_comment] = ACTIONS(41), }, - [2324] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2328), - [sym_concatenation] = STATE(2328), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5733), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5735), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5737), - [anon_sym_DASH] = ACTIONS(5733), - [anon_sym_COLON_DASH] = ACTIONS(5733), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5733), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5733), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5733), - [sym__special_character] = ACTIONS(459), - }, - [2325] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5737), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), - }, - [2326] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5739), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), - }, - [2327] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5741), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), - [sym__special_character] = ACTIONS(459), - }, - [2328] = { + [2335] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2339), + [sym_concatenation] = STATE(2339), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5753), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5755), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5743), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5757), + [anon_sym_DASH] = ACTIONS(5753), + [anon_sym_COLON_DASH] = ACTIONS(5753), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(5753), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(5753), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5753), [sym__special_character] = ACTIONS(459), }, - [2329] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5745), - }, - [2330] = { + [2336] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2335), - [sym_concatenation] = STATE(2335), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5747), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5749), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5751), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5747), + [anon_sym_RBRACE] = ACTIONS(5757), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5747), - [anon_sym_EQ] = ACTIONS(5747), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5747), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5753), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5747), - [sym__special_character] = ACTIONS(459), - }, - [2331] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2340), - [sym_concatenation] = STATE(2340), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5755), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5757), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5759), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5755), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5755), - [anon_sym_EQ] = ACTIONS(5755), - [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5755), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5761), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2332] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5763), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - }, - [2333] = { - [anon_sym_RPAREN] = ACTIONS(5763), - [sym_comment] = ACTIONS(41), - }, - [2334] = { + [2337] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2342), - [sym_concatenation] = STATE(2342), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5765), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5767), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5769), - [anon_sym_DASH] = ACTIONS(5765), - [anon_sym_COLON_DASH] = ACTIONS(5765), + [anon_sym_RBRACE] = ACTIONS(5759), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5765), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5765), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5771), }, - [2335] = { + [2338] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5769), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2336] = { + [2339] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2342), - [sym_concatenation] = STATE(2342), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5765), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5767), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5773), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5765), + [anon_sym_RBRACE] = ACTIONS(5763), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5765), - [anon_sym_EQ] = ACTIONS(5765), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5765), + [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5769), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2337] = { + [2340] = { + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5765), + }, + [2341] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), @@ -68729,54 +68751,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expansion_repeat1] = STATE(2346), [sym_concatenation] = STATE(2346), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5775), + [anon_sym_PERCENT] = ACTIONS(5767), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5769), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_SLASH] = ACTIONS(5771), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5775), + [anon_sym_DASH] = ACTIONS(5767), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5775), - [anon_sym_EQ] = ACTIONS(5775), + [anon_sym_COLON_DASH] = ACTIONS(5767), + [anon_sym_EQ] = ACTIONS(5767), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5775), + [anon_sym_COLON_QMARK] = ACTIONS(5767), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5781), + [anon_sym_RBRACE] = ACTIONS(5773), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5775), + [anon_sym_COLON] = ACTIONS(5767), [sym__special_character] = ACTIONS(459), }, - [2338] = { - [sym_command_substitution] = STATE(2347), - [aux_sym__literal_repeat1] = STATE(2348), - [sym_string] = STATE(2347), - [sym_process_substitution] = STATE(2347), - [sym_simple_expansion] = STATE(2347), - [sym_string_expansion] = STATE(2347), - [sym_concatenation] = STATE(2349), - [sym_expansion] = STATE(2347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5783), - [sym_word] = ACTIONS(5785), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5783), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5769), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5785), - [anon_sym_GT_LPAREN] = ACTIONS(943), - }, - [2339] = { + [2342] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), @@ -68786,191 +68784,222 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expansion_repeat1] = STATE(2351), [sym_concatenation] = STATE(2351), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5787), + [anon_sym_PERCENT] = ACTIONS(5775), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5789), + [anon_sym_POUND] = ACTIONS(5777), [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5779), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5791), - [anon_sym_DASH] = ACTIONS(5787), - [anon_sym_COLON_DASH] = ACTIONS(5787), + [anon_sym_DASH] = ACTIONS(5775), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5787), + [anon_sym_COLON_DASH] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5775), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5775), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5787), + [anon_sym_RBRACE] = ACTIONS(5781), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5787), + [anon_sym_COLON] = ACTIONS(5775), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5793), }, - [2340] = { + [2343] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5783), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), + }, + [2344] = { + [anon_sym_RPAREN] = ACTIONS(5783), + [sym_comment] = ACTIONS(41), + }, + [2345] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2353), + [sym_concatenation] = STATE(2353), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5785), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5787), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5791), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5789), + [anon_sym_DASH] = ACTIONS(5785), + [anon_sym_COLON_DASH] = ACTIONS(5785), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(5785), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(5785), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5785), [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5791), }, - [2341] = { + [2346] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2352), - [sym_concatenation] = STATE(2352), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5795), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5797), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5799), - [anon_sym_DASH] = ACTIONS(5795), - [anon_sym_COLON_DASH] = ACTIONS(5795), + [anon_sym_RBRACE] = ACTIONS(5789), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5795), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5795), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5795), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2342] = { + [2347] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2353), + [sym_concatenation] = STATE(2353), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5785), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5787), [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5793), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5799), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(5785), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_COLON_DASH] = ACTIONS(5785), + [anon_sym_EQ] = ACTIONS(5785), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5785), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5789), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5785), [sym__special_character] = ACTIONS(459), }, - [2343] = { + [2348] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2352), - [sym_concatenation] = STATE(2352), + [aux_sym_expansion_repeat1] = STATE(2357), + [sym_concatenation] = STATE(2357), [sym_expansion] = STATE(116), [anon_sym_PERCENT] = ACTIONS(5795), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5797), [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5799), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5799), [anon_sym_DASH] = ACTIONS(5795), - [anon_sym_COLON_DASH] = ACTIONS(5795), [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5795), [anon_sym_EQ] = ACTIONS(5795), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [anon_sym_COLON_QMARK] = ACTIONS(5795), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5801), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), [anon_sym_COLON] = ACTIONS(5795), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5801), }, - [2344] = { - [sym_command_substitution] = STATE(2354), - [aux_sym__literal_repeat1] = STATE(2355), - [sym_string] = STATE(2354), - [sym_process_substitution] = STATE(2354), - [sym_simple_expansion] = STATE(2354), - [sym_string_expansion] = STATE(2354), - [sym_concatenation] = STATE(2356), - [sym_expansion] = STATE(2354), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), + [2349] = { + [sym_command_substitution] = STATE(2358), + [aux_sym__literal_repeat1] = STATE(2359), + [sym_string] = STATE(2358), + [sym_process_substitution] = STATE(2358), + [sym_simple_expansion] = STATE(2358), + [sym_string_expansion] = STATE(2358), + [sym_concatenation] = STATE(2360), + [sym_expansion] = STATE(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(5803), [sym_word] = ACTIONS(5805), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), [sym_ansii_c_string] = ACTIONS(5803), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5799), - [sym__special_character] = ACTIONS(947), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5789), + [sym__special_character] = ACTIONS(949), [sym_number] = ACTIONS(5805), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(945), }, - [2345] = { + [2350] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2358), - [sym_concatenation] = STATE(2358), + [aux_sym_expansion_repeat1] = STATE(2362), + [sym_concatenation] = STATE(2362), [sym_expansion] = STATE(116), [anon_sym_PERCENT] = ACTIONS(5807), [sym_comment] = ACTIONS(3), @@ -68995,564 +69024,590 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__special_character] = ACTIONS(459), [sym_regex] = ACTIONS(5813), }, - [2346] = { + [2351] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), [anon_sym_RBRACE] = ACTIONS(5811), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2347] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5799), - [sym__concat] = ACTIONS(1294), - }, - [2348] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5815), - [sym_comment] = ACTIONS(41), - }, - [2349] = { - [anon_sym_RBRACE] = ACTIONS(5799), - [sym_comment] = ACTIONS(41), + [2352] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(2363), + [sym_concatenation] = STATE(2363), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5815), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5817), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_COLON_DASH] = ACTIONS(5815), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5815), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5815), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5815), + [sym__special_character] = ACTIONS(459), }, - [2350] = { + [2353] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2359), - [sym_concatenation] = STATE(2359), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5817), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5819), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5821), - [anon_sym_DASH] = ACTIONS(5817), - [anon_sym_COLON_DASH] = ACTIONS(5817), + [anon_sym_RBRACE] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5817), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5817), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5817), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2351] = { + [2354] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2363), + [sym_concatenation] = STATE(2363), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5815), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5817), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5821), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5819), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_COLON_DASH] = ACTIONS(5815), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(5815), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(5815), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5815), [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5821), }, - [2352] = { + [2355] = { + [sym_command_substitution] = STATE(2365), + [aux_sym__literal_repeat1] = STATE(2366), + [sym_string] = STATE(2365), + [sym_process_substitution] = STATE(2365), + [sym_simple_expansion] = STATE(2365), + [sym_string_expansion] = STATE(2365), + [sym_concatenation] = STATE(2367), + [sym_expansion] = STATE(2365), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5823), + [sym_word] = ACTIONS(5825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5823), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5819), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5825), + [anon_sym_GT_LPAREN] = ACTIONS(945), + }, + [2356] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2369), + [sym_concatenation] = STATE(2369), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5827), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5829), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5823), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5831), + [anon_sym_DASH] = ACTIONS(5827), + [anon_sym_COLON_DASH] = ACTIONS(5827), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(5827), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(5827), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5827), [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5833), }, - [2353] = { + [2357] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2360), - [sym_concatenation] = STATE(2360), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5825), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5827), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5823), - [anon_sym_DASH] = ACTIONS(5825), - [anon_sym_COLON_DASH] = ACTIONS(5825), + [anon_sym_RBRACE] = ACTIONS(5831), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5825), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5825), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5825), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2354] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2358] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5823), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5819), + [sym__concat] = ACTIONS(1298), }, - [2355] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5829), + [2359] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5835), [sym_comment] = ACTIONS(41), }, - [2356] = { - [anon_sym_RBRACE] = ACTIONS(5823), + [2360] = { + [anon_sym_RBRACE] = ACTIONS(5819), [sym_comment] = ACTIONS(41), }, - [2357] = { + [2361] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2361), - [sym_concatenation] = STATE(2361), + [aux_sym_expansion_repeat1] = STATE(2370), + [sym_concatenation] = STATE(2370), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5831), + [anon_sym_PERCENT] = ACTIONS(5837), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5833), + [anon_sym_POUND] = ACTIONS(5839), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5835), - [anon_sym_DASH] = ACTIONS(5831), - [anon_sym_COLON_DASH] = ACTIONS(5831), + [anon_sym_RBRACE] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5837), + [anon_sym_COLON_DASH] = ACTIONS(5837), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5831), + [anon_sym_EQ] = ACTIONS(5837), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5831), + [anon_sym_COLON_QMARK] = ACTIONS(5837), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5831), + [anon_sym_COLON] = ACTIONS(5837), [sym__special_character] = ACTIONS(459), }, - [2358] = { + [2362] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5835), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2359] = { + [2363] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5837), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2360] = { + [2364] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2371), + [sym_concatenation] = STATE(2371), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5845), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5847), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5839), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_COLON_DASH] = ACTIONS(5845), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(5845), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(5845), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5845), [sym__special_character] = ACTIONS(459), }, - [2361] = { + [2365] = { + [aux_sym_concatenation_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5843), + [sym__concat] = ACTIONS(1298), + }, + [2366] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5849), + [sym_comment] = ACTIONS(41), + }, + [2367] = { + [anon_sym_RBRACE] = ACTIONS(5843), + [sym_comment] = ACTIONS(41), + }, + [2368] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2372), + [sym_concatenation] = STATE(2372), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5851), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5853), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5841), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5855), + [anon_sym_DASH] = ACTIONS(5851), + [anon_sym_COLON_DASH] = ACTIONS(5851), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(5851), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(5851), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5851), [sym__special_character] = ACTIONS(459), }, - [2362] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5843), - }, - [2363] = { + [2369] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2368), - [sym_concatenation] = STATE(2368), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5845), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5847), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5849), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5845), + [anon_sym_RBRACE] = ACTIONS(5855), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5845), - [anon_sym_EQ] = ACTIONS(5845), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5845), + [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5851), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5845), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2364] = { + [2370] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2373), - [sym_concatenation] = STATE(2373), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5853), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5855), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5857), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5853), + [anon_sym_RBRACE] = ACTIONS(5857), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5853), - [anon_sym_EQ] = ACTIONS(5853), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5853), + [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5859), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2365] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5861), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - }, - [2366] = { - [anon_sym_RPAREN] = ACTIONS(5861), - [sym_comment] = ACTIONS(41), - }, - [2367] = { + [2371] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2375), - [sym_concatenation] = STATE(2375), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5863), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5865), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5867), - [anon_sym_DASH] = ACTIONS(5863), - [anon_sym_COLON_DASH] = ACTIONS(5863), + [anon_sym_RBRACE] = ACTIONS(5859), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5863), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5863), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5869), }, - [2368] = { + [2372] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5867), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5861), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2369] = { + [2373] = { + [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5863), + }, + [2374] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2375), - [sym_concatenation] = STATE(2375), + [aux_sym_expansion_repeat1] = STATE(2379), + [sym_concatenation] = STATE(2379), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5863), + [anon_sym_PERCENT] = ACTIONS(5865), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5865), + [anon_sym_POUND] = ACTIONS(5867), [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5871), + [anon_sym_SLASH] = ACTIONS(5869), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5865), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5863), - [anon_sym_EQ] = ACTIONS(5863), + [anon_sym_COLON_DASH] = ACTIONS(5865), + [anon_sym_EQ] = ACTIONS(5865), [anon_sym_GT_LPAREN] = ACTIONS(447), [sym_number] = ACTIONS(449), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5863), + [anon_sym_COLON_QMARK] = ACTIONS(5865), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5867), + [anon_sym_RBRACE] = ACTIONS(5871), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5863), + [anon_sym_COLON] = ACTIONS(5865), [sym__special_character] = ACTIONS(459), }, - [2370] = { + [2375] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2379), - [sym_concatenation] = STATE(2379), + [aux_sym_expansion_repeat1] = STATE(2384), + [sym_concatenation] = STATE(2384), [sym_expansion] = STATE(116), [anon_sym_PERCENT] = ACTIONS(5873), [sym_comment] = ACTIONS(3), @@ -69577,120 +69632,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(5873), [sym__special_character] = ACTIONS(459), }, - [2371] = { - [sym_command_substitution] = STATE(2380), - [aux_sym__literal_repeat1] = STATE(2381), - [sym_string] = STATE(2380), - [sym_process_substitution] = STATE(2380), - [sym_simple_expansion] = STATE(2380), - [sym_string_expansion] = STATE(2380), - [sym_concatenation] = STATE(2382), - [sym_expansion] = STATE(2380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5881), - [sym_word] = ACTIONS(5883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5881), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5867), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5883), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2376] = { + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(331), + [sym_file_descriptor] = ACTIONS(333), + [sym_variable_name] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_BQUOTE] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(331), + [sym_number] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5881), + [anon_sym_DQUOTE] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_word] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [sym__special_character] = ACTIONS(333), }, - [2372] = { + [2377] = { + [anon_sym_RPAREN] = ACTIONS(5881), + [sym_comment] = ACTIONS(41), + }, + [2378] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2384), - [sym_concatenation] = STATE(2384), + [aux_sym_expansion_repeat1] = STATE(2386), + [sym_concatenation] = STATE(2386), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5885), + [anon_sym_PERCENT] = ACTIONS(5883), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5887), + [anon_sym_POUND] = ACTIONS(5885), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5889), - [anon_sym_DASH] = ACTIONS(5885), - [anon_sym_COLON_DASH] = ACTIONS(5885), + [anon_sym_RBRACE] = ACTIONS(5887), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_COLON_DASH] = ACTIONS(5883), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5885), + [anon_sym_EQ] = ACTIONS(5883), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5885), + [anon_sym_COLON_QMARK] = ACTIONS(5883), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5885), + [anon_sym_COLON] = ACTIONS(5883), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5891), + [sym_regex] = ACTIONS(5889), }, - [2373] = { + [2379] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5889), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5887), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2374] = { + [2380] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(2386), + [sym_concatenation] = STATE(2386), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5883), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5891), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(5883), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [sym_number] = ACTIONS(449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [anon_sym_COLON_QMARK] = ACTIONS(5883), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5887), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5883), + [sym__special_character] = ACTIONS(459), + }, + [2381] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2385), - [sym_concatenation] = STATE(2385), + [aux_sym_expansion_repeat1] = STATE(2390), + [sym_concatenation] = STATE(2390), [sym_expansion] = STATE(116), [anon_sym_PERCENT] = ACTIONS(5893), [sym_comment] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5895), [sym_raw_string] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(5897), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5897), [anon_sym_DASH] = ACTIONS(5893), - [anon_sym_COLON_DASH] = ACTIONS(5893), [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_COLON_DASH] = ACTIONS(5893), [anon_sym_EQ] = ACTIONS(5893), [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [anon_sym_COLON_QMARK] = ACTIONS(5893), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(5899), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), @@ -69698,512 +69792,633 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(5893), [sym__special_character] = ACTIONS(459), }, - [2375] = { + [2382] = { + [sym_command_substitution] = STATE(2391), + [aux_sym__literal_repeat1] = STATE(2392), + [sym_string] = STATE(2391), + [sym_process_substitution] = STATE(2391), + [sym_simple_expansion] = STATE(2391), + [sym_string_expansion] = STATE(2391), + [sym_concatenation] = STATE(2393), + [sym_expansion] = STATE(2391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5901), + [sym_word] = ACTIONS(5903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5901), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5887), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5903), + [anon_sym_GT_LPAREN] = ACTIONS(945), + }, + [2383] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2395), + [sym_concatenation] = STATE(2395), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5905), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5907), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5897), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(5905), + [anon_sym_COLON_DASH] = ACTIONS(5905), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(5905), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(5905), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5905), [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5911), }, - [2376] = { + [2384] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2385), - [sym_concatenation] = STATE(2385), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5895), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5897), - [anon_sym_DASH] = ACTIONS(5893), - [anon_sym_COLON_DASH] = ACTIONS(5893), + [anon_sym_RBRACE] = ACTIONS(5909), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5893), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5893), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5899), }, - [2377] = { - [sym_command_substitution] = STATE(2387), - [aux_sym__literal_repeat1] = STATE(2388), - [sym_string] = STATE(2387), - [sym_process_substitution] = STATE(2387), - [sym_simple_expansion] = STATE(2387), - [sym_string_expansion] = STATE(2387), - [sym_concatenation] = STATE(2389), - [sym_expansion] = STATE(2387), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5901), - [sym_word] = ACTIONS(5903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(941), - [sym_ansii_c_string] = ACTIONS(5901), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(5897), - [sym__special_character] = ACTIONS(947), - [sym_number] = ACTIONS(5903), - [anon_sym_GT_LPAREN] = ACTIONS(943), + [2385] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(2396), + [sym_concatenation] = STATE(2396), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5913), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5915), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_COLON_DASH] = ACTIONS(5913), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5913), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5913), + [sym__special_character] = ACTIONS(459), }, - [2378] = { + [2386] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2391), - [sym_concatenation] = STATE(2391), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5905), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5907), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5909), - [anon_sym_DASH] = ACTIONS(5905), - [anon_sym_COLON_DASH] = ACTIONS(5905), + [anon_sym_RBRACE] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5905), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5905), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5905), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5911), }, - [2379] = { + [2387] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(2396), + [sym_concatenation] = STATE(2396), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(5913), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(5915), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5909), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_COLON_DASH] = ACTIONS(5913), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(5913), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(5913), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(5913), [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5919), }, - [2380] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2388] = { + [sym_command_substitution] = STATE(2398), + [aux_sym__literal_repeat1] = STATE(2399), + [sym_string] = STATE(2398), + [sym_process_substitution] = STATE(2398), + [sym_simple_expansion] = STATE(2398), + [sym_string_expansion] = STATE(2398), + [sym_concatenation] = STATE(2400), + [sym_expansion] = STATE(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(5921), + [sym_word] = ACTIONS(5923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [sym_ansii_c_string] = ACTIONS(5921), + [anon_sym_LT_LPAREN] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(5917), + [sym__special_character] = ACTIONS(949), + [sym_number] = ACTIONS(5923), + [anon_sym_GT_LPAREN] = ACTIONS(945), + }, + [2389] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(2402), + [sym_concatenation] = STATE(2402), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(5925), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5927), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(5925), + [anon_sym_COLON_DASH] = ACTIONS(5925), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(5925), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(5925), + [sym__special_character] = ACTIONS(459), + [sym_regex] = ACTIONS(5931), + }, + [2390] = { + [sym_command_substitution] = STATE(116), + [aux_sym__literal_repeat1] = STATE(119), + [sym_string] = STATE(116), + [sym_process_substitution] = STATE(116), + [sym_simple_expansion] = STATE(116), + [sym_string_expansion] = STATE(116), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), + [sym_expansion] = STATE(116), + [anon_sym_PERCENT] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(919), + [sym_raw_string] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(5929), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_GT_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), + [sym_number] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_COLON_QMARK] = ACTIONS(917), + [sym_word] = ACTIONS(449), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), + [anon_sym_LT_LPAREN] = ACTIONS(447), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(917), + [sym__special_character] = ACTIONS(459), + }, + [2391] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5897), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5917), + [sym__concat] = ACTIONS(1298), }, - [2381] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5913), + [2392] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5933), [sym_comment] = ACTIONS(41), }, - [2382] = { - [anon_sym_RBRACE] = ACTIONS(5897), + [2393] = { + [anon_sym_RBRACE] = ACTIONS(5917), [sym_comment] = ACTIONS(41), }, - [2383] = { + [2394] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2392), - [sym_concatenation] = STATE(2392), + [aux_sym_expansion_repeat1] = STATE(2403), + [sym_concatenation] = STATE(2403), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5915), + [anon_sym_PERCENT] = ACTIONS(5935), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5917), + [anon_sym_POUND] = ACTIONS(5937), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5919), - [anon_sym_DASH] = ACTIONS(5915), - [anon_sym_COLON_DASH] = ACTIONS(5915), + [anon_sym_RBRACE] = ACTIONS(5939), + [anon_sym_DASH] = ACTIONS(5935), + [anon_sym_COLON_DASH] = ACTIONS(5935), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5915), + [anon_sym_EQ] = ACTIONS(5935), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5915), + [anon_sym_COLON_QMARK] = ACTIONS(5935), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5935), [sym__special_character] = ACTIONS(459), }, - [2384] = { + [2395] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5919), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5939), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2385] = { + [2396] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5921), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2386] = { + [2397] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2393), - [sym_concatenation] = STATE(2393), + [aux_sym_expansion_repeat1] = STATE(2404), + [sym_concatenation] = STATE(2404), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5923), + [anon_sym_PERCENT] = ACTIONS(5943), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5925), + [anon_sym_POUND] = ACTIONS(5945), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5921), - [anon_sym_DASH] = ACTIONS(5923), - [anon_sym_COLON_DASH] = ACTIONS(5923), + [anon_sym_RBRACE] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5943), + [anon_sym_COLON_DASH] = ACTIONS(5943), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5923), + [anon_sym_EQ] = ACTIONS(5943), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5923), + [anon_sym_COLON_QMARK] = ACTIONS(5943), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_COLON] = ACTIONS(5943), [sym__special_character] = ACTIONS(459), }, - [2387] = { - [aux_sym_concatenation_repeat1] = STATE(1100), + [2398] = { + [aux_sym_concatenation_repeat1] = STATE(1106), [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5921), - [sym__concat] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(5941), + [sym__concat] = ACTIONS(1298), }, - [2388] = { - [aux_sym__literal_repeat1] = STATE(1135), - [sym__special_character] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(5927), + [2399] = { + [aux_sym__literal_repeat1] = STATE(1141), + [sym__special_character] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(5947), [sym_comment] = ACTIONS(41), }, - [2389] = { - [anon_sym_RBRACE] = ACTIONS(5921), + [2400] = { + [anon_sym_RBRACE] = ACTIONS(5941), [sym_comment] = ACTIONS(41), }, - [2390] = { + [2401] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2394), - [sym_concatenation] = STATE(2394), + [aux_sym_expansion_repeat1] = STATE(2405), + [sym_concatenation] = STATE(2405), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5929), + [anon_sym_PERCENT] = ACTIONS(5949), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5931), + [anon_sym_POUND] = ACTIONS(5951), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5929), - [anon_sym_COLON_DASH] = ACTIONS(5929), + [anon_sym_RBRACE] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5949), + [anon_sym_COLON_DASH] = ACTIONS(5949), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5929), + [anon_sym_EQ] = ACTIONS(5949), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5929), + [anon_sym_COLON_QMARK] = ACTIONS(5949), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5929), + [anon_sym_COLON] = ACTIONS(5949), [sym__special_character] = ACTIONS(459), }, - [2391] = { + [2402] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2392] = { + [2403] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5935), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5955), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2393] = { + [2404] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5937), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5957), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2394] = { + [2405] = { [sym_command_substitution] = STATE(116), [aux_sym__literal_repeat1] = STATE(119), [sym_string] = STATE(116), [sym_process_substitution] = STATE(116), [sym_simple_expansion] = STATE(116), [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), + [aux_sym_expansion_repeat1] = STATE(192), + [sym_concatenation] = STATE(192), [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(917), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(919), [sym_raw_string] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5939), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(5959), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_COLON_DASH] = ACTIONS(917), [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(917), [anon_sym_GT_LPAREN] = ACTIONS(447), [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), [sym_number] = ACTIONS(449), [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(915), + [anon_sym_COLON_QMARK] = ACTIONS(917), [sym_word] = ACTIONS(449), [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), [anon_sym_LT_LPAREN] = ACTIONS(447), [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(917), [sym__special_character] = ACTIONS(459), }, - [2395] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1367), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2406] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1374), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -70245,38 +70460,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2396] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1368), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2407] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1375), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(183), [anon_sym_DOLLAR] = ACTIONS(69), @@ -70318,38 +70533,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2397] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1369), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2408] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1376), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -70391,37 +70606,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2398] = { - [sym_subscript] = STATE(1371), - [anon_sym__] = ACTIONS(5941), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5943), - [anon_sym_BANG] = ACTIONS(5943), - [sym_variable_name] = ACTIONS(5945), - [anon_sym_DOLLAR] = ACTIONS(5947), - [anon_sym_DASH] = ACTIONS(5947), - [anon_sym_AT] = ACTIONS(5949), - [anon_sym_0] = ACTIONS(5941), - [anon_sym_STAR] = ACTIONS(5949), - [aux_sym__simple_variable_name_token1] = ACTIONS(5941), - [anon_sym_QMARK] = ACTIONS(5949), + [2409] = { + [sym_subscript] = STATE(1378), + [anon_sym__] = ACTIONS(5961), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(5963), + [anon_sym_BANG] = ACTIONS(5963), + [sym_variable_name] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5967), + [anon_sym_DASH] = ACTIONS(5967), + [anon_sym_AT] = ACTIONS(5969), + [anon_sym_0] = ACTIONS(5961), + [anon_sym_STAR] = ACTIONS(5969), + [aux_sym__simple_variable_name_token1] = ACTIONS(5961), + [anon_sym_QMARK] = ACTIONS(5969), }, - [2399] = { - [sym_word] = ACTIONS(5951), + [2410] = { + [sym_word] = ACTIONS(5971), [sym_comment] = ACTIONS(41), }, - [2400] = { + [2411] = { [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(1377), - [sym_postfix_expression] = STATE(1377), + [sym_unary_expression] = STATE(1384), + [sym_postfix_expression] = STATE(1384), [sym_string] = STATE(71), [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(1377), - [sym_binary_expression] = STATE(1377), - [sym_concatenation] = STATE(1377), + [sym__expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_concatenation] = STATE(1384), [sym_expansion] = STATE(71), [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1384), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), @@ -70441,54 +70656,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), }, - [2401] = { - [anon_sym_PLUS_EQ] = ACTIONS(5953), + [2412] = { + [anon_sym_PLUS_EQ] = ACTIONS(5973), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(5953), + [anon_sym_EQ] = ACTIONS(5973), }, - [2402] = { - [anon_sym_AMP_GT_GT] = ACTIONS(5955), + [2413] = { + [anon_sym_AMP_GT_GT] = ACTIONS(5975), [sym_comment] = ACTIONS(41), - [anon_sym_GT_AMP] = ACTIONS(5955), - [anon_sym_LT] = ACTIONS(5957), - [anon_sym_LT_AMP] = ACTIONS(5955), - [anon_sym_GT_GT] = ACTIONS(5955), - [anon_sym_GT] = ACTIONS(5957), - [anon_sym_AMP_GT] = ACTIONS(5957), + [anon_sym_GT_AMP] = ACTIONS(5975), + [anon_sym_LT] = ACTIONS(5977), + [anon_sym_LT_AMP] = ACTIONS(5975), + [anon_sym_GT_GT] = ACTIONS(5975), + [anon_sym_GT] = ACTIONS(5977), + [anon_sym_AMP_GT] = ACTIONS(5977), }, - [2403] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1382), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1383), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2414] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1389), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1390), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -70530,37 +70745,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2404] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym__terminated_statement] = STATE(1384), + [2415] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym__terminated_statement] = STATE(1391), [sym_if_statement] = STATE(65), [sym_function_definition] = STATE(65), [sym_negated_command] = STATE(65), [sym_test_command] = STATE(65), [sym_variable_assignment] = STATE(66), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), [sym_redirected_statement] = STATE(65), [sym_for_statement] = STATE(65), [sym_compound_statement] = STATE(65), [sym_subshell] = STATE(65), [sym_declaration_command] = STATE(65), [sym_unset_command] = STATE(65), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym_c_style_for_statement] = STATE(65), [sym_while_statement] = STATE(65), [sym_case_statement] = STATE(65), [sym_pipeline] = STATE(65), [sym_list] = STATE(65), [sym_command] = STATE(65), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -70602,20 +70817,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2405] = { - [aux_sym__literal_repeat1] = STATE(409), - [sym_unary_expression] = STATE(1385), - [sym_postfix_expression] = STATE(1385), - [sym_string] = STATE(407), - [sym_process_substitution] = STATE(407), - [sym__expression] = STATE(1385), - [sym_binary_expression] = STATE(1385), - [sym_concatenation] = STATE(1385), - [sym_expansion] = STATE(407), - [sym_command_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(1385), - [sym_simple_expansion] = STATE(407), - [sym_string_expansion] = STATE(407), + [2416] = { + [aux_sym__literal_repeat1] = STATE(410), + [sym_unary_expression] = STATE(1392), + [sym_postfix_expression] = STATE(1392), + [sym_string] = STATE(408), + [sym_process_substitution] = STATE(408), + [sym__expression] = STATE(1392), + [sym_binary_expression] = STATE(1392), + [sym_concatenation] = STATE(1392), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_parenthesized_expression] = STATE(1392), + [sym_simple_expansion] = STATE(408), + [sym_string_expansion] = STATE(408), [anon_sym_LPAREN] = ACTIONS(283), [sym_comment] = ACTIONS(41), [sym_raw_string] = ACTIONS(285), @@ -70633,18 +70848,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(285), [sym__special_character] = ACTIONS(305), }, - [2406] = { + [2417] = { [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(1386), - [sym_postfix_expression] = STATE(1386), + [sym_unary_expression] = STATE(1393), + [sym_postfix_expression] = STATE(1393), [sym_string] = STATE(71), [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(1386), - [sym_binary_expression] = STATE(1386), - [sym_concatenation] = STATE(1386), + [sym__expression] = STATE(1393), + [sym_binary_expression] = STATE(1393), + [sym_concatenation] = STATE(1393), [sym_expansion] = STATE(71), [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(1386), + [sym_parenthesized_expression] = STATE(1393), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), @@ -70664,50 +70879,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), }, - [2407] = { - [anon_sym_PLUS_EQ] = ACTIONS(5953), + [2418] = { + [anon_sym_PLUS_EQ] = ACTIONS(5973), [sym_comment] = ACTIONS(41), - [anon_sym_EQ] = ACTIONS(5953), + [anon_sym_EQ] = ACTIONS(5973), }, - [2408] = { - [sym_subscript] = STATE(1391), - [anon_sym__] = ACTIONS(5959), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(5961), - [anon_sym_DOLLAR] = ACTIONS(5963), - [anon_sym_DASH] = ACTIONS(5963), - [anon_sym_AT] = ACTIONS(5965), - [anon_sym_0] = ACTIONS(5959), - [anon_sym_STAR] = ACTIONS(5965), - [aux_sym__simple_variable_name_token1] = ACTIONS(5959), - [anon_sym_QMARK] = ACTIONS(5965), + [2419] = { + [sym_subscript] = STATE(1398), + [anon_sym__] = ACTIONS(5979), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(5981), + [anon_sym_DOLLAR] = ACTIONS(5983), + [anon_sym_DASH] = ACTIONS(5983), + [anon_sym_AT] = ACTIONS(5985), + [anon_sym_0] = ACTIONS(5979), + [anon_sym_STAR] = ACTIONS(5985), + [aux_sym__simple_variable_name_token1] = ACTIONS(5979), + [anon_sym_QMARK] = ACTIONS(5985), }, - [2409] = { + [2420] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(5967), + [anon_sym_EQ] = ACTIONS(5987), }, - [2410] = { - [anon_sym_RPAREN] = ACTIONS(5969), + [2421] = { + [anon_sym_RPAREN] = ACTIONS(5989), [sym_comment] = ACTIONS(41), }, - [2411] = { - [anon_sym_then] = ACTIONS(5971), + [2422] = { + [anon_sym_then] = ACTIONS(5991), [sym_comment] = ACTIONS(41), }, - [2412] = { + [2423] = { [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(1398), - [sym_postfix_expression] = STATE(1398), + [sym_unary_expression] = STATE(1405), + [sym_postfix_expression] = STATE(1405), [sym_string] = STATE(71), [aux_sym__literal_repeat1] = STATE(73), [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(1398), + [sym_parenthesized_expression] = STATE(1405), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(1398), - [sym_binary_expression] = STATE(1398), - [sym_concatenation] = STATE(1398), + [sym__expression] = STATE(1405), + [sym_binary_expression] = STATE(1405), + [sym_concatenation] = STATE(1405), [sym_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), [sym_comment] = ACTIONS(41), @@ -70726,86 +70941,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), }, - [2413] = { - [sym_command_substitution] = STATE(1400), - [aux_sym__literal_repeat1] = STATE(1401), - [sym_string] = STATE(1400), - [sym_process_substitution] = STATE(1400), - [sym_simple_expansion] = STATE(1400), - [sym_string_expansion] = STATE(1400), - [sym_concatenation] = STATE(1402), - [sym_expansion] = STATE(1400), + [2424] = { + [sym_command_substitution] = STATE(1407), + [aux_sym__literal_repeat1] = STATE(1408), + [sym_string] = STATE(1407), + [sym_process_substitution] = STATE(1407), + [sym_simple_expansion] = STATE(1407), + [sym_string_expansion] = STATE(1407), + [sym_concatenation] = STATE(1409), + [sym_expansion] = STATE(1407), [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), [anon_sym_DQUOTE] = ACTIONS(301), [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5973), - [sym_word] = ACTIONS(5975), + [sym_raw_string] = ACTIONS(5993), + [sym_word] = ACTIONS(5995), [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), [anon_sym_DOLLAR] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(5973), + [sym_ansii_c_string] = ACTIONS(5993), [anon_sym_LT_LPAREN] = ACTIONS(295), [anon_sym_BQUOTE] = ACTIONS(293), [sym__special_character] = ACTIONS(581), - [sym_number] = ACTIONS(5975), + [sym_number] = ACTIONS(5995), [anon_sym_GT_LPAREN] = ACTIONS(295), }, - [2414] = { - [anon_sym_SEMI_SEMI] = ACTIONS(5977), + [2425] = { + [anon_sym_SEMI_SEMI] = ACTIONS(5997), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(5979), - [anon_sym_SEMI] = ACTIONS(5977), - [anon_sym_in] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5977), + [anon_sym_LF] = ACTIONS(5999), + [anon_sym_SEMI] = ACTIONS(5997), + [anon_sym_in] = ACTIONS(6001), + [anon_sym_AMP] = ACTIONS(5997), }, - [2415] = { + [2426] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(5983), + [anon_sym_EQ] = ACTIONS(6003), }, - [2416] = { - [anon_sym_RPAREN] = ACTIONS(5985), + [2427] = { + [anon_sym_RPAREN] = ACTIONS(6005), [sym_comment] = ACTIONS(41), }, - [2417] = { + [2428] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(5987), - [anon_sym_SEMI] = ACTIONS(5989), - [anon_sym_SEMI_SEMI] = ACTIONS(5989), - [anon_sym_AMP] = ACTIONS(5989), + [anon_sym_LF] = ACTIONS(6007), + [anon_sym_SEMI] = ACTIONS(6009), + [anon_sym_SEMI_SEMI] = ACTIONS(6009), + [anon_sym_AMP] = ACTIONS(6009), }, - [2418] = { + [2429] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(5991), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_SEMI_SEMI] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5993), + [anon_sym_LF] = ACTIONS(6011), + [anon_sym_SEMI] = ACTIONS(6013), + [anon_sym_SEMI_SEMI] = ACTIONS(6013), + [anon_sym_AMP] = ACTIONS(6013), }, - [2419] = { + [2430] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(5995), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_SEMI_SEMI] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), + [anon_sym_LF] = ACTIONS(6015), + [anon_sym_SEMI] = ACTIONS(6017), + [anon_sym_SEMI_SEMI] = ACTIONS(6017), + [anon_sym_AMP] = ACTIONS(6017), }, - [2420] = { + [2431] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(5999), - [anon_sym_SEMI] = ACTIONS(6001), - [anon_sym_SEMI_SEMI] = ACTIONS(6001), - [anon_sym_AMP] = ACTIONS(6001), + [anon_sym_LF] = ACTIONS(6019), + [anon_sym_SEMI] = ACTIONS(6021), + [anon_sym_SEMI_SEMI] = ACTIONS(6021), + [anon_sym_AMP] = ACTIONS(6021), }, - [2421] = { + [2432] = { [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(2425), - [sym_postfix_expression] = STATE(2425), + [sym_unary_expression] = STATE(2436), + [sym_postfix_expression] = STATE(2436), [sym_string] = STATE(71), [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(2425), - [sym_binary_expression] = STATE(2425), - [sym_concatenation] = STATE(2425), + [sym__expression] = STATE(2436), + [sym_binary_expression] = STATE(2436), + [sym_concatenation] = STATE(2436), [sym_expansion] = STATE(71), [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(2425), + [sym_parenthesized_expression] = STATE(2436), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), @@ -70818,7 +71033,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(245), [sym_number] = ACTIONS(247), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6003), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6023), [anon_sym_DQUOTE] = ACTIONS(251), [sym_word] = ACTIONS(247), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), @@ -70826,91 +71041,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), }, - [2422] = { - [sym_command_substitution] = STATE(482), - [aux_sym__literal_repeat1] = STATE(484), - [sym_string] = STATE(482), - [sym_process_substitution] = STATE(482), - [aux_sym_for_statement_repeat1] = STATE(503), - [sym_simple_expansion] = STATE(482), - [sym_string_expansion] = STATE(482), - [sym_concatenation] = STATE(503), - [sym_expansion] = STATE(482), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1104), - [anon_sym_LF] = ACTIONS(6005), - [anon_sym_SEMI] = ACTIONS(6007), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_BQUOTE] = ACTIONS(1408), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym_word] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1416), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1104), - [sym__special_character] = ACTIONS(1418), - [anon_sym_SEMI_SEMI] = ACTIONS(6007), - [anon_sym_AMP] = ACTIONS(6007), + [2433] = { + [sym_command_substitution] = STATE(483), + [aux_sym__literal_repeat1] = STATE(485), + [sym_string] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_for_statement_repeat1] = STATE(504), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_concatenation] = STATE(504), + [sym_expansion] = STATE(483), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(6025), + [anon_sym_SEMI] = ACTIONS(6027), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_GT_LPAREN] = ACTIONS(1414), + [sym_number] = ACTIONS(1108), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_word] = ACTIONS(1108), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1420), + [anon_sym_LT_LPAREN] = ACTIONS(1414), + [sym_ansii_c_string] = ACTIONS(1108), + [sym__special_character] = ACTIONS(1422), + [anon_sym_SEMI_SEMI] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), }, - [2423] = { - [aux_sym__literal_repeat1] = STATE(271), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(1450), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), - [sym_command_substitution] = STATE(269), - [sym_case_item] = STATE(312), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(312), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), + [2434] = { + [aux_sym__literal_repeat1] = STATE(272), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(1457), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_case_item] = STATE(313), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(313), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1344), [anon_sym_DOLLAR] = ACTIONS(239), [anon_sym_BQUOTE] = ACTIONS(243), [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1342), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [sym__special_character] = ACTIONS(255), }, - [2424] = { - [aux_sym__literal_repeat1] = STATE(271), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(1451), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), - [sym_command_substitution] = STATE(269), - [sym_case_item] = STATE(312), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(312), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), + [2435] = { + [aux_sym__literal_repeat1] = STATE(272), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(1458), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_case_item] = STATE(313), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(313), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1344), [anon_sym_DOLLAR] = ACTIONS(239), [anon_sym_BQUOTE] = ACTIONS(243), [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1342), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [sym__special_character] = ACTIONS(255), }, - [2425] = { + [2436] = { [anon_sym_PLUS_EQ] = ACTIONS(541), [anon_sym_PLUS_PLUS] = ACTIONS(543), [anon_sym_DASH] = ACTIONS(545), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6009), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6029), [anon_sym_PIPE_PIPE] = ACTIONS(541), [anon_sym_LT] = ACTIONS(545), [anon_sym_EQ_TILDE] = ACTIONS(547), @@ -70927,18 +71142,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(545), [anon_sym_AMP_AMP] = ACTIONS(541), }, - [2426] = { + [2437] = { [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(2429), - [sym_postfix_expression] = STATE(2429), + [sym_unary_expression] = STATE(2440), + [sym_postfix_expression] = STATE(2440), [sym_string] = STATE(71), [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(2429), - [sym_binary_expression] = STATE(2429), - [sym_concatenation] = STATE(2429), + [sym__expression] = STATE(2440), + [sym_binary_expression] = STATE(2440), + [sym_concatenation] = STATE(2440), [sym_expansion] = STATE(71), [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(2429), + [sym_parenthesized_expression] = STATE(2440), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), @@ -70951,7 +71166,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(245), [sym_number] = ACTIONS(247), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6009), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6029), [anon_sym_DQUOTE] = ACTIONS(251), [sym_word] = ACTIONS(247), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), @@ -70959,63 +71174,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), }, - [2427] = { - [aux_sym__literal_repeat1] = STATE(271), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(1454), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), - [sym_command_substitution] = STATE(269), - [sym_case_item] = STATE(312), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(312), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), + [2438] = { + [aux_sym__literal_repeat1] = STATE(272), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(1461), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_case_item] = STATE(313), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(313), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1344), [anon_sym_DOLLAR] = ACTIONS(239), [anon_sym_BQUOTE] = ACTIONS(243), [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1342), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [sym__special_character] = ACTIONS(255), }, - [2428] = { - [aux_sym__literal_repeat1] = STATE(271), - [sym_string] = STATE(269), - [sym_process_substitution] = STATE(269), - [sym_last_case_item] = STATE(1455), - [sym_concatenation] = STATE(274), - [sym_expansion] = STATE(269), - [sym_command_substitution] = STATE(269), - [sym_case_item] = STATE(312), - [sym_simple_expansion] = STATE(269), - [sym_string_expansion] = STATE(269), - [aux_sym_case_statement_repeat1] = STATE(312), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1340), + [2439] = { + [aux_sym__literal_repeat1] = STATE(272), + [sym_string] = STATE(270), + [sym_process_substitution] = STATE(270), + [sym_last_case_item] = STATE(1462), + [sym_concatenation] = STATE(275), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_case_item] = STATE(313), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [aux_sym_case_statement_repeat1] = STATE(313), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1344), [anon_sym_DOLLAR] = ACTIONS(239), [anon_sym_BQUOTE] = ACTIONS(243), [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1342), + [sym_word] = ACTIONS(1346), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1340), + [sym_ansii_c_string] = ACTIONS(1344), [sym__special_character] = ACTIONS(255), }, - [2429] = { + [2440] = { [anon_sym_PLUS_EQ] = ACTIONS(541), [anon_sym_PLUS_PLUS] = ACTIONS(543), [anon_sym_DASH] = ACTIONS(545), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6011), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6031), [anon_sym_PIPE_PIPE] = ACTIONS(541), [anon_sym_LT] = ACTIONS(545), [anon_sym_EQ_TILDE] = ACTIONS(547), @@ -71032,18 +71247,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(545), [anon_sym_AMP_AMP] = ACTIONS(541), }, - [2430] = { + [2441] = { [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(2431), - [sym_postfix_expression] = STATE(2431), + [sym_unary_expression] = STATE(2442), + [sym_postfix_expression] = STATE(2442), [sym_string] = STATE(71), [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(2431), - [sym_binary_expression] = STATE(2431), - [sym_concatenation] = STATE(2431), + [sym__expression] = STATE(2442), + [sym_binary_expression] = STATE(2442), + [sym_concatenation] = STATE(2442), [sym_expansion] = STATE(71), [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2442), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), @@ -71056,7 +71271,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(245), [sym_number] = ACTIONS(247), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6011), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6031), [anon_sym_DQUOTE] = ACTIONS(251), [sym_word] = ACTIONS(247), [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), @@ -71064,11 +71279,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), }, - [2431] = { + [2442] = { [anon_sym_PLUS_EQ] = ACTIONS(541), [anon_sym_PLUS_PLUS] = ACTIONS(543), [anon_sym_DASH] = ACTIONS(545), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6013), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6033), [anon_sym_PIPE_PIPE] = ACTIONS(541), [anon_sym_LT] = ACTIONS(545), [anon_sym_EQ_TILDE] = ACTIONS(547), @@ -71085,14 +71300,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(545), [anon_sym_AMP_AMP] = ACTIONS(541), }, - [2432] = { - [aux_sym_concatenation_repeat1] = STATE(820), + [2443] = { + [aux_sym_concatenation_repeat1] = STATE(747), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(6035), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), + }, + [2444] = { + [aux_sym_concatenation_repeat1] = STATE(821), [anon_sym_RBRACK] = ACTIONS(433), [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(6015), + [sym__concat] = ACTIONS(6037), }, - [2433] = { - [aux_sym_concatenation_repeat1] = STATE(1076), + [2445] = { + [aux_sym_concatenation_repeat1] = STATE(1082), [anon_sym_LT_LT_DASH] = ACTIONS(429), [anon_sym_AMP] = ACTIONS(429), [anon_sym_AMP_GT_GT] = ACTIONS(429), @@ -71111,13 +71335,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_esac] = ACTIONS(429), [anon_sym_GT_GT] = ACTIONS(429), [anon_sym_LT_AMP] = ACTIONS(429), - [sym__concat] = ACTIONS(6017), + [sym__concat] = ACTIONS(6039), [anon_sym_AMP_AMP] = ACTIONS(429), [anon_sym_SEMI_SEMI] = ACTIONS(429), [anon_sym_PIPE_AMP] = ACTIONS(429), }, - [2434] = { - [aux_sym_concatenation_repeat1] = STATE(2433), + [2446] = { + [aux_sym_concatenation_repeat1] = STATE(2445), [anon_sym_LT_LT_DASH] = ACTIONS(211), [anon_sym_AMP] = ACTIONS(211), [anon_sym_AMP_GT_GT] = ACTIONS(211), @@ -71136,113 +71360,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_esac] = ACTIONS(211), [anon_sym_GT_GT] = ACTIONS(211), [anon_sym_LT_AMP] = ACTIONS(211), - [sym__concat] = ACTIONS(2135), + [sym__concat] = ACTIONS(2139), [anon_sym_AMP_AMP] = ACTIONS(211), [sym__special_character] = ACTIONS(211), [anon_sym_SEMI_SEMI] = ACTIONS(211), [anon_sym_PIPE_AMP] = ACTIONS(211), }, - [2435] = { - [sym_command_substitution] = STATE(2624), - [aux_sym__literal_repeat1] = STATE(463), - [sym_string] = STATE(2624), - [sym_process_substitution] = STATE(2624), - [sym_simple_expansion] = STATE(2624), - [sym_string_expansion] = STATE(2624), - [sym_concatenation] = STATE(464), - [sym_expansion] = STATE(2624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6019), - [sym_word] = ACTIONS(6021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_ansii_c_string] = ACTIONS(6019), - [anon_sym_LT_LPAREN] = ACTIONS(2805), - [anon_sym_BQUOTE] = ACTIONS(2803), - [sym__special_character] = ACTIONS(6023), - [sym_number] = ACTIONS(6021), - [anon_sym_GT_LPAREN] = ACTIONS(2805), + [2447] = { + [sym_command_substitution] = STATE(2638), + [aux_sym__literal_repeat1] = STATE(464), + [sym_string] = STATE(2638), + [sym_process_substitution] = STATE(2638), + [sym_simple_expansion] = STATE(2638), + [sym_string_expansion] = STATE(2638), + [sym_concatenation] = STATE(465), + [sym_expansion] = STATE(2638), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6041), + [sym_word] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_ansii_c_string] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2807), + [sym__special_character] = ACTIONS(6045), + [sym_number] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(2809), }, - [2436] = { - [sym_command_substitution] = STATE(2626), - [aux_sym__literal_repeat1] = STATE(547), - [sym_string] = STATE(2626), - [sym_process_substitution] = STATE(2626), - [sym_simple_expansion] = STATE(2626), - [sym_string_expansion] = STATE(2626), - [sym_concatenation] = STATE(548), - [sym_expansion] = STATE(2626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6025), - [sym_word] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_ansii_c_string] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(2805), - [anon_sym_BQUOTE] = ACTIONS(2803), - [sym__special_character] = ACTIONS(6023), - [sym_number] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(2805), + [2448] = { + [sym_command_substitution] = STATE(2640), + [aux_sym__literal_repeat1] = STATE(548), + [sym_string] = STATE(2640), + [sym_process_substitution] = STATE(2640), + [sym_simple_expansion] = STATE(2640), + [sym_string_expansion] = STATE(2640), + [sym_concatenation] = STATE(549), + [sym_expansion] = STATE(2640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6047), + [sym_word] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_ansii_c_string] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2807), + [sym__special_character] = ACTIONS(6045), + [sym_number] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(2809), }, - [2437] = { - [sym_command_substitution] = STATE(2627), - [aux_sym__literal_repeat1] = STATE(593), - [sym_string] = STATE(2627), - [sym_process_substitution] = STATE(2627), - [sym_simple_expansion] = STATE(2627), - [sym_string_expansion] = STATE(2627), - [sym_concatenation] = STATE(594), - [sym_expansion] = STATE(2627), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6029), - [sym_word] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2813), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_ansii_c_string] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(2805), - [anon_sym_BQUOTE] = ACTIONS(2803), - [sym__special_character] = ACTIONS(6023), - [sym_number] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(2805), + [2449] = { + [sym_command_substitution] = STATE(2641), + [aux_sym__literal_repeat1] = STATE(594), + [sym_string] = STATE(2641), + [sym_process_substitution] = STATE(2641), + [sym_simple_expansion] = STATE(2641), + [sym_string_expansion] = STATE(2641), + [sym_concatenation] = STATE(595), + [sym_expansion] = STATE(2641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6051), + [sym_word] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_ansii_c_string] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2807), + [sym__special_character] = ACTIONS(6045), + [sym_number] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(2809), }, - [2438] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1474), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2450] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1482), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(183), [anon_sym_DOLLAR] = ACTIONS(69), @@ -71284,38 +71508,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2439] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1475), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2451] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1483), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -71357,69 +71581,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2440] = { - [sym_subscript] = STATE(1477), - [anon_sym__] = ACTIONS(6033), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6035), - [anon_sym_BANG] = ACTIONS(6035), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_AT] = ACTIONS(6041), - [anon_sym_0] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6041), - [aux_sym__simple_variable_name_token1] = ACTIONS(6033), - [anon_sym_QMARK] = ACTIONS(6041), + [2452] = { + [sym_subscript] = STATE(1485), + [anon_sym__] = ACTIONS(6055), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6057), + [anon_sym_BANG] = ACTIONS(6057), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_AT] = ACTIONS(6063), + [anon_sym_0] = ACTIONS(6055), + [anon_sym_STAR] = ACTIONS(6063), + [aux_sym__simple_variable_name_token1] = ACTIONS(6055), + [anon_sym_QMARK] = ACTIONS(6063), }, - [2441] = { - [anon_sym_PLUS_EQ] = ACTIONS(6043), + [2453] = { + [anon_sym_PLUS_EQ] = ACTIONS(6065), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6043), + [anon_sym_EQ] = ACTIONS(6065), }, - [2442] = { - [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [2454] = { + [anon_sym_AMP_GT_GT] = ACTIONS(6067), [sym_comment] = ACTIONS(41), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_AMP_GT] = ACTIONS(6047), + [anon_sym_GT_AMP] = ACTIONS(6067), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_LT_AMP] = ACTIONS(6067), + [anon_sym_GT_GT] = ACTIONS(6067), + [anon_sym_GT] = ACTIONS(6069), + [anon_sym_AMP_GT] = ACTIONS(6069), }, - [2443] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1483), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1484), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2455] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1491), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1492), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -71461,42 +71685,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2444] = { - [anon_sym_EQ] = ACTIONS(6043), - [anon_sym_PLUS_EQ] = ACTIONS(6043), + [2456] = { + [anon_sym_EQ] = ACTIONS(6065), + [anon_sym_PLUS_EQ] = ACTIONS(6065), [sym_comment] = ACTIONS(41), }, - [2445] = { - [sym_subscript] = STATE(1487), - [anon_sym__] = ACTIONS(6049), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6053), - [anon_sym_DASH] = ACTIONS(6053), - [anon_sym_AT] = ACTIONS(6055), - [anon_sym_0] = ACTIONS(6049), - [anon_sym_STAR] = ACTIONS(6055), - [aux_sym__simple_variable_name_token1] = ACTIONS(6049), - [anon_sym_QMARK] = ACTIONS(6055), + [2457] = { + [sym_subscript] = STATE(1495), + [anon_sym__] = ACTIONS(6071), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AT] = ACTIONS(6077), + [anon_sym_0] = ACTIONS(6071), + [anon_sym_STAR] = ACTIONS(6077), + [aux_sym__simple_variable_name_token1] = ACTIONS(6071), + [anon_sym_QMARK] = ACTIONS(6077), }, - [2446] = { + [2458] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6057), + [anon_sym_EQ] = ACTIONS(6079), }, - [2447] = { + [2459] = { [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(1492), - [sym_postfix_expression] = STATE(1492), + [sym_unary_expression] = STATE(1500), + [sym_postfix_expression] = STATE(1500), [sym_string] = STATE(71), [aux_sym__literal_repeat1] = STATE(73), [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1500), [sym_simple_expansion] = STATE(71), [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(1492), - [sym_binary_expression] = STATE(1492), - [sym_concatenation] = STATE(1492), + [sym__expression] = STATE(1500), + [sym_binary_expression] = STATE(1500), + [sym_concatenation] = STATE(1500), [sym_expansion] = STATE(71), [anon_sym_LPAREN] = ACTIONS(233), [sym_comment] = ACTIONS(41), @@ -71515,43 +71739,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(235), [sym__special_character] = ACTIONS(255), }, - [2448] = { + [2460] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6081), }, - [2449] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1519), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2461] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1527), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -71593,38 +71817,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2450] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1520), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2462] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1528), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -71666,69 +71890,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2451] = { - [sym_subscript] = STATE(1522), - [anon_sym__] = ACTIONS(6061), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6061), - [anon_sym_STAR] = ACTIONS(6063), - [anon_sym_POUND] = ACTIONS(6065), - [anon_sym_BANG] = ACTIONS(6065), - [aux_sym__simple_variable_name_token1] = ACTIONS(6061), - [sym_variable_name] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6069), - [anon_sym_DASH] = ACTIONS(6069), - [anon_sym_AT] = ACTIONS(6063), - [anon_sym_QMARK] = ACTIONS(6063), + [2463] = { + [sym_subscript] = STATE(1530), + [anon_sym__] = ACTIONS(6083), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6083), + [anon_sym_STAR] = ACTIONS(6085), + [anon_sym_POUND] = ACTIONS(6087), + [anon_sym_BANG] = ACTIONS(6087), + [aux_sym__simple_variable_name_token1] = ACTIONS(6083), + [sym_variable_name] = ACTIONS(6089), + [anon_sym_DOLLAR] = ACTIONS(6091), + [anon_sym_DASH] = ACTIONS(6091), + [anon_sym_AT] = ACTIONS(6085), + [anon_sym_QMARK] = ACTIONS(6085), }, - [2452] = { - [anon_sym_PLUS_EQ] = ACTIONS(6071), + [2464] = { + [anon_sym_PLUS_EQ] = ACTIONS(6093), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(6093), }, - [2453] = { - [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [2465] = { + [anon_sym_AMP_GT_GT] = ACTIONS(6095), [sym_comment] = ACTIONS(41), - [anon_sym_GT_AMP] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6075), - [anon_sym_LT_AMP] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6075), - [anon_sym_AMP_GT] = ACTIONS(6075), + [anon_sym_GT_AMP] = ACTIONS(6095), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_LT_AMP] = ACTIONS(6095), + [anon_sym_GT_GT] = ACTIONS(6095), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_AMP_GT] = ACTIONS(6097), }, - [2454] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1527), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1528), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2466] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1535), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1536), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -71770,66 +71994,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2455] = { - [anon_sym_EQ] = ACTIONS(6071), - [anon_sym_PLUS_EQ] = ACTIONS(6071), + [2467] = { + [anon_sym_EQ] = ACTIONS(6093), + [anon_sym_PLUS_EQ] = ACTIONS(6093), [sym_comment] = ACTIONS(41), }, - [2456] = { - [sym_subscript] = STATE(1531), - [anon_sym__] = ACTIONS(6077), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6079), - [aux_sym__simple_variable_name_token1] = ACTIONS(6077), - [sym_variable_name] = ACTIONS(6081), - [anon_sym_DOLLAR] = ACTIONS(6083), - [anon_sym_DASH] = ACTIONS(6083), - [anon_sym_AT] = ACTIONS(6079), - [anon_sym_QMARK] = ACTIONS(6079), + [2468] = { + [sym_subscript] = STATE(1539), + [anon_sym__] = ACTIONS(6099), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6099), + [anon_sym_STAR] = ACTIONS(6101), + [aux_sym__simple_variable_name_token1] = ACTIONS(6099), + [sym_variable_name] = ACTIONS(6103), + [anon_sym_DOLLAR] = ACTIONS(6105), + [anon_sym_DASH] = ACTIONS(6105), + [anon_sym_AT] = ACTIONS(6101), + [anon_sym_QMARK] = ACTIONS(6101), }, - [2457] = { - [anon_sym_EQ] = ACTIONS(6085), + [2469] = { + [anon_sym_EQ] = ACTIONS(6107), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2458] = { - [anon_sym_EQ] = ACTIONS(6087), + [2470] = { + [anon_sym_EQ] = ACTIONS(6109), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2459] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1562), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2471] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1570), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -71871,38 +72095,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2460] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1563), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2472] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1571), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -71944,59 +72168,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2461] = { - [sym_subscript] = STATE(1565), - [anon_sym__] = ACTIONS(6089), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6089), - [anon_sym_STAR] = ACTIONS(6091), - [anon_sym_POUND] = ACTIONS(6093), - [anon_sym_BANG] = ACTIONS(6093), - [aux_sym__simple_variable_name_token1] = ACTIONS(6089), - [sym_variable_name] = ACTIONS(6095), - [anon_sym_DOLLAR] = ACTIONS(6097), - [anon_sym_DASH] = ACTIONS(6097), - [anon_sym_AT] = ACTIONS(6091), - [anon_sym_QMARK] = ACTIONS(6091), + [2473] = { + [sym_subscript] = STATE(1573), + [anon_sym__] = ACTIONS(6111), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_POUND] = ACTIONS(6115), + [anon_sym_BANG] = ACTIONS(6115), + [aux_sym__simple_variable_name_token1] = ACTIONS(6111), + [sym_variable_name] = ACTIONS(6117), + [anon_sym_DOLLAR] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6119), + [anon_sym_AT] = ACTIONS(6113), + [anon_sym_QMARK] = ACTIONS(6113), }, - [2462] = { - [anon_sym_PLUS_EQ] = ACTIONS(6099), + [2474] = { + [anon_sym_PLUS_EQ] = ACTIONS(6121), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_EQ] = ACTIONS(6121), }, - [2463] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1570), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1571), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2475] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1578), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1579), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -72038,334 +72262,334 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2464] = { - [anon_sym_PLUS_EQ] = ACTIONS(6099), + [2476] = { + [anon_sym_PLUS_EQ] = ACTIONS(6121), [sym_comment] = ACTIONS(41), - [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_EQ] = ACTIONS(6121), }, - [2465] = { - [sym_subscript] = STATE(1574), - [anon_sym__] = ACTIONS(6101), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6101), - [anon_sym_STAR] = ACTIONS(6103), - [aux_sym__simple_variable_name_token1] = ACTIONS(6101), - [sym_variable_name] = ACTIONS(6105), - [anon_sym_DOLLAR] = ACTIONS(6107), - [anon_sym_DASH] = ACTIONS(6107), - [anon_sym_AT] = ACTIONS(6103), - [anon_sym_QMARK] = ACTIONS(6103), + [2477] = { + [sym_subscript] = STATE(1582), + [anon_sym__] = ACTIONS(6123), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6123), + [anon_sym_STAR] = ACTIONS(6125), + [aux_sym__simple_variable_name_token1] = ACTIONS(6123), + [sym_variable_name] = ACTIONS(6127), + [anon_sym_DOLLAR] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6129), + [anon_sym_AT] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(6125), }, - [2466] = { - [anon_sym_EQ] = ACTIONS(6109), + [2478] = { + [anon_sym_EQ] = ACTIONS(6131), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2467] = { - [anon_sym_EQ] = ACTIONS(6111), + [2479] = { + [anon_sym_EQ] = ACTIONS(6133), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2468] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1605), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [anon_sym_LPAREN] = ACTIONS(63), + [2480] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1613), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), [anon_sym_declare] = ACTIONS(183), [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), [anon_sym_readonly] = ACTIONS(183), [anon_sym_unset] = ACTIONS(185), [anon_sym_DQUOTE] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(187), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), [anon_sym_LT_LPAREN] = ACTIONS(73), [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2469] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1606), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [anon_sym_LPAREN] = ACTIONS(63), + [2481] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1614), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), [anon_sym_declare] = ACTIONS(65), [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), [anon_sym_readonly] = ACTIONS(65), [anon_sym_unset] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), [anon_sym_LT_LPAREN] = ACTIONS(73), [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2470] = { - [sym_subscript] = STATE(1608), - [anon_sym__] = ACTIONS(6113), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6113), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_POUND] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [aux_sym__simple_variable_name_token1] = ACTIONS(6113), - [sym_variable_name] = ACTIONS(6119), - [anon_sym_DOLLAR] = ACTIONS(6121), - [anon_sym_DASH] = ACTIONS(6121), - [anon_sym_AT] = ACTIONS(6115), - [anon_sym_QMARK] = ACTIONS(6115), + [2482] = { + [sym_subscript] = STATE(1616), + [anon_sym__] = ACTIONS(6135), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6137), + [anon_sym_BANG] = ACTIONS(6137), + [sym_variable_name] = ACTIONS(6139), + [anon_sym_DOLLAR] = ACTIONS(6141), + [anon_sym_DASH] = ACTIONS(6141), + [anon_sym_AT] = ACTIONS(6143), + [anon_sym_0] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6143), + [aux_sym__simple_variable_name_token1] = ACTIONS(6135), + [anon_sym_QMARK] = ACTIONS(6143), }, - [2471] = { - [anon_sym_PLUS_EQ] = ACTIONS(6123), + [2483] = { + [anon_sym_PLUS_EQ] = ACTIONS(6145), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6123), + [anon_sym_EQ] = ACTIONS(6145), }, - [2472] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1613), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1614), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [anon_sym_LPAREN] = ACTIONS(63), + [2484] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1621), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1622), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), [anon_sym_DOLLAR] = ACTIONS(69), [anon_sym_BQUOTE] = ACTIONS(71), [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), [sym__special_character] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), + [sym_comment] = ACTIONS(41), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), [anon_sym_declare] = ACTIONS(65), [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), [anon_sym_readonly] = ACTIONS(65), [anon_sym_unset] = ACTIONS(67), [anon_sym_DQUOTE] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), [anon_sym_LT_LPAREN] = ACTIONS(73), [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2473] = { - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_PLUS_EQ] = ACTIONS(6123), + [2485] = { + [anon_sym_EQ] = ACTIONS(6145), + [anon_sym_PLUS_EQ] = ACTIONS(6145), [sym_comment] = ACTIONS(41), }, - [2474] = { - [sym_subscript] = STATE(1617), - [anon_sym__] = ACTIONS(6125), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6125), - [anon_sym_STAR] = ACTIONS(6127), - [aux_sym__simple_variable_name_token1] = ACTIONS(6125), - [sym_variable_name] = ACTIONS(6129), - [anon_sym_DOLLAR] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_AT] = ACTIONS(6127), - [anon_sym_QMARK] = ACTIONS(6127), + [2486] = { + [sym_subscript] = STATE(1625), + [anon_sym__] = ACTIONS(6147), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6149), + [anon_sym_DOLLAR] = ACTIONS(6151), + [anon_sym_DASH] = ACTIONS(6151), + [anon_sym_AT] = ACTIONS(6153), + [anon_sym_0] = ACTIONS(6147), + [anon_sym_STAR] = ACTIONS(6153), + [aux_sym__simple_variable_name_token1] = ACTIONS(6147), + [anon_sym_QMARK] = ACTIONS(6153), }, - [2475] = { - [anon_sym_EQ] = ACTIONS(6133), + [2487] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6155), }, - [2476] = { - [anon_sym_EQ] = ACTIONS(6135), + [2488] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6157), }, - [2477] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1648), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2489] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1656), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(183), [anon_sym_DOLLAR] = ACTIONS(69), @@ -72407,38 +72631,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2478] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1649), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2490] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1657), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -72480,59 +72704,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2479] = { - [sym_subscript] = STATE(1651), - [anon_sym__] = ACTIONS(6137), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6139), - [anon_sym_BANG] = ACTIONS(6139), - [sym_variable_name] = ACTIONS(6141), - [anon_sym_DOLLAR] = ACTIONS(6143), - [anon_sym_DASH] = ACTIONS(6143), - [anon_sym_AT] = ACTIONS(6145), - [anon_sym_0] = ACTIONS(6137), - [anon_sym_STAR] = ACTIONS(6145), - [aux_sym__simple_variable_name_token1] = ACTIONS(6137), - [anon_sym_QMARK] = ACTIONS(6145), + [2491] = { + [sym_subscript] = STATE(1659), + [anon_sym__] = ACTIONS(6159), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6161), + [anon_sym_BANG] = ACTIONS(6161), + [sym_variable_name] = ACTIONS(6163), + [anon_sym_DOLLAR] = ACTIONS(6165), + [anon_sym_DASH] = ACTIONS(6165), + [anon_sym_AT] = ACTIONS(6167), + [anon_sym_0] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6167), + [aux_sym__simple_variable_name_token1] = ACTIONS(6159), + [anon_sym_QMARK] = ACTIONS(6167), }, - [2480] = { - [anon_sym_PLUS_EQ] = ACTIONS(6147), + [2492] = { + [anon_sym_PLUS_EQ] = ACTIONS(6169), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6147), + [anon_sym_EQ] = ACTIONS(6169), }, - [2481] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1656), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1657), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2493] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1664), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1665), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -72574,66 +72798,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2482] = { - [anon_sym_EQ] = ACTIONS(6147), - [anon_sym_PLUS_EQ] = ACTIONS(6147), + [2494] = { + [anon_sym_EQ] = ACTIONS(6169), + [anon_sym_PLUS_EQ] = ACTIONS(6169), [sym_comment] = ACTIONS(41), }, - [2483] = { - [sym_subscript] = STATE(1660), - [anon_sym__] = ACTIONS(6149), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6151), - [anon_sym_DOLLAR] = ACTIONS(6153), - [anon_sym_DASH] = ACTIONS(6153), - [anon_sym_AT] = ACTIONS(6155), - [anon_sym_0] = ACTIONS(6149), - [anon_sym_STAR] = ACTIONS(6155), - [aux_sym__simple_variable_name_token1] = ACTIONS(6149), - [anon_sym_QMARK] = ACTIONS(6155), + [2495] = { + [sym_subscript] = STATE(1668), + [anon_sym__] = ACTIONS(6171), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6173), + [anon_sym_DOLLAR] = ACTIONS(6175), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_AT] = ACTIONS(6177), + [anon_sym_0] = ACTIONS(6171), + [anon_sym_STAR] = ACTIONS(6177), + [aux_sym__simple_variable_name_token1] = ACTIONS(6171), + [anon_sym_QMARK] = ACTIONS(6177), }, - [2484] = { + [2496] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6157), + [anon_sym_EQ] = ACTIONS(6179), }, - [2485] = { + [2497] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6159), + [anon_sym_EQ] = ACTIONS(6181), }, - [2486] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1691), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2498] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1699), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -72675,38 +72899,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2487] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1692), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2499] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1700), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -72748,53 +72972,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2488] = { - [sym_subscript] = STATE(1694), - [anon_sym__] = ACTIONS(6161), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6161), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_POUND] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [aux_sym__simple_variable_name_token1] = ACTIONS(6161), - [sym_variable_name] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_DASH] = ACTIONS(6169), - [anon_sym_AT] = ACTIONS(6163), - [anon_sym_QMARK] = ACTIONS(6163), + [2500] = { + [sym_subscript] = STATE(1702), + [anon_sym__] = ACTIONS(6183), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6183), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_POUND] = ACTIONS(6187), + [anon_sym_BANG] = ACTIONS(6187), + [aux_sym__simple_variable_name_token1] = ACTIONS(6183), + [sym_variable_name] = ACTIONS(6189), + [anon_sym_DOLLAR] = ACTIONS(6191), + [anon_sym_DASH] = ACTIONS(6191), + [anon_sym_AT] = ACTIONS(6185), + [anon_sym_QMARK] = ACTIONS(6185), }, - [2489] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1698), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1699), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2501] = { + [anon_sym_PLUS_EQ] = ACTIONS(6193), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(6193), + }, + [2502] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1707), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1708), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -72836,61 +73066,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2490] = { - [sym_subscript] = STATE(1702), - [anon_sym__] = ACTIONS(6171), + [2503] = { + [anon_sym_EQ] = ACTIONS(6193), + [anon_sym_PLUS_EQ] = ACTIONS(6193), [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6173), - [aux_sym__simple_variable_name_token1] = ACTIONS(6171), - [sym_variable_name] = ACTIONS(6175), - [anon_sym_DOLLAR] = ACTIONS(6177), - [anon_sym_DASH] = ACTIONS(6177), - [anon_sym_AT] = ACTIONS(6173), - [anon_sym_QMARK] = ACTIONS(6173), }, - [2491] = { - [anon_sym_EQ] = ACTIONS(6179), + [2504] = { + [sym_subscript] = STATE(1711), + [anon_sym__] = ACTIONS(6195), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6195), + [anon_sym_STAR] = ACTIONS(6197), + [aux_sym__simple_variable_name_token1] = ACTIONS(6195), + [sym_variable_name] = ACTIONS(6199), + [anon_sym_DOLLAR] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_AT] = ACTIONS(6197), + [anon_sym_QMARK] = ACTIONS(6197), + }, + [2505] = { + [anon_sym_EQ] = ACTIONS(6203), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2492] = { - [anon_sym_EQ] = ACTIONS(6181), + [2506] = { + [anon_sym_EQ] = ACTIONS(6205), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2493] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1731), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2507] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1742), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(183), [anon_sym_DOLLAR] = ACTIONS(69), @@ -72932,38 +73167,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2494] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1732), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2508] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1743), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -73005,53 +73240,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2495] = { - [sym_subscript] = STATE(1734), - [anon_sym__] = ACTIONS(6183), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [sym_variable_name] = ACTIONS(6187), - [anon_sym_DOLLAR] = ACTIONS(6189), - [anon_sym_DASH] = ACTIONS(6189), - [anon_sym_AT] = ACTIONS(6191), - [anon_sym_0] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6191), - [aux_sym__simple_variable_name_token1] = ACTIONS(6183), - [anon_sym_QMARK] = ACTIONS(6191), + [2509] = { + [sym_subscript] = STATE(1745), + [anon_sym__] = ACTIONS(6207), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6209), + [anon_sym_BANG] = ACTIONS(6209), + [sym_variable_name] = ACTIONS(6211), + [anon_sym_DOLLAR] = ACTIONS(6213), + [anon_sym_DASH] = ACTIONS(6213), + [anon_sym_AT] = ACTIONS(6215), + [anon_sym_0] = ACTIONS(6207), + [anon_sym_STAR] = ACTIONS(6215), + [aux_sym__simple_variable_name_token1] = ACTIONS(6207), + [anon_sym_QMARK] = ACTIONS(6215), }, - [2496] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1738), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1739), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2510] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1749), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1750), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -73093,61 +73328,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2497] = { - [sym_subscript] = STATE(1742), - [anon_sym__] = ACTIONS(6193), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6195), - [anon_sym_DOLLAR] = ACTIONS(6197), - [anon_sym_DASH] = ACTIONS(6197), - [anon_sym_AT] = ACTIONS(6199), - [anon_sym_0] = ACTIONS(6193), - [anon_sym_STAR] = ACTIONS(6199), - [aux_sym__simple_variable_name_token1] = ACTIONS(6193), - [anon_sym_QMARK] = ACTIONS(6199), + [2511] = { + [sym_subscript] = STATE(1753), + [anon_sym__] = ACTIONS(6217), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6219), + [anon_sym_DOLLAR] = ACTIONS(6221), + [anon_sym_DASH] = ACTIONS(6221), + [anon_sym_AT] = ACTIONS(6223), + [anon_sym_0] = ACTIONS(6217), + [anon_sym_STAR] = ACTIONS(6223), + [aux_sym__simple_variable_name_token1] = ACTIONS(6217), + [anon_sym_QMARK] = ACTIONS(6223), }, - [2498] = { + [2512] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6201), + [anon_sym_EQ] = ACTIONS(6225), }, - [2499] = { + [2513] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6203), + [anon_sym_EQ] = ACTIONS(6227), }, - [2500] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1771), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2514] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1782), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(183), [anon_sym_DOLLAR] = ACTIONS(69), @@ -73189,38 +73424,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2501] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1772), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2515] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1783), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -73262,53 +73497,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2502] = { - [sym_subscript] = STATE(1774), - [anon_sym__] = ACTIONS(6205), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6207), - [anon_sym_BANG] = ACTIONS(6207), - [sym_variable_name] = ACTIONS(6209), - [anon_sym_DOLLAR] = ACTIONS(6211), - [anon_sym_DASH] = ACTIONS(6211), - [anon_sym_AT] = ACTIONS(6213), - [anon_sym_0] = ACTIONS(6205), - [anon_sym_STAR] = ACTIONS(6213), - [aux_sym__simple_variable_name_token1] = ACTIONS(6205), - [anon_sym_QMARK] = ACTIONS(6213), + [2516] = { + [sym_subscript] = STATE(1785), + [anon_sym__] = ACTIONS(6229), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6231), + [anon_sym_BANG] = ACTIONS(6231), + [sym_variable_name] = ACTIONS(6233), + [anon_sym_DOLLAR] = ACTIONS(6235), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_AT] = ACTIONS(6237), + [anon_sym_0] = ACTIONS(6229), + [anon_sym_STAR] = ACTIONS(6237), + [aux_sym__simple_variable_name_token1] = ACTIONS(6229), + [anon_sym_QMARK] = ACTIONS(6237), }, - [2503] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1778), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1779), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2517] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1789), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1790), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -73350,61 +73585,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2504] = { - [sym_subscript] = STATE(1782), - [anon_sym__] = ACTIONS(6215), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6217), - [anon_sym_DOLLAR] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_AT] = ACTIONS(6221), - [anon_sym_0] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6221), - [aux_sym__simple_variable_name_token1] = ACTIONS(6215), - [anon_sym_QMARK] = ACTIONS(6221), + [2518] = { + [sym_subscript] = STATE(1793), + [anon_sym__] = ACTIONS(6239), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6241), + [anon_sym_DOLLAR] = ACTIONS(6243), + [anon_sym_DASH] = ACTIONS(6243), + [anon_sym_AT] = ACTIONS(6245), + [anon_sym_0] = ACTIONS(6239), + [anon_sym_STAR] = ACTIONS(6245), + [aux_sym__simple_variable_name_token1] = ACTIONS(6239), + [anon_sym_QMARK] = ACTIONS(6245), }, - [2505] = { + [2519] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6223), + [anon_sym_EQ] = ACTIONS(6247), }, - [2506] = { + [2520] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6225), + [anon_sym_EQ] = ACTIONS(6249), }, - [2507] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1811), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2521] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1822), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(183), [anon_sym_DOLLAR] = ACTIONS(69), @@ -73446,383 +73681,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2508] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1812), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2509] = { - [sym_subscript] = STATE(1814), - [anon_sym__] = ACTIONS(6227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [sym_variable_name] = ACTIONS(6231), - [anon_sym_DOLLAR] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6233), - [anon_sym_AT] = ACTIONS(6235), - [anon_sym_0] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6235), - [aux_sym__simple_variable_name_token1] = ACTIONS(6227), - [anon_sym_QMARK] = ACTIONS(6235), - }, - [2510] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1818), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1819), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2511] = { - [sym_subscript] = STATE(1822), - [anon_sym__] = ACTIONS(6237), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_DASH] = ACTIONS(6241), - [anon_sym_AT] = ACTIONS(6243), - [anon_sym_0] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6243), - [aux_sym__simple_variable_name_token1] = ACTIONS(6237), - [anon_sym_QMARK] = ACTIONS(6243), - }, - [2512] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6245), - }, - [2513] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6247), - }, - [2514] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1851), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2515] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1852), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2516] = { - [sym_subscript] = STATE(1854), - [anon_sym__] = ACTIONS(6249), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_POUND] = ACTIONS(6253), - [anon_sym_BANG] = ACTIONS(6253), - [aux_sym__simple_variable_name_token1] = ACTIONS(6249), - [sym_variable_name] = ACTIONS(6255), - [anon_sym_DOLLAR] = ACTIONS(6257), - [anon_sym_DASH] = ACTIONS(6257), - [anon_sym_AT] = ACTIONS(6251), - [anon_sym_QMARK] = ACTIONS(6251), - }, - [2517] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1858), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1859), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2522] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1823), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -73864,61 +73754,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2518] = { - [sym_subscript] = STATE(1862), - [anon_sym__] = ACTIONS(6259), + [2523] = { + [sym_subscript] = STATE(1825), + [anon_sym__] = ACTIONS(6251), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6253), + [anon_sym_BANG] = ACTIONS(6253), + [sym_variable_name] = ACTIONS(6255), + [anon_sym_DOLLAR] = ACTIONS(6257), + [anon_sym_DASH] = ACTIONS(6257), + [anon_sym_AT] = ACTIONS(6259), + [anon_sym_0] = ACTIONS(6251), + [anon_sym_STAR] = ACTIONS(6259), + [aux_sym__simple_variable_name_token1] = ACTIONS(6251), + [anon_sym_QMARK] = ACTIONS(6259), + }, + [2524] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1829), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1830), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(81), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_local] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + }, + [2525] = { + [sym_subscript] = STATE(1833), + [anon_sym__] = ACTIONS(6261), [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6259), - [anon_sym_STAR] = ACTIONS(6261), - [aux_sym__simple_variable_name_token1] = ACTIONS(6259), [sym_variable_name] = ACTIONS(6263), [anon_sym_DOLLAR] = ACTIONS(6265), [anon_sym_DASH] = ACTIONS(6265), - [anon_sym_AT] = ACTIONS(6261), - [anon_sym_QMARK] = ACTIONS(6261), + [anon_sym_AT] = ACTIONS(6267), + [anon_sym_0] = ACTIONS(6261), + [anon_sym_STAR] = ACTIONS(6267), + [aux_sym__simple_variable_name_token1] = ACTIONS(6261), + [anon_sym_QMARK] = ACTIONS(6267), }, - [2519] = { - [anon_sym_EQ] = ACTIONS(6267), + [2526] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - }, - [2520] = { [anon_sym_EQ] = ACTIONS(6269), + }, + [2527] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(6271), }, - [2521] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1891), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2528] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1862), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -73960,38 +73938,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2522] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1892), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2529] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1863), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -74033,53 +74011,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2523] = { - [sym_subscript] = STATE(1894), - [anon_sym__] = ACTIONS(6271), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6271), - [anon_sym_STAR] = ACTIONS(6273), - [anon_sym_POUND] = ACTIONS(6275), - [anon_sym_BANG] = ACTIONS(6275), - [aux_sym__simple_variable_name_token1] = ACTIONS(6271), - [sym_variable_name] = ACTIONS(6277), - [anon_sym_DOLLAR] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_AT] = ACTIONS(6273), - [anon_sym_QMARK] = ACTIONS(6273), + [2530] = { + [sym_subscript] = STATE(1865), + [anon_sym__] = ACTIONS(6273), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6273), + [anon_sym_STAR] = ACTIONS(6275), + [anon_sym_POUND] = ACTIONS(6277), + [anon_sym_BANG] = ACTIONS(6277), + [aux_sym__simple_variable_name_token1] = ACTIONS(6273), + [sym_variable_name] = ACTIONS(6279), + [anon_sym_DOLLAR] = ACTIONS(6281), + [anon_sym_DASH] = ACTIONS(6281), + [anon_sym_AT] = ACTIONS(6275), + [anon_sym_QMARK] = ACTIONS(6275), }, - [2524] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1898), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1899), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2531] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1869), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1870), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -74121,61 +74099,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2525] = { - [sym_subscript] = STATE(1902), - [anon_sym__] = ACTIONS(6281), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6281), - [anon_sym_STAR] = ACTIONS(6283), - [aux_sym__simple_variable_name_token1] = ACTIONS(6281), - [sym_variable_name] = ACTIONS(6285), - [anon_sym_DOLLAR] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_AT] = ACTIONS(6283), - [anon_sym_QMARK] = ACTIONS(6283), + [2532] = { + [sym_subscript] = STATE(1873), + [anon_sym__] = ACTIONS(6283), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6283), + [anon_sym_STAR] = ACTIONS(6285), + [aux_sym__simple_variable_name_token1] = ACTIONS(6283), + [sym_variable_name] = ACTIONS(6287), + [anon_sym_DOLLAR] = ACTIONS(6289), + [anon_sym_DASH] = ACTIONS(6289), + [anon_sym_AT] = ACTIONS(6285), + [anon_sym_QMARK] = ACTIONS(6285), }, - [2526] = { - [anon_sym_EQ] = ACTIONS(6289), + [2533] = { + [anon_sym_EQ] = ACTIONS(6291), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2527] = { - [anon_sym_EQ] = ACTIONS(6291), + [2534] = { + [anon_sym_EQ] = ACTIONS(6293), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2528] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1931), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2535] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1902), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -74217,38 +74195,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2529] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1932), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2536] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1903), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -74290,53 +74268,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2530] = { - [sym_subscript] = STATE(1934), - [anon_sym__] = ACTIONS(6293), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6293), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_POUND] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(6297), - [aux_sym__simple_variable_name_token1] = ACTIONS(6293), - [sym_variable_name] = ACTIONS(6299), - [anon_sym_DOLLAR] = ACTIONS(6301), - [anon_sym_DASH] = ACTIONS(6301), - [anon_sym_AT] = ACTIONS(6295), - [anon_sym_QMARK] = ACTIONS(6295), + [2537] = { + [sym_subscript] = STATE(1905), + [anon_sym__] = ACTIONS(6295), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6295), + [anon_sym_STAR] = ACTIONS(6297), + [anon_sym_POUND] = ACTIONS(6299), + [anon_sym_BANG] = ACTIONS(6299), + [aux_sym__simple_variable_name_token1] = ACTIONS(6295), + [sym_variable_name] = ACTIONS(6301), + [anon_sym_DOLLAR] = ACTIONS(6303), + [anon_sym_DASH] = ACTIONS(6303), + [anon_sym_AT] = ACTIONS(6297), + [anon_sym_QMARK] = ACTIONS(6297), }, - [2531] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1938), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1939), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2538] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1909), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1910), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -74378,61 +74356,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2532] = { - [sym_subscript] = STATE(1942), - [anon_sym__] = ACTIONS(6303), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6303), - [anon_sym_STAR] = ACTIONS(6305), - [aux_sym__simple_variable_name_token1] = ACTIONS(6303), - [sym_variable_name] = ACTIONS(6307), - [anon_sym_DOLLAR] = ACTIONS(6309), - [anon_sym_DASH] = ACTIONS(6309), - [anon_sym_AT] = ACTIONS(6305), - [anon_sym_QMARK] = ACTIONS(6305), + [2539] = { + [sym_subscript] = STATE(1913), + [anon_sym__] = ACTIONS(6305), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6305), + [anon_sym_STAR] = ACTIONS(6307), + [aux_sym__simple_variable_name_token1] = ACTIONS(6305), + [sym_variable_name] = ACTIONS(6309), + [anon_sym_DOLLAR] = ACTIONS(6311), + [anon_sym_DASH] = ACTIONS(6311), + [anon_sym_AT] = ACTIONS(6307), + [anon_sym_QMARK] = ACTIONS(6307), }, - [2533] = { - [anon_sym_EQ] = ACTIONS(6311), + [2540] = { + [anon_sym_EQ] = ACTIONS(6313), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2534] = { - [anon_sym_EQ] = ACTIONS(6313), + [2541] = { + [anon_sym_EQ] = ACTIONS(6315), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2535] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(1971), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2542] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1942), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -74474,38 +74452,295 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2536] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1972), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2543] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1943), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + }, + [2544] = { + [sym_subscript] = STATE(1945), + [anon_sym__] = ACTIONS(6317), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6317), + [anon_sym_STAR] = ACTIONS(6319), + [anon_sym_POUND] = ACTIONS(6321), + [anon_sym_BANG] = ACTIONS(6321), + [aux_sym__simple_variable_name_token1] = ACTIONS(6317), + [sym_variable_name] = ACTIONS(6323), + [anon_sym_DOLLAR] = ACTIONS(6325), + [anon_sym_DASH] = ACTIONS(6325), + [anon_sym_AT] = ACTIONS(6319), + [anon_sym_QMARK] = ACTIONS(6319), + }, + [2545] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1949), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1950), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(65), + [anon_sym_unsetenv] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(65), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(65), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(65), + [anon_sym_unset] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + }, + [2546] = { + [sym_subscript] = STATE(1953), + [anon_sym__] = ACTIONS(6327), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6327), + [anon_sym_STAR] = ACTIONS(6329), + [aux_sym__simple_variable_name_token1] = ACTIONS(6327), + [sym_variable_name] = ACTIONS(6331), + [anon_sym_DOLLAR] = ACTIONS(6333), + [anon_sym_DASH] = ACTIONS(6333), + [anon_sym_AT] = ACTIONS(6329), + [anon_sym_QMARK] = ACTIONS(6329), + }, + [2547] = { + [anon_sym_EQ] = ACTIONS(6335), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2548] = { + [anon_sym_EQ] = ACTIONS(6337), + [sym_comment] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(471), + }, + [2549] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(1982), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), + [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(183), + [anon_sym_typeset] = ACTIONS(183), + [anon_sym_unsetenv] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(69), + [anon_sym_BQUOTE] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(73), + [sym_number] = ACTIONS(75), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_word] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(7), + [sym__special_character] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_raw_string] = ACTIONS(93), + [sym_comment] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(183), + [sym_variable_name] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(29), + [anon_sym_AMP_GT] = ACTIONS(29), + [anon_sym_readonly] = ACTIONS(183), + [anon_sym_unset] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_LT_LPAREN] = ACTIONS(73), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [sym_ansii_c_string] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + }, + [2550] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1983), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -74547,53 +74782,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2537] = { - [sym_subscript] = STATE(1974), - [anon_sym__] = ACTIONS(6315), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6317), - [anon_sym_POUND] = ACTIONS(6319), - [anon_sym_BANG] = ACTIONS(6319), - [aux_sym__simple_variable_name_token1] = ACTIONS(6315), - [sym_variable_name] = ACTIONS(6321), - [anon_sym_DOLLAR] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_AT] = ACTIONS(6317), - [anon_sym_QMARK] = ACTIONS(6317), + [2551] = { + [sym_subscript] = STATE(1985), + [anon_sym__] = ACTIONS(6339), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6339), + [anon_sym_STAR] = ACTIONS(6341), + [anon_sym_POUND] = ACTIONS(6343), + [anon_sym_BANG] = ACTIONS(6343), + [aux_sym__simple_variable_name_token1] = ACTIONS(6339), + [sym_variable_name] = ACTIONS(6345), + [anon_sym_DOLLAR] = ACTIONS(6347), + [anon_sym_DASH] = ACTIONS(6347), + [anon_sym_AT] = ACTIONS(6341), + [anon_sym_QMARK] = ACTIONS(6341), }, - [2538] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(1978), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(1979), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2552] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(1989), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(1990), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -74635,61 +74870,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2539] = { - [sym_subscript] = STATE(1982), - [anon_sym__] = ACTIONS(6325), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6325), - [anon_sym_STAR] = ACTIONS(6327), - [aux_sym__simple_variable_name_token1] = ACTIONS(6325), - [sym_variable_name] = ACTIONS(6329), - [anon_sym_DOLLAR] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_AT] = ACTIONS(6327), - [anon_sym_QMARK] = ACTIONS(6327), + [2553] = { + [sym_subscript] = STATE(1993), + [anon_sym__] = ACTIONS(6349), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6349), + [anon_sym_STAR] = ACTIONS(6351), + [aux_sym__simple_variable_name_token1] = ACTIONS(6349), + [sym_variable_name] = ACTIONS(6353), + [anon_sym_DOLLAR] = ACTIONS(6355), + [anon_sym_DASH] = ACTIONS(6355), + [anon_sym_AT] = ACTIONS(6351), + [anon_sym_QMARK] = ACTIONS(6351), }, - [2540] = { - [anon_sym_EQ] = ACTIONS(6333), + [2554] = { + [anon_sym_EQ] = ACTIONS(6357), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2541] = { - [anon_sym_EQ] = ACTIONS(6335), + [2555] = { + [anon_sym_EQ] = ACTIONS(6359), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2542] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2011), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2556] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(2022), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(183), [anon_sym_DOLLAR] = ACTIONS(69), @@ -74731,38 +74966,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2543] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2012), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2557] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2023), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -74804,53 +75039,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2544] = { - [sym_subscript] = STATE(2014), - [anon_sym__] = ACTIONS(6337), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6339), - [anon_sym_BANG] = ACTIONS(6339), - [sym_variable_name] = ACTIONS(6341), - [anon_sym_DOLLAR] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_AT] = ACTIONS(6345), - [anon_sym_0] = ACTIONS(6337), - [anon_sym_STAR] = ACTIONS(6345), - [aux_sym__simple_variable_name_token1] = ACTIONS(6337), - [anon_sym_QMARK] = ACTIONS(6345), + [2558] = { + [sym_subscript] = STATE(2025), + [anon_sym__] = ACTIONS(6361), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6363), + [anon_sym_BANG] = ACTIONS(6363), + [sym_variable_name] = ACTIONS(6365), + [anon_sym_DOLLAR] = ACTIONS(6367), + [anon_sym_DASH] = ACTIONS(6367), + [anon_sym_AT] = ACTIONS(6369), + [anon_sym_0] = ACTIONS(6361), + [anon_sym_STAR] = ACTIONS(6369), + [aux_sym__simple_variable_name_token1] = ACTIONS(6361), + [anon_sym_QMARK] = ACTIONS(6369), }, - [2545] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2018), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2019), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2559] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(2029), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2030), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -74892,61 +75127,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2546] = { - [sym_subscript] = STATE(2022), - [anon_sym__] = ACTIONS(6347), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6349), - [anon_sym_DOLLAR] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_AT] = ACTIONS(6353), - [anon_sym_0] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6353), - [aux_sym__simple_variable_name_token1] = ACTIONS(6347), - [anon_sym_QMARK] = ACTIONS(6353), + [2560] = { + [sym_subscript] = STATE(2033), + [anon_sym__] = ACTIONS(6371), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6373), + [anon_sym_DOLLAR] = ACTIONS(6375), + [anon_sym_DASH] = ACTIONS(6375), + [anon_sym_AT] = ACTIONS(6377), + [anon_sym_0] = ACTIONS(6371), + [anon_sym_STAR] = ACTIONS(6377), + [aux_sym__simple_variable_name_token1] = ACTIONS(6371), + [anon_sym_QMARK] = ACTIONS(6377), }, - [2547] = { + [2561] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6355), + [anon_sym_EQ] = ACTIONS(6379), }, - [2548] = { + [2562] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6357), + [anon_sym_EQ] = ACTIONS(6381), }, - [2549] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2051), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2563] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(2062), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(183), [anon_sym_DOLLAR] = ACTIONS(69), @@ -74988,38 +75223,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2550] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2052), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2564] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2063), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -75061,53 +75296,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2551] = { - [sym_subscript] = STATE(2054), - [anon_sym__] = ACTIONS(6359), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [sym_variable_name] = ACTIONS(6363), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_DASH] = ACTIONS(6365), - [anon_sym_AT] = ACTIONS(6367), - [anon_sym_0] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6367), - [aux_sym__simple_variable_name_token1] = ACTIONS(6359), - [anon_sym_QMARK] = ACTIONS(6367), + [2565] = { + [sym_subscript] = STATE(2065), + [anon_sym__] = ACTIONS(6383), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(6385), + [anon_sym_BANG] = ACTIONS(6385), + [sym_variable_name] = ACTIONS(6387), + [anon_sym_DOLLAR] = ACTIONS(6389), + [anon_sym_DASH] = ACTIONS(6389), + [anon_sym_AT] = ACTIONS(6391), + [anon_sym_0] = ACTIONS(6383), + [anon_sym_STAR] = ACTIONS(6391), + [aux_sym__simple_variable_name_token1] = ACTIONS(6383), + [anon_sym_QMARK] = ACTIONS(6391), }, - [2552] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2058), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2059), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2566] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(2069), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2070), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -75149,61 +75384,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2553] = { - [sym_subscript] = STATE(2062), - [anon_sym__] = ACTIONS(6369), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6371), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_DASH] = ACTIONS(6373), - [anon_sym_AT] = ACTIONS(6375), - [anon_sym_0] = ACTIONS(6369), - [anon_sym_STAR] = ACTIONS(6375), - [aux_sym__simple_variable_name_token1] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(6375), + [2567] = { + [sym_subscript] = STATE(2073), + [anon_sym__] = ACTIONS(6393), + [sym_comment] = ACTIONS(41), + [sym_variable_name] = ACTIONS(6395), + [anon_sym_DOLLAR] = ACTIONS(6397), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_AT] = ACTIONS(6399), + [anon_sym_0] = ACTIONS(6393), + [anon_sym_STAR] = ACTIONS(6399), + [aux_sym__simple_variable_name_token1] = ACTIONS(6393), + [anon_sym_QMARK] = ACTIONS(6399), }, - [2554] = { + [2568] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6377), + [anon_sym_EQ] = ACTIONS(6401), }, - [2555] = { + [2569] = { [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6379), + [anon_sym_EQ] = ACTIONS(6403), }, - [2556] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2091), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2570] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(2102), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -75245,38 +75480,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2557] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2092), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2571] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2103), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -75318,53 +75553,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2558] = { - [sym_subscript] = STATE(2094), - [anon_sym__] = ACTIONS(6381), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6381), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_POUND] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [aux_sym__simple_variable_name_token1] = ACTIONS(6381), - [sym_variable_name] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_DASH] = ACTIONS(6389), - [anon_sym_AT] = ACTIONS(6383), - [anon_sym_QMARK] = ACTIONS(6383), + [2572] = { + [sym_subscript] = STATE(2105), + [anon_sym__] = ACTIONS(6405), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6405), + [anon_sym_STAR] = ACTIONS(6407), + [anon_sym_POUND] = ACTIONS(6409), + [anon_sym_BANG] = ACTIONS(6409), + [aux_sym__simple_variable_name_token1] = ACTIONS(6405), + [sym_variable_name] = ACTIONS(6411), + [anon_sym_DOLLAR] = ACTIONS(6413), + [anon_sym_DASH] = ACTIONS(6413), + [anon_sym_AT] = ACTIONS(6407), + [anon_sym_QMARK] = ACTIONS(6407), }, - [2559] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2098), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2099), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2573] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(2109), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2110), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -75406,61 +75641,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2560] = { - [sym_subscript] = STATE(2102), - [anon_sym__] = ACTIONS(6391), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6393), - [aux_sym__simple_variable_name_token1] = ACTIONS(6391), - [sym_variable_name] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_DASH] = ACTIONS(6397), - [anon_sym_AT] = ACTIONS(6393), - [anon_sym_QMARK] = ACTIONS(6393), + [2574] = { + [sym_subscript] = STATE(2113), + [anon_sym__] = ACTIONS(6415), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6415), + [anon_sym_STAR] = ACTIONS(6417), + [aux_sym__simple_variable_name_token1] = ACTIONS(6415), + [sym_variable_name] = ACTIONS(6419), + [anon_sym_DOLLAR] = ACTIONS(6421), + [anon_sym_DASH] = ACTIONS(6421), + [anon_sym_AT] = ACTIONS(6417), + [anon_sym_QMARK] = ACTIONS(6417), }, - [2561] = { - [anon_sym_EQ] = ACTIONS(6399), + [2575] = { + [anon_sym_EQ] = ACTIONS(6423), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2562] = { - [anon_sym_EQ] = ACTIONS(6401), + [2576] = { + [anon_sym_EQ] = ACTIONS(6425), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2563] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2131), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2577] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(2142), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -75502,38 +75737,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2564] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2132), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2578] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2143), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -75575,53 +75810,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2565] = { - [sym_subscript] = STATE(2134), - [anon_sym__] = ACTIONS(6403), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6405), - [anon_sym_POUND] = ACTIONS(6407), - [anon_sym_BANG] = ACTIONS(6407), - [aux_sym__simple_variable_name_token1] = ACTIONS(6403), - [sym_variable_name] = ACTIONS(6409), - [anon_sym_DOLLAR] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_AT] = ACTIONS(6405), - [anon_sym_QMARK] = ACTIONS(6405), + [2579] = { + [sym_subscript] = STATE(2145), + [anon_sym__] = ACTIONS(6427), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6427), + [anon_sym_STAR] = ACTIONS(6429), + [anon_sym_POUND] = ACTIONS(6431), + [anon_sym_BANG] = ACTIONS(6431), + [aux_sym__simple_variable_name_token1] = ACTIONS(6427), + [sym_variable_name] = ACTIONS(6433), + [anon_sym_DOLLAR] = ACTIONS(6435), + [anon_sym_DASH] = ACTIONS(6435), + [anon_sym_AT] = ACTIONS(6429), + [anon_sym_QMARK] = ACTIONS(6429), }, - [2566] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2138), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2139), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2580] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(2149), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2150), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -75663,61 +75898,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2567] = { - [sym_subscript] = STATE(2142), - [anon_sym__] = ACTIONS(6413), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6413), - [anon_sym_STAR] = ACTIONS(6415), - [aux_sym__simple_variable_name_token1] = ACTIONS(6413), - [sym_variable_name] = ACTIONS(6417), - [anon_sym_DOLLAR] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_AT] = ACTIONS(6415), - [anon_sym_QMARK] = ACTIONS(6415), + [2581] = { + [sym_subscript] = STATE(2153), + [anon_sym__] = ACTIONS(6437), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6437), + [anon_sym_STAR] = ACTIONS(6439), + [aux_sym__simple_variable_name_token1] = ACTIONS(6437), + [sym_variable_name] = ACTIONS(6441), + [anon_sym_DOLLAR] = ACTIONS(6443), + [anon_sym_DASH] = ACTIONS(6443), + [anon_sym_AT] = ACTIONS(6439), + [anon_sym_QMARK] = ACTIONS(6439), }, - [2568] = { - [anon_sym_EQ] = ACTIONS(6421), + [2582] = { + [anon_sym_EQ] = ACTIONS(6445), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2569] = { - [anon_sym_EQ] = ACTIONS(6423), + [2583] = { + [anon_sym_EQ] = ACTIONS(6447), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2570] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2171), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2584] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(2182), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -75759,38 +75994,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2571] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2172), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2585] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2183), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -75832,53 +76067,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2572] = { - [sym_subscript] = STATE(2174), - [anon_sym__] = ACTIONS(6425), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6425), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_POUND] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [aux_sym__simple_variable_name_token1] = ACTIONS(6425), - [sym_variable_name] = ACTIONS(6431), - [anon_sym_DOLLAR] = ACTIONS(6433), - [anon_sym_DASH] = ACTIONS(6433), - [anon_sym_AT] = ACTIONS(6427), - [anon_sym_QMARK] = ACTIONS(6427), + [2586] = { + [sym_subscript] = STATE(2185), + [anon_sym__] = ACTIONS(6449), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6449), + [anon_sym_STAR] = ACTIONS(6451), + [anon_sym_POUND] = ACTIONS(6453), + [anon_sym_BANG] = ACTIONS(6453), + [aux_sym__simple_variable_name_token1] = ACTIONS(6449), + [sym_variable_name] = ACTIONS(6455), + [anon_sym_DOLLAR] = ACTIONS(6457), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_AT] = ACTIONS(6451), + [anon_sym_QMARK] = ACTIONS(6451), }, - [2573] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2178), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2179), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2587] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(2189), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2190), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -75920,61 +76155,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2574] = { - [sym_subscript] = STATE(2182), - [anon_sym__] = ACTIONS(6435), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6437), - [aux_sym__simple_variable_name_token1] = ACTIONS(6435), - [sym_variable_name] = ACTIONS(6439), - [anon_sym_DOLLAR] = ACTIONS(6441), - [anon_sym_DASH] = ACTIONS(6441), - [anon_sym_AT] = ACTIONS(6437), - [anon_sym_QMARK] = ACTIONS(6437), + [2588] = { + [sym_subscript] = STATE(2193), + [anon_sym__] = ACTIONS(6459), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6459), + [anon_sym_STAR] = ACTIONS(6461), + [aux_sym__simple_variable_name_token1] = ACTIONS(6459), + [sym_variable_name] = ACTIONS(6463), + [anon_sym_DOLLAR] = ACTIONS(6465), + [anon_sym_DASH] = ACTIONS(6465), + [anon_sym_AT] = ACTIONS(6461), + [anon_sym_QMARK] = ACTIONS(6461), }, - [2575] = { - [anon_sym_EQ] = ACTIONS(6443), + [2589] = { + [anon_sym_EQ] = ACTIONS(6467), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2576] = { - [anon_sym_EQ] = ACTIONS(6445), + [2590] = { + [anon_sym_EQ] = ACTIONS(6469), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2577] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2211), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2591] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(2222), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -76016,38 +76251,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2578] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2212), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2592] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2223), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -76089,53 +76324,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2579] = { - [sym_subscript] = STATE(2214), - [anon_sym__] = ACTIONS(6447), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6449), - [anon_sym_POUND] = ACTIONS(6451), - [anon_sym_BANG] = ACTIONS(6451), - [aux_sym__simple_variable_name_token1] = ACTIONS(6447), - [sym_variable_name] = ACTIONS(6453), - [anon_sym_DOLLAR] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_AT] = ACTIONS(6449), - [anon_sym_QMARK] = ACTIONS(6449), + [2593] = { + [sym_subscript] = STATE(2225), + [anon_sym__] = ACTIONS(6471), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6471), + [anon_sym_STAR] = ACTIONS(6473), + [anon_sym_POUND] = ACTIONS(6475), + [anon_sym_BANG] = ACTIONS(6475), + [aux_sym__simple_variable_name_token1] = ACTIONS(6471), + [sym_variable_name] = ACTIONS(6477), + [anon_sym_DOLLAR] = ACTIONS(6479), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_AT] = ACTIONS(6473), + [anon_sym_QMARK] = ACTIONS(6473), }, - [2580] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2218), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2219), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2594] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(2229), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2230), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -76177,61 +76412,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2581] = { - [sym_subscript] = STATE(2222), - [anon_sym__] = ACTIONS(6457), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6459), - [aux_sym__simple_variable_name_token1] = ACTIONS(6457), - [sym_variable_name] = ACTIONS(6461), - [anon_sym_DOLLAR] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_AT] = ACTIONS(6459), - [anon_sym_QMARK] = ACTIONS(6459), + [2595] = { + [sym_subscript] = STATE(2233), + [anon_sym__] = ACTIONS(6481), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6481), + [anon_sym_STAR] = ACTIONS(6483), + [aux_sym__simple_variable_name_token1] = ACTIONS(6481), + [sym_variable_name] = ACTIONS(6485), + [anon_sym_DOLLAR] = ACTIONS(6487), + [anon_sym_DASH] = ACTIONS(6487), + [anon_sym_AT] = ACTIONS(6483), + [anon_sym_QMARK] = ACTIONS(6483), }, - [2582] = { - [anon_sym_EQ] = ACTIONS(6465), + [2596] = { + [anon_sym_EQ] = ACTIONS(6489), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2583] = { - [anon_sym_EQ] = ACTIONS(6467), + [2597] = { + [anon_sym_EQ] = ACTIONS(6491), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2584] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2251), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2598] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(2262), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -76273,38 +76508,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2585] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2252), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2599] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2263), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -76346,53 +76581,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2586] = { - [sym_subscript] = STATE(2254), - [anon_sym__] = ACTIONS(6469), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6469), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_POUND] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [aux_sym__simple_variable_name_token1] = ACTIONS(6469), - [sym_variable_name] = ACTIONS(6475), - [anon_sym_DOLLAR] = ACTIONS(6477), - [anon_sym_DASH] = ACTIONS(6477), - [anon_sym_AT] = ACTIONS(6471), - [anon_sym_QMARK] = ACTIONS(6471), + [2600] = { + [sym_subscript] = STATE(2265), + [anon_sym__] = ACTIONS(6493), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6493), + [anon_sym_STAR] = ACTIONS(6495), + [anon_sym_POUND] = ACTIONS(6497), + [anon_sym_BANG] = ACTIONS(6497), + [aux_sym__simple_variable_name_token1] = ACTIONS(6493), + [sym_variable_name] = ACTIONS(6499), + [anon_sym_DOLLAR] = ACTIONS(6501), + [anon_sym_DASH] = ACTIONS(6501), + [anon_sym_AT] = ACTIONS(6495), + [anon_sym_QMARK] = ACTIONS(6495), }, - [2587] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2258), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2259), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2601] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(2269), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2270), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -76434,61 +76669,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2588] = { - [sym_subscript] = STATE(2262), - [anon_sym__] = ACTIONS(6479), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [aux_sym__simple_variable_name_token1] = ACTIONS(6479), - [sym_variable_name] = ACTIONS(6483), - [anon_sym_DOLLAR] = ACTIONS(6485), - [anon_sym_DASH] = ACTIONS(6485), - [anon_sym_AT] = ACTIONS(6481), - [anon_sym_QMARK] = ACTIONS(6481), + [2602] = { + [sym_subscript] = STATE(2273), + [anon_sym__] = ACTIONS(6503), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6503), + [anon_sym_STAR] = ACTIONS(6505), + [aux_sym__simple_variable_name_token1] = ACTIONS(6503), + [sym_variable_name] = ACTIONS(6507), + [anon_sym_DOLLAR] = ACTIONS(6509), + [anon_sym_DASH] = ACTIONS(6509), + [anon_sym_AT] = ACTIONS(6505), + [anon_sym_QMARK] = ACTIONS(6505), }, - [2589] = { - [anon_sym_EQ] = ACTIONS(6487), + [2603] = { + [anon_sym_EQ] = ACTIONS(6511), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2590] = { - [anon_sym_EQ] = ACTIONS(6489), + [2604] = { + [anon_sym_EQ] = ACTIONS(6513), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2591] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2291), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2605] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(2302), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -76530,38 +76765,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2592] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2292), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2606] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2303), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -76603,53 +76838,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2593] = { - [sym_subscript] = STATE(2294), - [anon_sym__] = ACTIONS(6491), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6493), - [anon_sym_POUND] = ACTIONS(6495), - [anon_sym_BANG] = ACTIONS(6495), - [aux_sym__simple_variable_name_token1] = ACTIONS(6491), - [sym_variable_name] = ACTIONS(6497), - [anon_sym_DOLLAR] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_AT] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6493), + [2607] = { + [sym_subscript] = STATE(2305), + [anon_sym__] = ACTIONS(6515), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6515), + [anon_sym_STAR] = ACTIONS(6517), + [anon_sym_POUND] = ACTIONS(6519), + [anon_sym_BANG] = ACTIONS(6519), + [aux_sym__simple_variable_name_token1] = ACTIONS(6515), + [sym_variable_name] = ACTIONS(6521), + [anon_sym_DOLLAR] = ACTIONS(6523), + [anon_sym_DASH] = ACTIONS(6523), + [anon_sym_AT] = ACTIONS(6517), + [anon_sym_QMARK] = ACTIONS(6517), }, - [2594] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2298), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2299), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2608] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(2309), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2310), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -76691,61 +76926,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2595] = { - [sym_subscript] = STATE(2302), - [anon_sym__] = ACTIONS(6501), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6501), - [anon_sym_STAR] = ACTIONS(6503), - [aux_sym__simple_variable_name_token1] = ACTIONS(6501), - [sym_variable_name] = ACTIONS(6505), - [anon_sym_DOLLAR] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_AT] = ACTIONS(6503), - [anon_sym_QMARK] = ACTIONS(6503), + [2609] = { + [sym_subscript] = STATE(2313), + [anon_sym__] = ACTIONS(6525), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6527), + [aux_sym__simple_variable_name_token1] = ACTIONS(6525), + [sym_variable_name] = ACTIONS(6529), + [anon_sym_DOLLAR] = ACTIONS(6531), + [anon_sym_DASH] = ACTIONS(6531), + [anon_sym_AT] = ACTIONS(6527), + [anon_sym_QMARK] = ACTIONS(6527), }, - [2596] = { - [anon_sym_EQ] = ACTIONS(6509), + [2610] = { + [anon_sym_EQ] = ACTIONS(6533), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2597] = { - [anon_sym_EQ] = ACTIONS(6511), + [2611] = { + [anon_sym_EQ] = ACTIONS(6535), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2598] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2329), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2612] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(2340), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -76787,53 +77022,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2599] = { - [sym_subscript] = STATE(2330), - [anon_sym__] = ACTIONS(6513), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6513), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_POUND] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [aux_sym__simple_variable_name_token1] = ACTIONS(6513), - [sym_variable_name] = ACTIONS(6519), - [anon_sym_DOLLAR] = ACTIONS(6521), - [anon_sym_DASH] = ACTIONS(6521), - [anon_sym_AT] = ACTIONS(6515), - [anon_sym_QMARK] = ACTIONS(6515), + [2613] = { + [sym_subscript] = STATE(2341), + [anon_sym__] = ACTIONS(6537), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6537), + [anon_sym_STAR] = ACTIONS(6539), + [anon_sym_POUND] = ACTIONS(6541), + [anon_sym_BANG] = ACTIONS(6541), + [aux_sym__simple_variable_name_token1] = ACTIONS(6537), + [sym_variable_name] = ACTIONS(6543), + [anon_sym_DOLLAR] = ACTIONS(6545), + [anon_sym_DASH] = ACTIONS(6545), + [anon_sym_AT] = ACTIONS(6539), + [anon_sym_QMARK] = ACTIONS(6539), }, - [2600] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2332), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2333), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2614] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(2343), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2344), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -76875,61 +77110,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2601] = { - [sym_subscript] = STATE(2336), - [anon_sym__] = ACTIONS(6523), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6525), - [aux_sym__simple_variable_name_token1] = ACTIONS(6523), - [sym_variable_name] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6529), - [anon_sym_DASH] = ACTIONS(6529), - [anon_sym_AT] = ACTIONS(6525), - [anon_sym_QMARK] = ACTIONS(6525), + [2615] = { + [sym_subscript] = STATE(2347), + [anon_sym__] = ACTIONS(6547), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6547), + [anon_sym_STAR] = ACTIONS(6549), + [aux_sym__simple_variable_name_token1] = ACTIONS(6547), + [sym_variable_name] = ACTIONS(6551), + [anon_sym_DOLLAR] = ACTIONS(6553), + [anon_sym_DASH] = ACTIONS(6553), + [anon_sym_AT] = ACTIONS(6549), + [anon_sym_QMARK] = ACTIONS(6549), }, - [2602] = { - [anon_sym_EQ] = ACTIONS(6531), + [2616] = { + [anon_sym_EQ] = ACTIONS(6555), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2603] = { - [anon_sym_EQ] = ACTIONS(6533), + [2617] = { + [anon_sym_EQ] = ACTIONS(6557), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2604] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(1462), - [sym_function_definition] = STATE(1462), - [sym_negated_command] = STATE(1462), - [sym_test_command] = STATE(1462), - [sym_variable_assignment] = STATE(541), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(543), - [sym_redirected_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_subshell] = STATE(1462), - [sym_declaration_command] = STATE(1462), - [sym_unset_command] = STATE(1462), - [sym_file_redirect] = STATE(1464), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(1464), - [sym__statements] = STATE(2362), - [sym_c_style_for_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_case_statement] = STATE(1462), - [sym_pipeline] = STATE(1462), - [sym_list] = STATE(1462), - [sym_command] = STATE(1462), - [sym_command_name] = STATE(545), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2618] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_negated_command] = STATE(1469), + [sym_test_command] = STATE(1469), + [sym_variable_assignment] = STATE(542), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(544), + [sym_redirected_statement] = STATE(1469), + [sym_for_statement] = STATE(1469), + [sym_compound_statement] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_file_redirect] = STATE(1471), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(1471), + [sym__statements] = STATE(2373), + [sym_c_style_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(546), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(183), @@ -76971,53 +77206,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2605] = { - [sym_subscript] = STATE(2363), - [anon_sym__] = ACTIONS(6535), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6535), - [anon_sym_STAR] = ACTIONS(6537), - [anon_sym_POUND] = ACTIONS(6539), - [anon_sym_BANG] = ACTIONS(6539), - [aux_sym__simple_variable_name_token1] = ACTIONS(6535), - [sym_variable_name] = ACTIONS(6541), - [anon_sym_DOLLAR] = ACTIONS(6543), - [anon_sym_DASH] = ACTIONS(6543), - [anon_sym_AT] = ACTIONS(6537), - [anon_sym_QMARK] = ACTIONS(6537), + [2619] = { + [sym_subscript] = STATE(2374), + [anon_sym__] = ACTIONS(6559), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6559), + [anon_sym_STAR] = ACTIONS(6561), + [anon_sym_POUND] = ACTIONS(6563), + [anon_sym_BANG] = ACTIONS(6563), + [aux_sym__simple_variable_name_token1] = ACTIONS(6559), + [sym_variable_name] = ACTIONS(6565), + [anon_sym_DOLLAR] = ACTIONS(6567), + [anon_sym_DASH] = ACTIONS(6567), + [anon_sym_AT] = ACTIONS(6561), + [anon_sym_QMARK] = ACTIONS(6561), }, - [2606] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym_if_statement] = STATE(387), - [sym_function_definition] = STATE(387), - [sym_negated_command] = STATE(387), - [sym_test_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), - [aux_sym__statements_repeat1] = STATE(390), - [sym_redirected_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_compound_statement] = STATE(387), - [sym_subshell] = STATE(387), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), - [sym_file_redirect] = STATE(2365), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), - [sym__statements] = STATE(2366), - [sym_c_style_for_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_pipeline] = STATE(387), - [sym_list] = STATE(387), - [sym_command] = STATE(387), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [2620] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym_if_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_negated_command] = STATE(388), + [sym_test_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), + [aux_sym__statements_repeat1] = STATE(391), + [sym_redirected_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_compound_statement] = STATE(388), + [sym_subshell] = STATE(388), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), + [sym_file_redirect] = STATE(2376), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), + [sym__statements] = STATE(2377), + [sym_c_style_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(65), @@ -77059,60 +77294,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_ansii_c_string] = ACTIONS(93), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2607] = { - [sym_subscript] = STATE(2369), - [anon_sym__] = ACTIONS(6545), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6545), - [anon_sym_STAR] = ACTIONS(6547), - [aux_sym__simple_variable_name_token1] = ACTIONS(6545), - [sym_variable_name] = ACTIONS(6549), - [anon_sym_DOLLAR] = ACTIONS(6551), - [anon_sym_DASH] = ACTIONS(6551), - [anon_sym_AT] = ACTIONS(6547), - [anon_sym_QMARK] = ACTIONS(6547), + [2621] = { + [sym_subscript] = STATE(2380), + [anon_sym__] = ACTIONS(6569), + [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(6569), + [anon_sym_STAR] = ACTIONS(6571), + [aux_sym__simple_variable_name_token1] = ACTIONS(6569), + [sym_variable_name] = ACTIONS(6573), + [anon_sym_DOLLAR] = ACTIONS(6575), + [anon_sym_DASH] = ACTIONS(6575), + [anon_sym_AT] = ACTIONS(6571), + [anon_sym_QMARK] = ACTIONS(6571), }, - [2608] = { - [anon_sym_EQ] = ACTIONS(6553), + [2622] = { + [anon_sym_EQ] = ACTIONS(6577), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2609] = { - [anon_sym_EQ] = ACTIONS(6555), + [2623] = { + [anon_sym_EQ] = ACTIONS(6579), [sym_comment] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(471), }, - [2610] = { - [aux_sym__literal_repeat1] = STATE(386), - [sym__terminated_statement] = STATE(2411), + [2624] = { + [aux_sym__literal_repeat1] = STATE(387), + [sym__terminated_statement] = STATE(2422), [sym_if_statement] = STATE(65), [sym_function_definition] = STATE(65), [sym_negated_command] = STATE(65), [sym_test_command] = STATE(65), [sym_variable_assignment] = STATE(66), - [sym_subscript] = STATE(2407), - [sym_concatenation] = STATE(389), - [sym_expansion] = STATE(382), - [sym_command_substitution] = STATE(382), + [sym_subscript] = STATE(2418), + [sym_concatenation] = STATE(390), + [sym_expansion] = STATE(383), + [sym_command_substitution] = STATE(383), [sym_redirected_statement] = STATE(65), [sym_for_statement] = STATE(65), [sym_compound_statement] = STATE(65), [sym_subshell] = STATE(65), [sym_declaration_command] = STATE(65), [sym_unset_command] = STATE(65), - [sym_file_redirect] = STATE(391), - [sym_string] = STATE(382), - [sym_process_substitution] = STATE(382), - [aux_sym_command_repeat1] = STATE(391), + [sym_file_redirect] = STATE(392), + [sym_string] = STATE(383), + [sym_process_substitution] = STATE(383), + [aux_sym_command_repeat1] = STATE(392), [sym_c_style_for_statement] = STATE(65), [sym_while_statement] = STATE(65), [sym_case_statement] = STATE(65), [sym_pipeline] = STATE(65), [sym_list] = STATE(65), [sym_command] = STATE(65), - [sym_command_name] = STATE(392), - [sym_simple_expansion] = STATE(382), - [sym_string_expansion] = STATE(382), + [sym_command_name] = STATE(393), + [sym_simple_expansion] = STATE(383), + [sym_string_expansion] = STATE(383), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(65), [anon_sym_DOLLAR] = ACTIONS(69), @@ -77154,297 +77389,297 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(107), [anon_sym_LBRACK_LBRACK] = ACTIONS(109), }, - [2611] = { + [2625] = { [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(6557), - [aux_sym__simple_variable_name_token1] = ACTIONS(6559), + [anon_sym_LPAREN_LPAREN] = ACTIONS(6581), + [aux_sym__simple_variable_name_token1] = ACTIONS(6583), }, - [2612] = { - [aux_sym_concatenation_repeat1] = STATE(738), - [anon_sym_AMP] = ACTIONS(6561), + [2626] = { + [aux_sym_concatenation_repeat1] = STATE(739), + [anon_sym_AMP] = ACTIONS(6585), [sym_comment] = ACTIONS(3), [sym__concat] = ACTIONS(515), - [anon_sym_LF] = ACTIONS(6563), - [anon_sym_SEMI] = ACTIONS(6561), - [anon_sym_SEMI_SEMI] = ACTIONS(6561), - [anon_sym_in] = ACTIONS(6565), + [anon_sym_LF] = ACTIONS(6587), + [anon_sym_SEMI] = ACTIONS(6585), + [anon_sym_SEMI_SEMI] = ACTIONS(6585), + [anon_sym_in] = ACTIONS(6589), }, - [2613] = { - [aux_sym__literal_repeat1] = STATE(741), - [anon_sym_AMP] = ACTIONS(6567), + [2627] = { + [aux_sym__literal_repeat1] = STATE(742), + [anon_sym_AMP] = ACTIONS(6591), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6569), - [anon_sym_SEMI] = ACTIONS(6567), + [anon_sym_LF] = ACTIONS(6593), + [anon_sym_SEMI] = ACTIONS(6591), [sym__special_character] = ACTIONS(527), - [anon_sym_in] = ACTIONS(6571), - [anon_sym_SEMI_SEMI] = ACTIONS(6567), + [anon_sym_in] = ACTIONS(6595), + [anon_sym_SEMI_SEMI] = ACTIONS(6591), }, - [2614] = { - [anon_sym_AMP] = ACTIONS(6561), + [2628] = { + [anon_sym_AMP] = ACTIONS(6585), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6563), - [anon_sym_SEMI] = ACTIONS(6561), - [anon_sym_SEMI_SEMI] = ACTIONS(6561), - [anon_sym_in] = ACTIONS(6565), + [anon_sym_LF] = ACTIONS(6587), + [anon_sym_SEMI] = ACTIONS(6585), + [anon_sym_SEMI_SEMI] = ACTIONS(6585), + [anon_sym_in] = ACTIONS(6589), }, - [2615] = { - [anon_sym_in] = ACTIONS(6573), - [sym_comment] = ACTIONS(41), - }, - [2616] = { - [anon_sym_in] = ACTIONS(6575), + [2629] = { + [anon_sym_in] = ACTIONS(6597), [sym_comment] = ACTIONS(41), }, - [2617] = { - [aux_sym__literal_repeat1] = STATE(561), - [sym_unary_expression] = STATE(2619), - [sym_postfix_expression] = STATE(2619), - [sym_string] = STATE(559), - [sym_process_substitution] = STATE(559), - [sym__expression] = STATE(2619), - [sym_binary_expression] = STATE(2619), - [sym_concatenation] = STATE(2619), - [sym_expansion] = STATE(559), - [sym_command_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(2619), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), + [2630] = { + [anon_sym_in] = ACTIONS(6599), + [sym_comment] = ACTIONS(41), + }, + [2631] = { + [aux_sym__literal_repeat1] = STATE(562), + [sym_unary_expression] = STATE(2633), + [sym_postfix_expression] = STATE(2633), + [sym_string] = STATE(560), + [sym_process_substitution] = STATE(560), + [sym__expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_concatenation] = STATE(2633), + [sym_expansion] = STATE(560), + [sym_command_substitution] = STATE(560), + [sym_parenthesized_expression] = STATE(2633), + [sym_simple_expansion] = STATE(560), + [sym_string_expansion] = STATE(560), [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(615), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_GT_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_GT_LPAREN] = ACTIONS(621), [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), [sym_word] = ACTIONS(609), - [sym__special_character] = ACTIONS(627), + [sym__special_character] = ACTIONS(629), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(6577), + [anon_sym_LF] = ACTIONS(6601), [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(6577), + [anon_sym_SEMI] = ACTIONS(6601), [sym_test_operator] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_LT_LPAREN] = ACTIONS(619), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_LT_LPAREN] = ACTIONS(621), [sym_ansii_c_string] = ACTIONS(609), - [anon_sym_SEMI_SEMI] = ACTIONS(6577), - [anon_sym_AMP] = ACTIONS(6577), - }, - [2618] = { - [sym_command_substitution] = STATE(482), - [aux_sym__literal_repeat1] = STATE(484), - [sym_string] = STATE(482), - [sym_process_substitution] = STATE(482), - [aux_sym_for_statement_repeat1] = STATE(2422), - [sym_simple_expansion] = STATE(482), - [sym_string_expansion] = STATE(482), - [sym_concatenation] = STATE(2422), - [sym_expansion] = STATE(482), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1108), - [anon_sym_BQUOTE] = ACTIONS(1112), - [anon_sym_GT_LPAREN] = ACTIONS(1110), - [sym_number] = ACTIONS(1104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1100), - [sym_word] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1110), - [sym_ansii_c_string] = ACTIONS(1102), - [sym__special_character] = ACTIONS(1114), - }, - [2619] = { - [anon_sym_PLUS_EQ] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ_TILDE] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_DASH_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6579), - [anon_sym_SEMI] = ACTIONS(6579), - [sym_test_operator] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(6579), - [anon_sym_AMP] = ACTIONS(6579), - }, - [2620] = { - [aux_sym__literal_repeat1] = STATE(561), - [sym_unary_expression] = STATE(2621), - [sym_postfix_expression] = STATE(2621), - [sym_string] = STATE(559), - [sym_process_substitution] = STATE(559), - [sym__expression] = STATE(2621), - [sym_binary_expression] = STATE(2621), - [sym_concatenation] = STATE(2621), - [sym_expansion] = STATE(559), - [sym_command_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(2621), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), + [anon_sym_SEMI_SEMI] = ACTIONS(6601), + [anon_sym_AMP] = ACTIONS(6601), + }, + [2632] = { + [sym_command_substitution] = STATE(483), + [aux_sym__literal_repeat1] = STATE(485), + [sym_string] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_for_statement_repeat1] = STATE(2433), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_concatenation] = STATE(2433), + [sym_expansion] = STATE(483), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_GT_LPAREN] = ACTIONS(1114), + [sym_number] = ACTIONS(1108), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [sym_word] = ACTIONS(1108), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1114), + [sym_ansii_c_string] = ACTIONS(1106), + [sym__special_character] = ACTIONS(1118), + }, + [2633] = { + [anon_sym_PLUS_EQ] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1096), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_EQ_TILDE] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_LT_EQ] = ACTIONS(1096), + [anon_sym_DASH_EQ] = ACTIONS(1096), + [anon_sym_BANG_EQ] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(6603), + [anon_sym_SEMI] = ACTIONS(6603), + [sym_test_operator] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_AMP_AMP] = ACTIONS(1096), + [anon_sym_SEMI_SEMI] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6603), + }, + [2634] = { + [aux_sym__literal_repeat1] = STATE(562), + [sym_unary_expression] = STATE(2635), + [sym_postfix_expression] = STATE(2635), + [sym_string] = STATE(560), + [sym_process_substitution] = STATE(560), + [sym__expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_concatenation] = STATE(2635), + [sym_expansion] = STATE(560), + [sym_command_substitution] = STATE(560), + [sym_parenthesized_expression] = STATE(2635), + [sym_simple_expansion] = STATE(560), + [sym_string_expansion] = STATE(560), [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(615), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_GT_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_GT_LPAREN] = ACTIONS(621), [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), [sym_word] = ACTIONS(609), - [sym__special_character] = ACTIONS(627), + [sym__special_character] = ACTIONS(629), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(6579), + [anon_sym_LF] = ACTIONS(6603), [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(6579), + [anon_sym_SEMI] = ACTIONS(6603), [sym_test_operator] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_LT_LPAREN] = ACTIONS(619), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_LT_LPAREN] = ACTIONS(621), [sym_ansii_c_string] = ACTIONS(609), - [anon_sym_SEMI_SEMI] = ACTIONS(6579), - [anon_sym_AMP] = ACTIONS(6579), - }, - [2621] = { - [anon_sym_PLUS_EQ] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ_TILDE] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_DASH_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6581), - [anon_sym_SEMI] = ACTIONS(6581), - [sym_test_operator] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(6581), - [anon_sym_AMP] = ACTIONS(6581), - }, - [2622] = { - [sym_heredoc_redirect] = STATE(2625), - [aux_sym_redirected_statement_repeat1] = STATE(2625), - [sym_herestring_redirect] = STATE(2625), - [sym_file_redirect] = STATE(2625), + [anon_sym_SEMI_SEMI] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6603), + }, + [2635] = { + [anon_sym_PLUS_EQ] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1096), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_EQ_TILDE] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_LT_EQ] = ACTIONS(1096), + [anon_sym_DASH_EQ] = ACTIONS(1096), + [anon_sym_BANG_EQ] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(6605), + [anon_sym_SEMI] = ACTIONS(6605), + [sym_test_operator] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_AMP_AMP] = ACTIONS(1096), + [anon_sym_SEMI_SEMI] = ACTIONS(6605), + [anon_sym_AMP] = ACTIONS(6605), + }, + [2636] = { + [sym_heredoc_redirect] = STATE(2639), + [aux_sym_redirected_statement_repeat1] = STATE(2639), + [sym_herestring_redirect] = STATE(2639), + [sym_file_redirect] = STATE(2639), [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_AMP_GT_GT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(684), + [anon_sym_AMP_GT_GT] = ACTIONS(2254), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_SEMI] = ACTIONS(682), + [anon_sym_LF] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(684), [anon_sym_LT_LT] = ACTIONS(489), - [sym_file_descriptor] = ACTIONS(2256), - [anon_sym_GT] = ACTIONS(2250), - [anon_sym_AMP_GT] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(682), - [anon_sym_LT_LT_LT] = ACTIONS(2260), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_GT_AMP] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_esac] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_LT_AMP] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(682), - [anon_sym_SEMI_SEMI] = ACTIONS(682), - [anon_sym_PIPE_AMP] = ACTIONS(682), - }, - [2623] = { - [sym_heredoc_redirect] = STATE(2622), - [aux_sym_redirected_statement_repeat1] = STATE(2622), - [sym_herestring_redirect] = STATE(2622), - [sym_file_redirect] = STATE(2622), - [anon_sym_LT_LT_DASH] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1122), - [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_LT_LT_LT] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_esac] = ACTIONS(1122), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), - }, - [2624] = { - [aux_sym_concatenation_repeat1] = STATE(2433), - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1156), - [sym_file_descriptor] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_AMP_GT] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_GT_AMP] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_esac] = ACTIONS(1156), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_LT_AMP] = ACTIONS(1156), - [sym__concat] = ACTIONS(2135), - [anon_sym_AMP_AMP] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(1156), - }, - [2625] = { - [sym_heredoc_redirect] = STATE(2625), - [aux_sym_redirected_statement_repeat1] = STATE(2625), - [sym_herestring_redirect] = STATE(2625), - [sym_file_redirect] = STATE(2625), - [anon_sym_LT_LT_DASH] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_AMP_GT_GT] = ACTIONS(6583), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_LT_LT] = ACTIONS(2142), - [sym_file_descriptor] = ACTIONS(6586), - [anon_sym_GT] = ACTIONS(6583), - [anon_sym_AMP_GT] = ACTIONS(6583), - [anon_sym_PIPE_PIPE] = ACTIONS(1171), - [anon_sym_LT_LT_LT] = ACTIONS(6589), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_GT_AMP] = ACTIONS(6583), - [anon_sym_LT] = ACTIONS(6583), - [anon_sym_esac] = ACTIONS(1171), - [anon_sym_GT_GT] = ACTIONS(6583), - [anon_sym_LT_AMP] = ACTIONS(6583), - [anon_sym_AMP_AMP] = ACTIONS(1171), - [anon_sym_SEMI_SEMI] = ACTIONS(1171), - [anon_sym_PIPE_AMP] = ACTIONS(1171), - }, - [2626] = { - [aux_sym_concatenation_repeat1] = STATE(2433), + [sym_file_descriptor] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_AMP_GT] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_LT_LT_LT] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(684), + [anon_sym_GT_AMP] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_esac] = ACTIONS(684), + [anon_sym_GT_GT] = ACTIONS(2254), + [anon_sym_LT_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(684), + [anon_sym_SEMI_SEMI] = ACTIONS(684), + [anon_sym_PIPE_AMP] = ACTIONS(684), + }, + [2637] = { + [sym_heredoc_redirect] = STATE(2636), + [aux_sym_redirected_statement_repeat1] = STATE(2636), + [sym_herestring_redirect] = STATE(2636), + [sym_file_redirect] = STATE(2636), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_esac] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), + }, + [2638] = { + [aux_sym_concatenation_repeat1] = STATE(2445), + [anon_sym_LT_LT_DASH] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_AMP_GT_GT] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1160), + [sym_file_descriptor] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1160), + [anon_sym_AMP_GT] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [anon_sym_LT_LT_LT] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_GT_AMP] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_esac] = ACTIONS(1160), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_LT_AMP] = ACTIONS(1160), + [sym__concat] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_SEMI_SEMI] = ACTIONS(1160), + [anon_sym_PIPE_AMP] = ACTIONS(1160), + }, + [2639] = { + [sym_heredoc_redirect] = STATE(2639), + [aux_sym_redirected_statement_repeat1] = STATE(2639), + [sym_herestring_redirect] = STATE(2639), + [sym_file_redirect] = STATE(2639), + [anon_sym_LT_LT_DASH] = ACTIONS(2146), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_AMP_GT_GT] = ACTIONS(6607), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_LT_LT] = ACTIONS(2146), + [sym_file_descriptor] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6607), + [anon_sym_AMP_GT] = ACTIONS(6607), + [anon_sym_PIPE_PIPE] = ACTIONS(1175), + [anon_sym_LT_LT_LT] = ACTIONS(6613), + [anon_sym_PIPE] = ACTIONS(1175), + [anon_sym_GT_AMP] = ACTIONS(6607), + [anon_sym_LT] = ACTIONS(6607), + [anon_sym_esac] = ACTIONS(1175), + [anon_sym_GT_GT] = ACTIONS(6607), + [anon_sym_LT_AMP] = ACTIONS(6607), + [anon_sym_AMP_AMP] = ACTIONS(1175), + [anon_sym_SEMI_SEMI] = ACTIONS(1175), + [anon_sym_PIPE_AMP] = ACTIONS(1175), + }, + [2640] = { + [aux_sym_concatenation_repeat1] = STATE(2445), [anon_sym_LT_LT_DASH] = ACTIONS(363), [anon_sym_AMP] = ACTIONS(363), [anon_sym_AMP_GT_GT] = ACTIONS(363), @@ -77463,117 +77698,137 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_esac] = ACTIONS(363), [anon_sym_GT_GT] = ACTIONS(363), [anon_sym_LT_AMP] = ACTIONS(363), - [sym__concat] = ACTIONS(2135), + [sym__concat] = ACTIONS(2139), [anon_sym_AMP_AMP] = ACTIONS(363), [anon_sym_SEMI_SEMI] = ACTIONS(363), [anon_sym_PIPE_AMP] = ACTIONS(363), }, - [2627] = { - [aux_sym_concatenation_repeat1] = STATE(2433), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), + [2641] = { + [aux_sym_concatenation_repeat1] = STATE(2445), + [anon_sym_LT_LT_DASH] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_AMP_GT_GT] = ACTIONS(1059), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1055), - [anon_sym_SEMI] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_esac] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [sym__concat] = ACTIONS(2135), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), + [anon_sym_LF] = ACTIONS(1057), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [sym_file_descriptor] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_AMP_GT] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1059), + [anon_sym_LT_LT_LT] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_GT_AMP] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_esac] = ACTIONS(1059), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_LT_AMP] = ACTIONS(1059), + [sym__concat] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(1059), + [anon_sym_SEMI_SEMI] = ACTIONS(1059), + [anon_sym_PIPE_AMP] = ACTIONS(1059), }, - [2628] = { - [sym_command_substitution] = STATE(2612), - [aux_sym__literal_repeat1] = STATE(2613), - [sym_string] = STATE(2612), - [sym_process_substitution] = STATE(2612), - [sym_simple_expansion] = STATE(2612), - [sym_string_expansion] = STATE(2612), - [sym_concatenation] = STATE(2614), - [sym_expansion] = STATE(2612), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6592), + [2642] = { + [aux_sym_concatenation_repeat1] = STATE(2443), + [anon_sym_AMP] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(515), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(211), + [sym__special_character] = ACTIONS(211), + }, + [2643] = { + [sym_command_substitution] = STATE(2626), + [aux_sym__literal_repeat1] = STATE(2627), + [sym_string] = STATE(2626), + [sym_process_substitution] = STATE(2626), + [sym_simple_expansion] = STATE(2626), + [sym_string_expansion] = STATE(2626), + [sym_concatenation] = STATE(2628), + [sym_expansion] = STATE(2626), + [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(6616), [anon_sym_DOLLAR] = ACTIONS(225), [anon_sym_BQUOTE] = ACTIONS(229), [anon_sym_GT_LPAREN] = ACTIONS(227), - [sym_number] = ACTIONS(6594), + [sym_number] = ACTIONS(6618), [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(217), - [sym_word] = ACTIONS(6594), + [sym_word] = ACTIONS(6618), [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), [anon_sym_LT_LPAREN] = ACTIONS(227), - [sym_ansii_c_string] = ACTIONS(6592), + [sym_ansii_c_string] = ACTIONS(6616), [sym__special_character] = ACTIONS(231), }, - [2629] = { - [aux_sym__literal_repeat1] = STATE(561), - [sym_unary_expression] = STATE(2630), - [sym_postfix_expression] = STATE(2630), - [sym_string] = STATE(559), - [sym_process_substitution] = STATE(559), - [sym__expression] = STATE(2630), - [sym_binary_expression] = STATE(2630), - [sym_concatenation] = STATE(2630), - [sym_expansion] = STATE(559), - [sym_command_substitution] = STATE(559), - [sym_parenthesized_expression] = STATE(2630), - [sym_simple_expansion] = STATE(559), - [sym_string_expansion] = STATE(559), + [2644] = { + [aux_sym__literal_repeat1] = STATE(562), + [sym_unary_expression] = STATE(2646), + [sym_postfix_expression] = STATE(2646), + [sym_string] = STATE(560), + [sym_process_substitution] = STATE(560), + [sym_variable_assignment] = STATE(2645), + [sym_subscript] = STATE(2485), + [sym__expression] = STATE(2646), + [sym_binary_expression] = STATE(2646), + [sym_concatenation] = STATE(2646), + [sym_expansion] = STATE(560), + [sym_command_substitution] = STATE(560), + [sym_parenthesized_expression] = STATE(2646), + [sym_simple_expansion] = STATE(560), + [sym_string_expansion] = STATE(560), [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(615), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_GT_LPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_GT_LPAREN] = ACTIONS(621), [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), [sym_word] = ACTIONS(609), - [sym__special_character] = ACTIONS(627), + [sym__special_character] = ACTIONS(629), [sym_comment] = ACTIONS(3), [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(6596), + [anon_sym_LF] = ACTIONS(6620), [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(6596), + [anon_sym_SEMI] = ACTIONS(6620), + [sym_variable_name] = ACTIONS(615), [sym_test_operator] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_LT_LPAREN] = ACTIONS(619), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_LT_LPAREN] = ACTIONS(621), [sym_ansii_c_string] = ACTIONS(609), - [anon_sym_SEMI_SEMI] = ACTIONS(6596), - [anon_sym_AMP] = ACTIONS(6596), - }, - [2630] = { - [anon_sym_PLUS_EQ] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ_TILDE] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_DASH_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6598), - [anon_sym_SEMI] = ACTIONS(6598), - [sym_test_operator] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(6598), - [anon_sym_AMP] = ACTIONS(6598), + [anon_sym_SEMI_SEMI] = ACTIONS(6620), + [anon_sym_AMP] = ACTIONS(6620), + }, + [2645] = { + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(6622), + [anon_sym_SEMI] = ACTIONS(6624), + [anon_sym_SEMI_SEMI] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), + }, + [2646] = { + [anon_sym_PLUS_EQ] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1096), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_EQ_TILDE] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_LT_EQ] = ACTIONS(1096), + [anon_sym_DASH_EQ] = ACTIONS(1096), + [anon_sym_BANG_EQ] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(6624), + [anon_sym_SEMI] = ACTIONS(6624), + [sym_test_operator] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_AMP_AMP] = ACTIONS(1096), + [anon_sym_SEMI_SEMI] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), }, }; @@ -77610,69 +77865,69 @@ static TSParseActionEntry ts_parse_actions[] = { [57] = {.count = 1, .reusable = false}, SHIFT(24), [59] = {.count = 1, .reusable = false}, SHIFT(25), [61] = {.count = 1, .reusable = true}, SHIFT(26), - [63] = {.count = 1, .reusable = false}, SHIFT(2395), - [65] = {.count = 1, .reusable = false}, SHIFT(380), - [67] = {.count = 1, .reusable = false}, SHIFT(381), - [69] = {.count = 1, .reusable = false}, SHIFT(1364), - [71] = {.count = 1, .reusable = true}, SHIFT(2396), - [73] = {.count = 1, .reusable = true}, SHIFT(2397), - [75] = {.count = 1, .reusable = false}, SHIFT(382), - [77] = {.count = 1, .reusable = true}, SHIFT(2398), - [79] = {.count = 1, .reusable = false}, SHIFT(2399), - [81] = {.count = 1, .reusable = false}, SHIFT(383), - [83] = {.count = 1, .reusable = true}, SHIFT(1365), - [85] = {.count = 1, .reusable = false}, SHIFT(384), - [87] = {.count = 1, .reusable = false}, SHIFT(2610), - [89] = {.count = 1, .reusable = false}, SHIFT(2628), - [91] = {.count = 1, .reusable = true}, SHIFT(2400), - [93] = {.count = 1, .reusable = true}, SHIFT(382), - [95] = {.count = 1, .reusable = false}, SHIFT(385), - [97] = {.count = 1, .reusable = true}, SHIFT(2401), - [99] = {.count = 1, .reusable = true}, SHIFT(1366), - [101] = {.count = 1, .reusable = true}, SHIFT(2403), - [103] = {.count = 1, .reusable = false}, SHIFT(2611), - [105] = {.count = 1, .reusable = false}, SHIFT(2404), - [107] = {.count = 1, .reusable = false}, SHIFT(2405), - [109] = {.count = 1, .reusable = true}, SHIFT(2406), + [63] = {.count = 1, .reusable = false}, SHIFT(2406), + [65] = {.count = 1, .reusable = false}, SHIFT(381), + [67] = {.count = 1, .reusable = false}, SHIFT(382), + [69] = {.count = 1, .reusable = false}, SHIFT(1371), + [71] = {.count = 1, .reusable = true}, SHIFT(2407), + [73] = {.count = 1, .reusable = true}, SHIFT(2408), + [75] = {.count = 1, .reusable = false}, SHIFT(383), + [77] = {.count = 1, .reusable = true}, SHIFT(2409), + [79] = {.count = 1, .reusable = false}, SHIFT(2410), + [81] = {.count = 1, .reusable = false}, SHIFT(384), + [83] = {.count = 1, .reusable = true}, SHIFT(1372), + [85] = {.count = 1, .reusable = false}, SHIFT(385), + [87] = {.count = 1, .reusable = false}, SHIFT(2624), + [89] = {.count = 1, .reusable = false}, SHIFT(2643), + [91] = {.count = 1, .reusable = true}, SHIFT(2411), + [93] = {.count = 1, .reusable = true}, SHIFT(383), + [95] = {.count = 1, .reusable = false}, SHIFT(386), + [97] = {.count = 1, .reusable = true}, SHIFT(2412), + [99] = {.count = 1, .reusable = true}, SHIFT(1373), + [101] = {.count = 1, .reusable = true}, SHIFT(2414), + [103] = {.count = 1, .reusable = false}, SHIFT(2625), + [105] = {.count = 1, .reusable = false}, SHIFT(2415), + [107] = {.count = 1, .reusable = false}, SHIFT(2416), + [109] = {.count = 1, .reusable = true}, SHIFT(2417), [111] = {.count = 1, .reusable = true}, SHIFT(38), - [113] = {.count = 1, .reusable = false}, SHIFT(1472), - [115] = {.count = 1, .reusable = true}, SHIFT(2438), - [117] = {.count = 1, .reusable = true}, SHIFT(2439), + [113] = {.count = 1, .reusable = false}, SHIFT(1480), + [115] = {.count = 1, .reusable = true}, SHIFT(2450), + [117] = {.count = 1, .reusable = true}, SHIFT(2451), [119] = {.count = 1, .reusable = false}, SHIFT(38), - [121] = {.count = 1, .reusable = true}, SHIFT(2440), - [123] = {.count = 1, .reusable = true}, SHIFT(1473), - [125] = {.count = 1, .reusable = true}, SHIFT(2443), - [127] = {.count = 1, .reusable = true}, SHIFT(537), + [121] = {.count = 1, .reusable = true}, SHIFT(2452), + [123] = {.count = 1, .reusable = true}, SHIFT(1481), + [125] = {.count = 1, .reusable = true}, SHIFT(2455), + [127] = {.count = 1, .reusable = true}, SHIFT(538), [129] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), - [131] = {.count = 1, .reusable = false}, SHIFT(1517), - [133] = {.count = 1, .reusable = false}, SHIFT(2449), - [135] = {.count = 1, .reusable = false}, SHIFT(2450), + [131] = {.count = 1, .reusable = false}, SHIFT(1525), + [133] = {.count = 1, .reusable = false}, SHIFT(2461), + [135] = {.count = 1, .reusable = false}, SHIFT(2462), [137] = {.count = 1, .reusable = false}, SHIFT(41), - [139] = {.count = 1, .reusable = false}, SHIFT(2451), - [141] = {.count = 1, .reusable = false}, SHIFT(633), + [139] = {.count = 1, .reusable = false}, SHIFT(2463), + [141] = {.count = 1, .reusable = false}, SHIFT(634), [143] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), - [145] = {.count = 1, .reusable = true}, SHIFT(2441), - [147] = {.count = 1, .reusable = false}, SHIFT(1518), - [149] = {.count = 1, .reusable = false}, SHIFT(2454), + [145] = {.count = 1, .reusable = true}, SHIFT(2453), + [147] = {.count = 1, .reusable = false}, SHIFT(1526), + [149] = {.count = 1, .reusable = false}, SHIFT(2466), [151] = {.count = 1, .reusable = false}, SHIFT(43), [153] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), - [155] = {.count = 1, .reusable = false}, SHIFT(1560), - [157] = {.count = 1, .reusable = false}, SHIFT(2459), - [159] = {.count = 1, .reusable = false}, SHIFT(2460), + [155] = {.count = 1, .reusable = false}, SHIFT(1568), + [157] = {.count = 1, .reusable = false}, SHIFT(2471), + [159] = {.count = 1, .reusable = false}, SHIFT(2472), [161] = {.count = 1, .reusable = false}, SHIFT(44), - [163] = {.count = 1, .reusable = false}, SHIFT(2461), - [165] = {.count = 1, .reusable = false}, SHIFT(694), + [163] = {.count = 1, .reusable = false}, SHIFT(2473), + [165] = {.count = 1, .reusable = false}, SHIFT(695), [167] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), - [169] = {.count = 1, .reusable = false}, SHIFT(1561), - [171] = {.count = 1, .reusable = false}, SHIFT(2463), + [169] = {.count = 1, .reusable = false}, SHIFT(1569), + [171] = {.count = 1, .reusable = false}, SHIFT(2475), [173] = {.count = 1, .reusable = false}, SHIFT(46), [175] = {.count = 1, .reusable = false}, SHIFT(47), [177] = {.count = 1, .reusable = true}, SHIFT(48), [179] = {.count = 1, .reusable = true}, SHIFT(47), [181] = {.count = 1, .reusable = true}, SHIFT(49), - [183] = {.count = 1, .reusable = false}, SHIFT(533), - [185] = {.count = 1, .reusable = false}, SHIFT(534), - [187] = {.count = 1, .reusable = false}, SHIFT(1461), + [183] = {.count = 1, .reusable = false}, SHIFT(534), + [185] = {.count = 1, .reusable = false}, SHIFT(535), + [187] = {.count = 1, .reusable = false}, SHIFT(1468), [189] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), [191] = {.count = 1, .reusable = true}, SHIFT(52), [193] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), @@ -77686,59 +77941,59 @@ static TSParseActionEntry ts_parse_actions[] = { [209] = {.count = 1, .reusable = true}, SHIFT(60), [211] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 1), [213] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 1), - [215] = {.count = 1, .reusable = true}, SHIFT(2470), - [217] = {.count = 1, .reusable = true}, SHIFT(1604), + [215] = {.count = 1, .reusable = true}, SHIFT(2482), + [217] = {.count = 1, .reusable = true}, SHIFT(1612), [219] = {.count = 1, .reusable = true}, SHIFT(67), [221] = {.count = 1, .reusable = false}, SHIFT(67), - [223] = {.count = 1, .reusable = true}, SHIFT(2472), - [225] = {.count = 1, .reusable = false}, SHIFT(1603), - [227] = {.count = 1, .reusable = true}, SHIFT(2469), - [229] = {.count = 1, .reusable = true}, SHIFT(2468), - [231] = {.count = 1, .reusable = true}, SHIFT(734), + [223] = {.count = 1, .reusable = true}, SHIFT(2484), + [225] = {.count = 1, .reusable = false}, SHIFT(1611), + [227] = {.count = 1, .reusable = true}, SHIFT(2481), + [229] = {.count = 1, .reusable = true}, SHIFT(2480), + [231] = {.count = 1, .reusable = true}, SHIFT(735), [233] = {.count = 1, .reusable = true}, SHIFT(70), [235] = {.count = 1, .reusable = true}, SHIFT(71), [237] = {.count = 1, .reusable = false}, SHIFT(72), - [239] = {.count = 1, .reusable = false}, SHIFT(1646), + [239] = {.count = 1, .reusable = false}, SHIFT(1654), [241] = {.count = 1, .reusable = true}, SHIFT(72), - [243] = {.count = 1, .reusable = true}, SHIFT(2477), - [245] = {.count = 1, .reusable = true}, SHIFT(2478), + [243] = {.count = 1, .reusable = true}, SHIFT(2489), + [245] = {.count = 1, .reusable = true}, SHIFT(2490), [247] = {.count = 1, .reusable = false}, SHIFT(71), - [249] = {.count = 1, .reusable = true}, SHIFT(2479), - [251] = {.count = 1, .reusable = true}, SHIFT(1647), - [253] = {.count = 1, .reusable = true}, SHIFT(2481), - [255] = {.count = 1, .reusable = true}, SHIFT(771), - [257] = {.count = 1, .reusable = true}, SHIFT(2452), + [249] = {.count = 1, .reusable = true}, SHIFT(2491), + [251] = {.count = 1, .reusable = true}, SHIFT(1655), + [253] = {.count = 1, .reusable = true}, SHIFT(2493), + [255] = {.count = 1, .reusable = true}, SHIFT(772), + [257] = {.count = 1, .reusable = true}, SHIFT(2464), [259] = {.count = 1, .reusable = true}, SHIFT(76), [261] = {.count = 1, .reusable = true}, SHIFT(77), [263] = {.count = 1, .reusable = true}, SHIFT(78), [265] = {.count = 1, .reusable = false}, SHIFT(78), [267] = {.count = 1, .reusable = false}, SHIFT(79), - [269] = {.count = 1, .reusable = false}, SHIFT(2488), + [269] = {.count = 1, .reusable = false}, SHIFT(2500), [271] = {.count = 1, .reusable = false}, SHIFT(80), - [273] = {.count = 1, .reusable = false}, SHIFT(2486), - [275] = {.count = 1, .reusable = false}, SHIFT(2489), + [273] = {.count = 1, .reusable = false}, SHIFT(2498), + [275] = {.count = 1, .reusable = false}, SHIFT(2502), [277] = {.count = 1, .reusable = false}, SHIFT(81), [279] = {.count = 1, .reusable = true}, SHIFT(86), [281] = {.count = 1, .reusable = true}, SHIFT(85), - [283] = {.count = 1, .reusable = true}, SHIFT(2412), - [285] = {.count = 1, .reusable = true}, SHIFT(407), - [287] = {.count = 1, .reusable = false}, SHIFT(408), - [289] = {.count = 1, .reusable = false}, SHIFT(1689), - [291] = {.count = 1, .reusable = true}, SHIFT(408), - [293] = {.count = 1, .reusable = true}, SHIFT(2493), - [295] = {.count = 1, .reusable = true}, SHIFT(2487), - [297] = {.count = 1, .reusable = false}, SHIFT(407), - [299] = {.count = 1, .reusable = true}, SHIFT(2495), - [301] = {.count = 1, .reusable = true}, SHIFT(1690), - [303] = {.count = 1, .reusable = true}, SHIFT(2496), - [305] = {.count = 1, .reusable = true}, SHIFT(808), + [283] = {.count = 1, .reusable = true}, SHIFT(2423), + [285] = {.count = 1, .reusable = true}, SHIFT(408), + [287] = {.count = 1, .reusable = false}, SHIFT(409), + [289] = {.count = 1, .reusable = false}, SHIFT(1697), + [291] = {.count = 1, .reusable = true}, SHIFT(409), + [293] = {.count = 1, .reusable = true}, SHIFT(2507), + [295] = {.count = 1, .reusable = true}, SHIFT(2499), + [297] = {.count = 1, .reusable = false}, SHIFT(408), + [299] = {.count = 1, .reusable = true}, SHIFT(2509), + [301] = {.count = 1, .reusable = true}, SHIFT(1698), + [303] = {.count = 1, .reusable = true}, SHIFT(2510), + [305] = {.count = 1, .reusable = true}, SHIFT(809), [307] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .production_id = 1), [309] = {.count = 1, .reusable = false}, SHIFT(90), [311] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .production_id = 1), [313] = {.count = 1, .reusable = false}, SHIFT(92), - [315] = {.count = 1, .reusable = false}, SHIFT(1363), + [315] = {.count = 1, .reusable = false}, SHIFT(1370), [317] = {.count = 1, .reusable = true}, SHIFT(94), - [319] = {.count = 1, .reusable = true}, SHIFT(2402), + [319] = {.count = 1, .reusable = true}, SHIFT(2413), [321] = {.count = 1, .reusable = false}, SHIFT(95), [323] = {.count = 1, .reusable = false}, SHIFT(96), [325] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 1), @@ -77761,24 +78016,24 @@ static TSParseActionEntry ts_parse_actions[] = { [359] = {.count = 1, .reusable = true}, SHIFT(108), [361] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), [363] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), - [365] = {.count = 1, .reusable = true}, SHIFT(1476), + [365] = {.count = 1, .reusable = true}, SHIFT(1484), [367] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .production_id = 2), [369] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .production_id = 2), - [371] = {.count = 1, .reusable = true}, SHIFT(563), + [371] = {.count = 1, .reusable = true}, SHIFT(564), [373] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [375] = {.count = 1, .reusable = true}, SHIFT(1521), + [375] = {.count = 1, .reusable = true}, SHIFT(1529), [377] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), [379] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [381] = {.count = 1, .reusable = false}, SHIFT(645), + [381] = {.count = 1, .reusable = false}, SHIFT(646), [383] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), [385] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), [387] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), [389] = {.count = 1, .reusable = false}, SHIFT(109), [391] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [393] = {.count = 1, .reusable = true}, SHIFT(1564), + [393] = {.count = 1, .reusable = true}, SHIFT(1572), [395] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), [397] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [399] = {.count = 1, .reusable = false}, SHIFT(701), + [399] = {.count = 1, .reusable = false}, SHIFT(702), [401] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), [403] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), [405] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), @@ -77800,21 +78055,21 @@ static TSParseActionEntry ts_parse_actions[] = { [437] = {.count = 1, .reusable = true}, SHIFT(120), [439] = {.count = 1, .reusable = true}, SHIFT(116), [441] = {.count = 1, .reusable = true}, SHIFT(117), - [443] = {.count = 1, .reusable = false}, SHIFT(1809), - [445] = {.count = 1, .reusable = true}, SHIFT(2514), - [447] = {.count = 1, .reusable = true}, SHIFT(2508), + [443] = {.count = 1, .reusable = false}, SHIFT(1820), + [445] = {.count = 1, .reusable = true}, SHIFT(2528), + [447] = {.count = 1, .reusable = true}, SHIFT(2522), [449] = {.count = 1, .reusable = false}, SHIFT(116), - [451] = {.count = 1, .reusable = true}, SHIFT(2516), - [453] = {.count = 1, .reusable = true}, SHIFT(1810), + [451] = {.count = 1, .reusable = true}, SHIFT(2530), + [453] = {.count = 1, .reusable = true}, SHIFT(1821), [455] = {.count = 1, .reusable = true}, SHIFT(118), - [457] = {.count = 1, .reusable = true}, SHIFT(2517), - [459] = {.count = 1, .reusable = false}, SHIFT(904), + [457] = {.count = 1, .reusable = true}, SHIFT(2531), + [459] = {.count = 1, .reusable = false}, SHIFT(910), [461] = {.count = 1, .reusable = false}, SHIFT(121), [463] = {.count = 1, .reusable = true}, SHIFT(121), [465] = {.count = 1, .reusable = true}, SHIFT(122), [467] = {.count = 1, .reusable = true}, SHIFT(123), [469] = {.count = 1, .reusable = true}, SHIFT(124), - [471] = {.count = 1, .reusable = true}, SHIFT(2413), + [471] = {.count = 1, .reusable = true}, SHIFT(2424), [473] = {.count = 1, .reusable = false}, SHIFT(127), [475] = {.count = 1, .reusable = true}, SHIFT(127), [477] = {.count = 1, .reusable = true}, SHIFT(125), @@ -77823,32 +78078,32 @@ static TSParseActionEntry ts_parse_actions[] = { [483] = {.count = 1, .reusable = true}, SHIFT(130), [485] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), [487] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [489] = {.count = 1, .reusable = false}, SHIFT(1387), - [491] = {.count = 1, .reusable = false}, SHIFT(415), - [493] = {.count = 1, .reusable = false}, SHIFT(1471), + [489] = {.count = 1, .reusable = false}, SHIFT(1394), + [491] = {.count = 1, .reusable = false}, SHIFT(416), + [493] = {.count = 1, .reusable = false}, SHIFT(1479), [495] = {.count = 1, .reusable = true}, SHIFT(132), [497] = {.count = 1, .reusable = false}, SHIFT(131), - [499] = {.count = 1, .reusable = true}, SHIFT(2442), - [501] = {.count = 1, .reusable = false}, SHIFT(417), - [503] = {.count = 1, .reusable = false}, SHIFT(1388), + [499] = {.count = 1, .reusable = true}, SHIFT(2454), + [501] = {.count = 1, .reusable = false}, SHIFT(418), + [503] = {.count = 1, .reusable = false}, SHIFT(1395), [505] = {.count = 1, .reusable = true}, SHIFT(133), [507] = {.count = 1, .reusable = true}, SHIFT(134), [509] = {.count = 1, .reusable = true}, SHIFT(135), [511] = {.count = 1, .reusable = false}, SHIFT(135), [513] = {.count = 1, .reusable = false}, SHIFT(136), - [515] = {.count = 1, .reusable = true}, SHIFT(1607), + [515] = {.count = 1, .reusable = true}, SHIFT(1615), [517] = {.count = 1, .reusable = true}, SHIFT(136), [519] = {.count = 1, .reusable = false}, SHIFT(137), [521] = {.count = 1, .reusable = false}, SHIFT(139), [523] = {.count = 1, .reusable = false}, SHIFT(138), [525] = {.count = 1, .reusable = true}, SHIFT(138), - [527] = {.count = 1, .reusable = false}, SHIFT(740), + [527] = {.count = 1, .reusable = false}, SHIFT(741), [529] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), [531] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [533] = {.count = 1, .reusable = true}, SHIFT(1650), + [533] = {.count = 1, .reusable = true}, SHIFT(1658), [535] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .production_id = 1), [537] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .production_id = 1), - [539] = {.count = 1, .reusable = false}, SHIFT(777), + [539] = {.count = 1, .reusable = false}, SHIFT(778), [541] = {.count = 1, .reusable = true}, SHIFT(142), [543] = {.count = 1, .reusable = true}, SHIFT(143), [545] = {.count = 1, .reusable = false}, SHIFT(142), @@ -77858,23 +78113,23 @@ static TSParseActionEntry ts_parse_actions[] = { [553] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), [555] = {.count = 1, .reusable = true}, SHIFT(146), [557] = {.count = 1, .reusable = true}, SHIFT(148), - [559] = {.count = 1, .reusable = false}, SHIFT(1849), - [561] = {.count = 1, .reusable = true}, SHIFT(2521), - [563] = {.count = 1, .reusable = true}, SHIFT(2515), + [559] = {.count = 1, .reusable = false}, SHIFT(1860), + [561] = {.count = 1, .reusable = true}, SHIFT(2535), + [563] = {.count = 1, .reusable = true}, SHIFT(2529), [565] = {.count = 1, .reusable = false}, SHIFT(148), - [567] = {.count = 1, .reusable = true}, SHIFT(2523), - [569] = {.count = 1, .reusable = true}, SHIFT(1850), - [571] = {.count = 1, .reusable = true}, SHIFT(2524), - [573] = {.count = 1, .reusable = true}, SHIFT(936), + [567] = {.count = 1, .reusable = true}, SHIFT(2537), + [569] = {.count = 1, .reusable = true}, SHIFT(1861), + [571] = {.count = 1, .reusable = true}, SHIFT(2538), + [573] = {.count = 1, .reusable = true}, SHIFT(942), [575] = {.count = 1, .reusable = true}, SHIFT(147), [577] = {.count = 1, .reusable = true}, SHIFT(150), [579] = {.count = 1, .reusable = false}, SHIFT(150), - [581] = {.count = 1, .reusable = true}, SHIFT(968), + [581] = {.count = 1, .reusable = true}, SHIFT(974), [583] = {.count = 1, .reusable = true}, SHIFT(153), [585] = {.count = 1, .reusable = false}, SHIFT(153), - [587] = {.count = 1, .reusable = false}, SHIFT(809), + [587] = {.count = 1, .reusable = false}, SHIFT(810), [589] = {.count = 1, .reusable = false}, SHIFT(156), - [591] = {.count = 1, .reusable = false}, SHIFT(810), + [591] = {.count = 1, .reusable = false}, SHIFT(811), [593] = {.count = 1, .reusable = false}, SHIFT(157), [595] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), [597] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), @@ -77882,2878 +78137,2891 @@ static TSParseActionEntry ts_parse_actions[] = { [601] = {.count = 1, .reusable = true}, SHIFT(158), [603] = {.count = 1, .reusable = false}, SHIFT(159), [605] = {.count = 1, .reusable = true}, SHIFT(161), - [607] = {.count = 1, .reusable = false}, SHIFT(2447), - [609] = {.count = 1, .reusable = false}, SHIFT(559), + [607] = {.count = 1, .reusable = false}, SHIFT(2459), + [609] = {.count = 1, .reusable = false}, SHIFT(560), [611] = {.count = 1, .reusable = false}, SHIFT(162), - [613] = {.count = 1, .reusable = false}, SHIFT(560), - [615] = {.count = 1, .reusable = false}, SHIFT(1889), - [617] = {.count = 1, .reusable = false}, SHIFT(2528), - [619] = {.count = 1, .reusable = false}, SHIFT(2522), - [621] = {.count = 1, .reusable = false}, SHIFT(2530), - [623] = {.count = 1, .reusable = false}, SHIFT(1890), - [625] = {.count = 1, .reusable = false}, SHIFT(2531), - [627] = {.count = 1, .reusable = false}, SHIFT(1000), - [629] = {.count = 1, .reusable = false}, SHIFT(165), - [631] = {.count = 1, .reusable = true}, SHIFT(165), - [633] = {.count = 1, .reusable = false}, SHIFT(164), - [635] = {.count = 1, .reusable = true}, SHIFT(166), - [637] = {.count = 1, .reusable = true}, SHIFT(442), + [613] = {.count = 1, .reusable = false}, SHIFT(561), + [615] = {.count = 1, .reusable = true}, SHIFT(2483), + [617] = {.count = 1, .reusable = false}, SHIFT(1900), + [619] = {.count = 1, .reusable = false}, SHIFT(2542), + [621] = {.count = 1, .reusable = false}, SHIFT(2536), + [623] = {.count = 1, .reusable = false}, SHIFT(2544), + [625] = {.count = 1, .reusable = false}, SHIFT(1901), + [627] = {.count = 1, .reusable = false}, SHIFT(2545), + [629] = {.count = 1, .reusable = false}, SHIFT(1006), + [631] = {.count = 1, .reusable = false}, SHIFT(166), + [633] = {.count = 1, .reusable = true}, SHIFT(166), + [635] = {.count = 1, .reusable = false}, SHIFT(165), + [637] = {.count = 1, .reusable = true}, SHIFT(167), [639] = {.count = 1, .reusable = true}, SHIFT(443), - [641] = {.count = 1, .reusable = false}, SHIFT(442), - [643] = {.count = 1, .reusable = true}, SHIFT(444), - [645] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), - [647] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(90), - [650] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), - [652] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), - [654] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), - [656] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 2), - [658] = {.count = 1, .reusable = true}, SHIFT(170), + [641] = {.count = 1, .reusable = true}, SHIFT(444), + [643] = {.count = 1, .reusable = false}, SHIFT(443), + [645] = {.count = 1, .reusable = true}, SHIFT(445), + [647] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), + [649] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(90), + [652] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), + [654] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), + [656] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), + [658] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 2), [660] = {.count = 1, .reusable = true}, SHIFT(171), - [662] = {.count = 1, .reusable = true}, SHIFT(173), - [664] = {.count = 1, .reusable = true}, SHIFT(2537), - [666] = {.count = 1, .reusable = true}, SHIFT(1930), - [668] = {.count = 1, .reusable = true}, SHIFT(176), - [670] = {.count = 1, .reusable = false}, SHIFT(176), - [672] = {.count = 1, .reusable = true}, SHIFT(2538), - [674] = {.count = 1, .reusable = false}, SHIFT(1929), - [676] = {.count = 1, .reusable = true}, SHIFT(2529), - [678] = {.count = 1, .reusable = true}, SHIFT(2535), - [680] = {.count = 1, .reusable = true}, SHIFT(1032), - [682] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), - [684] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), - [686] = {.count = 1, .reusable = true}, SHIFT(181), - [688] = {.count = 1, .reusable = false}, SHIFT(180), - [690] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2395), - [693] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), - [696] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(380), - [699] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(381), - [702] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1364), - [705] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2396), - [708] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2397), - [711] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(382), - [714] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2398), - [717] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2399), - [720] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1365), - [723] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), - [726] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(383), - [729] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(384), - [732] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2610), - [735] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2628), - [738] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2400), - [741] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(382), - [744] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(385), - [747] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2401), - [750] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(20), - [753] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1366), - [756] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2403), - [759] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2611), - [762] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2404), - [765] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2405), - [768] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2406), - [771] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), - [773] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), - [775] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), - [778] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), - [780] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), - [782] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(20), - [785] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2452), - [788] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), - [791] = {.count = 1, .reusable = true}, SHIFT(184), - [793] = {.count = 1, .reusable = false}, SHIFT(184), - [795] = {.count = 1, .reusable = true}, SHIFT(183), - [797] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), - [799] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), - [801] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), - [803] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), - [805] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), - [807] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), - [809] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [811] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1517), - [814] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2449), - [817] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2450), - [820] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(41), - [823] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2451), - [826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(633), - [829] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [831] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2441), - [834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1518), - [837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2454), - [840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(109), - [843] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [845] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1560), - [848] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2459), - [851] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2460), - [854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(44), - [857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2461), - [860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(694), - [863] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [865] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1561), - [868] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2463), - [871] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), - [874] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), - [876] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), - [878] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), - [880] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), - [882] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [884] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [886] = {.count = 1, .reusable = false}, SHIFT(187), - [888] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(52), - [891] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [893] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [895] = {.count = 1, .reusable = true}, SHIFT(1813), - [897] = {.count = 1, .reusable = false}, SHIFT(190), - [899] = {.count = 1, .reusable = true}, SHIFT(190), - [901] = {.count = 1, .reusable = true}, SHIFT(188), + [662] = {.count = 1, .reusable = true}, SHIFT(172), + [664] = {.count = 1, .reusable = true}, SHIFT(174), + [666] = {.count = 1, .reusable = true}, SHIFT(2551), + [668] = {.count = 1, .reusable = true}, SHIFT(1941), + [670] = {.count = 1, .reusable = true}, SHIFT(177), + [672] = {.count = 1, .reusable = false}, SHIFT(177), + [674] = {.count = 1, .reusable = true}, SHIFT(2552), + [676] = {.count = 1, .reusable = false}, SHIFT(1940), + [678] = {.count = 1, .reusable = true}, SHIFT(2543), + [680] = {.count = 1, .reusable = true}, SHIFT(2549), + [682] = {.count = 1, .reusable = true}, SHIFT(1038), + [684] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), + [686] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), + [688] = {.count = 1, .reusable = true}, SHIFT(182), + [690] = {.count = 1, .reusable = false}, SHIFT(181), + [692] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2406), + [695] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), + [698] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(381), + [701] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(382), + [704] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1371), + [707] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2407), + [710] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2408), + [713] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(383), + [716] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2409), + [719] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2410), + [722] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1372), + [725] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), + [728] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(384), + [731] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(385), + [734] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2624), + [737] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2643), + [740] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2411), + [743] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(383), + [746] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(386), + [749] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2412), + [752] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(20), + [755] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1373), + [758] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2414), + [761] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2625), + [764] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2415), + [767] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2416), + [770] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2417), + [773] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [775] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [777] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), + [780] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [782] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [784] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(20), + [787] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2464), + [790] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), + [793] = {.count = 1, .reusable = true}, SHIFT(185), + [795] = {.count = 1, .reusable = false}, SHIFT(185), + [797] = {.count = 1, .reusable = true}, SHIFT(184), + [799] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [801] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [803] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), + [805] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), + [807] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [809] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [811] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [813] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1525), + [816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2461), + [819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2462), + [822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(41), + [825] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2463), + [828] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(634), + [831] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [833] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2453), + [836] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1526), + [839] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2466), + [842] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(109), + [845] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [847] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1568), + [850] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2471), + [853] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2472), + [856] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(44), + [859] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2473), + [862] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(695), + [865] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1569), + [870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2475), + [873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [876] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [878] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [880] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [882] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [884] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [886] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [888] = {.count = 1, .reusable = false}, SHIFT(188), + [890] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(52), + [893] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [895] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [897] = {.count = 1, .reusable = true}, SHIFT(1824), + [899] = {.count = 1, .reusable = false}, SHIFT(191), + [901] = {.count = 1, .reusable = true}, SHIFT(191), [903] = {.count = 1, .reusable = true}, SHIFT(189), - [905] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), - [907] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), - [909] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), - [911] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), - [913] = {.count = 1, .reusable = false}, SHIFT(910), - [915] = {.count = 1, .reusable = false}, SHIFT(191), - [917] = {.count = 1, .reusable = true}, SHIFT(191), + [905] = {.count = 1, .reusable = true}, SHIFT(190), + [907] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [909] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [911] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), + [913] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), + [915] = {.count = 1, .reusable = false}, SHIFT(916), + [917] = {.count = 1, .reusable = false}, SHIFT(192), [919] = {.count = 1, .reusable = true}, SHIFT(192), [921] = {.count = 1, .reusable = true}, SHIFT(193), - [923] = {.count = 1, .reusable = false}, SHIFT(196), - [925] = {.count = 1, .reusable = true}, SHIFT(196), - [927] = {.count = 1, .reusable = true}, SHIFT(194), + [923] = {.count = 1, .reusable = true}, SHIFT(194), + [925] = {.count = 1, .reusable = false}, SHIFT(197), + [927] = {.count = 1, .reusable = true}, SHIFT(197), [929] = {.count = 1, .reusable = true}, SHIFT(195), - [931] = {.count = 1, .reusable = true}, SHIFT(2558), - [933] = {.count = 1, .reusable = true}, SHIFT(2050), - [935] = {.count = 1, .reusable = true}, SHIFT(197), - [937] = {.count = 1, .reusable = false}, SHIFT(197), - [939] = {.count = 1, .reusable = true}, SHIFT(2559), - [941] = {.count = 1, .reusable = false}, SHIFT(2049), - [943] = {.count = 1, .reusable = true}, SHIFT(2550), - [945] = {.count = 1, .reusable = true}, SHIFT(2556), - [947] = {.count = 1, .reusable = false}, SHIFT(1128), - [949] = {.count = 1, .reusable = false}, SHIFT(202), - [951] = {.count = 1, .reusable = true}, SHIFT(202), - [953] = {.count = 1, .reusable = true}, SHIFT(200), + [931] = {.count = 1, .reusable = true}, SHIFT(196), + [933] = {.count = 1, .reusable = true}, SHIFT(2572), + [935] = {.count = 1, .reusable = true}, SHIFT(2061), + [937] = {.count = 1, .reusable = true}, SHIFT(198), + [939] = {.count = 1, .reusable = false}, SHIFT(198), + [941] = {.count = 1, .reusable = true}, SHIFT(2573), + [943] = {.count = 1, .reusable = false}, SHIFT(2060), + [945] = {.count = 1, .reusable = true}, SHIFT(2564), + [947] = {.count = 1, .reusable = true}, SHIFT(2570), + [949] = {.count = 1, .reusable = false}, SHIFT(1134), + [951] = {.count = 1, .reusable = false}, SHIFT(203), + [953] = {.count = 1, .reusable = true}, SHIFT(203), [955] = {.count = 1, .reusable = true}, SHIFT(201), - [957] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .production_id = 3), - [959] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .production_id = 3), - [961] = {.count = 1, .reusable = true}, SHIFT(203), - [963] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [965] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [967] = {.count = 1, .reusable = true}, SHIFT(457), - [969] = {.count = 1, .reusable = true}, SHIFT(1406), - [971] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [973] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [975] = {.count = 1, .reusable = false}, SHIFT(206), + [957] = {.count = 1, .reusable = true}, SHIFT(202), + [959] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .production_id = 3), + [961] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .production_id = 3), + [963] = {.count = 1, .reusable = true}, SHIFT(204), + [965] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [967] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [969] = {.count = 1, .reusable = true}, SHIFT(458), + [971] = {.count = 1, .reusable = true}, SHIFT(1413), + [973] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [975] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), [977] = {.count = 1, .reusable = false}, SHIFT(207), [979] = {.count = 1, .reusable = false}, SHIFT(208), - [981] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), - [983] = {.count = 1, .reusable = true}, SHIFT(214), + [981] = {.count = 1, .reusable = false}, SHIFT(209), + [983] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), [985] = {.count = 1, .reusable = true}, SHIFT(215), - [987] = {.count = 1, .reusable = false}, SHIFT(215), - [989] = {.count = 1, .reusable = true}, SHIFT(216), + [987] = {.count = 1, .reusable = true}, SHIFT(216), + [989] = {.count = 1, .reusable = false}, SHIFT(216), [991] = {.count = 1, .reusable = true}, SHIFT(217), - [993] = {.count = 1, .reusable = false}, SHIFT(217), - [995] = {.count = 1, .reusable = true}, SHIFT(218), - [997] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), - [999] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), - [1001] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), - [1003] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), - [1005] = {.count = 1, .reusable = true}, SHIFT(220), - [1007] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), - [1009] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), - [1011] = {.count = 1, .reusable = true}, SHIFT(2565), - [1013] = {.count = 1, .reusable = true}, SHIFT(2090), - [1015] = {.count = 1, .reusable = true}, SHIFT(221), - [1017] = {.count = 1, .reusable = false}, SHIFT(221), - [1019] = {.count = 1, .reusable = true}, SHIFT(2566), - [1021] = {.count = 1, .reusable = false}, SHIFT(2089), - [1023] = {.count = 1, .reusable = true}, SHIFT(2557), - [1025] = {.count = 1, .reusable = true}, SHIFT(2563), - [1027] = {.count = 1, .reusable = true}, SHIFT(222), - [1029] = {.count = 1, .reusable = true}, SHIFT(1160), - [1031] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), - [1033] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), - [1035] = {.count = 1, .reusable = true}, SHIFT(1853), - [1037] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .production_id = 4), - [1039] = {.count = 1, .reusable = false}, SHIFT(942), - [1041] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .production_id = 4), - [1043] = {.count = 1, .reusable = true}, SHIFT(225), + [993] = {.count = 1, .reusable = true}, SHIFT(218), + [995] = {.count = 1, .reusable = false}, SHIFT(218), + [997] = {.count = 1, .reusable = true}, SHIFT(219), + [999] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [1001] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), + [1003] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), + [1005] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), + [1007] = {.count = 1, .reusable = true}, SHIFT(221), + [1009] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1011] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1013] = {.count = 1, .reusable = true}, SHIFT(2579), + [1015] = {.count = 1, .reusable = true}, SHIFT(2101), + [1017] = {.count = 1, .reusable = true}, SHIFT(222), + [1019] = {.count = 1, .reusable = false}, SHIFT(222), + [1021] = {.count = 1, .reusable = true}, SHIFT(2580), + [1023] = {.count = 1, .reusable = false}, SHIFT(2100), + [1025] = {.count = 1, .reusable = true}, SHIFT(2571), + [1027] = {.count = 1, .reusable = true}, SHIFT(2577), + [1029] = {.count = 1, .reusable = true}, SHIFT(223), + [1031] = {.count = 1, .reusable = true}, SHIFT(1166), + [1033] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), + [1035] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [1037] = {.count = 1, .reusable = true}, SHIFT(1864), + [1039] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .production_id = 4), + [1041] = {.count = 1, .reusable = false}, SHIFT(948), + [1043] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .production_id = 4), [1045] = {.count = 1, .reusable = true}, SHIFT(226), [1047] = {.count = 1, .reusable = true}, SHIFT(227), [1049] = {.count = 1, .reusable = true}, SHIFT(228), - [1051] = {.count = 1, .reusable = false}, SHIFT(974), - [1053] = {.count = 1, .reusable = true}, SHIFT(229), - [1055] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), - [1057] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), - [1059] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .production_id = 4), - [1061] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .production_id = 4), - [1063] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), - [1065] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), - [1067] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), - [1069] = {.count = 1, .reusable = true}, SHIFT(230), - [1071] = {.count = 1, .reusable = false}, SHIFT(231), - [1073] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(232), - [1076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2488), - [1079] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2486), - [1082] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2489), - [1085] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(81), - [1088] = {.count = 1, .reusable = false}, SHIFT(233), - [1090] = {.count = 1, .reusable = false}, SHIFT(586), - [1092] = {.count = 1, .reusable = false}, SHIFT(235), - [1094] = {.count = 1, .reusable = false}, SHIFT(587), - [1096] = {.count = 1, .reusable = false}, SHIFT(588), - [1098] = {.count = 1, .reusable = true}, SHIFT(2572), - [1100] = {.count = 1, .reusable = true}, SHIFT(2130), - [1102] = {.count = 1, .reusable = true}, SHIFT(482), - [1104] = {.count = 1, .reusable = false}, SHIFT(482), - [1106] = {.count = 1, .reusable = true}, SHIFT(2573), - [1108] = {.count = 1, .reusable = false}, SHIFT(2129), - [1110] = {.count = 1, .reusable = true}, SHIFT(2564), - [1112] = {.count = 1, .reusable = true}, SHIFT(2570), - [1114] = {.count = 1, .reusable = true}, SHIFT(1192), - [1116] = {.count = 1, .reusable = false}, SHIFT(238), - [1118] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1120] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1122] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), - [1124] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), - [1126] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), - [1128] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), - [1130] = {.count = 1, .reusable = false}, SHIFT(240), - [1132] = {.count = 1, .reusable = true}, SHIFT(2579), - [1134] = {.count = 1, .reusable = true}, SHIFT(2577), - [1136] = {.count = 1, .reusable = true}, SHIFT(241), - [1138] = {.count = 1, .reusable = true}, SHIFT(2580), + [1051] = {.count = 1, .reusable = true}, SHIFT(229), + [1053] = {.count = 1, .reusable = false}, SHIFT(980), + [1055] = {.count = 1, .reusable = true}, SHIFT(230), + [1057] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [1059] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [1061] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .production_id = 4), + [1063] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .production_id = 4), + [1065] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [1067] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1069] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1071] = {.count = 1, .reusable = true}, SHIFT(231), + [1073] = {.count = 1, .reusable = false}, SHIFT(232), + [1075] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(233), + [1078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2500), + [1081] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2498), + [1084] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2502), + [1087] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(81), + [1090] = {.count = 1, .reusable = false}, SHIFT(234), + [1092] = {.count = 1, .reusable = true}, SHIFT(236), + [1094] = {.count = 1, .reusable = false}, SHIFT(236), + [1096] = {.count = 1, .reusable = false}, SHIFT(587), + [1098] = {.count = 1, .reusable = false}, SHIFT(588), + [1100] = {.count = 1, .reusable = false}, SHIFT(589), + [1102] = {.count = 1, .reusable = true}, SHIFT(2586), + [1104] = {.count = 1, .reusable = true}, SHIFT(2141), + [1106] = {.count = 1, .reusable = true}, SHIFT(483), + [1108] = {.count = 1, .reusable = false}, SHIFT(483), + [1110] = {.count = 1, .reusable = true}, SHIFT(2587), + [1112] = {.count = 1, .reusable = false}, SHIFT(2140), + [1114] = {.count = 1, .reusable = true}, SHIFT(2578), + [1116] = {.count = 1, .reusable = true}, SHIFT(2584), + [1118] = {.count = 1, .reusable = true}, SHIFT(1198), + [1120] = {.count = 1, .reusable = false}, SHIFT(239), + [1122] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1124] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1126] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [1128] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [1130] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [1132] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [1134] = {.count = 1, .reusable = false}, SHIFT(241), + [1136] = {.count = 1, .reusable = true}, SHIFT(2593), + [1138] = {.count = 1, .reusable = true}, SHIFT(2591), [1140] = {.count = 1, .reusable = true}, SHIFT(242), - [1142] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 3), + [1142] = {.count = 1, .reusable = true}, SHIFT(2594), [1144] = {.count = 1, .reusable = true}, SHIFT(243), - [1146] = {.count = 1, .reusable = false}, SHIFT(243), - [1148] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), - [1150] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), - [1152] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), - [1154] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), - [1156] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), - [1158] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), - [1160] = {.count = 1, .reusable = true}, SHIFT(1933), - [1162] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), - [1164] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), - [1166] = {.count = 1, .reusable = false}, SHIFT(1038), - [1168] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(95), - [1171] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [1173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1363), - [1176] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [1178] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2402), - [1181] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(97), - [1184] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), - [1186] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), - [1188] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), - [1190] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), - [1192] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), - [1194] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), - [1196] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(6), - [1199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(7), - [1202] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(8), - [1205] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(105), - [1208] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(10), - [1211] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(104), - [1214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(14), - [1217] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), - [1220] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [1223] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 4), - [1225] = {.count = 1, .reusable = false}, SHIFT(48), - [1227] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 4), - [1229] = {.count = 1, .reusable = false}, SHIFT(49), - [1231] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), - [1233] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), - [1235] = {.count = 1, .reusable = false}, SHIFT(246), - [1237] = {.count = 1, .reusable = true}, SHIFT(246), - [1239] = {.count = 1, .reusable = true}, SHIFT(245), - [1241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(191), - [1244] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(191), - [1247] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(116), - [1250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1809), - [1253] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [1255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(116), - [1258] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2516), - [1261] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2514), - [1264] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1810), - [1267] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2508), - [1270] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2517), - [1273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(904), - [1276] = {.count = 1, .reusable = true}, SHIFT(247), - [1278] = {.count = 1, .reusable = true}, SHIFT(248), - [1280] = {.count = 1, .reusable = false}, SHIFT(248), - [1282] = {.count = 1, .reusable = false}, SHIFT(253), - [1284] = {.count = 1, .reusable = true}, SHIFT(253), - [1286] = {.count = 1, .reusable = true}, SHIFT(251), - [1288] = {.count = 1, .reusable = true}, SHIFT(252), - [1290] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 5), - [1292] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 5), - [1294] = {.count = 1, .reusable = true}, SHIFT(2053), - [1296] = {.count = 1, .reusable = false}, SHIFT(1134), - [1298] = {.count = 1, .reusable = true}, SHIFT(254), - [1300] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 3), - [1302] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 3), - [1304] = {.count = 1, .reusable = false}, SHIFT(256), - [1306] = {.count = 1, .reusable = true}, SHIFT(256), - [1308] = {.count = 1, .reusable = true}, SHIFT(255), - [1310] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), - [1312] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [1314] = {.count = 1, .reusable = true}, SHIFT(258), - [1316] = {.count = 1, .reusable = false}, SHIFT(258), - [1318] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), - [1320] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), - [1322] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), - [1324] = {.count = 1, .reusable = true}, SHIFT(262), - [1326] = {.count = 1, .reusable = false}, SHIFT(261), + [1146] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 3), + [1148] = {.count = 1, .reusable = true}, SHIFT(244), + [1150] = {.count = 1, .reusable = false}, SHIFT(244), + [1152] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [1154] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [1156] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [1158] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [1160] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [1162] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [1164] = {.count = 1, .reusable = true}, SHIFT(1944), + [1166] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), + [1168] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), + [1170] = {.count = 1, .reusable = false}, SHIFT(1044), + [1172] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(95), + [1175] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [1177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1370), + [1180] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [1182] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2413), + [1185] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(97), + [1188] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [1190] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [1192] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [1194] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [1196] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), + [1198] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), + [1200] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(6), + [1203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(7), + [1206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(8), + [1209] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(105), + [1212] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(10), + [1215] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(104), + [1218] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(14), + [1221] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [1224] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [1227] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 4), + [1229] = {.count = 1, .reusable = false}, SHIFT(48), + [1231] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 4), + [1233] = {.count = 1, .reusable = false}, SHIFT(49), + [1235] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [1237] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [1239] = {.count = 1, .reusable = false}, SHIFT(247), + [1241] = {.count = 1, .reusable = true}, SHIFT(247), + [1243] = {.count = 1, .reusable = true}, SHIFT(246), + [1245] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(192), + [1248] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(192), + [1251] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(116), + [1254] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1820), + [1257] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [1259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(116), + [1262] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2530), + [1265] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2528), + [1268] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1821), + [1271] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2522), + [1274] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2531), + [1277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(910), + [1280] = {.count = 1, .reusable = true}, SHIFT(248), + [1282] = {.count = 1, .reusable = true}, SHIFT(249), + [1284] = {.count = 1, .reusable = false}, SHIFT(249), + [1286] = {.count = 1, .reusable = false}, SHIFT(254), + [1288] = {.count = 1, .reusable = true}, SHIFT(254), + [1290] = {.count = 1, .reusable = true}, SHIFT(252), + [1292] = {.count = 1, .reusable = true}, SHIFT(253), + [1294] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 5), + [1296] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 5), + [1298] = {.count = 1, .reusable = true}, SHIFT(2064), + [1300] = {.count = 1, .reusable = false}, SHIFT(1140), + [1302] = {.count = 1, .reusable = true}, SHIFT(255), + [1304] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 3), + [1306] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 3), + [1308] = {.count = 1, .reusable = false}, SHIFT(257), + [1310] = {.count = 1, .reusable = true}, SHIFT(257), + [1312] = {.count = 1, .reusable = true}, SHIFT(256), + [1314] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [1316] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [1318] = {.count = 1, .reusable = true}, SHIFT(259), + [1320] = {.count = 1, .reusable = false}, SHIFT(259), + [1322] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [1324] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [1326] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), [1328] = {.count = 1, .reusable = true}, SHIFT(263), - [1330] = {.count = 1, .reusable = true}, SHIFT(208), - [1332] = {.count = 1, .reusable = true}, SHIFT(207), - [1334] = {.count = 1, .reusable = false}, SHIFT(263), - [1336] = {.count = 1, .reusable = true}, SHIFT(268), - [1338] = {.count = 1, .reusable = false}, SHIFT(268), + [1330] = {.count = 1, .reusable = false}, SHIFT(262), + [1332] = {.count = 1, .reusable = true}, SHIFT(264), + [1334] = {.count = 1, .reusable = true}, SHIFT(209), + [1336] = {.count = 1, .reusable = true}, SHIFT(208), + [1338] = {.count = 1, .reusable = false}, SHIFT(264), [1340] = {.count = 1, .reusable = true}, SHIFT(269), [1342] = {.count = 1, .reusable = false}, SHIFT(269), - [1344] = {.count = 1, .reusable = false}, SHIFT(270), - [1346] = {.count = 1, .reusable = true}, SHIFT(275), - [1348] = {.count = 1, .reusable = false}, SHIFT(275), - [1350] = {.count = 1, .reusable = false}, SHIFT(276), - [1352] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [1354] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [1356] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), - [1358] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), - [1360] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1362] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1364] = {.count = 1, .reusable = true}, SHIFT(2093), - [1366] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), - [1368] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), - [1370] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [1372] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [1374] = {.count = 1, .reusable = true}, SHIFT(1166), - [1376] = {.count = 1, .reusable = true}, SHIFT(279), - [1378] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), - [1380] = {.count = 1, .reusable = true}, SHIFT(281), - [1382] = {.count = 1, .reusable = true}, SHIFT(818), - [1384] = {.count = 1, .reusable = false}, SHIFT(818), - [1386] = {.count = 1, .reusable = true}, SHIFT(282), - [1388] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .production_id = 4), + [1344] = {.count = 1, .reusable = true}, SHIFT(270), + [1346] = {.count = 1, .reusable = false}, SHIFT(270), + [1348] = {.count = 1, .reusable = false}, SHIFT(271), + [1350] = {.count = 1, .reusable = true}, SHIFT(276), + [1352] = {.count = 1, .reusable = false}, SHIFT(276), + [1354] = {.count = 1, .reusable = false}, SHIFT(277), + [1356] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [1358] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [1360] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [1362] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [1364] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [1366] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [1368] = {.count = 1, .reusable = true}, SHIFT(2104), + [1370] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [1372] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [1374] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [1376] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [1378] = {.count = 1, .reusable = true}, SHIFT(1172), + [1380] = {.count = 1, .reusable = true}, SHIFT(280), + [1382] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [1384] = {.count = 1, .reusable = true}, SHIFT(282), + [1386] = {.count = 1, .reusable = true}, SHIFT(819), + [1388] = {.count = 1, .reusable = false}, SHIFT(819), [1390] = {.count = 1, .reusable = true}, SHIFT(283), - [1392] = {.count = 1, .reusable = true}, SHIFT(284), - [1394] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), - [1396] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), - [1398] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), - [1400] = {.count = 1, .reusable = true}, SHIFT(285), - [1402] = {.count = 1, .reusable = false}, SHIFT(287), - [1404] = {.count = 1, .reusable = true}, SHIFT(289), - [1406] = {.count = 1, .reusable = false}, SHIFT(289), - [1408] = {.count = 1, .reusable = false}, SHIFT(2570), - [1410] = {.count = 1, .reusable = false}, SHIFT(2564), - [1412] = {.count = 1, .reusable = false}, SHIFT(2572), - [1414] = {.count = 1, .reusable = false}, SHIFT(2130), - [1416] = {.count = 1, .reusable = false}, SHIFT(2573), - [1418] = {.count = 1, .reusable = false}, SHIFT(1192), - [1420] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), - [1422] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), - [1424] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), - [1426] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), - [1428] = {.count = 1, .reusable = false}, SHIFT(290), - [1430] = {.count = 1, .reusable = false}, SHIFT(1225), - [1432] = {.count = 1, .reusable = true}, SHIFT(1226), - [1434] = {.count = 1, .reusable = true}, SHIFT(1225), - [1436] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), - [1438] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), - [1440] = {.count = 1, .reusable = true}, SHIFT(291), - [1442] = {.count = 1, .reusable = true}, SHIFT(292), - [1444] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 4), - [1446] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 4), - [1448] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 4), - [1450] = {.count = 1, .reusable = true}, SHIFT(293), - [1452] = {.count = 1, .reusable = false}, SHIFT(293), - [1454] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), - [1456] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), - [1458] = {.count = 1, .reusable = true}, SHIFT(294), - [1460] = {.count = 1, .reusable = false}, SHIFT(295), + [1392] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .production_id = 4), + [1394] = {.count = 1, .reusable = true}, SHIFT(284), + [1396] = {.count = 1, .reusable = true}, SHIFT(285), + [1398] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [1400] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [1402] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [1404] = {.count = 1, .reusable = true}, SHIFT(286), + [1406] = {.count = 1, .reusable = false}, SHIFT(288), + [1408] = {.count = 1, .reusable = true}, SHIFT(290), + [1410] = {.count = 1, .reusable = false}, SHIFT(290), + [1412] = {.count = 1, .reusable = false}, SHIFT(2584), + [1414] = {.count = 1, .reusable = false}, SHIFT(2578), + [1416] = {.count = 1, .reusable = false}, SHIFT(2586), + [1418] = {.count = 1, .reusable = false}, SHIFT(2141), + [1420] = {.count = 1, .reusable = false}, SHIFT(2587), + [1422] = {.count = 1, .reusable = false}, SHIFT(1198), + [1424] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), + [1426] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), + [1428] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [1430] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [1432] = {.count = 1, .reusable = false}, SHIFT(291), + [1434] = {.count = 1, .reusable = false}, SHIFT(1231), + [1436] = {.count = 1, .reusable = true}, SHIFT(1232), + [1438] = {.count = 1, .reusable = true}, SHIFT(1231), + [1440] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [1442] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [1444] = {.count = 1, .reusable = true}, SHIFT(292), + [1446] = {.count = 1, .reusable = true}, SHIFT(293), + [1448] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 4), + [1450] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 4), + [1452] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 4), + [1454] = {.count = 1, .reusable = true}, SHIFT(294), + [1456] = {.count = 1, .reusable = false}, SHIFT(294), + [1458] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [1460] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), [1462] = {.count = 1, .reusable = true}, SHIFT(295), - [1464] = {.count = 1, .reusable = true}, SHIFT(296), - [1466] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 5), - [1468] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 5), - [1470] = {.count = 1, .reusable = false}, SHIFT(298), - [1472] = {.count = 1, .reusable = true}, SHIFT(298), - [1474] = {.count = 1, .reusable = true}, SHIFT(297), - [1476] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 6), - [1478] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 6), - [1480] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 3), - [1482] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 3), - [1484] = {.count = 1, .reusable = true}, SHIFT(299), - [1486] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), - [1488] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), - [1490] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), - [1492] = {.count = 1, .reusable = true}, SHIFT(300), - [1494] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 2), - [1496] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 2), - [1498] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [1500] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [1502] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(208), - [1505] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1507] = {.count = 1, .reusable = true}, SHIFT(302), - [1509] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), - [1512] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(380), - [1515] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1364), - [1518] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2396), - [1521] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2397), - [1524] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(383), - [1527] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(384), - [1530] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2610), - [1533] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2400), - [1536] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(382), - [1539] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2401), - [1542] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(381), - [1545] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1366), - [1548] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2404), - [1551] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2395), - [1554] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(382), - [1557] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2398), - [1560] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2399), - [1563] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1365), - [1566] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), - [1569] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2628), - [1572] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(385), - [1575] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(20), - [1578] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2403), - [1581] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2611), - [1584] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2405), - [1587] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2406), - [1590] = {.count = 1, .reusable = false}, SHIFT(304), - [1592] = {.count = 1, .reusable = true}, SHIFT(308), - [1594] = {.count = 1, .reusable = true}, SHIFT(307), - [1596] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), - [1598] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), - [1600] = {.count = 1, .reusable = true}, SHIFT(310), - [1602] = {.count = 1, .reusable = true}, SHIFT(777), - [1604] = {.count = 1, .reusable = true}, SHIFT(304), - [1606] = {.count = 1, .reusable = false}, SHIFT(313), - [1608] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .production_id = 2), - [1610] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .production_id = 2), - [1612] = {.count = 1, .reusable = true}, SHIFT(313), - [1614] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), - [1616] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), - [1618] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2565), - [1621] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2090), - [1624] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(221), - [1627] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(221), - [1630] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2566), - [1633] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2089), - [1636] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1638] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2563), - [1641] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2557), - [1644] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1160), - [1647] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), - [1649] = {.count = 1, .reusable = true}, SHIFT(316), - [1651] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .production_id = 4), + [1464] = {.count = 1, .reusable = false}, SHIFT(296), + [1466] = {.count = 1, .reusable = true}, SHIFT(296), + [1468] = {.count = 1, .reusable = true}, SHIFT(297), + [1470] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 5), + [1472] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 5), + [1474] = {.count = 1, .reusable = false}, SHIFT(299), + [1476] = {.count = 1, .reusable = true}, SHIFT(299), + [1478] = {.count = 1, .reusable = true}, SHIFT(298), + [1480] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 6), + [1482] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 6), + [1484] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 3), + [1486] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 3), + [1488] = {.count = 1, .reusable = true}, SHIFT(300), + [1490] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [1492] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [1494] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [1496] = {.count = 1, .reusable = true}, SHIFT(301), + [1498] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 2), + [1500] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 2), + [1502] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [1504] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [1506] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(209), + [1509] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1511] = {.count = 1, .reusable = true}, SHIFT(303), + [1513] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), + [1516] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(381), + [1519] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1371), + [1522] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2407), + [1525] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2408), + [1528] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(384), + [1531] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(385), + [1534] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2624), + [1537] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2411), + [1540] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(383), + [1543] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2412), + [1546] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(382), + [1549] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1373), + [1552] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2415), + [1555] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2406), + [1558] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(383), + [1561] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2409), + [1564] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2410), + [1567] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1372), + [1570] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), + [1573] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2643), + [1576] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(386), + [1579] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(20), + [1582] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2414), + [1585] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2625), + [1588] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2416), + [1591] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2417), + [1594] = {.count = 1, .reusable = false}, SHIFT(305), + [1596] = {.count = 1, .reusable = true}, SHIFT(309), + [1598] = {.count = 1, .reusable = true}, SHIFT(308), + [1600] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [1602] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [1604] = {.count = 1, .reusable = true}, SHIFT(311), + [1606] = {.count = 1, .reusable = true}, SHIFT(778), + [1608] = {.count = 1, .reusable = true}, SHIFT(305), + [1610] = {.count = 1, .reusable = false}, SHIFT(314), + [1612] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .production_id = 2), + [1614] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .production_id = 2), + [1616] = {.count = 1, .reusable = true}, SHIFT(314), + [1618] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [1620] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [1622] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2579), + [1625] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2101), + [1628] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(222), + [1631] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(222), + [1634] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2580), + [1637] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2100), + [1640] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1642] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2577), + [1645] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2571), + [1648] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1166), + [1651] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), [1653] = {.count = 1, .reusable = true}, SHIFT(317), - [1655] = {.count = 1, .reusable = true}, SHIFT(318), - [1657] = {.count = 1, .reusable = true}, SHIFT(320), - [1659] = {.count = 1, .reusable = false}, SHIFT(322), - [1661] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), - [1663] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), - [1665] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), - [1667] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), - [1669] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(240), - [1672] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2579), - [1675] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2577), - [1678] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [1680] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2580), - [1683] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(292), - [1686] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 5), - [1688] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [1690] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [1692] = {.count = 1, .reusable = true}, SHIFT(324), - [1694] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 7), - [1696] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 7), - [1698] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 5), - [1700] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 5), - [1702] = {.count = 1, .reusable = true}, SHIFT(325), - [1704] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 3), - [1706] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 3), - [1708] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), - [1710] = {.count = 1, .reusable = true}, SHIFT(327), - [1712] = {.count = 1, .reusable = false}, SHIFT(327), - [1714] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [1716] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [1718] = {.count = 1, .reusable = true}, SHIFT(328), - [1720] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), - [1722] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), - [1724] = {.count = 1, .reusable = true}, SHIFT(329), - [1726] = {.count = 1, .reusable = true}, SHIFT(331), - [1728] = {.count = 1, .reusable = false}, SHIFT(331), - [1730] = {.count = 1, .reusable = false}, SHIFT(631), - [1732] = {.count = 1, .reusable = false}, SHIFT(632), - [1734] = {.count = 1, .reusable = false}, SHIFT(2169), - [1736] = {.count = 1, .reusable = true}, SHIFT(2584), - [1738] = {.count = 1, .reusable = true}, SHIFT(2571), - [1740] = {.count = 1, .reusable = false}, SHIFT(535), - [1742] = {.count = 1, .reusable = true}, SHIFT(2586), + [1655] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .production_id = 4), + [1657] = {.count = 1, .reusable = true}, SHIFT(318), + [1659] = {.count = 1, .reusable = true}, SHIFT(319), + [1661] = {.count = 1, .reusable = true}, SHIFT(321), + [1663] = {.count = 1, .reusable = false}, SHIFT(323), + [1665] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [1667] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [1669] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [1671] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [1673] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(241), + [1676] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2593), + [1679] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2591), + [1682] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [1684] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2594), + [1687] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(293), + [1690] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 5), + [1692] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [1694] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [1696] = {.count = 1, .reusable = true}, SHIFT(325), + [1698] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 7), + [1700] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 7), + [1702] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 5), + [1704] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 5), + [1706] = {.count = 1, .reusable = true}, SHIFT(326), + [1708] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 3), + [1710] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 3), + [1712] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [1714] = {.count = 1, .reusable = true}, SHIFT(328), + [1716] = {.count = 1, .reusable = false}, SHIFT(328), + [1718] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [1720] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [1722] = {.count = 1, .reusable = true}, SHIFT(329), + [1724] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [1726] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [1728] = {.count = 1, .reusable = true}, SHIFT(330), + [1730] = {.count = 1, .reusable = true}, SHIFT(332), + [1732] = {.count = 1, .reusable = false}, SHIFT(332), + [1734] = {.count = 1, .reusable = false}, SHIFT(632), + [1736] = {.count = 1, .reusable = false}, SHIFT(633), + [1738] = {.count = 1, .reusable = false}, SHIFT(2180), + [1740] = {.count = 1, .reusable = true}, SHIFT(2598), + [1742] = {.count = 1, .reusable = true}, SHIFT(2585), [1744] = {.count = 1, .reusable = false}, SHIFT(536), - [1746] = {.count = 1, .reusable = false}, SHIFT(1224), - [1748] = {.count = 1, .reusable = true}, SHIFT(535), - [1750] = {.count = 1, .reusable = false}, SHIFT(538), - [1752] = {.count = 1, .reusable = true}, SHIFT(2471), - [1754] = {.count = 1, .reusable = true}, SHIFT(2170), - [1756] = {.count = 1, .reusable = true}, SHIFT(2587), - [1758] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), - [1760] = {.count = 1, .reusable = true}, SHIFT(334), - [1762] = {.count = 1, .reusable = true}, SHIFT(336), - [1764] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .production_id = 1), - [1766] = {.count = 1, .reusable = true}, SHIFT(338), - [1768] = {.count = 1, .reusable = true}, SHIFT(340), - [1770] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2479), - [1773] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1647), - [1776] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(341), - [1779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(341), - [1782] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2481), - [1785] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1646), - [1788] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2478), - [1791] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2477), - [1794] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(771), - [1797] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .production_id = 2), - [1799] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .production_id = 2), - [1801] = {.count = 1, .reusable = true}, SHIFT(344), - [1803] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), - [1805] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .production_id = 4), - [1807] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), - [1809] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), - [1811] = {.count = 1, .reusable = true}, SHIFT(347), - [1813] = {.count = 1, .reusable = true}, SHIFT(348), - [1815] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [1817] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [1819] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), - [1821] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), - [1823] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .production_id = 5), - [1825] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .production_id = 5), - [1827] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), - [1829] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 4), - [1831] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 4), - [1833] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [1835] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [1837] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), - [1839] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), - [1841] = {.count = 1, .reusable = true}, SHIFT(350), - [1843] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), - [1845] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 2), - [1847] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), - [1849] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), - [1851] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), - [1853] = {.count = 1, .reusable = true}, SHIFT(351), - [1855] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), - [1857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(307), - [1860] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .production_id = 1), - [1862] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .production_id = 1), - [1864] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .production_id = 1), - [1866] = {.count = 1, .reusable = true}, SHIFT(353), - [1868] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .production_id = 1), - [1870] = {.count = 1, .reusable = true}, SHIFT(355), - [1872] = {.count = 1, .reusable = true}, SHIFT(357), - [1874] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .production_id = 2), - [1876] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .production_id = 2), - [1878] = {.count = 1, .reusable = true}, SHIFT(359), - [1880] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), - [1882] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), - [1884] = {.count = 1, .reusable = true}, SHIFT(361), - [1886] = {.count = 1, .reusable = true}, SHIFT(362), - [1888] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), - [1890] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), - [1892] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), - [1894] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), - [1896] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), - [1898] = {.count = 1, .reusable = true}, SHIFT(363), - [1900] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), - [1902] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .production_id = 1), - [1904] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .production_id = 1), - [1906] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .production_id = 1), - [1908] = {.count = 1, .reusable = true}, SHIFT(364), - [1910] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .production_id = 1), + [1746] = {.count = 1, .reusable = true}, SHIFT(2600), + [1748] = {.count = 1, .reusable = false}, SHIFT(537), + [1750] = {.count = 1, .reusable = false}, SHIFT(1230), + [1752] = {.count = 1, .reusable = true}, SHIFT(536), + [1754] = {.count = 1, .reusable = false}, SHIFT(539), + [1756] = {.count = 1, .reusable = true}, SHIFT(2492), + [1758] = {.count = 1, .reusable = true}, SHIFT(2181), + [1760] = {.count = 1, .reusable = true}, SHIFT(2601), + [1762] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [1764] = {.count = 1, .reusable = true}, SHIFT(335), + [1766] = {.count = 1, .reusable = true}, SHIFT(337), + [1768] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .production_id = 1), + [1770] = {.count = 1, .reusable = true}, SHIFT(339), + [1772] = {.count = 1, .reusable = true}, SHIFT(341), + [1774] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2491), + [1777] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1655), + [1780] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(342), + [1783] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(342), + [1786] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2493), + [1789] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1654), + [1792] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2490), + [1795] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2489), + [1798] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(772), + [1801] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .production_id = 2), + [1803] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .production_id = 2), + [1805] = {.count = 1, .reusable = true}, SHIFT(345), + [1807] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [1809] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .production_id = 4), + [1811] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), + [1813] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), + [1815] = {.count = 1, .reusable = true}, SHIFT(348), + [1817] = {.count = 1, .reusable = true}, SHIFT(349), + [1819] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [1821] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [1823] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), + [1825] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), + [1827] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .production_id = 5), + [1829] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .production_id = 5), + [1831] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [1833] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 4), + [1835] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 4), + [1837] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [1839] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [1841] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), + [1843] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), + [1845] = {.count = 1, .reusable = true}, SHIFT(351), + [1847] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [1849] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 2), + [1851] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [1853] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [1855] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [1857] = {.count = 1, .reusable = true}, SHIFT(352), + [1859] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), + [1861] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(308), + [1864] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .production_id = 1), + [1866] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .production_id = 1), + [1868] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .production_id = 1), + [1870] = {.count = 1, .reusable = true}, SHIFT(354), + [1872] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .production_id = 1), + [1874] = {.count = 1, .reusable = true}, SHIFT(356), + [1876] = {.count = 1, .reusable = true}, SHIFT(358), + [1878] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .production_id = 2), + [1880] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .production_id = 2), + [1882] = {.count = 1, .reusable = true}, SHIFT(360), + [1884] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), + [1886] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), + [1888] = {.count = 1, .reusable = true}, SHIFT(362), + [1890] = {.count = 1, .reusable = true}, SHIFT(363), + [1892] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), + [1894] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), + [1896] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [1898] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [1900] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [1902] = {.count = 1, .reusable = true}, SHIFT(364), + [1904] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), + [1906] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .production_id = 1), + [1908] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .production_id = 1), + [1910] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .production_id = 1), [1912] = {.count = 1, .reusable = true}, SHIFT(365), - [1914] = {.count = 1, .reusable = true}, SHIFT(367), - [1916] = {.count = 1, .reusable = true}, SHIFT(368), - [1918] = {.count = 1, .reusable = true}, SHIFT(370), - [1920] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .production_id = 2), - [1922] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .production_id = 2), - [1924] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), - [1926] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), - [1928] = {.count = 1, .reusable = true}, SHIFT(372), - [1930] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), - [1932] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), - [1934] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), - [1936] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .production_id = 1), - [1938] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .production_id = 1), - [1940] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .production_id = 1), - [1942] = {.count = 1, .reusable = true}, SHIFT(373), - [1944] = {.count = 1, .reusable = true}, SHIFT(375), - [1946] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), - [1948] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), - [1950] = {.count = 1, .reusable = true}, SHIFT(378), - [1952] = {.count = 1, .reusable = true}, SHIFT(379), - [1954] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), - [1956] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), - [1958] = {.count = 1, .reusable = false}, SHIFT(1729), - [1960] = {.count = 1, .reusable = false}, SHIFT(2500), - [1962] = {.count = 1, .reusable = false}, SHIFT(2494), - [1964] = {.count = 1, .reusable = false}, SHIFT(396), - [1966] = {.count = 1, .reusable = false}, SHIFT(2502), - [1968] = {.count = 1, .reusable = false}, SHIFT(840), - [1970] = {.count = 1, .reusable = true}, SHIFT(2462), - [1972] = {.count = 1, .reusable = false}, SHIFT(1730), - [1974] = {.count = 1, .reusable = false}, SHIFT(2503), - [1976] = {.count = 1, .reusable = false}, SHIFT(398), - [1978] = {.count = 1, .reusable = false}, SHIFT(1769), - [1980] = {.count = 1, .reusable = false}, SHIFT(2507), - [1982] = {.count = 1, .reusable = false}, SHIFT(2501), - [1984] = {.count = 1, .reusable = false}, SHIFT(399), - [1986] = {.count = 1, .reusable = false}, SHIFT(2509), - [1988] = {.count = 1, .reusable = false}, SHIFT(872), - [1990] = {.count = 1, .reusable = false}, SHIFT(1770), - [1992] = {.count = 1, .reusable = false}, SHIFT(2510), - [1994] = {.count = 1, .reusable = false}, SHIFT(401), - [1996] = {.count = 1, .reusable = true}, SHIFT(1370), - [1998] = {.count = 1, .reusable = false}, SHIFT(2410), - [2000] = {.count = 1, .reusable = false}, SHIFT(412), - [2002] = {.count = 1, .reusable = false}, SHIFT(414), - [2004] = {.count = 1, .reusable = true}, SHIFT(416), - [2006] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 1), - [2008] = {.count = 1, .reusable = true}, SHIFT(384), - [2010] = {.count = 1, .reusable = false}, SHIFT(2396), - [2012] = {.count = 1, .reusable = false}, SHIFT(2397), - [2014] = {.count = 1, .reusable = false}, SHIFT(424), - [2016] = {.count = 1, .reusable = false}, SHIFT(2398), - [2018] = {.count = 1, .reusable = false}, SHIFT(423), - [2020] = {.count = 1, .reusable = false}, SHIFT(1366), - [2022] = {.count = 1, .reusable = false}, SHIFT(2403), - [2024] = {.count = 1, .reusable = true}, SHIFT(1733), - [2026] = {.count = 1, .reusable = false}, SHIFT(846), - [2028] = {.count = 1, .reusable = false}, SHIFT(428), - [2030] = {.count = 1, .reusable = true}, SHIFT(1773), - [2032] = {.count = 1, .reusable = false}, SHIFT(878), - [2034] = {.count = 1, .reusable = false}, SHIFT(429), - [2036] = {.count = 1, .reusable = true}, SHIFT(433), - [2038] = {.count = 1, .reusable = true}, SHIFT(1693), - [2040] = {.count = 1, .reusable = false}, SHIFT(814), - [2042] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(412), - [2045] = {.count = 1, .reusable = true}, SHIFT(467), - [2047] = {.count = 1, .reusable = false}, SHIFT(466), - [2049] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 2), - [2051] = {.count = 1, .reusable = true}, SHIFT(470), - [2053] = {.count = 1, .reusable = false}, SHIFT(470), - [2055] = {.count = 1, .reusable = true}, SHIFT(469), - [2057] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1729), - [2060] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2500), - [2063] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2494), - [2066] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(396), - [2069] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2502), - [2072] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(840), - [2075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2462), - [2078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1730), - [2081] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2503), - [2084] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(428), - [2087] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1769), - [2090] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2507), - [2093] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2501), - [2096] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(399), - [2099] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2509), - [2102] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(872), - [2105] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1770), - [2108] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2510), - [2111] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(429), - [2114] = {.count = 1, .reusable = true}, SHIFT(432), - [2116] = {.count = 1, .reusable = false}, SHIFT(473), - [2118] = {.count = 1, .reusable = false}, SHIFT(432), - [2120] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1370), - [2123] = {.count = 1, .reusable = true}, SHIFT(481), - [2125] = {.count = 1, .reusable = true}, SHIFT(1973), - [2127] = {.count = 1, .reusable = false}, SHIFT(1070), - [2129] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 3), - [2131] = {.count = 1, .reusable = true}, SHIFT(491), - [2133] = {.count = 1, .reusable = false}, SHIFT(491), - [2135] = {.count = 1, .reusable = true}, SHIFT(2013), - [2137] = {.count = 1, .reusable = false}, SHIFT(1102), - [2139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1471), - [2142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1387), - [2145] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2442), - [2148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1388), - [2151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1364), - [2154] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2396), - [2157] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2397), - [2160] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(424), - [2163] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2398), - [2166] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(423), - [2169] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(384), - [2172] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1366), - [2175] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2403), - [2178] = {.count = 1, .reusable = false}, SHIFT(402), - [2180] = {.count = 1, .reusable = false}, SHIFT(403), - [2182] = {.count = 1, .reusable = false}, SHIFT(404), - [2184] = {.count = 1, .reusable = true}, SHIFT(2133), - [2186] = {.count = 1, .reusable = false}, SHIFT(1198), - [2188] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), - [2190] = {.count = 1, .reusable = true}, SHIFT(504), - [2192] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .production_id = 4), - [2194] = {.count = 1, .reusable = true}, SHIFT(506), - [2196] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 4), - [2198] = {.count = 1, .reusable = true}, SHIFT(510), - [2200] = {.count = 1, .reusable = false}, SHIFT(510), - [2202] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(482), - [2205] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2129), - [2210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2570), - [2213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2564), - [2216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2572), - [2219] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2130), - [2222] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2573), - [2225] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1192), - [2228] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), - [2230] = {.count = 1, .reusable = true}, SHIFT(518), - [2232] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .production_id = 4), + [1914] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .production_id = 1), + [1916] = {.count = 1, .reusable = true}, SHIFT(366), + [1918] = {.count = 1, .reusable = true}, SHIFT(368), + [1920] = {.count = 1, .reusable = true}, SHIFT(369), + [1922] = {.count = 1, .reusable = true}, SHIFT(371), + [1924] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .production_id = 2), + [1926] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .production_id = 2), + [1928] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), + [1930] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), + [1932] = {.count = 1, .reusable = true}, SHIFT(373), + [1934] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [1936] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [1938] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [1940] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .production_id = 1), + [1942] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .production_id = 1), + [1944] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .production_id = 1), + [1946] = {.count = 1, .reusable = true}, SHIFT(374), + [1948] = {.count = 1, .reusable = true}, SHIFT(376), + [1950] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), + [1952] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), + [1954] = {.count = 1, .reusable = true}, SHIFT(379), + [1956] = {.count = 1, .reusable = true}, SHIFT(380), + [1958] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), + [1960] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), + [1962] = {.count = 1, .reusable = false}, SHIFT(1740), + [1964] = {.count = 1, .reusable = false}, SHIFT(2514), + [1966] = {.count = 1, .reusable = false}, SHIFT(2508), + [1968] = {.count = 1, .reusable = false}, SHIFT(397), + [1970] = {.count = 1, .reusable = false}, SHIFT(2516), + [1972] = {.count = 1, .reusable = false}, SHIFT(846), + [1974] = {.count = 1, .reusable = true}, SHIFT(2474), + [1976] = {.count = 1, .reusable = false}, SHIFT(1741), + [1978] = {.count = 1, .reusable = false}, SHIFT(2517), + [1980] = {.count = 1, .reusable = false}, SHIFT(399), + [1982] = {.count = 1, .reusable = false}, SHIFT(1780), + [1984] = {.count = 1, .reusable = false}, SHIFT(2521), + [1986] = {.count = 1, .reusable = false}, SHIFT(2515), + [1988] = {.count = 1, .reusable = false}, SHIFT(400), + [1990] = {.count = 1, .reusable = false}, SHIFT(2523), + [1992] = {.count = 1, .reusable = false}, SHIFT(878), + [1994] = {.count = 1, .reusable = false}, SHIFT(1781), + [1996] = {.count = 1, .reusable = false}, SHIFT(2524), + [1998] = {.count = 1, .reusable = false}, SHIFT(402), + [2000] = {.count = 1, .reusable = true}, SHIFT(1377), + [2002] = {.count = 1, .reusable = false}, SHIFT(2421), + [2004] = {.count = 1, .reusable = false}, SHIFT(413), + [2006] = {.count = 1, .reusable = false}, SHIFT(415), + [2008] = {.count = 1, .reusable = true}, SHIFT(417), + [2010] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 1), + [2012] = {.count = 1, .reusable = true}, SHIFT(385), + [2014] = {.count = 1, .reusable = false}, SHIFT(2407), + [2016] = {.count = 1, .reusable = false}, SHIFT(2408), + [2018] = {.count = 1, .reusable = false}, SHIFT(425), + [2020] = {.count = 1, .reusable = false}, SHIFT(2409), + [2022] = {.count = 1, .reusable = false}, SHIFT(424), + [2024] = {.count = 1, .reusable = false}, SHIFT(1373), + [2026] = {.count = 1, .reusable = false}, SHIFT(2414), + [2028] = {.count = 1, .reusable = true}, SHIFT(1744), + [2030] = {.count = 1, .reusable = false}, SHIFT(852), + [2032] = {.count = 1, .reusable = false}, SHIFT(429), + [2034] = {.count = 1, .reusable = true}, SHIFT(1784), + [2036] = {.count = 1, .reusable = false}, SHIFT(884), + [2038] = {.count = 1, .reusable = false}, SHIFT(430), + [2040] = {.count = 1, .reusable = true}, SHIFT(434), + [2042] = {.count = 1, .reusable = true}, SHIFT(1701), + [2044] = {.count = 1, .reusable = false}, SHIFT(815), + [2046] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(413), + [2049] = {.count = 1, .reusable = true}, SHIFT(468), + [2051] = {.count = 1, .reusable = false}, SHIFT(467), + [2053] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 2), + [2055] = {.count = 1, .reusable = true}, SHIFT(471), + [2057] = {.count = 1, .reusable = false}, SHIFT(471), + [2059] = {.count = 1, .reusable = true}, SHIFT(470), + [2061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1740), + [2064] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2514), + [2067] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2508), + [2070] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(397), + [2073] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2516), + [2076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(846), + [2079] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2474), + [2082] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1741), + [2085] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2517), + [2088] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(429), + [2091] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1780), + [2094] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2521), + [2097] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2515), + [2100] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(400), + [2103] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2523), + [2106] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(878), + [2109] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1781), + [2112] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2524), + [2115] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(430), + [2118] = {.count = 1, .reusable = true}, SHIFT(433), + [2120] = {.count = 1, .reusable = false}, SHIFT(474), + [2122] = {.count = 1, .reusable = false}, SHIFT(433), + [2124] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1377), + [2127] = {.count = 1, .reusable = true}, SHIFT(482), + [2129] = {.count = 1, .reusable = true}, SHIFT(1984), + [2131] = {.count = 1, .reusable = false}, SHIFT(1076), + [2133] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 3), + [2135] = {.count = 1, .reusable = true}, SHIFT(492), + [2137] = {.count = 1, .reusable = false}, SHIFT(492), + [2139] = {.count = 1, .reusable = true}, SHIFT(2024), + [2141] = {.count = 1, .reusable = false}, SHIFT(1108), + [2143] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1479), + [2146] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1394), + [2149] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2454), + [2152] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1395), + [2155] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1371), + [2158] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2407), + [2161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2408), + [2164] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(425), + [2167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2409), + [2170] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(424), + [2173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(385), + [2176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1373), + [2179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2414), + [2182] = {.count = 1, .reusable = false}, SHIFT(403), + [2184] = {.count = 1, .reusable = false}, SHIFT(404), + [2186] = {.count = 1, .reusable = false}, SHIFT(405), + [2188] = {.count = 1, .reusable = true}, SHIFT(2144), + [2190] = {.count = 1, .reusable = false}, SHIFT(1204), + [2192] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [2194] = {.count = 1, .reusable = true}, SHIFT(505), + [2196] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .production_id = 4), + [2198] = {.count = 1, .reusable = true}, SHIFT(507), + [2200] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 4), + [2202] = {.count = 1, .reusable = true}, SHIFT(511), + [2204] = {.count = 1, .reusable = false}, SHIFT(511), + [2206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(483), + [2209] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2211] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2140), + [2214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2584), + [2217] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2578), + [2220] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2586), + [2223] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2141), + [2226] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2587), + [2229] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1198), + [2232] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), [2234] = {.count = 1, .reusable = true}, SHIFT(519), - [2236] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), - [2238] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .production_id = 4), - [2240] = {.count = 1, .reusable = false}, SHIFT(551), - [2242] = {.count = 1, .reusable = false}, SHIFT(554), - [2244] = {.count = 1, .reusable = true}, SHIFT(2173), - [2246] = {.count = 1, .reusable = false}, SHIFT(1230), - [2248] = {.count = 1, .reusable = false}, SHIFT(648), - [2250] = {.count = 1, .reusable = false}, SHIFT(2436), - [2252] = {.count = 1, .reusable = true}, SHIFT(649), - [2254] = {.count = 1, .reusable = false}, SHIFT(647), - [2256] = {.count = 1, .reusable = true}, SHIFT(2453), - [2258] = {.count = 1, .reusable = false}, SHIFT(650), - [2260] = {.count = 1, .reusable = false}, SHIFT(2435), - [2262] = {.count = 1, .reusable = false}, SHIFT(565), - [2264] = {.count = 1, .reusable = false}, SHIFT(568), + [2236] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .production_id = 4), + [2238] = {.count = 1, .reusable = true}, SHIFT(520), + [2240] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [2242] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .production_id = 4), + [2244] = {.count = 1, .reusable = false}, SHIFT(552), + [2246] = {.count = 1, .reusable = false}, SHIFT(555), + [2248] = {.count = 1, .reusable = true}, SHIFT(2184), + [2250] = {.count = 1, .reusable = false}, SHIFT(1236), + [2252] = {.count = 1, .reusable = false}, SHIFT(649), + [2254] = {.count = 1, .reusable = false}, SHIFT(2448), + [2256] = {.count = 1, .reusable = true}, SHIFT(650), + [2258] = {.count = 1, .reusable = false}, SHIFT(648), + [2260] = {.count = 1, .reusable = true}, SHIFT(2465), + [2262] = {.count = 1, .reusable = false}, SHIFT(651), + [2264] = {.count = 1, .reusable = false}, SHIFT(2447), [2266] = {.count = 1, .reusable = false}, SHIFT(566), - [2268] = {.count = 1, .reusable = true}, SHIFT(567), - [2270] = {.count = 1, .reusable = true}, SHIFT(1224), - [2272] = {.count = 1, .reusable = true}, SHIFT(2213), - [2274] = {.count = 1, .reusable = false}, SHIFT(1262), - [2276] = {.count = 1, .reusable = true}, SHIFT(2253), - [2278] = {.count = 1, .reusable = false}, SHIFT(1294), - [2280] = {.count = 1, .reusable = true}, SHIFT(581), - [2282] = {.count = 1, .reusable = true}, SHIFT(1893), - [2284] = {.count = 1, .reusable = true}, SHIFT(2447), - [2286] = {.count = 1, .reusable = true}, SHIFT(559), - [2288] = {.count = 1, .reusable = true}, SHIFT(560), - [2290] = {.count = 1, .reusable = true}, SHIFT(2528), - [2292] = {.count = 1, .reusable = true}, SHIFT(2522), - [2294] = {.count = 1, .reusable = true}, SHIFT(2530), - [2296] = {.count = 1, .reusable = true}, SHIFT(1890), - [2298] = {.count = 1, .reusable = true}, SHIFT(2531), - [2300] = {.count = 1, .reusable = true}, SHIFT(1000), - [2302] = {.count = 1, .reusable = false}, SHIFT(1006), - [2304] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(563), - [2307] = {.count = 1, .reusable = true}, SHIFT(602), - [2309] = {.count = 1, .reusable = false}, SHIFT(601), - [2311] = {.count = 1, .reusable = true}, SHIFT(605), - [2313] = {.count = 1, .reusable = false}, SHIFT(605), - [2315] = {.count = 1, .reusable = true}, SHIFT(604), - [2317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2209), - [2320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2591), - [2323] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2578), - [2326] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(549), - [2329] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2593), - [2332] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1256), - [2335] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2480), - [2338] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2210), - [2341] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2594), - [2344] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(576), - [2347] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2249), - [2350] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2598), - [2353] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2585), - [2356] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(552), - [2359] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2599), - [2362] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1288), - [2365] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2250), - [2368] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2600), - [2371] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(577), - [2374] = {.count = 1, .reusable = true}, SHIFT(580), - [2376] = {.count = 1, .reusable = false}, SHIFT(608), - [2378] = {.count = 1, .reusable = false}, SHIFT(580), - [2380] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1476), - [2383] = {.count = 1, .reusable = true}, SHIFT(614), - [2385] = {.count = 1, .reusable = false}, SHIFT(680), - [2387] = {.count = 1, .reusable = true}, SHIFT(680), - [2389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2169), - [2392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2584), - [2395] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2571), - [2398] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(573), - [2401] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2586), - [2404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(572), - [2407] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1224), - [2410] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2170), - [2413] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2587), - [2416] = {.count = 1, .reusable = false}, SHIFT(555), - [2418] = {.count = 1, .reusable = false}, SHIFT(556), - [2420] = {.count = 1, .reusable = true}, SHIFT(556), - [2422] = {.count = 1, .reusable = true}, SHIFT(557), - [2424] = {.count = 1, .reusable = false}, SHIFT(687), - [2426] = {.count = 1, .reusable = true}, SHIFT(687), - [2428] = {.count = 1, .reusable = false}, SHIFT(2209), - [2430] = {.count = 1, .reusable = false}, SHIFT(2591), - [2432] = {.count = 1, .reusable = false}, SHIFT(2578), - [2434] = {.count = 1, .reusable = false}, SHIFT(549), - [2436] = {.count = 1, .reusable = false}, SHIFT(2593), - [2438] = {.count = 1, .reusable = false}, SHIFT(1256), - [2440] = {.count = 1, .reusable = true}, SHIFT(2480), - [2442] = {.count = 1, .reusable = false}, SHIFT(2210), - [2444] = {.count = 1, .reusable = false}, SHIFT(2594), - [2446] = {.count = 1, .reusable = false}, SHIFT(638), - [2448] = {.count = 1, .reusable = false}, SHIFT(2249), - [2450] = {.count = 1, .reusable = false}, SHIFT(2598), - [2452] = {.count = 1, .reusable = false}, SHIFT(2585), - [2454] = {.count = 1, .reusable = false}, SHIFT(552), + [2268] = {.count = 1, .reusable = false}, SHIFT(569), + [2270] = {.count = 1, .reusable = false}, SHIFT(567), + [2272] = {.count = 1, .reusable = true}, SHIFT(568), + [2274] = {.count = 1, .reusable = true}, SHIFT(1230), + [2276] = {.count = 1, .reusable = true}, SHIFT(2224), + [2278] = {.count = 1, .reusable = false}, SHIFT(1268), + [2280] = {.count = 1, .reusable = true}, SHIFT(2264), + [2282] = {.count = 1, .reusable = false}, SHIFT(1300), + [2284] = {.count = 1, .reusable = true}, SHIFT(582), + [2286] = {.count = 1, .reusable = true}, SHIFT(1904), + [2288] = {.count = 1, .reusable = true}, SHIFT(2459), + [2290] = {.count = 1, .reusable = true}, SHIFT(560), + [2292] = {.count = 1, .reusable = true}, SHIFT(561), + [2294] = {.count = 1, .reusable = true}, SHIFT(2542), + [2296] = {.count = 1, .reusable = true}, SHIFT(2536), + [2298] = {.count = 1, .reusable = true}, SHIFT(2544), + [2300] = {.count = 1, .reusable = true}, SHIFT(1901), + [2302] = {.count = 1, .reusable = true}, SHIFT(2545), + [2304] = {.count = 1, .reusable = true}, SHIFT(1006), + [2306] = {.count = 1, .reusable = false}, SHIFT(1012), + [2308] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(564), + [2311] = {.count = 1, .reusable = true}, SHIFT(603), + [2313] = {.count = 1, .reusable = false}, SHIFT(602), + [2315] = {.count = 1, .reusable = true}, SHIFT(606), + [2317] = {.count = 1, .reusable = false}, SHIFT(606), + [2319] = {.count = 1, .reusable = true}, SHIFT(605), + [2321] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2220), + [2324] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2605), + [2327] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2592), + [2330] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(550), + [2333] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2607), + [2336] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1262), + [2339] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2501), + [2342] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2221), + [2345] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2608), + [2348] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(577), + [2351] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2260), + [2354] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2612), + [2357] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2599), + [2360] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(553), + [2363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2613), + [2366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1294), + [2369] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2261), + [2372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2614), + [2375] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(578), + [2378] = {.count = 1, .reusable = true}, SHIFT(581), + [2380] = {.count = 1, .reusable = false}, SHIFT(609), + [2382] = {.count = 1, .reusable = false}, SHIFT(581), + [2384] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1484), + [2387] = {.count = 1, .reusable = true}, SHIFT(615), + [2389] = {.count = 1, .reusable = false}, SHIFT(681), + [2391] = {.count = 1, .reusable = true}, SHIFT(681), + [2393] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2180), + [2396] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2598), + [2399] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2585), + [2402] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(574), + [2405] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2600), + [2408] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(573), + [2411] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1230), + [2414] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2181), + [2417] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2601), + [2420] = {.count = 1, .reusable = false}, SHIFT(556), + [2422] = {.count = 1, .reusable = false}, SHIFT(557), + [2424] = {.count = 1, .reusable = true}, SHIFT(557), + [2426] = {.count = 1, .reusable = true}, SHIFT(558), + [2428] = {.count = 1, .reusable = false}, SHIFT(688), + [2430] = {.count = 1, .reusable = true}, SHIFT(688), + [2432] = {.count = 1, .reusable = false}, SHIFT(2220), + [2434] = {.count = 1, .reusable = false}, SHIFT(2605), + [2436] = {.count = 1, .reusable = false}, SHIFT(2592), + [2438] = {.count = 1, .reusable = false}, SHIFT(550), + [2440] = {.count = 1, .reusable = false}, SHIFT(2607), + [2442] = {.count = 1, .reusable = false}, SHIFT(1262), + [2444] = {.count = 1, .reusable = true}, SHIFT(2501), + [2446] = {.count = 1, .reusable = false}, SHIFT(2221), + [2448] = {.count = 1, .reusable = false}, SHIFT(2608), + [2450] = {.count = 1, .reusable = false}, SHIFT(639), + [2452] = {.count = 1, .reusable = false}, SHIFT(2260), + [2454] = {.count = 1, .reusable = false}, SHIFT(2612), [2456] = {.count = 1, .reusable = false}, SHIFT(2599), - [2458] = {.count = 1, .reusable = false}, SHIFT(1288), - [2460] = {.count = 1, .reusable = false}, SHIFT(2250), - [2462] = {.count = 1, .reusable = false}, SHIFT(2600), - [2464] = {.count = 1, .reusable = false}, SHIFT(639), - [2466] = {.count = 1, .reusable = true}, SHIFT(1465), - [2468] = {.count = 1, .reusable = false}, SHIFT(2584), - [2470] = {.count = 1, .reusable = false}, SHIFT(2571), - [2472] = {.count = 1, .reusable = false}, SHIFT(573), - [2474] = {.count = 1, .reusable = false}, SHIFT(2586), - [2476] = {.count = 1, .reusable = false}, SHIFT(572), - [2478] = {.count = 1, .reusable = false}, SHIFT(2170), - [2480] = {.count = 1, .reusable = false}, SHIFT(2587), - [2482] = {.count = 1, .reusable = false}, SHIFT(576), - [2484] = {.count = 1, .reusable = false}, SHIFT(577), - [2486] = {.count = 1, .reusable = true}, SHIFT(658), - [2488] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(645), - [2491] = {.count = 1, .reusable = true}, SHIFT(672), - [2493] = {.count = 1, .reusable = false}, SHIFT(671), - [2495] = {.count = 1, .reusable = true}, SHIFT(2451), - [2497] = {.count = 1, .reusable = true}, SHIFT(1518), - [2499] = {.count = 1, .reusable = true}, SHIFT(657), - [2501] = {.count = 1, .reusable = false}, SHIFT(657), - [2503] = {.count = 1, .reusable = true}, SHIFT(2454), - [2505] = {.count = 1, .reusable = false}, SHIFT(674), - [2507] = {.count = 1, .reusable = true}, SHIFT(2450), - [2509] = {.count = 1, .reusable = true}, SHIFT(2449), - [2511] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1521), - [2514] = {.count = 1, .reusable = false}, SHIFT(640), - [2516] = {.count = 1, .reusable = false}, SHIFT(641), - [2518] = {.count = 1, .reusable = false}, SHIFT(642), - [2520] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 5), - [2522] = {.count = 1, .reusable = true}, SHIFT(708), - [2524] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(701), - [2527] = {.count = 1, .reusable = true}, SHIFT(1467), - [2529] = {.count = 1, .reusable = true}, SHIFT(2461), - [2531] = {.count = 1, .reusable = true}, SHIFT(1561), - [2533] = {.count = 1, .reusable = true}, SHIFT(707), - [2535] = {.count = 1, .reusable = false}, SHIFT(707), - [2537] = {.count = 1, .reusable = true}, SHIFT(2463), - [2539] = {.count = 1, .reusable = false}, SHIFT(717), - [2541] = {.count = 1, .reusable = true}, SHIFT(2460), - [2543] = {.count = 1, .reusable = true}, SHIFT(2459), - [2545] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1564), - [2548] = {.count = 1, .reusable = false}, SHIFT(696), - [2550] = {.count = 1, .reusable = false}, SHIFT(697), - [2552] = {.count = 1, .reusable = false}, SHIFT(698), - [2554] = {.count = 1, .reusable = true}, SHIFT(745), - [2556] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(740), - [2559] = {.count = 1, .reusable = true}, SHIFT(744), - [2561] = {.count = 1, .reusable = false}, SHIFT(744), - [2563] = {.count = 1, .reusable = false}, SHIFT(754), - [2565] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1607), - [2568] = {.count = 1, .reusable = true}, SHIFT(2293), - [2570] = {.count = 1, .reusable = false}, SHIFT(1323), - [2572] = {.count = 1, .reusable = false}, SHIFT(735), - [2574] = {.count = 1, .reusable = false}, SHIFT(736), - [2576] = {.count = 1, .reusable = false}, SHIFT(737), - [2578] = {.count = 1, .reusable = false}, SHIFT(1604), - [2580] = {.count = 1, .reusable = true}, SHIFT(782), - [2582] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(777), - [2585] = {.count = 1, .reusable = true}, SHIFT(781), - [2587] = {.count = 1, .reusable = false}, SHIFT(791), - [2589] = {.count = 1, .reusable = false}, SHIFT(781), - [2591] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1650), - [2594] = {.count = 1, .reusable = false}, SHIFT(772), - [2596] = {.count = 1, .reusable = true}, SHIFT(773), + [2458] = {.count = 1, .reusable = false}, SHIFT(553), + [2460] = {.count = 1, .reusable = false}, SHIFT(2613), + [2462] = {.count = 1, .reusable = false}, SHIFT(1294), + [2464] = {.count = 1, .reusable = false}, SHIFT(2261), + [2466] = {.count = 1, .reusable = false}, SHIFT(2614), + [2468] = {.count = 1, .reusable = false}, SHIFT(640), + [2470] = {.count = 1, .reusable = true}, SHIFT(1472), + [2472] = {.count = 1, .reusable = false}, SHIFT(2598), + [2474] = {.count = 1, .reusable = false}, SHIFT(2585), + [2476] = {.count = 1, .reusable = false}, SHIFT(574), + [2478] = {.count = 1, .reusable = false}, SHIFT(2600), + [2480] = {.count = 1, .reusable = false}, SHIFT(573), + [2482] = {.count = 1, .reusable = false}, SHIFT(2181), + [2484] = {.count = 1, .reusable = false}, SHIFT(2601), + [2486] = {.count = 1, .reusable = false}, SHIFT(577), + [2488] = {.count = 1, .reusable = false}, SHIFT(578), + [2490] = {.count = 1, .reusable = true}, SHIFT(659), + [2492] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(646), + [2495] = {.count = 1, .reusable = true}, SHIFT(673), + [2497] = {.count = 1, .reusable = false}, SHIFT(672), + [2499] = {.count = 1, .reusable = true}, SHIFT(2463), + [2501] = {.count = 1, .reusable = true}, SHIFT(1526), + [2503] = {.count = 1, .reusable = true}, SHIFT(658), + [2505] = {.count = 1, .reusable = false}, SHIFT(658), + [2507] = {.count = 1, .reusable = true}, SHIFT(2466), + [2509] = {.count = 1, .reusable = false}, SHIFT(675), + [2511] = {.count = 1, .reusable = true}, SHIFT(2462), + [2513] = {.count = 1, .reusable = true}, SHIFT(2461), + [2515] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1529), + [2518] = {.count = 1, .reusable = false}, SHIFT(641), + [2520] = {.count = 1, .reusable = false}, SHIFT(642), + [2522] = {.count = 1, .reusable = false}, SHIFT(643), + [2524] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 5), + [2526] = {.count = 1, .reusable = true}, SHIFT(709), + [2528] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(702), + [2531] = {.count = 1, .reusable = true}, SHIFT(1474), + [2533] = {.count = 1, .reusable = true}, SHIFT(2473), + [2535] = {.count = 1, .reusable = true}, SHIFT(1569), + [2537] = {.count = 1, .reusable = true}, SHIFT(708), + [2539] = {.count = 1, .reusable = false}, SHIFT(708), + [2541] = {.count = 1, .reusable = true}, SHIFT(2475), + [2543] = {.count = 1, .reusable = false}, SHIFT(718), + [2545] = {.count = 1, .reusable = true}, SHIFT(2472), + [2547] = {.count = 1, .reusable = true}, SHIFT(2471), + [2549] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1572), + [2552] = {.count = 1, .reusable = false}, SHIFT(697), + [2554] = {.count = 1, .reusable = false}, SHIFT(698), + [2556] = {.count = 1, .reusable = false}, SHIFT(699), + [2558] = {.count = 1, .reusable = true}, SHIFT(746), + [2560] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(741), + [2563] = {.count = 1, .reusable = true}, SHIFT(745), + [2565] = {.count = 1, .reusable = false}, SHIFT(745), + [2567] = {.count = 1, .reusable = false}, SHIFT(755), + [2569] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1615), + [2572] = {.count = 1, .reusable = false}, SHIFT(736), + [2574] = {.count = 1, .reusable = false}, SHIFT(737), + [2576] = {.count = 1, .reusable = false}, SHIFT(738), + [2578] = {.count = 1, .reusable = false}, SHIFT(1612), + [2580] = {.count = 1, .reusable = true}, SHIFT(783), + [2582] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(778), + [2585] = {.count = 1, .reusable = true}, SHIFT(782), + [2587] = {.count = 1, .reusable = false}, SHIFT(792), + [2589] = {.count = 1, .reusable = false}, SHIFT(782), + [2591] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1658), + [2594] = {.count = 1, .reusable = true}, SHIFT(2304), + [2596] = {.count = 1, .reusable = false}, SHIFT(1329), [2598] = {.count = 1, .reusable = false}, SHIFT(773), - [2600] = {.count = 1, .reusable = true}, SHIFT(772), - [2602] = {.count = 1, .reusable = true}, SHIFT(774), - [2604] = {.count = 1, .reusable = true}, SHIFT(819), - [2606] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(814), - [2609] = {.count = 1, .reusable = false}, SHIFT(825), - [2611] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1693), - [2614] = {.count = 1, .reusable = false}, SHIFT(841), - [2616] = {.count = 1, .reusable = true}, SHIFT(842), - [2618] = {.count = 1, .reusable = false}, SHIFT(842), - [2620] = {.count = 1, .reusable = true}, SHIFT(841), - [2622] = {.count = 1, .reusable = true}, SHIFT(811), - [2624] = {.count = 1, .reusable = true}, SHIFT(851), - [2626] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(846), - [2629] = {.count = 1, .reusable = true}, SHIFT(850), - [2631] = {.count = 1, .reusable = false}, SHIFT(857), - [2633] = {.count = 1, .reusable = true}, SHIFT(2500), - [2635] = {.count = 1, .reusable = true}, SHIFT(2494), - [2637] = {.count = 1, .reusable = false}, SHIFT(850), - [2639] = {.count = 1, .reusable = true}, SHIFT(2502), - [2641] = {.count = 1, .reusable = true}, SHIFT(1730), - [2643] = {.count = 1, .reusable = true}, SHIFT(2503), - [2645] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1733), - [2648] = {.count = 1, .reusable = false}, SHIFT(873), - [2650] = {.count = 1, .reusable = false}, SHIFT(874), - [2652] = {.count = 1, .reusable = false}, SHIFT(843), - [2654] = {.count = 1, .reusable = true}, SHIFT(883), - [2656] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(878), - [2659] = {.count = 1, .reusable = true}, SHIFT(882), - [2661] = {.count = 1, .reusable = false}, SHIFT(889), - [2663] = {.count = 1, .reusable = true}, SHIFT(2507), - [2665] = {.count = 1, .reusable = true}, SHIFT(2501), - [2667] = {.count = 1, .reusable = false}, SHIFT(882), - [2669] = {.count = 1, .reusable = true}, SHIFT(2509), - [2671] = {.count = 1, .reusable = true}, SHIFT(1770), - [2673] = {.count = 1, .reusable = true}, SHIFT(2510), - [2675] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1773), - [2678] = {.count = 1, .reusable = false}, SHIFT(905), - [2680] = {.count = 1, .reusable = false}, SHIFT(906), - [2682] = {.count = 1, .reusable = false}, SHIFT(875), - [2684] = {.count = 1, .reusable = true}, SHIFT(915), - [2686] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(910), - [2689] = {.count = 1, .reusable = true}, SHIFT(914), - [2691] = {.count = 1, .reusable = false}, SHIFT(914), - [2693] = {.count = 1, .reusable = false}, SHIFT(921), - [2695] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1813), - [2698] = {.count = 1, .reusable = false}, SHIFT(937), - [2700] = {.count = 1, .reusable = true}, SHIFT(938), - [2702] = {.count = 1, .reusable = true}, SHIFT(907), - [2704] = {.count = 1, .reusable = false}, SHIFT(938), - [2706] = {.count = 1, .reusable = true}, SHIFT(947), - [2708] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(942), - [2711] = {.count = 1, .reusable = true}, SHIFT(946), - [2713] = {.count = 1, .reusable = false}, SHIFT(946), - [2715] = {.count = 1, .reusable = false}, SHIFT(953), - [2717] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1853), - [2720] = {.count = 1, .reusable = false}, SHIFT(969), - [2722] = {.count = 1, .reusable = false}, SHIFT(970), - [2724] = {.count = 1, .reusable = false}, SHIFT(939), - [2726] = {.count = 1, .reusable = false}, SHIFT(1850), - [2728] = {.count = 1, .reusable = true}, SHIFT(979), - [2730] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(974), - [2733] = {.count = 1, .reusable = true}, SHIFT(978), - [2735] = {.count = 1, .reusable = false}, SHIFT(978), - [2737] = {.count = 1, .reusable = false}, SHIFT(1017), - [2739] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1893), - [2742] = {.count = 1, .reusable = true}, SHIFT(1011), - [2744] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1006), - [2747] = {.count = 1, .reusable = true}, SHIFT(1010), - [2749] = {.count = 1, .reusable = false}, SHIFT(1010), - [2751] = {.count = 1, .reusable = false}, SHIFT(1049), - [2753] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1933), - [2756] = {.count = 1, .reusable = false}, SHIFT(1001), - [2758] = {.count = 1, .reusable = false}, SHIFT(1002), - [2760] = {.count = 1, .reusable = false}, SHIFT(971), - [2762] = {.count = 1, .reusable = true}, SHIFT(1043), - [2764] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1038), - [2767] = {.count = 1, .reusable = true}, SHIFT(1042), - [2769] = {.count = 1, .reusable = false}, SHIFT(1081), - [2771] = {.count = 1, .reusable = true}, SHIFT(2542), - [2773] = {.count = 1, .reusable = true}, SHIFT(2536), - [2775] = {.count = 1, .reusable = false}, SHIFT(1042), - [2777] = {.count = 1, .reusable = true}, SHIFT(2544), - [2779] = {.count = 1, .reusable = true}, SHIFT(1970), - [2781] = {.count = 1, .reusable = true}, SHIFT(2545), - [2783] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1973), - [2786] = {.count = 1, .reusable = false}, SHIFT(1033), - [2788] = {.count = 1, .reusable = false}, SHIFT(1034), - [2790] = {.count = 1, .reusable = false}, SHIFT(1003), - [2792] = {.count = 1, .reusable = false}, SHIFT(1930), - [2794] = {.count = 1, .reusable = true}, SHIFT(1075), - [2796] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1070), - [2799] = {.count = 1, .reusable = true}, SHIFT(1074), - [2801] = {.count = 1, .reusable = false}, SHIFT(1113), - [2803] = {.count = 1, .reusable = true}, SHIFT(2549), - [2805] = {.count = 1, .reusable = true}, SHIFT(2543), - [2807] = {.count = 1, .reusable = false}, SHIFT(1074), - [2809] = {.count = 1, .reusable = true}, SHIFT(2551), - [2811] = {.count = 1, .reusable = true}, SHIFT(2010), - [2813] = {.count = 1, .reusable = true}, SHIFT(2552), - [2815] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2013), - [2818] = {.count = 1, .reusable = false}, SHIFT(1065), - [2820] = {.count = 1, .reusable = false}, SHIFT(1066), - [2822] = {.count = 1, .reusable = false}, SHIFT(1035), - [2824] = {.count = 1, .reusable = false}, SHIFT(1970), - [2826] = {.count = 1, .reusable = true}, SHIFT(1107), - [2828] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1102), - [2831] = {.count = 1, .reusable = true}, SHIFT(1106), - [2833] = {.count = 1, .reusable = false}, SHIFT(1106), - [2835] = {.count = 1, .reusable = false}, SHIFT(1145), - [2837] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2053), - [2840] = {.count = 1, .reusable = false}, SHIFT(1097), - [2842] = {.count = 1, .reusable = false}, SHIFT(1098), - [2844] = {.count = 1, .reusable = false}, SHIFT(1067), - [2846] = {.count = 1, .reusable = false}, SHIFT(2010), - [2848] = {.count = 1, .reusable = true}, SHIFT(1139), - [2850] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1134), - [2853] = {.count = 1, .reusable = true}, SHIFT(1138), - [2855] = {.count = 1, .reusable = false}, SHIFT(1138), - [2857] = {.count = 1, .reusable = false}, SHIFT(1177), - [2859] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2093), - [2862] = {.count = 1, .reusable = false}, SHIFT(1129), - [2864] = {.count = 1, .reusable = true}, SHIFT(1130), - [2866] = {.count = 1, .reusable = true}, SHIFT(1129), - [2868] = {.count = 1, .reusable = true}, SHIFT(1099), - [2870] = {.count = 1, .reusable = true}, SHIFT(1171), - [2872] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1166), - [2875] = {.count = 1, .reusable = true}, SHIFT(1170), - [2877] = {.count = 1, .reusable = false}, SHIFT(1170), - [2879] = {.count = 1, .reusable = false}, SHIFT(1209), - [2881] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2133), - [2884] = {.count = 1, .reusable = false}, SHIFT(1161), - [2886] = {.count = 1, .reusable = true}, SHIFT(1162), - [2888] = {.count = 1, .reusable = true}, SHIFT(1131), - [2890] = {.count = 1, .reusable = false}, SHIFT(1162), - [2892] = {.count = 1, .reusable = true}, SHIFT(1203), - [2894] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1198), - [2897] = {.count = 1, .reusable = true}, SHIFT(1202), - [2899] = {.count = 1, .reusable = false}, SHIFT(1202), - [2901] = {.count = 1, .reusable = false}, SHIFT(1241), - [2903] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2173), - [2906] = {.count = 1, .reusable = false}, SHIFT(1193), - [2908] = {.count = 1, .reusable = false}, SHIFT(1194), - [2910] = {.count = 1, .reusable = false}, SHIFT(1163), - [2912] = {.count = 1, .reusable = true}, SHIFT(1235), - [2914] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1230), - [2917] = {.count = 1, .reusable = true}, SHIFT(2593), - [2919] = {.count = 1, .reusable = true}, SHIFT(2210), - [2921] = {.count = 1, .reusable = true}, SHIFT(1234), - [2923] = {.count = 1, .reusable = false}, SHIFT(1234), - [2925] = {.count = 1, .reusable = true}, SHIFT(2594), - [2927] = {.count = 1, .reusable = false}, SHIFT(1273), - [2929] = {.count = 1, .reusable = true}, SHIFT(2578), - [2931] = {.count = 1, .reusable = true}, SHIFT(2591), - [2933] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2213), - [2936] = {.count = 1, .reusable = false}, SHIFT(1257), - [2938] = {.count = 1, .reusable = false}, SHIFT(1258), - [2940] = {.count = 1, .reusable = false}, SHIFT(1195), - [2942] = {.count = 1, .reusable = true}, SHIFT(1267), - [2944] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1262), - [2947] = {.count = 1, .reusable = true}, SHIFT(2599), - [2949] = {.count = 1, .reusable = true}, SHIFT(2250), - [2951] = {.count = 1, .reusable = true}, SHIFT(1266), - [2953] = {.count = 1, .reusable = false}, SHIFT(1266), - [2955] = {.count = 1, .reusable = true}, SHIFT(2600), - [2957] = {.count = 1, .reusable = false}, SHIFT(1305), - [2959] = {.count = 1, .reusable = true}, SHIFT(2585), - [2961] = {.count = 1, .reusable = true}, SHIFT(2598), - [2963] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2253), - [2966] = {.count = 1, .reusable = false}, SHIFT(1289), - [2968] = {.count = 1, .reusable = false}, SHIFT(1290), - [2970] = {.count = 1, .reusable = false}, SHIFT(1227), - [2972] = {.count = 1, .reusable = true}, SHIFT(1299), - [2974] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1294), - [2977] = {.count = 1, .reusable = true}, SHIFT(2605), - [2979] = {.count = 1, .reusable = true}, SHIFT(2290), - [2981] = {.count = 1, .reusable = true}, SHIFT(1298), - [2983] = {.count = 1, .reusable = false}, SHIFT(1298), - [2985] = {.count = 1, .reusable = true}, SHIFT(2606), - [2987] = {.count = 1, .reusable = false}, SHIFT(1329), - [2989] = {.count = 1, .reusable = true}, SHIFT(2592), - [2991] = {.count = 1, .reusable = true}, SHIFT(2604), - [2993] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2293), - [2996] = {.count = 1, .reusable = false}, SHIFT(1321), - [2998] = {.count = 1, .reusable = false}, SHIFT(1322), - [3000] = {.count = 1, .reusable = false}, SHIFT(1259), - [3002] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1323), - [3005] = {.count = 1, .reusable = false}, SHIFT(1343), - [3007] = {.count = 1, .reusable = false}, SHIFT(1344), - [3009] = {.count = 1, .reusable = false}, SHIFT(1291), - [3011] = {.count = 1, .reusable = false}, SHIFT(2290), - [3013] = {.count = 1, .reusable = true}, SHIFT(393), - [3015] = {.count = 1, .reusable = false}, SHIFT(393), - [3017] = {.count = 1, .reusable = true}, SHIFT(403), - [3019] = {.count = 1, .reusable = true}, SHIFT(404), - [3021] = {.count = 1, .reusable = true}, SHIFT(402), - [3023] = {.count = 1, .reusable = true}, SHIFT(406), - [3025] = {.count = 1, .reusable = false}, SHIFT(411), - [3027] = {.count = 1, .reusable = false}, SHIFT(1380), - [3029] = {.count = 1, .reusable = true}, SHIFT(427), - [3031] = {.count = 1, .reusable = true}, SHIFT(430), - [3033] = {.count = 1, .reusable = true}, SHIFT(431), - [3035] = {.count = 1, .reusable = false}, SHIFT(1390), - [3037] = {.count = 1, .reusable = true}, SHIFT(1390), - [3039] = {.count = 1, .reusable = true}, SHIFT(1389), - [3041] = {.count = 1, .reusable = true}, SHIFT(435), - [3043] = {.count = 1, .reusable = false}, SHIFT(1395), - [3045] = {.count = 1, .reusable = true}, SHIFT(1395), - [3047] = {.count = 1, .reusable = true}, SHIFT(1394), - [3049] = {.count = 1, .reusable = true}, SHIFT(436), - [3051] = {.count = 1, .reusable = true}, SHIFT(2416), - [3053] = {.count = 1, .reusable = true}, SHIFT(439), - [3055] = {.count = 1, .reusable = false}, SHIFT(438), + [2600] = {.count = 1, .reusable = true}, SHIFT(774), + [2602] = {.count = 1, .reusable = false}, SHIFT(774), + [2604] = {.count = 1, .reusable = true}, SHIFT(773), + [2606] = {.count = 1, .reusable = true}, SHIFT(775), + [2608] = {.count = 1, .reusable = true}, SHIFT(820), + [2610] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(815), + [2613] = {.count = 1, .reusable = false}, SHIFT(829), + [2615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1701), + [2618] = {.count = 1, .reusable = false}, SHIFT(847), + [2620] = {.count = 1, .reusable = true}, SHIFT(848), + [2622] = {.count = 1, .reusable = false}, SHIFT(848), + [2624] = {.count = 1, .reusable = true}, SHIFT(847), + [2626] = {.count = 1, .reusable = true}, SHIFT(812), + [2628] = {.count = 1, .reusable = true}, SHIFT(857), + [2630] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(852), + [2633] = {.count = 1, .reusable = true}, SHIFT(856), + [2635] = {.count = 1, .reusable = false}, SHIFT(863), + [2637] = {.count = 1, .reusable = true}, SHIFT(2514), + [2639] = {.count = 1, .reusable = true}, SHIFT(2508), + [2641] = {.count = 1, .reusable = false}, SHIFT(856), + [2643] = {.count = 1, .reusable = true}, SHIFT(2516), + [2645] = {.count = 1, .reusable = true}, SHIFT(1741), + [2647] = {.count = 1, .reusable = true}, SHIFT(2517), + [2649] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1744), + [2652] = {.count = 1, .reusable = false}, SHIFT(879), + [2654] = {.count = 1, .reusable = false}, SHIFT(880), + [2656] = {.count = 1, .reusable = false}, SHIFT(849), + [2658] = {.count = 1, .reusable = true}, SHIFT(889), + [2660] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(884), + [2663] = {.count = 1, .reusable = true}, SHIFT(888), + [2665] = {.count = 1, .reusable = false}, SHIFT(895), + [2667] = {.count = 1, .reusable = true}, SHIFT(2521), + [2669] = {.count = 1, .reusable = true}, SHIFT(2515), + [2671] = {.count = 1, .reusable = false}, SHIFT(888), + [2673] = {.count = 1, .reusable = true}, SHIFT(2523), + [2675] = {.count = 1, .reusable = true}, SHIFT(1781), + [2677] = {.count = 1, .reusable = true}, SHIFT(2524), + [2679] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1784), + [2682] = {.count = 1, .reusable = false}, SHIFT(911), + [2684] = {.count = 1, .reusable = false}, SHIFT(912), + [2686] = {.count = 1, .reusable = false}, SHIFT(881), + [2688] = {.count = 1, .reusable = true}, SHIFT(921), + [2690] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(916), + [2693] = {.count = 1, .reusable = true}, SHIFT(920), + [2695] = {.count = 1, .reusable = false}, SHIFT(920), + [2697] = {.count = 1, .reusable = false}, SHIFT(927), + [2699] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1824), + [2702] = {.count = 1, .reusable = false}, SHIFT(943), + [2704] = {.count = 1, .reusable = true}, SHIFT(944), + [2706] = {.count = 1, .reusable = true}, SHIFT(913), + [2708] = {.count = 1, .reusable = false}, SHIFT(944), + [2710] = {.count = 1, .reusable = true}, SHIFT(953), + [2712] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(948), + [2715] = {.count = 1, .reusable = true}, SHIFT(952), + [2717] = {.count = 1, .reusable = false}, SHIFT(952), + [2719] = {.count = 1, .reusable = false}, SHIFT(959), + [2721] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1864), + [2724] = {.count = 1, .reusable = false}, SHIFT(975), + [2726] = {.count = 1, .reusable = false}, SHIFT(976), + [2728] = {.count = 1, .reusable = false}, SHIFT(945), + [2730] = {.count = 1, .reusable = false}, SHIFT(1861), + [2732] = {.count = 1, .reusable = true}, SHIFT(985), + [2734] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(980), + [2737] = {.count = 1, .reusable = true}, SHIFT(984), + [2739] = {.count = 1, .reusable = false}, SHIFT(984), + [2741] = {.count = 1, .reusable = false}, SHIFT(1023), + [2743] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1904), + [2746] = {.count = 1, .reusable = true}, SHIFT(1017), + [2748] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1012), + [2751] = {.count = 1, .reusable = true}, SHIFT(1016), + [2753] = {.count = 1, .reusable = false}, SHIFT(1016), + [2755] = {.count = 1, .reusable = false}, SHIFT(1055), + [2757] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1944), + [2760] = {.count = 1, .reusable = false}, SHIFT(1007), + [2762] = {.count = 1, .reusable = false}, SHIFT(1008), + [2764] = {.count = 1, .reusable = false}, SHIFT(977), + [2766] = {.count = 1, .reusable = true}, SHIFT(1049), + [2768] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1044), + [2771] = {.count = 1, .reusable = true}, SHIFT(1048), + [2773] = {.count = 1, .reusable = false}, SHIFT(1087), + [2775] = {.count = 1, .reusable = true}, SHIFT(2556), + [2777] = {.count = 1, .reusable = true}, SHIFT(2550), + [2779] = {.count = 1, .reusable = false}, SHIFT(1048), + [2781] = {.count = 1, .reusable = true}, SHIFT(2558), + [2783] = {.count = 1, .reusable = true}, SHIFT(1981), + [2785] = {.count = 1, .reusable = true}, SHIFT(2559), + [2787] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1984), + [2790] = {.count = 1, .reusable = false}, SHIFT(1039), + [2792] = {.count = 1, .reusable = false}, SHIFT(1040), + [2794] = {.count = 1, .reusable = false}, SHIFT(1009), + [2796] = {.count = 1, .reusable = false}, SHIFT(1941), + [2798] = {.count = 1, .reusable = true}, SHIFT(1081), + [2800] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1076), + [2803] = {.count = 1, .reusable = true}, SHIFT(1080), + [2805] = {.count = 1, .reusable = false}, SHIFT(1119), + [2807] = {.count = 1, .reusable = true}, SHIFT(2563), + [2809] = {.count = 1, .reusable = true}, SHIFT(2557), + [2811] = {.count = 1, .reusable = false}, SHIFT(1080), + [2813] = {.count = 1, .reusable = true}, SHIFT(2565), + [2815] = {.count = 1, .reusable = true}, SHIFT(2021), + [2817] = {.count = 1, .reusable = true}, SHIFT(2566), + [2819] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2024), + [2822] = {.count = 1, .reusable = false}, SHIFT(1071), + [2824] = {.count = 1, .reusable = false}, SHIFT(1072), + [2826] = {.count = 1, .reusable = false}, SHIFT(1041), + [2828] = {.count = 1, .reusable = false}, SHIFT(1981), + [2830] = {.count = 1, .reusable = true}, SHIFT(1113), + [2832] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1108), + [2835] = {.count = 1, .reusable = true}, SHIFT(1112), + [2837] = {.count = 1, .reusable = false}, SHIFT(1112), + [2839] = {.count = 1, .reusable = false}, SHIFT(1151), + [2841] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2064), + [2844] = {.count = 1, .reusable = false}, SHIFT(1103), + [2846] = {.count = 1, .reusable = false}, SHIFT(1104), + [2848] = {.count = 1, .reusable = false}, SHIFT(1073), + [2850] = {.count = 1, .reusable = false}, SHIFT(2021), + [2852] = {.count = 1, .reusable = true}, SHIFT(1145), + [2854] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1140), + [2857] = {.count = 1, .reusable = true}, SHIFT(1144), + [2859] = {.count = 1, .reusable = false}, SHIFT(1144), + [2861] = {.count = 1, .reusable = false}, SHIFT(1183), + [2863] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2104), + [2866] = {.count = 1, .reusable = false}, SHIFT(1135), + [2868] = {.count = 1, .reusable = true}, SHIFT(1136), + [2870] = {.count = 1, .reusable = true}, SHIFT(1135), + [2872] = {.count = 1, .reusable = true}, SHIFT(1105), + [2874] = {.count = 1, .reusable = true}, SHIFT(1177), + [2876] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1172), + [2879] = {.count = 1, .reusable = true}, SHIFT(1176), + [2881] = {.count = 1, .reusable = false}, SHIFT(1176), + [2883] = {.count = 1, .reusable = false}, SHIFT(1215), + [2885] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2144), + [2888] = {.count = 1, .reusable = false}, SHIFT(1167), + [2890] = {.count = 1, .reusable = true}, SHIFT(1168), + [2892] = {.count = 1, .reusable = true}, SHIFT(1137), + [2894] = {.count = 1, .reusable = false}, SHIFT(1168), + [2896] = {.count = 1, .reusable = true}, SHIFT(1209), + [2898] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1204), + [2901] = {.count = 1, .reusable = true}, SHIFT(1208), + [2903] = {.count = 1, .reusable = false}, SHIFT(1208), + [2905] = {.count = 1, .reusable = false}, SHIFT(1279), + [2907] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2184), + [2910] = {.count = 1, .reusable = false}, SHIFT(1199), + [2912] = {.count = 1, .reusable = false}, SHIFT(1200), + [2914] = {.count = 1, .reusable = false}, SHIFT(1169), + [2916] = {.count = 1, .reusable = true}, SHIFT(1241), + [2918] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1236), + [2921] = {.count = 1, .reusable = true}, SHIFT(2607), + [2923] = {.count = 1, .reusable = true}, SHIFT(2221), + [2925] = {.count = 1, .reusable = true}, SHIFT(1240), + [2927] = {.count = 1, .reusable = false}, SHIFT(1240), + [2929] = {.count = 1, .reusable = true}, SHIFT(2608), + [2931] = {.count = 1, .reusable = false}, SHIFT(1311), + [2933] = {.count = 1, .reusable = true}, SHIFT(2592), + [2935] = {.count = 1, .reusable = true}, SHIFT(2605), + [2937] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2224), + [2940] = {.count = 1, .reusable = true}, SHIFT(1273), + [2942] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1268), + [2945] = {.count = 1, .reusable = true}, SHIFT(2613), + [2947] = {.count = 1, .reusable = true}, SHIFT(2261), + [2949] = {.count = 1, .reusable = true}, SHIFT(1272), + [2951] = {.count = 1, .reusable = false}, SHIFT(1272), + [2953] = {.count = 1, .reusable = true}, SHIFT(2614), + [2955] = {.count = 1, .reusable = false}, SHIFT(1335), + [2957] = {.count = 1, .reusable = true}, SHIFT(2599), + [2959] = {.count = 1, .reusable = true}, SHIFT(2612), + [2961] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2264), + [2964] = {.count = 1, .reusable = false}, SHIFT(1263), + [2966] = {.count = 1, .reusable = false}, SHIFT(1264), + [2968] = {.count = 1, .reusable = false}, SHIFT(1201), + [2970] = {.count = 1, .reusable = true}, SHIFT(1305), + [2972] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1300), + [2975] = {.count = 1, .reusable = true}, SHIFT(2619), + [2977] = {.count = 1, .reusable = true}, SHIFT(2301), + [2979] = {.count = 1, .reusable = true}, SHIFT(1304), + [2981] = {.count = 1, .reusable = false}, SHIFT(1304), + [2983] = {.count = 1, .reusable = true}, SHIFT(2620), + [2985] = {.count = 1, .reusable = false}, SHIFT(1355), + [2987] = {.count = 1, .reusable = true}, SHIFT(2606), + [2989] = {.count = 1, .reusable = true}, SHIFT(2618), + [2991] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2304), + [2994] = {.count = 1, .reusable = false}, SHIFT(1295), + [2996] = {.count = 1, .reusable = false}, SHIFT(1296), + [2998] = {.count = 1, .reusable = false}, SHIFT(1233), + [3000] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1329), + [3003] = {.count = 1, .reusable = false}, SHIFT(1327), + [3005] = {.count = 1, .reusable = false}, SHIFT(1328), + [3007] = {.count = 1, .reusable = false}, SHIFT(1265), + [3009] = {.count = 1, .reusable = false}, SHIFT(1349), + [3011] = {.count = 1, .reusable = false}, SHIFT(1350), + [3013] = {.count = 1, .reusable = false}, SHIFT(1297), + [3015] = {.count = 1, .reusable = false}, SHIFT(2301), + [3017] = {.count = 1, .reusable = true}, SHIFT(394), + [3019] = {.count = 1, .reusable = false}, SHIFT(394), + [3021] = {.count = 1, .reusable = true}, SHIFT(404), + [3023] = {.count = 1, .reusable = true}, SHIFT(405), + [3025] = {.count = 1, .reusable = true}, SHIFT(403), + [3027] = {.count = 1, .reusable = true}, SHIFT(407), + [3029] = {.count = 1, .reusable = false}, SHIFT(412), + [3031] = {.count = 1, .reusable = false}, SHIFT(1387), + [3033] = {.count = 1, .reusable = true}, SHIFT(428), + [3035] = {.count = 1, .reusable = true}, SHIFT(431), + [3037] = {.count = 1, .reusable = true}, SHIFT(432), + [3039] = {.count = 1, .reusable = false}, SHIFT(1397), + [3041] = {.count = 1, .reusable = true}, SHIFT(1397), + [3043] = {.count = 1, .reusable = true}, SHIFT(1396), + [3045] = {.count = 1, .reusable = true}, SHIFT(436), + [3047] = {.count = 1, .reusable = false}, SHIFT(1402), + [3049] = {.count = 1, .reusable = true}, SHIFT(1402), + [3051] = {.count = 1, .reusable = true}, SHIFT(1401), + [3053] = {.count = 1, .reusable = true}, SHIFT(437), + [3055] = {.count = 1, .reusable = true}, SHIFT(2427), [3057] = {.count = 1, .reusable = true}, SHIFT(440), - [3059] = {.count = 1, .reusable = true}, SHIFT(445), - [3061] = {.count = 1, .reusable = true}, SHIFT(1399), - [3063] = {.count = 1, .reusable = true}, SHIFT(447), - [3065] = {.count = 1, .reusable = false}, SHIFT(1969), - [3067] = {.count = 1, .reusable = false}, SHIFT(447), - [3069] = {.count = 1, .reusable = true}, SHIFT(1064), - [3071] = {.count = 1, .reusable = true}, SHIFT(446), - [3073] = {.count = 1, .reusable = true}, SHIFT(449), - [3075] = {.count = 1, .reusable = false}, SHIFT(449), - [3077] = {.count = 1, .reusable = false}, SHIFT(452), - [3079] = {.count = 1, .reusable = false}, SHIFT(1403), - [3081] = {.count = 1, .reusable = true}, SHIFT(453), - [3083] = {.count = 1, .reusable = true}, SHIFT(1405), - [3085] = {.count = 1, .reusable = true}, SHIFT(459), - [3087] = {.count = 1, .reusable = true}, SHIFT(462), - [3089] = {.count = 1, .reusable = false}, SHIFT(2009), - [3091] = {.count = 1, .reusable = false}, SHIFT(462), - [3093] = {.count = 1, .reusable = true}, SHIFT(1096), - [3095] = {.count = 1, .reusable = false}, SHIFT(1408), - [3097] = {.count = 1, .reusable = true}, SHIFT(1408), - [3099] = {.count = 1, .reusable = true}, SHIFT(474), - [3101] = {.count = 1, .reusable = true}, SHIFT(1407), - [3103] = {.count = 1, .reusable = true}, SHIFT(1409), - [3105] = {.count = 1, .reusable = false}, SHIFT(1412), - [3107] = {.count = 1, .reusable = true}, SHIFT(1412), - [3109] = {.count = 1, .reusable = true}, SHIFT(1411), - [3111] = {.count = 1, .reusable = true}, SHIFT(475), - [3113] = {.count = 1, .reusable = true}, SHIFT(1413), - [3115] = {.count = 1, .reusable = false}, SHIFT(1413), - [3117] = {.count = 1, .reusable = false}, SHIFT(1417), - [3119] = {.count = 1, .reusable = true}, SHIFT(1417), - [3121] = {.count = 1, .reusable = true}, SHIFT(476), - [3123] = {.count = 1, .reusable = true}, SHIFT(1416), - [3125] = {.count = 1, .reusable = false}, SHIFT(478), - [3127] = {.count = 1, .reusable = true}, SHIFT(479), - [3129] = {.count = 1, .reusable = true}, SHIFT(483), - [3131] = {.count = 1, .reusable = true}, SHIFT(485), - [3133] = {.count = 1, .reusable = true}, SHIFT(1426), + [3059] = {.count = 1, .reusable = false}, SHIFT(439), + [3061] = {.count = 1, .reusable = true}, SHIFT(441), + [3063] = {.count = 1, .reusable = true}, SHIFT(446), + [3065] = {.count = 1, .reusable = true}, SHIFT(1406), + [3067] = {.count = 1, .reusable = true}, SHIFT(448), + [3069] = {.count = 1, .reusable = false}, SHIFT(1980), + [3071] = {.count = 1, .reusable = false}, SHIFT(448), + [3073] = {.count = 1, .reusable = true}, SHIFT(1070), + [3075] = {.count = 1, .reusable = true}, SHIFT(447), + [3077] = {.count = 1, .reusable = true}, SHIFT(450), + [3079] = {.count = 1, .reusable = false}, SHIFT(450), + [3081] = {.count = 1, .reusable = false}, SHIFT(453), + [3083] = {.count = 1, .reusable = false}, SHIFT(1410), + [3085] = {.count = 1, .reusable = true}, SHIFT(454), + [3087] = {.count = 1, .reusable = true}, SHIFT(1412), + [3089] = {.count = 1, .reusable = true}, SHIFT(460), + [3091] = {.count = 1, .reusable = true}, SHIFT(463), + [3093] = {.count = 1, .reusable = false}, SHIFT(2020), + [3095] = {.count = 1, .reusable = false}, SHIFT(463), + [3097] = {.count = 1, .reusable = true}, SHIFT(1102), + [3099] = {.count = 1, .reusable = false}, SHIFT(1415), + [3101] = {.count = 1, .reusable = true}, SHIFT(1415), + [3103] = {.count = 1, .reusable = true}, SHIFT(475), + [3105] = {.count = 1, .reusable = true}, SHIFT(1414), + [3107] = {.count = 1, .reusable = true}, SHIFT(1416), + [3109] = {.count = 1, .reusable = false}, SHIFT(1419), + [3111] = {.count = 1, .reusable = true}, SHIFT(1419), + [3113] = {.count = 1, .reusable = true}, SHIFT(1418), + [3115] = {.count = 1, .reusable = true}, SHIFT(476), + [3117] = {.count = 1, .reusable = true}, SHIFT(1420), + [3119] = {.count = 1, .reusable = false}, SHIFT(1420), + [3121] = {.count = 1, .reusable = false}, SHIFT(1424), + [3123] = {.count = 1, .reusable = true}, SHIFT(1424), + [3125] = {.count = 1, .reusable = true}, SHIFT(477), + [3127] = {.count = 1, .reusable = true}, SHIFT(1423), + [3129] = {.count = 1, .reusable = false}, SHIFT(479), + [3131] = {.count = 1, .reusable = true}, SHIFT(480), + [3133] = {.count = 1, .reusable = true}, SHIFT(484), [3135] = {.count = 1, .reusable = true}, SHIFT(486), - [3137] = {.count = 1, .reusable = true}, SHIFT(1427), - [3139] = {.count = 1, .reusable = true}, SHIFT(1428), - [3141] = {.count = 1, .reusable = false}, SHIFT(487), - [3143] = {.count = 1, .reusable = false}, SHIFT(489), - [3145] = {.count = 1, .reusable = true}, SHIFT(490), - [3147] = {.count = 1, .reusable = true}, SHIFT(1430), - [3149] = {.count = 1, .reusable = false}, SHIFT(1431), - [3151] = {.count = 1, .reusable = true}, SHIFT(1431), - [3153] = {.count = 1, .reusable = true}, SHIFT(493), - [3155] = {.count = 1, .reusable = true}, SHIFT(1432), - [3157] = {.count = 1, .reusable = true}, SHIFT(1433), - [3159] = {.count = 1, .reusable = false}, SHIFT(1433), - [3161] = {.count = 1, .reusable = false}, SHIFT(1437), - [3163] = {.count = 1, .reusable = true}, SHIFT(1437), - [3165] = {.count = 1, .reusable = true}, SHIFT(494), - [3167] = {.count = 1, .reusable = true}, SHIFT(1436), + [3137] = {.count = 1, .reusable = true}, SHIFT(1433), + [3139] = {.count = 1, .reusable = true}, SHIFT(487), + [3141] = {.count = 1, .reusable = true}, SHIFT(1434), + [3143] = {.count = 1, .reusable = true}, SHIFT(1435), + [3145] = {.count = 1, .reusable = false}, SHIFT(488), + [3147] = {.count = 1, .reusable = false}, SHIFT(490), + [3149] = {.count = 1, .reusable = true}, SHIFT(491), + [3151] = {.count = 1, .reusable = true}, SHIFT(1437), + [3153] = {.count = 1, .reusable = false}, SHIFT(1438), + [3155] = {.count = 1, .reusable = true}, SHIFT(1438), + [3157] = {.count = 1, .reusable = true}, SHIFT(494), + [3159] = {.count = 1, .reusable = true}, SHIFT(1439), + [3161] = {.count = 1, .reusable = true}, SHIFT(1440), + [3163] = {.count = 1, .reusable = false}, SHIFT(1440), + [3165] = {.count = 1, .reusable = false}, SHIFT(1444), + [3167] = {.count = 1, .reusable = true}, SHIFT(1444), [3169] = {.count = 1, .reusable = true}, SHIFT(495), - [3171] = {.count = 1, .reusable = false}, SHIFT(1438), - [3173] = {.count = 1, .reusable = true}, SHIFT(1438), - [3175] = {.count = 1, .reusable = true}, SHIFT(496), - [3177] = {.count = 1, .reusable = true}, SHIFT(498), - [3179] = {.count = 1, .reusable = false}, SHIFT(498), + [3171] = {.count = 1, .reusable = true}, SHIFT(1443), + [3173] = {.count = 1, .reusable = true}, SHIFT(496), + [3175] = {.count = 1, .reusable = false}, SHIFT(1445), + [3177] = {.count = 1, .reusable = true}, SHIFT(1445), + [3179] = {.count = 1, .reusable = true}, SHIFT(497), [3181] = {.count = 1, .reusable = true}, SHIFT(499), [3183] = {.count = 1, .reusable = false}, SHIFT(499), - [3185] = {.count = 1, .reusable = false}, SHIFT(500), - [3187] = {.count = 1, .reusable = false}, SHIFT(501), - [3189] = {.count = 1, .reusable = true}, SHIFT(502), - [3191] = {.count = 1, .reusable = true}, SHIFT(505), - [3193] = {.count = 1, .reusable = true}, SHIFT(507), - [3195] = {.count = 1, .reusable = false}, SHIFT(508), - [3197] = {.count = 1, .reusable = true}, SHIFT(509), - [3199] = {.count = 1, .reusable = true}, SHIFT(511), - [3201] = {.count = 1, .reusable = false}, SHIFT(1447), - [3203] = {.count = 1, .reusable = true}, SHIFT(1447), - [3205] = {.count = 1, .reusable = true}, SHIFT(512), - [3207] = {.count = 1, .reusable = false}, SHIFT(1448), - [3209] = {.count = 1, .reusable = true}, SHIFT(1448), - [3211] = {.count = 1, .reusable = true}, SHIFT(513), - [3213] = {.count = 1, .reusable = true}, SHIFT(514), - [3215] = {.count = 1, .reusable = true}, SHIFT(515), - [3217] = {.count = 1, .reusable = false}, SHIFT(516), + [3185] = {.count = 1, .reusable = true}, SHIFT(500), + [3187] = {.count = 1, .reusable = false}, SHIFT(500), + [3189] = {.count = 1, .reusable = false}, SHIFT(501), + [3191] = {.count = 1, .reusable = false}, SHIFT(502), + [3193] = {.count = 1, .reusable = true}, SHIFT(503), + [3195] = {.count = 1, .reusable = true}, SHIFT(506), + [3197] = {.count = 1, .reusable = true}, SHIFT(508), + [3199] = {.count = 1, .reusable = false}, SHIFT(509), + [3201] = {.count = 1, .reusable = true}, SHIFT(510), + [3203] = {.count = 1, .reusable = true}, SHIFT(512), + [3205] = {.count = 1, .reusable = false}, SHIFT(1454), + [3207] = {.count = 1, .reusable = true}, SHIFT(1454), + [3209] = {.count = 1, .reusable = true}, SHIFT(513), + [3211] = {.count = 1, .reusable = false}, SHIFT(1455), + [3213] = {.count = 1, .reusable = true}, SHIFT(1455), + [3215] = {.count = 1, .reusable = true}, SHIFT(514), + [3217] = {.count = 1, .reusable = true}, SHIFT(515), [3219] = {.count = 1, .reusable = true}, SHIFT(516), [3221] = {.count = 1, .reusable = false}, SHIFT(517), [3223] = {.count = 1, .reusable = true}, SHIFT(517), - [3225] = {.count = 1, .reusable = true}, SHIFT(1452), - [3227] = {.count = 1, .reusable = true}, SHIFT(522), - [3229] = {.count = 1, .reusable = true}, SHIFT(523), - [3231] = {.count = 1, .reusable = true}, SHIFT(524), - [3233] = {.count = 1, .reusable = true}, SHIFT(525), - [3235] = {.count = 1, .reusable = true}, SHIFT(526), - [3237] = {.count = 1, .reusable = true}, SHIFT(1456), - [3239] = {.count = 1, .reusable = true}, SHIFT(528), - [3241] = {.count = 1, .reusable = true}, SHIFT(529), - [3243] = {.count = 1, .reusable = true}, SHIFT(1458), - [3245] = {.count = 1, .reusable = true}, SHIFT(1460), - [3247] = {.count = 1, .reusable = true}, SHIFT(617), - [3249] = {.count = 1, .reusable = false}, SHIFT(617), - [3251] = {.count = 1, .reusable = true}, SHIFT(624), - [3253] = {.count = 1, .reusable = false}, SHIFT(624), - [3255] = {.count = 1, .reusable = false}, SHIFT(985), - [3257] = {.count = 1, .reusable = false}, SHIFT(1349), - [3259] = {.count = 1, .reusable = true}, SHIFT(546), - [3261] = {.count = 1, .reusable = false}, SHIFT(546), - [3263] = {.count = 1, .reusable = true}, SHIFT(555), - [3265] = {.count = 1, .reusable = false}, SHIFT(562), - [3267] = {.count = 1, .reusable = false}, SHIFT(1481), - [3269] = {.count = 1, .reusable = true}, SHIFT(578), - [3271] = {.count = 1, .reusable = true}, SHIFT(579), - [3273] = {.count = 1, .reusable = false}, SHIFT(1486), - [3275] = {.count = 1, .reusable = true}, SHIFT(1486), - [3277] = {.count = 1, .reusable = true}, SHIFT(1485), - [3279] = {.count = 1, .reusable = true}, SHIFT(583), - [3281] = {.count = 1, .reusable = false}, SHIFT(1491), - [3283] = {.count = 1, .reusable = true}, SHIFT(1491), - [3285] = {.count = 1, .reusable = true}, SHIFT(1490), - [3287] = {.count = 1, .reusable = true}, SHIFT(584), - [3289] = {.count = 1, .reusable = true}, SHIFT(1493), - [3291] = {.count = 1, .reusable = true}, SHIFT(590), - [3293] = {.count = 1, .reusable = false}, SHIFT(590), - [3295] = {.count = 1, .reusable = true}, SHIFT(633), - [3297] = {.count = 1, .reusable = true}, SHIFT(589), - [3299] = {.count = 1, .reusable = true}, SHIFT(592), - [3301] = {.count = 1, .reusable = false}, SHIFT(592), - [3303] = {.count = 1, .reusable = false}, SHIFT(595), - [3305] = {.count = 1, .reusable = false}, SHIFT(1494), - [3307] = {.count = 1, .reusable = true}, SHIFT(596), - [3309] = {.count = 1, .reusable = false}, SHIFT(1496), - [3311] = {.count = 1, .reusable = true}, SHIFT(1496), - [3313] = {.count = 1, .reusable = true}, SHIFT(609), - [3315] = {.count = 1, .reusable = true}, SHIFT(1495), - [3317] = {.count = 1, .reusable = true}, SHIFT(1497), - [3319] = {.count = 1, .reusable = false}, SHIFT(1500), - [3321] = {.count = 1, .reusable = true}, SHIFT(1500), - [3323] = {.count = 1, .reusable = true}, SHIFT(1499), - [3325] = {.count = 1, .reusable = true}, SHIFT(610), - [3327] = {.count = 1, .reusable = true}, SHIFT(1501), - [3329] = {.count = 1, .reusable = false}, SHIFT(1501), - [3331] = {.count = 1, .reusable = false}, SHIFT(1505), - [3333] = {.count = 1, .reusable = true}, SHIFT(1505), - [3335] = {.count = 1, .reusable = true}, SHIFT(611), - [3337] = {.count = 1, .reusable = true}, SHIFT(1504), - [3339] = {.count = 1, .reusable = true}, SHIFT(612), - [3341] = {.count = 1, .reusable = true}, SHIFT(615), - [3343] = {.count = 1, .reusable = false}, SHIFT(616), - [3345] = {.count = 1, .reusable = false}, SHIFT(1507), - [3347] = {.count = 1, .reusable = true}, SHIFT(1507), - [3349] = {.count = 1, .reusable = true}, SHIFT(619), - [3351] = {.count = 1, .reusable = true}, SHIFT(1508), - [3353] = {.count = 1, .reusable = true}, SHIFT(1509), - [3355] = {.count = 1, .reusable = false}, SHIFT(1509), - [3357] = {.count = 1, .reusable = false}, SHIFT(1513), - [3359] = {.count = 1, .reusable = true}, SHIFT(1513), - [3361] = {.count = 1, .reusable = true}, SHIFT(620), - [3363] = {.count = 1, .reusable = true}, SHIFT(1512), - [3365] = {.count = 1, .reusable = true}, SHIFT(621), - [3367] = {.count = 1, .reusable = false}, SHIFT(1514), - [3369] = {.count = 1, .reusable = true}, SHIFT(1514), + [3225] = {.count = 1, .reusable = false}, SHIFT(518), + [3227] = {.count = 1, .reusable = true}, SHIFT(518), + [3229] = {.count = 1, .reusable = true}, SHIFT(1459), + [3231] = {.count = 1, .reusable = true}, SHIFT(523), + [3233] = {.count = 1, .reusable = true}, SHIFT(524), + [3235] = {.count = 1, .reusable = true}, SHIFT(525), + [3237] = {.count = 1, .reusable = true}, SHIFT(526), + [3239] = {.count = 1, .reusable = true}, SHIFT(527), + [3241] = {.count = 1, .reusable = true}, SHIFT(1463), + [3243] = {.count = 1, .reusable = true}, SHIFT(529), + [3245] = {.count = 1, .reusable = true}, SHIFT(530), + [3247] = {.count = 1, .reusable = true}, SHIFT(1465), + [3249] = {.count = 1, .reusable = true}, SHIFT(1467), + [3251] = {.count = 1, .reusable = true}, SHIFT(618), + [3253] = {.count = 1, .reusable = false}, SHIFT(618), + [3255] = {.count = 1, .reusable = true}, SHIFT(625), + [3257] = {.count = 1, .reusable = false}, SHIFT(625), + [3259] = {.count = 1, .reusable = false}, SHIFT(1247), + [3261] = {.count = 1, .reusable = false}, SHIFT(991), + [3263] = {.count = 1, .reusable = false}, SHIFT(1369), + [3265] = {.count = 1, .reusable = true}, SHIFT(547), + [3267] = {.count = 1, .reusable = false}, SHIFT(547), + [3269] = {.count = 1, .reusable = true}, SHIFT(556), + [3271] = {.count = 1, .reusable = false}, SHIFT(563), + [3273] = {.count = 1, .reusable = false}, SHIFT(1489), + [3275] = {.count = 1, .reusable = true}, SHIFT(579), + [3277] = {.count = 1, .reusable = true}, SHIFT(580), + [3279] = {.count = 1, .reusable = false}, SHIFT(1494), + [3281] = {.count = 1, .reusable = true}, SHIFT(1494), + [3283] = {.count = 1, .reusable = true}, SHIFT(1493), + [3285] = {.count = 1, .reusable = true}, SHIFT(584), + [3287] = {.count = 1, .reusable = false}, SHIFT(1499), + [3289] = {.count = 1, .reusable = true}, SHIFT(1499), + [3291] = {.count = 1, .reusable = true}, SHIFT(1498), + [3293] = {.count = 1, .reusable = true}, SHIFT(585), + [3295] = {.count = 1, .reusable = true}, SHIFT(1501), + [3297] = {.count = 1, .reusable = true}, SHIFT(591), + [3299] = {.count = 1, .reusable = false}, SHIFT(591), + [3301] = {.count = 1, .reusable = true}, SHIFT(634), + [3303] = {.count = 1, .reusable = true}, SHIFT(590), + [3305] = {.count = 1, .reusable = true}, SHIFT(593), + [3307] = {.count = 1, .reusable = false}, SHIFT(593), + [3309] = {.count = 1, .reusable = false}, SHIFT(596), + [3311] = {.count = 1, .reusable = false}, SHIFT(1502), + [3313] = {.count = 1, .reusable = true}, SHIFT(597), + [3315] = {.count = 1, .reusable = false}, SHIFT(1504), + [3317] = {.count = 1, .reusable = true}, SHIFT(1504), + [3319] = {.count = 1, .reusable = true}, SHIFT(610), + [3321] = {.count = 1, .reusable = true}, SHIFT(1503), + [3323] = {.count = 1, .reusable = true}, SHIFT(1505), + [3325] = {.count = 1, .reusable = false}, SHIFT(1508), + [3327] = {.count = 1, .reusable = true}, SHIFT(1508), + [3329] = {.count = 1, .reusable = true}, SHIFT(1507), + [3331] = {.count = 1, .reusable = true}, SHIFT(611), + [3333] = {.count = 1, .reusable = true}, SHIFT(1509), + [3335] = {.count = 1, .reusable = false}, SHIFT(1509), + [3337] = {.count = 1, .reusable = false}, SHIFT(1513), + [3339] = {.count = 1, .reusable = true}, SHIFT(1513), + [3341] = {.count = 1, .reusable = true}, SHIFT(612), + [3343] = {.count = 1, .reusable = true}, SHIFT(1512), + [3345] = {.count = 1, .reusable = true}, SHIFT(613), + [3347] = {.count = 1, .reusable = true}, SHIFT(616), + [3349] = {.count = 1, .reusable = false}, SHIFT(617), + [3351] = {.count = 1, .reusable = false}, SHIFT(1515), + [3353] = {.count = 1, .reusable = true}, SHIFT(1515), + [3355] = {.count = 1, .reusable = true}, SHIFT(620), + [3357] = {.count = 1, .reusable = true}, SHIFT(1516), + [3359] = {.count = 1, .reusable = true}, SHIFT(1517), + [3361] = {.count = 1, .reusable = false}, SHIFT(1517), + [3363] = {.count = 1, .reusable = false}, SHIFT(1521), + [3365] = {.count = 1, .reusable = true}, SHIFT(1521), + [3367] = {.count = 1, .reusable = true}, SHIFT(621), + [3369] = {.count = 1, .reusable = true}, SHIFT(1520), [3371] = {.count = 1, .reusable = true}, SHIFT(622), - [3373] = {.count = 1, .reusable = true}, SHIFT(623), - [3375] = {.count = 1, .reusable = true}, SHIFT(625), - [3377] = {.count = 1, .reusable = false}, SHIFT(1515), - [3379] = {.count = 1, .reusable = true}, SHIFT(1515), + [3373] = {.count = 1, .reusable = false}, SHIFT(1522), + [3375] = {.count = 1, .reusable = true}, SHIFT(1522), + [3377] = {.count = 1, .reusable = true}, SHIFT(623), + [3379] = {.count = 1, .reusable = true}, SHIFT(624), [3381] = {.count = 1, .reusable = true}, SHIFT(626), - [3383] = {.count = 1, .reusable = false}, SHIFT(1516), - [3385] = {.count = 1, .reusable = true}, SHIFT(1516), + [3383] = {.count = 1, .reusable = false}, SHIFT(1523), + [3385] = {.count = 1, .reusable = true}, SHIFT(1523), [3387] = {.count = 1, .reusable = true}, SHIFT(627), - [3389] = {.count = 1, .reusable = true}, SHIFT(628), - [3391] = {.count = 1, .reusable = true}, SHIFT(629), - [3393] = {.count = 1, .reusable = true}, SHIFT(630), - [3395] = {.count = 1, .reusable = true}, SHIFT(641), - [3397] = {.count = 1, .reusable = true}, SHIFT(640), - [3399] = {.count = 1, .reusable = true}, SHIFT(642), - [3401] = {.count = 1, .reusable = false}, SHIFT(1525), - [3403] = {.count = 1, .reusable = false}, SHIFT(644), - [3405] = {.count = 1, .reusable = true}, SHIFT(655), - [3407] = {.count = 1, .reusable = true}, SHIFT(656), - [3409] = {.count = 1, .reusable = false}, SHIFT(1530), - [3411] = {.count = 1, .reusable = true}, SHIFT(1530), - [3413] = {.count = 1, .reusable = true}, SHIFT(1529), - [3415] = {.count = 1, .reusable = true}, SHIFT(660), - [3417] = {.count = 1, .reusable = false}, SHIFT(1535), - [3419] = {.count = 1, .reusable = true}, SHIFT(1535), - [3421] = {.count = 1, .reusable = true}, SHIFT(1534), - [3423] = {.count = 1, .reusable = true}, SHIFT(661), - [3425] = {.count = 1, .reusable = true}, SHIFT(1536), - [3427] = {.count = 1, .reusable = true}, SHIFT(663), - [3429] = {.count = 1, .reusable = false}, SHIFT(663), - [3431] = {.count = 1, .reusable = true}, SHIFT(662), - [3433] = {.count = 1, .reusable = false}, SHIFT(665), - [3435] = {.count = 1, .reusable = false}, SHIFT(1537), - [3437] = {.count = 1, .reusable = true}, SHIFT(666), - [3439] = {.count = 1, .reusable = false}, SHIFT(1539), - [3441] = {.count = 1, .reusable = true}, SHIFT(1539), - [3443] = {.count = 1, .reusable = true}, SHIFT(675), - [3445] = {.count = 1, .reusable = true}, SHIFT(1538), - [3447] = {.count = 1, .reusable = true}, SHIFT(1540), - [3449] = {.count = 1, .reusable = false}, SHIFT(1543), - [3451] = {.count = 1, .reusable = true}, SHIFT(1543), - [3453] = {.count = 1, .reusable = true}, SHIFT(1542), - [3455] = {.count = 1, .reusable = true}, SHIFT(676), - [3457] = {.count = 1, .reusable = true}, SHIFT(1544), - [3459] = {.count = 1, .reusable = false}, SHIFT(1544), - [3461] = {.count = 1, .reusable = false}, SHIFT(1548), - [3463] = {.count = 1, .reusable = true}, SHIFT(1548), - [3465] = {.count = 1, .reusable = true}, SHIFT(677), - [3467] = {.count = 1, .reusable = true}, SHIFT(1547), - [3469] = {.count = 1, .reusable = true}, SHIFT(678), - [3471] = {.count = 1, .reusable = false}, SHIFT(679), - [3473] = {.count = 1, .reusable = false}, SHIFT(1550), - [3475] = {.count = 1, .reusable = true}, SHIFT(1550), - [3477] = {.count = 1, .reusable = true}, SHIFT(682), - [3479] = {.count = 1, .reusable = true}, SHIFT(1551), - [3481] = {.count = 1, .reusable = true}, SHIFT(1552), - [3483] = {.count = 1, .reusable = false}, SHIFT(1552), - [3485] = {.count = 1, .reusable = false}, SHIFT(1556), - [3487] = {.count = 1, .reusable = true}, SHIFT(1556), - [3489] = {.count = 1, .reusable = true}, SHIFT(683), - [3491] = {.count = 1, .reusable = true}, SHIFT(1555), - [3493] = {.count = 1, .reusable = true}, SHIFT(684), - [3495] = {.count = 1, .reusable = false}, SHIFT(1557), - [3497] = {.count = 1, .reusable = true}, SHIFT(1557), + [3389] = {.count = 1, .reusable = false}, SHIFT(1524), + [3391] = {.count = 1, .reusable = true}, SHIFT(1524), + [3393] = {.count = 1, .reusable = true}, SHIFT(628), + [3395] = {.count = 1, .reusable = true}, SHIFT(629), + [3397] = {.count = 1, .reusable = true}, SHIFT(630), + [3399] = {.count = 1, .reusable = true}, SHIFT(631), + [3401] = {.count = 1, .reusable = true}, SHIFT(642), + [3403] = {.count = 1, .reusable = true}, SHIFT(641), + [3405] = {.count = 1, .reusable = true}, SHIFT(643), + [3407] = {.count = 1, .reusable = false}, SHIFT(1533), + [3409] = {.count = 1, .reusable = false}, SHIFT(645), + [3411] = {.count = 1, .reusable = true}, SHIFT(656), + [3413] = {.count = 1, .reusable = true}, SHIFT(657), + [3415] = {.count = 1, .reusable = false}, SHIFT(1538), + [3417] = {.count = 1, .reusable = true}, SHIFT(1538), + [3419] = {.count = 1, .reusable = true}, SHIFT(1537), + [3421] = {.count = 1, .reusable = true}, SHIFT(661), + [3423] = {.count = 1, .reusable = false}, SHIFT(1543), + [3425] = {.count = 1, .reusable = true}, SHIFT(1543), + [3427] = {.count = 1, .reusable = true}, SHIFT(1542), + [3429] = {.count = 1, .reusable = true}, SHIFT(662), + [3431] = {.count = 1, .reusable = true}, SHIFT(1544), + [3433] = {.count = 1, .reusable = true}, SHIFT(664), + [3435] = {.count = 1, .reusable = false}, SHIFT(664), + [3437] = {.count = 1, .reusable = true}, SHIFT(663), + [3439] = {.count = 1, .reusable = false}, SHIFT(666), + [3441] = {.count = 1, .reusable = false}, SHIFT(1545), + [3443] = {.count = 1, .reusable = true}, SHIFT(667), + [3445] = {.count = 1, .reusable = false}, SHIFT(1547), + [3447] = {.count = 1, .reusable = true}, SHIFT(1547), + [3449] = {.count = 1, .reusable = true}, SHIFT(676), + [3451] = {.count = 1, .reusable = true}, SHIFT(1546), + [3453] = {.count = 1, .reusable = true}, SHIFT(1548), + [3455] = {.count = 1, .reusable = false}, SHIFT(1551), + [3457] = {.count = 1, .reusable = true}, SHIFT(1551), + [3459] = {.count = 1, .reusable = true}, SHIFT(1550), + [3461] = {.count = 1, .reusable = true}, SHIFT(677), + [3463] = {.count = 1, .reusable = true}, SHIFT(1552), + [3465] = {.count = 1, .reusable = false}, SHIFT(1552), + [3467] = {.count = 1, .reusable = false}, SHIFT(1556), + [3469] = {.count = 1, .reusable = true}, SHIFT(1556), + [3471] = {.count = 1, .reusable = true}, SHIFT(678), + [3473] = {.count = 1, .reusable = true}, SHIFT(1555), + [3475] = {.count = 1, .reusable = true}, SHIFT(679), + [3477] = {.count = 1, .reusable = false}, SHIFT(680), + [3479] = {.count = 1, .reusable = false}, SHIFT(1558), + [3481] = {.count = 1, .reusable = true}, SHIFT(1558), + [3483] = {.count = 1, .reusable = true}, SHIFT(683), + [3485] = {.count = 1, .reusable = true}, SHIFT(1559), + [3487] = {.count = 1, .reusable = true}, SHIFT(1560), + [3489] = {.count = 1, .reusable = false}, SHIFT(1560), + [3491] = {.count = 1, .reusable = false}, SHIFT(1564), + [3493] = {.count = 1, .reusable = true}, SHIFT(1564), + [3495] = {.count = 1, .reusable = true}, SHIFT(684), + [3497] = {.count = 1, .reusable = true}, SHIFT(1563), [3499] = {.count = 1, .reusable = true}, SHIFT(685), - [3501] = {.count = 1, .reusable = true}, SHIFT(686), - [3503] = {.count = 1, .reusable = true}, SHIFT(688), - [3505] = {.count = 1, .reusable = false}, SHIFT(1558), - [3507] = {.count = 1, .reusable = true}, SHIFT(1558), + [3501] = {.count = 1, .reusable = false}, SHIFT(1565), + [3503] = {.count = 1, .reusable = true}, SHIFT(1565), + [3505] = {.count = 1, .reusable = true}, SHIFT(686), + [3507] = {.count = 1, .reusable = true}, SHIFT(687), [3509] = {.count = 1, .reusable = true}, SHIFT(689), - [3511] = {.count = 1, .reusable = false}, SHIFT(1559), - [3513] = {.count = 1, .reusable = true}, SHIFT(1559), + [3511] = {.count = 1, .reusable = false}, SHIFT(1566), + [3513] = {.count = 1, .reusable = true}, SHIFT(1566), [3515] = {.count = 1, .reusable = true}, SHIFT(690), - [3517] = {.count = 1, .reusable = true}, SHIFT(691), - [3519] = {.count = 1, .reusable = true}, SHIFT(692), - [3521] = {.count = 1, .reusable = true}, SHIFT(693), - [3523] = {.count = 1, .reusable = true}, SHIFT(697), - [3525] = {.count = 1, .reusable = true}, SHIFT(696), - [3527] = {.count = 1, .reusable = true}, SHIFT(698), - [3529] = {.count = 1, .reusable = false}, SHIFT(1568), - [3531] = {.count = 1, .reusable = false}, SHIFT(700), - [3533] = {.count = 1, .reusable = true}, SHIFT(705), - [3535] = {.count = 1, .reusable = true}, SHIFT(706), - [3537] = {.count = 1, .reusable = false}, SHIFT(1573), - [3539] = {.count = 1, .reusable = true}, SHIFT(1573), - [3541] = {.count = 1, .reusable = true}, SHIFT(1572), - [3543] = {.count = 1, .reusable = true}, SHIFT(710), - [3545] = {.count = 1, .reusable = false}, SHIFT(1578), - [3547] = {.count = 1, .reusable = true}, SHIFT(1578), - [3549] = {.count = 1, .reusable = true}, SHIFT(1577), - [3551] = {.count = 1, .reusable = true}, SHIFT(711), - [3553] = {.count = 1, .reusable = true}, SHIFT(1579), - [3555] = {.count = 1, .reusable = true}, SHIFT(713), - [3557] = {.count = 1, .reusable = false}, SHIFT(713), - [3559] = {.count = 1, .reusable = true}, SHIFT(840), - [3561] = {.count = 1, .reusable = true}, SHIFT(712), - [3563] = {.count = 1, .reusable = false}, SHIFT(715), - [3565] = {.count = 1, .reusable = false}, SHIFT(1580), - [3567] = {.count = 1, .reusable = true}, SHIFT(716), - [3569] = {.count = 1, .reusable = false}, SHIFT(1582), - [3571] = {.count = 1, .reusable = true}, SHIFT(1582), - [3573] = {.count = 1, .reusable = true}, SHIFT(718), - [3575] = {.count = 1, .reusable = true}, SHIFT(1581), - [3577] = {.count = 1, .reusable = true}, SHIFT(1583), - [3579] = {.count = 1, .reusable = false}, SHIFT(1586), - [3581] = {.count = 1, .reusable = true}, SHIFT(1586), - [3583] = {.count = 1, .reusable = true}, SHIFT(1585), - [3585] = {.count = 1, .reusable = true}, SHIFT(719), - [3587] = {.count = 1, .reusable = true}, SHIFT(1587), - [3589] = {.count = 1, .reusable = false}, SHIFT(1587), - [3591] = {.count = 1, .reusable = false}, SHIFT(1591), - [3593] = {.count = 1, .reusable = true}, SHIFT(1591), - [3595] = {.count = 1, .reusable = true}, SHIFT(720), - [3597] = {.count = 1, .reusable = true}, SHIFT(1590), - [3599] = {.count = 1, .reusable = true}, SHIFT(721), - [3601] = {.count = 1, .reusable = false}, SHIFT(722), - [3603] = {.count = 1, .reusable = false}, SHIFT(1593), - [3605] = {.count = 1, .reusable = true}, SHIFT(1593), - [3607] = {.count = 1, .reusable = true}, SHIFT(723), - [3609] = {.count = 1, .reusable = true}, SHIFT(1594), - [3611] = {.count = 1, .reusable = true}, SHIFT(1595), - [3613] = {.count = 1, .reusable = false}, SHIFT(1595), - [3615] = {.count = 1, .reusable = false}, SHIFT(1599), - [3617] = {.count = 1, .reusable = true}, SHIFT(1599), - [3619] = {.count = 1, .reusable = true}, SHIFT(724), - [3621] = {.count = 1, .reusable = true}, SHIFT(1598), - [3623] = {.count = 1, .reusable = true}, SHIFT(725), - [3625] = {.count = 1, .reusable = false}, SHIFT(1600), - [3627] = {.count = 1, .reusable = true}, SHIFT(1600), + [3517] = {.count = 1, .reusable = false}, SHIFT(1567), + [3519] = {.count = 1, .reusable = true}, SHIFT(1567), + [3521] = {.count = 1, .reusable = true}, SHIFT(691), + [3523] = {.count = 1, .reusable = true}, SHIFT(692), + [3525] = {.count = 1, .reusable = true}, SHIFT(693), + [3527] = {.count = 1, .reusable = true}, SHIFT(694), + [3529] = {.count = 1, .reusable = true}, SHIFT(698), + [3531] = {.count = 1, .reusable = true}, SHIFT(697), + [3533] = {.count = 1, .reusable = true}, SHIFT(699), + [3535] = {.count = 1, .reusable = false}, SHIFT(1576), + [3537] = {.count = 1, .reusable = false}, SHIFT(701), + [3539] = {.count = 1, .reusable = true}, SHIFT(706), + [3541] = {.count = 1, .reusable = true}, SHIFT(707), + [3543] = {.count = 1, .reusable = false}, SHIFT(1581), + [3545] = {.count = 1, .reusable = true}, SHIFT(1581), + [3547] = {.count = 1, .reusable = true}, SHIFT(1580), + [3549] = {.count = 1, .reusable = true}, SHIFT(711), + [3551] = {.count = 1, .reusable = false}, SHIFT(1586), + [3553] = {.count = 1, .reusable = true}, SHIFT(1586), + [3555] = {.count = 1, .reusable = true}, SHIFT(1585), + [3557] = {.count = 1, .reusable = true}, SHIFT(712), + [3559] = {.count = 1, .reusable = true}, SHIFT(1587), + [3561] = {.count = 1, .reusable = true}, SHIFT(714), + [3563] = {.count = 1, .reusable = false}, SHIFT(714), + [3565] = {.count = 1, .reusable = true}, SHIFT(846), + [3567] = {.count = 1, .reusable = true}, SHIFT(713), + [3569] = {.count = 1, .reusable = false}, SHIFT(716), + [3571] = {.count = 1, .reusable = false}, SHIFT(1588), + [3573] = {.count = 1, .reusable = true}, SHIFT(717), + [3575] = {.count = 1, .reusable = false}, SHIFT(1590), + [3577] = {.count = 1, .reusable = true}, SHIFT(1590), + [3579] = {.count = 1, .reusable = true}, SHIFT(719), + [3581] = {.count = 1, .reusable = true}, SHIFT(1589), + [3583] = {.count = 1, .reusable = true}, SHIFT(1591), + [3585] = {.count = 1, .reusable = false}, SHIFT(1594), + [3587] = {.count = 1, .reusable = true}, SHIFT(1594), + [3589] = {.count = 1, .reusable = true}, SHIFT(1593), + [3591] = {.count = 1, .reusable = true}, SHIFT(720), + [3593] = {.count = 1, .reusable = true}, SHIFT(1595), + [3595] = {.count = 1, .reusable = false}, SHIFT(1595), + [3597] = {.count = 1, .reusable = false}, SHIFT(1599), + [3599] = {.count = 1, .reusable = true}, SHIFT(1599), + [3601] = {.count = 1, .reusable = true}, SHIFT(721), + [3603] = {.count = 1, .reusable = true}, SHIFT(1598), + [3605] = {.count = 1, .reusable = true}, SHIFT(722), + [3607] = {.count = 1, .reusable = false}, SHIFT(723), + [3609] = {.count = 1, .reusable = false}, SHIFT(1601), + [3611] = {.count = 1, .reusable = true}, SHIFT(1601), + [3613] = {.count = 1, .reusable = true}, SHIFT(724), + [3615] = {.count = 1, .reusable = true}, SHIFT(1602), + [3617] = {.count = 1, .reusable = true}, SHIFT(1603), + [3619] = {.count = 1, .reusable = false}, SHIFT(1603), + [3621] = {.count = 1, .reusable = false}, SHIFT(1607), + [3623] = {.count = 1, .reusable = true}, SHIFT(1607), + [3625] = {.count = 1, .reusable = true}, SHIFT(725), + [3627] = {.count = 1, .reusable = true}, SHIFT(1606), [3629] = {.count = 1, .reusable = true}, SHIFT(726), - [3631] = {.count = 1, .reusable = true}, SHIFT(727), - [3633] = {.count = 1, .reusable = true}, SHIFT(728), - [3635] = {.count = 1, .reusable = false}, SHIFT(1601), - [3637] = {.count = 1, .reusable = true}, SHIFT(1601), + [3631] = {.count = 1, .reusable = false}, SHIFT(1608), + [3633] = {.count = 1, .reusable = true}, SHIFT(1608), + [3635] = {.count = 1, .reusable = true}, SHIFT(727), + [3637] = {.count = 1, .reusable = true}, SHIFT(728), [3639] = {.count = 1, .reusable = true}, SHIFT(729), - [3641] = {.count = 1, .reusable = false}, SHIFT(1602), - [3643] = {.count = 1, .reusable = true}, SHIFT(1602), + [3641] = {.count = 1, .reusable = false}, SHIFT(1609), + [3643] = {.count = 1, .reusable = true}, SHIFT(1609), [3645] = {.count = 1, .reusable = true}, SHIFT(730), - [3647] = {.count = 1, .reusable = true}, SHIFT(731), - [3649] = {.count = 1, .reusable = true}, SHIFT(732), - [3651] = {.count = 1, .reusable = true}, SHIFT(733), - [3653] = {.count = 1, .reusable = true}, SHIFT(736), - [3655] = {.count = 1, .reusable = true}, SHIFT(735), - [3657] = {.count = 1, .reusable = true}, SHIFT(737), - [3659] = {.count = 1, .reusable = false}, SHIFT(1611), - [3661] = {.count = 1, .reusable = false}, SHIFT(739), - [3663] = {.count = 1, .reusable = true}, SHIFT(742), - [3665] = {.count = 1, .reusable = true}, SHIFT(743), - [3667] = {.count = 1, .reusable = false}, SHIFT(1616), - [3669] = {.count = 1, .reusable = true}, SHIFT(1616), - [3671] = {.count = 1, .reusable = true}, SHIFT(1615), - [3673] = {.count = 1, .reusable = true}, SHIFT(747), - [3675] = {.count = 1, .reusable = false}, SHIFT(1621), - [3677] = {.count = 1, .reusable = true}, SHIFT(1621), - [3679] = {.count = 1, .reusable = true}, SHIFT(1620), - [3681] = {.count = 1, .reusable = true}, SHIFT(748), - [3683] = {.count = 1, .reusable = true}, SHIFT(1622), - [3685] = {.count = 1, .reusable = true}, SHIFT(750), - [3687] = {.count = 1, .reusable = false}, SHIFT(2289), - [3689] = {.count = 1, .reusable = false}, SHIFT(750), - [3691] = {.count = 1, .reusable = true}, SHIFT(1320), - [3693] = {.count = 1, .reusable = true}, SHIFT(749), - [3695] = {.count = 1, .reusable = false}, SHIFT(752), - [3697] = {.count = 1, .reusable = false}, SHIFT(1623), - [3699] = {.count = 1, .reusable = true}, SHIFT(753), - [3701] = {.count = 1, .reusable = false}, SHIFT(1625), - [3703] = {.count = 1, .reusable = true}, SHIFT(1625), - [3705] = {.count = 1, .reusable = true}, SHIFT(755), - [3707] = {.count = 1, .reusable = true}, SHIFT(1624), - [3709] = {.count = 1, .reusable = true}, SHIFT(1626), - [3711] = {.count = 1, .reusable = false}, SHIFT(1629), - [3713] = {.count = 1, .reusable = true}, SHIFT(1629), - [3715] = {.count = 1, .reusable = true}, SHIFT(1628), - [3717] = {.count = 1, .reusable = true}, SHIFT(756), - [3719] = {.count = 1, .reusable = true}, SHIFT(1630), - [3721] = {.count = 1, .reusable = false}, SHIFT(1630), - [3723] = {.count = 1, .reusable = false}, SHIFT(1634), - [3725] = {.count = 1, .reusable = true}, SHIFT(1634), - [3727] = {.count = 1, .reusable = true}, SHIFT(757), - [3729] = {.count = 1, .reusable = true}, SHIFT(1633), + [3647] = {.count = 1, .reusable = false}, SHIFT(1610), + [3649] = {.count = 1, .reusable = true}, SHIFT(1610), + [3651] = {.count = 1, .reusable = true}, SHIFT(731), + [3653] = {.count = 1, .reusable = true}, SHIFT(732), + [3655] = {.count = 1, .reusable = true}, SHIFT(733), + [3657] = {.count = 1, .reusable = true}, SHIFT(734), + [3659] = {.count = 1, .reusable = true}, SHIFT(737), + [3661] = {.count = 1, .reusable = true}, SHIFT(738), + [3663] = {.count = 1, .reusable = true}, SHIFT(736), + [3665] = {.count = 1, .reusable = false}, SHIFT(740), + [3667] = {.count = 1, .reusable = false}, SHIFT(1619), + [3669] = {.count = 1, .reusable = true}, SHIFT(743), + [3671] = {.count = 1, .reusable = true}, SHIFT(744), + [3673] = {.count = 1, .reusable = false}, SHIFT(1624), + [3675] = {.count = 1, .reusable = true}, SHIFT(1624), + [3677] = {.count = 1, .reusable = true}, SHIFT(1623), + [3679] = {.count = 1, .reusable = true}, SHIFT(748), + [3681] = {.count = 1, .reusable = false}, SHIFT(1629), + [3683] = {.count = 1, .reusable = true}, SHIFT(1629), + [3685] = {.count = 1, .reusable = true}, SHIFT(1628), + [3687] = {.count = 1, .reusable = true}, SHIFT(749), + [3689] = {.count = 1, .reusable = true}, SHIFT(1630), + [3691] = {.count = 1, .reusable = true}, SHIFT(751), + [3693] = {.count = 1, .reusable = false}, SHIFT(751), + [3695] = {.count = 1, .reusable = true}, SHIFT(2642), + [3697] = {.count = 1, .reusable = true}, SHIFT(750), + [3699] = {.count = 1, .reusable = false}, SHIFT(753), + [3701] = {.count = 1, .reusable = false}, SHIFT(1631), + [3703] = {.count = 1, .reusable = true}, SHIFT(754), + [3705] = {.count = 1, .reusable = false}, SHIFT(1633), + [3707] = {.count = 1, .reusable = true}, SHIFT(1633), + [3709] = {.count = 1, .reusable = true}, SHIFT(756), + [3711] = {.count = 1, .reusable = true}, SHIFT(1632), + [3713] = {.count = 1, .reusable = true}, SHIFT(1634), + [3715] = {.count = 1, .reusable = false}, SHIFT(1637), + [3717] = {.count = 1, .reusable = true}, SHIFT(1637), + [3719] = {.count = 1, .reusable = true}, SHIFT(1636), + [3721] = {.count = 1, .reusable = true}, SHIFT(757), + [3723] = {.count = 1, .reusable = true}, SHIFT(1638), + [3725] = {.count = 1, .reusable = false}, SHIFT(1638), + [3727] = {.count = 1, .reusable = false}, SHIFT(1642), + [3729] = {.count = 1, .reusable = true}, SHIFT(1642), [3731] = {.count = 1, .reusable = true}, SHIFT(758), - [3733] = {.count = 1, .reusable = false}, SHIFT(759), - [3735] = {.count = 1, .reusable = false}, SHIFT(1636), - [3737] = {.count = 1, .reusable = true}, SHIFT(1636), - [3739] = {.count = 1, .reusable = true}, SHIFT(760), - [3741] = {.count = 1, .reusable = true}, SHIFT(1637), - [3743] = {.count = 1, .reusable = true}, SHIFT(1638), - [3745] = {.count = 1, .reusable = false}, SHIFT(1638), - [3747] = {.count = 1, .reusable = false}, SHIFT(1642), - [3749] = {.count = 1, .reusable = true}, SHIFT(1642), - [3751] = {.count = 1, .reusable = true}, SHIFT(761), - [3753] = {.count = 1, .reusable = true}, SHIFT(1641), + [3733] = {.count = 1, .reusable = true}, SHIFT(1641), + [3735] = {.count = 1, .reusable = true}, SHIFT(759), + [3737] = {.count = 1, .reusable = false}, SHIFT(760), + [3739] = {.count = 1, .reusable = false}, SHIFT(1644), + [3741] = {.count = 1, .reusable = true}, SHIFT(1644), + [3743] = {.count = 1, .reusable = true}, SHIFT(761), + [3745] = {.count = 1, .reusable = true}, SHIFT(1645), + [3747] = {.count = 1, .reusable = true}, SHIFT(1646), + [3749] = {.count = 1, .reusable = false}, SHIFT(1646), + [3751] = {.count = 1, .reusable = false}, SHIFT(1650), + [3753] = {.count = 1, .reusable = true}, SHIFT(1650), [3755] = {.count = 1, .reusable = true}, SHIFT(762), - [3757] = {.count = 1, .reusable = false}, SHIFT(1643), - [3759] = {.count = 1, .reusable = true}, SHIFT(1643), - [3761] = {.count = 1, .reusable = true}, SHIFT(763), - [3763] = {.count = 1, .reusable = true}, SHIFT(764), - [3765] = {.count = 1, .reusable = true}, SHIFT(765), - [3767] = {.count = 1, .reusable = false}, SHIFT(1644), - [3769] = {.count = 1, .reusable = true}, SHIFT(1644), - [3771] = {.count = 1, .reusable = true}, SHIFT(766), - [3773] = {.count = 1, .reusable = false}, SHIFT(1645), - [3775] = {.count = 1, .reusable = true}, SHIFT(1645), - [3777] = {.count = 1, .reusable = true}, SHIFT(767), - [3779] = {.count = 1, .reusable = true}, SHIFT(768), - [3781] = {.count = 1, .reusable = true}, SHIFT(769), - [3783] = {.count = 1, .reusable = true}, SHIFT(770), - [3785] = {.count = 1, .reusable = false}, SHIFT(776), - [3787] = {.count = 1, .reusable = false}, SHIFT(1654), - [3789] = {.count = 1, .reusable = true}, SHIFT(779), - [3791] = {.count = 1, .reusable = true}, SHIFT(780), - [3793] = {.count = 1, .reusable = false}, SHIFT(1659), - [3795] = {.count = 1, .reusable = true}, SHIFT(1659), - [3797] = {.count = 1, .reusable = true}, SHIFT(1658), - [3799] = {.count = 1, .reusable = true}, SHIFT(784), - [3801] = {.count = 1, .reusable = false}, SHIFT(1664), - [3803] = {.count = 1, .reusable = true}, SHIFT(1664), - [3805] = {.count = 1, .reusable = true}, SHIFT(1663), - [3807] = {.count = 1, .reusable = true}, SHIFT(785), - [3809] = {.count = 1, .reusable = true}, SHIFT(1665), - [3811] = {.count = 1, .reusable = true}, SHIFT(787), - [3813] = {.count = 1, .reusable = false}, SHIFT(787), - [3815] = {.count = 1, .reusable = true}, SHIFT(1256), - [3817] = {.count = 1, .reusable = true}, SHIFT(786), - [3819] = {.count = 1, .reusable = false}, SHIFT(789), - [3821] = {.count = 1, .reusable = false}, SHIFT(1666), - [3823] = {.count = 1, .reusable = true}, SHIFT(790), - [3825] = {.count = 1, .reusable = false}, SHIFT(1668), - [3827] = {.count = 1, .reusable = true}, SHIFT(1668), - [3829] = {.count = 1, .reusable = true}, SHIFT(792), - [3831] = {.count = 1, .reusable = true}, SHIFT(1667), - [3833] = {.count = 1, .reusable = true}, SHIFT(1669), - [3835] = {.count = 1, .reusable = false}, SHIFT(1672), - [3837] = {.count = 1, .reusable = true}, SHIFT(1672), - [3839] = {.count = 1, .reusable = true}, SHIFT(1671), - [3841] = {.count = 1, .reusable = true}, SHIFT(793), - [3843] = {.count = 1, .reusable = true}, SHIFT(1673), - [3845] = {.count = 1, .reusable = false}, SHIFT(1673), - [3847] = {.count = 1, .reusable = false}, SHIFT(1677), - [3849] = {.count = 1, .reusable = true}, SHIFT(1677), - [3851] = {.count = 1, .reusable = true}, SHIFT(794), - [3853] = {.count = 1, .reusable = true}, SHIFT(1676), - [3855] = {.count = 1, .reusable = true}, SHIFT(795), - [3857] = {.count = 1, .reusable = false}, SHIFT(796), - [3859] = {.count = 1, .reusable = false}, SHIFT(1679), - [3861] = {.count = 1, .reusable = true}, SHIFT(1679), - [3863] = {.count = 1, .reusable = true}, SHIFT(797), - [3865] = {.count = 1, .reusable = true}, SHIFT(1680), - [3867] = {.count = 1, .reusable = true}, SHIFT(1681), - [3869] = {.count = 1, .reusable = false}, SHIFT(1681), - [3871] = {.count = 1, .reusable = false}, SHIFT(1685), - [3873] = {.count = 1, .reusable = true}, SHIFT(1685), - [3875] = {.count = 1, .reusable = true}, SHIFT(798), - [3877] = {.count = 1, .reusable = true}, SHIFT(1684), - [3879] = {.count = 1, .reusable = true}, SHIFT(799), - [3881] = {.count = 1, .reusable = false}, SHIFT(1686), - [3883] = {.count = 1, .reusable = true}, SHIFT(1686), + [3757] = {.count = 1, .reusable = true}, SHIFT(1649), + [3759] = {.count = 1, .reusable = true}, SHIFT(763), + [3761] = {.count = 1, .reusable = false}, SHIFT(1651), + [3763] = {.count = 1, .reusable = true}, SHIFT(1651), + [3765] = {.count = 1, .reusable = true}, SHIFT(764), + [3767] = {.count = 1, .reusable = true}, SHIFT(765), + [3769] = {.count = 1, .reusable = true}, SHIFT(766), + [3771] = {.count = 1, .reusable = false}, SHIFT(1652), + [3773] = {.count = 1, .reusable = true}, SHIFT(1652), + [3775] = {.count = 1, .reusable = true}, SHIFT(767), + [3777] = {.count = 1, .reusable = false}, SHIFT(1653), + [3779] = {.count = 1, .reusable = true}, SHIFT(1653), + [3781] = {.count = 1, .reusable = true}, SHIFT(768), + [3783] = {.count = 1, .reusable = true}, SHIFT(769), + [3785] = {.count = 1, .reusable = true}, SHIFT(770), + [3787] = {.count = 1, .reusable = true}, SHIFT(771), + [3789] = {.count = 1, .reusable = false}, SHIFT(777), + [3791] = {.count = 1, .reusable = false}, SHIFT(1662), + [3793] = {.count = 1, .reusable = true}, SHIFT(780), + [3795] = {.count = 1, .reusable = true}, SHIFT(781), + [3797] = {.count = 1, .reusable = false}, SHIFT(1667), + [3799] = {.count = 1, .reusable = true}, SHIFT(1667), + [3801] = {.count = 1, .reusable = true}, SHIFT(1666), + [3803] = {.count = 1, .reusable = true}, SHIFT(785), + [3805] = {.count = 1, .reusable = false}, SHIFT(1672), + [3807] = {.count = 1, .reusable = true}, SHIFT(1672), + [3809] = {.count = 1, .reusable = true}, SHIFT(1671), + [3811] = {.count = 1, .reusable = true}, SHIFT(786), + [3813] = {.count = 1, .reusable = true}, SHIFT(1673), + [3815] = {.count = 1, .reusable = true}, SHIFT(788), + [3817] = {.count = 1, .reusable = false}, SHIFT(2300), + [3819] = {.count = 1, .reusable = false}, SHIFT(788), + [3821] = {.count = 1, .reusable = true}, SHIFT(1326), + [3823] = {.count = 1, .reusable = true}, SHIFT(787), + [3825] = {.count = 1, .reusable = false}, SHIFT(790), + [3827] = {.count = 1, .reusable = false}, SHIFT(1674), + [3829] = {.count = 1, .reusable = true}, SHIFT(791), + [3831] = {.count = 1, .reusable = false}, SHIFT(1676), + [3833] = {.count = 1, .reusable = true}, SHIFT(1676), + [3835] = {.count = 1, .reusable = true}, SHIFT(793), + [3837] = {.count = 1, .reusable = true}, SHIFT(1675), + [3839] = {.count = 1, .reusable = true}, SHIFT(1677), + [3841] = {.count = 1, .reusable = false}, SHIFT(1680), + [3843] = {.count = 1, .reusable = true}, SHIFT(1680), + [3845] = {.count = 1, .reusable = true}, SHIFT(1679), + [3847] = {.count = 1, .reusable = true}, SHIFT(794), + [3849] = {.count = 1, .reusable = true}, SHIFT(1681), + [3851] = {.count = 1, .reusable = false}, SHIFT(1681), + [3853] = {.count = 1, .reusable = false}, SHIFT(1685), + [3855] = {.count = 1, .reusable = true}, SHIFT(1685), + [3857] = {.count = 1, .reusable = true}, SHIFT(795), + [3859] = {.count = 1, .reusable = true}, SHIFT(1684), + [3861] = {.count = 1, .reusable = true}, SHIFT(796), + [3863] = {.count = 1, .reusable = false}, SHIFT(797), + [3865] = {.count = 1, .reusable = false}, SHIFT(1687), + [3867] = {.count = 1, .reusable = true}, SHIFT(1687), + [3869] = {.count = 1, .reusable = true}, SHIFT(798), + [3871] = {.count = 1, .reusable = true}, SHIFT(1688), + [3873] = {.count = 1, .reusable = true}, SHIFT(1689), + [3875] = {.count = 1, .reusable = false}, SHIFT(1689), + [3877] = {.count = 1, .reusable = false}, SHIFT(1693), + [3879] = {.count = 1, .reusable = true}, SHIFT(1693), + [3881] = {.count = 1, .reusable = true}, SHIFT(799), + [3883] = {.count = 1, .reusable = true}, SHIFT(1692), [3885] = {.count = 1, .reusable = true}, SHIFT(800), - [3887] = {.count = 1, .reusable = true}, SHIFT(801), - [3889] = {.count = 1, .reusable = true}, SHIFT(802), - [3891] = {.count = 1, .reusable = false}, SHIFT(1687), - [3893] = {.count = 1, .reusable = true}, SHIFT(1687), + [3887] = {.count = 1, .reusable = false}, SHIFT(1694), + [3889] = {.count = 1, .reusable = true}, SHIFT(1694), + [3891] = {.count = 1, .reusable = true}, SHIFT(801), + [3893] = {.count = 1, .reusable = true}, SHIFT(802), [3895] = {.count = 1, .reusable = true}, SHIFT(803), - [3897] = {.count = 1, .reusable = false}, SHIFT(1688), - [3899] = {.count = 1, .reusable = true}, SHIFT(1688), + [3897] = {.count = 1, .reusable = false}, SHIFT(1695), + [3899] = {.count = 1, .reusable = true}, SHIFT(1695), [3901] = {.count = 1, .reusable = true}, SHIFT(804), - [3903] = {.count = 1, .reusable = true}, SHIFT(805), - [3905] = {.count = 1, .reusable = true}, SHIFT(806), - [3907] = {.count = 1, .reusable = true}, SHIFT(807), - [3909] = {.count = 1, .reusable = false}, SHIFT(813), - [3911] = {.count = 1, .reusable = false}, SHIFT(1696), - [3913] = {.count = 1, .reusable = true}, SHIFT(816), - [3915] = {.count = 1, .reusable = true}, SHIFT(817), - [3917] = {.count = 1, .reusable = false}, SHIFT(1701), - [3919] = {.count = 1, .reusable = true}, SHIFT(1701), - [3921] = {.count = 1, .reusable = true}, SHIFT(1700), - [3923] = {.count = 1, .reusable = true}, SHIFT(821), - [3925] = {.count = 1, .reusable = false}, SHIFT(1706), - [3927] = {.count = 1, .reusable = true}, SHIFT(1706), - [3929] = {.count = 1, .reusable = true}, SHIFT(1705), - [3931] = {.count = 1, .reusable = true}, SHIFT(822), - [3933] = {.count = 1, .reusable = false}, SHIFT(823), - [3935] = {.count = 1, .reusable = false}, SHIFT(1707), - [3937] = {.count = 1, .reusable = true}, SHIFT(824), - [3939] = {.count = 1, .reusable = false}, SHIFT(1709), - [3941] = {.count = 1, .reusable = true}, SHIFT(1709), - [3943] = {.count = 1, .reusable = true}, SHIFT(826), - [3945] = {.count = 1, .reusable = true}, SHIFT(1708), - [3947] = {.count = 1, .reusable = true}, SHIFT(1710), - [3949] = {.count = 1, .reusable = false}, SHIFT(1713), - [3951] = {.count = 1, .reusable = true}, SHIFT(1713), - [3953] = {.count = 1, .reusable = true}, SHIFT(1712), - [3955] = {.count = 1, .reusable = true}, SHIFT(827), - [3957] = {.count = 1, .reusable = true}, SHIFT(1714), - [3959] = {.count = 1, .reusable = false}, SHIFT(1714), - [3961] = {.count = 1, .reusable = false}, SHIFT(1718), - [3963] = {.count = 1, .reusable = true}, SHIFT(1718), - [3965] = {.count = 1, .reusable = true}, SHIFT(828), - [3967] = {.count = 1, .reusable = true}, SHIFT(1717), - [3969] = {.count = 1, .reusable = false}, SHIFT(829), - [3971] = {.count = 1, .reusable = false}, SHIFT(1719), - [3973] = {.count = 1, .reusable = true}, SHIFT(1719), - [3975] = {.count = 1, .reusable = true}, SHIFT(830), - [3977] = {.count = 1, .reusable = true}, SHIFT(1720), - [3979] = {.count = 1, .reusable = true}, SHIFT(1721), - [3981] = {.count = 1, .reusable = false}, SHIFT(1721), - [3983] = {.count = 1, .reusable = false}, SHIFT(1725), - [3985] = {.count = 1, .reusable = true}, SHIFT(1725), - [3987] = {.count = 1, .reusable = true}, SHIFT(831), - [3989] = {.count = 1, .reusable = true}, SHIFT(1724), - [3991] = {.count = 1, .reusable = true}, SHIFT(832), - [3993] = {.count = 1, .reusable = false}, SHIFT(1726), - [3995] = {.count = 1, .reusable = true}, SHIFT(1726), - [3997] = {.count = 1, .reusable = true}, SHIFT(833), - [3999] = {.count = 1, .reusable = true}, SHIFT(834), - [4001] = {.count = 1, .reusable = false}, SHIFT(1727), - [4003] = {.count = 1, .reusable = true}, SHIFT(1727), - [4005] = {.count = 1, .reusable = true}, SHIFT(835), - [4007] = {.count = 1, .reusable = false}, SHIFT(1728), - [4009] = {.count = 1, .reusable = true}, SHIFT(1728), - [4011] = {.count = 1, .reusable = true}, SHIFT(836), - [4013] = {.count = 1, .reusable = true}, SHIFT(837), + [3903] = {.count = 1, .reusable = false}, SHIFT(1696), + [3905] = {.count = 1, .reusable = true}, SHIFT(1696), + [3907] = {.count = 1, .reusable = true}, SHIFT(805), + [3909] = {.count = 1, .reusable = true}, SHIFT(806), + [3911] = {.count = 1, .reusable = true}, SHIFT(807), + [3913] = {.count = 1, .reusable = true}, SHIFT(808), + [3915] = {.count = 1, .reusable = false}, SHIFT(814), + [3917] = {.count = 1, .reusable = false}, SHIFT(1705), + [3919] = {.count = 1, .reusable = true}, SHIFT(817), + [3921] = {.count = 1, .reusable = true}, SHIFT(818), + [3923] = {.count = 1, .reusable = false}, SHIFT(1710), + [3925] = {.count = 1, .reusable = true}, SHIFT(1710), + [3927] = {.count = 1, .reusable = true}, SHIFT(1709), + [3929] = {.count = 1, .reusable = true}, SHIFT(822), + [3931] = {.count = 1, .reusable = false}, SHIFT(1715), + [3933] = {.count = 1, .reusable = true}, SHIFT(1715), + [3935] = {.count = 1, .reusable = true}, SHIFT(1714), + [3937] = {.count = 1, .reusable = true}, SHIFT(823), + [3939] = {.count = 1, .reusable = true}, SHIFT(1716), + [3941] = {.count = 1, .reusable = true}, SHIFT(825), + [3943] = {.count = 1, .reusable = false}, SHIFT(825), + [3945] = {.count = 1, .reusable = true}, SHIFT(1262), + [3947] = {.count = 1, .reusable = true}, SHIFT(824), + [3949] = {.count = 1, .reusable = false}, SHIFT(827), + [3951] = {.count = 1, .reusable = false}, SHIFT(1717), + [3953] = {.count = 1, .reusable = true}, SHIFT(828), + [3955] = {.count = 1, .reusable = false}, SHIFT(1719), + [3957] = {.count = 1, .reusable = true}, SHIFT(1719), + [3959] = {.count = 1, .reusable = true}, SHIFT(830), + [3961] = {.count = 1, .reusable = true}, SHIFT(1718), + [3963] = {.count = 1, .reusable = true}, SHIFT(1720), + [3965] = {.count = 1, .reusable = false}, SHIFT(1723), + [3967] = {.count = 1, .reusable = true}, SHIFT(1723), + [3969] = {.count = 1, .reusable = true}, SHIFT(1722), + [3971] = {.count = 1, .reusable = true}, SHIFT(831), + [3973] = {.count = 1, .reusable = true}, SHIFT(1724), + [3975] = {.count = 1, .reusable = false}, SHIFT(1724), + [3977] = {.count = 1, .reusable = false}, SHIFT(1728), + [3979] = {.count = 1, .reusable = true}, SHIFT(1728), + [3981] = {.count = 1, .reusable = true}, SHIFT(832), + [3983] = {.count = 1, .reusable = true}, SHIFT(1727), + [3985] = {.count = 1, .reusable = true}, SHIFT(833), + [3987] = {.count = 1, .reusable = false}, SHIFT(834), + [3989] = {.count = 1, .reusable = false}, SHIFT(1730), + [3991] = {.count = 1, .reusable = true}, SHIFT(1730), + [3993] = {.count = 1, .reusable = true}, SHIFT(835), + [3995] = {.count = 1, .reusable = true}, SHIFT(1731), + [3997] = {.count = 1, .reusable = true}, SHIFT(1732), + [3999] = {.count = 1, .reusable = false}, SHIFT(1732), + [4001] = {.count = 1, .reusable = false}, SHIFT(1736), + [4003] = {.count = 1, .reusable = true}, SHIFT(1736), + [4005] = {.count = 1, .reusable = true}, SHIFT(836), + [4007] = {.count = 1, .reusable = true}, SHIFT(1735), + [4009] = {.count = 1, .reusable = true}, SHIFT(837), + [4011] = {.count = 1, .reusable = false}, SHIFT(1737), + [4013] = {.count = 1, .reusable = true}, SHIFT(1737), [4015] = {.count = 1, .reusable = true}, SHIFT(838), [4017] = {.count = 1, .reusable = true}, SHIFT(839), - [4019] = {.count = 1, .reusable = true}, SHIFT(874), - [4021] = {.count = 1, .reusable = true}, SHIFT(843), - [4023] = {.count = 1, .reusable = true}, SHIFT(873), - [4025] = {.count = 1, .reusable = false}, SHIFT(845), - [4027] = {.count = 1, .reusable = false}, SHIFT(1736), - [4029] = {.count = 1, .reusable = true}, SHIFT(848), - [4031] = {.count = 1, .reusable = true}, SHIFT(849), - [4033] = {.count = 1, .reusable = false}, SHIFT(1741), - [4035] = {.count = 1, .reusable = true}, SHIFT(1741), - [4037] = {.count = 1, .reusable = true}, SHIFT(1740), - [4039] = {.count = 1, .reusable = true}, SHIFT(853), - [4041] = {.count = 1, .reusable = false}, SHIFT(1746), - [4043] = {.count = 1, .reusable = true}, SHIFT(1746), - [4045] = {.count = 1, .reusable = true}, SHIFT(1745), - [4047] = {.count = 1, .reusable = true}, SHIFT(854), - [4049] = {.count = 1, .reusable = false}, SHIFT(855), - [4051] = {.count = 1, .reusable = false}, SHIFT(1747), - [4053] = {.count = 1, .reusable = true}, SHIFT(856), - [4055] = {.count = 1, .reusable = false}, SHIFT(1749), - [4057] = {.count = 1, .reusable = true}, SHIFT(1749), - [4059] = {.count = 1, .reusable = true}, SHIFT(858), - [4061] = {.count = 1, .reusable = true}, SHIFT(1748), - [4063] = {.count = 1, .reusable = true}, SHIFT(1750), - [4065] = {.count = 1, .reusable = false}, SHIFT(1753), - [4067] = {.count = 1, .reusable = true}, SHIFT(1753), - [4069] = {.count = 1, .reusable = true}, SHIFT(1752), - [4071] = {.count = 1, .reusable = true}, SHIFT(859), - [4073] = {.count = 1, .reusable = true}, SHIFT(1754), - [4075] = {.count = 1, .reusable = false}, SHIFT(1754), - [4077] = {.count = 1, .reusable = false}, SHIFT(1758), - [4079] = {.count = 1, .reusable = true}, SHIFT(1758), - [4081] = {.count = 1, .reusable = true}, SHIFT(860), - [4083] = {.count = 1, .reusable = true}, SHIFT(1757), - [4085] = {.count = 1, .reusable = false}, SHIFT(861), - [4087] = {.count = 1, .reusable = false}, SHIFT(1759), - [4089] = {.count = 1, .reusable = true}, SHIFT(1759), - [4091] = {.count = 1, .reusable = true}, SHIFT(862), - [4093] = {.count = 1, .reusable = true}, SHIFT(1760), - [4095] = {.count = 1, .reusable = true}, SHIFT(1761), - [4097] = {.count = 1, .reusable = false}, SHIFT(1761), - [4099] = {.count = 1, .reusable = false}, SHIFT(1765), - [4101] = {.count = 1, .reusable = true}, SHIFT(1765), - [4103] = {.count = 1, .reusable = true}, SHIFT(863), - [4105] = {.count = 1, .reusable = true}, SHIFT(1764), - [4107] = {.count = 1, .reusable = true}, SHIFT(864), - [4109] = {.count = 1, .reusable = false}, SHIFT(1766), - [4111] = {.count = 1, .reusable = true}, SHIFT(1766), - [4113] = {.count = 1, .reusable = true}, SHIFT(865), - [4115] = {.count = 1, .reusable = true}, SHIFT(866), - [4117] = {.count = 1, .reusable = false}, SHIFT(1767), - [4119] = {.count = 1, .reusable = true}, SHIFT(1767), - [4121] = {.count = 1, .reusable = true}, SHIFT(867), - [4123] = {.count = 1, .reusable = false}, SHIFT(1768), - [4125] = {.count = 1, .reusable = true}, SHIFT(1768), - [4127] = {.count = 1, .reusable = true}, SHIFT(868), - [4129] = {.count = 1, .reusable = true}, SHIFT(869), - [4131] = {.count = 1, .reusable = true}, SHIFT(870), + [4019] = {.count = 1, .reusable = true}, SHIFT(840), + [4021] = {.count = 1, .reusable = false}, SHIFT(1738), + [4023] = {.count = 1, .reusable = true}, SHIFT(1738), + [4025] = {.count = 1, .reusable = true}, SHIFT(841), + [4027] = {.count = 1, .reusable = false}, SHIFT(1739), + [4029] = {.count = 1, .reusable = true}, SHIFT(1739), + [4031] = {.count = 1, .reusable = true}, SHIFT(842), + [4033] = {.count = 1, .reusable = true}, SHIFT(843), + [4035] = {.count = 1, .reusable = true}, SHIFT(844), + [4037] = {.count = 1, .reusable = true}, SHIFT(845), + [4039] = {.count = 1, .reusable = true}, SHIFT(880), + [4041] = {.count = 1, .reusable = true}, SHIFT(849), + [4043] = {.count = 1, .reusable = true}, SHIFT(879), + [4045] = {.count = 1, .reusable = false}, SHIFT(851), + [4047] = {.count = 1, .reusable = false}, SHIFT(1747), + [4049] = {.count = 1, .reusable = true}, SHIFT(854), + [4051] = {.count = 1, .reusable = true}, SHIFT(855), + [4053] = {.count = 1, .reusable = false}, SHIFT(1752), + [4055] = {.count = 1, .reusable = true}, SHIFT(1752), + [4057] = {.count = 1, .reusable = true}, SHIFT(1751), + [4059] = {.count = 1, .reusable = true}, SHIFT(859), + [4061] = {.count = 1, .reusable = false}, SHIFT(1757), + [4063] = {.count = 1, .reusable = true}, SHIFT(1757), + [4065] = {.count = 1, .reusable = true}, SHIFT(1756), + [4067] = {.count = 1, .reusable = true}, SHIFT(860), + [4069] = {.count = 1, .reusable = false}, SHIFT(861), + [4071] = {.count = 1, .reusable = false}, SHIFT(1758), + [4073] = {.count = 1, .reusable = true}, SHIFT(862), + [4075] = {.count = 1, .reusable = false}, SHIFT(1760), + [4077] = {.count = 1, .reusable = true}, SHIFT(1760), + [4079] = {.count = 1, .reusable = true}, SHIFT(864), + [4081] = {.count = 1, .reusable = true}, SHIFT(1759), + [4083] = {.count = 1, .reusable = true}, SHIFT(1761), + [4085] = {.count = 1, .reusable = false}, SHIFT(1764), + [4087] = {.count = 1, .reusable = true}, SHIFT(1764), + [4089] = {.count = 1, .reusable = true}, SHIFT(1763), + [4091] = {.count = 1, .reusable = true}, SHIFT(865), + [4093] = {.count = 1, .reusable = true}, SHIFT(1765), + [4095] = {.count = 1, .reusable = false}, SHIFT(1765), + [4097] = {.count = 1, .reusable = false}, SHIFT(1769), + [4099] = {.count = 1, .reusable = true}, SHIFT(1769), + [4101] = {.count = 1, .reusable = true}, SHIFT(866), + [4103] = {.count = 1, .reusable = true}, SHIFT(1768), + [4105] = {.count = 1, .reusable = false}, SHIFT(867), + [4107] = {.count = 1, .reusable = false}, SHIFT(1770), + [4109] = {.count = 1, .reusable = true}, SHIFT(1770), + [4111] = {.count = 1, .reusable = true}, SHIFT(868), + [4113] = {.count = 1, .reusable = true}, SHIFT(1771), + [4115] = {.count = 1, .reusable = true}, SHIFT(1772), + [4117] = {.count = 1, .reusable = false}, SHIFT(1772), + [4119] = {.count = 1, .reusable = false}, SHIFT(1776), + [4121] = {.count = 1, .reusable = true}, SHIFT(1776), + [4123] = {.count = 1, .reusable = true}, SHIFT(869), + [4125] = {.count = 1, .reusable = true}, SHIFT(1775), + [4127] = {.count = 1, .reusable = true}, SHIFT(870), + [4129] = {.count = 1, .reusable = false}, SHIFT(1777), + [4131] = {.count = 1, .reusable = true}, SHIFT(1777), [4133] = {.count = 1, .reusable = true}, SHIFT(871), - [4135] = {.count = 1, .reusable = true}, SHIFT(906), - [4137] = {.count = 1, .reusable = true}, SHIFT(875), - [4139] = {.count = 1, .reusable = true}, SHIFT(905), - [4141] = {.count = 1, .reusable = false}, SHIFT(877), - [4143] = {.count = 1, .reusable = false}, SHIFT(1776), - [4145] = {.count = 1, .reusable = true}, SHIFT(880), - [4147] = {.count = 1, .reusable = true}, SHIFT(881), - [4149] = {.count = 1, .reusable = false}, SHIFT(1781), - [4151] = {.count = 1, .reusable = true}, SHIFT(1781), - [4153] = {.count = 1, .reusable = true}, SHIFT(1780), - [4155] = {.count = 1, .reusable = true}, SHIFT(885), - [4157] = {.count = 1, .reusable = false}, SHIFT(1786), - [4159] = {.count = 1, .reusable = true}, SHIFT(1786), - [4161] = {.count = 1, .reusable = true}, SHIFT(1785), - [4163] = {.count = 1, .reusable = true}, SHIFT(886), - [4165] = {.count = 1, .reusable = false}, SHIFT(887), - [4167] = {.count = 1, .reusable = false}, SHIFT(1787), - [4169] = {.count = 1, .reusable = true}, SHIFT(888), - [4171] = {.count = 1, .reusable = false}, SHIFT(1789), - [4173] = {.count = 1, .reusable = true}, SHIFT(1789), - [4175] = {.count = 1, .reusable = true}, SHIFT(890), - [4177] = {.count = 1, .reusable = true}, SHIFT(1788), - [4179] = {.count = 1, .reusable = true}, SHIFT(1790), - [4181] = {.count = 1, .reusable = false}, SHIFT(1793), - [4183] = {.count = 1, .reusable = true}, SHIFT(1793), - [4185] = {.count = 1, .reusable = true}, SHIFT(1792), - [4187] = {.count = 1, .reusable = true}, SHIFT(891), - [4189] = {.count = 1, .reusable = true}, SHIFT(1794), - [4191] = {.count = 1, .reusable = false}, SHIFT(1794), - [4193] = {.count = 1, .reusable = false}, SHIFT(1798), - [4195] = {.count = 1, .reusable = true}, SHIFT(1798), - [4197] = {.count = 1, .reusable = true}, SHIFT(892), - [4199] = {.count = 1, .reusable = true}, SHIFT(1797), - [4201] = {.count = 1, .reusable = false}, SHIFT(893), - [4203] = {.count = 1, .reusable = false}, SHIFT(1799), - [4205] = {.count = 1, .reusable = true}, SHIFT(1799), - [4207] = {.count = 1, .reusable = true}, SHIFT(894), - [4209] = {.count = 1, .reusable = true}, SHIFT(1800), - [4211] = {.count = 1, .reusable = true}, SHIFT(1801), - [4213] = {.count = 1, .reusable = false}, SHIFT(1801), - [4215] = {.count = 1, .reusable = false}, SHIFT(1805), - [4217] = {.count = 1, .reusable = true}, SHIFT(1805), - [4219] = {.count = 1, .reusable = true}, SHIFT(895), - [4221] = {.count = 1, .reusable = true}, SHIFT(1804), - [4223] = {.count = 1, .reusable = true}, SHIFT(896), - [4225] = {.count = 1, .reusable = false}, SHIFT(1806), - [4227] = {.count = 1, .reusable = true}, SHIFT(1806), - [4229] = {.count = 1, .reusable = true}, SHIFT(897), - [4231] = {.count = 1, .reusable = true}, SHIFT(898), - [4233] = {.count = 1, .reusable = false}, SHIFT(1807), - [4235] = {.count = 1, .reusable = true}, SHIFT(1807), - [4237] = {.count = 1, .reusable = true}, SHIFT(899), - [4239] = {.count = 1, .reusable = false}, SHIFT(1808), - [4241] = {.count = 1, .reusable = true}, SHIFT(1808), - [4243] = {.count = 1, .reusable = true}, SHIFT(900), - [4245] = {.count = 1, .reusable = true}, SHIFT(901), - [4247] = {.count = 1, .reusable = true}, SHIFT(902), + [4135] = {.count = 1, .reusable = true}, SHIFT(872), + [4137] = {.count = 1, .reusable = false}, SHIFT(1778), + [4139] = {.count = 1, .reusable = true}, SHIFT(1778), + [4141] = {.count = 1, .reusable = true}, SHIFT(873), + [4143] = {.count = 1, .reusable = false}, SHIFT(1779), + [4145] = {.count = 1, .reusable = true}, SHIFT(1779), + [4147] = {.count = 1, .reusable = true}, SHIFT(874), + [4149] = {.count = 1, .reusable = true}, SHIFT(875), + [4151] = {.count = 1, .reusable = true}, SHIFT(876), + [4153] = {.count = 1, .reusable = true}, SHIFT(877), + [4155] = {.count = 1, .reusable = true}, SHIFT(912), + [4157] = {.count = 1, .reusable = true}, SHIFT(881), + [4159] = {.count = 1, .reusable = true}, SHIFT(911), + [4161] = {.count = 1, .reusable = false}, SHIFT(883), + [4163] = {.count = 1, .reusable = false}, SHIFT(1787), + [4165] = {.count = 1, .reusable = true}, SHIFT(886), + [4167] = {.count = 1, .reusable = true}, SHIFT(887), + [4169] = {.count = 1, .reusable = false}, SHIFT(1792), + [4171] = {.count = 1, .reusable = true}, SHIFT(1792), + [4173] = {.count = 1, .reusable = true}, SHIFT(1791), + [4175] = {.count = 1, .reusable = true}, SHIFT(891), + [4177] = {.count = 1, .reusable = false}, SHIFT(1797), + [4179] = {.count = 1, .reusable = true}, SHIFT(1797), + [4181] = {.count = 1, .reusable = true}, SHIFT(1796), + [4183] = {.count = 1, .reusable = true}, SHIFT(892), + [4185] = {.count = 1, .reusable = false}, SHIFT(893), + [4187] = {.count = 1, .reusable = false}, SHIFT(1798), + [4189] = {.count = 1, .reusable = true}, SHIFT(894), + [4191] = {.count = 1, .reusable = false}, SHIFT(1800), + [4193] = {.count = 1, .reusable = true}, SHIFT(1800), + [4195] = {.count = 1, .reusable = true}, SHIFT(896), + [4197] = {.count = 1, .reusable = true}, SHIFT(1799), + [4199] = {.count = 1, .reusable = true}, SHIFT(1801), + [4201] = {.count = 1, .reusable = false}, SHIFT(1804), + [4203] = {.count = 1, .reusable = true}, SHIFT(1804), + [4205] = {.count = 1, .reusable = true}, SHIFT(1803), + [4207] = {.count = 1, .reusable = true}, SHIFT(897), + [4209] = {.count = 1, .reusable = true}, SHIFT(1805), + [4211] = {.count = 1, .reusable = false}, SHIFT(1805), + [4213] = {.count = 1, .reusable = false}, SHIFT(1809), + [4215] = {.count = 1, .reusable = true}, SHIFT(1809), + [4217] = {.count = 1, .reusable = true}, SHIFT(898), + [4219] = {.count = 1, .reusable = true}, SHIFT(1808), + [4221] = {.count = 1, .reusable = false}, SHIFT(899), + [4223] = {.count = 1, .reusable = false}, SHIFT(1810), + [4225] = {.count = 1, .reusable = true}, SHIFT(1810), + [4227] = {.count = 1, .reusable = true}, SHIFT(900), + [4229] = {.count = 1, .reusable = true}, SHIFT(1811), + [4231] = {.count = 1, .reusable = true}, SHIFT(1812), + [4233] = {.count = 1, .reusable = false}, SHIFT(1812), + [4235] = {.count = 1, .reusable = false}, SHIFT(1816), + [4237] = {.count = 1, .reusable = true}, SHIFT(1816), + [4239] = {.count = 1, .reusable = true}, SHIFT(901), + [4241] = {.count = 1, .reusable = true}, SHIFT(1815), + [4243] = {.count = 1, .reusable = true}, SHIFT(902), + [4245] = {.count = 1, .reusable = false}, SHIFT(1817), + [4247] = {.count = 1, .reusable = true}, SHIFT(1817), [4249] = {.count = 1, .reusable = true}, SHIFT(903), - [4251] = {.count = 1, .reusable = true}, SHIFT(937), - [4253] = {.count = 1, .reusable = false}, SHIFT(1816), - [4255] = {.count = 1, .reusable = false}, SHIFT(909), - [4257] = {.count = 1, .reusable = true}, SHIFT(912), - [4259] = {.count = 1, .reusable = true}, SHIFT(913), - [4261] = {.count = 1, .reusable = false}, SHIFT(1821), - [4263] = {.count = 1, .reusable = true}, SHIFT(1821), - [4265] = {.count = 1, .reusable = true}, SHIFT(1820), - [4267] = {.count = 1, .reusable = true}, SHIFT(917), - [4269] = {.count = 1, .reusable = false}, SHIFT(1826), - [4271] = {.count = 1, .reusable = true}, SHIFT(1826), - [4273] = {.count = 1, .reusable = true}, SHIFT(1825), - [4275] = {.count = 1, .reusable = true}, SHIFT(918), - [4277] = {.count = 1, .reusable = false}, SHIFT(919), - [4279] = {.count = 1, .reusable = false}, SHIFT(1827), - [4281] = {.count = 1, .reusable = true}, SHIFT(920), - [4283] = {.count = 1, .reusable = false}, SHIFT(1829), - [4285] = {.count = 1, .reusable = true}, SHIFT(1829), - [4287] = {.count = 1, .reusable = true}, SHIFT(922), - [4289] = {.count = 1, .reusable = true}, SHIFT(1828), - [4291] = {.count = 1, .reusable = true}, SHIFT(1830), - [4293] = {.count = 1, .reusable = false}, SHIFT(1833), - [4295] = {.count = 1, .reusable = true}, SHIFT(1833), - [4297] = {.count = 1, .reusable = true}, SHIFT(1832), - [4299] = {.count = 1, .reusable = true}, SHIFT(923), - [4301] = {.count = 1, .reusable = true}, SHIFT(1834), - [4303] = {.count = 1, .reusable = false}, SHIFT(1834), - [4305] = {.count = 1, .reusable = false}, SHIFT(1838), - [4307] = {.count = 1, .reusable = true}, SHIFT(1838), - [4309] = {.count = 1, .reusable = true}, SHIFT(924), - [4311] = {.count = 1, .reusable = true}, SHIFT(1837), - [4313] = {.count = 1, .reusable = false}, SHIFT(925), - [4315] = {.count = 1, .reusable = false}, SHIFT(1839), - [4317] = {.count = 1, .reusable = true}, SHIFT(1839), - [4319] = {.count = 1, .reusable = true}, SHIFT(926), - [4321] = {.count = 1, .reusable = true}, SHIFT(1840), - [4323] = {.count = 1, .reusable = true}, SHIFT(1841), - [4325] = {.count = 1, .reusable = false}, SHIFT(1841), - [4327] = {.count = 1, .reusable = false}, SHIFT(1845), - [4329] = {.count = 1, .reusable = true}, SHIFT(1845), - [4331] = {.count = 1, .reusable = true}, SHIFT(927), - [4333] = {.count = 1, .reusable = true}, SHIFT(1844), - [4335] = {.count = 1, .reusable = true}, SHIFT(928), - [4337] = {.count = 1, .reusable = false}, SHIFT(1846), - [4339] = {.count = 1, .reusable = true}, SHIFT(1846), - [4341] = {.count = 1, .reusable = true}, SHIFT(929), - [4343] = {.count = 1, .reusable = true}, SHIFT(930), - [4345] = {.count = 1, .reusable = false}, SHIFT(1847), - [4347] = {.count = 1, .reusable = true}, SHIFT(1847), - [4349] = {.count = 1, .reusable = true}, SHIFT(931), - [4351] = {.count = 1, .reusable = false}, SHIFT(1848), - [4353] = {.count = 1, .reusable = true}, SHIFT(1848), - [4355] = {.count = 1, .reusable = true}, SHIFT(932), - [4357] = {.count = 1, .reusable = true}, SHIFT(933), - [4359] = {.count = 1, .reusable = true}, SHIFT(934), + [4251] = {.count = 1, .reusable = true}, SHIFT(904), + [4253] = {.count = 1, .reusable = false}, SHIFT(1818), + [4255] = {.count = 1, .reusable = true}, SHIFT(1818), + [4257] = {.count = 1, .reusable = true}, SHIFT(905), + [4259] = {.count = 1, .reusable = false}, SHIFT(1819), + [4261] = {.count = 1, .reusable = true}, SHIFT(1819), + [4263] = {.count = 1, .reusable = true}, SHIFT(906), + [4265] = {.count = 1, .reusable = true}, SHIFT(907), + [4267] = {.count = 1, .reusable = true}, SHIFT(908), + [4269] = {.count = 1, .reusable = true}, SHIFT(909), + [4271] = {.count = 1, .reusable = true}, SHIFT(943), + [4273] = {.count = 1, .reusable = false}, SHIFT(1827), + [4275] = {.count = 1, .reusable = false}, SHIFT(915), + [4277] = {.count = 1, .reusable = true}, SHIFT(918), + [4279] = {.count = 1, .reusable = true}, SHIFT(919), + [4281] = {.count = 1, .reusable = false}, SHIFT(1832), + [4283] = {.count = 1, .reusable = true}, SHIFT(1832), + [4285] = {.count = 1, .reusable = true}, SHIFT(1831), + [4287] = {.count = 1, .reusable = true}, SHIFT(923), + [4289] = {.count = 1, .reusable = false}, SHIFT(1837), + [4291] = {.count = 1, .reusable = true}, SHIFT(1837), + [4293] = {.count = 1, .reusable = true}, SHIFT(1836), + [4295] = {.count = 1, .reusable = true}, SHIFT(924), + [4297] = {.count = 1, .reusable = false}, SHIFT(925), + [4299] = {.count = 1, .reusable = false}, SHIFT(1838), + [4301] = {.count = 1, .reusable = true}, SHIFT(926), + [4303] = {.count = 1, .reusable = false}, SHIFT(1840), + [4305] = {.count = 1, .reusable = true}, SHIFT(1840), + [4307] = {.count = 1, .reusable = true}, SHIFT(928), + [4309] = {.count = 1, .reusable = true}, SHIFT(1839), + [4311] = {.count = 1, .reusable = true}, SHIFT(1841), + [4313] = {.count = 1, .reusable = false}, SHIFT(1844), + [4315] = {.count = 1, .reusable = true}, SHIFT(1844), + [4317] = {.count = 1, .reusable = true}, SHIFT(1843), + [4319] = {.count = 1, .reusable = true}, SHIFT(929), + [4321] = {.count = 1, .reusable = true}, SHIFT(1845), + [4323] = {.count = 1, .reusable = false}, SHIFT(1845), + [4325] = {.count = 1, .reusable = false}, SHIFT(1849), + [4327] = {.count = 1, .reusable = true}, SHIFT(1849), + [4329] = {.count = 1, .reusable = true}, SHIFT(930), + [4331] = {.count = 1, .reusable = true}, SHIFT(1848), + [4333] = {.count = 1, .reusable = false}, SHIFT(931), + [4335] = {.count = 1, .reusable = false}, SHIFT(1850), + [4337] = {.count = 1, .reusable = true}, SHIFT(1850), + [4339] = {.count = 1, .reusable = true}, SHIFT(932), + [4341] = {.count = 1, .reusable = true}, SHIFT(1851), + [4343] = {.count = 1, .reusable = true}, SHIFT(1852), + [4345] = {.count = 1, .reusable = false}, SHIFT(1852), + [4347] = {.count = 1, .reusable = false}, SHIFT(1856), + [4349] = {.count = 1, .reusable = true}, SHIFT(1856), + [4351] = {.count = 1, .reusable = true}, SHIFT(933), + [4353] = {.count = 1, .reusable = true}, SHIFT(1855), + [4355] = {.count = 1, .reusable = true}, SHIFT(934), + [4357] = {.count = 1, .reusable = false}, SHIFT(1857), + [4359] = {.count = 1, .reusable = true}, SHIFT(1857), [4361] = {.count = 1, .reusable = true}, SHIFT(935), - [4363] = {.count = 1, .reusable = true}, SHIFT(970), - [4365] = {.count = 1, .reusable = true}, SHIFT(969), - [4367] = {.count = 1, .reusable = true}, SHIFT(939), - [4369] = {.count = 1, .reusable = false}, SHIFT(1856), - [4371] = {.count = 1, .reusable = false}, SHIFT(941), - [4373] = {.count = 1, .reusable = true}, SHIFT(944), - [4375] = {.count = 1, .reusable = true}, SHIFT(945), - [4377] = {.count = 1, .reusable = false}, SHIFT(1861), - [4379] = {.count = 1, .reusable = true}, SHIFT(1861), - [4381] = {.count = 1, .reusable = true}, SHIFT(1860), - [4383] = {.count = 1, .reusable = true}, SHIFT(949), - [4385] = {.count = 1, .reusable = false}, SHIFT(1866), - [4387] = {.count = 1, .reusable = true}, SHIFT(1866), - [4389] = {.count = 1, .reusable = true}, SHIFT(1865), - [4391] = {.count = 1, .reusable = true}, SHIFT(950), - [4393] = {.count = 1, .reusable = false}, SHIFT(951), - [4395] = {.count = 1, .reusable = false}, SHIFT(1867), - [4397] = {.count = 1, .reusable = true}, SHIFT(952), - [4399] = {.count = 1, .reusable = false}, SHIFT(1869), - [4401] = {.count = 1, .reusable = true}, SHIFT(1869), - [4403] = {.count = 1, .reusable = true}, SHIFT(954), - [4405] = {.count = 1, .reusable = true}, SHIFT(1868), - [4407] = {.count = 1, .reusable = true}, SHIFT(1870), - [4409] = {.count = 1, .reusable = false}, SHIFT(1873), - [4411] = {.count = 1, .reusable = true}, SHIFT(1873), - [4413] = {.count = 1, .reusable = true}, SHIFT(1872), - [4415] = {.count = 1, .reusable = true}, SHIFT(955), - [4417] = {.count = 1, .reusable = true}, SHIFT(1874), - [4419] = {.count = 1, .reusable = false}, SHIFT(1874), - [4421] = {.count = 1, .reusable = false}, SHIFT(1878), - [4423] = {.count = 1, .reusable = true}, SHIFT(1878), - [4425] = {.count = 1, .reusable = true}, SHIFT(956), - [4427] = {.count = 1, .reusable = true}, SHIFT(1877), - [4429] = {.count = 1, .reusable = false}, SHIFT(957), - [4431] = {.count = 1, .reusable = false}, SHIFT(1879), - [4433] = {.count = 1, .reusable = true}, SHIFT(1879), - [4435] = {.count = 1, .reusable = true}, SHIFT(958), - [4437] = {.count = 1, .reusable = true}, SHIFT(1880), - [4439] = {.count = 1, .reusable = true}, SHIFT(1881), - [4441] = {.count = 1, .reusable = false}, SHIFT(1881), - [4443] = {.count = 1, .reusable = false}, SHIFT(1885), - [4445] = {.count = 1, .reusable = true}, SHIFT(1885), - [4447] = {.count = 1, .reusable = true}, SHIFT(959), - [4449] = {.count = 1, .reusable = true}, SHIFT(1884), - [4451] = {.count = 1, .reusable = true}, SHIFT(960), - [4453] = {.count = 1, .reusable = false}, SHIFT(1886), - [4455] = {.count = 1, .reusable = true}, SHIFT(1886), - [4457] = {.count = 1, .reusable = true}, SHIFT(961), - [4459] = {.count = 1, .reusable = true}, SHIFT(962), - [4461] = {.count = 1, .reusable = false}, SHIFT(1887), - [4463] = {.count = 1, .reusable = true}, SHIFT(1887), - [4465] = {.count = 1, .reusable = true}, SHIFT(963), - [4467] = {.count = 1, .reusable = false}, SHIFT(1888), - [4469] = {.count = 1, .reusable = true}, SHIFT(1888), - [4471] = {.count = 1, .reusable = true}, SHIFT(964), - [4473] = {.count = 1, .reusable = true}, SHIFT(965), - [4475] = {.count = 1, .reusable = true}, SHIFT(966), + [4363] = {.count = 1, .reusable = true}, SHIFT(936), + [4365] = {.count = 1, .reusable = false}, SHIFT(1858), + [4367] = {.count = 1, .reusable = true}, SHIFT(1858), + [4369] = {.count = 1, .reusable = true}, SHIFT(937), + [4371] = {.count = 1, .reusable = false}, SHIFT(1859), + [4373] = {.count = 1, .reusable = true}, SHIFT(1859), + [4375] = {.count = 1, .reusable = true}, SHIFT(938), + [4377] = {.count = 1, .reusable = true}, SHIFT(939), + [4379] = {.count = 1, .reusable = true}, SHIFT(940), + [4381] = {.count = 1, .reusable = true}, SHIFT(941), + [4383] = {.count = 1, .reusable = true}, SHIFT(976), + [4385] = {.count = 1, .reusable = true}, SHIFT(975), + [4387] = {.count = 1, .reusable = true}, SHIFT(945), + [4389] = {.count = 1, .reusable = false}, SHIFT(1867), + [4391] = {.count = 1, .reusable = false}, SHIFT(947), + [4393] = {.count = 1, .reusable = true}, SHIFT(950), + [4395] = {.count = 1, .reusable = true}, SHIFT(951), + [4397] = {.count = 1, .reusable = false}, SHIFT(1872), + [4399] = {.count = 1, .reusable = true}, SHIFT(1872), + [4401] = {.count = 1, .reusable = true}, SHIFT(1871), + [4403] = {.count = 1, .reusable = true}, SHIFT(955), + [4405] = {.count = 1, .reusable = false}, SHIFT(1877), + [4407] = {.count = 1, .reusable = true}, SHIFT(1877), + [4409] = {.count = 1, .reusable = true}, SHIFT(1876), + [4411] = {.count = 1, .reusable = true}, SHIFT(956), + [4413] = {.count = 1, .reusable = false}, SHIFT(957), + [4415] = {.count = 1, .reusable = false}, SHIFT(1878), + [4417] = {.count = 1, .reusable = true}, SHIFT(958), + [4419] = {.count = 1, .reusable = false}, SHIFT(1880), + [4421] = {.count = 1, .reusable = true}, SHIFT(1880), + [4423] = {.count = 1, .reusable = true}, SHIFT(960), + [4425] = {.count = 1, .reusable = true}, SHIFT(1879), + [4427] = {.count = 1, .reusable = true}, SHIFT(1881), + [4429] = {.count = 1, .reusable = false}, SHIFT(1884), + [4431] = {.count = 1, .reusable = true}, SHIFT(1884), + [4433] = {.count = 1, .reusable = true}, SHIFT(1883), + [4435] = {.count = 1, .reusable = true}, SHIFT(961), + [4437] = {.count = 1, .reusable = true}, SHIFT(1885), + [4439] = {.count = 1, .reusable = false}, SHIFT(1885), + [4441] = {.count = 1, .reusable = false}, SHIFT(1889), + [4443] = {.count = 1, .reusable = true}, SHIFT(1889), + [4445] = {.count = 1, .reusable = true}, SHIFT(962), + [4447] = {.count = 1, .reusable = true}, SHIFT(1888), + [4449] = {.count = 1, .reusable = false}, SHIFT(963), + [4451] = {.count = 1, .reusable = false}, SHIFT(1890), + [4453] = {.count = 1, .reusable = true}, SHIFT(1890), + [4455] = {.count = 1, .reusable = true}, SHIFT(964), + [4457] = {.count = 1, .reusable = true}, SHIFT(1891), + [4459] = {.count = 1, .reusable = true}, SHIFT(1892), + [4461] = {.count = 1, .reusable = false}, SHIFT(1892), + [4463] = {.count = 1, .reusable = false}, SHIFT(1896), + [4465] = {.count = 1, .reusable = true}, SHIFT(1896), + [4467] = {.count = 1, .reusable = true}, SHIFT(965), + [4469] = {.count = 1, .reusable = true}, SHIFT(1895), + [4471] = {.count = 1, .reusable = true}, SHIFT(966), + [4473] = {.count = 1, .reusable = false}, SHIFT(1897), + [4475] = {.count = 1, .reusable = true}, SHIFT(1897), [4477] = {.count = 1, .reusable = true}, SHIFT(967), - [4479] = {.count = 1, .reusable = true}, SHIFT(1002), - [4481] = {.count = 1, .reusable = true}, SHIFT(1001), - [4483] = {.count = 1, .reusable = true}, SHIFT(971), - [4485] = {.count = 1, .reusable = false}, SHIFT(1896), - [4487] = {.count = 1, .reusable = false}, SHIFT(973), - [4489] = {.count = 1, .reusable = true}, SHIFT(976), - [4491] = {.count = 1, .reusable = true}, SHIFT(977), - [4493] = {.count = 1, .reusable = false}, SHIFT(1901), - [4495] = {.count = 1, .reusable = true}, SHIFT(1901), - [4497] = {.count = 1, .reusable = true}, SHIFT(1900), - [4499] = {.count = 1, .reusable = true}, SHIFT(981), - [4501] = {.count = 1, .reusable = false}, SHIFT(1906), - [4503] = {.count = 1, .reusable = true}, SHIFT(1906), - [4505] = {.count = 1, .reusable = true}, SHIFT(1905), - [4507] = {.count = 1, .reusable = true}, SHIFT(982), - [4509] = {.count = 1, .reusable = false}, SHIFT(983), - [4511] = {.count = 1, .reusable = false}, SHIFT(1907), - [4513] = {.count = 1, .reusable = true}, SHIFT(984), - [4515] = {.count = 1, .reusable = false}, SHIFT(1909), - [4517] = {.count = 1, .reusable = true}, SHIFT(1909), - [4519] = {.count = 1, .reusable = true}, SHIFT(986), - [4521] = {.count = 1, .reusable = true}, SHIFT(1908), - [4523] = {.count = 1, .reusable = true}, SHIFT(1910), - [4525] = {.count = 1, .reusable = false}, SHIFT(1913), - [4527] = {.count = 1, .reusable = true}, SHIFT(1913), - [4529] = {.count = 1, .reusable = true}, SHIFT(1912), - [4531] = {.count = 1, .reusable = true}, SHIFT(987), - [4533] = {.count = 1, .reusable = true}, SHIFT(1914), - [4535] = {.count = 1, .reusable = false}, SHIFT(1914), - [4537] = {.count = 1, .reusable = false}, SHIFT(1918), - [4539] = {.count = 1, .reusable = true}, SHIFT(1918), - [4541] = {.count = 1, .reusable = true}, SHIFT(988), - [4543] = {.count = 1, .reusable = true}, SHIFT(1917), - [4545] = {.count = 1, .reusable = false}, SHIFT(989), - [4547] = {.count = 1, .reusable = false}, SHIFT(1919), - [4549] = {.count = 1, .reusable = true}, SHIFT(1919), - [4551] = {.count = 1, .reusable = true}, SHIFT(990), - [4553] = {.count = 1, .reusable = true}, SHIFT(1920), - [4555] = {.count = 1, .reusable = true}, SHIFT(1921), - [4557] = {.count = 1, .reusable = false}, SHIFT(1921), - [4559] = {.count = 1, .reusable = false}, SHIFT(1925), - [4561] = {.count = 1, .reusable = true}, SHIFT(1925), - [4563] = {.count = 1, .reusable = true}, SHIFT(991), - [4565] = {.count = 1, .reusable = true}, SHIFT(1924), - [4567] = {.count = 1, .reusable = true}, SHIFT(992), - [4569] = {.count = 1, .reusable = false}, SHIFT(1926), - [4571] = {.count = 1, .reusable = true}, SHIFT(1926), - [4573] = {.count = 1, .reusable = true}, SHIFT(993), - [4575] = {.count = 1, .reusable = true}, SHIFT(994), - [4577] = {.count = 1, .reusable = false}, SHIFT(1927), - [4579] = {.count = 1, .reusable = true}, SHIFT(1927), - [4581] = {.count = 1, .reusable = true}, SHIFT(995), - [4583] = {.count = 1, .reusable = false}, SHIFT(1928), - [4585] = {.count = 1, .reusable = true}, SHIFT(1928), - [4587] = {.count = 1, .reusable = true}, SHIFT(996), - [4589] = {.count = 1, .reusable = true}, SHIFT(997), - [4591] = {.count = 1, .reusable = true}, SHIFT(998), + [4479] = {.count = 1, .reusable = true}, SHIFT(968), + [4481] = {.count = 1, .reusable = false}, SHIFT(1898), + [4483] = {.count = 1, .reusable = true}, SHIFT(1898), + [4485] = {.count = 1, .reusable = true}, SHIFT(969), + [4487] = {.count = 1, .reusable = false}, SHIFT(1899), + [4489] = {.count = 1, .reusable = true}, SHIFT(1899), + [4491] = {.count = 1, .reusable = true}, SHIFT(970), + [4493] = {.count = 1, .reusable = true}, SHIFT(971), + [4495] = {.count = 1, .reusable = true}, SHIFT(972), + [4497] = {.count = 1, .reusable = true}, SHIFT(973), + [4499] = {.count = 1, .reusable = true}, SHIFT(1008), + [4501] = {.count = 1, .reusable = true}, SHIFT(1007), + [4503] = {.count = 1, .reusable = true}, SHIFT(977), + [4505] = {.count = 1, .reusable = false}, SHIFT(1907), + [4507] = {.count = 1, .reusable = false}, SHIFT(979), + [4509] = {.count = 1, .reusable = true}, SHIFT(982), + [4511] = {.count = 1, .reusable = true}, SHIFT(983), + [4513] = {.count = 1, .reusable = false}, SHIFT(1912), + [4515] = {.count = 1, .reusable = true}, SHIFT(1912), + [4517] = {.count = 1, .reusable = true}, SHIFT(1911), + [4519] = {.count = 1, .reusable = true}, SHIFT(987), + [4521] = {.count = 1, .reusable = false}, SHIFT(1917), + [4523] = {.count = 1, .reusable = true}, SHIFT(1917), + [4525] = {.count = 1, .reusable = true}, SHIFT(1916), + [4527] = {.count = 1, .reusable = true}, SHIFT(988), + [4529] = {.count = 1, .reusable = false}, SHIFT(989), + [4531] = {.count = 1, .reusable = false}, SHIFT(1918), + [4533] = {.count = 1, .reusable = true}, SHIFT(990), + [4535] = {.count = 1, .reusable = false}, SHIFT(1920), + [4537] = {.count = 1, .reusable = true}, SHIFT(1920), + [4539] = {.count = 1, .reusable = true}, SHIFT(992), + [4541] = {.count = 1, .reusable = true}, SHIFT(1919), + [4543] = {.count = 1, .reusable = true}, SHIFT(1921), + [4545] = {.count = 1, .reusable = false}, SHIFT(1924), + [4547] = {.count = 1, .reusable = true}, SHIFT(1924), + [4549] = {.count = 1, .reusable = true}, SHIFT(1923), + [4551] = {.count = 1, .reusable = true}, SHIFT(993), + [4553] = {.count = 1, .reusable = true}, SHIFT(1925), + [4555] = {.count = 1, .reusable = false}, SHIFT(1925), + [4557] = {.count = 1, .reusable = false}, SHIFT(1929), + [4559] = {.count = 1, .reusable = true}, SHIFT(1929), + [4561] = {.count = 1, .reusable = true}, SHIFT(994), + [4563] = {.count = 1, .reusable = true}, SHIFT(1928), + [4565] = {.count = 1, .reusable = false}, SHIFT(995), + [4567] = {.count = 1, .reusable = false}, SHIFT(1930), + [4569] = {.count = 1, .reusable = true}, SHIFT(1930), + [4571] = {.count = 1, .reusable = true}, SHIFT(996), + [4573] = {.count = 1, .reusable = true}, SHIFT(1931), + [4575] = {.count = 1, .reusable = true}, SHIFT(1932), + [4577] = {.count = 1, .reusable = false}, SHIFT(1932), + [4579] = {.count = 1, .reusable = false}, SHIFT(1936), + [4581] = {.count = 1, .reusable = true}, SHIFT(1936), + [4583] = {.count = 1, .reusable = true}, SHIFT(997), + [4585] = {.count = 1, .reusable = true}, SHIFT(1935), + [4587] = {.count = 1, .reusable = true}, SHIFT(998), + [4589] = {.count = 1, .reusable = false}, SHIFT(1937), + [4591] = {.count = 1, .reusable = true}, SHIFT(1937), [4593] = {.count = 1, .reusable = true}, SHIFT(999), - [4595] = {.count = 1, .reusable = true}, SHIFT(1034), - [4597] = {.count = 1, .reusable = true}, SHIFT(1033), - [4599] = {.count = 1, .reusable = true}, SHIFT(1003), - [4601] = {.count = 1, .reusable = false}, SHIFT(1936), - [4603] = {.count = 1, .reusable = false}, SHIFT(1005), - [4605] = {.count = 1, .reusable = true}, SHIFT(1008), - [4607] = {.count = 1, .reusable = true}, SHIFT(1009), - [4609] = {.count = 1, .reusable = false}, SHIFT(1941), - [4611] = {.count = 1, .reusable = true}, SHIFT(1941), - [4613] = {.count = 1, .reusable = true}, SHIFT(1940), - [4615] = {.count = 1, .reusable = true}, SHIFT(1013), - [4617] = {.count = 1, .reusable = false}, SHIFT(1946), - [4619] = {.count = 1, .reusable = true}, SHIFT(1946), - [4621] = {.count = 1, .reusable = true}, SHIFT(1945), - [4623] = {.count = 1, .reusable = true}, SHIFT(1014), - [4625] = {.count = 1, .reusable = false}, SHIFT(1015), - [4627] = {.count = 1, .reusable = false}, SHIFT(1947), - [4629] = {.count = 1, .reusable = true}, SHIFT(1016), - [4631] = {.count = 1, .reusable = false}, SHIFT(1949), - [4633] = {.count = 1, .reusable = true}, SHIFT(1949), - [4635] = {.count = 1, .reusable = true}, SHIFT(1018), - [4637] = {.count = 1, .reusable = true}, SHIFT(1948), - [4639] = {.count = 1, .reusable = true}, SHIFT(1950), - [4641] = {.count = 1, .reusable = false}, SHIFT(1953), - [4643] = {.count = 1, .reusable = true}, SHIFT(1953), - [4645] = {.count = 1, .reusable = true}, SHIFT(1952), - [4647] = {.count = 1, .reusable = true}, SHIFT(1019), - [4649] = {.count = 1, .reusable = true}, SHIFT(1954), - [4651] = {.count = 1, .reusable = false}, SHIFT(1954), - [4653] = {.count = 1, .reusable = false}, SHIFT(1958), - [4655] = {.count = 1, .reusable = true}, SHIFT(1958), - [4657] = {.count = 1, .reusable = true}, SHIFT(1020), - [4659] = {.count = 1, .reusable = true}, SHIFT(1957), - [4661] = {.count = 1, .reusable = false}, SHIFT(1021), - [4663] = {.count = 1, .reusable = false}, SHIFT(1959), - [4665] = {.count = 1, .reusable = true}, SHIFT(1959), - [4667] = {.count = 1, .reusable = true}, SHIFT(1022), - [4669] = {.count = 1, .reusable = true}, SHIFT(1960), - [4671] = {.count = 1, .reusable = true}, SHIFT(1961), - [4673] = {.count = 1, .reusable = false}, SHIFT(1961), - [4675] = {.count = 1, .reusable = false}, SHIFT(1965), - [4677] = {.count = 1, .reusable = true}, SHIFT(1965), - [4679] = {.count = 1, .reusable = true}, SHIFT(1023), - [4681] = {.count = 1, .reusable = true}, SHIFT(1964), - [4683] = {.count = 1, .reusable = true}, SHIFT(1024), - [4685] = {.count = 1, .reusable = false}, SHIFT(1966), - [4687] = {.count = 1, .reusable = true}, SHIFT(1966), - [4689] = {.count = 1, .reusable = true}, SHIFT(1025), - [4691] = {.count = 1, .reusable = true}, SHIFT(1026), - [4693] = {.count = 1, .reusable = false}, SHIFT(1967), - [4695] = {.count = 1, .reusable = true}, SHIFT(1967), - [4697] = {.count = 1, .reusable = true}, SHIFT(1027), - [4699] = {.count = 1, .reusable = false}, SHIFT(1968), - [4701] = {.count = 1, .reusable = true}, SHIFT(1968), - [4703] = {.count = 1, .reusable = true}, SHIFT(1028), - [4705] = {.count = 1, .reusable = true}, SHIFT(1029), - [4707] = {.count = 1, .reusable = true}, SHIFT(1030), + [4595] = {.count = 1, .reusable = true}, SHIFT(1000), + [4597] = {.count = 1, .reusable = false}, SHIFT(1938), + [4599] = {.count = 1, .reusable = true}, SHIFT(1938), + [4601] = {.count = 1, .reusable = true}, SHIFT(1001), + [4603] = {.count = 1, .reusable = false}, SHIFT(1939), + [4605] = {.count = 1, .reusable = true}, SHIFT(1939), + [4607] = {.count = 1, .reusable = true}, SHIFT(1002), + [4609] = {.count = 1, .reusable = true}, SHIFT(1003), + [4611] = {.count = 1, .reusable = true}, SHIFT(1004), + [4613] = {.count = 1, .reusable = true}, SHIFT(1005), + [4615] = {.count = 1, .reusable = true}, SHIFT(1040), + [4617] = {.count = 1, .reusable = true}, SHIFT(1039), + [4619] = {.count = 1, .reusable = true}, SHIFT(1009), + [4621] = {.count = 1, .reusable = false}, SHIFT(1947), + [4623] = {.count = 1, .reusable = false}, SHIFT(1011), + [4625] = {.count = 1, .reusable = true}, SHIFT(1014), + [4627] = {.count = 1, .reusable = true}, SHIFT(1015), + [4629] = {.count = 1, .reusable = false}, SHIFT(1952), + [4631] = {.count = 1, .reusable = true}, SHIFT(1952), + [4633] = {.count = 1, .reusable = true}, SHIFT(1951), + [4635] = {.count = 1, .reusable = true}, SHIFT(1019), + [4637] = {.count = 1, .reusable = false}, SHIFT(1957), + [4639] = {.count = 1, .reusable = true}, SHIFT(1957), + [4641] = {.count = 1, .reusable = true}, SHIFT(1956), + [4643] = {.count = 1, .reusable = true}, SHIFT(1020), + [4645] = {.count = 1, .reusable = false}, SHIFT(1021), + [4647] = {.count = 1, .reusable = false}, SHIFT(1958), + [4649] = {.count = 1, .reusable = true}, SHIFT(1022), + [4651] = {.count = 1, .reusable = false}, SHIFT(1960), + [4653] = {.count = 1, .reusable = true}, SHIFT(1960), + [4655] = {.count = 1, .reusable = true}, SHIFT(1024), + [4657] = {.count = 1, .reusable = true}, SHIFT(1959), + [4659] = {.count = 1, .reusable = true}, SHIFT(1961), + [4661] = {.count = 1, .reusable = false}, SHIFT(1964), + [4663] = {.count = 1, .reusable = true}, SHIFT(1964), + [4665] = {.count = 1, .reusable = true}, SHIFT(1963), + [4667] = {.count = 1, .reusable = true}, SHIFT(1025), + [4669] = {.count = 1, .reusable = true}, SHIFT(1965), + [4671] = {.count = 1, .reusable = false}, SHIFT(1965), + [4673] = {.count = 1, .reusable = false}, SHIFT(1969), + [4675] = {.count = 1, .reusable = true}, SHIFT(1969), + [4677] = {.count = 1, .reusable = true}, SHIFT(1026), + [4679] = {.count = 1, .reusable = true}, SHIFT(1968), + [4681] = {.count = 1, .reusable = false}, SHIFT(1027), + [4683] = {.count = 1, .reusable = false}, SHIFT(1970), + [4685] = {.count = 1, .reusable = true}, SHIFT(1970), + [4687] = {.count = 1, .reusable = true}, SHIFT(1028), + [4689] = {.count = 1, .reusable = true}, SHIFT(1971), + [4691] = {.count = 1, .reusable = true}, SHIFT(1972), + [4693] = {.count = 1, .reusable = false}, SHIFT(1972), + [4695] = {.count = 1, .reusable = false}, SHIFT(1976), + [4697] = {.count = 1, .reusable = true}, SHIFT(1976), + [4699] = {.count = 1, .reusable = true}, SHIFT(1029), + [4701] = {.count = 1, .reusable = true}, SHIFT(1975), + [4703] = {.count = 1, .reusable = true}, SHIFT(1030), + [4705] = {.count = 1, .reusable = false}, SHIFT(1977), + [4707] = {.count = 1, .reusable = true}, SHIFT(1977), [4709] = {.count = 1, .reusable = true}, SHIFT(1031), - [4711] = {.count = 1, .reusable = true}, SHIFT(1066), - [4713] = {.count = 1, .reusable = true}, SHIFT(1035), - [4715] = {.count = 1, .reusable = true}, SHIFT(1065), - [4717] = {.count = 1, .reusable = false}, SHIFT(1037), - [4719] = {.count = 1, .reusable = false}, SHIFT(1976), - [4721] = {.count = 1, .reusable = true}, SHIFT(1040), - [4723] = {.count = 1, .reusable = true}, SHIFT(1041), - [4725] = {.count = 1, .reusable = false}, SHIFT(1981), - [4727] = {.count = 1, .reusable = true}, SHIFT(1981), - [4729] = {.count = 1, .reusable = true}, SHIFT(1980), - [4731] = {.count = 1, .reusable = true}, SHIFT(1045), - [4733] = {.count = 1, .reusable = false}, SHIFT(1986), - [4735] = {.count = 1, .reusable = true}, SHIFT(1986), - [4737] = {.count = 1, .reusable = true}, SHIFT(1985), - [4739] = {.count = 1, .reusable = true}, SHIFT(1046), - [4741] = {.count = 1, .reusable = false}, SHIFT(1047), - [4743] = {.count = 1, .reusable = false}, SHIFT(1987), - [4745] = {.count = 1, .reusable = true}, SHIFT(1048), - [4747] = {.count = 1, .reusable = false}, SHIFT(1989), - [4749] = {.count = 1, .reusable = true}, SHIFT(1989), - [4751] = {.count = 1, .reusable = true}, SHIFT(1050), - [4753] = {.count = 1, .reusable = true}, SHIFT(1988), - [4755] = {.count = 1, .reusable = true}, SHIFT(1990), - [4757] = {.count = 1, .reusable = false}, SHIFT(1993), - [4759] = {.count = 1, .reusable = true}, SHIFT(1993), - [4761] = {.count = 1, .reusable = true}, SHIFT(1992), - [4763] = {.count = 1, .reusable = true}, SHIFT(1051), - [4765] = {.count = 1, .reusable = true}, SHIFT(1994), - [4767] = {.count = 1, .reusable = false}, SHIFT(1994), - [4769] = {.count = 1, .reusable = false}, SHIFT(1998), - [4771] = {.count = 1, .reusable = true}, SHIFT(1998), - [4773] = {.count = 1, .reusable = true}, SHIFT(1052), - [4775] = {.count = 1, .reusable = true}, SHIFT(1997), - [4777] = {.count = 1, .reusable = false}, SHIFT(1053), - [4779] = {.count = 1, .reusable = false}, SHIFT(1999), - [4781] = {.count = 1, .reusable = true}, SHIFT(1999), - [4783] = {.count = 1, .reusable = true}, SHIFT(1054), - [4785] = {.count = 1, .reusable = true}, SHIFT(2000), - [4787] = {.count = 1, .reusable = true}, SHIFT(2001), - [4789] = {.count = 1, .reusable = false}, SHIFT(2001), - [4791] = {.count = 1, .reusable = false}, SHIFT(2005), - [4793] = {.count = 1, .reusable = true}, SHIFT(2005), - [4795] = {.count = 1, .reusable = true}, SHIFT(1055), - [4797] = {.count = 1, .reusable = true}, SHIFT(2004), - [4799] = {.count = 1, .reusable = true}, SHIFT(1056), - [4801] = {.count = 1, .reusable = false}, SHIFT(2006), - [4803] = {.count = 1, .reusable = true}, SHIFT(2006), - [4805] = {.count = 1, .reusable = true}, SHIFT(1057), - [4807] = {.count = 1, .reusable = true}, SHIFT(1058), - [4809] = {.count = 1, .reusable = false}, SHIFT(2007), - [4811] = {.count = 1, .reusable = true}, SHIFT(2007), - [4813] = {.count = 1, .reusable = true}, SHIFT(1059), - [4815] = {.count = 1, .reusable = false}, SHIFT(2008), - [4817] = {.count = 1, .reusable = true}, SHIFT(2008), - [4819] = {.count = 1, .reusable = true}, SHIFT(1060), - [4821] = {.count = 1, .reusable = true}, SHIFT(1061), - [4823] = {.count = 1, .reusable = true}, SHIFT(1062), + [4711] = {.count = 1, .reusable = true}, SHIFT(1032), + [4713] = {.count = 1, .reusable = false}, SHIFT(1978), + [4715] = {.count = 1, .reusable = true}, SHIFT(1978), + [4717] = {.count = 1, .reusable = true}, SHIFT(1033), + [4719] = {.count = 1, .reusable = false}, SHIFT(1979), + [4721] = {.count = 1, .reusable = true}, SHIFT(1979), + [4723] = {.count = 1, .reusable = true}, SHIFT(1034), + [4725] = {.count = 1, .reusable = true}, SHIFT(1035), + [4727] = {.count = 1, .reusable = true}, SHIFT(1036), + [4729] = {.count = 1, .reusable = true}, SHIFT(1037), + [4731] = {.count = 1, .reusable = true}, SHIFT(1072), + [4733] = {.count = 1, .reusable = true}, SHIFT(1041), + [4735] = {.count = 1, .reusable = true}, SHIFT(1071), + [4737] = {.count = 1, .reusable = false}, SHIFT(1043), + [4739] = {.count = 1, .reusable = false}, SHIFT(1987), + [4741] = {.count = 1, .reusable = true}, SHIFT(1046), + [4743] = {.count = 1, .reusable = true}, SHIFT(1047), + [4745] = {.count = 1, .reusable = false}, SHIFT(1992), + [4747] = {.count = 1, .reusable = true}, SHIFT(1992), + [4749] = {.count = 1, .reusable = true}, SHIFT(1991), + [4751] = {.count = 1, .reusable = true}, SHIFT(1051), + [4753] = {.count = 1, .reusable = false}, SHIFT(1997), + [4755] = {.count = 1, .reusable = true}, SHIFT(1997), + [4757] = {.count = 1, .reusable = true}, SHIFT(1996), + [4759] = {.count = 1, .reusable = true}, SHIFT(1052), + [4761] = {.count = 1, .reusable = false}, SHIFT(1053), + [4763] = {.count = 1, .reusable = false}, SHIFT(1998), + [4765] = {.count = 1, .reusable = true}, SHIFT(1054), + [4767] = {.count = 1, .reusable = false}, SHIFT(2000), + [4769] = {.count = 1, .reusable = true}, SHIFT(2000), + [4771] = {.count = 1, .reusable = true}, SHIFT(1056), + [4773] = {.count = 1, .reusable = true}, SHIFT(1999), + [4775] = {.count = 1, .reusable = true}, SHIFT(2001), + [4777] = {.count = 1, .reusable = false}, SHIFT(2004), + [4779] = {.count = 1, .reusable = true}, SHIFT(2004), + [4781] = {.count = 1, .reusable = true}, SHIFT(2003), + [4783] = {.count = 1, .reusable = true}, SHIFT(1057), + [4785] = {.count = 1, .reusable = true}, SHIFT(2005), + [4787] = {.count = 1, .reusable = false}, SHIFT(2005), + [4789] = {.count = 1, .reusable = false}, SHIFT(2009), + [4791] = {.count = 1, .reusable = true}, SHIFT(2009), + [4793] = {.count = 1, .reusable = true}, SHIFT(1058), + [4795] = {.count = 1, .reusable = true}, SHIFT(2008), + [4797] = {.count = 1, .reusable = false}, SHIFT(1059), + [4799] = {.count = 1, .reusable = false}, SHIFT(2010), + [4801] = {.count = 1, .reusable = true}, SHIFT(2010), + [4803] = {.count = 1, .reusable = true}, SHIFT(1060), + [4805] = {.count = 1, .reusable = true}, SHIFT(2011), + [4807] = {.count = 1, .reusable = true}, SHIFT(2012), + [4809] = {.count = 1, .reusable = false}, SHIFT(2012), + [4811] = {.count = 1, .reusable = false}, SHIFT(2016), + [4813] = {.count = 1, .reusable = true}, SHIFT(2016), + [4815] = {.count = 1, .reusable = true}, SHIFT(1061), + [4817] = {.count = 1, .reusable = true}, SHIFT(2015), + [4819] = {.count = 1, .reusable = true}, SHIFT(1062), + [4821] = {.count = 1, .reusable = false}, SHIFT(2017), + [4823] = {.count = 1, .reusable = true}, SHIFT(2017), [4825] = {.count = 1, .reusable = true}, SHIFT(1063), - [4827] = {.count = 1, .reusable = true}, SHIFT(1098), - [4829] = {.count = 1, .reusable = true}, SHIFT(1067), - [4831] = {.count = 1, .reusable = true}, SHIFT(1097), - [4833] = {.count = 1, .reusable = false}, SHIFT(1069), - [4835] = {.count = 1, .reusable = false}, SHIFT(2016), - [4837] = {.count = 1, .reusable = true}, SHIFT(1072), - [4839] = {.count = 1, .reusable = true}, SHIFT(1073), - [4841] = {.count = 1, .reusable = false}, SHIFT(2021), - [4843] = {.count = 1, .reusable = true}, SHIFT(2021), - [4845] = {.count = 1, .reusable = true}, SHIFT(2020), - [4847] = {.count = 1, .reusable = true}, SHIFT(1077), - [4849] = {.count = 1, .reusable = false}, SHIFT(2026), - [4851] = {.count = 1, .reusable = true}, SHIFT(2026), - [4853] = {.count = 1, .reusable = true}, SHIFT(2025), - [4855] = {.count = 1, .reusable = true}, SHIFT(1078), - [4857] = {.count = 1, .reusable = false}, SHIFT(1079), - [4859] = {.count = 1, .reusable = false}, SHIFT(2027), - [4861] = {.count = 1, .reusable = true}, SHIFT(1080), - [4863] = {.count = 1, .reusable = false}, SHIFT(2029), - [4865] = {.count = 1, .reusable = true}, SHIFT(2029), - [4867] = {.count = 1, .reusable = true}, SHIFT(1082), - [4869] = {.count = 1, .reusable = true}, SHIFT(2028), - [4871] = {.count = 1, .reusable = true}, SHIFT(2030), - [4873] = {.count = 1, .reusable = false}, SHIFT(2033), - [4875] = {.count = 1, .reusable = true}, SHIFT(2033), - [4877] = {.count = 1, .reusable = true}, SHIFT(2032), - [4879] = {.count = 1, .reusable = true}, SHIFT(1083), - [4881] = {.count = 1, .reusable = true}, SHIFT(2034), - [4883] = {.count = 1, .reusable = false}, SHIFT(2034), - [4885] = {.count = 1, .reusable = false}, SHIFT(2038), - [4887] = {.count = 1, .reusable = true}, SHIFT(2038), - [4889] = {.count = 1, .reusable = true}, SHIFT(1084), - [4891] = {.count = 1, .reusable = true}, SHIFT(2037), - [4893] = {.count = 1, .reusable = false}, SHIFT(1085), - [4895] = {.count = 1, .reusable = false}, SHIFT(2039), - [4897] = {.count = 1, .reusable = true}, SHIFT(2039), - [4899] = {.count = 1, .reusable = true}, SHIFT(1086), - [4901] = {.count = 1, .reusable = true}, SHIFT(2040), - [4903] = {.count = 1, .reusable = true}, SHIFT(2041), - [4905] = {.count = 1, .reusable = false}, SHIFT(2041), - [4907] = {.count = 1, .reusable = false}, SHIFT(2045), - [4909] = {.count = 1, .reusable = true}, SHIFT(2045), - [4911] = {.count = 1, .reusable = true}, SHIFT(1087), - [4913] = {.count = 1, .reusable = true}, SHIFT(2044), - [4915] = {.count = 1, .reusable = true}, SHIFT(1088), - [4917] = {.count = 1, .reusable = false}, SHIFT(2046), - [4919] = {.count = 1, .reusable = true}, SHIFT(2046), - [4921] = {.count = 1, .reusable = true}, SHIFT(1089), - [4923] = {.count = 1, .reusable = true}, SHIFT(1090), - [4925] = {.count = 1, .reusable = false}, SHIFT(2047), - [4927] = {.count = 1, .reusable = true}, SHIFT(2047), - [4929] = {.count = 1, .reusable = true}, SHIFT(1091), - [4931] = {.count = 1, .reusable = false}, SHIFT(2048), - [4933] = {.count = 1, .reusable = true}, SHIFT(2048), - [4935] = {.count = 1, .reusable = true}, SHIFT(1092), - [4937] = {.count = 1, .reusable = true}, SHIFT(1093), - [4939] = {.count = 1, .reusable = true}, SHIFT(1094), + [4827] = {.count = 1, .reusable = true}, SHIFT(1064), + [4829] = {.count = 1, .reusable = false}, SHIFT(2018), + [4831] = {.count = 1, .reusable = true}, SHIFT(2018), + [4833] = {.count = 1, .reusable = true}, SHIFT(1065), + [4835] = {.count = 1, .reusable = false}, SHIFT(2019), + [4837] = {.count = 1, .reusable = true}, SHIFT(2019), + [4839] = {.count = 1, .reusable = true}, SHIFT(1066), + [4841] = {.count = 1, .reusable = true}, SHIFT(1067), + [4843] = {.count = 1, .reusable = true}, SHIFT(1068), + [4845] = {.count = 1, .reusable = true}, SHIFT(1069), + [4847] = {.count = 1, .reusable = true}, SHIFT(1104), + [4849] = {.count = 1, .reusable = true}, SHIFT(1073), + [4851] = {.count = 1, .reusable = true}, SHIFT(1103), + [4853] = {.count = 1, .reusable = false}, SHIFT(1075), + [4855] = {.count = 1, .reusable = false}, SHIFT(2027), + [4857] = {.count = 1, .reusable = true}, SHIFT(1078), + [4859] = {.count = 1, .reusable = true}, SHIFT(1079), + [4861] = {.count = 1, .reusable = false}, SHIFT(2032), + [4863] = {.count = 1, .reusable = true}, SHIFT(2032), + [4865] = {.count = 1, .reusable = true}, SHIFT(2031), + [4867] = {.count = 1, .reusable = true}, SHIFT(1083), + [4869] = {.count = 1, .reusable = false}, SHIFT(2037), + [4871] = {.count = 1, .reusable = true}, SHIFT(2037), + [4873] = {.count = 1, .reusable = true}, SHIFT(2036), + [4875] = {.count = 1, .reusable = true}, SHIFT(1084), + [4877] = {.count = 1, .reusable = false}, SHIFT(1085), + [4879] = {.count = 1, .reusable = false}, SHIFT(2038), + [4881] = {.count = 1, .reusable = true}, SHIFT(1086), + [4883] = {.count = 1, .reusable = false}, SHIFT(2040), + [4885] = {.count = 1, .reusable = true}, SHIFT(2040), + [4887] = {.count = 1, .reusable = true}, SHIFT(1088), + [4889] = {.count = 1, .reusable = true}, SHIFT(2039), + [4891] = {.count = 1, .reusable = true}, SHIFT(2041), + [4893] = {.count = 1, .reusable = false}, SHIFT(2044), + [4895] = {.count = 1, .reusable = true}, SHIFT(2044), + [4897] = {.count = 1, .reusable = true}, SHIFT(2043), + [4899] = {.count = 1, .reusable = true}, SHIFT(1089), + [4901] = {.count = 1, .reusable = true}, SHIFT(2045), + [4903] = {.count = 1, .reusable = false}, SHIFT(2045), + [4905] = {.count = 1, .reusable = false}, SHIFT(2049), + [4907] = {.count = 1, .reusable = true}, SHIFT(2049), + [4909] = {.count = 1, .reusable = true}, SHIFT(1090), + [4911] = {.count = 1, .reusable = true}, SHIFT(2048), + [4913] = {.count = 1, .reusable = false}, SHIFT(1091), + [4915] = {.count = 1, .reusable = false}, SHIFT(2050), + [4917] = {.count = 1, .reusable = true}, SHIFT(2050), + [4919] = {.count = 1, .reusable = true}, SHIFT(1092), + [4921] = {.count = 1, .reusable = true}, SHIFT(2051), + [4923] = {.count = 1, .reusable = true}, SHIFT(2052), + [4925] = {.count = 1, .reusable = false}, SHIFT(2052), + [4927] = {.count = 1, .reusable = false}, SHIFT(2056), + [4929] = {.count = 1, .reusable = true}, SHIFT(2056), + [4931] = {.count = 1, .reusable = true}, SHIFT(1093), + [4933] = {.count = 1, .reusable = true}, SHIFT(2055), + [4935] = {.count = 1, .reusable = true}, SHIFT(1094), + [4937] = {.count = 1, .reusable = false}, SHIFT(2057), + [4939] = {.count = 1, .reusable = true}, SHIFT(2057), [4941] = {.count = 1, .reusable = true}, SHIFT(1095), - [4943] = {.count = 1, .reusable = false}, SHIFT(2056), - [4945] = {.count = 1, .reusable = false}, SHIFT(1101), - [4947] = {.count = 1, .reusable = true}, SHIFT(1104), - [4949] = {.count = 1, .reusable = true}, SHIFT(1105), - [4951] = {.count = 1, .reusable = false}, SHIFT(2061), - [4953] = {.count = 1, .reusable = true}, SHIFT(2061), - [4955] = {.count = 1, .reusable = true}, SHIFT(2060), - [4957] = {.count = 1, .reusable = true}, SHIFT(1109), - [4959] = {.count = 1, .reusable = false}, SHIFT(2066), - [4961] = {.count = 1, .reusable = true}, SHIFT(2066), - [4963] = {.count = 1, .reusable = true}, SHIFT(2065), - [4965] = {.count = 1, .reusable = true}, SHIFT(1110), - [4967] = {.count = 1, .reusable = false}, SHIFT(1111), - [4969] = {.count = 1, .reusable = false}, SHIFT(2067), - [4971] = {.count = 1, .reusable = true}, SHIFT(1112), - [4973] = {.count = 1, .reusable = false}, SHIFT(2069), - [4975] = {.count = 1, .reusable = true}, SHIFT(2069), - [4977] = {.count = 1, .reusable = true}, SHIFT(1114), - [4979] = {.count = 1, .reusable = true}, SHIFT(2068), - [4981] = {.count = 1, .reusable = true}, SHIFT(2070), - [4983] = {.count = 1, .reusable = false}, SHIFT(2073), - [4985] = {.count = 1, .reusable = true}, SHIFT(2073), - [4987] = {.count = 1, .reusable = true}, SHIFT(2072), - [4989] = {.count = 1, .reusable = true}, SHIFT(1115), - [4991] = {.count = 1, .reusable = true}, SHIFT(2074), - [4993] = {.count = 1, .reusable = false}, SHIFT(2074), - [4995] = {.count = 1, .reusable = false}, SHIFT(2078), - [4997] = {.count = 1, .reusable = true}, SHIFT(2078), - [4999] = {.count = 1, .reusable = true}, SHIFT(1116), - [5001] = {.count = 1, .reusable = true}, SHIFT(2077), - [5003] = {.count = 1, .reusable = false}, SHIFT(1117), - [5005] = {.count = 1, .reusable = false}, SHIFT(2079), - [5007] = {.count = 1, .reusable = true}, SHIFT(2079), - [5009] = {.count = 1, .reusable = true}, SHIFT(1118), - [5011] = {.count = 1, .reusable = true}, SHIFT(2080), - [5013] = {.count = 1, .reusable = true}, SHIFT(2081), - [5015] = {.count = 1, .reusable = false}, SHIFT(2081), - [5017] = {.count = 1, .reusable = false}, SHIFT(2085), - [5019] = {.count = 1, .reusable = true}, SHIFT(2085), - [5021] = {.count = 1, .reusable = true}, SHIFT(1119), - [5023] = {.count = 1, .reusable = true}, SHIFT(2084), - [5025] = {.count = 1, .reusable = true}, SHIFT(1120), - [5027] = {.count = 1, .reusable = false}, SHIFT(2086), - [5029] = {.count = 1, .reusable = true}, SHIFT(2086), - [5031] = {.count = 1, .reusable = true}, SHIFT(1121), - [5033] = {.count = 1, .reusable = true}, SHIFT(1122), - [5035] = {.count = 1, .reusable = false}, SHIFT(2087), - [5037] = {.count = 1, .reusable = true}, SHIFT(2087), - [5039] = {.count = 1, .reusable = true}, SHIFT(1123), - [5041] = {.count = 1, .reusable = false}, SHIFT(2088), - [5043] = {.count = 1, .reusable = true}, SHIFT(2088), - [5045] = {.count = 1, .reusable = true}, SHIFT(1124), - [5047] = {.count = 1, .reusable = true}, SHIFT(1125), - [5049] = {.count = 1, .reusable = true}, SHIFT(1126), + [4943] = {.count = 1, .reusable = true}, SHIFT(1096), + [4945] = {.count = 1, .reusable = false}, SHIFT(2058), + [4947] = {.count = 1, .reusable = true}, SHIFT(2058), + [4949] = {.count = 1, .reusable = true}, SHIFT(1097), + [4951] = {.count = 1, .reusable = false}, SHIFT(2059), + [4953] = {.count = 1, .reusable = true}, SHIFT(2059), + [4955] = {.count = 1, .reusable = true}, SHIFT(1098), + [4957] = {.count = 1, .reusable = true}, SHIFT(1099), + [4959] = {.count = 1, .reusable = true}, SHIFT(1100), + [4961] = {.count = 1, .reusable = true}, SHIFT(1101), + [4963] = {.count = 1, .reusable = false}, SHIFT(2067), + [4965] = {.count = 1, .reusable = false}, SHIFT(1107), + [4967] = {.count = 1, .reusable = true}, SHIFT(1110), + [4969] = {.count = 1, .reusable = true}, SHIFT(1111), + [4971] = {.count = 1, .reusable = false}, SHIFT(2072), + [4973] = {.count = 1, .reusable = true}, SHIFT(2072), + [4975] = {.count = 1, .reusable = true}, SHIFT(2071), + [4977] = {.count = 1, .reusable = true}, SHIFT(1115), + [4979] = {.count = 1, .reusable = false}, SHIFT(2077), + [4981] = {.count = 1, .reusable = true}, SHIFT(2077), + [4983] = {.count = 1, .reusable = true}, SHIFT(2076), + [4985] = {.count = 1, .reusable = true}, SHIFT(1116), + [4987] = {.count = 1, .reusable = false}, SHIFT(1117), + [4989] = {.count = 1, .reusable = false}, SHIFT(2078), + [4991] = {.count = 1, .reusable = true}, SHIFT(1118), + [4993] = {.count = 1, .reusable = false}, SHIFT(2080), + [4995] = {.count = 1, .reusable = true}, SHIFT(2080), + [4997] = {.count = 1, .reusable = true}, SHIFT(1120), + [4999] = {.count = 1, .reusable = true}, SHIFT(2079), + [5001] = {.count = 1, .reusable = true}, SHIFT(2081), + [5003] = {.count = 1, .reusable = false}, SHIFT(2084), + [5005] = {.count = 1, .reusable = true}, SHIFT(2084), + [5007] = {.count = 1, .reusable = true}, SHIFT(2083), + [5009] = {.count = 1, .reusable = true}, SHIFT(1121), + [5011] = {.count = 1, .reusable = true}, SHIFT(2085), + [5013] = {.count = 1, .reusable = false}, SHIFT(2085), + [5015] = {.count = 1, .reusable = false}, SHIFT(2089), + [5017] = {.count = 1, .reusable = true}, SHIFT(2089), + [5019] = {.count = 1, .reusable = true}, SHIFT(1122), + [5021] = {.count = 1, .reusable = true}, SHIFT(2088), + [5023] = {.count = 1, .reusable = false}, SHIFT(1123), + [5025] = {.count = 1, .reusable = false}, SHIFT(2090), + [5027] = {.count = 1, .reusable = true}, SHIFT(2090), + [5029] = {.count = 1, .reusable = true}, SHIFT(1124), + [5031] = {.count = 1, .reusable = true}, SHIFT(2091), + [5033] = {.count = 1, .reusable = true}, SHIFT(2092), + [5035] = {.count = 1, .reusable = false}, SHIFT(2092), + [5037] = {.count = 1, .reusable = false}, SHIFT(2096), + [5039] = {.count = 1, .reusable = true}, SHIFT(2096), + [5041] = {.count = 1, .reusable = true}, SHIFT(1125), + [5043] = {.count = 1, .reusable = true}, SHIFT(2095), + [5045] = {.count = 1, .reusable = true}, SHIFT(1126), + [5047] = {.count = 1, .reusable = false}, SHIFT(2097), + [5049] = {.count = 1, .reusable = true}, SHIFT(2097), [5051] = {.count = 1, .reusable = true}, SHIFT(1127), - [5053] = {.count = 1, .reusable = true}, SHIFT(1161), - [5055] = {.count = 1, .reusable = false}, SHIFT(2096), - [5057] = {.count = 1, .reusable = false}, SHIFT(1133), - [5059] = {.count = 1, .reusable = true}, SHIFT(1136), - [5061] = {.count = 1, .reusable = true}, SHIFT(1137), - [5063] = {.count = 1, .reusable = false}, SHIFT(2101), - [5065] = {.count = 1, .reusable = true}, SHIFT(2101), - [5067] = {.count = 1, .reusable = true}, SHIFT(2100), - [5069] = {.count = 1, .reusable = true}, SHIFT(1141), - [5071] = {.count = 1, .reusable = false}, SHIFT(2106), - [5073] = {.count = 1, .reusable = true}, SHIFT(2106), - [5075] = {.count = 1, .reusable = true}, SHIFT(2105), - [5077] = {.count = 1, .reusable = true}, SHIFT(1142), - [5079] = {.count = 1, .reusable = false}, SHIFT(1143), - [5081] = {.count = 1, .reusable = false}, SHIFT(2107), - [5083] = {.count = 1, .reusable = true}, SHIFT(1144), - [5085] = {.count = 1, .reusable = false}, SHIFT(2109), - [5087] = {.count = 1, .reusable = true}, SHIFT(2109), - [5089] = {.count = 1, .reusable = true}, SHIFT(1146), - [5091] = {.count = 1, .reusable = true}, SHIFT(2108), - [5093] = {.count = 1, .reusable = true}, SHIFT(2110), - [5095] = {.count = 1, .reusable = false}, SHIFT(2113), - [5097] = {.count = 1, .reusable = true}, SHIFT(2113), - [5099] = {.count = 1, .reusable = true}, SHIFT(2112), - [5101] = {.count = 1, .reusable = true}, SHIFT(1147), - [5103] = {.count = 1, .reusable = true}, SHIFT(2114), - [5105] = {.count = 1, .reusable = false}, SHIFT(2114), - [5107] = {.count = 1, .reusable = false}, SHIFT(2118), - [5109] = {.count = 1, .reusable = true}, SHIFT(2118), - [5111] = {.count = 1, .reusable = true}, SHIFT(1148), - [5113] = {.count = 1, .reusable = true}, SHIFT(2117), - [5115] = {.count = 1, .reusable = false}, SHIFT(1149), - [5117] = {.count = 1, .reusable = false}, SHIFT(2119), - [5119] = {.count = 1, .reusable = true}, SHIFT(2119), - [5121] = {.count = 1, .reusable = true}, SHIFT(1150), - [5123] = {.count = 1, .reusable = true}, SHIFT(2120), - [5125] = {.count = 1, .reusable = true}, SHIFT(2121), - [5127] = {.count = 1, .reusable = false}, SHIFT(2121), - [5129] = {.count = 1, .reusable = false}, SHIFT(2125), - [5131] = {.count = 1, .reusable = true}, SHIFT(2125), - [5133] = {.count = 1, .reusable = true}, SHIFT(1151), - [5135] = {.count = 1, .reusable = true}, SHIFT(2124), - [5137] = {.count = 1, .reusable = true}, SHIFT(1152), - [5139] = {.count = 1, .reusable = false}, SHIFT(2126), - [5141] = {.count = 1, .reusable = true}, SHIFT(2126), - [5143] = {.count = 1, .reusable = true}, SHIFT(1153), - [5145] = {.count = 1, .reusable = true}, SHIFT(1154), - [5147] = {.count = 1, .reusable = false}, SHIFT(2127), - [5149] = {.count = 1, .reusable = true}, SHIFT(2127), - [5151] = {.count = 1, .reusable = true}, SHIFT(1155), - [5153] = {.count = 1, .reusable = false}, SHIFT(2128), - [5155] = {.count = 1, .reusable = true}, SHIFT(2128), - [5157] = {.count = 1, .reusable = true}, SHIFT(1156), - [5159] = {.count = 1, .reusable = true}, SHIFT(1157), - [5161] = {.count = 1, .reusable = true}, SHIFT(1158), + [5053] = {.count = 1, .reusable = true}, SHIFT(1128), + [5055] = {.count = 1, .reusable = false}, SHIFT(2098), + [5057] = {.count = 1, .reusable = true}, SHIFT(2098), + [5059] = {.count = 1, .reusable = true}, SHIFT(1129), + [5061] = {.count = 1, .reusable = false}, SHIFT(2099), + [5063] = {.count = 1, .reusable = true}, SHIFT(2099), + [5065] = {.count = 1, .reusable = true}, SHIFT(1130), + [5067] = {.count = 1, .reusable = true}, SHIFT(1131), + [5069] = {.count = 1, .reusable = true}, SHIFT(1132), + [5071] = {.count = 1, .reusable = true}, SHIFT(1133), + [5073] = {.count = 1, .reusable = true}, SHIFT(1167), + [5075] = {.count = 1, .reusable = false}, SHIFT(2107), + [5077] = {.count = 1, .reusable = false}, SHIFT(1139), + [5079] = {.count = 1, .reusable = true}, SHIFT(1142), + [5081] = {.count = 1, .reusable = true}, SHIFT(1143), + [5083] = {.count = 1, .reusable = false}, SHIFT(2112), + [5085] = {.count = 1, .reusable = true}, SHIFT(2112), + [5087] = {.count = 1, .reusable = true}, SHIFT(2111), + [5089] = {.count = 1, .reusable = true}, SHIFT(1147), + [5091] = {.count = 1, .reusable = false}, SHIFT(2117), + [5093] = {.count = 1, .reusable = true}, SHIFT(2117), + [5095] = {.count = 1, .reusable = true}, SHIFT(2116), + [5097] = {.count = 1, .reusable = true}, SHIFT(1148), + [5099] = {.count = 1, .reusable = false}, SHIFT(1149), + [5101] = {.count = 1, .reusable = false}, SHIFT(2118), + [5103] = {.count = 1, .reusable = true}, SHIFT(1150), + [5105] = {.count = 1, .reusable = false}, SHIFT(2120), + [5107] = {.count = 1, .reusable = true}, SHIFT(2120), + [5109] = {.count = 1, .reusable = true}, SHIFT(1152), + [5111] = {.count = 1, .reusable = true}, SHIFT(2119), + [5113] = {.count = 1, .reusable = true}, SHIFT(2121), + [5115] = {.count = 1, .reusable = false}, SHIFT(2124), + [5117] = {.count = 1, .reusable = true}, SHIFT(2124), + [5119] = {.count = 1, .reusable = true}, SHIFT(2123), + [5121] = {.count = 1, .reusable = true}, SHIFT(1153), + [5123] = {.count = 1, .reusable = true}, SHIFT(2125), + [5125] = {.count = 1, .reusable = false}, SHIFT(2125), + [5127] = {.count = 1, .reusable = false}, SHIFT(2129), + [5129] = {.count = 1, .reusable = true}, SHIFT(2129), + [5131] = {.count = 1, .reusable = true}, SHIFT(1154), + [5133] = {.count = 1, .reusable = true}, SHIFT(2128), + [5135] = {.count = 1, .reusable = false}, SHIFT(1155), + [5137] = {.count = 1, .reusable = false}, SHIFT(2130), + [5139] = {.count = 1, .reusable = true}, SHIFT(2130), + [5141] = {.count = 1, .reusable = true}, SHIFT(1156), + [5143] = {.count = 1, .reusable = true}, SHIFT(2131), + [5145] = {.count = 1, .reusable = true}, SHIFT(2132), + [5147] = {.count = 1, .reusable = false}, SHIFT(2132), + [5149] = {.count = 1, .reusable = false}, SHIFT(2136), + [5151] = {.count = 1, .reusable = true}, SHIFT(2136), + [5153] = {.count = 1, .reusable = true}, SHIFT(1157), + [5155] = {.count = 1, .reusable = true}, SHIFT(2135), + [5157] = {.count = 1, .reusable = true}, SHIFT(1158), + [5159] = {.count = 1, .reusable = false}, SHIFT(2137), + [5161] = {.count = 1, .reusable = true}, SHIFT(2137), [5163] = {.count = 1, .reusable = true}, SHIFT(1159), - [5165] = {.count = 1, .reusable = true}, SHIFT(1194), - [5167] = {.count = 1, .reusable = true}, SHIFT(1193), - [5169] = {.count = 1, .reusable = true}, SHIFT(1163), - [5171] = {.count = 1, .reusable = false}, SHIFT(2136), - [5173] = {.count = 1, .reusable = false}, SHIFT(1165), - [5175] = {.count = 1, .reusable = true}, SHIFT(1168), - [5177] = {.count = 1, .reusable = true}, SHIFT(1169), - [5179] = {.count = 1, .reusable = false}, SHIFT(2141), - [5181] = {.count = 1, .reusable = true}, SHIFT(2141), - [5183] = {.count = 1, .reusable = true}, SHIFT(2140), - [5185] = {.count = 1, .reusable = true}, SHIFT(1173), - [5187] = {.count = 1, .reusable = false}, SHIFT(2146), - [5189] = {.count = 1, .reusable = true}, SHIFT(2146), - [5191] = {.count = 1, .reusable = true}, SHIFT(2145), - [5193] = {.count = 1, .reusable = true}, SHIFT(1174), - [5195] = {.count = 1, .reusable = false}, SHIFT(1175), - [5197] = {.count = 1, .reusable = false}, SHIFT(2147), - [5199] = {.count = 1, .reusable = true}, SHIFT(1176), - [5201] = {.count = 1, .reusable = false}, SHIFT(2149), - [5203] = {.count = 1, .reusable = true}, SHIFT(2149), - [5205] = {.count = 1, .reusable = true}, SHIFT(1178), - [5207] = {.count = 1, .reusable = true}, SHIFT(2148), - [5209] = {.count = 1, .reusable = true}, SHIFT(2150), - [5211] = {.count = 1, .reusable = false}, SHIFT(2153), - [5213] = {.count = 1, .reusable = true}, SHIFT(2153), - [5215] = {.count = 1, .reusable = true}, SHIFT(2152), - [5217] = {.count = 1, .reusable = true}, SHIFT(1179), - [5219] = {.count = 1, .reusable = true}, SHIFT(2154), - [5221] = {.count = 1, .reusable = false}, SHIFT(2154), - [5223] = {.count = 1, .reusable = false}, SHIFT(2158), - [5225] = {.count = 1, .reusable = true}, SHIFT(2158), - [5227] = {.count = 1, .reusable = true}, SHIFT(1180), - [5229] = {.count = 1, .reusable = true}, SHIFT(2157), - [5231] = {.count = 1, .reusable = false}, SHIFT(1181), - [5233] = {.count = 1, .reusable = false}, SHIFT(2159), - [5235] = {.count = 1, .reusable = true}, SHIFT(2159), - [5237] = {.count = 1, .reusable = true}, SHIFT(1182), - [5239] = {.count = 1, .reusable = true}, SHIFT(2160), - [5241] = {.count = 1, .reusable = true}, SHIFT(2161), - [5243] = {.count = 1, .reusable = false}, SHIFT(2161), - [5245] = {.count = 1, .reusable = false}, SHIFT(2165), - [5247] = {.count = 1, .reusable = true}, SHIFT(2165), - [5249] = {.count = 1, .reusable = true}, SHIFT(1183), - [5251] = {.count = 1, .reusable = true}, SHIFT(2164), - [5253] = {.count = 1, .reusable = true}, SHIFT(1184), - [5255] = {.count = 1, .reusable = false}, SHIFT(2166), - [5257] = {.count = 1, .reusable = true}, SHIFT(2166), - [5259] = {.count = 1, .reusable = true}, SHIFT(1185), - [5261] = {.count = 1, .reusable = true}, SHIFT(1186), - [5263] = {.count = 1, .reusable = false}, SHIFT(2167), - [5265] = {.count = 1, .reusable = true}, SHIFT(2167), - [5267] = {.count = 1, .reusable = true}, SHIFT(1187), - [5269] = {.count = 1, .reusable = false}, SHIFT(2168), - [5271] = {.count = 1, .reusable = true}, SHIFT(2168), - [5273] = {.count = 1, .reusable = true}, SHIFT(1188), - [5275] = {.count = 1, .reusable = true}, SHIFT(1189), - [5277] = {.count = 1, .reusable = true}, SHIFT(1190), + [5165] = {.count = 1, .reusable = true}, SHIFT(1160), + [5167] = {.count = 1, .reusable = false}, SHIFT(2138), + [5169] = {.count = 1, .reusable = true}, SHIFT(2138), + [5171] = {.count = 1, .reusable = true}, SHIFT(1161), + [5173] = {.count = 1, .reusable = false}, SHIFT(2139), + [5175] = {.count = 1, .reusable = true}, SHIFT(2139), + [5177] = {.count = 1, .reusable = true}, SHIFT(1162), + [5179] = {.count = 1, .reusable = true}, SHIFT(1163), + [5181] = {.count = 1, .reusable = true}, SHIFT(1164), + [5183] = {.count = 1, .reusable = true}, SHIFT(1165), + [5185] = {.count = 1, .reusable = true}, SHIFT(1200), + [5187] = {.count = 1, .reusable = true}, SHIFT(1199), + [5189] = {.count = 1, .reusable = true}, SHIFT(1169), + [5191] = {.count = 1, .reusable = false}, SHIFT(2147), + [5193] = {.count = 1, .reusable = false}, SHIFT(1171), + [5195] = {.count = 1, .reusable = true}, SHIFT(1174), + [5197] = {.count = 1, .reusable = true}, SHIFT(1175), + [5199] = {.count = 1, .reusable = false}, SHIFT(2152), + [5201] = {.count = 1, .reusable = true}, SHIFT(2152), + [5203] = {.count = 1, .reusable = true}, SHIFT(2151), + [5205] = {.count = 1, .reusable = true}, SHIFT(1179), + [5207] = {.count = 1, .reusable = false}, SHIFT(2157), + [5209] = {.count = 1, .reusable = true}, SHIFT(2157), + [5211] = {.count = 1, .reusable = true}, SHIFT(2156), + [5213] = {.count = 1, .reusable = true}, SHIFT(1180), + [5215] = {.count = 1, .reusable = false}, SHIFT(1181), + [5217] = {.count = 1, .reusable = false}, SHIFT(2158), + [5219] = {.count = 1, .reusable = true}, SHIFT(1182), + [5221] = {.count = 1, .reusable = false}, SHIFT(2160), + [5223] = {.count = 1, .reusable = true}, SHIFT(2160), + [5225] = {.count = 1, .reusable = true}, SHIFT(1184), + [5227] = {.count = 1, .reusable = true}, SHIFT(2159), + [5229] = {.count = 1, .reusable = true}, SHIFT(2161), + [5231] = {.count = 1, .reusable = false}, SHIFT(2164), + [5233] = {.count = 1, .reusable = true}, SHIFT(2164), + [5235] = {.count = 1, .reusable = true}, SHIFT(2163), + [5237] = {.count = 1, .reusable = true}, SHIFT(1185), + [5239] = {.count = 1, .reusable = true}, SHIFT(2165), + [5241] = {.count = 1, .reusable = false}, SHIFT(2165), + [5243] = {.count = 1, .reusable = false}, SHIFT(2169), + [5245] = {.count = 1, .reusable = true}, SHIFT(2169), + [5247] = {.count = 1, .reusable = true}, SHIFT(1186), + [5249] = {.count = 1, .reusable = true}, SHIFT(2168), + [5251] = {.count = 1, .reusable = false}, SHIFT(1187), + [5253] = {.count = 1, .reusable = false}, SHIFT(2170), + [5255] = {.count = 1, .reusable = true}, SHIFT(2170), + [5257] = {.count = 1, .reusable = true}, SHIFT(1188), + [5259] = {.count = 1, .reusable = true}, SHIFT(2171), + [5261] = {.count = 1, .reusable = true}, SHIFT(2172), + [5263] = {.count = 1, .reusable = false}, SHIFT(2172), + [5265] = {.count = 1, .reusable = false}, SHIFT(2176), + [5267] = {.count = 1, .reusable = true}, SHIFT(2176), + [5269] = {.count = 1, .reusable = true}, SHIFT(1189), + [5271] = {.count = 1, .reusable = true}, SHIFT(2175), + [5273] = {.count = 1, .reusable = true}, SHIFT(1190), + [5275] = {.count = 1, .reusable = false}, SHIFT(2177), + [5277] = {.count = 1, .reusable = true}, SHIFT(2177), [5279] = {.count = 1, .reusable = true}, SHIFT(1191), - [5281] = {.count = 1, .reusable = true}, SHIFT(1258), - [5283] = {.count = 1, .reusable = true}, SHIFT(1257), - [5285] = {.count = 1, .reusable = true}, SHIFT(1195), - [5287] = {.count = 1, .reusable = false}, SHIFT(2176), - [5289] = {.count = 1, .reusable = false}, SHIFT(1197), - [5291] = {.count = 1, .reusable = true}, SHIFT(1200), - [5293] = {.count = 1, .reusable = true}, SHIFT(1201), - [5295] = {.count = 1, .reusable = false}, SHIFT(2181), - [5297] = {.count = 1, .reusable = true}, SHIFT(2181), - [5299] = {.count = 1, .reusable = true}, SHIFT(2180), - [5301] = {.count = 1, .reusable = true}, SHIFT(1205), - [5303] = {.count = 1, .reusable = false}, SHIFT(2186), - [5305] = {.count = 1, .reusable = true}, SHIFT(2186), - [5307] = {.count = 1, .reusable = true}, SHIFT(2185), - [5309] = {.count = 1, .reusable = true}, SHIFT(1206), - [5311] = {.count = 1, .reusable = false}, SHIFT(1207), - [5313] = {.count = 1, .reusable = false}, SHIFT(2187), - [5315] = {.count = 1, .reusable = true}, SHIFT(1208), - [5317] = {.count = 1, .reusable = false}, SHIFT(2189), - [5319] = {.count = 1, .reusable = true}, SHIFT(2189), - [5321] = {.count = 1, .reusable = true}, SHIFT(1210), - [5323] = {.count = 1, .reusable = true}, SHIFT(2188), - [5325] = {.count = 1, .reusable = true}, SHIFT(2190), - [5327] = {.count = 1, .reusable = false}, SHIFT(2193), - [5329] = {.count = 1, .reusable = true}, SHIFT(2193), - [5331] = {.count = 1, .reusable = true}, SHIFT(2192), - [5333] = {.count = 1, .reusable = true}, SHIFT(1211), - [5335] = {.count = 1, .reusable = true}, SHIFT(2194), - [5337] = {.count = 1, .reusable = false}, SHIFT(2194), - [5339] = {.count = 1, .reusable = false}, SHIFT(2198), - [5341] = {.count = 1, .reusable = true}, SHIFT(2198), - [5343] = {.count = 1, .reusable = true}, SHIFT(1212), - [5345] = {.count = 1, .reusable = true}, SHIFT(2197), - [5347] = {.count = 1, .reusable = false}, SHIFT(1213), - [5349] = {.count = 1, .reusable = false}, SHIFT(2199), - [5351] = {.count = 1, .reusable = true}, SHIFT(2199), - [5353] = {.count = 1, .reusable = true}, SHIFT(1214), - [5355] = {.count = 1, .reusable = true}, SHIFT(2200), - [5357] = {.count = 1, .reusable = true}, SHIFT(2201), - [5359] = {.count = 1, .reusable = false}, SHIFT(2201), - [5361] = {.count = 1, .reusable = false}, SHIFT(2205), - [5363] = {.count = 1, .reusable = true}, SHIFT(2205), - [5365] = {.count = 1, .reusable = true}, SHIFT(1215), - [5367] = {.count = 1, .reusable = true}, SHIFT(2204), - [5369] = {.count = 1, .reusable = true}, SHIFT(1216), - [5371] = {.count = 1, .reusable = false}, SHIFT(2206), - [5373] = {.count = 1, .reusable = true}, SHIFT(2206), - [5375] = {.count = 1, .reusable = true}, SHIFT(1217), - [5377] = {.count = 1, .reusable = true}, SHIFT(1218), - [5379] = {.count = 1, .reusable = false}, SHIFT(2207), - [5381] = {.count = 1, .reusable = true}, SHIFT(2207), - [5383] = {.count = 1, .reusable = true}, SHIFT(1219), - [5385] = {.count = 1, .reusable = false}, SHIFT(2208), - [5387] = {.count = 1, .reusable = true}, SHIFT(2208), - [5389] = {.count = 1, .reusable = true}, SHIFT(1220), - [5391] = {.count = 1, .reusable = true}, SHIFT(1221), - [5393] = {.count = 1, .reusable = true}, SHIFT(1222), + [5281] = {.count = 1, .reusable = true}, SHIFT(1192), + [5283] = {.count = 1, .reusable = false}, SHIFT(2178), + [5285] = {.count = 1, .reusable = true}, SHIFT(2178), + [5287] = {.count = 1, .reusable = true}, SHIFT(1193), + [5289] = {.count = 1, .reusable = false}, SHIFT(2179), + [5291] = {.count = 1, .reusable = true}, SHIFT(2179), + [5293] = {.count = 1, .reusable = true}, SHIFT(1194), + [5295] = {.count = 1, .reusable = true}, SHIFT(1195), + [5297] = {.count = 1, .reusable = true}, SHIFT(1196), + [5299] = {.count = 1, .reusable = true}, SHIFT(1197), + [5301] = {.count = 1, .reusable = true}, SHIFT(1264), + [5303] = {.count = 1, .reusable = true}, SHIFT(1263), + [5305] = {.count = 1, .reusable = true}, SHIFT(1201), + [5307] = {.count = 1, .reusable = false}, SHIFT(2187), + [5309] = {.count = 1, .reusable = false}, SHIFT(1203), + [5311] = {.count = 1, .reusable = true}, SHIFT(1206), + [5313] = {.count = 1, .reusable = true}, SHIFT(1207), + [5315] = {.count = 1, .reusable = false}, SHIFT(2192), + [5317] = {.count = 1, .reusable = true}, SHIFT(2192), + [5319] = {.count = 1, .reusable = true}, SHIFT(2191), + [5321] = {.count = 1, .reusable = true}, SHIFT(1211), + [5323] = {.count = 1, .reusable = false}, SHIFT(2197), + [5325] = {.count = 1, .reusable = true}, SHIFT(2197), + [5327] = {.count = 1, .reusable = true}, SHIFT(2196), + [5329] = {.count = 1, .reusable = true}, SHIFT(1212), + [5331] = {.count = 1, .reusable = false}, SHIFT(1213), + [5333] = {.count = 1, .reusable = false}, SHIFT(2198), + [5335] = {.count = 1, .reusable = true}, SHIFT(1214), + [5337] = {.count = 1, .reusable = false}, SHIFT(2200), + [5339] = {.count = 1, .reusable = true}, SHIFT(2200), + [5341] = {.count = 1, .reusable = true}, SHIFT(1216), + [5343] = {.count = 1, .reusable = true}, SHIFT(2199), + [5345] = {.count = 1, .reusable = true}, SHIFT(2201), + [5347] = {.count = 1, .reusable = false}, SHIFT(2204), + [5349] = {.count = 1, .reusable = true}, SHIFT(2204), + [5351] = {.count = 1, .reusable = true}, SHIFT(2203), + [5353] = {.count = 1, .reusable = true}, SHIFT(1217), + [5355] = {.count = 1, .reusable = true}, SHIFT(2205), + [5357] = {.count = 1, .reusable = false}, SHIFT(2205), + [5359] = {.count = 1, .reusable = false}, SHIFT(2209), + [5361] = {.count = 1, .reusable = true}, SHIFT(2209), + [5363] = {.count = 1, .reusable = true}, SHIFT(1218), + [5365] = {.count = 1, .reusable = true}, SHIFT(2208), + [5367] = {.count = 1, .reusable = false}, SHIFT(1219), + [5369] = {.count = 1, .reusable = false}, SHIFT(2210), + [5371] = {.count = 1, .reusable = true}, SHIFT(2210), + [5373] = {.count = 1, .reusable = true}, SHIFT(1220), + [5375] = {.count = 1, .reusable = true}, SHIFT(2211), + [5377] = {.count = 1, .reusable = true}, SHIFT(2212), + [5379] = {.count = 1, .reusable = false}, SHIFT(2212), + [5381] = {.count = 1, .reusable = false}, SHIFT(2216), + [5383] = {.count = 1, .reusable = true}, SHIFT(2216), + [5385] = {.count = 1, .reusable = true}, SHIFT(1221), + [5387] = {.count = 1, .reusable = true}, SHIFT(2215), + [5389] = {.count = 1, .reusable = true}, SHIFT(1222), + [5391] = {.count = 1, .reusable = false}, SHIFT(2217), + [5393] = {.count = 1, .reusable = true}, SHIFT(2217), [5395] = {.count = 1, .reusable = true}, SHIFT(1223), - [5397] = {.count = 1, .reusable = true}, SHIFT(1290), - [5399] = {.count = 1, .reusable = true}, SHIFT(1289), - [5401] = {.count = 1, .reusable = true}, SHIFT(1227), - [5403] = {.count = 1, .reusable = false}, SHIFT(2216), - [5405] = {.count = 1, .reusable = false}, SHIFT(1229), - [5407] = {.count = 1, .reusable = true}, SHIFT(1232), - [5409] = {.count = 1, .reusable = true}, SHIFT(1233), - [5411] = {.count = 1, .reusable = false}, SHIFT(2221), - [5413] = {.count = 1, .reusable = true}, SHIFT(2221), - [5415] = {.count = 1, .reusable = true}, SHIFT(2220), - [5417] = {.count = 1, .reusable = true}, SHIFT(1237), - [5419] = {.count = 1, .reusable = false}, SHIFT(2226), - [5421] = {.count = 1, .reusable = true}, SHIFT(2226), - [5423] = {.count = 1, .reusable = true}, SHIFT(2225), - [5425] = {.count = 1, .reusable = true}, SHIFT(1238), - [5427] = {.count = 1, .reusable = false}, SHIFT(1239), - [5429] = {.count = 1, .reusable = false}, SHIFT(2227), - [5431] = {.count = 1, .reusable = true}, SHIFT(1240), - [5433] = {.count = 1, .reusable = false}, SHIFT(2229), - [5435] = {.count = 1, .reusable = true}, SHIFT(2229), - [5437] = {.count = 1, .reusable = true}, SHIFT(1242), - [5439] = {.count = 1, .reusable = true}, SHIFT(2228), - [5441] = {.count = 1, .reusable = true}, SHIFT(2230), - [5443] = {.count = 1, .reusable = false}, SHIFT(2233), - [5445] = {.count = 1, .reusable = true}, SHIFT(2233), - [5447] = {.count = 1, .reusable = true}, SHIFT(2232), - [5449] = {.count = 1, .reusable = true}, SHIFT(1243), - [5451] = {.count = 1, .reusable = true}, SHIFT(2234), - [5453] = {.count = 1, .reusable = false}, SHIFT(2234), - [5455] = {.count = 1, .reusable = false}, SHIFT(2238), - [5457] = {.count = 1, .reusable = true}, SHIFT(2238), - [5459] = {.count = 1, .reusable = true}, SHIFT(1244), - [5461] = {.count = 1, .reusable = true}, SHIFT(2237), - [5463] = {.count = 1, .reusable = false}, SHIFT(1245), - [5465] = {.count = 1, .reusable = false}, SHIFT(2239), - [5467] = {.count = 1, .reusable = true}, SHIFT(2239), - [5469] = {.count = 1, .reusable = true}, SHIFT(1246), - [5471] = {.count = 1, .reusable = true}, SHIFT(2240), - [5473] = {.count = 1, .reusable = true}, SHIFT(2241), - [5475] = {.count = 1, .reusable = false}, SHIFT(2241), - [5477] = {.count = 1, .reusable = false}, SHIFT(2245), - [5479] = {.count = 1, .reusable = true}, SHIFT(2245), - [5481] = {.count = 1, .reusable = true}, SHIFT(1247), - [5483] = {.count = 1, .reusable = true}, SHIFT(2244), - [5485] = {.count = 1, .reusable = true}, SHIFT(1248), - [5487] = {.count = 1, .reusable = false}, SHIFT(2246), - [5489] = {.count = 1, .reusable = true}, SHIFT(2246), - [5491] = {.count = 1, .reusable = true}, SHIFT(1249), - [5493] = {.count = 1, .reusable = true}, SHIFT(1250), - [5495] = {.count = 1, .reusable = false}, SHIFT(2247), - [5497] = {.count = 1, .reusable = true}, SHIFT(2247), - [5499] = {.count = 1, .reusable = true}, SHIFT(1251), - [5501] = {.count = 1, .reusable = false}, SHIFT(2248), - [5503] = {.count = 1, .reusable = true}, SHIFT(2248), - [5505] = {.count = 1, .reusable = true}, SHIFT(1252), - [5507] = {.count = 1, .reusable = true}, SHIFT(1253), - [5509] = {.count = 1, .reusable = true}, SHIFT(1254), + [5397] = {.count = 1, .reusable = true}, SHIFT(1224), + [5399] = {.count = 1, .reusable = false}, SHIFT(2218), + [5401] = {.count = 1, .reusable = true}, SHIFT(2218), + [5403] = {.count = 1, .reusable = true}, SHIFT(1225), + [5405] = {.count = 1, .reusable = false}, SHIFT(2219), + [5407] = {.count = 1, .reusable = true}, SHIFT(2219), + [5409] = {.count = 1, .reusable = true}, SHIFT(1226), + [5411] = {.count = 1, .reusable = true}, SHIFT(1227), + [5413] = {.count = 1, .reusable = true}, SHIFT(1228), + [5415] = {.count = 1, .reusable = true}, SHIFT(1229), + [5417] = {.count = 1, .reusable = true}, SHIFT(1296), + [5419] = {.count = 1, .reusable = true}, SHIFT(1295), + [5421] = {.count = 1, .reusable = true}, SHIFT(1233), + [5423] = {.count = 1, .reusable = false}, SHIFT(2227), + [5425] = {.count = 1, .reusable = false}, SHIFT(1235), + [5427] = {.count = 1, .reusable = true}, SHIFT(1238), + [5429] = {.count = 1, .reusable = true}, SHIFT(1239), + [5431] = {.count = 1, .reusable = false}, SHIFT(2232), + [5433] = {.count = 1, .reusable = true}, SHIFT(2232), + [5435] = {.count = 1, .reusable = true}, SHIFT(2231), + [5437] = {.count = 1, .reusable = true}, SHIFT(1243), + [5439] = {.count = 1, .reusable = false}, SHIFT(2237), + [5441] = {.count = 1, .reusable = true}, SHIFT(2237), + [5443] = {.count = 1, .reusable = true}, SHIFT(2236), + [5445] = {.count = 1, .reusable = true}, SHIFT(1244), + [5447] = {.count = 1, .reusable = false}, SHIFT(1245), + [5449] = {.count = 1, .reusable = false}, SHIFT(2238), + [5451] = {.count = 1, .reusable = true}, SHIFT(1246), + [5453] = {.count = 1, .reusable = false}, SHIFT(2240), + [5455] = {.count = 1, .reusable = true}, SHIFT(2240), + [5457] = {.count = 1, .reusable = true}, SHIFT(1248), + [5459] = {.count = 1, .reusable = true}, SHIFT(2239), + [5461] = {.count = 1, .reusable = true}, SHIFT(2241), + [5463] = {.count = 1, .reusable = false}, SHIFT(2244), + [5465] = {.count = 1, .reusable = true}, SHIFT(2244), + [5467] = {.count = 1, .reusable = true}, SHIFT(2243), + [5469] = {.count = 1, .reusable = true}, SHIFT(1249), + [5471] = {.count = 1, .reusable = true}, SHIFT(2245), + [5473] = {.count = 1, .reusable = false}, SHIFT(2245), + [5475] = {.count = 1, .reusable = false}, SHIFT(2249), + [5477] = {.count = 1, .reusable = true}, SHIFT(2249), + [5479] = {.count = 1, .reusable = true}, SHIFT(1250), + [5481] = {.count = 1, .reusable = true}, SHIFT(2248), + [5483] = {.count = 1, .reusable = false}, SHIFT(1251), + [5485] = {.count = 1, .reusable = false}, SHIFT(2250), + [5487] = {.count = 1, .reusable = true}, SHIFT(2250), + [5489] = {.count = 1, .reusable = true}, SHIFT(1252), + [5491] = {.count = 1, .reusable = true}, SHIFT(2251), + [5493] = {.count = 1, .reusable = true}, SHIFT(2252), + [5495] = {.count = 1, .reusable = false}, SHIFT(2252), + [5497] = {.count = 1, .reusable = false}, SHIFT(2256), + [5499] = {.count = 1, .reusable = true}, SHIFT(2256), + [5501] = {.count = 1, .reusable = true}, SHIFT(1253), + [5503] = {.count = 1, .reusable = true}, SHIFT(2255), + [5505] = {.count = 1, .reusable = true}, SHIFT(1254), + [5507] = {.count = 1, .reusable = false}, SHIFT(2257), + [5509] = {.count = 1, .reusable = true}, SHIFT(2257), [5511] = {.count = 1, .reusable = true}, SHIFT(1255), - [5513] = {.count = 1, .reusable = true}, SHIFT(1322), - [5515] = {.count = 1, .reusable = true}, SHIFT(1321), - [5517] = {.count = 1, .reusable = true}, SHIFT(1259), - [5519] = {.count = 1, .reusable = false}, SHIFT(2256), - [5521] = {.count = 1, .reusable = false}, SHIFT(1261), - [5523] = {.count = 1, .reusable = true}, SHIFT(1264), - [5525] = {.count = 1, .reusable = true}, SHIFT(1265), - [5527] = {.count = 1, .reusable = false}, SHIFT(2261), - [5529] = {.count = 1, .reusable = true}, SHIFT(2261), - [5531] = {.count = 1, .reusable = true}, SHIFT(2260), - [5533] = {.count = 1, .reusable = true}, SHIFT(1269), - [5535] = {.count = 1, .reusable = false}, SHIFT(2266), - [5537] = {.count = 1, .reusable = true}, SHIFT(2266), - [5539] = {.count = 1, .reusable = true}, SHIFT(2265), - [5541] = {.count = 1, .reusable = true}, SHIFT(1270), - [5543] = {.count = 1, .reusable = false}, SHIFT(1271), - [5545] = {.count = 1, .reusable = false}, SHIFT(2267), - [5547] = {.count = 1, .reusable = true}, SHIFT(1272), - [5549] = {.count = 1, .reusable = false}, SHIFT(2269), - [5551] = {.count = 1, .reusable = true}, SHIFT(2269), - [5553] = {.count = 1, .reusable = true}, SHIFT(1274), - [5555] = {.count = 1, .reusable = true}, SHIFT(2268), - [5557] = {.count = 1, .reusable = true}, SHIFT(2270), - [5559] = {.count = 1, .reusable = false}, SHIFT(2273), - [5561] = {.count = 1, .reusable = true}, SHIFT(2273), - [5563] = {.count = 1, .reusable = true}, SHIFT(2272), - [5565] = {.count = 1, .reusable = true}, SHIFT(1275), - [5567] = {.count = 1, .reusable = true}, SHIFT(2274), - [5569] = {.count = 1, .reusable = false}, SHIFT(2274), - [5571] = {.count = 1, .reusable = false}, SHIFT(2278), - [5573] = {.count = 1, .reusable = true}, SHIFT(2278), - [5575] = {.count = 1, .reusable = true}, SHIFT(1276), - [5577] = {.count = 1, .reusable = true}, SHIFT(2277), - [5579] = {.count = 1, .reusable = false}, SHIFT(1277), - [5581] = {.count = 1, .reusable = false}, SHIFT(2279), - [5583] = {.count = 1, .reusable = true}, SHIFT(2279), - [5585] = {.count = 1, .reusable = true}, SHIFT(1278), - [5587] = {.count = 1, .reusable = true}, SHIFT(2280), - [5589] = {.count = 1, .reusable = true}, SHIFT(2281), - [5591] = {.count = 1, .reusable = false}, SHIFT(2281), - [5593] = {.count = 1, .reusable = false}, SHIFT(2285), - [5595] = {.count = 1, .reusable = true}, SHIFT(2285), - [5597] = {.count = 1, .reusable = true}, SHIFT(1279), - [5599] = {.count = 1, .reusable = true}, SHIFT(2284), - [5601] = {.count = 1, .reusable = true}, SHIFT(1280), - [5603] = {.count = 1, .reusable = false}, SHIFT(2286), - [5605] = {.count = 1, .reusable = true}, SHIFT(2286), - [5607] = {.count = 1, .reusable = true}, SHIFT(1281), - [5609] = {.count = 1, .reusable = true}, SHIFT(1282), - [5611] = {.count = 1, .reusable = false}, SHIFT(2287), - [5613] = {.count = 1, .reusable = true}, SHIFT(2287), - [5615] = {.count = 1, .reusable = true}, SHIFT(1283), - [5617] = {.count = 1, .reusable = false}, SHIFT(2288), - [5619] = {.count = 1, .reusable = true}, SHIFT(2288), - [5621] = {.count = 1, .reusable = true}, SHIFT(1284), - [5623] = {.count = 1, .reusable = true}, SHIFT(1285), - [5625] = {.count = 1, .reusable = true}, SHIFT(1286), + [5513] = {.count = 1, .reusable = true}, SHIFT(1256), + [5515] = {.count = 1, .reusable = false}, SHIFT(2258), + [5517] = {.count = 1, .reusable = true}, SHIFT(2258), + [5519] = {.count = 1, .reusable = true}, SHIFT(1257), + [5521] = {.count = 1, .reusable = false}, SHIFT(2259), + [5523] = {.count = 1, .reusable = true}, SHIFT(2259), + [5525] = {.count = 1, .reusable = true}, SHIFT(1258), + [5527] = {.count = 1, .reusable = true}, SHIFT(1259), + [5529] = {.count = 1, .reusable = true}, SHIFT(1260), + [5531] = {.count = 1, .reusable = true}, SHIFT(1261), + [5533] = {.count = 1, .reusable = true}, SHIFT(1328), + [5535] = {.count = 1, .reusable = true}, SHIFT(1327), + [5537] = {.count = 1, .reusable = true}, SHIFT(1265), + [5539] = {.count = 1, .reusable = false}, SHIFT(2267), + [5541] = {.count = 1, .reusable = false}, SHIFT(1267), + [5543] = {.count = 1, .reusable = true}, SHIFT(1270), + [5545] = {.count = 1, .reusable = true}, SHIFT(1271), + [5547] = {.count = 1, .reusable = false}, SHIFT(2272), + [5549] = {.count = 1, .reusable = true}, SHIFT(2272), + [5551] = {.count = 1, .reusable = true}, SHIFT(2271), + [5553] = {.count = 1, .reusable = true}, SHIFT(1275), + [5555] = {.count = 1, .reusable = false}, SHIFT(2277), + [5557] = {.count = 1, .reusable = true}, SHIFT(2277), + [5559] = {.count = 1, .reusable = true}, SHIFT(2276), + [5561] = {.count = 1, .reusable = true}, SHIFT(1276), + [5563] = {.count = 1, .reusable = false}, SHIFT(1277), + [5565] = {.count = 1, .reusable = false}, SHIFT(2278), + [5567] = {.count = 1, .reusable = true}, SHIFT(1278), + [5569] = {.count = 1, .reusable = false}, SHIFT(2280), + [5571] = {.count = 1, .reusable = true}, SHIFT(2280), + [5573] = {.count = 1, .reusable = true}, SHIFT(1280), + [5575] = {.count = 1, .reusable = true}, SHIFT(2279), + [5577] = {.count = 1, .reusable = true}, SHIFT(2281), + [5579] = {.count = 1, .reusable = false}, SHIFT(2284), + [5581] = {.count = 1, .reusable = true}, SHIFT(2284), + [5583] = {.count = 1, .reusable = true}, SHIFT(2283), + [5585] = {.count = 1, .reusable = true}, SHIFT(1281), + [5587] = {.count = 1, .reusable = true}, SHIFT(2285), + [5589] = {.count = 1, .reusable = false}, SHIFT(2285), + [5591] = {.count = 1, .reusable = false}, SHIFT(2289), + [5593] = {.count = 1, .reusable = true}, SHIFT(2289), + [5595] = {.count = 1, .reusable = true}, SHIFT(1282), + [5597] = {.count = 1, .reusable = true}, SHIFT(2288), + [5599] = {.count = 1, .reusable = false}, SHIFT(1283), + [5601] = {.count = 1, .reusable = false}, SHIFT(2290), + [5603] = {.count = 1, .reusable = true}, SHIFT(2290), + [5605] = {.count = 1, .reusable = true}, SHIFT(1284), + [5607] = {.count = 1, .reusable = true}, SHIFT(2291), + [5609] = {.count = 1, .reusable = true}, SHIFT(2292), + [5611] = {.count = 1, .reusable = false}, SHIFT(2292), + [5613] = {.count = 1, .reusable = false}, SHIFT(2296), + [5615] = {.count = 1, .reusable = true}, SHIFT(2296), + [5617] = {.count = 1, .reusable = true}, SHIFT(1285), + [5619] = {.count = 1, .reusable = true}, SHIFT(2295), + [5621] = {.count = 1, .reusable = true}, SHIFT(1286), + [5623] = {.count = 1, .reusable = false}, SHIFT(2297), + [5625] = {.count = 1, .reusable = true}, SHIFT(2297), [5627] = {.count = 1, .reusable = true}, SHIFT(1287), - [5629] = {.count = 1, .reusable = true}, SHIFT(1344), - [5631] = {.count = 1, .reusable = true}, SHIFT(1343), - [5633] = {.count = 1, .reusable = true}, SHIFT(1291), - [5635] = {.count = 1, .reusable = false}, SHIFT(2296), - [5637] = {.count = 1, .reusable = false}, SHIFT(1293), - [5639] = {.count = 1, .reusable = true}, SHIFT(1296), - [5641] = {.count = 1, .reusable = true}, SHIFT(1297), - [5643] = {.count = 1, .reusable = false}, SHIFT(2301), - [5645] = {.count = 1, .reusable = true}, SHIFT(2301), - [5647] = {.count = 1, .reusable = true}, SHIFT(2300), - [5649] = {.count = 1, .reusable = true}, SHIFT(1301), - [5651] = {.count = 1, .reusable = false}, SHIFT(2306), - [5653] = {.count = 1, .reusable = true}, SHIFT(2306), - [5655] = {.count = 1, .reusable = true}, SHIFT(2305), - [5657] = {.count = 1, .reusable = true}, SHIFT(1302), - [5659] = {.count = 1, .reusable = false}, SHIFT(1303), - [5661] = {.count = 1, .reusable = false}, SHIFT(2307), - [5663] = {.count = 1, .reusable = true}, SHIFT(1304), - [5665] = {.count = 1, .reusable = false}, SHIFT(2309), - [5667] = {.count = 1, .reusable = true}, SHIFT(2309), - [5669] = {.count = 1, .reusable = true}, SHIFT(1306), - [5671] = {.count = 1, .reusable = true}, SHIFT(2308), - [5673] = {.count = 1, .reusable = true}, SHIFT(2310), - [5675] = {.count = 1, .reusable = false}, SHIFT(2313), - [5677] = {.count = 1, .reusable = true}, SHIFT(2313), - [5679] = {.count = 1, .reusable = true}, SHIFT(2312), - [5681] = {.count = 1, .reusable = true}, SHIFT(1307), - [5683] = {.count = 1, .reusable = true}, SHIFT(2314), - [5685] = {.count = 1, .reusable = false}, SHIFT(2314), - [5687] = {.count = 1, .reusable = false}, SHIFT(2318), - [5689] = {.count = 1, .reusable = true}, SHIFT(2318), - [5691] = {.count = 1, .reusable = true}, SHIFT(1308), - [5693] = {.count = 1, .reusable = true}, SHIFT(2317), - [5695] = {.count = 1, .reusable = false}, SHIFT(1309), - [5697] = {.count = 1, .reusable = false}, SHIFT(2319), - [5699] = {.count = 1, .reusable = true}, SHIFT(2319), - [5701] = {.count = 1, .reusable = true}, SHIFT(1310), - [5703] = {.count = 1, .reusable = true}, SHIFT(2320), - [5705] = {.count = 1, .reusable = true}, SHIFT(2321), - [5707] = {.count = 1, .reusable = false}, SHIFT(2321), - [5709] = {.count = 1, .reusable = false}, SHIFT(2325), - [5711] = {.count = 1, .reusable = true}, SHIFT(2325), - [5713] = {.count = 1, .reusable = true}, SHIFT(1311), - [5715] = {.count = 1, .reusable = true}, SHIFT(2324), - [5717] = {.count = 1, .reusable = true}, SHIFT(1312), - [5719] = {.count = 1, .reusable = false}, SHIFT(2326), - [5721] = {.count = 1, .reusable = true}, SHIFT(2326), - [5723] = {.count = 1, .reusable = true}, SHIFT(1313), - [5725] = {.count = 1, .reusable = true}, SHIFT(1314), - [5727] = {.count = 1, .reusable = false}, SHIFT(2327), - [5729] = {.count = 1, .reusable = true}, SHIFT(2327), - [5731] = {.count = 1, .reusable = true}, SHIFT(1315), - [5733] = {.count = 1, .reusable = false}, SHIFT(2328), - [5735] = {.count = 1, .reusable = true}, SHIFT(2328), - [5737] = {.count = 1, .reusable = true}, SHIFT(1316), - [5739] = {.count = 1, .reusable = true}, SHIFT(1317), - [5741] = {.count = 1, .reusable = true}, SHIFT(1318), + [5629] = {.count = 1, .reusable = true}, SHIFT(1288), + [5631] = {.count = 1, .reusable = false}, SHIFT(2298), + [5633] = {.count = 1, .reusable = true}, SHIFT(2298), + [5635] = {.count = 1, .reusable = true}, SHIFT(1289), + [5637] = {.count = 1, .reusable = false}, SHIFT(2299), + [5639] = {.count = 1, .reusable = true}, SHIFT(2299), + [5641] = {.count = 1, .reusable = true}, SHIFT(1290), + [5643] = {.count = 1, .reusable = true}, SHIFT(1291), + [5645] = {.count = 1, .reusable = true}, SHIFT(1292), + [5647] = {.count = 1, .reusable = true}, SHIFT(1293), + [5649] = {.count = 1, .reusable = true}, SHIFT(1350), + [5651] = {.count = 1, .reusable = true}, SHIFT(1349), + [5653] = {.count = 1, .reusable = true}, SHIFT(1297), + [5655] = {.count = 1, .reusable = false}, SHIFT(2307), + [5657] = {.count = 1, .reusable = false}, SHIFT(1299), + [5659] = {.count = 1, .reusable = true}, SHIFT(1302), + [5661] = {.count = 1, .reusable = true}, SHIFT(1303), + [5663] = {.count = 1, .reusable = false}, SHIFT(2312), + [5665] = {.count = 1, .reusable = true}, SHIFT(2312), + [5667] = {.count = 1, .reusable = true}, SHIFT(2311), + [5669] = {.count = 1, .reusable = true}, SHIFT(1307), + [5671] = {.count = 1, .reusable = false}, SHIFT(2317), + [5673] = {.count = 1, .reusable = true}, SHIFT(2317), + [5675] = {.count = 1, .reusable = true}, SHIFT(2316), + [5677] = {.count = 1, .reusable = true}, SHIFT(1308), + [5679] = {.count = 1, .reusable = false}, SHIFT(1309), + [5681] = {.count = 1, .reusable = false}, SHIFT(2318), + [5683] = {.count = 1, .reusable = true}, SHIFT(1310), + [5685] = {.count = 1, .reusable = false}, SHIFT(2320), + [5687] = {.count = 1, .reusable = true}, SHIFT(2320), + [5689] = {.count = 1, .reusable = true}, SHIFT(1312), + [5691] = {.count = 1, .reusable = true}, SHIFT(2319), + [5693] = {.count = 1, .reusable = true}, SHIFT(2321), + [5695] = {.count = 1, .reusable = false}, SHIFT(2324), + [5697] = {.count = 1, .reusable = true}, SHIFT(2324), + [5699] = {.count = 1, .reusable = true}, SHIFT(2323), + [5701] = {.count = 1, .reusable = true}, SHIFT(1313), + [5703] = {.count = 1, .reusable = true}, SHIFT(2325), + [5705] = {.count = 1, .reusable = false}, SHIFT(2325), + [5707] = {.count = 1, .reusable = false}, SHIFT(2329), + [5709] = {.count = 1, .reusable = true}, SHIFT(2329), + [5711] = {.count = 1, .reusable = true}, SHIFT(1314), + [5713] = {.count = 1, .reusable = true}, SHIFT(2328), + [5715] = {.count = 1, .reusable = false}, SHIFT(1315), + [5717] = {.count = 1, .reusable = false}, SHIFT(2330), + [5719] = {.count = 1, .reusable = true}, SHIFT(2330), + [5721] = {.count = 1, .reusable = true}, SHIFT(1316), + [5723] = {.count = 1, .reusable = true}, SHIFT(2331), + [5725] = {.count = 1, .reusable = true}, SHIFT(2332), + [5727] = {.count = 1, .reusable = false}, SHIFT(2332), + [5729] = {.count = 1, .reusable = false}, SHIFT(2336), + [5731] = {.count = 1, .reusable = true}, SHIFT(2336), + [5733] = {.count = 1, .reusable = true}, SHIFT(1317), + [5735] = {.count = 1, .reusable = true}, SHIFT(2335), + [5737] = {.count = 1, .reusable = true}, SHIFT(1318), + [5739] = {.count = 1, .reusable = false}, SHIFT(2337), + [5741] = {.count = 1, .reusable = true}, SHIFT(2337), [5743] = {.count = 1, .reusable = true}, SHIFT(1319), - [5745] = {.count = 1, .reusable = true}, SHIFT(1325), - [5747] = {.count = 1, .reusable = false}, SHIFT(2335), - [5749] = {.count = 1, .reusable = true}, SHIFT(2335), - [5751] = {.count = 1, .reusable = true}, SHIFT(2334), - [5753] = {.count = 1, .reusable = true}, SHIFT(1326), - [5755] = {.count = 1, .reusable = false}, SHIFT(2340), - [5757] = {.count = 1, .reusable = true}, SHIFT(2340), - [5759] = {.count = 1, .reusable = true}, SHIFT(2339), - [5761] = {.count = 1, .reusable = true}, SHIFT(1327), - [5763] = {.count = 1, .reusable = true}, SHIFT(1328), - [5765] = {.count = 1, .reusable = false}, SHIFT(2342), - [5767] = {.count = 1, .reusable = true}, SHIFT(2342), - [5769] = {.count = 1, .reusable = true}, SHIFT(1330), - [5771] = {.count = 1, .reusable = true}, SHIFT(2341), - [5773] = {.count = 1, .reusable = true}, SHIFT(2343), - [5775] = {.count = 1, .reusable = false}, SHIFT(2346), - [5777] = {.count = 1, .reusable = true}, SHIFT(2346), - [5779] = {.count = 1, .reusable = true}, SHIFT(2345), - [5781] = {.count = 1, .reusable = true}, SHIFT(1331), - [5783] = {.count = 1, .reusable = true}, SHIFT(2347), - [5785] = {.count = 1, .reusable = false}, SHIFT(2347), - [5787] = {.count = 1, .reusable = false}, SHIFT(2351), - [5789] = {.count = 1, .reusable = true}, SHIFT(2351), - [5791] = {.count = 1, .reusable = true}, SHIFT(1332), - [5793] = {.count = 1, .reusable = true}, SHIFT(2350), - [5795] = {.count = 1, .reusable = false}, SHIFT(2352), - [5797] = {.count = 1, .reusable = true}, SHIFT(2352), - [5799] = {.count = 1, .reusable = true}, SHIFT(1333), - [5801] = {.count = 1, .reusable = true}, SHIFT(2353), - [5803] = {.count = 1, .reusable = true}, SHIFT(2354), - [5805] = {.count = 1, .reusable = false}, SHIFT(2354), - [5807] = {.count = 1, .reusable = false}, SHIFT(2358), - [5809] = {.count = 1, .reusable = true}, SHIFT(2358), - [5811] = {.count = 1, .reusable = true}, SHIFT(1334), - [5813] = {.count = 1, .reusable = true}, SHIFT(2357), - [5815] = {.count = 1, .reusable = true}, SHIFT(1335), - [5817] = {.count = 1, .reusable = false}, SHIFT(2359), - [5819] = {.count = 1, .reusable = true}, SHIFT(2359), - [5821] = {.count = 1, .reusable = true}, SHIFT(1336), - [5823] = {.count = 1, .reusable = true}, SHIFT(1337), - [5825] = {.count = 1, .reusable = false}, SHIFT(2360), - [5827] = {.count = 1, .reusable = true}, SHIFT(2360), - [5829] = {.count = 1, .reusable = true}, SHIFT(1338), - [5831] = {.count = 1, .reusable = false}, SHIFT(2361), - [5833] = {.count = 1, .reusable = true}, SHIFT(2361), - [5835] = {.count = 1, .reusable = true}, SHIFT(1339), - [5837] = {.count = 1, .reusable = true}, SHIFT(1340), - [5839] = {.count = 1, .reusable = true}, SHIFT(1341), + [5745] = {.count = 1, .reusable = true}, SHIFT(1320), + [5747] = {.count = 1, .reusable = false}, SHIFT(2338), + [5749] = {.count = 1, .reusable = true}, SHIFT(2338), + [5751] = {.count = 1, .reusable = true}, SHIFT(1321), + [5753] = {.count = 1, .reusable = false}, SHIFT(2339), + [5755] = {.count = 1, .reusable = true}, SHIFT(2339), + [5757] = {.count = 1, .reusable = true}, SHIFT(1322), + [5759] = {.count = 1, .reusable = true}, SHIFT(1323), + [5761] = {.count = 1, .reusable = true}, SHIFT(1324), + [5763] = {.count = 1, .reusable = true}, SHIFT(1325), + [5765] = {.count = 1, .reusable = true}, SHIFT(1331), + [5767] = {.count = 1, .reusable = false}, SHIFT(2346), + [5769] = {.count = 1, .reusable = true}, SHIFT(2346), + [5771] = {.count = 1, .reusable = true}, SHIFT(2345), + [5773] = {.count = 1, .reusable = true}, SHIFT(1332), + [5775] = {.count = 1, .reusable = false}, SHIFT(2351), + [5777] = {.count = 1, .reusable = true}, SHIFT(2351), + [5779] = {.count = 1, .reusable = true}, SHIFT(2350), + [5781] = {.count = 1, .reusable = true}, SHIFT(1333), + [5783] = {.count = 1, .reusable = true}, SHIFT(1334), + [5785] = {.count = 1, .reusable = false}, SHIFT(2353), + [5787] = {.count = 1, .reusable = true}, SHIFT(2353), + [5789] = {.count = 1, .reusable = true}, SHIFT(1336), + [5791] = {.count = 1, .reusable = true}, SHIFT(2352), + [5793] = {.count = 1, .reusable = true}, SHIFT(2354), + [5795] = {.count = 1, .reusable = false}, SHIFT(2357), + [5797] = {.count = 1, .reusable = true}, SHIFT(2357), + [5799] = {.count = 1, .reusable = true}, SHIFT(2356), + [5801] = {.count = 1, .reusable = true}, SHIFT(1337), + [5803] = {.count = 1, .reusable = true}, SHIFT(2358), + [5805] = {.count = 1, .reusable = false}, SHIFT(2358), + [5807] = {.count = 1, .reusable = false}, SHIFT(2362), + [5809] = {.count = 1, .reusable = true}, SHIFT(2362), + [5811] = {.count = 1, .reusable = true}, SHIFT(1338), + [5813] = {.count = 1, .reusable = true}, SHIFT(2361), + [5815] = {.count = 1, .reusable = false}, SHIFT(2363), + [5817] = {.count = 1, .reusable = true}, SHIFT(2363), + [5819] = {.count = 1, .reusable = true}, SHIFT(1339), + [5821] = {.count = 1, .reusable = true}, SHIFT(2364), + [5823] = {.count = 1, .reusable = true}, SHIFT(2365), + [5825] = {.count = 1, .reusable = false}, SHIFT(2365), + [5827] = {.count = 1, .reusable = false}, SHIFT(2369), + [5829] = {.count = 1, .reusable = true}, SHIFT(2369), + [5831] = {.count = 1, .reusable = true}, SHIFT(1340), + [5833] = {.count = 1, .reusable = true}, SHIFT(2368), + [5835] = {.count = 1, .reusable = true}, SHIFT(1341), + [5837] = {.count = 1, .reusable = false}, SHIFT(2370), + [5839] = {.count = 1, .reusable = true}, SHIFT(2370), [5841] = {.count = 1, .reusable = true}, SHIFT(1342), - [5843] = {.count = 1, .reusable = true}, SHIFT(1345), - [5845] = {.count = 1, .reusable = false}, SHIFT(2368), - [5847] = {.count = 1, .reusable = true}, SHIFT(2368), - [5849] = {.count = 1, .reusable = true}, SHIFT(2367), - [5851] = {.count = 1, .reusable = true}, SHIFT(1346), - [5853] = {.count = 1, .reusable = false}, SHIFT(2373), - [5855] = {.count = 1, .reusable = true}, SHIFT(2373), - [5857] = {.count = 1, .reusable = true}, SHIFT(2372), + [5843] = {.count = 1, .reusable = true}, SHIFT(1343), + [5845] = {.count = 1, .reusable = false}, SHIFT(2371), + [5847] = {.count = 1, .reusable = true}, SHIFT(2371), + [5849] = {.count = 1, .reusable = true}, SHIFT(1344), + [5851] = {.count = 1, .reusable = false}, SHIFT(2372), + [5853] = {.count = 1, .reusable = true}, SHIFT(2372), + [5855] = {.count = 1, .reusable = true}, SHIFT(1345), + [5857] = {.count = 1, .reusable = true}, SHIFT(1346), [5859] = {.count = 1, .reusable = true}, SHIFT(1347), [5861] = {.count = 1, .reusable = true}, SHIFT(1348), - [5863] = {.count = 1, .reusable = false}, SHIFT(2375), - [5865] = {.count = 1, .reusable = true}, SHIFT(2375), - [5867] = {.count = 1, .reusable = true}, SHIFT(1350), - [5869] = {.count = 1, .reusable = true}, SHIFT(2374), - [5871] = {.count = 1, .reusable = true}, SHIFT(2376), - [5873] = {.count = 1, .reusable = false}, SHIFT(2379), - [5875] = {.count = 1, .reusable = true}, SHIFT(2379), - [5877] = {.count = 1, .reusable = true}, SHIFT(2378), - [5879] = {.count = 1, .reusable = true}, SHIFT(1351), - [5881] = {.count = 1, .reusable = true}, SHIFT(2380), - [5883] = {.count = 1, .reusable = false}, SHIFT(2380), - [5885] = {.count = 1, .reusable = false}, SHIFT(2384), - [5887] = {.count = 1, .reusable = true}, SHIFT(2384), - [5889] = {.count = 1, .reusable = true}, SHIFT(1352), - [5891] = {.count = 1, .reusable = true}, SHIFT(2383), - [5893] = {.count = 1, .reusable = false}, SHIFT(2385), - [5895] = {.count = 1, .reusable = true}, SHIFT(2385), - [5897] = {.count = 1, .reusable = true}, SHIFT(1353), - [5899] = {.count = 1, .reusable = true}, SHIFT(2386), - [5901] = {.count = 1, .reusable = true}, SHIFT(2387), - [5903] = {.count = 1, .reusable = false}, SHIFT(2387), - [5905] = {.count = 1, .reusable = false}, SHIFT(2391), - [5907] = {.count = 1, .reusable = true}, SHIFT(2391), - [5909] = {.count = 1, .reusable = true}, SHIFT(1354), - [5911] = {.count = 1, .reusable = true}, SHIFT(2390), - [5913] = {.count = 1, .reusable = true}, SHIFT(1355), - [5915] = {.count = 1, .reusable = false}, SHIFT(2392), - [5917] = {.count = 1, .reusable = true}, SHIFT(2392), - [5919] = {.count = 1, .reusable = true}, SHIFT(1356), - [5921] = {.count = 1, .reusable = true}, SHIFT(1357), - [5923] = {.count = 1, .reusable = false}, SHIFT(2393), - [5925] = {.count = 1, .reusable = true}, SHIFT(2393), - [5927] = {.count = 1, .reusable = true}, SHIFT(1358), - [5929] = {.count = 1, .reusable = false}, SHIFT(2394), - [5931] = {.count = 1, .reusable = true}, SHIFT(2394), - [5933] = {.count = 1, .reusable = true}, SHIFT(1359), - [5935] = {.count = 1, .reusable = true}, SHIFT(1360), - [5937] = {.count = 1, .reusable = true}, SHIFT(1361), + [5863] = {.count = 1, .reusable = true}, SHIFT(1351), + [5865] = {.count = 1, .reusable = false}, SHIFT(2379), + [5867] = {.count = 1, .reusable = true}, SHIFT(2379), + [5869] = {.count = 1, .reusable = true}, SHIFT(2378), + [5871] = {.count = 1, .reusable = true}, SHIFT(1352), + [5873] = {.count = 1, .reusable = false}, SHIFT(2384), + [5875] = {.count = 1, .reusable = true}, SHIFT(2384), + [5877] = {.count = 1, .reusable = true}, SHIFT(2383), + [5879] = {.count = 1, .reusable = true}, SHIFT(1353), + [5881] = {.count = 1, .reusable = true}, SHIFT(1354), + [5883] = {.count = 1, .reusable = false}, SHIFT(2386), + [5885] = {.count = 1, .reusable = true}, SHIFT(2386), + [5887] = {.count = 1, .reusable = true}, SHIFT(1356), + [5889] = {.count = 1, .reusable = true}, SHIFT(2385), + [5891] = {.count = 1, .reusable = true}, SHIFT(2387), + [5893] = {.count = 1, .reusable = false}, SHIFT(2390), + [5895] = {.count = 1, .reusable = true}, SHIFT(2390), + [5897] = {.count = 1, .reusable = true}, SHIFT(2389), + [5899] = {.count = 1, .reusable = true}, SHIFT(1357), + [5901] = {.count = 1, .reusable = true}, SHIFT(2391), + [5903] = {.count = 1, .reusable = false}, SHIFT(2391), + [5905] = {.count = 1, .reusable = false}, SHIFT(2395), + [5907] = {.count = 1, .reusable = true}, SHIFT(2395), + [5909] = {.count = 1, .reusable = true}, SHIFT(1358), + [5911] = {.count = 1, .reusable = true}, SHIFT(2394), + [5913] = {.count = 1, .reusable = false}, SHIFT(2396), + [5915] = {.count = 1, .reusable = true}, SHIFT(2396), + [5917] = {.count = 1, .reusable = true}, SHIFT(1359), + [5919] = {.count = 1, .reusable = true}, SHIFT(2397), + [5921] = {.count = 1, .reusable = true}, SHIFT(2398), + [5923] = {.count = 1, .reusable = false}, SHIFT(2398), + [5925] = {.count = 1, .reusable = false}, SHIFT(2402), + [5927] = {.count = 1, .reusable = true}, SHIFT(2402), + [5929] = {.count = 1, .reusable = true}, SHIFT(1360), + [5931] = {.count = 1, .reusable = true}, SHIFT(2401), + [5933] = {.count = 1, .reusable = true}, SHIFT(1361), + [5935] = {.count = 1, .reusable = false}, SHIFT(2403), + [5937] = {.count = 1, .reusable = true}, SHIFT(2403), [5939] = {.count = 1, .reusable = true}, SHIFT(1362), - [5941] = {.count = 1, .reusable = false}, SHIFT(1371), - [5943] = {.count = 1, .reusable = true}, SHIFT(2408), - [5945] = {.count = 1, .reusable = true}, SHIFT(2409), - [5947] = {.count = 1, .reusable = true}, SHIFT(1372), - [5949] = {.count = 1, .reusable = true}, SHIFT(1371), - [5951] = {.count = 1, .reusable = true}, SHIFT(1373), - [5953] = {.count = 1, .reusable = true}, SHIFT(1378), - [5955] = {.count = 1, .reusable = true}, SHIFT(1379), - [5957] = {.count = 1, .reusable = false}, SHIFT(1379), - [5959] = {.count = 1, .reusable = false}, SHIFT(1391), - [5961] = {.count = 1, .reusable = true}, SHIFT(2415), - [5963] = {.count = 1, .reusable = true}, SHIFT(1392), - [5965] = {.count = 1, .reusable = true}, SHIFT(1391), - [5967] = {.count = 1, .reusable = true}, SHIFT(1393), - [5969] = {.count = 1, .reusable = true}, SHIFT(1396), - [5971] = {.count = 1, .reusable = true}, SHIFT(1397), - [5973] = {.count = 1, .reusable = true}, SHIFT(1400), - [5975] = {.count = 1, .reusable = false}, SHIFT(1400), - [5977] = {.count = 1, .reusable = false}, SHIFT(1404), - [5979] = {.count = 1, .reusable = true}, SHIFT(1404), - [5981] = {.count = 1, .reusable = false}, SHIFT(2618), - [5983] = {.count = 1, .reusable = true}, SHIFT(1410), - [5985] = {.count = 1, .reusable = true}, SHIFT(1418), - [5987] = {.count = 1, .reusable = true}, SHIFT(1423), - [5989] = {.count = 1, .reusable = false}, SHIFT(1423), - [5991] = {.count = 1, .reusable = true}, SHIFT(1424), - [5993] = {.count = 1, .reusable = false}, SHIFT(1424), - [5995] = {.count = 1, .reusable = true}, SHIFT(1441), - [5997] = {.count = 1, .reusable = false}, SHIFT(1441), - [5999] = {.count = 1, .reusable = true}, SHIFT(1443), - [6001] = {.count = 1, .reusable = false}, SHIFT(1443), - [6003] = {.count = 1, .reusable = true}, SHIFT(1445), - [6005] = {.count = 1, .reusable = true}, SHIFT(1446), - [6007] = {.count = 1, .reusable = false}, SHIFT(1446), - [6009] = {.count = 1, .reusable = true}, SHIFT(1453), - [6011] = {.count = 1, .reusable = true}, SHIFT(1457), - [6013] = {.count = 1, .reusable = true}, SHIFT(1459), - [6015] = {.count = 1, .reusable = true}, SHIFT(1469), - [6017] = {.count = 1, .reusable = true}, SHIFT(1470), - [6019] = {.count = 1, .reusable = true}, SHIFT(2624), - [6021] = {.count = 1, .reusable = false}, SHIFT(2624), - [6023] = {.count = 1, .reusable = true}, SHIFT(2434), - [6025] = {.count = 1, .reusable = true}, SHIFT(2626), - [6027] = {.count = 1, .reusable = false}, SHIFT(2626), - [6029] = {.count = 1, .reusable = true}, SHIFT(2627), - [6031] = {.count = 1, .reusable = false}, SHIFT(2627), - [6033] = {.count = 1, .reusable = false}, SHIFT(1477), - [6035] = {.count = 1, .reusable = true}, SHIFT(2445), - [6037] = {.count = 1, .reusable = true}, SHIFT(2446), + [5941] = {.count = 1, .reusable = true}, SHIFT(1363), + [5943] = {.count = 1, .reusable = false}, SHIFT(2404), + [5945] = {.count = 1, .reusable = true}, SHIFT(2404), + [5947] = {.count = 1, .reusable = true}, SHIFT(1364), + [5949] = {.count = 1, .reusable = false}, SHIFT(2405), + [5951] = {.count = 1, .reusable = true}, SHIFT(2405), + [5953] = {.count = 1, .reusable = true}, SHIFT(1365), + [5955] = {.count = 1, .reusable = true}, SHIFT(1366), + [5957] = {.count = 1, .reusable = true}, SHIFT(1367), + [5959] = {.count = 1, .reusable = true}, SHIFT(1368), + [5961] = {.count = 1, .reusable = false}, SHIFT(1378), + [5963] = {.count = 1, .reusable = true}, SHIFT(2419), + [5965] = {.count = 1, .reusable = true}, SHIFT(2420), + [5967] = {.count = 1, .reusable = true}, SHIFT(1379), + [5969] = {.count = 1, .reusable = true}, SHIFT(1378), + [5971] = {.count = 1, .reusable = true}, SHIFT(1380), + [5973] = {.count = 1, .reusable = true}, SHIFT(1385), + [5975] = {.count = 1, .reusable = true}, SHIFT(1386), + [5977] = {.count = 1, .reusable = false}, SHIFT(1386), + [5979] = {.count = 1, .reusable = false}, SHIFT(1398), + [5981] = {.count = 1, .reusable = true}, SHIFT(2426), + [5983] = {.count = 1, .reusable = true}, SHIFT(1399), + [5985] = {.count = 1, .reusable = true}, SHIFT(1398), + [5987] = {.count = 1, .reusable = true}, SHIFT(1400), + [5989] = {.count = 1, .reusable = true}, SHIFT(1403), + [5991] = {.count = 1, .reusable = true}, SHIFT(1404), + [5993] = {.count = 1, .reusable = true}, SHIFT(1407), + [5995] = {.count = 1, .reusable = false}, SHIFT(1407), + [5997] = {.count = 1, .reusable = false}, SHIFT(1411), + [5999] = {.count = 1, .reusable = true}, SHIFT(1411), + [6001] = {.count = 1, .reusable = false}, SHIFT(2632), + [6003] = {.count = 1, .reusable = true}, SHIFT(1417), + [6005] = {.count = 1, .reusable = true}, SHIFT(1425), + [6007] = {.count = 1, .reusable = true}, SHIFT(1430), + [6009] = {.count = 1, .reusable = false}, SHIFT(1430), + [6011] = {.count = 1, .reusable = true}, SHIFT(1431), + [6013] = {.count = 1, .reusable = false}, SHIFT(1431), + [6015] = {.count = 1, .reusable = true}, SHIFT(1448), + [6017] = {.count = 1, .reusable = false}, SHIFT(1448), + [6019] = {.count = 1, .reusable = true}, SHIFT(1450), + [6021] = {.count = 1, .reusable = false}, SHIFT(1450), + [6023] = {.count = 1, .reusable = true}, SHIFT(1452), + [6025] = {.count = 1, .reusable = true}, SHIFT(1453), + [6027] = {.count = 1, .reusable = false}, SHIFT(1453), + [6029] = {.count = 1, .reusable = true}, SHIFT(1460), + [6031] = {.count = 1, .reusable = true}, SHIFT(1464), + [6033] = {.count = 1, .reusable = true}, SHIFT(1466), + [6035] = {.count = 1, .reusable = true}, SHIFT(1476), + [6037] = {.count = 1, .reusable = true}, SHIFT(1477), [6039] = {.count = 1, .reusable = true}, SHIFT(1478), - [6041] = {.count = 1, .reusable = true}, SHIFT(1477), - [6043] = {.count = 1, .reusable = true}, SHIFT(1479), - [6045] = {.count = 1, .reusable = true}, SHIFT(1480), - [6047] = {.count = 1, .reusable = false}, SHIFT(1480), - [6049] = {.count = 1, .reusable = false}, SHIFT(1487), - [6051] = {.count = 1, .reusable = true}, SHIFT(2448), - [6053] = {.count = 1, .reusable = true}, SHIFT(1488), - [6055] = {.count = 1, .reusable = true}, SHIFT(1487), - [6057] = {.count = 1, .reusable = true}, SHIFT(1489), - [6059] = {.count = 1, .reusable = true}, SHIFT(1498), - [6061] = {.count = 1, .reusable = false}, SHIFT(1522), - [6063] = {.count = 1, .reusable = true}, SHIFT(1522), - [6065] = {.count = 1, .reusable = true}, SHIFT(2456), - [6067] = {.count = 1, .reusable = true}, SHIFT(2457), - [6069] = {.count = 1, .reusable = true}, SHIFT(1523), - [6071] = {.count = 1, .reusable = true}, SHIFT(1524), - [6073] = {.count = 1, .reusable = true}, SHIFT(2437), - [6075] = {.count = 1, .reusable = false}, SHIFT(2437), - [6077] = {.count = 1, .reusable = false}, SHIFT(1531), - [6079] = {.count = 1, .reusable = true}, SHIFT(1531), - [6081] = {.count = 1, .reusable = true}, SHIFT(2458), - [6083] = {.count = 1, .reusable = true}, SHIFT(1532), - [6085] = {.count = 1, .reusable = true}, SHIFT(1533), - [6087] = {.count = 1, .reusable = true}, SHIFT(1541), - [6089] = {.count = 1, .reusable = false}, SHIFT(1565), - [6091] = {.count = 1, .reusable = true}, SHIFT(1565), - [6093] = {.count = 1, .reusable = true}, SHIFT(2465), - [6095] = {.count = 1, .reusable = true}, SHIFT(2466), - [6097] = {.count = 1, .reusable = true}, SHIFT(1566), - [6099] = {.count = 1, .reusable = true}, SHIFT(1567), - [6101] = {.count = 1, .reusable = false}, SHIFT(1574), - [6103] = {.count = 1, .reusable = true}, SHIFT(1574), - [6105] = {.count = 1, .reusable = true}, SHIFT(2467), - [6107] = {.count = 1, .reusable = true}, SHIFT(1575), - [6109] = {.count = 1, .reusable = true}, SHIFT(1576), - [6111] = {.count = 1, .reusable = true}, SHIFT(1584), - [6113] = {.count = 1, .reusable = false}, SHIFT(1608), - [6115] = {.count = 1, .reusable = true}, SHIFT(1608), - [6117] = {.count = 1, .reusable = true}, SHIFT(2474), - [6119] = {.count = 1, .reusable = true}, SHIFT(2475), - [6121] = {.count = 1, .reusable = true}, SHIFT(1609), - [6123] = {.count = 1, .reusable = true}, SHIFT(1610), - [6125] = {.count = 1, .reusable = false}, SHIFT(1617), - [6127] = {.count = 1, .reusable = true}, SHIFT(1617), - [6129] = {.count = 1, .reusable = true}, SHIFT(2476), - [6131] = {.count = 1, .reusable = true}, SHIFT(1618), - [6133] = {.count = 1, .reusable = true}, SHIFT(1619), - [6135] = {.count = 1, .reusable = true}, SHIFT(1627), - [6137] = {.count = 1, .reusable = false}, SHIFT(1651), - [6139] = {.count = 1, .reusable = true}, SHIFT(2483), - [6141] = {.count = 1, .reusable = true}, SHIFT(2484), - [6143] = {.count = 1, .reusable = true}, SHIFT(1652), - [6145] = {.count = 1, .reusable = true}, SHIFT(1651), - [6147] = {.count = 1, .reusable = true}, SHIFT(1653), - [6149] = {.count = 1, .reusable = false}, SHIFT(1660), - [6151] = {.count = 1, .reusable = true}, SHIFT(2485), - [6153] = {.count = 1, .reusable = true}, SHIFT(1661), - [6155] = {.count = 1, .reusable = true}, SHIFT(1660), - [6157] = {.count = 1, .reusable = true}, SHIFT(1662), - [6159] = {.count = 1, .reusable = true}, SHIFT(1670), - [6161] = {.count = 1, .reusable = false}, SHIFT(1694), - [6163] = {.count = 1, .reusable = true}, SHIFT(1694), - [6165] = {.count = 1, .reusable = true}, SHIFT(2490), - [6167] = {.count = 1, .reusable = true}, SHIFT(2491), - [6169] = {.count = 1, .reusable = true}, SHIFT(1695), - [6171] = {.count = 1, .reusable = false}, SHIFT(1702), - [6173] = {.count = 1, .reusable = true}, SHIFT(1702), - [6175] = {.count = 1, .reusable = true}, SHIFT(2492), - [6177] = {.count = 1, .reusable = true}, SHIFT(1703), - [6179] = {.count = 1, .reusable = true}, SHIFT(1704), - [6181] = {.count = 1, .reusable = true}, SHIFT(1711), - [6183] = {.count = 1, .reusable = false}, SHIFT(1734), - [6185] = {.count = 1, .reusable = true}, SHIFT(2497), - [6187] = {.count = 1, .reusable = true}, SHIFT(2498), - [6189] = {.count = 1, .reusable = true}, SHIFT(1735), - [6191] = {.count = 1, .reusable = true}, SHIFT(1734), - [6193] = {.count = 1, .reusable = false}, SHIFT(1742), - [6195] = {.count = 1, .reusable = true}, SHIFT(2499), - [6197] = {.count = 1, .reusable = true}, SHIFT(1743), - [6199] = {.count = 1, .reusable = true}, SHIFT(1742), - [6201] = {.count = 1, .reusable = true}, SHIFT(1744), - [6203] = {.count = 1, .reusable = true}, SHIFT(1751), - [6205] = {.count = 1, .reusable = false}, SHIFT(1774), - [6207] = {.count = 1, .reusable = true}, SHIFT(2504), - [6209] = {.count = 1, .reusable = true}, SHIFT(2505), - [6211] = {.count = 1, .reusable = true}, SHIFT(1775), - [6213] = {.count = 1, .reusable = true}, SHIFT(1774), - [6215] = {.count = 1, .reusable = false}, SHIFT(1782), - [6217] = {.count = 1, .reusable = true}, SHIFT(2506), - [6219] = {.count = 1, .reusable = true}, SHIFT(1783), - [6221] = {.count = 1, .reusable = true}, SHIFT(1782), - [6223] = {.count = 1, .reusable = true}, SHIFT(1784), - [6225] = {.count = 1, .reusable = true}, SHIFT(1791), - [6227] = {.count = 1, .reusable = false}, SHIFT(1814), - [6229] = {.count = 1, .reusable = true}, SHIFT(2511), - [6231] = {.count = 1, .reusable = true}, SHIFT(2512), - [6233] = {.count = 1, .reusable = true}, SHIFT(1815), - [6235] = {.count = 1, .reusable = true}, SHIFT(1814), - [6237] = {.count = 1, .reusable = false}, SHIFT(1822), - [6239] = {.count = 1, .reusable = true}, SHIFT(2513), - [6241] = {.count = 1, .reusable = true}, SHIFT(1823), - [6243] = {.count = 1, .reusable = true}, SHIFT(1822), - [6245] = {.count = 1, .reusable = true}, SHIFT(1824), - [6247] = {.count = 1, .reusable = true}, SHIFT(1831), - [6249] = {.count = 1, .reusable = false}, SHIFT(1854), - [6251] = {.count = 1, .reusable = true}, SHIFT(1854), - [6253] = {.count = 1, .reusable = true}, SHIFT(2518), - [6255] = {.count = 1, .reusable = true}, SHIFT(2519), - [6257] = {.count = 1, .reusable = true}, SHIFT(1855), - [6259] = {.count = 1, .reusable = false}, SHIFT(1862), - [6261] = {.count = 1, .reusable = true}, SHIFT(1862), - [6263] = {.count = 1, .reusable = true}, SHIFT(2520), - [6265] = {.count = 1, .reusable = true}, SHIFT(1863), - [6267] = {.count = 1, .reusable = true}, SHIFT(1864), - [6269] = {.count = 1, .reusable = true}, SHIFT(1871), - [6271] = {.count = 1, .reusable = false}, SHIFT(1894), - [6273] = {.count = 1, .reusable = true}, SHIFT(1894), - [6275] = {.count = 1, .reusable = true}, SHIFT(2525), - [6277] = {.count = 1, .reusable = true}, SHIFT(2526), - [6279] = {.count = 1, .reusable = true}, SHIFT(1895), - [6281] = {.count = 1, .reusable = false}, SHIFT(1902), - [6283] = {.count = 1, .reusable = true}, SHIFT(1902), - [6285] = {.count = 1, .reusable = true}, SHIFT(2527), - [6287] = {.count = 1, .reusable = true}, SHIFT(1903), - [6289] = {.count = 1, .reusable = true}, SHIFT(1904), - [6291] = {.count = 1, .reusable = true}, SHIFT(1911), - [6293] = {.count = 1, .reusable = false}, SHIFT(1934), - [6295] = {.count = 1, .reusable = true}, SHIFT(1934), - [6297] = {.count = 1, .reusable = true}, SHIFT(2532), - [6299] = {.count = 1, .reusable = true}, SHIFT(2533), - [6301] = {.count = 1, .reusable = true}, SHIFT(1935), - [6303] = {.count = 1, .reusable = false}, SHIFT(1942), - [6305] = {.count = 1, .reusable = true}, SHIFT(1942), - [6307] = {.count = 1, .reusable = true}, SHIFT(2534), - [6309] = {.count = 1, .reusable = true}, SHIFT(1943), - [6311] = {.count = 1, .reusable = true}, SHIFT(1944), - [6313] = {.count = 1, .reusable = true}, SHIFT(1951), - [6315] = {.count = 1, .reusable = false}, SHIFT(1974), - [6317] = {.count = 1, .reusable = true}, SHIFT(1974), - [6319] = {.count = 1, .reusable = true}, SHIFT(2539), - [6321] = {.count = 1, .reusable = true}, SHIFT(2540), - [6323] = {.count = 1, .reusable = true}, SHIFT(1975), - [6325] = {.count = 1, .reusable = false}, SHIFT(1982), - [6327] = {.count = 1, .reusable = true}, SHIFT(1982), - [6329] = {.count = 1, .reusable = true}, SHIFT(2541), - [6331] = {.count = 1, .reusable = true}, SHIFT(1983), - [6333] = {.count = 1, .reusable = true}, SHIFT(1984), - [6335] = {.count = 1, .reusable = true}, SHIFT(1991), - [6337] = {.count = 1, .reusable = false}, SHIFT(2014), - [6339] = {.count = 1, .reusable = true}, SHIFT(2546), - [6341] = {.count = 1, .reusable = true}, SHIFT(2547), - [6343] = {.count = 1, .reusable = true}, SHIFT(2015), - [6345] = {.count = 1, .reusable = true}, SHIFT(2014), - [6347] = {.count = 1, .reusable = false}, SHIFT(2022), - [6349] = {.count = 1, .reusable = true}, SHIFT(2548), - [6351] = {.count = 1, .reusable = true}, SHIFT(2023), - [6353] = {.count = 1, .reusable = true}, SHIFT(2022), - [6355] = {.count = 1, .reusable = true}, SHIFT(2024), - [6357] = {.count = 1, .reusable = true}, SHIFT(2031), - [6359] = {.count = 1, .reusable = false}, SHIFT(2054), - [6361] = {.count = 1, .reusable = true}, SHIFT(2553), - [6363] = {.count = 1, .reusable = true}, SHIFT(2554), - [6365] = {.count = 1, .reusable = true}, SHIFT(2055), - [6367] = {.count = 1, .reusable = true}, SHIFT(2054), - [6369] = {.count = 1, .reusable = false}, SHIFT(2062), - [6371] = {.count = 1, .reusable = true}, SHIFT(2555), - [6373] = {.count = 1, .reusable = true}, SHIFT(2063), - [6375] = {.count = 1, .reusable = true}, SHIFT(2062), - [6377] = {.count = 1, .reusable = true}, SHIFT(2064), - [6379] = {.count = 1, .reusable = true}, SHIFT(2071), - [6381] = {.count = 1, .reusable = false}, SHIFT(2094), - [6383] = {.count = 1, .reusable = true}, SHIFT(2094), - [6385] = {.count = 1, .reusable = true}, SHIFT(2560), - [6387] = {.count = 1, .reusable = true}, SHIFT(2561), - [6389] = {.count = 1, .reusable = true}, SHIFT(2095), - [6391] = {.count = 1, .reusable = false}, SHIFT(2102), - [6393] = {.count = 1, .reusable = true}, SHIFT(2102), - [6395] = {.count = 1, .reusable = true}, SHIFT(2562), - [6397] = {.count = 1, .reusable = true}, SHIFT(2103), - [6399] = {.count = 1, .reusable = true}, SHIFT(2104), - [6401] = {.count = 1, .reusable = true}, SHIFT(2111), - [6403] = {.count = 1, .reusable = false}, SHIFT(2134), - [6405] = {.count = 1, .reusable = true}, SHIFT(2134), - [6407] = {.count = 1, .reusable = true}, SHIFT(2567), - [6409] = {.count = 1, .reusable = true}, SHIFT(2568), - [6411] = {.count = 1, .reusable = true}, SHIFT(2135), - [6413] = {.count = 1, .reusable = false}, SHIFT(2142), - [6415] = {.count = 1, .reusable = true}, SHIFT(2142), - [6417] = {.count = 1, .reusable = true}, SHIFT(2569), - [6419] = {.count = 1, .reusable = true}, SHIFT(2143), - [6421] = {.count = 1, .reusable = true}, SHIFT(2144), - [6423] = {.count = 1, .reusable = true}, SHIFT(2151), - [6425] = {.count = 1, .reusable = false}, SHIFT(2174), - [6427] = {.count = 1, .reusable = true}, SHIFT(2174), - [6429] = {.count = 1, .reusable = true}, SHIFT(2574), - [6431] = {.count = 1, .reusable = true}, SHIFT(2575), - [6433] = {.count = 1, .reusable = true}, SHIFT(2175), - [6435] = {.count = 1, .reusable = false}, SHIFT(2182), - [6437] = {.count = 1, .reusable = true}, SHIFT(2182), - [6439] = {.count = 1, .reusable = true}, SHIFT(2576), - [6441] = {.count = 1, .reusable = true}, SHIFT(2183), - [6443] = {.count = 1, .reusable = true}, SHIFT(2184), - [6445] = {.count = 1, .reusable = true}, SHIFT(2191), - [6447] = {.count = 1, .reusable = false}, SHIFT(2214), - [6449] = {.count = 1, .reusable = true}, SHIFT(2214), - [6451] = {.count = 1, .reusable = true}, SHIFT(2581), - [6453] = {.count = 1, .reusable = true}, SHIFT(2582), - [6455] = {.count = 1, .reusable = true}, SHIFT(2215), - [6457] = {.count = 1, .reusable = false}, SHIFT(2222), - [6459] = {.count = 1, .reusable = true}, SHIFT(2222), - [6461] = {.count = 1, .reusable = true}, SHIFT(2583), - [6463] = {.count = 1, .reusable = true}, SHIFT(2223), - [6465] = {.count = 1, .reusable = true}, SHIFT(2224), - [6467] = {.count = 1, .reusable = true}, SHIFT(2231), - [6469] = {.count = 1, .reusable = false}, SHIFT(2254), - [6471] = {.count = 1, .reusable = true}, SHIFT(2254), - [6473] = {.count = 1, .reusable = true}, SHIFT(2588), - [6475] = {.count = 1, .reusable = true}, SHIFT(2589), - [6477] = {.count = 1, .reusable = true}, SHIFT(2255), - [6479] = {.count = 1, .reusable = false}, SHIFT(2262), - [6481] = {.count = 1, .reusable = true}, SHIFT(2262), - [6483] = {.count = 1, .reusable = true}, SHIFT(2590), - [6485] = {.count = 1, .reusable = true}, SHIFT(2263), - [6487] = {.count = 1, .reusable = true}, SHIFT(2264), - [6489] = {.count = 1, .reusable = true}, SHIFT(2271), - [6491] = {.count = 1, .reusable = false}, SHIFT(2294), - [6493] = {.count = 1, .reusable = true}, SHIFT(2294), - [6495] = {.count = 1, .reusable = true}, SHIFT(2595), - [6497] = {.count = 1, .reusable = true}, SHIFT(2596), - [6499] = {.count = 1, .reusable = true}, SHIFT(2295), - [6501] = {.count = 1, .reusable = false}, SHIFT(2302), - [6503] = {.count = 1, .reusable = true}, SHIFT(2302), - [6505] = {.count = 1, .reusable = true}, SHIFT(2597), - [6507] = {.count = 1, .reusable = true}, SHIFT(2303), - [6509] = {.count = 1, .reusable = true}, SHIFT(2304), - [6511] = {.count = 1, .reusable = true}, SHIFT(2311), - [6513] = {.count = 1, .reusable = false}, SHIFT(2330), - [6515] = {.count = 1, .reusable = true}, SHIFT(2330), - [6517] = {.count = 1, .reusable = true}, SHIFT(2601), - [6519] = {.count = 1, .reusable = true}, SHIFT(2602), - [6521] = {.count = 1, .reusable = true}, SHIFT(2331), - [6523] = {.count = 1, .reusable = false}, SHIFT(2336), - [6525] = {.count = 1, .reusable = true}, SHIFT(2336), - [6527] = {.count = 1, .reusable = true}, SHIFT(2603), - [6529] = {.count = 1, .reusable = true}, SHIFT(2337), - [6531] = {.count = 1, .reusable = true}, SHIFT(2338), - [6533] = {.count = 1, .reusable = true}, SHIFT(2344), - [6535] = {.count = 1, .reusable = false}, SHIFT(2363), - [6537] = {.count = 1, .reusable = true}, SHIFT(2363), - [6539] = {.count = 1, .reusable = true}, SHIFT(2607), - [6541] = {.count = 1, .reusable = true}, SHIFT(2608), - [6543] = {.count = 1, .reusable = true}, SHIFT(2364), - [6545] = {.count = 1, .reusable = false}, SHIFT(2369), - [6547] = {.count = 1, .reusable = true}, SHIFT(2369), - [6549] = {.count = 1, .reusable = true}, SHIFT(2609), - [6551] = {.count = 1, .reusable = true}, SHIFT(2370), - [6553] = {.count = 1, .reusable = true}, SHIFT(2371), - [6555] = {.count = 1, .reusable = true}, SHIFT(2377), - [6557] = {.count = 1, .reusable = true}, SHIFT(2629), - [6559] = {.count = 1, .reusable = true}, SHIFT(2414), - [6561] = {.count = 1, .reusable = false}, SHIFT(2615), - [6563] = {.count = 1, .reusable = true}, SHIFT(2615), - [6565] = {.count = 1, .reusable = false}, SHIFT(2417), - [6567] = {.count = 1, .reusable = false}, SHIFT(2616), - [6569] = {.count = 1, .reusable = true}, SHIFT(2616), - [6571] = {.count = 1, .reusable = false}, SHIFT(2418), - [6573] = {.count = 1, .reusable = true}, SHIFT(2419), - [6575] = {.count = 1, .reusable = true}, SHIFT(2420), - [6577] = {.count = 1, .reusable = false}, SHIFT(2421), - [6579] = {.count = 1, .reusable = false}, SHIFT(2426), - [6581] = {.count = 1, .reusable = false}, SHIFT(2430), - [6583] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2436), - [6586] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2453), - [6589] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2435), - [6592] = {.count = 1, .reusable = true}, SHIFT(2612), - [6594] = {.count = 1, .reusable = false}, SHIFT(2612), - [6596] = {.count = 1, .reusable = false}, SHIFT(2617), - [6598] = {.count = 1, .reusable = false}, SHIFT(2620), + [6041] = {.count = 1, .reusable = true}, SHIFT(2638), + [6043] = {.count = 1, .reusable = false}, SHIFT(2638), + [6045] = {.count = 1, .reusable = true}, SHIFT(2446), + [6047] = {.count = 1, .reusable = true}, SHIFT(2640), + [6049] = {.count = 1, .reusable = false}, SHIFT(2640), + [6051] = {.count = 1, .reusable = true}, SHIFT(2641), + [6053] = {.count = 1, .reusable = false}, SHIFT(2641), + [6055] = {.count = 1, .reusable = false}, SHIFT(1485), + [6057] = {.count = 1, .reusable = true}, SHIFT(2457), + [6059] = {.count = 1, .reusable = true}, SHIFT(2458), + [6061] = {.count = 1, .reusable = true}, SHIFT(1486), + [6063] = {.count = 1, .reusable = true}, SHIFT(1485), + [6065] = {.count = 1, .reusable = true}, SHIFT(1487), + [6067] = {.count = 1, .reusable = true}, SHIFT(1488), + [6069] = {.count = 1, .reusable = false}, SHIFT(1488), + [6071] = {.count = 1, .reusable = false}, SHIFT(1495), + [6073] = {.count = 1, .reusable = true}, SHIFT(2460), + [6075] = {.count = 1, .reusable = true}, SHIFT(1496), + [6077] = {.count = 1, .reusable = true}, SHIFT(1495), + [6079] = {.count = 1, .reusable = true}, SHIFT(1497), + [6081] = {.count = 1, .reusable = true}, SHIFT(1506), + [6083] = {.count = 1, .reusable = false}, SHIFT(1530), + [6085] = {.count = 1, .reusable = true}, SHIFT(1530), + [6087] = {.count = 1, .reusable = true}, SHIFT(2468), + [6089] = {.count = 1, .reusable = true}, SHIFT(2469), + [6091] = {.count = 1, .reusable = true}, SHIFT(1531), + [6093] = {.count = 1, .reusable = true}, SHIFT(1532), + [6095] = {.count = 1, .reusable = true}, SHIFT(2449), + [6097] = {.count = 1, .reusable = false}, SHIFT(2449), + [6099] = {.count = 1, .reusable = false}, SHIFT(1539), + [6101] = {.count = 1, .reusable = true}, SHIFT(1539), + [6103] = {.count = 1, .reusable = true}, SHIFT(2470), + [6105] = {.count = 1, .reusable = true}, SHIFT(1540), + [6107] = {.count = 1, .reusable = true}, SHIFT(1541), + [6109] = {.count = 1, .reusable = true}, SHIFT(1549), + [6111] = {.count = 1, .reusable = false}, SHIFT(1573), + [6113] = {.count = 1, .reusable = true}, SHIFT(1573), + [6115] = {.count = 1, .reusable = true}, SHIFT(2477), + [6117] = {.count = 1, .reusable = true}, SHIFT(2478), + [6119] = {.count = 1, .reusable = true}, SHIFT(1574), + [6121] = {.count = 1, .reusable = true}, SHIFT(1575), + [6123] = {.count = 1, .reusable = false}, SHIFT(1582), + [6125] = {.count = 1, .reusable = true}, SHIFT(1582), + [6127] = {.count = 1, .reusable = true}, SHIFT(2479), + [6129] = {.count = 1, .reusable = true}, SHIFT(1583), + [6131] = {.count = 1, .reusable = true}, SHIFT(1584), + [6133] = {.count = 1, .reusable = true}, SHIFT(1592), + [6135] = {.count = 1, .reusable = false}, SHIFT(1616), + [6137] = {.count = 1, .reusable = true}, SHIFT(2486), + [6139] = {.count = 1, .reusable = true}, SHIFT(2487), + [6141] = {.count = 1, .reusable = true}, SHIFT(1617), + [6143] = {.count = 1, .reusable = true}, SHIFT(1616), + [6145] = {.count = 1, .reusable = true}, SHIFT(1618), + [6147] = {.count = 1, .reusable = false}, SHIFT(1625), + [6149] = {.count = 1, .reusable = true}, SHIFT(2488), + [6151] = {.count = 1, .reusable = true}, SHIFT(1626), + [6153] = {.count = 1, .reusable = true}, SHIFT(1625), + [6155] = {.count = 1, .reusable = true}, SHIFT(1627), + [6157] = {.count = 1, .reusable = true}, SHIFT(1635), + [6159] = {.count = 1, .reusable = false}, SHIFT(1659), + [6161] = {.count = 1, .reusable = true}, SHIFT(2495), + [6163] = {.count = 1, .reusable = true}, SHIFT(2496), + [6165] = {.count = 1, .reusable = true}, SHIFT(1660), + [6167] = {.count = 1, .reusable = true}, SHIFT(1659), + [6169] = {.count = 1, .reusable = true}, SHIFT(1661), + [6171] = {.count = 1, .reusable = false}, SHIFT(1668), + [6173] = {.count = 1, .reusable = true}, SHIFT(2497), + [6175] = {.count = 1, .reusable = true}, SHIFT(1669), + [6177] = {.count = 1, .reusable = true}, SHIFT(1668), + [6179] = {.count = 1, .reusable = true}, SHIFT(1670), + [6181] = {.count = 1, .reusable = true}, SHIFT(1678), + [6183] = {.count = 1, .reusable = false}, SHIFT(1702), + [6185] = {.count = 1, .reusable = true}, SHIFT(1702), + [6187] = {.count = 1, .reusable = true}, SHIFT(2504), + [6189] = {.count = 1, .reusable = true}, SHIFT(2505), + [6191] = {.count = 1, .reusable = true}, SHIFT(1703), + [6193] = {.count = 1, .reusable = true}, SHIFT(1704), + [6195] = {.count = 1, .reusable = false}, SHIFT(1711), + [6197] = {.count = 1, .reusable = true}, SHIFT(1711), + [6199] = {.count = 1, .reusable = true}, SHIFT(2506), + [6201] = {.count = 1, .reusable = true}, SHIFT(1712), + [6203] = {.count = 1, .reusable = true}, SHIFT(1713), + [6205] = {.count = 1, .reusable = true}, SHIFT(1721), + [6207] = {.count = 1, .reusable = false}, SHIFT(1745), + [6209] = {.count = 1, .reusable = true}, SHIFT(2511), + [6211] = {.count = 1, .reusable = true}, SHIFT(2512), + [6213] = {.count = 1, .reusable = true}, SHIFT(1746), + [6215] = {.count = 1, .reusable = true}, SHIFT(1745), + [6217] = {.count = 1, .reusable = false}, SHIFT(1753), + [6219] = {.count = 1, .reusable = true}, SHIFT(2513), + [6221] = {.count = 1, .reusable = true}, SHIFT(1754), + [6223] = {.count = 1, .reusable = true}, SHIFT(1753), + [6225] = {.count = 1, .reusable = true}, SHIFT(1755), + [6227] = {.count = 1, .reusable = true}, SHIFT(1762), + [6229] = {.count = 1, .reusable = false}, SHIFT(1785), + [6231] = {.count = 1, .reusable = true}, SHIFT(2518), + [6233] = {.count = 1, .reusable = true}, SHIFT(2519), + [6235] = {.count = 1, .reusable = true}, SHIFT(1786), + [6237] = {.count = 1, .reusable = true}, SHIFT(1785), + [6239] = {.count = 1, .reusable = false}, SHIFT(1793), + [6241] = {.count = 1, .reusable = true}, SHIFT(2520), + [6243] = {.count = 1, .reusable = true}, SHIFT(1794), + [6245] = {.count = 1, .reusable = true}, SHIFT(1793), + [6247] = {.count = 1, .reusable = true}, SHIFT(1795), + [6249] = {.count = 1, .reusable = true}, SHIFT(1802), + [6251] = {.count = 1, .reusable = false}, SHIFT(1825), + [6253] = {.count = 1, .reusable = true}, SHIFT(2525), + [6255] = {.count = 1, .reusable = true}, SHIFT(2526), + [6257] = {.count = 1, .reusable = true}, SHIFT(1826), + [6259] = {.count = 1, .reusable = true}, SHIFT(1825), + [6261] = {.count = 1, .reusable = false}, SHIFT(1833), + [6263] = {.count = 1, .reusable = true}, SHIFT(2527), + [6265] = {.count = 1, .reusable = true}, SHIFT(1834), + [6267] = {.count = 1, .reusable = true}, SHIFT(1833), + [6269] = {.count = 1, .reusable = true}, SHIFT(1835), + [6271] = {.count = 1, .reusable = true}, SHIFT(1842), + [6273] = {.count = 1, .reusable = false}, SHIFT(1865), + [6275] = {.count = 1, .reusable = true}, SHIFT(1865), + [6277] = {.count = 1, .reusable = true}, SHIFT(2532), + [6279] = {.count = 1, .reusable = true}, SHIFT(2533), + [6281] = {.count = 1, .reusable = true}, SHIFT(1866), + [6283] = {.count = 1, .reusable = false}, SHIFT(1873), + [6285] = {.count = 1, .reusable = true}, SHIFT(1873), + [6287] = {.count = 1, .reusable = true}, SHIFT(2534), + [6289] = {.count = 1, .reusable = true}, SHIFT(1874), + [6291] = {.count = 1, .reusable = true}, SHIFT(1875), + [6293] = {.count = 1, .reusable = true}, SHIFT(1882), + [6295] = {.count = 1, .reusable = false}, SHIFT(1905), + [6297] = {.count = 1, .reusable = true}, SHIFT(1905), + [6299] = {.count = 1, .reusable = true}, SHIFT(2539), + [6301] = {.count = 1, .reusable = true}, SHIFT(2540), + [6303] = {.count = 1, .reusable = true}, SHIFT(1906), + [6305] = {.count = 1, .reusable = false}, SHIFT(1913), + [6307] = {.count = 1, .reusable = true}, SHIFT(1913), + [6309] = {.count = 1, .reusable = true}, SHIFT(2541), + [6311] = {.count = 1, .reusable = true}, SHIFT(1914), + [6313] = {.count = 1, .reusable = true}, SHIFT(1915), + [6315] = {.count = 1, .reusable = true}, SHIFT(1922), + [6317] = {.count = 1, .reusable = false}, SHIFT(1945), + [6319] = {.count = 1, .reusable = true}, SHIFT(1945), + [6321] = {.count = 1, .reusable = true}, SHIFT(2546), + [6323] = {.count = 1, .reusable = true}, SHIFT(2547), + [6325] = {.count = 1, .reusable = true}, SHIFT(1946), + [6327] = {.count = 1, .reusable = false}, SHIFT(1953), + [6329] = {.count = 1, .reusable = true}, SHIFT(1953), + [6331] = {.count = 1, .reusable = true}, SHIFT(2548), + [6333] = {.count = 1, .reusable = true}, SHIFT(1954), + [6335] = {.count = 1, .reusable = true}, SHIFT(1955), + [6337] = {.count = 1, .reusable = true}, SHIFT(1962), + [6339] = {.count = 1, .reusable = false}, SHIFT(1985), + [6341] = {.count = 1, .reusable = true}, SHIFT(1985), + [6343] = {.count = 1, .reusable = true}, SHIFT(2553), + [6345] = {.count = 1, .reusable = true}, SHIFT(2554), + [6347] = {.count = 1, .reusable = true}, SHIFT(1986), + [6349] = {.count = 1, .reusable = false}, SHIFT(1993), + [6351] = {.count = 1, .reusable = true}, SHIFT(1993), + [6353] = {.count = 1, .reusable = true}, SHIFT(2555), + [6355] = {.count = 1, .reusable = true}, SHIFT(1994), + [6357] = {.count = 1, .reusable = true}, SHIFT(1995), + [6359] = {.count = 1, .reusable = true}, SHIFT(2002), + [6361] = {.count = 1, .reusable = false}, SHIFT(2025), + [6363] = {.count = 1, .reusable = true}, SHIFT(2560), + [6365] = {.count = 1, .reusable = true}, SHIFT(2561), + [6367] = {.count = 1, .reusable = true}, SHIFT(2026), + [6369] = {.count = 1, .reusable = true}, SHIFT(2025), + [6371] = {.count = 1, .reusable = false}, SHIFT(2033), + [6373] = {.count = 1, .reusable = true}, SHIFT(2562), + [6375] = {.count = 1, .reusable = true}, SHIFT(2034), + [6377] = {.count = 1, .reusable = true}, SHIFT(2033), + [6379] = {.count = 1, .reusable = true}, SHIFT(2035), + [6381] = {.count = 1, .reusable = true}, SHIFT(2042), + [6383] = {.count = 1, .reusable = false}, SHIFT(2065), + [6385] = {.count = 1, .reusable = true}, SHIFT(2567), + [6387] = {.count = 1, .reusable = true}, SHIFT(2568), + [6389] = {.count = 1, .reusable = true}, SHIFT(2066), + [6391] = {.count = 1, .reusable = true}, SHIFT(2065), + [6393] = {.count = 1, .reusable = false}, SHIFT(2073), + [6395] = {.count = 1, .reusable = true}, SHIFT(2569), + [6397] = {.count = 1, .reusable = true}, SHIFT(2074), + [6399] = {.count = 1, .reusable = true}, SHIFT(2073), + [6401] = {.count = 1, .reusable = true}, SHIFT(2075), + [6403] = {.count = 1, .reusable = true}, SHIFT(2082), + [6405] = {.count = 1, .reusable = false}, SHIFT(2105), + [6407] = {.count = 1, .reusable = true}, SHIFT(2105), + [6409] = {.count = 1, .reusable = true}, SHIFT(2574), + [6411] = {.count = 1, .reusable = true}, SHIFT(2575), + [6413] = {.count = 1, .reusable = true}, SHIFT(2106), + [6415] = {.count = 1, .reusable = false}, SHIFT(2113), + [6417] = {.count = 1, .reusable = true}, SHIFT(2113), + [6419] = {.count = 1, .reusable = true}, SHIFT(2576), + [6421] = {.count = 1, .reusable = true}, SHIFT(2114), + [6423] = {.count = 1, .reusable = true}, SHIFT(2115), + [6425] = {.count = 1, .reusable = true}, SHIFT(2122), + [6427] = {.count = 1, .reusable = false}, SHIFT(2145), + [6429] = {.count = 1, .reusable = true}, SHIFT(2145), + [6431] = {.count = 1, .reusable = true}, SHIFT(2581), + [6433] = {.count = 1, .reusable = true}, SHIFT(2582), + [6435] = {.count = 1, .reusable = true}, SHIFT(2146), + [6437] = {.count = 1, .reusable = false}, SHIFT(2153), + [6439] = {.count = 1, .reusable = true}, SHIFT(2153), + [6441] = {.count = 1, .reusable = true}, SHIFT(2583), + [6443] = {.count = 1, .reusable = true}, SHIFT(2154), + [6445] = {.count = 1, .reusable = true}, SHIFT(2155), + [6447] = {.count = 1, .reusable = true}, SHIFT(2162), + [6449] = {.count = 1, .reusable = false}, SHIFT(2185), + [6451] = {.count = 1, .reusable = true}, SHIFT(2185), + [6453] = {.count = 1, .reusable = true}, SHIFT(2588), + [6455] = {.count = 1, .reusable = true}, SHIFT(2589), + [6457] = {.count = 1, .reusable = true}, SHIFT(2186), + [6459] = {.count = 1, .reusable = false}, SHIFT(2193), + [6461] = {.count = 1, .reusable = true}, SHIFT(2193), + [6463] = {.count = 1, .reusable = true}, SHIFT(2590), + [6465] = {.count = 1, .reusable = true}, SHIFT(2194), + [6467] = {.count = 1, .reusable = true}, SHIFT(2195), + [6469] = {.count = 1, .reusable = true}, SHIFT(2202), + [6471] = {.count = 1, .reusable = false}, SHIFT(2225), + [6473] = {.count = 1, .reusable = true}, SHIFT(2225), + [6475] = {.count = 1, .reusable = true}, SHIFT(2595), + [6477] = {.count = 1, .reusable = true}, SHIFT(2596), + [6479] = {.count = 1, .reusable = true}, SHIFT(2226), + [6481] = {.count = 1, .reusable = false}, SHIFT(2233), + [6483] = {.count = 1, .reusable = true}, SHIFT(2233), + [6485] = {.count = 1, .reusable = true}, SHIFT(2597), + [6487] = {.count = 1, .reusable = true}, SHIFT(2234), + [6489] = {.count = 1, .reusable = true}, SHIFT(2235), + [6491] = {.count = 1, .reusable = true}, SHIFT(2242), + [6493] = {.count = 1, .reusable = false}, SHIFT(2265), + [6495] = {.count = 1, .reusable = true}, SHIFT(2265), + [6497] = {.count = 1, .reusable = true}, SHIFT(2602), + [6499] = {.count = 1, .reusable = true}, SHIFT(2603), + [6501] = {.count = 1, .reusable = true}, SHIFT(2266), + [6503] = {.count = 1, .reusable = false}, SHIFT(2273), + [6505] = {.count = 1, .reusable = true}, SHIFT(2273), + [6507] = {.count = 1, .reusable = true}, SHIFT(2604), + [6509] = {.count = 1, .reusable = true}, SHIFT(2274), + [6511] = {.count = 1, .reusable = true}, SHIFT(2275), + [6513] = {.count = 1, .reusable = true}, SHIFT(2282), + [6515] = {.count = 1, .reusable = false}, SHIFT(2305), + [6517] = {.count = 1, .reusable = true}, SHIFT(2305), + [6519] = {.count = 1, .reusable = true}, SHIFT(2609), + [6521] = {.count = 1, .reusable = true}, SHIFT(2610), + [6523] = {.count = 1, .reusable = true}, SHIFT(2306), + [6525] = {.count = 1, .reusable = false}, SHIFT(2313), + [6527] = {.count = 1, .reusable = true}, SHIFT(2313), + [6529] = {.count = 1, .reusable = true}, SHIFT(2611), + [6531] = {.count = 1, .reusable = true}, SHIFT(2314), + [6533] = {.count = 1, .reusable = true}, SHIFT(2315), + [6535] = {.count = 1, .reusable = true}, SHIFT(2322), + [6537] = {.count = 1, .reusable = false}, SHIFT(2341), + [6539] = {.count = 1, .reusable = true}, SHIFT(2341), + [6541] = {.count = 1, .reusable = true}, SHIFT(2615), + [6543] = {.count = 1, .reusable = true}, SHIFT(2616), + [6545] = {.count = 1, .reusable = true}, SHIFT(2342), + [6547] = {.count = 1, .reusable = false}, SHIFT(2347), + [6549] = {.count = 1, .reusable = true}, SHIFT(2347), + [6551] = {.count = 1, .reusable = true}, SHIFT(2617), + [6553] = {.count = 1, .reusable = true}, SHIFT(2348), + [6555] = {.count = 1, .reusable = true}, SHIFT(2349), + [6557] = {.count = 1, .reusable = true}, SHIFT(2355), + [6559] = {.count = 1, .reusable = false}, SHIFT(2374), + [6561] = {.count = 1, .reusable = true}, SHIFT(2374), + [6563] = {.count = 1, .reusable = true}, SHIFT(2621), + [6565] = {.count = 1, .reusable = true}, SHIFT(2622), + [6567] = {.count = 1, .reusable = true}, SHIFT(2375), + [6569] = {.count = 1, .reusable = false}, SHIFT(2380), + [6571] = {.count = 1, .reusable = true}, SHIFT(2380), + [6573] = {.count = 1, .reusable = true}, SHIFT(2623), + [6575] = {.count = 1, .reusable = true}, SHIFT(2381), + [6577] = {.count = 1, .reusable = true}, SHIFT(2382), + [6579] = {.count = 1, .reusable = true}, SHIFT(2388), + [6581] = {.count = 1, .reusable = true}, SHIFT(2644), + [6583] = {.count = 1, .reusable = true}, SHIFT(2425), + [6585] = {.count = 1, .reusable = false}, SHIFT(2629), + [6587] = {.count = 1, .reusable = true}, SHIFT(2629), + [6589] = {.count = 1, .reusable = false}, SHIFT(2428), + [6591] = {.count = 1, .reusable = false}, SHIFT(2630), + [6593] = {.count = 1, .reusable = true}, SHIFT(2630), + [6595] = {.count = 1, .reusable = false}, SHIFT(2429), + [6597] = {.count = 1, .reusable = true}, SHIFT(2430), + [6599] = {.count = 1, .reusable = true}, SHIFT(2431), + [6601] = {.count = 1, .reusable = false}, SHIFT(2432), + [6603] = {.count = 1, .reusable = false}, SHIFT(2437), + [6605] = {.count = 1, .reusable = false}, SHIFT(2441), + [6607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2448), + [6610] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2465), + [6613] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2447), + [6616] = {.count = 1, .reusable = true}, SHIFT(2626), + [6618] = {.count = 1, .reusable = false}, SHIFT(2626), + [6620] = {.count = 1, .reusable = false}, SHIFT(2631), + [6622] = {.count = 1, .reusable = true}, SHIFT(2634), + [6624] = {.count = 1, .reusable = false}, SHIFT(2634), }; void *tree_sitter_bash_external_scanner_create(void); From 5d955a3614be8abe622ad8a9c407958e58d0cda8 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 30 Jul 2019 14:10:38 -0600 Subject: [PATCH 3/6] Admit letters, _, and @ in numbers with a custom base --- corpus/literals.txt | 2 +- grammar.js | 2 +- src/grammar.json | 2 +- src/parser.c | 10 ++++++++-- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 7a6c99ab..5baebbf3 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -359,7 +359,7 @@ Numbers decimal = 100 octal = 032 hexadecimal = 0x32 -custom = 60#10 # Custom base +custom = 64#2Az9@_1 # Custom base --- diff --git a/grammar.js b/grammar.js index 26733676..b2935a2a 100644 --- a/grammar.js +++ b/grammar.js @@ -449,7 +449,7 @@ module.exports = grammar({ ansii_c_string: $ => /\$'([^']|\\')*'/, - number: $ => /(0x)?[0-9]+(#[0-9]+)?/, + number: $ => /(0x)?[0-9]+(#[0-9A-Za-z@_]+)?/, simple_expansion: $ => seq( '$', diff --git a/src/grammar.json b/src/grammar.json index 6c07e8b9..464a5743 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1889,7 +1889,7 @@ }, "number": { "type": "PATTERN", - "value": "(0x)?[0-9]+(#[0-9]+)?" + "value": "(0x)?[0-9]+(#[0-9A-Za-z@_]+)?" }, "simple_expansion": { "type": "SEQ", diff --git a/src/parser.c b/src/parser.c index 675542f1..5d274e56 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2775,7 +2775,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(14) END_STATE(); case 113: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(227); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 114: if (lookahead != 0) ADVANCE(219); @@ -3564,7 +3567,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 227: ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(227); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 228: ACCEPT_TOKEN(anon_sym_POUND); From a2c3aaa5b6e1481a2c7b3d1ba327abeda198f733 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 30 Jul 2019 14:32:31 -0600 Subject: [PATCH 4/6] Assign variables correctly in test --- corpus/literals.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 5baebbf3..99c3ce00 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -356,15 +356,15 @@ echo -ne "\033k$1\033\\" > /dev/stderr Numbers ============================== -decimal = 100 -octal = 032 -hexadecimal = 0x32 -custom = 64#2Az9@_1 # Custom base +decimal=100 +octal=032 +hexadecimal=0x32 +custom=64#2Az9@_1 # Custom base --- (program - (command (command_name (word)) (word) (number)) - (command (command_name (word)) (word) (number)) - (command (command_name (word)) (word) (number)) - (command (command_name (word)) (word) (number)) (comment)) + (variable_assignment (variable_name) (number)) + (variable_assignment (variable_name) (number)) + (variable_assignment (variable_name) (number)) + (variable_assignment (variable_name) (number)) (comment)) From 8d51eb922840ba2247b5e61bac72060b213fd1de Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 30 Jul 2019 15:41:51 -0600 Subject: [PATCH 5/6] Support $(()) for arithmetic expansion and bit shift binary operators --- corpus/statements.txt | 17 + grammar.js | 10 +- src/grammar.json | 33 + src/node-types.json | 163 + src/parser.c | 149115 ++++++++++++++++++++------------------- 5 files changed, 78180 insertions(+), 71158 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index a4e3bbaf..37a01ea1 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -491,3 +491,20 @@ a () { (redirected_statement (compound_statement (command (command_name (word)) (string)) (command (command_name (word)) (string))) (file_redirect (number)))) + +========================== +Arithmetic expansion +========================== + +a=$((64#@ << 22)) +b="$((42 + 2))" + +--- + +(program + (variable_assignment + (variable_name) + (arithmetic_expansion (binary_expression (number) (number)))) + (variable_assignment + (variable_name) + (string (arithmetic_expansion (binary_expression (number) (number)))))) diff --git a/grammar.js b/grammar.js index b2935a2a..68906b41 100644 --- a/grammar.js +++ b/grammar.js @@ -356,7 +356,7 @@ module.exports = grammar({ '=', '==', '=~', '!=', '+', '-', '+=', '-=', '<', '>', '<=', '>=', - '||', '&&', + '||', '&&', '<<', '>>', $.test_operator ), $._expression @@ -402,9 +402,12 @@ module.exports = grammar({ $.simple_expansion, $.string_expansion, $.command_substitution, - $.process_substitution + $.process_substitution, + $.arithmetic_expansion ), + arithmetic_expansion: $ => seq('$((', $._expression, '))'), + concatenation: $ => prec(-1, seq( choice( $._primary_expression, @@ -429,7 +432,8 @@ module.exports = grammar({ seq(optional('$'), $._string_content), $.expansion, $.simple_expansion, - $.command_substitution + $.command_substitution, + $.arithmetic_expansion, ), optional($._concat) )), diff --git a/src/grammar.json b/src/grammar.json index 464a5743..7b815823 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1485,6 +1485,14 @@ "type": "STRING", "value": "&&" }, + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + }, { "type": "SYMBOL", "name": "test_operator" @@ -1662,6 +1670,27 @@ { "type": "SYMBOL", "name": "process_substitution" + }, + { + "type": "SYMBOL", + "name": "arithmetic_expansion" + } + ] + }, + "arithmetic_expansion": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$((" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "))" } ] }, @@ -1812,6 +1841,10 @@ { "type": "SYMBOL", "name": "command_substitution" + }, + { + "type": "SYMBOL", + "name": "arithmetic_expansion" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 847d33f8..26fe64e8 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1,4 +1,79 @@ [ + { + "type": "arithmetic_expansion", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "ansii_c_string", + "named": true + }, + { + "type": "arithmetic_expansion", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "command_substitution", + "named": true + }, + { + "type": "concatenation", + "named": true + }, + { + "type": "expansion", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "process_substitution", + "named": true + }, + { + "type": "raw_string", + "named": true + }, + { + "type": "simple_expansion", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "string_expansion", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "word", + "named": true + } + ] + } + }, { "type": "array", "named": true, @@ -11,6 +86,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -66,6 +145,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "binary_expression", "named": true @@ -145,6 +228,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "binary_expression", "named": true @@ -228,6 +315,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "c_style_for_statement", "named": true @@ -355,6 +446,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "case_item", "named": true @@ -414,6 +509,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_name", "named": true @@ -485,6 +584,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -710,6 +813,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -761,6 +868,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -1069,6 +1180,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -1140,6 +1255,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -1199,6 +1318,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -1315,6 +1438,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -1563,6 +1690,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "binary_expression", "named": true @@ -1713,6 +1844,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "binary_expression", "named": true @@ -2052,6 +2187,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -2098,6 +2237,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -2240,6 +2383,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "binary_expression", "named": true @@ -2311,6 +2458,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "binary_expression", "named": true @@ -2386,6 +2537,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "command_substitution", "named": true @@ -2441,6 +2596,10 @@ "type": "ansii_c_string", "named": true }, + { + "type": "arithmetic_expansion", + "named": true + }, { "type": "array", "named": true @@ -2819,6 +2978,10 @@ "type": "--", "named": false }, + { + "type": "$((", + "named": false + }, { "type": "$", "named": false diff --git a/src/parser.c b/src/parser.c index 5d274e56..b07361f4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,10 +6,10 @@ #endif #define LANGUAGE_VERSION 10 -#define STATE_COUNT 2647 -#define SYMBOL_COUNT 159 +#define STATE_COUNT 2799 +#define SYMBOL_COUNT 161 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 99 +#define TOKEN_COUNT 100 #define EXTERNAL_TOKEN_COUNT 15 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -76,104 +76,106 @@ enum { anon_sym_GT_EQ = 59, anon_sym_PLUS_PLUS = 60, anon_sym_DASH_DASH = 61, - anon_sym_DOLLAR = 62, - sym__special_character = 63, - anon_sym_DQUOTE = 64, - sym__string_content = 65, - sym_raw_string = 66, - sym_ansii_c_string = 67, - sym_number = 68, - anon_sym_POUND = 69, - anon_sym_DOLLAR_LBRACE = 70, - anon_sym_SLASH = 71, - anon_sym_COLON = 72, - anon_sym_COLON_QMARK = 73, - anon_sym_COLON_DASH = 74, - anon_sym_PERCENT = 75, - anon_sym_DOLLAR_LPAREN = 76, - anon_sym_BQUOTE = 77, - anon_sym_LT_LPAREN = 78, - anon_sym_GT_LPAREN = 79, - sym_comment = 80, - aux_sym__simple_variable_name_token1 = 81, - anon_sym_STAR = 82, - anon_sym_AT = 83, - anon_sym_QMARK = 84, - anon_sym_0 = 85, - anon_sym__ = 86, - sym_test_operator = 87, - anon_sym_AMP = 88, - sym_heredoc_start = 89, - sym__simple_heredoc_body = 90, - sym__heredoc_body_beginning = 91, - sym__heredoc_body_middle = 92, - sym__heredoc_body_end = 93, - sym_file_descriptor = 94, - sym__empty_value = 95, - sym__concat = 96, - sym_variable_name = 97, - sym_regex = 98, - sym_program = 99, - sym__statements = 100, - aux_sym__statements2 = 101, - sym__terminated_statement = 102, - sym_redirected_statement = 103, - sym_for_statement = 104, - sym_c_style_for_statement = 105, - sym_while_statement = 106, - sym_do_group = 107, - sym_if_statement = 108, - sym_elif_clause = 109, - sym_else_clause = 110, - sym_case_statement = 111, - sym_case_item = 112, - sym_last_case_item = 113, - sym_function_definition = 114, - sym_compound_statement = 115, - sym_subshell = 116, - sym_pipeline = 117, - sym_list = 118, - sym_negated_command = 119, - sym_test_command = 120, - sym_declaration_command = 121, - sym_unset_command = 122, - sym_command = 123, - sym_command_name = 124, - sym_variable_assignment = 125, - sym_subscript = 126, - sym_file_redirect = 127, - sym_heredoc_redirect = 128, - sym_heredoc_body = 129, - sym_herestring_redirect = 130, - sym__expression = 131, - sym_binary_expression = 132, - sym_unary_expression = 133, - sym_postfix_expression = 134, - sym_parenthesized_expression = 135, - sym_concatenation = 136, - sym_string = 137, - sym_array = 138, - sym_simple_expansion = 139, - sym_string_expansion = 140, - sym_expansion = 141, - sym_command_substitution = 142, - sym_process_substitution = 143, - aux_sym__statements_repeat1 = 144, - aux_sym_redirected_statement_repeat1 = 145, - aux_sym_for_statement_repeat1 = 146, - aux_sym_if_statement_repeat1 = 147, - aux_sym_case_statement_repeat1 = 148, - aux_sym_case_item_repeat1 = 149, - aux_sym_declaration_command_repeat1 = 150, - aux_sym_unset_command_repeat1 = 151, - aux_sym_command_repeat1 = 152, - aux_sym_command_repeat2 = 153, - aux_sym_heredoc_body_repeat1 = 154, - aux_sym__literal_repeat1 = 155, - aux_sym_concatenation_repeat1 = 156, - aux_sym_string_repeat1 = 157, - aux_sym_expansion_repeat1 = 158, - alias_sym_special_variable_name = 159, + anon_sym_DOLLAR_LPAREN_LPAREN = 62, + anon_sym_DOLLAR = 63, + sym__special_character = 64, + anon_sym_DQUOTE = 65, + sym__string_content = 66, + sym_raw_string = 67, + sym_ansii_c_string = 68, + sym_number = 69, + anon_sym_POUND = 70, + anon_sym_DOLLAR_LBRACE = 71, + anon_sym_SLASH = 72, + anon_sym_COLON = 73, + anon_sym_COLON_QMARK = 74, + anon_sym_COLON_DASH = 75, + anon_sym_PERCENT = 76, + anon_sym_DOLLAR_LPAREN = 77, + anon_sym_BQUOTE = 78, + anon_sym_LT_LPAREN = 79, + anon_sym_GT_LPAREN = 80, + sym_comment = 81, + aux_sym__simple_variable_name_token1 = 82, + anon_sym_STAR = 83, + anon_sym_AT = 84, + anon_sym_QMARK = 85, + anon_sym_0 = 86, + anon_sym__ = 87, + sym_test_operator = 88, + anon_sym_AMP = 89, + sym_heredoc_start = 90, + sym__simple_heredoc_body = 91, + sym__heredoc_body_beginning = 92, + sym__heredoc_body_middle = 93, + sym__heredoc_body_end = 94, + sym_file_descriptor = 95, + sym__empty_value = 96, + sym__concat = 97, + sym_variable_name = 98, + sym_regex = 99, + sym_program = 100, + sym__statements = 101, + aux_sym__statements2 = 102, + sym__terminated_statement = 103, + sym_redirected_statement = 104, + sym_for_statement = 105, + sym_c_style_for_statement = 106, + sym_while_statement = 107, + sym_do_group = 108, + sym_if_statement = 109, + sym_elif_clause = 110, + sym_else_clause = 111, + sym_case_statement = 112, + sym_case_item = 113, + sym_last_case_item = 114, + sym_function_definition = 115, + sym_compound_statement = 116, + sym_subshell = 117, + sym_pipeline = 118, + sym_list = 119, + sym_negated_command = 120, + sym_test_command = 121, + sym_declaration_command = 122, + sym_unset_command = 123, + sym_command = 124, + sym_command_name = 125, + sym_variable_assignment = 126, + sym_subscript = 127, + sym_file_redirect = 128, + sym_heredoc_redirect = 129, + sym_heredoc_body = 130, + sym_herestring_redirect = 131, + sym__expression = 132, + sym_binary_expression = 133, + sym_unary_expression = 134, + sym_postfix_expression = 135, + sym_parenthesized_expression = 136, + sym_arithmetic_expansion = 137, + sym_concatenation = 138, + sym_string = 139, + sym_array = 140, + sym_simple_expansion = 141, + sym_string_expansion = 142, + sym_expansion = 143, + sym_command_substitution = 144, + sym_process_substitution = 145, + aux_sym__statements_repeat1 = 146, + aux_sym_redirected_statement_repeat1 = 147, + aux_sym_for_statement_repeat1 = 148, + aux_sym_if_statement_repeat1 = 149, + aux_sym_case_statement_repeat1 = 150, + aux_sym_case_item_repeat1 = 151, + aux_sym_declaration_command_repeat1 = 152, + aux_sym_unset_command_repeat1 = 153, + aux_sym_command_repeat1 = 154, + aux_sym_command_repeat2 = 155, + aux_sym_heredoc_body_repeat1 = 156, + aux_sym__literal_repeat1 = 157, + aux_sym_concatenation_repeat1 = 158, + aux_sym_string_repeat1 = 159, + aux_sym_expansion_repeat1 = 160, + alias_sym_special_variable_name = 161, }; static const char *ts_symbol_names[] = { @@ -239,6 +241,7 @@ static const char *ts_symbol_names[] = { [anon_sym_GT_EQ] = ">=", [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", + [anon_sym_DOLLAR_LPAREN_LPAREN] = "$((", [anon_sym_DOLLAR] = "$", [sym__special_character] = "_special_character", [anon_sym_DQUOTE] = "\"", @@ -313,6 +316,7 @@ static const char *ts_symbol_names[] = { [sym_unary_expression] = "unary_expression", [sym_postfix_expression] = "postfix_expression", [sym_parenthesized_expression] = "parenthesized_expression", + [sym_arithmetic_expansion] = "arithmetic_expansion", [sym_concatenation] = "concatenation", [sym_string] = "string", [sym_array] = "array", @@ -588,6 +592,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DOLLAR_LPAREN_LPAREN] = { + .visible = true, + .named = false, + }, [anon_sym_DOLLAR] = { .visible = true, .named = false, @@ -884,6 +892,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_arithmetic_expansion] = { + .visible = true, + .named = true, + }, [sym_concatenation] = { .visible = true, .named = true, @@ -1012,33 +1024,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (lookahead == 0) ADVANCE(116); if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '%') ADVANCE(237); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '/') ADVANCE(230); - if (lookahead == '0') ADVANCE(257); - if (lookahead == ':') ADVANCE(231); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(261); + if (lookahead == ':') ADVANCE(234); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(179); if (lookahead == '=') ADVANCE(171); if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(163); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '`') ADVANCE(236); - if (lookahead == 'e') ADVANCE(267); - if (lookahead == 'i') ADVANCE(266); + if (lookahead == '_') ADVANCE(265); + if (lookahead == '`') ADVANCE(240); + if (lookahead == 'e') ADVANCE(271); + if (lookahead == 'i') ADVANCE(270); if (lookahead == '{') ADVANCE(151); if (lookahead == '|') ADVANCE(144); if (lookahead == '}') ADVANCE(152); @@ -1046,72 +1058,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); - if (lookahead != 0) ADVANCE(270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 1: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(117); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(224); + if (lookahead == '0') ADVANCE(227); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(75); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && - lookahead != '(') ADVANCE(270); + lookahead != '(') ADVANCE(274); END_STATE(); case 2: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(118); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '0') ADVANCE(259); + if (lookahead == '*') ADVANCE(255); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(263); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(180); if (lookahead == '>') ADVANCE(184); - if (lookahead == '?') ADVANCE(255); - if (lookahead == '@') ADVANCE(253); + if (lookahead == '?') ADVANCE(259); + if (lookahead == '@') ADVANCE(257); if (lookahead == '\\') SKIP(12) - if (lookahead == '_') ADVANCE(262); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '_') ADVANCE(266); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(2) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 3: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(118); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '&') ADVANCE(278); if (lookahead == ')') ADVANCE(146); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(180); @@ -1119,9 +1131,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(236); + if (lookahead == '`') ADVANCE(240); if (lookahead == 'e') ADVANCE(70); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || @@ -1131,16 +1143,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 4: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(118); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '&') ADVANCE(272); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '&') ADVANCE(276); if (lookahead == ')') ADVANCE(146); if (lookahead == ';') ADVANCE(138); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') SKIP(11) - if (lookahead == '`') ADVANCE(236); + if (lookahead == '`') ADVANCE(240); if (lookahead == 'e') ADVANCE(70); if (lookahead == 'i') ADVANCE(69); if (lookahead == '\t' || @@ -1150,156 +1162,156 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 5: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(121); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(263); + if (lookahead == '=') ADVANCE(267); if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == '`') ADVANCE(236); + lookahead == '}') ADVANCE(216); + if (lookahead == '\\') ADVANCE(78); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); - if (lookahead != 0) ADVANCE(270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 6: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(122); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(84); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && - lookahead != '(') ADVANCE(270); + lookahead != '(') ADVANCE(274); END_STATE(); case 7: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(123); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(258); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '0') ADVANCE(262); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(263); + if (lookahead == '=') ADVANCE(267); if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(94); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && - lookahead != '(') ADVANCE(270); + lookahead != '(') ADVANCE(274); END_STATE(); case 8: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(128); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(258); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '0') ADVANCE(262); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(103); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && - lookahead != '(') ADVANCE(270); + lookahead != '(') ADVANCE(274); END_STATE(); case 9: if (lookahead == 0) ADVANCE(116); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(62); if (lookahead == '<') ADVANCE(177); if (lookahead == '>') ADVANCE(183); if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(73); if (lookahead == ']' || - lookahead == '}') ADVANCE(213); - if (lookahead == '`') ADVANCE(236); + lookahead == '}') ADVANCE(216); + if (lookahead == '`') ADVANCE(240); if (lookahead == '{') ADVANCE(151); if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); - if (lookahead != 0) ADVANCE(270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 10: if (lookahead == 0) ADVANCE(116); @@ -1324,169 +1336,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 13: if (lookahead == '\n') ADVANCE(117); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(224); + if (lookahead == '0') ADVANCE(227); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(75); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && - lookahead != '(') ADVANCE(270); + lookahead != '(') ADVANCE(274); END_STATE(); case 14: if (lookahead == '\n') ADVANCE(118); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '0') ADVANCE(259); + if (lookahead == '*') ADVANCE(255); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(263); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(180); if (lookahead == '>') ADVANCE(184); - if (lookahead == '?') ADVANCE(255); - if (lookahead == '@') ADVANCE(253); + if (lookahead == '?') ADVANCE(259); + if (lookahead == '@') ADVANCE(257); if (lookahead == '\\') SKIP(112) - if (lookahead == '_') ADVANCE(262); - if (lookahead == 'e') ADVANCE(249); + if (lookahead == '_') ADVANCE(266); + if (lookahead == 'e') ADVANCE(253); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(14) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 15: if (lookahead == '\n') ADVANCE(118); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(272); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '&') ADVANCE(276); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '0') ADVANCE(259); + if (lookahead == '*') ADVANCE(255); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(263); if (lookahead == ';') ADVANCE(138); - if (lookahead == '?') ADVANCE(255); - if (lookahead == '@') ADVANCE(253); + if (lookahead == '?') ADVANCE(259); + if (lookahead == '@') ADVANCE(257); if (lookahead == '\\') SKIP(104) - if (lookahead == '_') ADVANCE(262); - if (lookahead == 'i') ADVANCE(248); + if (lookahead == '_') ADVANCE(266); + if (lookahead == 'i') ADVANCE(252); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(15) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 16: if (lookahead == '\n') ADVANCE(118); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(272); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '&') ADVANCE(276); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '0') ADVANCE(259); + if (lookahead == '*') ADVANCE(255); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(263); if (lookahead == ';') ADVANCE(138); - if (lookahead == '?') ADVANCE(255); - if (lookahead == '@') ADVANCE(253); + if (lookahead == '?') ADVANCE(259); + if (lookahead == '@') ADVANCE(257); if (lookahead == '\\') SKIP(109) - if (lookahead == '_') ADVANCE(262); + if (lookahead == '_') ADVANCE(266); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(16) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 17: if (lookahead == '\n') ADVANCE(119); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(272); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(276); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); - if (lookahead == '-') ADVANCE(269); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '-') ADVANCE(273); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(89); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '`') ADVANCE(240); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 18: if (lookahead == '\n') ADVANCE(120); if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '&') ADVANCE(273); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '&') ADVANCE(277); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(259); + if (lookahead == '*') ADVANCE(255); + if (lookahead == '+') ADVANCE(198); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(263); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(181); if (lookahead == '=') ADVANCE(172); if (lookahead == '>') ADVANCE(185); - if (lookahead == '?') ADVANCE(255); - if (lookahead == '@') ADVANCE(253); + if (lookahead == '?') ADVANCE(259); + if (lookahead == '@') ADVANCE(257); if (lookahead == '\\') SKIP(107) - if (lookahead == '_') ADVANCE(262); + if (lookahead == '_') ADVANCE(266); if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(18) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 19: if (lookahead == '\n') ADVANCE(120); if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '&') ADVANCE(273); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '-') ADVANCE(200); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '&') ADVANCE(277); + if (lookahead == '+') ADVANCE(198); + if (lookahead == '-') ADVANCE(201); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(181); if (lookahead == '=') ADVANCE(172); @@ -1494,7 +1506,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') SKIP(93) if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || @@ -1503,370 +1515,370 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 20: if (lookahead == '\n') ADVANCE(121); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(263); + if (lookahead == '=') ADVANCE(267); if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == '`') ADVANCE(236); + lookahead == '}') ADVANCE(216); + if (lookahead == '\\') ADVANCE(78); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(20) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); - if (lookahead != 0) ADVANCE(270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 21: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(84); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && - lookahead != '(') ADVANCE(270); + lookahead != '(') ADVANCE(274); END_STATE(); case 22: if (lookahead == '\n') ADVANCE(123); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(258); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '0') ADVANCE(262); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(263); + if (lookahead == '=') ADVANCE(267); if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(94); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && - lookahead != '(') ADVANCE(270); + lookahead != '(') ADVANCE(274); END_STATE(); case 23: if (lookahead == '\n') ADVANCE(124); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(272); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(276); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(97); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '`') ADVANCE(240); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(23) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 24: if (lookahead == '\n') ADVANCE(125); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(263); + if (lookahead == '=') ADVANCE(267); if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(99); - if (lookahead == '`') ADVANCE(236); - if (lookahead == 'e') ADVANCE(267); + if (lookahead == '`') ADVANCE(240); + if (lookahead == 'e') ADVANCE(271); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && - lookahead != ')') ADVANCE(270); + lookahead != ')') ADVANCE(274); END_STATE(); case 25: if (lookahead == '\n') ADVANCE(126); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(224); + if (lookahead == '0') ADVANCE(227); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(100); - if (lookahead == '`') ADVANCE(236); - if (lookahead == 'e') ADVANCE(243); + if (lookahead == '`') ADVANCE(240); + if (lookahead == 'e') ADVANCE(247); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(25) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(270); + lookahead != ')') ADVANCE(274); END_STATE(); case 26: if (lookahead == '\n') ADVANCE(127); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(102); - if (lookahead == '`') ADVANCE(236); - if (lookahead == 'e') ADVANCE(267); + if (lookahead == '`') ADVANCE(240); + if (lookahead == 'e') ADVANCE(271); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(270); + lookahead != ')') ADVANCE(274); END_STATE(); case 27: if (lookahead == '\n') ADVANCE(128); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(258); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '0') ADVANCE(262); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(103); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && - lookahead != '(') ADVANCE(270); + lookahead != '(') ADVANCE(274); END_STATE(); case 28: if (lookahead == '\n') ADVANCE(129); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(272); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(276); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(258); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '0') ADVANCE(262); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(108); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(240); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 29: if (lookahead == '\n') ADVANCE(130); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(258); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '0') ADVANCE(262); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(263); + if (lookahead == '=') ADVANCE(267); if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(110); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '`') ADVANCE(236); - if (lookahead == 'e') ADVANCE(243); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(240); + if (lookahead == 'e') ADVANCE(247); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(270); + lookahead != ')') ADVANCE(274); END_STATE(); case 30: if (lookahead == '\n') ADVANCE(131); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(258); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '0') ADVANCE(262); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(178); if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(111); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '`') ADVANCE(236); - if (lookahead == 'e') ADVANCE(243); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(240); + if (lookahead == 'e') ADVANCE(247); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(270); + lookahead != ')') ADVANCE(274); END_STATE(); case 31: if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(274); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '%') ADVANCE(237); + if (lookahead == '&') ADVANCE(278); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '/') ADVANCE(230); - if (lookahead == '0') ADVANCE(257); - if (lookahead == ':') ADVANCE(231); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(261); + if (lookahead == ':') ADVANCE(234); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(179); if (lookahead == '=') ADVANCE(171); if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(163); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '`') ADVANCE(236); - if (lookahead == 'e') ADVANCE(267); - if (lookahead == 'i') ADVANCE(266); + if (lookahead == '_') ADVANCE(265); + if (lookahead == '`') ADVANCE(240); + if (lookahead == 'e') ADVANCE(271); + if (lookahead == 'i') ADVANCE(270); if (lookahead == '{') ADVANCE(151); if (lookahead == '|') ADVANCE(144); if (lookahead == '}') ADVANCE(152); @@ -1874,209 +1886,209 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); - if (lookahead != 0) ADVANCE(270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 32: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '%') ADVANCE(234); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '%') ADVANCE(237); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(231); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '0') ADVANCE(262); + if (lookahead == ':') ADVANCE(234); if (lookahead == '<') ADVANCE(59); if (lookahead == '=') ADVANCE(173); if (lookahead == '>') ADVANCE(60); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(213); + lookahead == '{') ADVANCE(216); if (lookahead == '\\') ADVANCE(106); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(240); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 33: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(258); + if (lookahead == '*') ADVANCE(256); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '0') ADVANCE(262); if (lookahead == '<') ADVANCE(177); if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(256); - if (lookahead == '@') ADVANCE(254); + if (lookahead == '?') ADVANCE(260); + if (lookahead == '@') ADVANCE(258); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(101); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(240); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(33) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '(' && lookahead != ';' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 34: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(62); if (lookahead == '<') ADVANCE(177); if (lookahead == '>') ADVANCE(183); if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(73); if (lookahead == ']' || - lookahead == '}') ADVANCE(213); - if (lookahead == '`') ADVANCE(236); + lookahead == '}') ADVANCE(216); + if (lookahead == '`') ADVANCE(240); if (lookahead == '{') ADVANCE(151); if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(34) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); - if (lookahead != 0) ADVANCE(270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 35: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == ';') ADVANCE(62); if (lookahead == '<') ADVANCE(177); if (lookahead == '>') ADVANCE(183); if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(98); if (lookahead == ']' || - lookahead == '}') ADVANCE(213); - if (lookahead == '`') ADVANCE(236); - if (lookahead == 'e') ADVANCE(267); + lookahead == '}') ADVANCE(216); + if (lookahead == '`') ADVANCE(240); + if (lookahead == 'e') ADVANCE(271); if (lookahead == '{') ADVANCE(151); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 36: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == '<') ADVANCE(177); if (lookahead == '>') ADVANCE(183); if (lookahead == '[') ADVANCE(161); - if (lookahead == '\\') ADVANCE(79); - if (lookahead == ']') ADVANCE(213); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '`') ADVANCE(240); if (lookahead == '{') ADVANCE(151); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 37: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); if (lookahead == ')') ADVANCE(61); - if (lookahead == '-') ADVANCE(269); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '-') ADVANCE(273); + if (lookahead == '0') ADVANCE(226); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == '`') ADVANCE(236); + lookahead == '}') ADVANCE(216); + if (lookahead == '\\') ADVANCE(77); + if (lookahead == '`') ADVANCE(240); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(37) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != '&' && lookahead != ';' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 38: if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(210); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(212); if (lookahead == '&') ADVANCE(54); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(259); + if (lookahead == '*') ADVANCE(255); + if (lookahead == '+') ADVANCE(198); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(263); if (lookahead == '<') ADVANCE(181); if (lookahead == '=') ADVANCE(172); if (lookahead == '>') ADVANCE(185); - if (lookahead == '?') ADVANCE(255); - if (lookahead == '@') ADVANCE(253); - if (lookahead == '\\') SKIP(76) + if (lookahead == '?') ADVANCE(259); + if (lookahead == '@') ADVANCE(257); + if (lookahead == '\\') SKIP(81) if (lookahead == ']') ADVANCE(66); - if (lookahead == '_') ADVANCE(262); - if (lookahead == '|') ADVANCE(145); + if (lookahead == '_') ADVANCE(266); + if (lookahead == '|') ADVANCE(71); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || @@ -2084,100 +2096,105 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(38) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 39: if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(210); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(212); if (lookahead == '&') ADVANCE(54); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(259); + if (lookahead == ')') ADVANCE(146); + if (lookahead == '*') ADVANCE(255); + if (lookahead == '+') ADVANCE(198); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(263); if (lookahead == '<') ADVANCE(181); if (lookahead == '=') ADVANCE(172); if (lookahead == '>') ADVANCE(185); - if (lookahead == '?') ADVANCE(255); - if (lookahead == '@') ADVANCE(253); + if (lookahead == '?') ADVANCE(259); + if (lookahead == '@') ADVANCE(257); if (lookahead == '\\') SKIP(105) if (lookahead == ']') ADVANCE(162); - if (lookahead == '_') ADVANCE(262); - if (lookahead == '|') ADVANCE(71); + if (lookahead == '_') ADVANCE(266); + if (lookahead == '|') ADVANCE(145); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(39) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 40: if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '0') ADVANCE(259); - if (lookahead == '?') ADVANCE(255); - if (lookahead == '@') ADVANCE(253); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == '_') ADVANCE(262); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '*') ADVANCE(255); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(263); + if (lookahead == '?') ADVANCE(259); + if (lookahead == '@') ADVANCE(257); + if (lookahead == '\\') ADVANCE(85); + if (lookahead == '_') ADVANCE(266); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(217); + lookahead == ' ') ADVANCE(220); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); if (lookahead != 0 && - lookahead != '`') ADVANCE(219); + lookahead != '`') ADVANCE(222); END_STATE(); case 41: if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(210); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(212); if (lookahead == '&') ADVANCE(54); if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '0') ADVANCE(259); + if (lookahead == '*') ADVANCE(255); + if (lookahead == '+') ADVANCE(198); + if (lookahead == '-') ADVANCE(201); + if (lookahead == '0') ADVANCE(263); if (lookahead == '<') ADVANCE(181); if (lookahead == '=') ADVANCE(172); if (lookahead == '>') ADVANCE(185); - if (lookahead == '?') ADVANCE(255); - if (lookahead == '@') ADVANCE(253); + if (lookahead == '?') ADVANCE(259); + if (lookahead == '@') ADVANCE(257); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') SKIP(86) - if (lookahead == ']') ADVANCE(214); - if (lookahead == '_') ADVANCE(262); - if (lookahead == '|') ADVANCE(145); + if (lookahead == ']') ADVANCE(217); + if (lookahead == '_') ADVANCE(266); + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(41) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 42: if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(240); + if (lookahead == '#') ADVANCE(244); if (lookahead == '&') ADVANCE(54); if (lookahead == ')') ADVANCE(146); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '-') ADVANCE(200); + if (lookahead == '+') ADVANCE(198); + if (lookahead == '-') ADVANCE(201); if (lookahead == '<') ADVANCE(181); if (lookahead == '=') ADVANCE(172); if (lookahead == '>') ADVANCE(185); - if (lookahead == '\\') SKIP(92) + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{') ADVANCE(216); + if (lookahead == '\\') SKIP(90) if (lookahead == '|') ADVANCE(71); + if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2185,18 +2202,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 43: if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(240); + if (lookahead == '#') ADVANCE(244); if (lookahead == '&') ADVANCE(54); if (lookahead == ')') ADVANCE(61); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '-') ADVANCE(200); + if (lookahead == '+') ADVANCE(198); + if (lookahead == '-') ADVANCE(201); if (lookahead == ';') ADVANCE(62); if (lookahead == '<') ADVANCE(181); if (lookahead == '=') ADVANCE(172); if (lookahead == '>') ADVANCE(185); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') SKIP(87) if (lookahead == ']') ADVANCE(162); if (lookahead == 'e') ADVANCE(70); @@ -2208,208 +2225,210 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(43) END_STATE(); case 44: - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '%') ADVANCE(234); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '%') ADVANCE(237); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '/') ADVANCE(230); - if (lookahead == '0') ADVANCE(223); - if (lookahead == ':') ADVANCE(231); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '0') ADVANCE(226); + if (lookahead == ':') ADVANCE(234); if (lookahead == '<') ADVANCE(59); if (lookahead == '=') ADVANCE(173); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(213); - if (lookahead == '\\') ADVANCE(85); - if (lookahead == '`') ADVANCE(236); + lookahead == '{') ADVANCE(216); + if (lookahead == '\\') ADVANCE(88); + if (lookahead == '`') ADVANCE(240); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(44) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 45: - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(211); - if (lookahead == '%') ADVANCE(234); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '%') ADVANCE(237); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(223); - if (lookahead == ':') ADVANCE(231); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '0') ADVANCE(226); + if (lookahead == ':') ADVANCE(234); if (lookahead == '<') ADVANCE(59); if (lookahead == '=') ADVANCE(173); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(213); - if (lookahead == '\\') ADVANCE(90); - if (lookahead == '`') ADVANCE(236); + lookahead == '{') ADVANCE(216); + if (lookahead == '\\') ADVANCE(91); + if (lookahead == '`') ADVANCE(240); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(45) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 46: - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == '<') ADVANCE(177); if (lookahead == '>') ADVANCE(183); if (lookahead == '[') ADVANCE(161); - if (lookahead == '\\') ADVANCE(81); + if (lookahead == '\\') ADVANCE(82); if (lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); - if (lookahead == '`') ADVANCE(236); + lookahead == '}') ADVANCE(216); + if (lookahead == '`') ADVANCE(240); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(46) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 47: - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == '<') ADVANCE(177); if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '`') ADVANCE(240); if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(47) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && - lookahead != ';') ADVANCE(270); + lookahead != ';') ADVANCE(274); END_STATE(); case 48: - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(213); - if (lookahead == '\\') ADVANCE(91); - if (lookahead == '`') ADVANCE(236); + lookahead == '{') ADVANCE(216); + if (lookahead == '\\') ADVANCE(92); + if (lookahead == '`') ADVANCE(240); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(48) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 49: - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(96); if (lookahead == ']') ADVANCE(162); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '`') ADVANCE(240); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(49) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 50: - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(240); - if (lookahead == '$') ADVANCE(211); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(213); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(223); + if (lookahead == '0') ADVANCE(226); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(213); + lookahead == '}') ADVANCE(216); if (lookahead == '\\') ADVANCE(95); - if (lookahead == '`') ADVANCE(236); - if (lookahead == 'e') ADVANCE(267); + if (lookahead == '`') ADVANCE(240); + if (lookahead == 'e') ADVANCE(271); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(50) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 51: - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(216); - if (lookahead == '$') ADVANCE(212); - if (lookahead == '\\') ADVANCE(83); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(219); + if (lookahead == '$') ADVANCE(214); + if (lookahead == '\\') ADVANCE(76); + if (lookahead == '`') ADVANCE(240); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(218); - if (lookahead != 0) ADVANCE(219); + lookahead == ' ') ADVANCE(221); + if (lookahead != 0) ADVANCE(222); END_STATE(); case 52: - if (lookahead == '#') ADVANCE(240); + if (lookahead == '#') ADVANCE(244); + if (lookahead == '$') ADVANCE(215); if (lookahead == '&') ADVANCE(65); if (lookahead == '(') ADVANCE(149); if (lookahead == ';') ADVANCE(137); if (lookahead == '<') ADVANCE(176); if (lookahead == '>') ADVANCE(184); - if (lookahead == '\\') ADVANCE(78); + if (lookahead == '\\') ADVANCE(79); if (lookahead == ']') ADVANCE(162); + if (lookahead == '`') ADVANCE(240); if (lookahead == '{') ADVANCE(151); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || @@ -2417,19 +2436,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(52) if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && + lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '[' && - lookahead != '`' && - lookahead != '|') ADVANCE(270); + lookahead != '|') ADVANCE(274); END_STATE(); case 53: - if (lookahead == '#') ADVANCE(240); + if (lookahead == '#') ADVANCE(244); if (lookahead == '(') ADVANCE(58); if (lookahead == '+') ADVANCE(64); if (lookahead == '=') ADVANCE(170); if (lookahead == '[') ADVANCE(160); - if (lookahead == '\\') SKIP(82) + if (lookahead == '\\') SKIP(83) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2437,22 +2455,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 54: if (lookahead == '&') ADVANCE(154); END_STATE(); case 55: - if (lookahead == '\'') ADVANCE(220); + if (lookahead == '\'') ADVANCE(223); if (lookahead != 0) ADVANCE(55); END_STATE(); case 56: - if (lookahead == '\'') ADVANCE(221); + if (lookahead == '\'') ADVANCE(224); if (lookahead == '\\') ADVANCE(57); if (lookahead != 0) ADVANCE(56); END_STATE(); case 57: - if (lookahead == '\'') ADVANCE(222); + if (lookahead == '\'') ADVANCE(225); if (lookahead == '\\') ADVANCE(57); if (lookahead != 0) ADVANCE(56); END_STATE(); @@ -2460,10 +2478,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(135); END_STATE(); case 59: - if (lookahead == '(') ADVANCE(237); + if (lookahead == '(') ADVANCE(241); END_STATE(); case 60: - if (lookahead == '(') ADVANCE(238); + if (lookahead == '(') ADVANCE(242); END_STATE(); case 61: if (lookahead == ')') ADVANCE(136); @@ -2472,7 +2490,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(148); END_STATE(); case 63: - if (lookahead == '=') ADVANCE(194); + if (lookahead == '=') ADVANCE(195); END_STATE(); case 64: if (lookahead == '=') ADVANCE(174); @@ -2503,96 +2521,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 73: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(34) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 74: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(47) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 75: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 76: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(38) + lookahead == ' ') ADVANCE(221); + if (lookahead != 0) ADVANCE(222); END_STATE(); case 77: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(20) - if (lookahead != 0) ADVANCE(270); + lookahead == ' ') SKIP(37) + if (lookahead != 0) ADVANCE(274); END_STATE(); case 78: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(52) - if (lookahead != 0) ADVANCE(270); + lookahead == ' ') SKIP(20) + if (lookahead != 0) ADVANCE(274); END_STATE(); case 79: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(36) - if (lookahead != 0) ADVANCE(270); + lookahead == ' ') SKIP(52) + if (lookahead != 0) ADVANCE(274); END_STATE(); case 80: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(37) - if (lookahead != 0) ADVANCE(270); + lookahead == ' ') SKIP(36) + if (lookahead != 0) ADVANCE(274); END_STATE(); case 81: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(46) - if (lookahead != 0) ADVANCE(270); + lookahead == ' ') SKIP(38) END_STATE(); case 82: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(53) + lookahead == ' ') SKIP(46) + if (lookahead != 0) ADVANCE(274); END_STATE(); case 83: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(218); - if (lookahead != 0) ADVANCE(219); + lookahead == ' ') SKIP(53) END_STATE(); case 84: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 85: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(44) - if (lookahead != 0) ADVANCE(270); + lookahead == ' ') ADVANCE(220); + if (lookahead != 0) ADVANCE(222); END_STATE(); case 86: if (lookahead == '\t' || @@ -2610,35 +2628,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(217); - if (lookahead != 0) ADVANCE(219); + lookahead == ' ') SKIP(44) + if (lookahead != 0) ADVANCE(274); END_STATE(); case 89: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 90: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(45) - if (lookahead != 0) ADVANCE(270); + lookahead == ' ') SKIP(42) END_STATE(); case 91: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(48) - if (lookahead != 0) ADVANCE(270); + lookahead == ' ') SKIP(45) + if (lookahead != 0) ADVANCE(274); END_STATE(); case 92: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(42) + lookahead == ' ') SKIP(48) + if (lookahead != 0) ADVANCE(274); END_STATE(); case 93: if (lookahead == '\t' || @@ -2651,70 +2669,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 95: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(50) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 96: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(49) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 97: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(23) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 98: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 99: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 100: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(25) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 101: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(33) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 102: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 103: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 104: if (lookahead == '\t' || @@ -2733,7 +2751,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 107: if (lookahead == '\t' || @@ -2746,7 +2764,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 109: if (lookahead == '\t' || @@ -2759,14 +2777,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 111: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (lookahead != 0) ADVANCE(270); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 112: if (lookahead == '\t' || @@ -2778,17 +2796,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(230); END_STATE(); case 114: - if (lookahead != 0) ADVANCE(219); + if (lookahead != 0) ADVANCE(222); END_STATE(); case 115: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(270); + lookahead != ' ') ADVANCE(274); END_STATE(); case 116: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -2805,18 +2823,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 119: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(119); - if (lookahead == '-') ADVANCE(269); + if (lookahead == '-') ADVANCE(273); if (lookahead == '\\') ADVANCE(89); END_STATE(); case 120: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(120); - if (lookahead == '-') ADVANCE(200); + if (lookahead == '-') ADVANCE(201); END_STATE(); case 121: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(121); - if (lookahead == '\\') ADVANCE(77); + if (lookahead == '\\') ADVANCE(78); END_STATE(); case 122: ACCEPT_TOKEN(anon_sym_LF); @@ -2886,14 +2904,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); case 134: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 135: ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); @@ -2917,7 +2935,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2929,7 +2947,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); case 141: ACCEPT_TOKEN(anon_sym_esac); @@ -2946,14 +2964,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); case 142: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 143: ACCEPT_TOKEN(anon_sym_PIPE); @@ -3004,7 +3022,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(195); + if (lookahead == '=') ADVANCE(196); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && @@ -3016,11 +3034,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(194); + if (lookahead == '=') ADVANCE(195); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_BANG); @@ -3037,7 +3055,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); case 160: ACCEPT_TOKEN(anon_sym_LBRACK); @@ -3077,7 +3095,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); case 168: ACCEPT_TOKEN(anon_sym_EQ_EQ); @@ -3097,7 +3115,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); case 170: ACCEPT_TOKEN(anon_sym_EQ); @@ -3117,7 +3135,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); case 172: ACCEPT_TOKEN(anon_sym_EQ); @@ -3139,7 +3157,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); case 174: ACCEPT_TOKEN(anon_sym_PLUS_EQ); @@ -3159,7 +3177,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); case 176: ACCEPT_TOKEN(anon_sym_LT); @@ -3168,41 +3186,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 177: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(237); + if (lookahead == '(') ADVANCE(241); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(237); - if (lookahead == '<') ADVANCE(191); + if (lookahead == '(') ADVANCE(241); + if (lookahead == '<') ADVANCE(192); END_STATE(); case 179: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(237); - if (lookahead == '<') ADVANCE(191); - if (lookahead == '=') ADVANCE(204); + if (lookahead == '(') ADVANCE(241); + if (lookahead == '<') ADVANCE(192); + if (lookahead == '=') ADVANCE(205); END_STATE(); case 180: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(189); - if (lookahead == '<') ADVANCE(191); + if (lookahead == '<') ADVANCE(192); END_STATE(); case 181: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(204); + if (lookahead == '<') ADVANCE(191); + if (lookahead == '=') ADVANCE(205); END_STATE(); case 182: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') ADVANCE(190); - if (lookahead == '(') ADVANCE(238); - if (lookahead == '=') ADVANCE(205); + if (lookahead == '(') ADVANCE(242); + if (lookahead == '=') ADVANCE(206); if (lookahead == '>') ADVANCE(186); END_STATE(); case 183: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') ADVANCE(190); - if (lookahead == '(') ADVANCE(238); + if (lookahead == '(') ADVANCE(242); if (lookahead == '>') ADVANCE(186); END_STATE(); case 184: @@ -3212,7 +3231,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 185: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(205); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(186); END_STATE(); case 186: ACCEPT_TOKEN(anon_sym_GT_GT); @@ -3232,19 +3252,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 191: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '<') ADVANCE(193); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(193); + if (lookahead == '<') ADVANCE(194); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 195: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 196: ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3259,11 +3282,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 196: + case 197: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(207); + if (lookahead == '+') ADVANCE(208); if (lookahead == '=') ADVANCE(175); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3276,23 +3299,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 197: + case 198: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(206); + if (lookahead == '+') ADVANCE(207); if (lookahead == '=') ADVANCE(174); END_STATE(); - case 198: + case 199: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 199: + case 200: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(209); - if (lookahead == '=') ADVANCE(203); + if (lookahead == '-') ADVANCE(210); + if (lookahead == '=') ADVANCE(204); if (lookahead == '\\') ADVANCE(115); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3302,16 +3325,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 200: + case 201: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(208); - if (lookahead == '=') ADVANCE(202); + if (lookahead == '-') ADVANCE(209); + if (lookahead == '=') ADVANCE(203); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 201: + case 202: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3326,12 +3349,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 202: + case 203: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 203: + case 204: ACCEPT_TOKEN(anon_sym_DASH_EQ); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3346,18 +3369,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 204: + case 205: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 205: + case 206: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 206: + case 207: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 207: + case 208: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3372,12 +3395,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 208: + case 209: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 209: + case 210: ACCEPT_TOKEN(anon_sym_DASH_DASH); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3392,103 +3415,111 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 210: + case 211: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); + END_STATE(); + case 212: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 211: + case 213: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '\'') ADVANCE(56); - if (lookahead == '(') ADVANCE(235); - if (lookahead == '{') ADVANCE(229); + if (lookahead == '(') ADVANCE(239); + if (lookahead == '{') ADVANCE(232); END_STATE(); - case 212: + case 214: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(235); - if (lookahead == '{') ADVANCE(229); + if (lookahead == '(') ADVANCE(239); + if (lookahead == '{') ADVANCE(232); END_STATE(); - case 213: + case 215: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(238); + if (lookahead == '{') ADVANCE(232); + END_STATE(); + case 216: ACCEPT_TOKEN(sym__special_character); END_STATE(); - case 214: + case 217: ACCEPT_TOKEN(sym__special_character); if (lookahead == ']') ADVANCE(165); END_STATE(); - case 215: + case 218: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 216: + case 219: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(219); - if (lookahead == '\\') ADVANCE(239); + if (lookahead == '\n') ADVANCE(222); + if (lookahead == '\\') ADVANCE(243); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(216); + lookahead != '`') ADVANCE(219); END_STATE(); - case 217: + case 220: ACCEPT_TOKEN(sym__string_content); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(228); - if (lookahead == '$') ADVANCE(210); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '0') ADVANCE(259); - if (lookahead == '?') ADVANCE(255); - if (lookahead == '@') ADVANCE(253); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == '_') ADVANCE(262); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '*') ADVANCE(255); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(263); + if (lookahead == '?') ADVANCE(259); + if (lookahead == '@') ADVANCE(257); + if (lookahead == '\\') ADVANCE(85); + if (lookahead == '_') ADVANCE(266); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(217); + lookahead == ' ') ADVANCE(220); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); if (lookahead != 0 && - lookahead != '`') ADVANCE(219); + lookahead != '`') ADVANCE(222); END_STATE(); - case 218: + case 221: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '"') ADVANCE(215); - if (lookahead == '#') ADVANCE(216); - if (lookahead == '$') ADVANCE(212); - if (lookahead == '\\') ADVANCE(83); - if (lookahead == '`') ADVANCE(236); + if (lookahead == '"') ADVANCE(218); + if (lookahead == '#') ADVANCE(219); + if (lookahead == '$') ADVANCE(214); + if (lookahead == '\\') ADVANCE(76); + if (lookahead == '`') ADVANCE(240); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(218); - if (lookahead != 0) ADVANCE(219); + lookahead == ' ') ADVANCE(221); + if (lookahead != 0) ADVANCE(222); END_STATE(); - case 219: + case 222: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\\') ADVANCE(114); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(219); + lookahead != '`') ADVANCE(222); END_STATE(); - case 220: + case 223: ACCEPT_TOKEN(sym_raw_string); END_STATE(); - case 221: + case 224: ACCEPT_TOKEN(sym_ansii_c_string); END_STATE(); - case 222: + case 225: ACCEPT_TOKEN(sym_ansii_c_string); - if (lookahead == '\'') ADVANCE(221); + if (lookahead == '\'') ADVANCE(224); if (lookahead == '\\') ADVANCE(57); if (lookahead != 0) ADVANCE(56); END_STATE(); - case 223: + case 226: ACCEPT_TOKEN(sym_number); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'x') ADVANCE(268); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead == 'x') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3501,17 +3532,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 224: + case 227: ACCEPT_TOKEN(sym_number); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'x') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (lookahead == 'x') ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3523,13 +3554,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 225: + case 228: ACCEPT_TOKEN(sym_number); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3542,16 +3573,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 226: + case 229: ACCEPT_TOKEN(sym_number); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3563,28 +3594,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 227: + case 230: ACCEPT_TOKEN(sym_number); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(230); END_STATE(); - case 228: + case 231: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 229: + case 232: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 230: + case 233: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 231: + case 234: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(233); - if (lookahead == '?') ADVANCE(232); + if (lookahead == '-') ADVANCE(236); + if (lookahead == '?') ADVANCE(235); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && @@ -3598,9 +3629,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 232: + case 235: ACCEPT_TOKEN(anon_sym_COLON_QMARK); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3615,9 +3646,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 233: + case 236: ACCEPT_TOKEN(anon_sym_COLON_DASH); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3632,9 +3663,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 234: + case 237: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3649,38 +3680,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 235: + case 238: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 236: + case 239: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + if (lookahead == '(') ADVANCE(211); + END_STATE(); + case 240: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 237: + case 241: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 238: + case 242: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 239: + case 243: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(219); - if (lookahead != 0) ADVANCE(216); + if (lookahead == '\n') ADVANCE(222); + if (lookahead != 0) ADVANCE(219); END_STATE(); - case 240: + case 244: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(240); + lookahead != '\n') ADVANCE(244); END_STATE(); - case 241: + case 245: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'a') ADVANCE(242); + if (lookahead == 'a') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3692,16 +3727,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 242: + case 246: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(115); if (lookahead == 'c') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3713,16 +3748,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 243: + case 247: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 's') ADVANCE(241); + if (lookahead == 's') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3734,15 +3769,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 244: + case 248: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3754,15 +3789,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 245: + case 249: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3774,51 +3809,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 246: + case 250: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(247); + if (lookahead == 'a') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); - case 247: + case 251: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == 'c') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); - case 248: + case 252: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == 'n') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); - case 249: + case 253: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(246); + if (lookahead == 's') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); - case 250: + case 254: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); - case 251: + case 255: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 252: + case 256: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3833,12 +3868,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 253: + case 257: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 254: + case 258: ACCEPT_TOKEN(anon_sym_AT); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3853,12 +3888,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 255: + case 259: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 256: + case 260: ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3873,14 +3908,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 257: + case 261: ACCEPT_TOKEN(anon_sym_0); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'x') ADVANCE(268); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead == 'x') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3893,17 +3928,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 258: + case 262: ACCEPT_TOKEN(anon_sym_0); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'x') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (lookahead == 'x') ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3915,22 +3950,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 259: + case 263: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); - case 260: + case 264: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3942,9 +3977,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 261: + case 265: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3959,16 +3994,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 262: + case 266: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); - case 263: + case 267: ACCEPT_TOKEN(sym_word); if (lookahead == '=') ADVANCE(169); if (lookahead == '\\') ADVANCE(115); @@ -3983,12 +4018,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 264: + case 268: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'a') ADVANCE(269); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4001,9 +4036,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 265: + case 269: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); if (lookahead == 'c') ADVANCE(141); @@ -4019,9 +4054,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 266: + case 270: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); if (lookahead == 'n') ADVANCE(133); @@ -4037,12 +4072,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 267: + case 271: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 's') ADVANCE(264); + if (lookahead == 's') ADVANCE(268); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4055,12 +4090,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 268: + case 272: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4073,13 +4108,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 269: + case 273: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4091,9 +4126,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(270); + (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 270: + case 274: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -4108,21 +4143,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(270); + (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 271: + case 275: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); - case 272: + case 276: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 273: + case 277: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(154); END_STATE(); - case 274: + case 278: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(154); if (lookahead == '>') ADVANCE(187); @@ -4400,96 +4435,96 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3] = {.lex_state = 47}, [4] = {.lex_state = 1, .external_lex_state = 3}, [5] = {.lex_state = 1, .external_lex_state = 4}, - [6] = {.lex_state = 38}, - [7] = {.lex_state = 9, .external_lex_state = 2}, + [6] = {.lex_state = 51}, + [7] = {.lex_state = 37}, [8] = {.lex_state = 9, .external_lex_state = 2}, - [9] = {.lex_state = 5, .external_lex_state = 5}, - [10] = {.lex_state = 38, .external_lex_state = 6}, + [9] = {.lex_state = 9, .external_lex_state = 2}, + [10] = {.lex_state = 5, .external_lex_state = 5}, [11] = {.lex_state = 52}, - [12] = {.lex_state = 5, .external_lex_state = 5}, - [13] = {.lex_state = 36, .external_lex_state = 7}, - [14] = {.lex_state = 5, .external_lex_state = 5}, - [15] = {.lex_state = 9, .external_lex_state = 2}, - [16] = {.lex_state = 47}, - [17] = {.lex_state = 37}, + [12] = {.lex_state = 36, .external_lex_state = 6}, + [13] = {.lex_state = 38}, + [14] = {.lex_state = 9, .external_lex_state = 2}, + [15] = {.lex_state = 47}, + [16] = {.lex_state = 37}, + [17] = {.lex_state = 38, .external_lex_state = 7}, [18] = {.lex_state = 46, .external_lex_state = 2}, [19] = {.lex_state = 53}, [20] = {.lex_state = 52}, - [21] = {.lex_state = 51}, - [22] = {.lex_state = 9, .external_lex_state = 2}, - [23] = {.lex_state = 53}, - [24] = {.lex_state = 9, .external_lex_state = 2}, - [25] = {.lex_state = 37}, + [21] = {.lex_state = 5, .external_lex_state = 5}, + [22] = {.lex_state = 5, .external_lex_state = 5}, + [23] = {.lex_state = 9, .external_lex_state = 2}, + [24] = {.lex_state = 53}, + [25] = {.lex_state = 9, .external_lex_state = 2}, [26] = {.lex_state = 37}, - [27] = {.lex_state = 5, .external_lex_state = 4}, + [27] = {.lex_state = 37}, [28] = {.lex_state = 3, .external_lex_state = 4}, [29] = {.lex_state = 6, .external_lex_state = 3}, [30] = {.lex_state = 53}, - [31] = {.lex_state = 5, .external_lex_state = 4}, - [32] = {.lex_state = 9, .external_lex_state = 2}, + [31] = {.lex_state = 9, .external_lex_state = 2}, + [32] = {.lex_state = 5, .external_lex_state = 4}, [33] = {.lex_state = 9}, - [34] = {.lex_state = 47, .external_lex_state = 2}, - [35] = {.lex_state = 9}, - [36] = {.lex_state = 5, .external_lex_state = 4}, - [37] = {.lex_state = 9}, - [38] = {.lex_state = 47, .external_lex_state = 8}, - [39] = {.lex_state = 47, .external_lex_state = 2}, + [34] = {.lex_state = 5, .external_lex_state = 4}, + [35] = {.lex_state = 47, .external_lex_state = 2}, + [36] = {.lex_state = 9}, + [37] = {.lex_state = 5, .external_lex_state = 4}, + [38] = {.lex_state = 9}, + [39] = {.lex_state = 47, .external_lex_state = 8}, [40] = {.lex_state = 47, .external_lex_state = 2}, - [41] = {.lex_state = 1, .external_lex_state = 9}, - [42] = {.lex_state = 1, .external_lex_state = 3}, + [41] = {.lex_state = 47, .external_lex_state = 2}, + [42] = {.lex_state = 1, .external_lex_state = 9}, [43] = {.lex_state = 1, .external_lex_state = 3}, - [44] = {.lex_state = 1, .external_lex_state = 5}, - [45] = {.lex_state = 1, .external_lex_state = 4}, + [44] = {.lex_state = 1, .external_lex_state = 3}, + [45] = {.lex_state = 1, .external_lex_state = 5}, [46] = {.lex_state = 1, .external_lex_state = 4}, - [47] = {.lex_state = 5, .external_lex_state = 5}, - [48] = {.lex_state = 5, .external_lex_state = 5}, - [49] = {.lex_state = 5, .external_lex_state = 5}, - [50] = {.lex_state = 9}, - [51] = {.lex_state = 9}, - [52] = {.lex_state = 47}, - [53] = {.lex_state = 5, .external_lex_state = 5}, - [54] = {.lex_state = 44, .external_lex_state = 10}, - [55] = {.lex_state = 41, .external_lex_state = 6}, - [56] = {.lex_state = 53}, - [57] = {.lex_state = 44, .external_lex_state = 10}, - [58] = {.lex_state = 52}, + [47] = {.lex_state = 1, .external_lex_state = 4}, + [48] = {.lex_state = 51, .external_lex_state = 10}, + [49] = {.lex_state = 40}, + [50] = {.lex_state = 5, .external_lex_state = 5}, + [51] = {.lex_state = 51}, + [52] = {.lex_state = 37}, + [53] = {.lex_state = 41, .external_lex_state = 11}, + [54] = {.lex_state = 37}, + [55] = {.lex_state = 41, .external_lex_state = 12}, + [56] = {.lex_state = 43, .external_lex_state = 12}, + [57] = {.lex_state = 47, .external_lex_state = 2}, + [58] = {.lex_state = 9}, [59] = {.lex_state = 9}, - [60] = {.lex_state = 3, .external_lex_state = 4}, - [61] = {.lex_state = 3, .external_lex_state = 4}, - [62] = {.lex_state = 6, .external_lex_state = 3}, - [63] = {.lex_state = 36, .external_lex_state = 7}, - [64] = {.lex_state = 52}, - [65] = {.lex_state = 3, .external_lex_state = 4}, - [66] = {.lex_state = 6, .external_lex_state = 3}, - [67] = {.lex_state = 4, .external_lex_state = 11}, - [68] = {.lex_state = 4, .external_lex_state = 12}, - [69] = {.lex_state = 4, .external_lex_state = 12}, - [70] = {.lex_state = 37}, - [71] = {.lex_state = 41, .external_lex_state = 13}, - [72] = {.lex_state = 37}, - [73] = {.lex_state = 41}, - [74] = {.lex_state = 43}, - [75] = {.lex_state = 3, .external_lex_state = 4}, - [76] = {.lex_state = 47, .external_lex_state = 14}, - [77] = {.lex_state = 47}, - [78] = {.lex_state = 47}, - [79] = {.lex_state = 40}, - [80] = {.lex_state = 5, .external_lex_state = 5}, - [81] = {.lex_state = 51, .external_lex_state = 13}, - [82] = {.lex_state = 51}, - [83] = {.lex_state = 47, .external_lex_state = 2}, - [84] = {.lex_state = 9}, - [85] = {.lex_state = 17, .external_lex_state = 15}, - [86] = {.lex_state = 4, .external_lex_state = 12}, - [87] = {.lex_state = 52}, - [88] = {.lex_state = 43, .external_lex_state = 16}, - [89] = {.lex_state = 41}, - [90] = {.lex_state = 5, .external_lex_state = 4}, - [91] = {.lex_state = 5, .external_lex_state = 4}, + [60] = {.lex_state = 47}, + [61] = {.lex_state = 5, .external_lex_state = 5}, + [62] = {.lex_state = 52}, + [63] = {.lex_state = 3, .external_lex_state = 4}, + [64] = {.lex_state = 3, .external_lex_state = 4}, + [65] = {.lex_state = 6, .external_lex_state = 3}, + [66] = {.lex_state = 36, .external_lex_state = 6}, + [67] = {.lex_state = 5, .external_lex_state = 5}, + [68] = {.lex_state = 5, .external_lex_state = 5}, + [69] = {.lex_state = 5, .external_lex_state = 5}, + [70] = {.lex_state = 52}, + [71] = {.lex_state = 3, .external_lex_state = 4}, + [72] = {.lex_state = 6, .external_lex_state = 3}, + [73] = {.lex_state = 4, .external_lex_state = 13}, + [74] = {.lex_state = 4, .external_lex_state = 14}, + [75] = {.lex_state = 4, .external_lex_state = 14}, + [76] = {.lex_state = 43, .external_lex_state = 12}, + [77] = {.lex_state = 44, .external_lex_state = 15}, + [78] = {.lex_state = 41, .external_lex_state = 7}, + [79] = {.lex_state = 53}, + [80] = {.lex_state = 44, .external_lex_state = 15}, + [81] = {.lex_state = 3, .external_lex_state = 4}, + [82] = {.lex_state = 47, .external_lex_state = 16}, + [83] = {.lex_state = 47}, + [84] = {.lex_state = 47}, + [85] = {.lex_state = 9}, + [86] = {.lex_state = 9}, + [87] = {.lex_state = 4, .external_lex_state = 14}, + [88] = {.lex_state = 17, .external_lex_state = 17}, + [89] = {.lex_state = 52}, + [90] = {.lex_state = 43, .external_lex_state = 18}, + [91] = {.lex_state = 41, .external_lex_state = 12}, [92] = {.lex_state = 9, .external_lex_state = 2}, - [93] = {.lex_state = 9, .external_lex_state = 2}, - [94] = {.lex_state = 9, .external_lex_state = 17}, - [95] = {.lex_state = 9, .external_lex_state = 18}, + [93] = {.lex_state = 9, .external_lex_state = 19}, + [94] = {.lex_state = 9, .external_lex_state = 2}, + [95] = {.lex_state = 9, .external_lex_state = 20}, [96] = {.lex_state = 9, .external_lex_state = 2}, [97] = {.lex_state = 47}, [98] = {.lex_state = 3, .external_lex_state = 4}, @@ -4497,2550 +4532,2702 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [100] = {.lex_state = 6, .external_lex_state = 3}, [101] = {.lex_state = 9, .external_lex_state = 2}, [102] = {.lex_state = 5, .external_lex_state = 4}, - [103] = {.lex_state = 47, .external_lex_state = 2}, - [104] = {.lex_state = 47, .external_lex_state = 19}, - [105] = {.lex_state = 5, .external_lex_state = 5}, - [106] = {.lex_state = 5, .external_lex_state = 4}, - [107] = {.lex_state = 5, .external_lex_state = 4}, - [108] = {.lex_state = 3, .external_lex_state = 4}, - [109] = {.lex_state = 1, .external_lex_state = 3}, - [110] = {.lex_state = 1, .external_lex_state = 4}, - [111] = {.lex_state = 5, .external_lex_state = 5}, - [112] = {.lex_state = 5, .external_lex_state = 5}, - [113] = {.lex_state = 5, .external_lex_state = 5}, - [114] = {.lex_state = 47}, + [103] = {.lex_state = 5, .external_lex_state = 4}, + [104] = {.lex_state = 5, .external_lex_state = 4}, + [105] = {.lex_state = 47, .external_lex_state = 2}, + [106] = {.lex_state = 5, .external_lex_state = 5}, + [107] = {.lex_state = 47, .external_lex_state = 21}, + [108] = {.lex_state = 5, .external_lex_state = 4}, + [109] = {.lex_state = 5, .external_lex_state = 4}, + [110] = {.lex_state = 3, .external_lex_state = 4}, + [111] = {.lex_state = 1, .external_lex_state = 3}, + [112] = {.lex_state = 1, .external_lex_state = 4}, + [113] = {.lex_state = 51}, + [114] = {.lex_state = 51, .external_lex_state = 10}, [115] = {.lex_state = 5, .external_lex_state = 5}, - [116] = {.lex_state = 45, .external_lex_state = 20}, - [117] = {.lex_state = 45, .external_lex_state = 21}, - [118] = {.lex_state = 5, .external_lex_state = 5}, - [119] = {.lex_state = 45, .external_lex_state = 10}, - [120] = {.lex_state = 45, .external_lex_state = 10}, - [121] = {.lex_state = 44, .external_lex_state = 10}, - [122] = {.lex_state = 53}, - [123] = {.lex_state = 44, .external_lex_state = 10}, - [124] = {.lex_state = 48, .external_lex_state = 10}, - [125] = {.lex_state = 45, .external_lex_state = 21}, + [116] = {.lex_state = 40}, + [117] = {.lex_state = 51}, + [118] = {.lex_state = 42, .external_lex_state = 12}, + [119] = {.lex_state = 41, .external_lex_state = 12}, + [120] = {.lex_state = 37}, + [121] = {.lex_state = 41, .external_lex_state = 12}, + [122] = {.lex_state = 37, .external_lex_state = 21}, + [123] = {.lex_state = 5, .external_lex_state = 5}, + [124] = {.lex_state = 5, .external_lex_state = 5}, + [125] = {.lex_state = 5, .external_lex_state = 5}, [126] = {.lex_state = 5, .external_lex_state = 5}, - [127] = {.lex_state = 45, .external_lex_state = 10}, - [128] = {.lex_state = 9}, - [129] = {.lex_state = 3, .external_lex_state = 4}, - [130] = {.lex_state = 9}, - [131] = {.lex_state = 36, .external_lex_state = 7}, + [127] = {.lex_state = 47}, + [128] = {.lex_state = 5, .external_lex_state = 5}, + [129] = {.lex_state = 9}, + [130] = {.lex_state = 3, .external_lex_state = 4}, + [131] = {.lex_state = 36, .external_lex_state = 6}, [132] = {.lex_state = 36, .external_lex_state = 22}, [133] = {.lex_state = 3, .external_lex_state = 4}, [134] = {.lex_state = 9, .external_lex_state = 2}, [135] = {.lex_state = 52}, [136] = {.lex_state = 43}, - [137] = {.lex_state = 4, .external_lex_state = 12}, + [137] = {.lex_state = 4, .external_lex_state = 14}, [138] = {.lex_state = 43}, - [139] = {.lex_state = 4, .external_lex_state = 12}, - [140] = {.lex_state = 42}, - [141] = {.lex_state = 41}, - [142] = {.lex_state = 37}, - [143] = {.lex_state = 41}, - [144] = {.lex_state = 37, .external_lex_state = 19}, - [145] = {.lex_state = 3, .external_lex_state = 4}, - [146] = {.lex_state = 47}, - [147] = {.lex_state = 6, .external_lex_state = 3}, - [148] = {.lex_state = 6, .external_lex_state = 9}, - [149] = {.lex_state = 6, .external_lex_state = 3}, - [150] = {.lex_state = 52, .external_lex_state = 23}, - [151] = {.lex_state = 43, .external_lex_state = 23}, - [152] = {.lex_state = 52, .external_lex_state = 23}, - [153] = {.lex_state = 47, .external_lex_state = 8}, - [154] = {.lex_state = 47, .external_lex_state = 2}, - [155] = {.lex_state = 47, .external_lex_state = 2}, - [156] = {.lex_state = 5, .external_lex_state = 5}, - [157] = {.lex_state = 51, .external_lex_state = 13}, - [158] = {.lex_state = 51}, - [159] = {.lex_state = 40}, - [160] = {.lex_state = 51}, - [161] = {.lex_state = 5, .external_lex_state = 5}, - [162] = {.lex_state = 17, .external_lex_state = 12}, - [163] = {.lex_state = 4, .external_lex_state = 12}, - [164] = {.lex_state = 19, .external_lex_state = 12}, + [139] = {.lex_state = 4, .external_lex_state = 14}, + [140] = {.lex_state = 3, .external_lex_state = 4}, + [141] = {.lex_state = 45, .external_lex_state = 23}, + [142] = {.lex_state = 5, .external_lex_state = 5}, + [143] = {.lex_state = 45, .external_lex_state = 24}, + [144] = {.lex_state = 45, .external_lex_state = 15}, + [145] = {.lex_state = 45, .external_lex_state = 15}, + [146] = {.lex_state = 44, .external_lex_state = 15}, + [147] = {.lex_state = 53}, + [148] = {.lex_state = 44, .external_lex_state = 15}, + [149] = {.lex_state = 48, .external_lex_state = 15}, + [150] = {.lex_state = 5, .external_lex_state = 5}, + [151] = {.lex_state = 45, .external_lex_state = 24}, + [152] = {.lex_state = 45, .external_lex_state = 15}, + [153] = {.lex_state = 47}, + [154] = {.lex_state = 6, .external_lex_state = 9}, + [155] = {.lex_state = 6, .external_lex_state = 3}, + [156] = {.lex_state = 6, .external_lex_state = 3}, + [157] = {.lex_state = 52, .external_lex_state = 25}, + [158] = {.lex_state = 52, .external_lex_state = 25}, + [159] = {.lex_state = 43, .external_lex_state = 25}, + [160] = {.lex_state = 47, .external_lex_state = 8}, + [161] = {.lex_state = 47, .external_lex_state = 2}, + [162] = {.lex_state = 47, .external_lex_state = 2}, + [163] = {.lex_state = 9}, + [164] = {.lex_state = 5, .external_lex_state = 5}, [165] = {.lex_state = 47}, [166] = {.lex_state = 52}, - [167] = {.lex_state = 9, .external_lex_state = 2}, - [168] = {.lex_state = 3, .external_lex_state = 4}, - [169] = {.lex_state = 3, .external_lex_state = 4}, - [170] = {.lex_state = 6, .external_lex_state = 3}, - [171] = {.lex_state = 4, .external_lex_state = 12}, - [172] = {.lex_state = 9, .external_lex_state = 24}, - [173] = {.lex_state = 4, .external_lex_state = 12}, - [174] = {.lex_state = 3, .external_lex_state = 4}, - [175] = {.lex_state = 3, .external_lex_state = 4}, - [176] = {.lex_state = 6, .external_lex_state = 3}, - [177] = {.lex_state = 3, .external_lex_state = 5}, + [167] = {.lex_state = 17, .external_lex_state = 14}, + [168] = {.lex_state = 4, .external_lex_state = 14}, + [169] = {.lex_state = 19, .external_lex_state = 26}, + [170] = {.lex_state = 9, .external_lex_state = 2}, + [171] = {.lex_state = 3, .external_lex_state = 4}, + [172] = {.lex_state = 3, .external_lex_state = 4}, + [173] = {.lex_state = 6, .external_lex_state = 3}, + [174] = {.lex_state = 4, .external_lex_state = 14}, + [175] = {.lex_state = 52, .external_lex_state = 27}, + [176] = {.lex_state = 4, .external_lex_state = 14}, + [177] = {.lex_state = 3, .external_lex_state = 4}, [178] = {.lex_state = 3, .external_lex_state = 4}, - [179] = {.lex_state = 3, .external_lex_state = 4}, - [180] = {.lex_state = 3, .external_lex_state = 4}, - [181] = {.lex_state = 9, .external_lex_state = 2}, - [182] = {.lex_state = 9, .external_lex_state = 17}, - [183] = {.lex_state = 5, .external_lex_state = 4}, - [184] = {.lex_state = 5, .external_lex_state = 4}, - [185] = {.lex_state = 5, .external_lex_state = 5}, + [179] = {.lex_state = 6, .external_lex_state = 3}, + [180] = {.lex_state = 3, .external_lex_state = 5}, + [181] = {.lex_state = 3, .external_lex_state = 4}, + [182] = {.lex_state = 3, .external_lex_state = 4}, + [183] = {.lex_state = 3, .external_lex_state = 4}, + [184] = {.lex_state = 9, .external_lex_state = 2}, + [185] = {.lex_state = 9, .external_lex_state = 19}, [186] = {.lex_state = 5, .external_lex_state = 4}, [187] = {.lex_state = 5, .external_lex_state = 4}, - [188] = {.lex_state = 7, .external_lex_state = 4}, - [189] = {.lex_state = 5, .external_lex_state = 5}, - [190] = {.lex_state = 45, .external_lex_state = 10}, - [191] = {.lex_state = 45, .external_lex_state = 10}, - [192] = {.lex_state = 45, .external_lex_state = 10}, - [193] = {.lex_state = 45, .external_lex_state = 21}, - [194] = {.lex_state = 48, .external_lex_state = 10}, - [195] = {.lex_state = 45, .external_lex_state = 21}, - [196] = {.lex_state = 5, .external_lex_state = 5}, - [197] = {.lex_state = 45, .external_lex_state = 10}, - [198] = {.lex_state = 52, .external_lex_state = 20}, - [199] = {.lex_state = 48, .external_lex_state = 10}, - [200] = {.lex_state = 52, .external_lex_state = 10}, - [201] = {.lex_state = 5, .external_lex_state = 5}, - [202] = {.lex_state = 45, .external_lex_state = 10}, - [203] = {.lex_state = 45, .external_lex_state = 10}, - [204] = {.lex_state = 9}, - [205] = {.lex_state = 3, .external_lex_state = 4}, - [206] = {.lex_state = 4, .external_lex_state = 12}, - [207] = {.lex_state = 3, .external_lex_state = 4}, - [208] = {.lex_state = 9, .external_lex_state = 2}, - [209] = {.lex_state = 9, .external_lex_state = 2}, - [210] = {.lex_state = 3, .external_lex_state = 4}, - [211] = {.lex_state = 6, .external_lex_state = 3}, - [212] = {.lex_state = 52}, - [213] = {.lex_state = 52}, - [214] = {.lex_state = 9, .external_lex_state = 2}, - [215] = {.lex_state = 4, .external_lex_state = 12}, - [216] = {.lex_state = 50}, - [217] = {.lex_state = 4, .external_lex_state = 12}, - [218] = {.lex_state = 50}, - [219] = {.lex_state = 41}, - [220] = {.lex_state = 41}, - [221] = {.lex_state = 41}, - [222] = {.lex_state = 47, .external_lex_state = 13}, - [223] = {.lex_state = 6, .external_lex_state = 3}, - [224] = {.lex_state = 47}, - [225] = {.lex_state = 47}, - [226] = {.lex_state = 53, .external_lex_state = 13}, - [227] = {.lex_state = 49, .external_lex_state = 16}, - [228] = {.lex_state = 53, .external_lex_state = 13}, - [229] = {.lex_state = 52, .external_lex_state = 16}, - [230] = {.lex_state = 52, .external_lex_state = 16}, - [231] = {.lex_state = 51}, - [232] = {.lex_state = 5, .external_lex_state = 5}, - [233] = {.lex_state = 40}, - [234] = {.lex_state = 37}, - [235] = {.lex_state = 19, .external_lex_state = 12}, - [236] = {.lex_state = 17, .external_lex_state = 12}, - [237] = {.lex_state = 23, .external_lex_state = 12}, + [188] = {.lex_state = 5, .external_lex_state = 5}, + [189] = {.lex_state = 5, .external_lex_state = 4}, + [190] = {.lex_state = 5, .external_lex_state = 4}, + [191] = {.lex_state = 51}, + [192] = {.lex_state = 5, .external_lex_state = 5}, + [193] = {.lex_state = 40}, + [194] = {.lex_state = 41, .external_lex_state = 12}, + [195] = {.lex_state = 41, .external_lex_state = 12}, + [196] = {.lex_state = 41, .external_lex_state = 12}, + [197] = {.lex_state = 7, .external_lex_state = 4}, + [198] = {.lex_state = 9}, + [199] = {.lex_state = 4, .external_lex_state = 14}, + [200] = {.lex_state = 3, .external_lex_state = 4}, + [201] = {.lex_state = 9, .external_lex_state = 2}, + [202] = {.lex_state = 9, .external_lex_state = 2}, + [203] = {.lex_state = 3, .external_lex_state = 4}, + [204] = {.lex_state = 6, .external_lex_state = 3}, + [205] = {.lex_state = 52}, + [206] = {.lex_state = 9, .external_lex_state = 2}, + [207] = {.lex_state = 52}, + [208] = {.lex_state = 4, .external_lex_state = 14}, + [209] = {.lex_state = 50}, + [210] = {.lex_state = 4, .external_lex_state = 14}, + [211] = {.lex_state = 50}, + [212] = {.lex_state = 5, .external_lex_state = 5}, + [213] = {.lex_state = 45, .external_lex_state = 15}, + [214] = {.lex_state = 45, .external_lex_state = 15}, + [215] = {.lex_state = 45, .external_lex_state = 15}, + [216] = {.lex_state = 45, .external_lex_state = 24}, + [217] = {.lex_state = 48, .external_lex_state = 15}, + [218] = {.lex_state = 5, .external_lex_state = 5}, + [219] = {.lex_state = 45, .external_lex_state = 24}, + [220] = {.lex_state = 45, .external_lex_state = 15}, + [221] = {.lex_state = 52, .external_lex_state = 23}, + [222] = {.lex_state = 52, .external_lex_state = 15}, + [223] = {.lex_state = 42, .external_lex_state = 15}, + [224] = {.lex_state = 5, .external_lex_state = 5}, + [225] = {.lex_state = 45, .external_lex_state = 15}, + [226] = {.lex_state = 45, .external_lex_state = 15}, + [227] = {.lex_state = 6, .external_lex_state = 3}, + [228] = {.lex_state = 47, .external_lex_state = 10}, + [229] = {.lex_state = 47}, + [230] = {.lex_state = 47}, + [231] = {.lex_state = 53, .external_lex_state = 10}, + [232] = {.lex_state = 49, .external_lex_state = 28}, + [233] = {.lex_state = 52, .external_lex_state = 28}, + [234] = {.lex_state = 53, .external_lex_state = 10}, + [235] = {.lex_state = 52, .external_lex_state = 28}, + [236] = {.lex_state = 3, .external_lex_state = 4}, + [237] = {.lex_state = 23, .external_lex_state = 14}, [238] = {.lex_state = 3, .external_lex_state = 4}, - [239] = {.lex_state = 3, .external_lex_state = 4}, - [240] = {.lex_state = 9, .external_lex_state = 2}, - [241] = {.lex_state = 38}, - [242] = {.lex_state = 4, .external_lex_state = 12}, - [243] = {.lex_state = 9, .external_lex_state = 24}, - [244] = {.lex_state = 9, .external_lex_state = 2}, - [245] = {.lex_state = 4, .external_lex_state = 12}, - [246] = {.lex_state = 5, .external_lex_state = 5}, - [247] = {.lex_state = 45, .external_lex_state = 10}, - [248] = {.lex_state = 45, .external_lex_state = 10}, - [249] = {.lex_state = 52, .external_lex_state = 20}, - [250] = {.lex_state = 48, .external_lex_state = 10}, - [251] = {.lex_state = 52, .external_lex_state = 10}, - [252] = {.lex_state = 5, .external_lex_state = 5}, - [253] = {.lex_state = 45, .external_lex_state = 10}, - [254] = {.lex_state = 45, .external_lex_state = 10}, - [255] = {.lex_state = 5, .external_lex_state = 5}, - [256] = {.lex_state = 5, .external_lex_state = 5}, - [257] = {.lex_state = 45, .external_lex_state = 10}, - [258] = {.lex_state = 3, .external_lex_state = 4}, - [259] = {.lex_state = 36, .external_lex_state = 7}, - [260] = {.lex_state = 9, .external_lex_state = 2}, - [261] = {.lex_state = 52}, - [262] = {.lex_state = 9, .external_lex_state = 2}, - [263] = {.lex_state = 9, .external_lex_state = 17}, - [264] = {.lex_state = 3, .external_lex_state = 4}, - [265] = {.lex_state = 52}, - [266] = {.lex_state = 52}, - [267] = {.lex_state = 52}, - [268] = {.lex_state = 9, .external_lex_state = 2}, - [269] = {.lex_state = 50}, - [270] = {.lex_state = 9, .external_lex_state = 13}, - [271] = {.lex_state = 3, .external_lex_state = 4}, - [272] = {.lex_state = 47}, - [273] = {.lex_state = 43}, - [274] = {.lex_state = 47}, - [275] = {.lex_state = 9}, - [276] = {.lex_state = 50}, - [277] = {.lex_state = 3, .external_lex_state = 4}, - [278] = {.lex_state = 43}, - [279] = {.lex_state = 47}, - [280] = {.lex_state = 6, .external_lex_state = 3}, - [281] = {.lex_state = 47}, - [282] = {.lex_state = 53}, - [283] = {.lex_state = 53, .external_lex_state = 13}, - [284] = {.lex_state = 53}, - [285] = {.lex_state = 53, .external_lex_state = 13}, - [286] = {.lex_state = 52}, - [287] = {.lex_state = 43}, - [288] = {.lex_state = 37}, - [289] = {.lex_state = 19, .external_lex_state = 12}, + [239] = {.lex_state = 37}, + [240] = {.lex_state = 19, .external_lex_state = 26}, + [241] = {.lex_state = 17, .external_lex_state = 14}, + [242] = {.lex_state = 3, .external_lex_state = 4}, + [243] = {.lex_state = 9, .external_lex_state = 2}, + [244] = {.lex_state = 4, .external_lex_state = 14}, + [245] = {.lex_state = 38}, + [246] = {.lex_state = 52, .external_lex_state = 27}, + [247] = {.lex_state = 9, .external_lex_state = 2}, + [248] = {.lex_state = 4, .external_lex_state = 14}, + [249] = {.lex_state = 3, .external_lex_state = 4}, + [250] = {.lex_state = 36, .external_lex_state = 6}, + [251] = {.lex_state = 9, .external_lex_state = 2}, + [252] = {.lex_state = 52}, + [253] = {.lex_state = 9, .external_lex_state = 19}, + [254] = {.lex_state = 9, .external_lex_state = 2}, + [255] = {.lex_state = 3, .external_lex_state = 4}, + [256] = {.lex_state = 52}, + [257] = {.lex_state = 9, .external_lex_state = 2}, + [258] = {.lex_state = 52}, + [259] = {.lex_state = 52}, + [260] = {.lex_state = 50}, + [261] = {.lex_state = 3, .external_lex_state = 4}, + [262] = {.lex_state = 9, .external_lex_state = 10}, + [263] = {.lex_state = 47}, + [264] = {.lex_state = 9}, + [265] = {.lex_state = 47}, + [266] = {.lex_state = 43}, + [267] = {.lex_state = 50}, + [268] = {.lex_state = 3, .external_lex_state = 4}, + [269] = {.lex_state = 47}, + [270] = {.lex_state = 43}, + [271] = {.lex_state = 5, .external_lex_state = 5}, + [272] = {.lex_state = 45, .external_lex_state = 15}, + [273] = {.lex_state = 45, .external_lex_state = 15}, + [274] = {.lex_state = 52, .external_lex_state = 23}, + [275] = {.lex_state = 52, .external_lex_state = 15}, + [276] = {.lex_state = 42, .external_lex_state = 15}, + [277] = {.lex_state = 5, .external_lex_state = 5}, + [278] = {.lex_state = 45, .external_lex_state = 15}, + [279] = {.lex_state = 45, .external_lex_state = 15}, + [280] = {.lex_state = 5, .external_lex_state = 5}, + [281] = {.lex_state = 5, .external_lex_state = 5}, + [282] = {.lex_state = 45, .external_lex_state = 15}, + [283] = {.lex_state = 6, .external_lex_state = 3}, + [284] = {.lex_state = 47}, + [285] = {.lex_state = 53}, + [286] = {.lex_state = 53, .external_lex_state = 10}, + [287] = {.lex_state = 53}, + [288] = {.lex_state = 53, .external_lex_state = 10}, + [289] = {.lex_state = 52}, [290] = {.lex_state = 52}, - [291] = {.lex_state = 3, .external_lex_state = 4}, - [292] = {.lex_state = 4, .external_lex_state = 12}, - [293] = {.lex_state = 9, .external_lex_state = 24}, - [294] = {.lex_state = 9, .external_lex_state = 2}, - [295] = {.lex_state = 5, .external_lex_state = 5}, - [296] = {.lex_state = 45, .external_lex_state = 10}, - [297] = {.lex_state = 5, .external_lex_state = 5}, - [298] = {.lex_state = 5, .external_lex_state = 5}, - [299] = {.lex_state = 45, .external_lex_state = 10}, - [300] = {.lex_state = 5, .external_lex_state = 5}, - [301] = {.lex_state = 9, .external_lex_state = 2}, - [302] = {.lex_state = 4, .external_lex_state = 12}, - [303] = {.lex_state = 3, .external_lex_state = 4}, - [304] = {.lex_state = 52}, - [305] = {.lex_state = 3, .external_lex_state = 4}, - [306] = {.lex_state = 43}, - [307] = {.lex_state = 47}, + [291] = {.lex_state = 43, .external_lex_state = 12}, + [292] = {.lex_state = 37}, + [293] = {.lex_state = 19, .external_lex_state = 26}, + [294] = {.lex_state = 3, .external_lex_state = 4}, + [295] = {.lex_state = 4, .external_lex_state = 14}, + [296] = {.lex_state = 52, .external_lex_state = 27}, + [297] = {.lex_state = 9, .external_lex_state = 2}, + [298] = {.lex_state = 9, .external_lex_state = 2}, + [299] = {.lex_state = 4, .external_lex_state = 14}, + [300] = {.lex_state = 3, .external_lex_state = 4}, + [301] = {.lex_state = 52}, + [302] = {.lex_state = 3, .external_lex_state = 4}, + [303] = {.lex_state = 47}, + [304] = {.lex_state = 43}, + [305] = {.lex_state = 47}, + [306] = {.lex_state = 35, .external_lex_state = 2}, + [307] = {.lex_state = 9}, [308] = {.lex_state = 47}, [309] = {.lex_state = 35, .external_lex_state = 2}, [310] = {.lex_state = 9}, - [311] = {.lex_state = 35, .external_lex_state = 2}, - [312] = {.lex_state = 9}, - [313] = {.lex_state = 47}, - [314] = {.lex_state = 3, .external_lex_state = 4}, - [315] = {.lex_state = 43}, - [316] = {.lex_state = 47}, - [317] = {.lex_state = 53}, - [318] = {.lex_state = 53}, - [319] = {.lex_state = 52}, - [320] = {.lex_state = 3, .external_lex_state = 4}, - [321] = {.lex_state = 52}, - [322] = {.lex_state = 43}, - [323] = {.lex_state = 37}, + [311] = {.lex_state = 3, .external_lex_state = 4}, + [312] = {.lex_state = 47}, + [313] = {.lex_state = 43}, + [314] = {.lex_state = 5, .external_lex_state = 5}, + [315] = {.lex_state = 45, .external_lex_state = 15}, + [316] = {.lex_state = 5, .external_lex_state = 5}, + [317] = {.lex_state = 5, .external_lex_state = 5}, + [318] = {.lex_state = 45, .external_lex_state = 15}, + [319] = {.lex_state = 5, .external_lex_state = 5}, + [320] = {.lex_state = 53}, + [321] = {.lex_state = 53}, + [322] = {.lex_state = 3, .external_lex_state = 4}, + [323] = {.lex_state = 52}, [324] = {.lex_state = 3, .external_lex_state = 4}, - [325] = {.lex_state = 5, .external_lex_state = 5}, - [326] = {.lex_state = 5, .external_lex_state = 5}, - [327] = {.lex_state = 9, .external_lex_state = 2}, + [325] = {.lex_state = 52}, + [326] = {.lex_state = 43, .external_lex_state = 12}, + [327] = {.lex_state = 37}, [328] = {.lex_state = 9, .external_lex_state = 2}, - [329] = {.lex_state = 3, .external_lex_state = 4}, + [329] = {.lex_state = 9, .external_lex_state = 2}, [330] = {.lex_state = 3, .external_lex_state = 4}, [331] = {.lex_state = 43}, - [332] = {.lex_state = 9, .external_lex_state = 13}, - [333] = {.lex_state = 47}, + [332] = {.lex_state = 3, .external_lex_state = 4}, + [333] = {.lex_state = 9, .external_lex_state = 10}, [334] = {.lex_state = 9}, - [335] = {.lex_state = 50}, - [336] = {.lex_state = 43}, - [337] = {.lex_state = 35, .external_lex_state = 2}, - [338] = {.lex_state = 9}, - [339] = {.lex_state = 50}, - [340] = {.lex_state = 43}, - [341] = {.lex_state = 35, .external_lex_state = 2}, - [342] = {.lex_state = 9, .external_lex_state = 13}, - [343] = {.lex_state = 47}, - [344] = {.lex_state = 9}, - [345] = {.lex_state = 3, .external_lex_state = 4}, + [335] = {.lex_state = 47}, + [336] = {.lex_state = 50}, + [337] = {.lex_state = 43}, + [338] = {.lex_state = 35, .external_lex_state = 2}, + [339] = {.lex_state = 9}, + [340] = {.lex_state = 9, .external_lex_state = 10}, + [341] = {.lex_state = 9}, + [342] = {.lex_state = 47}, + [343] = {.lex_state = 50}, + [344] = {.lex_state = 43}, + [345] = {.lex_state = 35, .external_lex_state = 2}, [346] = {.lex_state = 43}, [347] = {.lex_state = 3, .external_lex_state = 4}, - [348] = {.lex_state = 52}, - [349] = {.lex_state = 52}, - [350] = {.lex_state = 43}, - [351] = {.lex_state = 3, .external_lex_state = 4}, - [352] = {.lex_state = 50}, - [353] = {.lex_state = 43}, - [354] = {.lex_state = 50}, - [355] = {.lex_state = 43}, - [356] = {.lex_state = 9, .external_lex_state = 2}, - [357] = {.lex_state = 9}, - [358] = {.lex_state = 9, .external_lex_state = 2}, - [359] = {.lex_state = 9}, - [360] = {.lex_state = 3, .external_lex_state = 4}, - [361] = {.lex_state = 3, .external_lex_state = 4}, - [362] = {.lex_state = 52}, - [363] = {.lex_state = 52}, - [364] = {.lex_state = 50}, - [365] = {.lex_state = 50}, - [366] = {.lex_state = 47}, - [367] = {.lex_state = 9}, - [368] = {.lex_state = 9, .external_lex_state = 2}, - [369] = {.lex_state = 47}, - [370] = {.lex_state = 9}, - [371] = {.lex_state = 9, .external_lex_state = 2}, - [372] = {.lex_state = 3, .external_lex_state = 4}, - [373] = {.lex_state = 52}, - [374] = {.lex_state = 47}, - [375] = {.lex_state = 9}, - [376] = {.lex_state = 47}, - [377] = {.lex_state = 9}, - [378] = {.lex_state = 3, .external_lex_state = 4}, + [348] = {.lex_state = 5, .external_lex_state = 5}, + [349] = {.lex_state = 5, .external_lex_state = 5}, + [350] = {.lex_state = 3, .external_lex_state = 4}, + [351] = {.lex_state = 52}, + [352] = {.lex_state = 52}, + [353] = {.lex_state = 43, .external_lex_state = 12}, + [354] = {.lex_state = 3, .external_lex_state = 4}, + [355] = {.lex_state = 50}, + [356] = {.lex_state = 43}, + [357] = {.lex_state = 9, .external_lex_state = 2}, + [358] = {.lex_state = 9}, + [359] = {.lex_state = 9, .external_lex_state = 2}, + [360] = {.lex_state = 9}, + [361] = {.lex_state = 50}, + [362] = {.lex_state = 43}, + [363] = {.lex_state = 3, .external_lex_state = 4}, + [364] = {.lex_state = 3, .external_lex_state = 4}, + [365] = {.lex_state = 52}, + [366] = {.lex_state = 52}, + [367] = {.lex_state = 50}, + [368] = {.lex_state = 47}, + [369] = {.lex_state = 9}, + [370] = {.lex_state = 9, .external_lex_state = 2}, + [371] = {.lex_state = 47}, + [372] = {.lex_state = 9}, + [373] = {.lex_state = 9, .external_lex_state = 2}, + [374] = {.lex_state = 50}, + [375] = {.lex_state = 3, .external_lex_state = 4}, + [376] = {.lex_state = 52}, + [377] = {.lex_state = 47}, + [378] = {.lex_state = 9}, [379] = {.lex_state = 47}, - [380] = {.lex_state = 47}, - [381] = {.lex_state = 1, .external_lex_state = 3}, - [382] = {.lex_state = 1, .external_lex_state = 4}, - [383] = {.lex_state = 5, .external_lex_state = 5}, - [384] = {.lex_state = 5, .external_lex_state = 5}, - [385] = {.lex_state = 5, .external_lex_state = 5}, - [386] = {.lex_state = 46, .external_lex_state = 2}, - [387] = {.lex_state = 5, .external_lex_state = 4}, - [388] = {.lex_state = 3, .external_lex_state = 4}, - [389] = {.lex_state = 6, .external_lex_state = 3}, - [390] = {.lex_state = 5, .external_lex_state = 4}, - [391] = {.lex_state = 9, .external_lex_state = 2}, - [392] = {.lex_state = 47, .external_lex_state = 2}, + [380] = {.lex_state = 9}, + [381] = {.lex_state = 3, .external_lex_state = 4}, + [382] = {.lex_state = 47}, + [383] = {.lex_state = 47}, + [384] = {.lex_state = 1, .external_lex_state = 3}, + [385] = {.lex_state = 1, .external_lex_state = 4}, + [386] = {.lex_state = 5, .external_lex_state = 5}, + [387] = {.lex_state = 46, .external_lex_state = 2}, + [388] = {.lex_state = 5, .external_lex_state = 5}, + [389] = {.lex_state = 5, .external_lex_state = 5}, + [390] = {.lex_state = 3, .external_lex_state = 4}, + [391] = {.lex_state = 6, .external_lex_state = 3}, + [392] = {.lex_state = 9, .external_lex_state = 2}, [393] = {.lex_state = 5, .external_lex_state = 4}, - [394] = {.lex_state = 3, .external_lex_state = 5}, - [395] = {.lex_state = 3, .external_lex_state = 4}, - [396] = {.lex_state = 3, .external_lex_state = 4}, - [397] = {.lex_state = 1, .external_lex_state = 9}, - [398] = {.lex_state = 1, .external_lex_state = 3}, - [399] = {.lex_state = 1, .external_lex_state = 3}, - [400] = {.lex_state = 1, .external_lex_state = 5}, - [401] = {.lex_state = 1, .external_lex_state = 4}, - [402] = {.lex_state = 1, .external_lex_state = 4}, - [403] = {.lex_state = 5, .external_lex_state = 5}, - [404] = {.lex_state = 5, .external_lex_state = 5}, - [405] = {.lex_state = 5, .external_lex_state = 5}, + [394] = {.lex_state = 5, .external_lex_state = 4}, + [395] = {.lex_state = 47, .external_lex_state = 2}, + [396] = {.lex_state = 5, .external_lex_state = 4}, + [397] = {.lex_state = 3, .external_lex_state = 5}, + [398] = {.lex_state = 3, .external_lex_state = 4}, + [399] = {.lex_state = 3, .external_lex_state = 4}, + [400] = {.lex_state = 1, .external_lex_state = 9}, + [401] = {.lex_state = 1, .external_lex_state = 3}, + [402] = {.lex_state = 1, .external_lex_state = 3}, + [403] = {.lex_state = 1, .external_lex_state = 5}, + [404] = {.lex_state = 1, .external_lex_state = 4}, + [405] = {.lex_state = 1, .external_lex_state = 4}, [406] = {.lex_state = 5, .external_lex_state = 5}, - [407] = {.lex_state = 3, .external_lex_state = 4}, - [408] = {.lex_state = 43, .external_lex_state = 23}, - [409] = {.lex_state = 37}, - [410] = {.lex_state = 43, .external_lex_state = 16}, + [407] = {.lex_state = 43, .external_lex_state = 29}, + [408] = {.lex_state = 37}, + [409] = {.lex_state = 43, .external_lex_state = 18}, + [410] = {.lex_state = 5, .external_lex_state = 5}, [411] = {.lex_state = 3, .external_lex_state = 4}, [412] = {.lex_state = 5, .external_lex_state = 5}, - [413] = {.lex_state = 5, .external_lex_state = 4}, - [414] = {.lex_state = 5, .external_lex_state = 4}, - [415] = {.lex_state = 9, .external_lex_state = 2}, + [413] = {.lex_state = 5, .external_lex_state = 5}, + [414] = {.lex_state = 5, .external_lex_state = 5}, + [415] = {.lex_state = 3, .external_lex_state = 4}, [416] = {.lex_state = 9, .external_lex_state = 2}, - [417] = {.lex_state = 9, .external_lex_state = 17}, + [417] = {.lex_state = 9, .external_lex_state = 19}, [418] = {.lex_state = 9, .external_lex_state = 2}, - [419] = {.lex_state = 3, .external_lex_state = 4}, + [419] = {.lex_state = 9, .external_lex_state = 2}, [420] = {.lex_state = 3, .external_lex_state = 4}, - [421] = {.lex_state = 6, .external_lex_state = 3}, - [422] = {.lex_state = 36, .external_lex_state = 7}, - [423] = {.lex_state = 5, .external_lex_state = 4}, - [424] = {.lex_state = 47, .external_lex_state = 19}, - [425] = {.lex_state = 5, .external_lex_state = 5}, + [421] = {.lex_state = 3, .external_lex_state = 4}, + [422] = {.lex_state = 6, .external_lex_state = 3}, + [423] = {.lex_state = 36, .external_lex_state = 6}, + [424] = {.lex_state = 5, .external_lex_state = 4}, + [425] = {.lex_state = 5, .external_lex_state = 4}, [426] = {.lex_state = 5, .external_lex_state = 4}, - [427] = {.lex_state = 5, .external_lex_state = 4}, - [428] = {.lex_state = 3, .external_lex_state = 4}, - [429] = {.lex_state = 1, .external_lex_state = 3}, - [430] = {.lex_state = 1, .external_lex_state = 4}, - [431] = {.lex_state = 5, .external_lex_state = 5}, - [432] = {.lex_state = 5, .external_lex_state = 5}, - [433] = {.lex_state = 5, .external_lex_state = 5}, - [434] = {.lex_state = 47}, - [435] = {.lex_state = 5, .external_lex_state = 5}, - [436] = {.lex_state = 5, .external_lex_state = 5}, - [437] = {.lex_state = 5, .external_lex_state = 5}, - [438] = {.lex_state = 3, .external_lex_state = 4}, - [439] = {.lex_state = 9, .external_lex_state = 2}, - [440] = {.lex_state = 9, .external_lex_state = 17}, - [441] = {.lex_state = 3, .external_lex_state = 4}, - [442] = {.lex_state = 43, .external_lex_state = 16}, - [443] = {.lex_state = 37}, - [444] = {.lex_state = 43, .external_lex_state = 16}, - [445] = {.lex_state = 37, .external_lex_state = 19}, - [446] = {.lex_state = 3, .external_lex_state = 4}, - [447] = {.lex_state = 6, .external_lex_state = 3}, - [448] = {.lex_state = 6, .external_lex_state = 9}, - [449] = {.lex_state = 6, .external_lex_state = 3}, - [450] = {.lex_state = 3, .external_lex_state = 5}, - [451] = {.lex_state = 3, .external_lex_state = 4}, - [452] = {.lex_state = 3, .external_lex_state = 4}, - [453] = {.lex_state = 5, .external_lex_state = 5}, - [454] = {.lex_state = 5, .external_lex_state = 5}, - [455] = {.lex_state = 3, .external_lex_state = 4}, + [427] = {.lex_state = 5, .external_lex_state = 5}, + [428] = {.lex_state = 47, .external_lex_state = 21}, + [429] = {.lex_state = 5, .external_lex_state = 4}, + [430] = {.lex_state = 5, .external_lex_state = 4}, + [431] = {.lex_state = 3, .external_lex_state = 4}, + [432] = {.lex_state = 1, .external_lex_state = 3}, + [433] = {.lex_state = 1, .external_lex_state = 4}, + [434] = {.lex_state = 5, .external_lex_state = 5}, + [435] = {.lex_state = 43, .external_lex_state = 18}, + [436] = {.lex_state = 37}, + [437] = {.lex_state = 43, .external_lex_state = 18}, + [438] = {.lex_state = 37, .external_lex_state = 21}, + [439] = {.lex_state = 5, .external_lex_state = 5}, + [440] = {.lex_state = 5, .external_lex_state = 5}, + [441] = {.lex_state = 5, .external_lex_state = 5}, + [442] = {.lex_state = 5, .external_lex_state = 5}, + [443] = {.lex_state = 47}, + [444] = {.lex_state = 5, .external_lex_state = 5}, + [445] = {.lex_state = 3, .external_lex_state = 4}, + [446] = {.lex_state = 9, .external_lex_state = 2}, + [447] = {.lex_state = 9, .external_lex_state = 19}, + [448] = {.lex_state = 3, .external_lex_state = 4}, + [449] = {.lex_state = 3, .external_lex_state = 4}, + [450] = {.lex_state = 5, .external_lex_state = 5}, + [451] = {.lex_state = 5, .external_lex_state = 5}, + [452] = {.lex_state = 6, .external_lex_state = 9}, + [453] = {.lex_state = 6, .external_lex_state = 3}, + [454] = {.lex_state = 6, .external_lex_state = 3}, + [455] = {.lex_state = 3, .external_lex_state = 5}, [456] = {.lex_state = 3, .external_lex_state = 4}, - [457] = {.lex_state = 6, .external_lex_state = 3}, - [458] = {.lex_state = 4, .external_lex_state = 12}, - [459] = {.lex_state = 4, .external_lex_state = 12}, + [457] = {.lex_state = 3, .external_lex_state = 4}, + [458] = {.lex_state = 5, .external_lex_state = 5}, + [459] = {.lex_state = 3, .external_lex_state = 4}, [460] = {.lex_state = 3, .external_lex_state = 4}, - [461] = {.lex_state = 3, .external_lex_state = 4}, - [462] = {.lex_state = 6, .external_lex_state = 3}, - [463] = {.lex_state = 3, .external_lex_state = 5}, + [461] = {.lex_state = 6, .external_lex_state = 3}, + [462] = {.lex_state = 4, .external_lex_state = 14}, + [463] = {.lex_state = 4, .external_lex_state = 14}, [464] = {.lex_state = 3, .external_lex_state = 4}, [465] = {.lex_state = 3, .external_lex_state = 4}, - [466] = {.lex_state = 3, .external_lex_state = 4}, - [467] = {.lex_state = 9, .external_lex_state = 2}, - [468] = {.lex_state = 9, .external_lex_state = 17}, - [469] = {.lex_state = 5, .external_lex_state = 4}, - [470] = {.lex_state = 5, .external_lex_state = 4}, - [471] = {.lex_state = 5, .external_lex_state = 5}, - [472] = {.lex_state = 5, .external_lex_state = 4}, + [466] = {.lex_state = 6, .external_lex_state = 3}, + [467] = {.lex_state = 3, .external_lex_state = 5}, + [468] = {.lex_state = 3, .external_lex_state = 4}, + [469] = {.lex_state = 3, .external_lex_state = 4}, + [470] = {.lex_state = 3, .external_lex_state = 4}, + [471] = {.lex_state = 9, .external_lex_state = 2}, + [472] = {.lex_state = 9, .external_lex_state = 19}, [473] = {.lex_state = 5, .external_lex_state = 4}, - [474] = {.lex_state = 7, .external_lex_state = 4}, + [474] = {.lex_state = 5, .external_lex_state = 4}, [475] = {.lex_state = 5, .external_lex_state = 5}, - [476] = {.lex_state = 5, .external_lex_state = 5}, - [477] = {.lex_state = 5, .external_lex_state = 5}, - [478] = {.lex_state = 3, .external_lex_state = 4}, - [479] = {.lex_state = 3, .external_lex_state = 4}, - [480] = {.lex_state = 43, .external_lex_state = 16}, - [481] = {.lex_state = 43, .external_lex_state = 16}, - [482] = {.lex_state = 43, .external_lex_state = 16}, - [483] = {.lex_state = 23, .external_lex_state = 11}, - [484] = {.lex_state = 6, .external_lex_state = 3}, - [485] = {.lex_state = 23, .external_lex_state = 12}, - [486] = {.lex_state = 44, .external_lex_state = 20}, - [487] = {.lex_state = 44, .external_lex_state = 20}, - [488] = {.lex_state = 5, .external_lex_state = 5}, - [489] = {.lex_state = 3, .external_lex_state = 4}, - [490] = {.lex_state = 3, .external_lex_state = 4}, - [491] = {.lex_state = 4, .external_lex_state = 12}, - [492] = {.lex_state = 9, .external_lex_state = 2}, - [493] = {.lex_state = 4, .external_lex_state = 12}, - [494] = {.lex_state = 5, .external_lex_state = 5}, - [495] = {.lex_state = 5, .external_lex_state = 5}, - [496] = {.lex_state = 5, .external_lex_state = 5}, - [497] = {.lex_state = 5, .external_lex_state = 5}, + [476] = {.lex_state = 5, .external_lex_state = 4}, + [477] = {.lex_state = 5, .external_lex_state = 4}, + [478] = {.lex_state = 5, .external_lex_state = 5}, + [479] = {.lex_state = 43, .external_lex_state = 18}, + [480] = {.lex_state = 43, .external_lex_state = 18}, + [481] = {.lex_state = 43, .external_lex_state = 18}, + [482] = {.lex_state = 7, .external_lex_state = 4}, + [483] = {.lex_state = 3, .external_lex_state = 4}, + [484] = {.lex_state = 5, .external_lex_state = 5}, + [485] = {.lex_state = 5, .external_lex_state = 5}, + [486] = {.lex_state = 5, .external_lex_state = 5}, + [487] = {.lex_state = 6, .external_lex_state = 3}, + [488] = {.lex_state = 23, .external_lex_state = 13}, + [489] = {.lex_state = 23, .external_lex_state = 14}, + [490] = {.lex_state = 44, .external_lex_state = 23}, + [491] = {.lex_state = 44, .external_lex_state = 23}, + [492] = {.lex_state = 3, .external_lex_state = 4}, + [493] = {.lex_state = 3, .external_lex_state = 4}, + [494] = {.lex_state = 3, .external_lex_state = 4}, + [495] = {.lex_state = 4, .external_lex_state = 14}, + [496] = {.lex_state = 9, .external_lex_state = 2}, + [497] = {.lex_state = 4, .external_lex_state = 14}, [498] = {.lex_state = 3, .external_lex_state = 4}, [499] = {.lex_state = 9, .external_lex_state = 2}, [500] = {.lex_state = 3, .external_lex_state = 4}, [501] = {.lex_state = 3, .external_lex_state = 4}, [502] = {.lex_state = 3, .external_lex_state = 4}, - [503] = {.lex_state = 6, .external_lex_state = 3}, - [504] = {.lex_state = 23, .external_lex_state = 12}, - [505] = {.lex_state = 44, .external_lex_state = 10}, - [506] = {.lex_state = 44, .external_lex_state = 20}, - [507] = {.lex_state = 44, .external_lex_state = 10}, - [508] = {.lex_state = 44, .external_lex_state = 20}, - [509] = {.lex_state = 3, .external_lex_state = 4}, - [510] = {.lex_state = 4, .external_lex_state = 12}, - [511] = {.lex_state = 9, .external_lex_state = 2}, - [512] = {.lex_state = 5, .external_lex_state = 5}, - [513] = {.lex_state = 5, .external_lex_state = 5}, - [514] = {.lex_state = 5, .external_lex_state = 5}, - [515] = {.lex_state = 5, .external_lex_state = 5}, + [503] = {.lex_state = 5, .external_lex_state = 5}, + [504] = {.lex_state = 5, .external_lex_state = 5}, + [505] = {.lex_state = 5, .external_lex_state = 5}, + [506] = {.lex_state = 5, .external_lex_state = 5}, + [507] = {.lex_state = 6, .external_lex_state = 3}, + [508] = {.lex_state = 23, .external_lex_state = 14}, + [509] = {.lex_state = 44, .external_lex_state = 15}, + [510] = {.lex_state = 44, .external_lex_state = 23}, + [511] = {.lex_state = 44, .external_lex_state = 15}, + [512] = {.lex_state = 44, .external_lex_state = 23}, + [513] = {.lex_state = 3, .external_lex_state = 4}, + [514] = {.lex_state = 4, .external_lex_state = 14}, + [515] = {.lex_state = 9, .external_lex_state = 2}, [516] = {.lex_state = 3, .external_lex_state = 4}, [517] = {.lex_state = 3, .external_lex_state = 4}, [518] = {.lex_state = 3, .external_lex_state = 4}, - [519] = {.lex_state = 44, .external_lex_state = 10}, - [520] = {.lex_state = 44, .external_lex_state = 10}, - [521] = {.lex_state = 3, .external_lex_state = 4}, - [522] = {.lex_state = 3, .external_lex_state = 4}, - [523] = {.lex_state = 5, .external_lex_state = 5}, - [524] = {.lex_state = 5, .external_lex_state = 5}, + [519] = {.lex_state = 5, .external_lex_state = 5}, + [520] = {.lex_state = 5, .external_lex_state = 5}, + [521] = {.lex_state = 5, .external_lex_state = 5}, + [522] = {.lex_state = 5, .external_lex_state = 5}, + [523] = {.lex_state = 44, .external_lex_state = 15}, + [524] = {.lex_state = 44, .external_lex_state = 15}, [525] = {.lex_state = 3, .external_lex_state = 4}, [526] = {.lex_state = 3, .external_lex_state = 4}, [527] = {.lex_state = 3, .external_lex_state = 4}, [528] = {.lex_state = 3, .external_lex_state = 4}, [529] = {.lex_state = 3, .external_lex_state = 4}, - [530] = {.lex_state = 3, .external_lex_state = 4}, - [531] = {.lex_state = 3, .external_lex_state = 4}, + [530] = {.lex_state = 5, .external_lex_state = 5}, + [531] = {.lex_state = 5, .external_lex_state = 5}, [532] = {.lex_state = 3, .external_lex_state = 4}, [533] = {.lex_state = 3, .external_lex_state = 4}, - [534] = {.lex_state = 1, .external_lex_state = 3}, - [535] = {.lex_state = 1, .external_lex_state = 4}, - [536] = {.lex_state = 24, .external_lex_state = 5}, - [537] = {.lex_state = 24, .external_lex_state = 5}, - [538] = {.lex_state = 47, .external_lex_state = 8}, - [539] = {.lex_state = 46, .external_lex_state = 2}, - [540] = {.lex_state = 24, .external_lex_state = 4}, - [541] = {.lex_state = 3, .external_lex_state = 4}, - [542] = {.lex_state = 6, .external_lex_state = 3}, - [543] = {.lex_state = 24, .external_lex_state = 4}, - [544] = {.lex_state = 9, .external_lex_state = 2}, - [545] = {.lex_state = 47, .external_lex_state = 2}, - [546] = {.lex_state = 5, .external_lex_state = 4}, - [547] = {.lex_state = 3, .external_lex_state = 5}, - [548] = {.lex_state = 3, .external_lex_state = 4}, - [549] = {.lex_state = 3, .external_lex_state = 4}, - [550] = {.lex_state = 25, .external_lex_state = 9}, - [551] = {.lex_state = 25, .external_lex_state = 3}, - [552] = {.lex_state = 1, .external_lex_state = 3}, - [553] = {.lex_state = 25, .external_lex_state = 5}, - [554] = {.lex_state = 25, .external_lex_state = 4}, - [555] = {.lex_state = 1, .external_lex_state = 4}, - [556] = {.lex_state = 47, .external_lex_state = 8}, - [557] = {.lex_state = 47, .external_lex_state = 8}, - [558] = {.lex_state = 47, .external_lex_state = 8}, - [559] = {.lex_state = 47, .external_lex_state = 8}, - [560] = {.lex_state = 19, .external_lex_state = 11}, - [561] = {.lex_state = 37}, - [562] = {.lex_state = 19, .external_lex_state = 12}, - [563] = {.lex_state = 47, .external_lex_state = 8}, - [564] = {.lex_state = 47, .external_lex_state = 2}, - [565] = {.lex_state = 47, .external_lex_state = 2}, - [566] = {.lex_state = 9, .external_lex_state = 2}, - [567] = {.lex_state = 9, .external_lex_state = 2}, - [568] = {.lex_state = 9, .external_lex_state = 17}, - [569] = {.lex_state = 9, .external_lex_state = 2}, - [570] = {.lex_state = 3, .external_lex_state = 4}, - [571] = {.lex_state = 6, .external_lex_state = 3}, - [572] = {.lex_state = 5, .external_lex_state = 4}, - [573] = {.lex_state = 47, .external_lex_state = 19}, - [574] = {.lex_state = 24, .external_lex_state = 5}, - [575] = {.lex_state = 24, .external_lex_state = 4}, + [534] = {.lex_state = 3, .external_lex_state = 4}, + [535] = {.lex_state = 3, .external_lex_state = 4}, + [536] = {.lex_state = 3, .external_lex_state = 4}, + [537] = {.lex_state = 3, .external_lex_state = 4}, + [538] = {.lex_state = 1, .external_lex_state = 3}, + [539] = {.lex_state = 1, .external_lex_state = 4}, + [540] = {.lex_state = 24, .external_lex_state = 5}, + [541] = {.lex_state = 46, .external_lex_state = 2}, + [542] = {.lex_state = 24, .external_lex_state = 5}, + [543] = {.lex_state = 47, .external_lex_state = 8}, + [544] = {.lex_state = 3, .external_lex_state = 4}, + [545] = {.lex_state = 6, .external_lex_state = 3}, + [546] = {.lex_state = 9, .external_lex_state = 2}, + [547] = {.lex_state = 24, .external_lex_state = 4}, + [548] = {.lex_state = 24, .external_lex_state = 4}, + [549] = {.lex_state = 47, .external_lex_state = 2}, + [550] = {.lex_state = 5, .external_lex_state = 4}, + [551] = {.lex_state = 3, .external_lex_state = 5}, + [552] = {.lex_state = 3, .external_lex_state = 4}, + [553] = {.lex_state = 3, .external_lex_state = 4}, + [554] = {.lex_state = 25, .external_lex_state = 9}, + [555] = {.lex_state = 25, .external_lex_state = 3}, + [556] = {.lex_state = 1, .external_lex_state = 3}, + [557] = {.lex_state = 25, .external_lex_state = 5}, + [558] = {.lex_state = 25, .external_lex_state = 4}, + [559] = {.lex_state = 1, .external_lex_state = 4}, + [560] = {.lex_state = 47, .external_lex_state = 8}, + [561] = {.lex_state = 19, .external_lex_state = 30}, + [562] = {.lex_state = 37}, + [563] = {.lex_state = 19, .external_lex_state = 26}, + [564] = {.lex_state = 47, .external_lex_state = 8}, + [565] = {.lex_state = 47, .external_lex_state = 8}, + [566] = {.lex_state = 47, .external_lex_state = 8}, + [567] = {.lex_state = 47, .external_lex_state = 8}, + [568] = {.lex_state = 9, .external_lex_state = 2}, + [569] = {.lex_state = 9, .external_lex_state = 19}, + [570] = {.lex_state = 9, .external_lex_state = 2}, + [571] = {.lex_state = 9, .external_lex_state = 2}, + [572] = {.lex_state = 3, .external_lex_state = 4}, + [573] = {.lex_state = 6, .external_lex_state = 3}, + [574] = {.lex_state = 47, .external_lex_state = 2}, + [575] = {.lex_state = 47, .external_lex_state = 2}, [576] = {.lex_state = 5, .external_lex_state = 4}, - [577] = {.lex_state = 25, .external_lex_state = 3}, - [578] = {.lex_state = 25, .external_lex_state = 4}, - [579] = {.lex_state = 47, .external_lex_state = 8}, - [580] = {.lex_state = 47, .external_lex_state = 8}, - [581] = {.lex_state = 47, .external_lex_state = 8}, - [582] = {.lex_state = 47}, + [577] = {.lex_state = 24, .external_lex_state = 5}, + [578] = {.lex_state = 47, .external_lex_state = 21}, + [579] = {.lex_state = 5, .external_lex_state = 4}, + [580] = {.lex_state = 24, .external_lex_state = 4}, + [581] = {.lex_state = 25, .external_lex_state = 3}, + [582] = {.lex_state = 25, .external_lex_state = 4}, [583] = {.lex_state = 47, .external_lex_state = 8}, - [584] = {.lex_state = 47, .external_lex_state = 8}, - [585] = {.lex_state = 47, .external_lex_state = 8}, - [586] = {.lex_state = 19, .external_lex_state = 12}, - [587] = {.lex_state = 37}, - [588] = {.lex_state = 19, .external_lex_state = 12}, - [589] = {.lex_state = 37, .external_lex_state = 19}, - [590] = {.lex_state = 1, .external_lex_state = 3}, - [591] = {.lex_state = 1, .external_lex_state = 9}, - [592] = {.lex_state = 1, .external_lex_state = 3}, - [593] = {.lex_state = 3, .external_lex_state = 5}, - [594] = {.lex_state = 3, .external_lex_state = 4}, - [595] = {.lex_state = 3, .external_lex_state = 4}, - [596] = {.lex_state = 47, .external_lex_state = 8}, - [597] = {.lex_state = 47, .external_lex_state = 8}, - [598] = {.lex_state = 6, .external_lex_state = 3}, - [599] = {.lex_state = 4, .external_lex_state = 12}, + [584] = {.lex_state = 19, .external_lex_state = 26}, + [585] = {.lex_state = 37}, + [586] = {.lex_state = 19, .external_lex_state = 26}, + [587] = {.lex_state = 37, .external_lex_state = 21}, + [588] = {.lex_state = 47, .external_lex_state = 8}, + [589] = {.lex_state = 47, .external_lex_state = 8}, + [590] = {.lex_state = 47, .external_lex_state = 8}, + [591] = {.lex_state = 47, .external_lex_state = 8}, + [592] = {.lex_state = 47}, + [593] = {.lex_state = 47, .external_lex_state = 8}, + [594] = {.lex_state = 47, .external_lex_state = 8}, + [595] = {.lex_state = 47, .external_lex_state = 8}, + [596] = {.lex_state = 1, .external_lex_state = 9}, + [597] = {.lex_state = 1, .external_lex_state = 3}, + [598] = {.lex_state = 1, .external_lex_state = 3}, + [599] = {.lex_state = 3, .external_lex_state = 5}, [600] = {.lex_state = 3, .external_lex_state = 4}, - [601] = {.lex_state = 6, .external_lex_state = 3}, - [602] = {.lex_state = 9, .external_lex_state = 2}, - [603] = {.lex_state = 9, .external_lex_state = 17}, - [604] = {.lex_state = 5, .external_lex_state = 4}, - [605] = {.lex_state = 24, .external_lex_state = 4}, - [606] = {.lex_state = 24, .external_lex_state = 5}, - [607] = {.lex_state = 24, .external_lex_state = 4}, - [608] = {.lex_state = 24, .external_lex_state = 4}, - [609] = {.lex_state = 33, .external_lex_state = 2}, - [610] = {.lex_state = 47, .external_lex_state = 8}, - [611] = {.lex_state = 47, .external_lex_state = 8}, - [612] = {.lex_state = 47, .external_lex_state = 8}, - [613] = {.lex_state = 19, .external_lex_state = 12}, - [614] = {.lex_state = 19, .external_lex_state = 12}, - [615] = {.lex_state = 19, .external_lex_state = 12}, - [616] = {.lex_state = 1, .external_lex_state = 3}, - [617] = {.lex_state = 47, .external_lex_state = 8}, - [618] = {.lex_state = 9, .external_lex_state = 2}, - [619] = {.lex_state = 4, .external_lex_state = 12}, + [601] = {.lex_state = 3, .external_lex_state = 4}, + [602] = {.lex_state = 47, .external_lex_state = 8}, + [603] = {.lex_state = 6, .external_lex_state = 3}, + [604] = {.lex_state = 4, .external_lex_state = 14}, + [605] = {.lex_state = 3, .external_lex_state = 4}, + [606] = {.lex_state = 6, .external_lex_state = 3}, + [607] = {.lex_state = 9, .external_lex_state = 2}, + [608] = {.lex_state = 9, .external_lex_state = 19}, + [609] = {.lex_state = 5, .external_lex_state = 4}, + [610] = {.lex_state = 24, .external_lex_state = 4}, + [611] = {.lex_state = 24, .external_lex_state = 5}, + [612] = {.lex_state = 24, .external_lex_state = 4}, + [613] = {.lex_state = 24, .external_lex_state = 4}, + [614] = {.lex_state = 47, .external_lex_state = 8}, + [615] = {.lex_state = 19, .external_lex_state = 26}, + [616] = {.lex_state = 19, .external_lex_state = 26}, + [617] = {.lex_state = 19, .external_lex_state = 26}, + [618] = {.lex_state = 33, .external_lex_state = 2}, + [619] = {.lex_state = 47, .external_lex_state = 8}, [620] = {.lex_state = 47, .external_lex_state = 8}, [621] = {.lex_state = 47, .external_lex_state = 8}, - [622] = {.lex_state = 47, .external_lex_state = 8}, - [623] = {.lex_state = 47, .external_lex_state = 8}, - [624] = {.lex_state = 1, .external_lex_state = 3}, - [625] = {.lex_state = 9, .external_lex_state = 2}, + [622] = {.lex_state = 1, .external_lex_state = 3}, + [623] = {.lex_state = 9, .external_lex_state = 2}, + [624] = {.lex_state = 4, .external_lex_state = 14}, + [625] = {.lex_state = 47, .external_lex_state = 8}, [626] = {.lex_state = 47, .external_lex_state = 8}, [627] = {.lex_state = 47, .external_lex_state = 8}, [628] = {.lex_state = 47, .external_lex_state = 8}, - [629] = {.lex_state = 47, .external_lex_state = 8}, - [630] = {.lex_state = 47, .external_lex_state = 8}, + [629] = {.lex_state = 1, .external_lex_state = 3}, + [630] = {.lex_state = 9, .external_lex_state = 2}, [631] = {.lex_state = 47, .external_lex_state = 8}, - [632] = {.lex_state = 25, .external_lex_state = 3}, - [633] = {.lex_state = 25, .external_lex_state = 4}, - [634] = {.lex_state = 1, .external_lex_state = 9}, - [635] = {.lex_state = 3, .external_lex_state = 4}, - [636] = {.lex_state = 26, .external_lex_state = 3}, - [637] = {.lex_state = 9, .external_lex_state = 2}, - [638] = {.lex_state = 24, .external_lex_state = 4}, - [639] = {.lex_state = 25, .external_lex_state = 3}, - [640] = {.lex_state = 25, .external_lex_state = 4}, - [641] = {.lex_state = 1, .external_lex_state = 9}, - [642] = {.lex_state = 1, .external_lex_state = 9}, - [643] = {.lex_state = 1, .external_lex_state = 9}, - [644] = {.lex_state = 1, .external_lex_state = 9}, - [645] = {.lex_state = 1, .external_lex_state = 9}, - [646] = {.lex_state = 1, .external_lex_state = 3}, - [647] = {.lex_state = 1, .external_lex_state = 3}, - [648] = {.lex_state = 35, .external_lex_state = 2}, - [649] = {.lex_state = 9, .external_lex_state = 2}, - [650] = {.lex_state = 35, .external_lex_state = 17}, + [632] = {.lex_state = 47, .external_lex_state = 8}, + [633] = {.lex_state = 47, .external_lex_state = 8}, + [634] = {.lex_state = 47, .external_lex_state = 8}, + [635] = {.lex_state = 47, .external_lex_state = 8}, + [636] = {.lex_state = 47, .external_lex_state = 8}, + [637] = {.lex_state = 25, .external_lex_state = 3}, + [638] = {.lex_state = 25, .external_lex_state = 4}, + [639] = {.lex_state = 1, .external_lex_state = 9}, + [640] = {.lex_state = 3, .external_lex_state = 4}, + [641] = {.lex_state = 26, .external_lex_state = 3}, + [642] = {.lex_state = 9, .external_lex_state = 2}, + [643] = {.lex_state = 24, .external_lex_state = 4}, + [644] = {.lex_state = 25, .external_lex_state = 3}, + [645] = {.lex_state = 25, .external_lex_state = 4}, + [646] = {.lex_state = 1, .external_lex_state = 9}, + [647] = {.lex_state = 1, .external_lex_state = 9}, + [648] = {.lex_state = 1, .external_lex_state = 9}, + [649] = {.lex_state = 1, .external_lex_state = 9}, + [650] = {.lex_state = 1, .external_lex_state = 9}, [651] = {.lex_state = 9, .external_lex_state = 2}, - [652] = {.lex_state = 3, .external_lex_state = 4}, - [653] = {.lex_state = 26, .external_lex_state = 3}, - [654] = {.lex_state = 24, .external_lex_state = 4}, - [655] = {.lex_state = 24, .external_lex_state = 4}, - [656] = {.lex_state = 1, .external_lex_state = 9}, - [657] = {.lex_state = 1, .external_lex_state = 9}, - [658] = {.lex_state = 1, .external_lex_state = 9}, - [659] = {.lex_state = 47}, - [660] = {.lex_state = 1, .external_lex_state = 9}, + [652] = {.lex_state = 35, .external_lex_state = 19}, + [653] = {.lex_state = 35, .external_lex_state = 2}, + [654] = {.lex_state = 9, .external_lex_state = 2}, + [655] = {.lex_state = 3, .external_lex_state = 4}, + [656] = {.lex_state = 26, .external_lex_state = 3}, + [657] = {.lex_state = 1, .external_lex_state = 3}, + [658] = {.lex_state = 1, .external_lex_state = 3}, + [659] = {.lex_state = 24, .external_lex_state = 4}, + [660] = {.lex_state = 24, .external_lex_state = 4}, [661] = {.lex_state = 1, .external_lex_state = 9}, [662] = {.lex_state = 1, .external_lex_state = 9}, - [663] = {.lex_state = 47, .external_lex_state = 2}, - [664] = {.lex_state = 47, .external_lex_state = 8}, - [665] = {.lex_state = 47, .external_lex_state = 2}, - [666] = {.lex_state = 1, .external_lex_state = 9}, + [663] = {.lex_state = 1, .external_lex_state = 9}, + [664] = {.lex_state = 1, .external_lex_state = 9}, + [665] = {.lex_state = 1, .external_lex_state = 9}, + [666] = {.lex_state = 47}, [667] = {.lex_state = 1, .external_lex_state = 9}, - [668] = {.lex_state = 26, .external_lex_state = 3}, - [669] = {.lex_state = 4, .external_lex_state = 12}, - [670] = {.lex_state = 3, .external_lex_state = 4}, - [671] = {.lex_state = 26, .external_lex_state = 3}, - [672] = {.lex_state = 35, .external_lex_state = 2}, - [673] = {.lex_state = 35, .external_lex_state = 17}, - [674] = {.lex_state = 24, .external_lex_state = 4}, - [675] = {.lex_state = 8, .external_lex_state = 3}, - [676] = {.lex_state = 1, .external_lex_state = 9}, - [677] = {.lex_state = 1, .external_lex_state = 9}, - [678] = {.lex_state = 1, .external_lex_state = 9}, - [679] = {.lex_state = 47, .external_lex_state = 2}, - [680] = {.lex_state = 1, .external_lex_state = 9}, - [681] = {.lex_state = 35, .external_lex_state = 2}, - [682] = {.lex_state = 4, .external_lex_state = 12}, + [668] = {.lex_state = 1, .external_lex_state = 9}, + [669] = {.lex_state = 1, .external_lex_state = 9}, + [670] = {.lex_state = 47, .external_lex_state = 8}, + [671] = {.lex_state = 47, .external_lex_state = 2}, + [672] = {.lex_state = 47, .external_lex_state = 2}, + [673] = {.lex_state = 1, .external_lex_state = 9}, + [674] = {.lex_state = 26, .external_lex_state = 3}, + [675] = {.lex_state = 4, .external_lex_state = 14}, + [676] = {.lex_state = 3, .external_lex_state = 4}, + [677] = {.lex_state = 26, .external_lex_state = 3}, + [678] = {.lex_state = 35, .external_lex_state = 2}, + [679] = {.lex_state = 35, .external_lex_state = 19}, + [680] = {.lex_state = 24, .external_lex_state = 4}, + [681] = {.lex_state = 1, .external_lex_state = 9}, + [682] = {.lex_state = 8, .external_lex_state = 3}, [683] = {.lex_state = 1, .external_lex_state = 9}, [684] = {.lex_state = 1, .external_lex_state = 9}, [685] = {.lex_state = 1, .external_lex_state = 9}, - [686] = {.lex_state = 1, .external_lex_state = 9}, - [687] = {.lex_state = 47, .external_lex_state = 2}, - [688] = {.lex_state = 35, .external_lex_state = 2}, + [686] = {.lex_state = 47, .external_lex_state = 2}, + [687] = {.lex_state = 35, .external_lex_state = 2}, + [688] = {.lex_state = 4, .external_lex_state = 14}, [689] = {.lex_state = 1, .external_lex_state = 9}, [690] = {.lex_state = 1, .external_lex_state = 9}, [691] = {.lex_state = 1, .external_lex_state = 9}, [692] = {.lex_state = 1, .external_lex_state = 9}, - [693] = {.lex_state = 1, .external_lex_state = 9}, - [694] = {.lex_state = 1, .external_lex_state = 9}, - [695] = {.lex_state = 1, .external_lex_state = 5}, - [696] = {.lex_state = 6, .external_lex_state = 3}, - [697] = {.lex_state = 1, .external_lex_state = 5}, - [698] = {.lex_state = 1, .external_lex_state = 5}, - [699] = {.lex_state = 1, .external_lex_state = 5}, - [700] = {.lex_state = 1, .external_lex_state = 5}, + [693] = {.lex_state = 47, .external_lex_state = 2}, + [694] = {.lex_state = 35, .external_lex_state = 2}, + [695] = {.lex_state = 1, .external_lex_state = 9}, + [696] = {.lex_state = 1, .external_lex_state = 9}, + [697] = {.lex_state = 1, .external_lex_state = 9}, + [698] = {.lex_state = 1, .external_lex_state = 9}, + [699] = {.lex_state = 1, .external_lex_state = 9}, + [700] = {.lex_state = 1, .external_lex_state = 9}, [701] = {.lex_state = 1, .external_lex_state = 5}, - [702] = {.lex_state = 1, .external_lex_state = 4}, - [703] = {.lex_state = 1, .external_lex_state = 4}, - [704] = {.lex_state = 3, .external_lex_state = 4}, - [705] = {.lex_state = 6, .external_lex_state = 3}, + [702] = {.lex_state = 6, .external_lex_state = 3}, + [703] = {.lex_state = 1, .external_lex_state = 5}, + [704] = {.lex_state = 1, .external_lex_state = 5}, + [705] = {.lex_state = 1, .external_lex_state = 5}, [706] = {.lex_state = 1, .external_lex_state = 5}, [707] = {.lex_state = 1, .external_lex_state = 5}, - [708] = {.lex_state = 1, .external_lex_state = 5}, - [709] = {.lex_state = 47}, - [710] = {.lex_state = 1, .external_lex_state = 5}, - [711] = {.lex_state = 1, .external_lex_state = 5}, + [708] = {.lex_state = 3, .external_lex_state = 4}, + [709] = {.lex_state = 6, .external_lex_state = 3}, + [710] = {.lex_state = 1, .external_lex_state = 4}, + [711] = {.lex_state = 1, .external_lex_state = 4}, [712] = {.lex_state = 1, .external_lex_state = 5}, - [713] = {.lex_state = 1, .external_lex_state = 3}, - [714] = {.lex_state = 1, .external_lex_state = 9}, - [715] = {.lex_state = 1, .external_lex_state = 3}, + [713] = {.lex_state = 1, .external_lex_state = 5}, + [714] = {.lex_state = 1, .external_lex_state = 5}, + [715] = {.lex_state = 1, .external_lex_state = 5}, [716] = {.lex_state = 1, .external_lex_state = 5}, - [717] = {.lex_state = 1, .external_lex_state = 5}, - [718] = {.lex_state = 8, .external_lex_state = 4}, + [717] = {.lex_state = 47}, + [718] = {.lex_state = 1, .external_lex_state = 5}, [719] = {.lex_state = 1, .external_lex_state = 5}, [720] = {.lex_state = 1, .external_lex_state = 5}, - [721] = {.lex_state = 1, .external_lex_state = 5}, + [721] = {.lex_state = 1, .external_lex_state = 9}, [722] = {.lex_state = 1, .external_lex_state = 3}, - [723] = {.lex_state = 1, .external_lex_state = 5}, + [723] = {.lex_state = 1, .external_lex_state = 3}, [724] = {.lex_state = 1, .external_lex_state = 5}, [725] = {.lex_state = 1, .external_lex_state = 5}, - [726] = {.lex_state = 1, .external_lex_state = 5}, + [726] = {.lex_state = 8, .external_lex_state = 4}, [727] = {.lex_state = 1, .external_lex_state = 5}, - [728] = {.lex_state = 1, .external_lex_state = 3}, + [728] = {.lex_state = 1, .external_lex_state = 5}, [729] = {.lex_state = 1, .external_lex_state = 5}, - [730] = {.lex_state = 1, .external_lex_state = 5}, + [730] = {.lex_state = 1, .external_lex_state = 3}, [731] = {.lex_state = 1, .external_lex_state = 5}, [732] = {.lex_state = 1, .external_lex_state = 5}, [733] = {.lex_state = 1, .external_lex_state = 5}, [734] = {.lex_state = 1, .external_lex_state = 5}, - [735] = {.lex_state = 4, .external_lex_state = 11}, - [736] = {.lex_state = 4, .external_lex_state = 11}, - [737] = {.lex_state = 4, .external_lex_state = 11}, - [738] = {.lex_state = 4, .external_lex_state = 11}, - [739] = {.lex_state = 4, .external_lex_state = 11}, - [740] = {.lex_state = 4, .external_lex_state = 11}, - [741] = {.lex_state = 4, .external_lex_state = 12}, - [742] = {.lex_state = 4, .external_lex_state = 12}, - [743] = {.lex_state = 4, .external_lex_state = 11}, - [744] = {.lex_state = 4, .external_lex_state = 11}, - [745] = {.lex_state = 4, .external_lex_state = 11}, - [746] = {.lex_state = 47}, - [747] = {.lex_state = 4, .external_lex_state = 11}, - [748] = {.lex_state = 4, .external_lex_state = 11}, - [749] = {.lex_state = 4, .external_lex_state = 11}, - [750] = {.lex_state = 4, .external_lex_state = 12}, - [751] = {.lex_state = 4, .external_lex_state = 11}, - [752] = {.lex_state = 4, .external_lex_state = 12}, - [753] = {.lex_state = 4, .external_lex_state = 11}, - [754] = {.lex_state = 4, .external_lex_state = 11}, - [755] = {.lex_state = 15, .external_lex_state = 12}, - [756] = {.lex_state = 4, .external_lex_state = 11}, - [757] = {.lex_state = 4, .external_lex_state = 11}, - [758] = {.lex_state = 4, .external_lex_state = 11}, - [759] = {.lex_state = 4, .external_lex_state = 12}, - [760] = {.lex_state = 4, .external_lex_state = 11}, - [761] = {.lex_state = 4, .external_lex_state = 11}, - [762] = {.lex_state = 4, .external_lex_state = 11}, - [763] = {.lex_state = 4, .external_lex_state = 11}, - [764] = {.lex_state = 4, .external_lex_state = 11}, - [765] = {.lex_state = 4, .external_lex_state = 12}, - [766] = {.lex_state = 4, .external_lex_state = 11}, - [767] = {.lex_state = 4, .external_lex_state = 11}, - [768] = {.lex_state = 4, .external_lex_state = 11}, - [769] = {.lex_state = 4, .external_lex_state = 11}, - [770] = {.lex_state = 4, .external_lex_state = 11}, - [771] = {.lex_state = 4, .external_lex_state = 11}, - [772] = {.lex_state = 41, .external_lex_state = 13}, - [773] = {.lex_state = 41, .external_lex_state = 13}, - [774] = {.lex_state = 41, .external_lex_state = 13}, - [775] = {.lex_state = 41, .external_lex_state = 13}, - [776] = {.lex_state = 41, .external_lex_state = 13}, - [777] = {.lex_state = 41, .external_lex_state = 13}, - [778] = {.lex_state = 41}, - [779] = {.lex_state = 41}, - [780] = {.lex_state = 41, .external_lex_state = 13}, - [781] = {.lex_state = 41, .external_lex_state = 13}, - [782] = {.lex_state = 41, .external_lex_state = 13}, - [783] = {.lex_state = 47}, - [784] = {.lex_state = 41, .external_lex_state = 13}, - [785] = {.lex_state = 41, .external_lex_state = 13}, - [786] = {.lex_state = 41, .external_lex_state = 13}, - [787] = {.lex_state = 26, .external_lex_state = 3}, - [788] = {.lex_state = 26, .external_lex_state = 9}, - [789] = {.lex_state = 26, .external_lex_state = 3}, - [790] = {.lex_state = 41, .external_lex_state = 13}, - [791] = {.lex_state = 41, .external_lex_state = 13}, - [792] = {.lex_state = 38}, - [793] = {.lex_state = 41, .external_lex_state = 13}, - [794] = {.lex_state = 41, .external_lex_state = 13}, - [795] = {.lex_state = 41, .external_lex_state = 13}, - [796] = {.lex_state = 26, .external_lex_state = 3}, - [797] = {.lex_state = 41, .external_lex_state = 13}, - [798] = {.lex_state = 41, .external_lex_state = 13}, - [799] = {.lex_state = 41, .external_lex_state = 13}, - [800] = {.lex_state = 41, .external_lex_state = 13}, - [801] = {.lex_state = 41, .external_lex_state = 13}, - [802] = {.lex_state = 26, .external_lex_state = 3}, - [803] = {.lex_state = 41, .external_lex_state = 13}, - [804] = {.lex_state = 41, .external_lex_state = 13}, - [805] = {.lex_state = 41, .external_lex_state = 13}, - [806] = {.lex_state = 41, .external_lex_state = 13}, - [807] = {.lex_state = 41, .external_lex_state = 13}, - [808] = {.lex_state = 41, .external_lex_state = 13}, - [809] = {.lex_state = 43, .external_lex_state = 23}, - [810] = {.lex_state = 51, .external_lex_state = 13}, - [811] = {.lex_state = 51, .external_lex_state = 13}, - [812] = {.lex_state = 43, .external_lex_state = 23}, - [813] = {.lex_state = 43, .external_lex_state = 23}, - [814] = {.lex_state = 43, .external_lex_state = 23}, - [815] = {.lex_state = 43, .external_lex_state = 16}, - [816] = {.lex_state = 43, .external_lex_state = 16}, - [817] = {.lex_state = 51, .external_lex_state = 13}, - [818] = {.lex_state = 43, .external_lex_state = 23}, - [819] = {.lex_state = 43, .external_lex_state = 23}, - [820] = {.lex_state = 47}, - [821] = {.lex_state = 43, .external_lex_state = 23}, - [822] = {.lex_state = 51, .external_lex_state = 13}, - [823] = {.lex_state = 51, .external_lex_state = 13}, - [824] = {.lex_state = 25, .external_lex_state = 3}, - [825] = {.lex_state = 25, .external_lex_state = 9}, - [826] = {.lex_state = 25, .external_lex_state = 3}, - [827] = {.lex_state = 43, .external_lex_state = 23}, - [828] = {.lex_state = 51, .external_lex_state = 13}, - [829] = {.lex_state = 39, .external_lex_state = 16}, - [830] = {.lex_state = 51, .external_lex_state = 13}, - [831] = {.lex_state = 51, .external_lex_state = 13}, - [832] = {.lex_state = 51, .external_lex_state = 13}, - [833] = {.lex_state = 25, .external_lex_state = 3}, - [834] = {.lex_state = 43, .external_lex_state = 23}, - [835] = {.lex_state = 51, .external_lex_state = 13}, - [836] = {.lex_state = 51, .external_lex_state = 13}, - [837] = {.lex_state = 51, .external_lex_state = 13}, - [838] = {.lex_state = 51, .external_lex_state = 13}, - [839] = {.lex_state = 25, .external_lex_state = 3}, - [840] = {.lex_state = 51, .external_lex_state = 13}, - [841] = {.lex_state = 51, .external_lex_state = 13}, - [842] = {.lex_state = 51, .external_lex_state = 13}, - [843] = {.lex_state = 51, .external_lex_state = 13}, - [844] = {.lex_state = 51, .external_lex_state = 13}, - [845] = {.lex_state = 51, .external_lex_state = 13}, - [846] = {.lex_state = 1, .external_lex_state = 9}, - [847] = {.lex_state = 43, .external_lex_state = 23}, - [848] = {.lex_state = 43, .external_lex_state = 23}, - [849] = {.lex_state = 1, .external_lex_state = 9}, - [850] = {.lex_state = 1, .external_lex_state = 9}, - [851] = {.lex_state = 1, .external_lex_state = 9}, - [852] = {.lex_state = 1, .external_lex_state = 3}, - [853] = {.lex_state = 1, .external_lex_state = 3}, - [854] = {.lex_state = 43, .external_lex_state = 23}, - [855] = {.lex_state = 1, .external_lex_state = 9}, + [735] = {.lex_state = 1, .external_lex_state = 3}, + [736] = {.lex_state = 1, .external_lex_state = 5}, + [737] = {.lex_state = 1, .external_lex_state = 5}, + [738] = {.lex_state = 1, .external_lex_state = 5}, + [739] = {.lex_state = 1, .external_lex_state = 5}, + [740] = {.lex_state = 1, .external_lex_state = 5}, + [741] = {.lex_state = 1, .external_lex_state = 5}, + [742] = {.lex_state = 41, .external_lex_state = 11}, + [743] = {.lex_state = 41, .external_lex_state = 11}, + [744] = {.lex_state = 41, .external_lex_state = 11}, + [745] = {.lex_state = 51, .external_lex_state = 10}, + [746] = {.lex_state = 51, .external_lex_state = 10}, + [747] = {.lex_state = 41, .external_lex_state = 11}, + [748] = {.lex_state = 41, .external_lex_state = 12}, + [749] = {.lex_state = 41, .external_lex_state = 12}, + [750] = {.lex_state = 41, .external_lex_state = 11}, + [751] = {.lex_state = 51, .external_lex_state = 10}, + [752] = {.lex_state = 51, .external_lex_state = 10}, + [753] = {.lex_state = 41, .external_lex_state = 11}, + [754] = {.lex_state = 41, .external_lex_state = 11}, + [755] = {.lex_state = 47}, + [756] = {.lex_state = 41, .external_lex_state = 11}, + [757] = {.lex_state = 51, .external_lex_state = 10}, + [758] = {.lex_state = 51, .external_lex_state = 10}, + [759] = {.lex_state = 4, .external_lex_state = 13}, + [760] = {.lex_state = 4, .external_lex_state = 14}, + [761] = {.lex_state = 4, .external_lex_state = 14}, + [762] = {.lex_state = 51, .external_lex_state = 10}, + [763] = {.lex_state = 41, .external_lex_state = 11}, + [764] = {.lex_state = 38, .external_lex_state = 12}, + [765] = {.lex_state = 51, .external_lex_state = 10}, + [766] = {.lex_state = 51, .external_lex_state = 10}, + [767] = {.lex_state = 51, .external_lex_state = 10}, + [768] = {.lex_state = 4, .external_lex_state = 14}, + [769] = {.lex_state = 51, .external_lex_state = 10}, + [770] = {.lex_state = 51, .external_lex_state = 10}, + [771] = {.lex_state = 51, .external_lex_state = 10}, + [772] = {.lex_state = 51, .external_lex_state = 10}, + [773] = {.lex_state = 4, .external_lex_state = 14}, + [774] = {.lex_state = 51, .external_lex_state = 10}, + [775] = {.lex_state = 51, .external_lex_state = 10}, + [776] = {.lex_state = 51, .external_lex_state = 10}, + [777] = {.lex_state = 51, .external_lex_state = 10}, + [778] = {.lex_state = 51, .external_lex_state = 10}, + [779] = {.lex_state = 51, .external_lex_state = 10}, + [780] = {.lex_state = 4, .external_lex_state = 13}, + [781] = {.lex_state = 4, .external_lex_state = 13}, + [782] = {.lex_state = 4, .external_lex_state = 13}, + [783] = {.lex_state = 41, .external_lex_state = 11}, + [784] = {.lex_state = 41, .external_lex_state = 11}, + [785] = {.lex_state = 4, .external_lex_state = 13}, + [786] = {.lex_state = 4, .external_lex_state = 14}, + [787] = {.lex_state = 4, .external_lex_state = 14}, + [788] = {.lex_state = 4, .external_lex_state = 13}, + [789] = {.lex_state = 41, .external_lex_state = 11}, + [790] = {.lex_state = 41, .external_lex_state = 11}, + [791] = {.lex_state = 4, .external_lex_state = 13}, + [792] = {.lex_state = 4, .external_lex_state = 13}, + [793] = {.lex_state = 47}, + [794] = {.lex_state = 4, .external_lex_state = 13}, + [795] = {.lex_state = 41, .external_lex_state = 11}, + [796] = {.lex_state = 41, .external_lex_state = 11}, + [797] = {.lex_state = 26, .external_lex_state = 9}, + [798] = {.lex_state = 26, .external_lex_state = 3}, + [799] = {.lex_state = 26, .external_lex_state = 3}, + [800] = {.lex_state = 41, .external_lex_state = 11}, + [801] = {.lex_state = 4, .external_lex_state = 13}, + [802] = {.lex_state = 15, .external_lex_state = 14}, + [803] = {.lex_state = 41, .external_lex_state = 11}, + [804] = {.lex_state = 41, .external_lex_state = 11}, + [805] = {.lex_state = 41, .external_lex_state = 11}, + [806] = {.lex_state = 26, .external_lex_state = 3}, + [807] = {.lex_state = 41, .external_lex_state = 11}, + [808] = {.lex_state = 41, .external_lex_state = 11}, + [809] = {.lex_state = 41, .external_lex_state = 11}, + [810] = {.lex_state = 41, .external_lex_state = 11}, + [811] = {.lex_state = 26, .external_lex_state = 3}, + [812] = {.lex_state = 41, .external_lex_state = 11}, + [813] = {.lex_state = 41, .external_lex_state = 11}, + [814] = {.lex_state = 41, .external_lex_state = 11}, + [815] = {.lex_state = 41, .external_lex_state = 11}, + [816] = {.lex_state = 41, .external_lex_state = 11}, + [817] = {.lex_state = 41, .external_lex_state = 11}, + [818] = {.lex_state = 43, .external_lex_state = 29}, + [819] = {.lex_state = 43, .external_lex_state = 29}, + [820] = {.lex_state = 43, .external_lex_state = 29}, + [821] = {.lex_state = 4, .external_lex_state = 13}, + [822] = {.lex_state = 4, .external_lex_state = 13}, + [823] = {.lex_state = 43, .external_lex_state = 29}, + [824] = {.lex_state = 43, .external_lex_state = 18}, + [825] = {.lex_state = 43, .external_lex_state = 18}, + [826] = {.lex_state = 43, .external_lex_state = 29}, + [827] = {.lex_state = 4, .external_lex_state = 13}, + [828] = {.lex_state = 4, .external_lex_state = 13}, + [829] = {.lex_state = 43, .external_lex_state = 29}, + [830] = {.lex_state = 43, .external_lex_state = 29}, + [831] = {.lex_state = 47}, + [832] = {.lex_state = 43, .external_lex_state = 29}, + [833] = {.lex_state = 4, .external_lex_state = 13}, + [834] = {.lex_state = 4, .external_lex_state = 13}, + [835] = {.lex_state = 25, .external_lex_state = 9}, + [836] = {.lex_state = 25, .external_lex_state = 3}, + [837] = {.lex_state = 25, .external_lex_state = 3}, + [838] = {.lex_state = 4, .external_lex_state = 13}, + [839] = {.lex_state = 43, .external_lex_state = 29}, + [840] = {.lex_state = 39, .external_lex_state = 18}, + [841] = {.lex_state = 4, .external_lex_state = 13}, + [842] = {.lex_state = 4, .external_lex_state = 13}, + [843] = {.lex_state = 4, .external_lex_state = 13}, + [844] = {.lex_state = 25, .external_lex_state = 3}, + [845] = {.lex_state = 4, .external_lex_state = 13}, + [846] = {.lex_state = 4, .external_lex_state = 13}, + [847] = {.lex_state = 4, .external_lex_state = 13}, + [848] = {.lex_state = 4, .external_lex_state = 13}, + [849] = {.lex_state = 25, .external_lex_state = 3}, + [850] = {.lex_state = 4, .external_lex_state = 13}, + [851] = {.lex_state = 4, .external_lex_state = 13}, + [852] = {.lex_state = 4, .external_lex_state = 13}, + [853] = {.lex_state = 4, .external_lex_state = 13}, + [854] = {.lex_state = 4, .external_lex_state = 13}, + [855] = {.lex_state = 4, .external_lex_state = 13}, [856] = {.lex_state = 1, .external_lex_state = 9}, - [857] = {.lex_state = 47}, + [857] = {.lex_state = 1, .external_lex_state = 9}, [858] = {.lex_state = 1, .external_lex_state = 9}, - [859] = {.lex_state = 43, .external_lex_state = 23}, - [860] = {.lex_state = 43, .external_lex_state = 23}, + [859] = {.lex_state = 43, .external_lex_state = 29}, + [860] = {.lex_state = 43, .external_lex_state = 29}, [861] = {.lex_state = 1, .external_lex_state = 9}, - [862] = {.lex_state = 43, .external_lex_state = 23}, - [863] = {.lex_state = 8, .external_lex_state = 3}, - [864] = {.lex_state = 43, .external_lex_state = 23}, - [865] = {.lex_state = 43, .external_lex_state = 23}, - [866] = {.lex_state = 43, .external_lex_state = 23}, + [862] = {.lex_state = 1, .external_lex_state = 3}, + [863] = {.lex_state = 1, .external_lex_state = 3}, + [864] = {.lex_state = 1, .external_lex_state = 9}, + [865] = {.lex_state = 43, .external_lex_state = 29}, + [866] = {.lex_state = 43, .external_lex_state = 29}, [867] = {.lex_state = 1, .external_lex_state = 9}, - [868] = {.lex_state = 43, .external_lex_state = 23}, - [869] = {.lex_state = 43, .external_lex_state = 23}, - [870] = {.lex_state = 43, .external_lex_state = 23}, - [871] = {.lex_state = 43, .external_lex_state = 23}, - [872] = {.lex_state = 43, .external_lex_state = 23}, - [873] = {.lex_state = 43, .external_lex_state = 23}, - [874] = {.lex_state = 43, .external_lex_state = 23}, - [875] = {.lex_state = 43, .external_lex_state = 23}, - [876] = {.lex_state = 43, .external_lex_state = 23}, - [877] = {.lex_state = 43, .external_lex_state = 23}, - [878] = {.lex_state = 1, .external_lex_state = 5}, - [879] = {.lex_state = 1, .external_lex_state = 9}, - [880] = {.lex_state = 1, .external_lex_state = 9}, - [881] = {.lex_state = 1, .external_lex_state = 5}, - [882] = {.lex_state = 1, .external_lex_state = 5}, - [883] = {.lex_state = 1, .external_lex_state = 5}, - [884] = {.lex_state = 1, .external_lex_state = 4}, - [885] = {.lex_state = 1, .external_lex_state = 4}, - [886] = {.lex_state = 1, .external_lex_state = 9}, - [887] = {.lex_state = 1, .external_lex_state = 5}, - [888] = {.lex_state = 1, .external_lex_state = 5}, - [889] = {.lex_state = 47}, + [868] = {.lex_state = 1, .external_lex_state = 9}, + [869] = {.lex_state = 47}, + [870] = {.lex_state = 1, .external_lex_state = 9}, + [871] = {.lex_state = 43, .external_lex_state = 29}, + [872] = {.lex_state = 43, .external_lex_state = 29}, + [873] = {.lex_state = 43, .external_lex_state = 29}, + [874] = {.lex_state = 1, .external_lex_state = 9}, + [875] = {.lex_state = 8, .external_lex_state = 3}, + [876] = {.lex_state = 43, .external_lex_state = 29}, + [877] = {.lex_state = 43, .external_lex_state = 29}, + [878] = {.lex_state = 43, .external_lex_state = 29}, + [879] = {.lex_state = 43, .external_lex_state = 29}, + [880] = {.lex_state = 43, .external_lex_state = 29}, + [881] = {.lex_state = 43, .external_lex_state = 29}, + [882] = {.lex_state = 43, .external_lex_state = 29}, + [883] = {.lex_state = 43, .external_lex_state = 29}, + [884] = {.lex_state = 43, .external_lex_state = 29}, + [885] = {.lex_state = 43, .external_lex_state = 29}, + [886] = {.lex_state = 43, .external_lex_state = 29}, + [887] = {.lex_state = 43, .external_lex_state = 29}, + [888] = {.lex_state = 43, .external_lex_state = 29}, + [889] = {.lex_state = 1, .external_lex_state = 5}, [890] = {.lex_state = 1, .external_lex_state = 5}, - [891] = {.lex_state = 1, .external_lex_state = 9}, + [891] = {.lex_state = 1, .external_lex_state = 5}, [892] = {.lex_state = 1, .external_lex_state = 9}, - [893] = {.lex_state = 1, .external_lex_state = 5}, - [894] = {.lex_state = 1, .external_lex_state = 9}, - [895] = {.lex_state = 8, .external_lex_state = 4}, - [896] = {.lex_state = 1, .external_lex_state = 9}, - [897] = {.lex_state = 1, .external_lex_state = 9}, + [893] = {.lex_state = 1, .external_lex_state = 9}, + [894] = {.lex_state = 1, .external_lex_state = 5}, + [895] = {.lex_state = 1, .external_lex_state = 4}, + [896] = {.lex_state = 1, .external_lex_state = 4}, + [897] = {.lex_state = 1, .external_lex_state = 5}, [898] = {.lex_state = 1, .external_lex_state = 9}, - [899] = {.lex_state = 1, .external_lex_state = 5}, - [900] = {.lex_state = 1, .external_lex_state = 9}, - [901] = {.lex_state = 1, .external_lex_state = 9}, - [902] = {.lex_state = 1, .external_lex_state = 9}, - [903] = {.lex_state = 1, .external_lex_state = 9}, + [899] = {.lex_state = 1, .external_lex_state = 9}, + [900] = {.lex_state = 1, .external_lex_state = 5}, + [901] = {.lex_state = 1, .external_lex_state = 5}, + [902] = {.lex_state = 47}, + [903] = {.lex_state = 1, .external_lex_state = 5}, [904] = {.lex_state = 1, .external_lex_state = 9}, [905] = {.lex_state = 1, .external_lex_state = 9}, [906] = {.lex_state = 1, .external_lex_state = 9}, - [907] = {.lex_state = 1, .external_lex_state = 9}, - [908] = {.lex_state = 1, .external_lex_state = 9}, + [907] = {.lex_state = 1, .external_lex_state = 5}, + [908] = {.lex_state = 8, .external_lex_state = 4}, [909] = {.lex_state = 1, .external_lex_state = 9}, - [910] = {.lex_state = 45, .external_lex_state = 20}, - [911] = {.lex_state = 1, .external_lex_state = 5}, - [912] = {.lex_state = 1, .external_lex_state = 5}, - [913] = {.lex_state = 45, .external_lex_state = 20}, - [914] = {.lex_state = 45, .external_lex_state = 20}, - [915] = {.lex_state = 45, .external_lex_state = 20}, - [916] = {.lex_state = 45, .external_lex_state = 10}, - [917] = {.lex_state = 45, .external_lex_state = 10}, - [918] = {.lex_state = 1, .external_lex_state = 5}, - [919] = {.lex_state = 45, .external_lex_state = 20}, - [920] = {.lex_state = 45, .external_lex_state = 20}, - [921] = {.lex_state = 47}, - [922] = {.lex_state = 45, .external_lex_state = 20}, - [923] = {.lex_state = 1, .external_lex_state = 5}, - [924] = {.lex_state = 1, .external_lex_state = 5}, - [925] = {.lex_state = 45, .external_lex_state = 20}, + [910] = {.lex_state = 1, .external_lex_state = 9}, + [911] = {.lex_state = 1, .external_lex_state = 9}, + [912] = {.lex_state = 1, .external_lex_state = 9}, + [913] = {.lex_state = 1, .external_lex_state = 9}, + [914] = {.lex_state = 1, .external_lex_state = 9}, + [915] = {.lex_state = 1, .external_lex_state = 9}, + [916] = {.lex_state = 1, .external_lex_state = 9}, + [917] = {.lex_state = 1, .external_lex_state = 9}, + [918] = {.lex_state = 1, .external_lex_state = 9}, + [919] = {.lex_state = 1, .external_lex_state = 9}, + [920] = {.lex_state = 1, .external_lex_state = 9}, + [921] = {.lex_state = 1, .external_lex_state = 9}, + [922] = {.lex_state = 45, .external_lex_state = 23}, + [923] = {.lex_state = 45, .external_lex_state = 23}, + [924] = {.lex_state = 45, .external_lex_state = 23}, + [925] = {.lex_state = 1, .external_lex_state = 5}, [926] = {.lex_state = 1, .external_lex_state = 5}, - [927] = {.lex_state = 32, .external_lex_state = 10}, - [928] = {.lex_state = 1, .external_lex_state = 5}, - [929] = {.lex_state = 1, .external_lex_state = 5}, - [930] = {.lex_state = 1, .external_lex_state = 5}, - [931] = {.lex_state = 45, .external_lex_state = 20}, + [927] = {.lex_state = 45, .external_lex_state = 23}, + [928] = {.lex_state = 45, .external_lex_state = 15}, + [929] = {.lex_state = 45, .external_lex_state = 15}, + [930] = {.lex_state = 45, .external_lex_state = 23}, + [931] = {.lex_state = 1, .external_lex_state = 5}, [932] = {.lex_state = 1, .external_lex_state = 5}, - [933] = {.lex_state = 1, .external_lex_state = 5}, - [934] = {.lex_state = 1, .external_lex_state = 5}, - [935] = {.lex_state = 1, .external_lex_state = 5}, - [936] = {.lex_state = 1, .external_lex_state = 5}, + [933] = {.lex_state = 45, .external_lex_state = 23}, + [934] = {.lex_state = 45, .external_lex_state = 23}, + [935] = {.lex_state = 47}, + [936] = {.lex_state = 45, .external_lex_state = 23}, [937] = {.lex_state = 1, .external_lex_state = 5}, [938] = {.lex_state = 1, .external_lex_state = 5}, [939] = {.lex_state = 1, .external_lex_state = 5}, - [940] = {.lex_state = 1, .external_lex_state = 5}, - [941] = {.lex_state = 1, .external_lex_state = 5}, - [942] = {.lex_state = 6, .external_lex_state = 9}, - [943] = {.lex_state = 45, .external_lex_state = 20}, - [944] = {.lex_state = 45, .external_lex_state = 20}, - [945] = {.lex_state = 6, .external_lex_state = 9}, - [946] = {.lex_state = 6, .external_lex_state = 9}, - [947] = {.lex_state = 6, .external_lex_state = 9}, - [948] = {.lex_state = 6, .external_lex_state = 3}, - [949] = {.lex_state = 6, .external_lex_state = 3}, - [950] = {.lex_state = 45, .external_lex_state = 20}, - [951] = {.lex_state = 6, .external_lex_state = 9}, - [952] = {.lex_state = 6, .external_lex_state = 9}, - [953] = {.lex_state = 47}, - [954] = {.lex_state = 6, .external_lex_state = 9}, - [955] = {.lex_state = 45, .external_lex_state = 20}, - [956] = {.lex_state = 45, .external_lex_state = 20}, + [940] = {.lex_state = 45, .external_lex_state = 23}, + [941] = {.lex_state = 32, .external_lex_state = 15}, + [942] = {.lex_state = 1, .external_lex_state = 5}, + [943] = {.lex_state = 1, .external_lex_state = 5}, + [944] = {.lex_state = 1, .external_lex_state = 5}, + [945] = {.lex_state = 1, .external_lex_state = 5}, + [946] = {.lex_state = 1, .external_lex_state = 5}, + [947] = {.lex_state = 1, .external_lex_state = 5}, + [948] = {.lex_state = 1, .external_lex_state = 5}, + [949] = {.lex_state = 1, .external_lex_state = 5}, + [950] = {.lex_state = 1, .external_lex_state = 5}, + [951] = {.lex_state = 1, .external_lex_state = 5}, + [952] = {.lex_state = 1, .external_lex_state = 5}, + [953] = {.lex_state = 1, .external_lex_state = 5}, + [954] = {.lex_state = 1, .external_lex_state = 5}, + [955] = {.lex_state = 6, .external_lex_state = 9}, + [956] = {.lex_state = 6, .external_lex_state = 9}, [957] = {.lex_state = 6, .external_lex_state = 9}, - [958] = {.lex_state = 45, .external_lex_state = 20}, - [959] = {.lex_state = 8, .external_lex_state = 3}, - [960] = {.lex_state = 45, .external_lex_state = 20}, - [961] = {.lex_state = 45, .external_lex_state = 20}, - [962] = {.lex_state = 45, .external_lex_state = 20}, + [958] = {.lex_state = 45, .external_lex_state = 23}, + [959] = {.lex_state = 45, .external_lex_state = 23}, + [960] = {.lex_state = 6, .external_lex_state = 9}, + [961] = {.lex_state = 6, .external_lex_state = 3}, + [962] = {.lex_state = 6, .external_lex_state = 3}, [963] = {.lex_state = 6, .external_lex_state = 9}, - [964] = {.lex_state = 45, .external_lex_state = 20}, - [965] = {.lex_state = 45, .external_lex_state = 20}, - [966] = {.lex_state = 45, .external_lex_state = 20}, - [967] = {.lex_state = 45, .external_lex_state = 20}, - [968] = {.lex_state = 45, .external_lex_state = 20}, - [969] = {.lex_state = 45, .external_lex_state = 20}, - [970] = {.lex_state = 45, .external_lex_state = 20}, - [971] = {.lex_state = 45, .external_lex_state = 20}, - [972] = {.lex_state = 45, .external_lex_state = 20}, - [973] = {.lex_state = 45, .external_lex_state = 20}, - [974] = {.lex_state = 43, .external_lex_state = 23}, - [975] = {.lex_state = 6, .external_lex_state = 9}, - [976] = {.lex_state = 6, .external_lex_state = 9}, - [977] = {.lex_state = 19, .external_lex_state = 11}, - [978] = {.lex_state = 19, .external_lex_state = 11}, - [979] = {.lex_state = 19, .external_lex_state = 11}, - [980] = {.lex_state = 43, .external_lex_state = 23}, - [981] = {.lex_state = 43, .external_lex_state = 23}, - [982] = {.lex_state = 6, .external_lex_state = 9}, - [983] = {.lex_state = 19, .external_lex_state = 11}, - [984] = {.lex_state = 19, .external_lex_state = 11}, - [985] = {.lex_state = 47}, - [986] = {.lex_state = 19, .external_lex_state = 11}, - [987] = {.lex_state = 6, .external_lex_state = 9}, - [988] = {.lex_state = 6, .external_lex_state = 9}, - [989] = {.lex_state = 19, .external_lex_state = 11}, - [990] = {.lex_state = 6, .external_lex_state = 9}, - [991] = {.lex_state = 39, .external_lex_state = 23}, + [964] = {.lex_state = 45, .external_lex_state = 23}, + [965] = {.lex_state = 45, .external_lex_state = 23}, + [966] = {.lex_state = 6, .external_lex_state = 9}, + [967] = {.lex_state = 6, .external_lex_state = 9}, + [968] = {.lex_state = 47}, + [969] = {.lex_state = 6, .external_lex_state = 9}, + [970] = {.lex_state = 45, .external_lex_state = 23}, + [971] = {.lex_state = 45, .external_lex_state = 23}, + [972] = {.lex_state = 45, .external_lex_state = 23}, + [973] = {.lex_state = 6, .external_lex_state = 9}, + [974] = {.lex_state = 8, .external_lex_state = 3}, + [975] = {.lex_state = 45, .external_lex_state = 23}, + [976] = {.lex_state = 45, .external_lex_state = 23}, + [977] = {.lex_state = 45, .external_lex_state = 23}, + [978] = {.lex_state = 45, .external_lex_state = 23}, + [979] = {.lex_state = 45, .external_lex_state = 23}, + [980] = {.lex_state = 45, .external_lex_state = 23}, + [981] = {.lex_state = 45, .external_lex_state = 23}, + [982] = {.lex_state = 45, .external_lex_state = 23}, + [983] = {.lex_state = 45, .external_lex_state = 23}, + [984] = {.lex_state = 45, .external_lex_state = 23}, + [985] = {.lex_state = 45, .external_lex_state = 23}, + [986] = {.lex_state = 45, .external_lex_state = 23}, + [987] = {.lex_state = 45, .external_lex_state = 23}, + [988] = {.lex_state = 43, .external_lex_state = 25}, + [989] = {.lex_state = 52, .external_lex_state = 25}, + [990] = {.lex_state = 52, .external_lex_state = 25}, + [991] = {.lex_state = 6, .external_lex_state = 9}, [992] = {.lex_state = 6, .external_lex_state = 9}, - [993] = {.lex_state = 6, .external_lex_state = 9}, - [994] = {.lex_state = 6, .external_lex_state = 9}, - [995] = {.lex_state = 19, .external_lex_state = 11}, - [996] = {.lex_state = 6, .external_lex_state = 9}, + [993] = {.lex_state = 52, .external_lex_state = 25}, + [994] = {.lex_state = 43, .external_lex_state = 25}, + [995] = {.lex_state = 43, .external_lex_state = 25}, + [996] = {.lex_state = 52, .external_lex_state = 25}, [997] = {.lex_state = 6, .external_lex_state = 9}, [998] = {.lex_state = 6, .external_lex_state = 9}, - [999] = {.lex_state = 6, .external_lex_state = 9}, - [1000] = {.lex_state = 6, .external_lex_state = 9}, - [1001] = {.lex_state = 6, .external_lex_state = 9}, - [1002] = {.lex_state = 6, .external_lex_state = 9}, + [999] = {.lex_state = 52, .external_lex_state = 25}, + [1000] = {.lex_state = 52, .external_lex_state = 25}, + [1001] = {.lex_state = 47}, + [1002] = {.lex_state = 52, .external_lex_state = 25}, [1003] = {.lex_state = 6, .external_lex_state = 9}, [1004] = {.lex_state = 6, .external_lex_state = 9}, [1005] = {.lex_state = 6, .external_lex_state = 9}, - [1006] = {.lex_state = 19, .external_lex_state = 11}, - [1007] = {.lex_state = 19, .external_lex_state = 11}, - [1008] = {.lex_state = 19, .external_lex_state = 11}, - [1009] = {.lex_state = 3, .external_lex_state = 5}, - [1010] = {.lex_state = 3, .external_lex_state = 5}, - [1011] = {.lex_state = 3, .external_lex_state = 5}, - [1012] = {.lex_state = 19, .external_lex_state = 12}, - [1013] = {.lex_state = 19, .external_lex_state = 12}, - [1014] = {.lex_state = 19, .external_lex_state = 11}, - [1015] = {.lex_state = 3, .external_lex_state = 5}, - [1016] = {.lex_state = 3, .external_lex_state = 5}, - [1017] = {.lex_state = 47}, - [1018] = {.lex_state = 3, .external_lex_state = 5}, - [1019] = {.lex_state = 19, .external_lex_state = 11}, - [1020] = {.lex_state = 19, .external_lex_state = 11}, - [1021] = {.lex_state = 3, .external_lex_state = 5}, - [1022] = {.lex_state = 19, .external_lex_state = 11}, - [1023] = {.lex_state = 18, .external_lex_state = 12}, - [1024] = {.lex_state = 19, .external_lex_state = 11}, - [1025] = {.lex_state = 19, .external_lex_state = 11}, - [1026] = {.lex_state = 19, .external_lex_state = 11}, - [1027] = {.lex_state = 3, .external_lex_state = 5}, - [1028] = {.lex_state = 19, .external_lex_state = 11}, - [1029] = {.lex_state = 19, .external_lex_state = 11}, - [1030] = {.lex_state = 19, .external_lex_state = 11}, - [1031] = {.lex_state = 19, .external_lex_state = 11}, - [1032] = {.lex_state = 19, .external_lex_state = 11}, - [1033] = {.lex_state = 19, .external_lex_state = 11}, - [1034] = {.lex_state = 19, .external_lex_state = 11}, - [1035] = {.lex_state = 19, .external_lex_state = 11}, - [1036] = {.lex_state = 19, .external_lex_state = 11}, - [1037] = {.lex_state = 19, .external_lex_state = 11}, - [1038] = {.lex_state = 3, .external_lex_state = 5}, - [1039] = {.lex_state = 3, .external_lex_state = 5}, - [1040] = {.lex_state = 3, .external_lex_state = 5}, - [1041] = {.lex_state = 6, .external_lex_state = 9}, - [1042] = {.lex_state = 6, .external_lex_state = 9}, - [1043] = {.lex_state = 6, .external_lex_state = 9}, - [1044] = {.lex_state = 3, .external_lex_state = 4}, - [1045] = {.lex_state = 3, .external_lex_state = 4}, - [1046] = {.lex_state = 3, .external_lex_state = 5}, - [1047] = {.lex_state = 6, .external_lex_state = 9}, - [1048] = {.lex_state = 6, .external_lex_state = 9}, - [1049] = {.lex_state = 47}, - [1050] = {.lex_state = 6, .external_lex_state = 9}, - [1051] = {.lex_state = 3, .external_lex_state = 5}, - [1052] = {.lex_state = 3, .external_lex_state = 5}, - [1053] = {.lex_state = 6, .external_lex_state = 9}, + [1006] = {.lex_state = 52, .external_lex_state = 25}, + [1007] = {.lex_state = 39, .external_lex_state = 25}, + [1008] = {.lex_state = 6, .external_lex_state = 9}, + [1009] = {.lex_state = 6, .external_lex_state = 9}, + [1010] = {.lex_state = 6, .external_lex_state = 9}, + [1011] = {.lex_state = 6, .external_lex_state = 9}, + [1012] = {.lex_state = 6, .external_lex_state = 9}, + [1013] = {.lex_state = 6, .external_lex_state = 9}, + [1014] = {.lex_state = 6, .external_lex_state = 9}, + [1015] = {.lex_state = 6, .external_lex_state = 9}, + [1016] = {.lex_state = 6, .external_lex_state = 9}, + [1017] = {.lex_state = 6, .external_lex_state = 9}, + [1018] = {.lex_state = 6, .external_lex_state = 9}, + [1019] = {.lex_state = 6, .external_lex_state = 9}, + [1020] = {.lex_state = 6, .external_lex_state = 9}, + [1021] = {.lex_state = 19, .external_lex_state = 30}, + [1022] = {.lex_state = 19, .external_lex_state = 30}, + [1023] = {.lex_state = 19, .external_lex_state = 30}, + [1024] = {.lex_state = 52, .external_lex_state = 25}, + [1025] = {.lex_state = 52, .external_lex_state = 25}, + [1026] = {.lex_state = 19, .external_lex_state = 30}, + [1027] = {.lex_state = 19, .external_lex_state = 26}, + [1028] = {.lex_state = 19, .external_lex_state = 26}, + [1029] = {.lex_state = 19, .external_lex_state = 30}, + [1030] = {.lex_state = 52, .external_lex_state = 25}, + [1031] = {.lex_state = 52, .external_lex_state = 25}, + [1032] = {.lex_state = 19, .external_lex_state = 30}, + [1033] = {.lex_state = 19, .external_lex_state = 30}, + [1034] = {.lex_state = 47}, + [1035] = {.lex_state = 19, .external_lex_state = 30}, + [1036] = {.lex_state = 52, .external_lex_state = 25}, + [1037] = {.lex_state = 52, .external_lex_state = 25}, + [1038] = {.lex_state = 52, .external_lex_state = 25}, + [1039] = {.lex_state = 19, .external_lex_state = 30}, + [1040] = {.lex_state = 18, .external_lex_state = 26}, + [1041] = {.lex_state = 52, .external_lex_state = 25}, + [1042] = {.lex_state = 52, .external_lex_state = 25}, + [1043] = {.lex_state = 52, .external_lex_state = 25}, + [1044] = {.lex_state = 52, .external_lex_state = 25}, + [1045] = {.lex_state = 52, .external_lex_state = 25}, + [1046] = {.lex_state = 52, .external_lex_state = 25}, + [1047] = {.lex_state = 52, .external_lex_state = 25}, + [1048] = {.lex_state = 52, .external_lex_state = 25}, + [1049] = {.lex_state = 52, .external_lex_state = 25}, + [1050] = {.lex_state = 52, .external_lex_state = 25}, + [1051] = {.lex_state = 52, .external_lex_state = 25}, + [1052] = {.lex_state = 52, .external_lex_state = 25}, + [1053] = {.lex_state = 52, .external_lex_state = 25}, [1054] = {.lex_state = 3, .external_lex_state = 5}, - [1055] = {.lex_state = 2, .external_lex_state = 4}, + [1055] = {.lex_state = 3, .external_lex_state = 5}, [1056] = {.lex_state = 3, .external_lex_state = 5}, - [1057] = {.lex_state = 3, .external_lex_state = 5}, - [1058] = {.lex_state = 3, .external_lex_state = 5}, - [1059] = {.lex_state = 6, .external_lex_state = 9}, - [1060] = {.lex_state = 3, .external_lex_state = 5}, - [1061] = {.lex_state = 3, .external_lex_state = 5}, + [1057] = {.lex_state = 19, .external_lex_state = 30}, + [1058] = {.lex_state = 19, .external_lex_state = 30}, + [1059] = {.lex_state = 3, .external_lex_state = 5}, + [1060] = {.lex_state = 3, .external_lex_state = 4}, + [1061] = {.lex_state = 3, .external_lex_state = 4}, [1062] = {.lex_state = 3, .external_lex_state = 5}, - [1063] = {.lex_state = 3, .external_lex_state = 5}, - [1064] = {.lex_state = 3, .external_lex_state = 5}, + [1063] = {.lex_state = 19, .external_lex_state = 30}, + [1064] = {.lex_state = 19, .external_lex_state = 30}, [1065] = {.lex_state = 3, .external_lex_state = 5}, [1066] = {.lex_state = 3, .external_lex_state = 5}, - [1067] = {.lex_state = 3, .external_lex_state = 5}, + [1067] = {.lex_state = 47}, [1068] = {.lex_state = 3, .external_lex_state = 5}, - [1069] = {.lex_state = 3, .external_lex_state = 5}, - [1070] = {.lex_state = 6, .external_lex_state = 9}, - [1071] = {.lex_state = 6, .external_lex_state = 9}, - [1072] = {.lex_state = 6, .external_lex_state = 9}, - [1073] = {.lex_state = 3, .external_lex_state = 5}, - [1074] = {.lex_state = 3, .external_lex_state = 5}, - [1075] = {.lex_state = 3, .external_lex_state = 5}, - [1076] = {.lex_state = 6, .external_lex_state = 3}, - [1077] = {.lex_state = 6, .external_lex_state = 3}, - [1078] = {.lex_state = 6, .external_lex_state = 9}, - [1079] = {.lex_state = 3, .external_lex_state = 5}, - [1080] = {.lex_state = 3, .external_lex_state = 5}, - [1081] = {.lex_state = 47}, - [1082] = {.lex_state = 3, .external_lex_state = 5}, - [1083] = {.lex_state = 6, .external_lex_state = 9}, - [1084] = {.lex_state = 6, .external_lex_state = 9}, - [1085] = {.lex_state = 3, .external_lex_state = 5}, - [1086] = {.lex_state = 6, .external_lex_state = 9}, - [1087] = {.lex_state = 8, .external_lex_state = 3}, + [1069] = {.lex_state = 19, .external_lex_state = 30}, + [1070] = {.lex_state = 19, .external_lex_state = 30}, + [1071] = {.lex_state = 19, .external_lex_state = 30}, + [1072] = {.lex_state = 3, .external_lex_state = 5}, + [1073] = {.lex_state = 2, .external_lex_state = 4}, + [1074] = {.lex_state = 19, .external_lex_state = 30}, + [1075] = {.lex_state = 19, .external_lex_state = 30}, + [1076] = {.lex_state = 19, .external_lex_state = 30}, + [1077] = {.lex_state = 19, .external_lex_state = 30}, + [1078] = {.lex_state = 19, .external_lex_state = 30}, + [1079] = {.lex_state = 19, .external_lex_state = 30}, + [1080] = {.lex_state = 19, .external_lex_state = 30}, + [1081] = {.lex_state = 19, .external_lex_state = 30}, + [1082] = {.lex_state = 19, .external_lex_state = 30}, + [1083] = {.lex_state = 19, .external_lex_state = 30}, + [1084] = {.lex_state = 19, .external_lex_state = 30}, + [1085] = {.lex_state = 19, .external_lex_state = 30}, + [1086] = {.lex_state = 19, .external_lex_state = 30}, + [1087] = {.lex_state = 6, .external_lex_state = 9}, [1088] = {.lex_state = 6, .external_lex_state = 9}, [1089] = {.lex_state = 6, .external_lex_state = 9}, - [1090] = {.lex_state = 6, .external_lex_state = 9}, + [1090] = {.lex_state = 3, .external_lex_state = 5}, [1091] = {.lex_state = 3, .external_lex_state = 5}, [1092] = {.lex_state = 6, .external_lex_state = 9}, - [1093] = {.lex_state = 6, .external_lex_state = 9}, - [1094] = {.lex_state = 6, .external_lex_state = 9}, + [1093] = {.lex_state = 6, .external_lex_state = 3}, + [1094] = {.lex_state = 6, .external_lex_state = 3}, [1095] = {.lex_state = 6, .external_lex_state = 9}, - [1096] = {.lex_state = 6, .external_lex_state = 9}, - [1097] = {.lex_state = 6, .external_lex_state = 9}, + [1096] = {.lex_state = 3, .external_lex_state = 5}, + [1097] = {.lex_state = 3, .external_lex_state = 5}, [1098] = {.lex_state = 6, .external_lex_state = 9}, [1099] = {.lex_state = 6, .external_lex_state = 9}, - [1100] = {.lex_state = 6, .external_lex_state = 9}, + [1100] = {.lex_state = 47}, [1101] = {.lex_state = 6, .external_lex_state = 9}, [1102] = {.lex_state = 3, .external_lex_state = 5}, [1103] = {.lex_state = 3, .external_lex_state = 5}, [1104] = {.lex_state = 3, .external_lex_state = 5}, - [1105] = {.lex_state = 52, .external_lex_state = 20}, - [1106] = {.lex_state = 52, .external_lex_state = 20}, - [1107] = {.lex_state = 52, .external_lex_state = 20}, - [1108] = {.lex_state = 3, .external_lex_state = 4}, - [1109] = {.lex_state = 3, .external_lex_state = 4}, + [1105] = {.lex_state = 6, .external_lex_state = 9}, + [1106] = {.lex_state = 8, .external_lex_state = 3}, + [1107] = {.lex_state = 3, .external_lex_state = 5}, + [1108] = {.lex_state = 3, .external_lex_state = 5}, + [1109] = {.lex_state = 3, .external_lex_state = 5}, [1110] = {.lex_state = 3, .external_lex_state = 5}, - [1111] = {.lex_state = 52, .external_lex_state = 20}, - [1112] = {.lex_state = 52, .external_lex_state = 20}, - [1113] = {.lex_state = 47}, - [1114] = {.lex_state = 52, .external_lex_state = 20}, + [1111] = {.lex_state = 3, .external_lex_state = 5}, + [1112] = {.lex_state = 3, .external_lex_state = 5}, + [1113] = {.lex_state = 3, .external_lex_state = 5}, + [1114] = {.lex_state = 3, .external_lex_state = 5}, [1115] = {.lex_state = 3, .external_lex_state = 5}, [1116] = {.lex_state = 3, .external_lex_state = 5}, - [1117] = {.lex_state = 52, .external_lex_state = 20}, + [1117] = {.lex_state = 3, .external_lex_state = 5}, [1118] = {.lex_state = 3, .external_lex_state = 5}, - [1119] = {.lex_state = 2, .external_lex_state = 4}, + [1119] = {.lex_state = 3, .external_lex_state = 5}, [1120] = {.lex_state = 3, .external_lex_state = 5}, [1121] = {.lex_state = 3, .external_lex_state = 5}, [1122] = {.lex_state = 3, .external_lex_state = 5}, - [1123] = {.lex_state = 52, .external_lex_state = 20}, - [1124] = {.lex_state = 3, .external_lex_state = 5}, + [1123] = {.lex_state = 6, .external_lex_state = 9}, + [1124] = {.lex_state = 6, .external_lex_state = 9}, [1125] = {.lex_state = 3, .external_lex_state = 5}, - [1126] = {.lex_state = 3, .external_lex_state = 5}, - [1127] = {.lex_state = 3, .external_lex_state = 5}, + [1126] = {.lex_state = 3, .external_lex_state = 4}, + [1127] = {.lex_state = 3, .external_lex_state = 4}, [1128] = {.lex_state = 3, .external_lex_state = 5}, - [1129] = {.lex_state = 3, .external_lex_state = 5}, - [1130] = {.lex_state = 3, .external_lex_state = 5}, + [1129] = {.lex_state = 6, .external_lex_state = 9}, + [1130] = {.lex_state = 6, .external_lex_state = 9}, [1131] = {.lex_state = 3, .external_lex_state = 5}, [1132] = {.lex_state = 3, .external_lex_state = 5}, - [1133] = {.lex_state = 3, .external_lex_state = 5}, - [1134] = {.lex_state = 48, .external_lex_state = 20}, - [1135] = {.lex_state = 52, .external_lex_state = 20}, - [1136] = {.lex_state = 52, .external_lex_state = 20}, - [1137] = {.lex_state = 47, .external_lex_state = 13}, - [1138] = {.lex_state = 47, .external_lex_state = 13}, - [1139] = {.lex_state = 47, .external_lex_state = 13}, - [1140] = {.lex_state = 48, .external_lex_state = 10}, - [1141] = {.lex_state = 48, .external_lex_state = 10}, - [1142] = {.lex_state = 52, .external_lex_state = 20}, - [1143] = {.lex_state = 47, .external_lex_state = 13}, - [1144] = {.lex_state = 47, .external_lex_state = 13}, - [1145] = {.lex_state = 47}, - [1146] = {.lex_state = 47, .external_lex_state = 13}, - [1147] = {.lex_state = 52, .external_lex_state = 20}, - [1148] = {.lex_state = 52, .external_lex_state = 20}, - [1149] = {.lex_state = 47, .external_lex_state = 13}, - [1150] = {.lex_state = 52, .external_lex_state = 20}, - [1151] = {.lex_state = 38, .external_lex_state = 10}, - [1152] = {.lex_state = 52, .external_lex_state = 20}, - [1153] = {.lex_state = 52, .external_lex_state = 20}, - [1154] = {.lex_state = 52, .external_lex_state = 20}, - [1155] = {.lex_state = 47, .external_lex_state = 13}, - [1156] = {.lex_state = 52, .external_lex_state = 20}, - [1157] = {.lex_state = 52, .external_lex_state = 20}, - [1158] = {.lex_state = 52, .external_lex_state = 20}, - [1159] = {.lex_state = 52, .external_lex_state = 20}, - [1160] = {.lex_state = 52, .external_lex_state = 20}, - [1161] = {.lex_state = 52, .external_lex_state = 20}, - [1162] = {.lex_state = 52, .external_lex_state = 20}, - [1163] = {.lex_state = 52, .external_lex_state = 20}, - [1164] = {.lex_state = 52, .external_lex_state = 20}, - [1165] = {.lex_state = 52, .external_lex_state = 20}, - [1166] = {.lex_state = 47, .external_lex_state = 13}, - [1167] = {.lex_state = 47, .external_lex_state = 13}, - [1168] = {.lex_state = 47, .external_lex_state = 13}, - [1169] = {.lex_state = 23, .external_lex_state = 11}, - [1170] = {.lex_state = 23, .external_lex_state = 11}, - [1171] = {.lex_state = 23, .external_lex_state = 11}, - [1172] = {.lex_state = 47}, - [1173] = {.lex_state = 47}, - [1174] = {.lex_state = 47, .external_lex_state = 13}, - [1175] = {.lex_state = 23, .external_lex_state = 11}, - [1176] = {.lex_state = 23, .external_lex_state = 11}, - [1177] = {.lex_state = 47}, - [1178] = {.lex_state = 23, .external_lex_state = 11}, - [1179] = {.lex_state = 47, .external_lex_state = 13}, - [1180] = {.lex_state = 47, .external_lex_state = 13}, - [1181] = {.lex_state = 23, .external_lex_state = 11}, - [1182] = {.lex_state = 47, .external_lex_state = 13}, - [1183] = {.lex_state = 33}, - [1184] = {.lex_state = 47, .external_lex_state = 13}, - [1185] = {.lex_state = 47, .external_lex_state = 13}, - [1186] = {.lex_state = 47, .external_lex_state = 13}, - [1187] = {.lex_state = 23, .external_lex_state = 11}, - [1188] = {.lex_state = 47, .external_lex_state = 13}, - [1189] = {.lex_state = 47, .external_lex_state = 13}, - [1190] = {.lex_state = 47, .external_lex_state = 13}, - [1191] = {.lex_state = 47, .external_lex_state = 13}, - [1192] = {.lex_state = 47, .external_lex_state = 13}, - [1193] = {.lex_state = 47, .external_lex_state = 13}, - [1194] = {.lex_state = 47, .external_lex_state = 13}, - [1195] = {.lex_state = 47, .external_lex_state = 13}, - [1196] = {.lex_state = 47, .external_lex_state = 13}, - [1197] = {.lex_state = 47, .external_lex_state = 13}, - [1198] = {.lex_state = 23, .external_lex_state = 11}, - [1199] = {.lex_state = 23, .external_lex_state = 11}, - [1200] = {.lex_state = 23, .external_lex_state = 11}, - [1201] = {.lex_state = 24, .external_lex_state = 5}, - [1202] = {.lex_state = 24, .external_lex_state = 5}, - [1203] = {.lex_state = 24, .external_lex_state = 5}, - [1204] = {.lex_state = 23, .external_lex_state = 12}, - [1205] = {.lex_state = 23, .external_lex_state = 12}, - [1206] = {.lex_state = 23, .external_lex_state = 11}, - [1207] = {.lex_state = 24, .external_lex_state = 5}, - [1208] = {.lex_state = 24, .external_lex_state = 5}, - [1209] = {.lex_state = 47}, - [1210] = {.lex_state = 24, .external_lex_state = 5}, - [1211] = {.lex_state = 23, .external_lex_state = 11}, - [1212] = {.lex_state = 23, .external_lex_state = 11}, - [1213] = {.lex_state = 24, .external_lex_state = 5}, - [1214] = {.lex_state = 23, .external_lex_state = 11}, - [1215] = {.lex_state = 28, .external_lex_state = 12}, - [1216] = {.lex_state = 23, .external_lex_state = 11}, - [1217] = {.lex_state = 23, .external_lex_state = 11}, - [1218] = {.lex_state = 23, .external_lex_state = 11}, - [1219] = {.lex_state = 24, .external_lex_state = 5}, - [1220] = {.lex_state = 23, .external_lex_state = 11}, - [1221] = {.lex_state = 23, .external_lex_state = 11}, - [1222] = {.lex_state = 23, .external_lex_state = 11}, - [1223] = {.lex_state = 23, .external_lex_state = 11}, - [1224] = {.lex_state = 23, .external_lex_state = 11}, - [1225] = {.lex_state = 23, .external_lex_state = 11}, - [1226] = {.lex_state = 23, .external_lex_state = 11}, - [1227] = {.lex_state = 23, .external_lex_state = 11}, - [1228] = {.lex_state = 23, .external_lex_state = 11}, - [1229] = {.lex_state = 23, .external_lex_state = 11}, - [1230] = {.lex_state = 24, .external_lex_state = 5}, - [1231] = {.lex_state = 9, .external_lex_state = 24}, - [1232] = {.lex_state = 9, .external_lex_state = 24}, - [1233] = {.lex_state = 25, .external_lex_state = 9}, - [1234] = {.lex_state = 25, .external_lex_state = 9}, - [1235] = {.lex_state = 25, .external_lex_state = 9}, - [1236] = {.lex_state = 24, .external_lex_state = 4}, - [1237] = {.lex_state = 24, .external_lex_state = 4}, - [1238] = {.lex_state = 9, .external_lex_state = 24}, - [1239] = {.lex_state = 25, .external_lex_state = 9}, - [1240] = {.lex_state = 25, .external_lex_state = 9}, - [1241] = {.lex_state = 47}, - [1242] = {.lex_state = 25, .external_lex_state = 9}, - [1243] = {.lex_state = 9, .external_lex_state = 24}, - [1244] = {.lex_state = 9, .external_lex_state = 24}, - [1245] = {.lex_state = 25, .external_lex_state = 9}, - [1246] = {.lex_state = 9, .external_lex_state = 24}, - [1247] = {.lex_state = 16, .external_lex_state = 12}, - [1248] = {.lex_state = 9, .external_lex_state = 24}, - [1249] = {.lex_state = 9, .external_lex_state = 24}, - [1250] = {.lex_state = 9, .external_lex_state = 24}, - [1251] = {.lex_state = 25, .external_lex_state = 9}, - [1252] = {.lex_state = 9, .external_lex_state = 24}, - [1253] = {.lex_state = 9, .external_lex_state = 24}, - [1254] = {.lex_state = 9, .external_lex_state = 24}, - [1255] = {.lex_state = 9, .external_lex_state = 24}, - [1256] = {.lex_state = 9, .external_lex_state = 24}, - [1257] = {.lex_state = 9, .external_lex_state = 24}, - [1258] = {.lex_state = 9, .external_lex_state = 24}, - [1259] = {.lex_state = 9, .external_lex_state = 24}, - [1260] = {.lex_state = 9, .external_lex_state = 24}, - [1261] = {.lex_state = 9, .external_lex_state = 24}, - [1262] = {.lex_state = 25, .external_lex_state = 9}, + [1133] = {.lex_state = 47}, + [1134] = {.lex_state = 3, .external_lex_state = 5}, + [1135] = {.lex_state = 6, .external_lex_state = 9}, + [1136] = {.lex_state = 6, .external_lex_state = 9}, + [1137] = {.lex_state = 6, .external_lex_state = 9}, + [1138] = {.lex_state = 3, .external_lex_state = 5}, + [1139] = {.lex_state = 2, .external_lex_state = 4}, + [1140] = {.lex_state = 6, .external_lex_state = 9}, + [1141] = {.lex_state = 6, .external_lex_state = 9}, + [1142] = {.lex_state = 6, .external_lex_state = 9}, + [1143] = {.lex_state = 6, .external_lex_state = 9}, + [1144] = {.lex_state = 6, .external_lex_state = 9}, + [1145] = {.lex_state = 6, .external_lex_state = 9}, + [1146] = {.lex_state = 6, .external_lex_state = 9}, + [1147] = {.lex_state = 6, .external_lex_state = 9}, + [1148] = {.lex_state = 6, .external_lex_state = 9}, + [1149] = {.lex_state = 6, .external_lex_state = 9}, + [1150] = {.lex_state = 6, .external_lex_state = 9}, + [1151] = {.lex_state = 6, .external_lex_state = 9}, + [1152] = {.lex_state = 6, .external_lex_state = 9}, + [1153] = {.lex_state = 42, .external_lex_state = 23}, + [1154] = {.lex_state = 52, .external_lex_state = 23}, + [1155] = {.lex_state = 52, .external_lex_state = 23}, + [1156] = {.lex_state = 3, .external_lex_state = 5}, + [1157] = {.lex_state = 3, .external_lex_state = 5}, + [1158] = {.lex_state = 52, .external_lex_state = 23}, + [1159] = {.lex_state = 42, .external_lex_state = 15}, + [1160] = {.lex_state = 42, .external_lex_state = 15}, + [1161] = {.lex_state = 52, .external_lex_state = 23}, + [1162] = {.lex_state = 3, .external_lex_state = 5}, + [1163] = {.lex_state = 3, .external_lex_state = 5}, + [1164] = {.lex_state = 52, .external_lex_state = 23}, + [1165] = {.lex_state = 52, .external_lex_state = 23}, + [1166] = {.lex_state = 47}, + [1167] = {.lex_state = 52, .external_lex_state = 23}, + [1168] = {.lex_state = 3, .external_lex_state = 5}, + [1169] = {.lex_state = 3, .external_lex_state = 5}, + [1170] = {.lex_state = 3, .external_lex_state = 5}, + [1171] = {.lex_state = 52, .external_lex_state = 23}, + [1172] = {.lex_state = 38, .external_lex_state = 15}, + [1173] = {.lex_state = 3, .external_lex_state = 5}, + [1174] = {.lex_state = 3, .external_lex_state = 5}, + [1175] = {.lex_state = 3, .external_lex_state = 5}, + [1176] = {.lex_state = 3, .external_lex_state = 5}, + [1177] = {.lex_state = 3, .external_lex_state = 5}, + [1178] = {.lex_state = 3, .external_lex_state = 5}, + [1179] = {.lex_state = 3, .external_lex_state = 5}, + [1180] = {.lex_state = 3, .external_lex_state = 5}, + [1181] = {.lex_state = 3, .external_lex_state = 5}, + [1182] = {.lex_state = 3, .external_lex_state = 5}, + [1183] = {.lex_state = 3, .external_lex_state = 5}, + [1184] = {.lex_state = 3, .external_lex_state = 5}, + [1185] = {.lex_state = 3, .external_lex_state = 5}, + [1186] = {.lex_state = 47, .external_lex_state = 10}, + [1187] = {.lex_state = 47, .external_lex_state = 10}, + [1188] = {.lex_state = 47, .external_lex_state = 10}, + [1189] = {.lex_state = 52, .external_lex_state = 23}, + [1190] = {.lex_state = 52, .external_lex_state = 23}, + [1191] = {.lex_state = 47, .external_lex_state = 10}, + [1192] = {.lex_state = 47}, + [1193] = {.lex_state = 47}, + [1194] = {.lex_state = 47, .external_lex_state = 10}, + [1195] = {.lex_state = 52, .external_lex_state = 23}, + [1196] = {.lex_state = 52, .external_lex_state = 23}, + [1197] = {.lex_state = 47, .external_lex_state = 10}, + [1198] = {.lex_state = 47, .external_lex_state = 10}, + [1199] = {.lex_state = 47}, + [1200] = {.lex_state = 47, .external_lex_state = 10}, + [1201] = {.lex_state = 52, .external_lex_state = 23}, + [1202] = {.lex_state = 52, .external_lex_state = 23}, + [1203] = {.lex_state = 52, .external_lex_state = 23}, + [1204] = {.lex_state = 47, .external_lex_state = 10}, + [1205] = {.lex_state = 33}, + [1206] = {.lex_state = 52, .external_lex_state = 23}, + [1207] = {.lex_state = 52, .external_lex_state = 23}, + [1208] = {.lex_state = 52, .external_lex_state = 23}, + [1209] = {.lex_state = 52, .external_lex_state = 23}, + [1210] = {.lex_state = 52, .external_lex_state = 23}, + [1211] = {.lex_state = 52, .external_lex_state = 23}, + [1212] = {.lex_state = 52, .external_lex_state = 23}, + [1213] = {.lex_state = 52, .external_lex_state = 23}, + [1214] = {.lex_state = 52, .external_lex_state = 23}, + [1215] = {.lex_state = 52, .external_lex_state = 23}, + [1216] = {.lex_state = 52, .external_lex_state = 23}, + [1217] = {.lex_state = 52, .external_lex_state = 23}, + [1218] = {.lex_state = 52, .external_lex_state = 23}, + [1219] = {.lex_state = 23, .external_lex_state = 13}, + [1220] = {.lex_state = 23, .external_lex_state = 13}, + [1221] = {.lex_state = 23, .external_lex_state = 13}, + [1222] = {.lex_state = 47, .external_lex_state = 10}, + [1223] = {.lex_state = 47, .external_lex_state = 10}, + [1224] = {.lex_state = 23, .external_lex_state = 13}, + [1225] = {.lex_state = 23, .external_lex_state = 14}, + [1226] = {.lex_state = 23, .external_lex_state = 14}, + [1227] = {.lex_state = 23, .external_lex_state = 13}, + [1228] = {.lex_state = 47, .external_lex_state = 10}, + [1229] = {.lex_state = 47, .external_lex_state = 10}, + [1230] = {.lex_state = 23, .external_lex_state = 13}, + [1231] = {.lex_state = 23, .external_lex_state = 13}, + [1232] = {.lex_state = 47}, + [1233] = {.lex_state = 23, .external_lex_state = 13}, + [1234] = {.lex_state = 47, .external_lex_state = 10}, + [1235] = {.lex_state = 47, .external_lex_state = 10}, + [1236] = {.lex_state = 47, .external_lex_state = 10}, + [1237] = {.lex_state = 23, .external_lex_state = 13}, + [1238] = {.lex_state = 28, .external_lex_state = 14}, + [1239] = {.lex_state = 47, .external_lex_state = 10}, + [1240] = {.lex_state = 47, .external_lex_state = 10}, + [1241] = {.lex_state = 47, .external_lex_state = 10}, + [1242] = {.lex_state = 47, .external_lex_state = 10}, + [1243] = {.lex_state = 47, .external_lex_state = 10}, + [1244] = {.lex_state = 47, .external_lex_state = 10}, + [1245] = {.lex_state = 47, .external_lex_state = 10}, + [1246] = {.lex_state = 47, .external_lex_state = 10}, + [1247] = {.lex_state = 47, .external_lex_state = 10}, + [1248] = {.lex_state = 47, .external_lex_state = 10}, + [1249] = {.lex_state = 47, .external_lex_state = 10}, + [1250] = {.lex_state = 47, .external_lex_state = 10}, + [1251] = {.lex_state = 47, .external_lex_state = 10}, + [1252] = {.lex_state = 24, .external_lex_state = 5}, + [1253] = {.lex_state = 24, .external_lex_state = 5}, + [1254] = {.lex_state = 24, .external_lex_state = 5}, + [1255] = {.lex_state = 23, .external_lex_state = 13}, + [1256] = {.lex_state = 23, .external_lex_state = 13}, + [1257] = {.lex_state = 24, .external_lex_state = 5}, + [1258] = {.lex_state = 24, .external_lex_state = 4}, + [1259] = {.lex_state = 24, .external_lex_state = 4}, + [1260] = {.lex_state = 24, .external_lex_state = 5}, + [1261] = {.lex_state = 23, .external_lex_state = 13}, + [1262] = {.lex_state = 23, .external_lex_state = 13}, [1263] = {.lex_state = 24, .external_lex_state = 5}, [1264] = {.lex_state = 24, .external_lex_state = 5}, - [1265] = {.lex_state = 25, .external_lex_state = 5}, - [1266] = {.lex_state = 25, .external_lex_state = 5}, - [1267] = {.lex_state = 25, .external_lex_state = 5}, - [1268] = {.lex_state = 25, .external_lex_state = 3}, - [1269] = {.lex_state = 25, .external_lex_state = 3}, + [1265] = {.lex_state = 47}, + [1266] = {.lex_state = 24, .external_lex_state = 5}, + [1267] = {.lex_state = 23, .external_lex_state = 13}, + [1268] = {.lex_state = 23, .external_lex_state = 13}, + [1269] = {.lex_state = 23, .external_lex_state = 13}, [1270] = {.lex_state = 24, .external_lex_state = 5}, - [1271] = {.lex_state = 25, .external_lex_state = 5}, - [1272] = {.lex_state = 25, .external_lex_state = 5}, - [1273] = {.lex_state = 47}, - [1274] = {.lex_state = 25, .external_lex_state = 5}, - [1275] = {.lex_state = 24, .external_lex_state = 5}, - [1276] = {.lex_state = 24, .external_lex_state = 5}, - [1277] = {.lex_state = 25, .external_lex_state = 5}, - [1278] = {.lex_state = 24, .external_lex_state = 5}, - [1279] = {.lex_state = 29, .external_lex_state = 4}, - [1280] = {.lex_state = 24, .external_lex_state = 5}, - [1281] = {.lex_state = 24, .external_lex_state = 5}, - [1282] = {.lex_state = 24, .external_lex_state = 5}, - [1283] = {.lex_state = 25, .external_lex_state = 5}, - [1284] = {.lex_state = 24, .external_lex_state = 5}, - [1285] = {.lex_state = 24, .external_lex_state = 5}, - [1286] = {.lex_state = 24, .external_lex_state = 5}, - [1287] = {.lex_state = 24, .external_lex_state = 5}, - [1288] = {.lex_state = 24, .external_lex_state = 5}, - [1289] = {.lex_state = 24, .external_lex_state = 5}, - [1290] = {.lex_state = 24, .external_lex_state = 5}, - [1291] = {.lex_state = 24, .external_lex_state = 5}, - [1292] = {.lex_state = 24, .external_lex_state = 5}, - [1293] = {.lex_state = 24, .external_lex_state = 5}, - [1294] = {.lex_state = 25, .external_lex_state = 5}, - [1295] = {.lex_state = 25, .external_lex_state = 9}, + [1271] = {.lex_state = 39}, + [1272] = {.lex_state = 23, .external_lex_state = 13}, + [1273] = {.lex_state = 23, .external_lex_state = 13}, + [1274] = {.lex_state = 23, .external_lex_state = 13}, + [1275] = {.lex_state = 23, .external_lex_state = 13}, + [1276] = {.lex_state = 23, .external_lex_state = 13}, + [1277] = {.lex_state = 23, .external_lex_state = 13}, + [1278] = {.lex_state = 23, .external_lex_state = 13}, + [1279] = {.lex_state = 23, .external_lex_state = 13}, + [1280] = {.lex_state = 23, .external_lex_state = 13}, + [1281] = {.lex_state = 23, .external_lex_state = 13}, + [1282] = {.lex_state = 23, .external_lex_state = 13}, + [1283] = {.lex_state = 23, .external_lex_state = 13}, + [1284] = {.lex_state = 23, .external_lex_state = 13}, + [1285] = {.lex_state = 25, .external_lex_state = 9}, + [1286] = {.lex_state = 25, .external_lex_state = 9}, + [1287] = {.lex_state = 25, .external_lex_state = 9}, + [1288] = {.lex_state = 52, .external_lex_state = 27}, + [1289] = {.lex_state = 52, .external_lex_state = 27}, + [1290] = {.lex_state = 25, .external_lex_state = 9}, + [1291] = {.lex_state = 25, .external_lex_state = 3}, + [1292] = {.lex_state = 25, .external_lex_state = 3}, + [1293] = {.lex_state = 25, .external_lex_state = 9}, + [1294] = {.lex_state = 24, .external_lex_state = 5}, + [1295] = {.lex_state = 52, .external_lex_state = 27}, [1296] = {.lex_state = 25, .external_lex_state = 9}, - [1297] = {.lex_state = 26, .external_lex_state = 9}, - [1298] = {.lex_state = 26, .external_lex_state = 9}, - [1299] = {.lex_state = 26, .external_lex_state = 9}, - [1300] = {.lex_state = 25, .external_lex_state = 4}, - [1301] = {.lex_state = 25, .external_lex_state = 4}, - [1302] = {.lex_state = 25, .external_lex_state = 9}, - [1303] = {.lex_state = 26, .external_lex_state = 9}, - [1304] = {.lex_state = 26, .external_lex_state = 9}, - [1305] = {.lex_state = 47}, - [1306] = {.lex_state = 26, .external_lex_state = 9}, - [1307] = {.lex_state = 25, .external_lex_state = 9}, - [1308] = {.lex_state = 25, .external_lex_state = 9}, - [1309] = {.lex_state = 26, .external_lex_state = 9}, - [1310] = {.lex_state = 25, .external_lex_state = 9}, - [1311] = {.lex_state = 30, .external_lex_state = 3}, - [1312] = {.lex_state = 25, .external_lex_state = 9}, - [1313] = {.lex_state = 25, .external_lex_state = 9}, - [1314] = {.lex_state = 25, .external_lex_state = 9}, - [1315] = {.lex_state = 26, .external_lex_state = 9}, - [1316] = {.lex_state = 25, .external_lex_state = 9}, - [1317] = {.lex_state = 25, .external_lex_state = 9}, - [1318] = {.lex_state = 25, .external_lex_state = 9}, - [1319] = {.lex_state = 25, .external_lex_state = 9}, - [1320] = {.lex_state = 25, .external_lex_state = 9}, - [1321] = {.lex_state = 25, .external_lex_state = 9}, - [1322] = {.lex_state = 25, .external_lex_state = 9}, - [1323] = {.lex_state = 25, .external_lex_state = 9}, - [1324] = {.lex_state = 25, .external_lex_state = 9}, - [1325] = {.lex_state = 25, .external_lex_state = 9}, - [1326] = {.lex_state = 26, .external_lex_state = 9}, - [1327] = {.lex_state = 25, .external_lex_state = 5}, - [1328] = {.lex_state = 25, .external_lex_state = 5}, - [1329] = {.lex_state = 26, .external_lex_state = 3}, - [1330] = {.lex_state = 26, .external_lex_state = 3}, - [1331] = {.lex_state = 25, .external_lex_state = 5}, + [1297] = {.lex_state = 25, .external_lex_state = 9}, + [1298] = {.lex_state = 47}, + [1299] = {.lex_state = 25, .external_lex_state = 9}, + [1300] = {.lex_state = 52, .external_lex_state = 27}, + [1301] = {.lex_state = 52, .external_lex_state = 27}, + [1302] = {.lex_state = 52, .external_lex_state = 27}, + [1303] = {.lex_state = 25, .external_lex_state = 9}, + [1304] = {.lex_state = 16, .external_lex_state = 14}, + [1305] = {.lex_state = 52, .external_lex_state = 27}, + [1306] = {.lex_state = 52, .external_lex_state = 27}, + [1307] = {.lex_state = 52, .external_lex_state = 27}, + [1308] = {.lex_state = 52, .external_lex_state = 27}, + [1309] = {.lex_state = 52, .external_lex_state = 27}, + [1310] = {.lex_state = 52, .external_lex_state = 27}, + [1311] = {.lex_state = 52, .external_lex_state = 27}, + [1312] = {.lex_state = 52, .external_lex_state = 27}, + [1313] = {.lex_state = 52, .external_lex_state = 27}, + [1314] = {.lex_state = 52, .external_lex_state = 27}, + [1315] = {.lex_state = 52, .external_lex_state = 27}, + [1316] = {.lex_state = 52, .external_lex_state = 27}, + [1317] = {.lex_state = 52, .external_lex_state = 27}, + [1318] = {.lex_state = 25, .external_lex_state = 5}, + [1319] = {.lex_state = 25, .external_lex_state = 5}, + [1320] = {.lex_state = 25, .external_lex_state = 5}, + [1321] = {.lex_state = 24, .external_lex_state = 5}, + [1322] = {.lex_state = 24, .external_lex_state = 5}, + [1323] = {.lex_state = 25, .external_lex_state = 5}, + [1324] = {.lex_state = 25, .external_lex_state = 4}, + [1325] = {.lex_state = 25, .external_lex_state = 4}, + [1326] = {.lex_state = 25, .external_lex_state = 5}, + [1327] = {.lex_state = 25, .external_lex_state = 9}, + [1328] = {.lex_state = 24, .external_lex_state = 5}, + [1329] = {.lex_state = 25, .external_lex_state = 5}, + [1330] = {.lex_state = 25, .external_lex_state = 5}, + [1331] = {.lex_state = 47}, [1332] = {.lex_state = 25, .external_lex_state = 5}, - [1333] = {.lex_state = 25, .external_lex_state = 5}, - [1334] = {.lex_state = 25, .external_lex_state = 5}, - [1335] = {.lex_state = 30, .external_lex_state = 4}, + [1333] = {.lex_state = 24, .external_lex_state = 5}, + [1334] = {.lex_state = 24, .external_lex_state = 5}, + [1335] = {.lex_state = 24, .external_lex_state = 5}, [1336] = {.lex_state = 25, .external_lex_state = 5}, - [1337] = {.lex_state = 25, .external_lex_state = 5}, - [1338] = {.lex_state = 25, .external_lex_state = 5}, - [1339] = {.lex_state = 25, .external_lex_state = 5}, - [1340] = {.lex_state = 25, .external_lex_state = 5}, - [1341] = {.lex_state = 25, .external_lex_state = 5}, - [1342] = {.lex_state = 25, .external_lex_state = 5}, - [1343] = {.lex_state = 25, .external_lex_state = 5}, - [1344] = {.lex_state = 25, .external_lex_state = 5}, - [1345] = {.lex_state = 25, .external_lex_state = 5}, - [1346] = {.lex_state = 25, .external_lex_state = 5}, - [1347] = {.lex_state = 25, .external_lex_state = 5}, - [1348] = {.lex_state = 25, .external_lex_state = 5}, - [1349] = {.lex_state = 26, .external_lex_state = 9}, - [1350] = {.lex_state = 26, .external_lex_state = 9}, + [1337] = {.lex_state = 29, .external_lex_state = 4}, + [1338] = {.lex_state = 24, .external_lex_state = 5}, + [1339] = {.lex_state = 24, .external_lex_state = 5}, + [1340] = {.lex_state = 24, .external_lex_state = 5}, + [1341] = {.lex_state = 24, .external_lex_state = 5}, + [1342] = {.lex_state = 24, .external_lex_state = 5}, + [1343] = {.lex_state = 24, .external_lex_state = 5}, + [1344] = {.lex_state = 24, .external_lex_state = 5}, + [1345] = {.lex_state = 24, .external_lex_state = 5}, + [1346] = {.lex_state = 24, .external_lex_state = 5}, + [1347] = {.lex_state = 24, .external_lex_state = 5}, + [1348] = {.lex_state = 24, .external_lex_state = 5}, + [1349] = {.lex_state = 24, .external_lex_state = 5}, + [1350] = {.lex_state = 24, .external_lex_state = 5}, [1351] = {.lex_state = 26, .external_lex_state = 9}, [1352] = {.lex_state = 26, .external_lex_state = 9}, [1353] = {.lex_state = 26, .external_lex_state = 9}, - [1354] = {.lex_state = 26, .external_lex_state = 9}, - [1355] = {.lex_state = 30, .external_lex_state = 3}, + [1354] = {.lex_state = 25, .external_lex_state = 9}, + [1355] = {.lex_state = 25, .external_lex_state = 9}, [1356] = {.lex_state = 26, .external_lex_state = 9}, - [1357] = {.lex_state = 26, .external_lex_state = 9}, - [1358] = {.lex_state = 26, .external_lex_state = 9}, + [1357] = {.lex_state = 26, .external_lex_state = 3}, + [1358] = {.lex_state = 26, .external_lex_state = 3}, [1359] = {.lex_state = 26, .external_lex_state = 9}, - [1360] = {.lex_state = 26, .external_lex_state = 9}, - [1361] = {.lex_state = 26, .external_lex_state = 9}, + [1360] = {.lex_state = 25, .external_lex_state = 5}, + [1361] = {.lex_state = 25, .external_lex_state = 9}, [1362] = {.lex_state = 26, .external_lex_state = 9}, [1363] = {.lex_state = 26, .external_lex_state = 9}, - [1364] = {.lex_state = 26, .external_lex_state = 9}, + [1364] = {.lex_state = 47}, [1365] = {.lex_state = 26, .external_lex_state = 9}, - [1366] = {.lex_state = 26, .external_lex_state = 9}, - [1367] = {.lex_state = 26, .external_lex_state = 9}, - [1368] = {.lex_state = 26, .external_lex_state = 9}, - [1369] = {.lex_state = 14, .external_lex_state = 4}, - [1370] = {.lex_state = 47}, - [1371] = {.lex_state = 38}, - [1372] = {.lex_state = 36, .external_lex_state = 7}, - [1373] = {.lex_state = 51}, - [1374] = {.lex_state = 9}, - [1375] = {.lex_state = 9}, - [1376] = {.lex_state = 9}, - [1377] = {.lex_state = 47}, - [1378] = {.lex_state = 44, .external_lex_state = 10}, - [1379] = {.lex_state = 44, .external_lex_state = 10}, - [1380] = {.lex_state = 52}, - [1381] = {.lex_state = 3, .external_lex_state = 4}, - [1382] = {.lex_state = 6, .external_lex_state = 3}, - [1383] = {.lex_state = 36, .external_lex_state = 7}, - [1384] = {.lex_state = 43}, - [1385] = {.lex_state = 47, .external_lex_state = 14}, - [1386] = {.lex_state = 47}, - [1387] = {.lex_state = 40}, - [1388] = {.lex_state = 51}, - [1389] = {.lex_state = 47, .external_lex_state = 2}, - [1390] = {.lex_state = 9}, - [1391] = {.lex_state = 52}, - [1392] = {.lex_state = 43, .external_lex_state = 16}, - [1393] = {.lex_state = 41}, - [1394] = {.lex_state = 9, .external_lex_state = 18}, - [1395] = {.lex_state = 47}, - [1396] = {.lex_state = 45, .external_lex_state = 21}, - [1397] = {.lex_state = 45, .external_lex_state = 10}, - [1398] = {.lex_state = 44, .external_lex_state = 10}, - [1399] = {.lex_state = 44, .external_lex_state = 10}, - [1400] = {.lex_state = 48, .external_lex_state = 10}, - [1401] = {.lex_state = 45, .external_lex_state = 21}, - [1402] = {.lex_state = 45, .external_lex_state = 10}, - [1403] = {.lex_state = 9}, - [1404] = {.lex_state = 9, .external_lex_state = 2}, - [1405] = {.lex_state = 42}, - [1406] = {.lex_state = 47}, - [1407] = {.lex_state = 52, .external_lex_state = 23}, - [1408] = {.lex_state = 43, .external_lex_state = 23}, - [1409] = {.lex_state = 52, .external_lex_state = 23}, - [1410] = {.lex_state = 40}, - [1411] = {.lex_state = 52}, - [1412] = {.lex_state = 9, .external_lex_state = 2}, - [1413] = {.lex_state = 9, .external_lex_state = 24}, - [1414] = {.lex_state = 45, .external_lex_state = 10}, - [1415] = {.lex_state = 45, .external_lex_state = 10}, - [1416] = {.lex_state = 45, .external_lex_state = 21}, - [1417] = {.lex_state = 48, .external_lex_state = 10}, - [1418] = {.lex_state = 45, .external_lex_state = 21}, - [1419] = {.lex_state = 45, .external_lex_state = 10}, - [1420] = {.lex_state = 52, .external_lex_state = 20}, - [1421] = {.lex_state = 48, .external_lex_state = 10}, - [1422] = {.lex_state = 52, .external_lex_state = 10}, - [1423] = {.lex_state = 45, .external_lex_state = 10}, - [1424] = {.lex_state = 45, .external_lex_state = 10}, - [1425] = {.lex_state = 9}, - [1426] = {.lex_state = 4, .external_lex_state = 12}, - [1427] = {.lex_state = 52}, - [1428] = {.lex_state = 52}, - [1429] = {.lex_state = 9, .external_lex_state = 2}, - [1430] = {.lex_state = 50}, - [1431] = {.lex_state = 50}, - [1432] = {.lex_state = 47}, - [1433] = {.lex_state = 49, .external_lex_state = 16}, - [1434] = {.lex_state = 52, .external_lex_state = 16}, - [1435] = {.lex_state = 52, .external_lex_state = 16}, - [1436] = {.lex_state = 9, .external_lex_state = 2}, - [1437] = {.lex_state = 9, .external_lex_state = 24}, - [1438] = {.lex_state = 45, .external_lex_state = 10}, - [1439] = {.lex_state = 45, .external_lex_state = 10}, - [1440] = {.lex_state = 52, .external_lex_state = 20}, - [1441] = {.lex_state = 48, .external_lex_state = 10}, - [1442] = {.lex_state = 52, .external_lex_state = 10}, - [1443] = {.lex_state = 45, .external_lex_state = 10}, - [1444] = {.lex_state = 45, .external_lex_state = 10}, - [1445] = {.lex_state = 45, .external_lex_state = 10}, - [1446] = {.lex_state = 52}, - [1447] = {.lex_state = 52}, - [1448] = {.lex_state = 50}, - [1449] = {.lex_state = 43}, - [1450] = {.lex_state = 50}, - [1451] = {.lex_state = 43}, - [1452] = {.lex_state = 52}, - [1453] = {.lex_state = 52}, - [1454] = {.lex_state = 45, .external_lex_state = 10}, - [1455] = {.lex_state = 45, .external_lex_state = 10}, - [1456] = {.lex_state = 52}, - [1457] = {.lex_state = 43}, - [1458] = {.lex_state = 43}, - [1459] = {.lex_state = 52}, - [1460] = {.lex_state = 52}, - [1461] = {.lex_state = 43}, - [1462] = {.lex_state = 43}, - [1463] = {.lex_state = 52}, - [1464] = {.lex_state = 52}, - [1465] = {.lex_state = 52}, - [1466] = {.lex_state = 52}, - [1467] = {.lex_state = 52}, - [1468] = {.lex_state = 46, .external_lex_state = 2}, - [1469] = {.lex_state = 3, .external_lex_state = 4}, - [1470] = {.lex_state = 9, .external_lex_state = 2}, - [1471] = {.lex_state = 47, .external_lex_state = 2}, - [1472] = {.lex_state = 9, .external_lex_state = 17}, - [1473] = {.lex_state = 4, .external_lex_state = 12}, - [1474] = {.lex_state = 9, .external_lex_state = 17}, - [1475] = {.lex_state = 4, .external_lex_state = 12}, - [1476] = {.lex_state = 47}, - [1477] = {.lex_state = 47}, - [1478] = {.lex_state = 47}, - [1479] = {.lex_state = 47}, - [1480] = {.lex_state = 38}, - [1481] = {.lex_state = 51}, - [1482] = {.lex_state = 9}, - [1483] = {.lex_state = 9}, - [1484] = {.lex_state = 47}, - [1485] = {.lex_state = 44, .external_lex_state = 10}, - [1486] = {.lex_state = 44, .external_lex_state = 10}, - [1487] = {.lex_state = 47, .external_lex_state = 14}, - [1488] = {.lex_state = 47}, - [1489] = {.lex_state = 40}, - [1490] = {.lex_state = 51}, - [1491] = {.lex_state = 47, .external_lex_state = 2}, - [1492] = {.lex_state = 9}, - [1493] = {.lex_state = 45, .external_lex_state = 21}, - [1494] = {.lex_state = 45, .external_lex_state = 10}, - [1495] = {.lex_state = 44, .external_lex_state = 10}, - [1496] = {.lex_state = 44, .external_lex_state = 10}, - [1497] = {.lex_state = 48, .external_lex_state = 10}, - [1498] = {.lex_state = 45, .external_lex_state = 21}, - [1499] = {.lex_state = 45, .external_lex_state = 10}, - [1500] = {.lex_state = 42}, - [1501] = {.lex_state = 47}, - [1502] = {.lex_state = 40}, - [1503] = {.lex_state = 45, .external_lex_state = 10}, - [1504] = {.lex_state = 45, .external_lex_state = 10}, - [1505] = {.lex_state = 45, .external_lex_state = 21}, - [1506] = {.lex_state = 48, .external_lex_state = 10}, - [1507] = {.lex_state = 45, .external_lex_state = 21}, - [1508] = {.lex_state = 45, .external_lex_state = 10}, - [1509] = {.lex_state = 52, .external_lex_state = 20}, - [1510] = {.lex_state = 48, .external_lex_state = 10}, - [1511] = {.lex_state = 52, .external_lex_state = 10}, - [1512] = {.lex_state = 45, .external_lex_state = 10}, - [1513] = {.lex_state = 45, .external_lex_state = 10}, - [1514] = {.lex_state = 47}, - [1515] = {.lex_state = 45, .external_lex_state = 10}, - [1516] = {.lex_state = 45, .external_lex_state = 10}, - [1517] = {.lex_state = 52, .external_lex_state = 20}, - [1518] = {.lex_state = 48, .external_lex_state = 10}, - [1519] = {.lex_state = 52, .external_lex_state = 10}, - [1520] = {.lex_state = 45, .external_lex_state = 10}, - [1521] = {.lex_state = 45, .external_lex_state = 10}, - [1522] = {.lex_state = 45, .external_lex_state = 10}, - [1523] = {.lex_state = 45, .external_lex_state = 10}, - [1524] = {.lex_state = 45, .external_lex_state = 10}, - [1525] = {.lex_state = 38}, - [1526] = {.lex_state = 51}, - [1527] = {.lex_state = 9}, - [1528] = {.lex_state = 9}, - [1529] = {.lex_state = 47}, - [1530] = {.lex_state = 44, .external_lex_state = 10}, - [1531] = {.lex_state = 44, .external_lex_state = 10}, - [1532] = {.lex_state = 47, .external_lex_state = 14}, - [1533] = {.lex_state = 40}, - [1534] = {.lex_state = 51}, - [1535] = {.lex_state = 47, .external_lex_state = 2}, - [1536] = {.lex_state = 9}, - [1537] = {.lex_state = 45, .external_lex_state = 21}, - [1538] = {.lex_state = 45, .external_lex_state = 10}, - [1539] = {.lex_state = 44, .external_lex_state = 10}, - [1540] = {.lex_state = 44, .external_lex_state = 10}, - [1541] = {.lex_state = 48, .external_lex_state = 10}, - [1542] = {.lex_state = 45, .external_lex_state = 21}, - [1543] = {.lex_state = 45, .external_lex_state = 10}, - [1544] = {.lex_state = 47}, - [1545] = {.lex_state = 40}, - [1546] = {.lex_state = 45, .external_lex_state = 10}, - [1547] = {.lex_state = 45, .external_lex_state = 10}, - [1548] = {.lex_state = 45, .external_lex_state = 21}, - [1549] = {.lex_state = 48, .external_lex_state = 10}, - [1550] = {.lex_state = 45, .external_lex_state = 21}, - [1551] = {.lex_state = 45, .external_lex_state = 10}, - [1552] = {.lex_state = 52, .external_lex_state = 20}, - [1553] = {.lex_state = 48, .external_lex_state = 10}, - [1554] = {.lex_state = 52, .external_lex_state = 10}, - [1555] = {.lex_state = 45, .external_lex_state = 10}, - [1556] = {.lex_state = 45, .external_lex_state = 10}, - [1557] = {.lex_state = 47}, - [1558] = {.lex_state = 45, .external_lex_state = 10}, - [1559] = {.lex_state = 45, .external_lex_state = 10}, - [1560] = {.lex_state = 52, .external_lex_state = 20}, - [1561] = {.lex_state = 48, .external_lex_state = 10}, - [1562] = {.lex_state = 52, .external_lex_state = 10}, - [1563] = {.lex_state = 45, .external_lex_state = 10}, - [1564] = {.lex_state = 45, .external_lex_state = 10}, - [1565] = {.lex_state = 45, .external_lex_state = 10}, - [1566] = {.lex_state = 45, .external_lex_state = 10}, - [1567] = {.lex_state = 45, .external_lex_state = 10}, - [1568] = {.lex_state = 38}, - [1569] = {.lex_state = 51}, - [1570] = {.lex_state = 9}, - [1571] = {.lex_state = 9}, + [1366] = {.lex_state = 25, .external_lex_state = 9}, + [1367] = {.lex_state = 25, .external_lex_state = 9}, + [1368] = {.lex_state = 25, .external_lex_state = 9}, + [1369] = {.lex_state = 26, .external_lex_state = 9}, + [1370] = {.lex_state = 30, .external_lex_state = 3}, + [1371] = {.lex_state = 25, .external_lex_state = 9}, + [1372] = {.lex_state = 25, .external_lex_state = 9}, + [1373] = {.lex_state = 25, .external_lex_state = 9}, + [1374] = {.lex_state = 25, .external_lex_state = 9}, + [1375] = {.lex_state = 25, .external_lex_state = 9}, + [1376] = {.lex_state = 25, .external_lex_state = 9}, + [1377] = {.lex_state = 25, .external_lex_state = 9}, + [1378] = {.lex_state = 25, .external_lex_state = 9}, + [1379] = {.lex_state = 25, .external_lex_state = 9}, + [1380] = {.lex_state = 25, .external_lex_state = 9}, + [1381] = {.lex_state = 25, .external_lex_state = 9}, + [1382] = {.lex_state = 25, .external_lex_state = 9}, + [1383] = {.lex_state = 25, .external_lex_state = 9}, + [1384] = {.lex_state = 25, .external_lex_state = 5}, + [1385] = {.lex_state = 25, .external_lex_state = 5}, + [1386] = {.lex_state = 26, .external_lex_state = 9}, + [1387] = {.lex_state = 25, .external_lex_state = 5}, + [1388] = {.lex_state = 25, .external_lex_state = 5}, + [1389] = {.lex_state = 25, .external_lex_state = 5}, + [1390] = {.lex_state = 25, .external_lex_state = 5}, + [1391] = {.lex_state = 30, .external_lex_state = 4}, + [1392] = {.lex_state = 25, .external_lex_state = 5}, + [1393] = {.lex_state = 25, .external_lex_state = 5}, + [1394] = {.lex_state = 25, .external_lex_state = 5}, + [1395] = {.lex_state = 25, .external_lex_state = 5}, + [1396] = {.lex_state = 25, .external_lex_state = 5}, + [1397] = {.lex_state = 25, .external_lex_state = 5}, + [1398] = {.lex_state = 25, .external_lex_state = 5}, + [1399] = {.lex_state = 25, .external_lex_state = 5}, + [1400] = {.lex_state = 25, .external_lex_state = 5}, + [1401] = {.lex_state = 25, .external_lex_state = 5}, + [1402] = {.lex_state = 25, .external_lex_state = 5}, + [1403] = {.lex_state = 25, .external_lex_state = 5}, + [1404] = {.lex_state = 25, .external_lex_state = 5}, + [1405] = {.lex_state = 26, .external_lex_state = 9}, + [1406] = {.lex_state = 26, .external_lex_state = 9}, + [1407] = {.lex_state = 26, .external_lex_state = 9}, + [1408] = {.lex_state = 26, .external_lex_state = 9}, + [1409] = {.lex_state = 26, .external_lex_state = 9}, + [1410] = {.lex_state = 26, .external_lex_state = 9}, + [1411] = {.lex_state = 30, .external_lex_state = 3}, + [1412] = {.lex_state = 26, .external_lex_state = 9}, + [1413] = {.lex_state = 26, .external_lex_state = 9}, + [1414] = {.lex_state = 26, .external_lex_state = 9}, + [1415] = {.lex_state = 26, .external_lex_state = 9}, + [1416] = {.lex_state = 26, .external_lex_state = 9}, + [1417] = {.lex_state = 26, .external_lex_state = 9}, + [1418] = {.lex_state = 26, .external_lex_state = 9}, + [1419] = {.lex_state = 26, .external_lex_state = 9}, + [1420] = {.lex_state = 26, .external_lex_state = 9}, + [1421] = {.lex_state = 26, .external_lex_state = 9}, + [1422] = {.lex_state = 26, .external_lex_state = 9}, + [1423] = {.lex_state = 26, .external_lex_state = 9}, + [1424] = {.lex_state = 26, .external_lex_state = 9}, + [1425] = {.lex_state = 14, .external_lex_state = 4}, + [1426] = {.lex_state = 47}, + [1427] = {.lex_state = 51}, + [1428] = {.lex_state = 36, .external_lex_state = 6}, + [1429] = {.lex_state = 38}, + [1430] = {.lex_state = 9}, + [1431] = {.lex_state = 40}, + [1432] = {.lex_state = 51}, + [1433] = {.lex_state = 43, .external_lex_state = 12}, + [1434] = {.lex_state = 47, .external_lex_state = 2}, + [1435] = {.lex_state = 9}, + [1436] = {.lex_state = 9}, + [1437] = {.lex_state = 47}, + [1438] = {.lex_state = 52}, + [1439] = {.lex_state = 3, .external_lex_state = 4}, + [1440] = {.lex_state = 6, .external_lex_state = 3}, + [1441] = {.lex_state = 36, .external_lex_state = 6}, + [1442] = {.lex_state = 43, .external_lex_state = 12}, + [1443] = {.lex_state = 44, .external_lex_state = 15}, + [1444] = {.lex_state = 44, .external_lex_state = 15}, + [1445] = {.lex_state = 47, .external_lex_state = 16}, + [1446] = {.lex_state = 47}, + [1447] = {.lex_state = 9}, + [1448] = {.lex_state = 52}, + [1449] = {.lex_state = 43, .external_lex_state = 18}, + [1450] = {.lex_state = 41, .external_lex_state = 12}, + [1451] = {.lex_state = 9, .external_lex_state = 20}, + [1452] = {.lex_state = 47}, + [1453] = {.lex_state = 40}, + [1454] = {.lex_state = 42, .external_lex_state = 12}, + [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1456] = {.lex_state = 45, .external_lex_state = 24}, + [1457] = {.lex_state = 45, .external_lex_state = 15}, + [1458] = {.lex_state = 44, .external_lex_state = 15}, + [1459] = {.lex_state = 44, .external_lex_state = 15}, + [1460] = {.lex_state = 48, .external_lex_state = 15}, + [1461] = {.lex_state = 45, .external_lex_state = 24}, + [1462] = {.lex_state = 45, .external_lex_state = 15}, + [1463] = {.lex_state = 47}, + [1464] = {.lex_state = 52, .external_lex_state = 25}, + [1465] = {.lex_state = 52, .external_lex_state = 25}, + [1466] = {.lex_state = 43, .external_lex_state = 25}, + [1467] = {.lex_state = 9}, + [1468] = {.lex_state = 52}, + [1469] = {.lex_state = 9, .external_lex_state = 2}, + [1470] = {.lex_state = 52, .external_lex_state = 27}, + [1471] = {.lex_state = 9}, + [1472] = {.lex_state = 4, .external_lex_state = 14}, + [1473] = {.lex_state = 52}, + [1474] = {.lex_state = 9, .external_lex_state = 2}, + [1475] = {.lex_state = 52}, + [1476] = {.lex_state = 50}, + [1477] = {.lex_state = 50}, + [1478] = {.lex_state = 45, .external_lex_state = 15}, + [1479] = {.lex_state = 45, .external_lex_state = 15}, + [1480] = {.lex_state = 45, .external_lex_state = 24}, + [1481] = {.lex_state = 48, .external_lex_state = 15}, + [1482] = {.lex_state = 45, .external_lex_state = 24}, + [1483] = {.lex_state = 45, .external_lex_state = 15}, + [1484] = {.lex_state = 52, .external_lex_state = 23}, + [1485] = {.lex_state = 52, .external_lex_state = 15}, + [1486] = {.lex_state = 42, .external_lex_state = 15}, + [1487] = {.lex_state = 45, .external_lex_state = 15}, + [1488] = {.lex_state = 45, .external_lex_state = 15}, + [1489] = {.lex_state = 47}, + [1490] = {.lex_state = 49, .external_lex_state = 28}, + [1491] = {.lex_state = 52, .external_lex_state = 28}, + [1492] = {.lex_state = 52, .external_lex_state = 28}, + [1493] = {.lex_state = 9, .external_lex_state = 2}, + [1494] = {.lex_state = 52, .external_lex_state = 27}, + [1495] = {.lex_state = 52}, + [1496] = {.lex_state = 52}, + [1497] = {.lex_state = 50}, + [1498] = {.lex_state = 43}, + [1499] = {.lex_state = 50}, + [1500] = {.lex_state = 43}, + [1501] = {.lex_state = 45, .external_lex_state = 15}, + [1502] = {.lex_state = 45, .external_lex_state = 15}, + [1503] = {.lex_state = 52, .external_lex_state = 23}, + [1504] = {.lex_state = 52, .external_lex_state = 15}, + [1505] = {.lex_state = 42, .external_lex_state = 15}, + [1506] = {.lex_state = 45, .external_lex_state = 15}, + [1507] = {.lex_state = 45, .external_lex_state = 15}, + [1508] = {.lex_state = 45, .external_lex_state = 15}, + [1509] = {.lex_state = 52}, + [1510] = {.lex_state = 52}, + [1511] = {.lex_state = 52}, + [1512] = {.lex_state = 43}, + [1513] = {.lex_state = 43}, + [1514] = {.lex_state = 45, .external_lex_state = 15}, + [1515] = {.lex_state = 45, .external_lex_state = 15}, + [1516] = {.lex_state = 52}, + [1517] = {.lex_state = 52}, + [1518] = {.lex_state = 43}, + [1519] = {.lex_state = 43}, + [1520] = {.lex_state = 52}, + [1521] = {.lex_state = 52}, + [1522] = {.lex_state = 52}, + [1523] = {.lex_state = 52}, + [1524] = {.lex_state = 52}, + [1525] = {.lex_state = 46, .external_lex_state = 2}, + [1526] = {.lex_state = 3, .external_lex_state = 4}, + [1527] = {.lex_state = 9, .external_lex_state = 2}, + [1528] = {.lex_state = 47, .external_lex_state = 2}, + [1529] = {.lex_state = 9, .external_lex_state = 19}, + [1530] = {.lex_state = 4, .external_lex_state = 14}, + [1531] = {.lex_state = 9, .external_lex_state = 19}, + [1532] = {.lex_state = 4, .external_lex_state = 14}, + [1533] = {.lex_state = 47}, + [1534] = {.lex_state = 47}, + [1535] = {.lex_state = 47}, + [1536] = {.lex_state = 47}, + [1537] = {.lex_state = 51}, + [1538] = {.lex_state = 38}, + [1539] = {.lex_state = 40}, + [1540] = {.lex_state = 51}, + [1541] = {.lex_state = 43, .external_lex_state = 12}, + [1542] = {.lex_state = 47, .external_lex_state = 2}, + [1543] = {.lex_state = 9}, + [1544] = {.lex_state = 9}, + [1545] = {.lex_state = 47}, + [1546] = {.lex_state = 44, .external_lex_state = 15}, + [1547] = {.lex_state = 44, .external_lex_state = 15}, + [1548] = {.lex_state = 47, .external_lex_state = 16}, + [1549] = {.lex_state = 47}, + [1550] = {.lex_state = 9}, + [1551] = {.lex_state = 40}, + [1552] = {.lex_state = 42, .external_lex_state = 12}, + [1553] = {.lex_state = 45, .external_lex_state = 24}, + [1554] = {.lex_state = 45, .external_lex_state = 15}, + [1555] = {.lex_state = 44, .external_lex_state = 15}, + [1556] = {.lex_state = 44, .external_lex_state = 15}, + [1557] = {.lex_state = 48, .external_lex_state = 15}, + [1558] = {.lex_state = 45, .external_lex_state = 24}, + [1559] = {.lex_state = 45, .external_lex_state = 15}, + [1560] = {.lex_state = 47}, + [1561] = {.lex_state = 45, .external_lex_state = 15}, + [1562] = {.lex_state = 45, .external_lex_state = 15}, + [1563] = {.lex_state = 45, .external_lex_state = 24}, + [1564] = {.lex_state = 48, .external_lex_state = 15}, + [1565] = {.lex_state = 45, .external_lex_state = 24}, + [1566] = {.lex_state = 45, .external_lex_state = 15}, + [1567] = {.lex_state = 52, .external_lex_state = 23}, + [1568] = {.lex_state = 52, .external_lex_state = 15}, + [1569] = {.lex_state = 42, .external_lex_state = 15}, + [1570] = {.lex_state = 45, .external_lex_state = 15}, + [1571] = {.lex_state = 45, .external_lex_state = 15}, [1572] = {.lex_state = 47}, - [1573] = {.lex_state = 44, .external_lex_state = 10}, - [1574] = {.lex_state = 44, .external_lex_state = 10}, - [1575] = {.lex_state = 47, .external_lex_state = 14}, - [1576] = {.lex_state = 40}, - [1577] = {.lex_state = 51}, - [1578] = {.lex_state = 47, .external_lex_state = 2}, - [1579] = {.lex_state = 9}, - [1580] = {.lex_state = 45, .external_lex_state = 21}, - [1581] = {.lex_state = 45, .external_lex_state = 10}, - [1582] = {.lex_state = 44, .external_lex_state = 10}, - [1583] = {.lex_state = 44, .external_lex_state = 10}, - [1584] = {.lex_state = 48, .external_lex_state = 10}, - [1585] = {.lex_state = 45, .external_lex_state = 21}, - [1586] = {.lex_state = 45, .external_lex_state = 10}, - [1587] = {.lex_state = 47}, - [1588] = {.lex_state = 40}, - [1589] = {.lex_state = 45, .external_lex_state = 10}, - [1590] = {.lex_state = 45, .external_lex_state = 10}, - [1591] = {.lex_state = 45, .external_lex_state = 21}, - [1592] = {.lex_state = 48, .external_lex_state = 10}, - [1593] = {.lex_state = 45, .external_lex_state = 21}, - [1594] = {.lex_state = 45, .external_lex_state = 10}, - [1595] = {.lex_state = 52, .external_lex_state = 20}, - [1596] = {.lex_state = 48, .external_lex_state = 10}, - [1597] = {.lex_state = 52, .external_lex_state = 10}, - [1598] = {.lex_state = 45, .external_lex_state = 10}, - [1599] = {.lex_state = 45, .external_lex_state = 10}, - [1600] = {.lex_state = 47}, - [1601] = {.lex_state = 45, .external_lex_state = 10}, - [1602] = {.lex_state = 45, .external_lex_state = 10}, - [1603] = {.lex_state = 52, .external_lex_state = 20}, - [1604] = {.lex_state = 48, .external_lex_state = 10}, - [1605] = {.lex_state = 52, .external_lex_state = 10}, - [1606] = {.lex_state = 45, .external_lex_state = 10}, - [1607] = {.lex_state = 45, .external_lex_state = 10}, - [1608] = {.lex_state = 45, .external_lex_state = 10}, - [1609] = {.lex_state = 45, .external_lex_state = 10}, - [1610] = {.lex_state = 45, .external_lex_state = 10}, - [1611] = {.lex_state = 38}, - [1612] = {.lex_state = 51}, - [1613] = {.lex_state = 9}, - [1614] = {.lex_state = 9}, - [1615] = {.lex_state = 47}, - [1616] = {.lex_state = 44, .external_lex_state = 10}, - [1617] = {.lex_state = 44, .external_lex_state = 10}, - [1618] = {.lex_state = 47, .external_lex_state = 14}, - [1619] = {.lex_state = 40}, - [1620] = {.lex_state = 51}, - [1621] = {.lex_state = 47, .external_lex_state = 2}, - [1622] = {.lex_state = 9}, - [1623] = {.lex_state = 45, .external_lex_state = 21}, - [1624] = {.lex_state = 45, .external_lex_state = 10}, - [1625] = {.lex_state = 44, .external_lex_state = 10}, - [1626] = {.lex_state = 44, .external_lex_state = 10}, - [1627] = {.lex_state = 48, .external_lex_state = 10}, - [1628] = {.lex_state = 45, .external_lex_state = 21}, - [1629] = {.lex_state = 45, .external_lex_state = 10}, - [1630] = {.lex_state = 47}, - [1631] = {.lex_state = 40}, - [1632] = {.lex_state = 45, .external_lex_state = 10}, - [1633] = {.lex_state = 45, .external_lex_state = 10}, - [1634] = {.lex_state = 45, .external_lex_state = 21}, - [1635] = {.lex_state = 48, .external_lex_state = 10}, - [1636] = {.lex_state = 45, .external_lex_state = 21}, - [1637] = {.lex_state = 45, .external_lex_state = 10}, - [1638] = {.lex_state = 52, .external_lex_state = 20}, - [1639] = {.lex_state = 48, .external_lex_state = 10}, - [1640] = {.lex_state = 52, .external_lex_state = 10}, - [1641] = {.lex_state = 45, .external_lex_state = 10}, - [1642] = {.lex_state = 45, .external_lex_state = 10}, - [1643] = {.lex_state = 47}, - [1644] = {.lex_state = 45, .external_lex_state = 10}, - [1645] = {.lex_state = 45, .external_lex_state = 10}, - [1646] = {.lex_state = 52, .external_lex_state = 20}, - [1647] = {.lex_state = 48, .external_lex_state = 10}, - [1648] = {.lex_state = 52, .external_lex_state = 10}, - [1649] = {.lex_state = 45, .external_lex_state = 10}, - [1650] = {.lex_state = 45, .external_lex_state = 10}, - [1651] = {.lex_state = 45, .external_lex_state = 10}, - [1652] = {.lex_state = 45, .external_lex_state = 10}, - [1653] = {.lex_state = 45, .external_lex_state = 10}, - [1654] = {.lex_state = 38}, - [1655] = {.lex_state = 51}, - [1656] = {.lex_state = 9}, - [1657] = {.lex_state = 9}, - [1658] = {.lex_state = 47}, - [1659] = {.lex_state = 44, .external_lex_state = 10}, - [1660] = {.lex_state = 44, .external_lex_state = 10}, - [1661] = {.lex_state = 47, .external_lex_state = 14}, - [1662] = {.lex_state = 40}, - [1663] = {.lex_state = 51}, - [1664] = {.lex_state = 47, .external_lex_state = 2}, - [1665] = {.lex_state = 9}, - [1666] = {.lex_state = 45, .external_lex_state = 21}, - [1667] = {.lex_state = 45, .external_lex_state = 10}, - [1668] = {.lex_state = 44, .external_lex_state = 10}, - [1669] = {.lex_state = 44, .external_lex_state = 10}, - [1670] = {.lex_state = 48, .external_lex_state = 10}, - [1671] = {.lex_state = 45, .external_lex_state = 21}, - [1672] = {.lex_state = 45, .external_lex_state = 10}, - [1673] = {.lex_state = 47}, - [1674] = {.lex_state = 40}, - [1675] = {.lex_state = 45, .external_lex_state = 10}, - [1676] = {.lex_state = 45, .external_lex_state = 10}, - [1677] = {.lex_state = 45, .external_lex_state = 21}, - [1678] = {.lex_state = 48, .external_lex_state = 10}, - [1679] = {.lex_state = 45, .external_lex_state = 21}, - [1680] = {.lex_state = 45, .external_lex_state = 10}, - [1681] = {.lex_state = 52, .external_lex_state = 20}, - [1682] = {.lex_state = 48, .external_lex_state = 10}, - [1683] = {.lex_state = 52, .external_lex_state = 10}, - [1684] = {.lex_state = 45, .external_lex_state = 10}, - [1685] = {.lex_state = 45, .external_lex_state = 10}, - [1686] = {.lex_state = 47}, - [1687] = {.lex_state = 45, .external_lex_state = 10}, - [1688] = {.lex_state = 45, .external_lex_state = 10}, - [1689] = {.lex_state = 52, .external_lex_state = 20}, - [1690] = {.lex_state = 48, .external_lex_state = 10}, - [1691] = {.lex_state = 52, .external_lex_state = 10}, - [1692] = {.lex_state = 45, .external_lex_state = 10}, - [1693] = {.lex_state = 45, .external_lex_state = 10}, - [1694] = {.lex_state = 45, .external_lex_state = 10}, - [1695] = {.lex_state = 45, .external_lex_state = 10}, - [1696] = {.lex_state = 45, .external_lex_state = 10}, - [1697] = {.lex_state = 38}, - [1698] = {.lex_state = 51}, - [1699] = {.lex_state = 9}, - [1700] = {.lex_state = 9}, - [1701] = {.lex_state = 47}, - [1702] = {.lex_state = 44, .external_lex_state = 10}, - [1703] = {.lex_state = 44, .external_lex_state = 10}, - [1704] = {.lex_state = 47, .external_lex_state = 14}, - [1705] = {.lex_state = 40}, - [1706] = {.lex_state = 51}, - [1707] = {.lex_state = 47, .external_lex_state = 2}, - [1708] = {.lex_state = 9}, - [1709] = {.lex_state = 45, .external_lex_state = 21}, - [1710] = {.lex_state = 45, .external_lex_state = 10}, - [1711] = {.lex_state = 44, .external_lex_state = 10}, - [1712] = {.lex_state = 44, .external_lex_state = 10}, - [1713] = {.lex_state = 48, .external_lex_state = 10}, - [1714] = {.lex_state = 45, .external_lex_state = 21}, - [1715] = {.lex_state = 45, .external_lex_state = 10}, - [1716] = {.lex_state = 47}, + [1573] = {.lex_state = 45, .external_lex_state = 15}, + [1574] = {.lex_state = 45, .external_lex_state = 15}, + [1575] = {.lex_state = 52, .external_lex_state = 23}, + [1576] = {.lex_state = 52, .external_lex_state = 15}, + [1577] = {.lex_state = 42, .external_lex_state = 15}, + [1578] = {.lex_state = 45, .external_lex_state = 15}, + [1579] = {.lex_state = 45, .external_lex_state = 15}, + [1580] = {.lex_state = 45, .external_lex_state = 15}, + [1581] = {.lex_state = 45, .external_lex_state = 15}, + [1582] = {.lex_state = 45, .external_lex_state = 15}, + [1583] = {.lex_state = 51}, + [1584] = {.lex_state = 38}, + [1585] = {.lex_state = 40}, + [1586] = {.lex_state = 51}, + [1587] = {.lex_state = 43, .external_lex_state = 12}, + [1588] = {.lex_state = 47, .external_lex_state = 2}, + [1589] = {.lex_state = 9}, + [1590] = {.lex_state = 9}, + [1591] = {.lex_state = 47}, + [1592] = {.lex_state = 44, .external_lex_state = 15}, + [1593] = {.lex_state = 44, .external_lex_state = 15}, + [1594] = {.lex_state = 47, .external_lex_state = 16}, + [1595] = {.lex_state = 9}, + [1596] = {.lex_state = 40}, + [1597] = {.lex_state = 45, .external_lex_state = 24}, + [1598] = {.lex_state = 45, .external_lex_state = 15}, + [1599] = {.lex_state = 44, .external_lex_state = 15}, + [1600] = {.lex_state = 44, .external_lex_state = 15}, + [1601] = {.lex_state = 48, .external_lex_state = 15}, + [1602] = {.lex_state = 45, .external_lex_state = 24}, + [1603] = {.lex_state = 45, .external_lex_state = 15}, + [1604] = {.lex_state = 47}, + [1605] = {.lex_state = 45, .external_lex_state = 15}, + [1606] = {.lex_state = 45, .external_lex_state = 15}, + [1607] = {.lex_state = 45, .external_lex_state = 24}, + [1608] = {.lex_state = 48, .external_lex_state = 15}, + [1609] = {.lex_state = 45, .external_lex_state = 24}, + [1610] = {.lex_state = 45, .external_lex_state = 15}, + [1611] = {.lex_state = 52, .external_lex_state = 23}, + [1612] = {.lex_state = 52, .external_lex_state = 15}, + [1613] = {.lex_state = 42, .external_lex_state = 15}, + [1614] = {.lex_state = 45, .external_lex_state = 15}, + [1615] = {.lex_state = 45, .external_lex_state = 15}, + [1616] = {.lex_state = 47}, + [1617] = {.lex_state = 45, .external_lex_state = 15}, + [1618] = {.lex_state = 45, .external_lex_state = 15}, + [1619] = {.lex_state = 52, .external_lex_state = 23}, + [1620] = {.lex_state = 52, .external_lex_state = 15}, + [1621] = {.lex_state = 42, .external_lex_state = 15}, + [1622] = {.lex_state = 45, .external_lex_state = 15}, + [1623] = {.lex_state = 45, .external_lex_state = 15}, + [1624] = {.lex_state = 45, .external_lex_state = 15}, + [1625] = {.lex_state = 45, .external_lex_state = 15}, + [1626] = {.lex_state = 45, .external_lex_state = 15}, + [1627] = {.lex_state = 51}, + [1628] = {.lex_state = 38}, + [1629] = {.lex_state = 40}, + [1630] = {.lex_state = 51}, + [1631] = {.lex_state = 43, .external_lex_state = 12}, + [1632] = {.lex_state = 47, .external_lex_state = 2}, + [1633] = {.lex_state = 9}, + [1634] = {.lex_state = 9}, + [1635] = {.lex_state = 47}, + [1636] = {.lex_state = 44, .external_lex_state = 15}, + [1637] = {.lex_state = 44, .external_lex_state = 15}, + [1638] = {.lex_state = 47, .external_lex_state = 16}, + [1639] = {.lex_state = 9}, + [1640] = {.lex_state = 40}, + [1641] = {.lex_state = 45, .external_lex_state = 24}, + [1642] = {.lex_state = 45, .external_lex_state = 15}, + [1643] = {.lex_state = 44, .external_lex_state = 15}, + [1644] = {.lex_state = 44, .external_lex_state = 15}, + [1645] = {.lex_state = 48, .external_lex_state = 15}, + [1646] = {.lex_state = 45, .external_lex_state = 24}, + [1647] = {.lex_state = 45, .external_lex_state = 15}, + [1648] = {.lex_state = 47}, + [1649] = {.lex_state = 45, .external_lex_state = 15}, + [1650] = {.lex_state = 45, .external_lex_state = 15}, + [1651] = {.lex_state = 45, .external_lex_state = 24}, + [1652] = {.lex_state = 48, .external_lex_state = 15}, + [1653] = {.lex_state = 45, .external_lex_state = 24}, + [1654] = {.lex_state = 45, .external_lex_state = 15}, + [1655] = {.lex_state = 52, .external_lex_state = 23}, + [1656] = {.lex_state = 52, .external_lex_state = 15}, + [1657] = {.lex_state = 42, .external_lex_state = 15}, + [1658] = {.lex_state = 45, .external_lex_state = 15}, + [1659] = {.lex_state = 45, .external_lex_state = 15}, + [1660] = {.lex_state = 47}, + [1661] = {.lex_state = 45, .external_lex_state = 15}, + [1662] = {.lex_state = 45, .external_lex_state = 15}, + [1663] = {.lex_state = 52, .external_lex_state = 23}, + [1664] = {.lex_state = 52, .external_lex_state = 15}, + [1665] = {.lex_state = 42, .external_lex_state = 15}, + [1666] = {.lex_state = 45, .external_lex_state = 15}, + [1667] = {.lex_state = 45, .external_lex_state = 15}, + [1668] = {.lex_state = 45, .external_lex_state = 15}, + [1669] = {.lex_state = 45, .external_lex_state = 15}, + [1670] = {.lex_state = 45, .external_lex_state = 15}, + [1671] = {.lex_state = 51}, + [1672] = {.lex_state = 38}, + [1673] = {.lex_state = 40}, + [1674] = {.lex_state = 51}, + [1675] = {.lex_state = 43, .external_lex_state = 12}, + [1676] = {.lex_state = 47, .external_lex_state = 2}, + [1677] = {.lex_state = 9}, + [1678] = {.lex_state = 9}, + [1679] = {.lex_state = 47}, + [1680] = {.lex_state = 44, .external_lex_state = 15}, + [1681] = {.lex_state = 44, .external_lex_state = 15}, + [1682] = {.lex_state = 47, .external_lex_state = 16}, + [1683] = {.lex_state = 9}, + [1684] = {.lex_state = 40}, + [1685] = {.lex_state = 45, .external_lex_state = 24}, + [1686] = {.lex_state = 45, .external_lex_state = 15}, + [1687] = {.lex_state = 44, .external_lex_state = 15}, + [1688] = {.lex_state = 44, .external_lex_state = 15}, + [1689] = {.lex_state = 48, .external_lex_state = 15}, + [1690] = {.lex_state = 45, .external_lex_state = 24}, + [1691] = {.lex_state = 45, .external_lex_state = 15}, + [1692] = {.lex_state = 47}, + [1693] = {.lex_state = 45, .external_lex_state = 15}, + [1694] = {.lex_state = 45, .external_lex_state = 15}, + [1695] = {.lex_state = 45, .external_lex_state = 24}, + [1696] = {.lex_state = 48, .external_lex_state = 15}, + [1697] = {.lex_state = 45, .external_lex_state = 24}, + [1698] = {.lex_state = 45, .external_lex_state = 15}, + [1699] = {.lex_state = 52, .external_lex_state = 23}, + [1700] = {.lex_state = 52, .external_lex_state = 15}, + [1701] = {.lex_state = 42, .external_lex_state = 15}, + [1702] = {.lex_state = 45, .external_lex_state = 15}, + [1703] = {.lex_state = 45, .external_lex_state = 15}, + [1704] = {.lex_state = 47}, + [1705] = {.lex_state = 45, .external_lex_state = 15}, + [1706] = {.lex_state = 45, .external_lex_state = 15}, + [1707] = {.lex_state = 52, .external_lex_state = 23}, + [1708] = {.lex_state = 52, .external_lex_state = 15}, + [1709] = {.lex_state = 42, .external_lex_state = 15}, + [1710] = {.lex_state = 45, .external_lex_state = 15}, + [1711] = {.lex_state = 45, .external_lex_state = 15}, + [1712] = {.lex_state = 45, .external_lex_state = 15}, + [1713] = {.lex_state = 45, .external_lex_state = 15}, + [1714] = {.lex_state = 45, .external_lex_state = 15}, + [1715] = {.lex_state = 51}, + [1716] = {.lex_state = 38}, [1717] = {.lex_state = 40}, - [1718] = {.lex_state = 45, .external_lex_state = 10}, - [1719] = {.lex_state = 45, .external_lex_state = 10}, - [1720] = {.lex_state = 45, .external_lex_state = 21}, - [1721] = {.lex_state = 48, .external_lex_state = 10}, - [1722] = {.lex_state = 45, .external_lex_state = 21}, - [1723] = {.lex_state = 45, .external_lex_state = 10}, - [1724] = {.lex_state = 52, .external_lex_state = 20}, - [1725] = {.lex_state = 48, .external_lex_state = 10}, - [1726] = {.lex_state = 52, .external_lex_state = 10}, - [1727] = {.lex_state = 45, .external_lex_state = 10}, - [1728] = {.lex_state = 45, .external_lex_state = 10}, - [1729] = {.lex_state = 47}, - [1730] = {.lex_state = 45, .external_lex_state = 10}, - [1731] = {.lex_state = 45, .external_lex_state = 10}, - [1732] = {.lex_state = 52, .external_lex_state = 20}, - [1733] = {.lex_state = 48, .external_lex_state = 10}, - [1734] = {.lex_state = 52, .external_lex_state = 10}, - [1735] = {.lex_state = 45, .external_lex_state = 10}, - [1736] = {.lex_state = 45, .external_lex_state = 10}, - [1737] = {.lex_state = 45, .external_lex_state = 10}, - [1738] = {.lex_state = 45, .external_lex_state = 10}, - [1739] = {.lex_state = 45, .external_lex_state = 10}, - [1740] = {.lex_state = 38}, - [1741] = {.lex_state = 51}, - [1742] = {.lex_state = 9}, - [1743] = {.lex_state = 9}, - [1744] = {.lex_state = 47}, - [1745] = {.lex_state = 44, .external_lex_state = 10}, - [1746] = {.lex_state = 44, .external_lex_state = 10}, - [1747] = {.lex_state = 40}, - [1748] = {.lex_state = 51}, - [1749] = {.lex_state = 47, .external_lex_state = 2}, - [1750] = {.lex_state = 9}, - [1751] = {.lex_state = 45, .external_lex_state = 21}, - [1752] = {.lex_state = 45, .external_lex_state = 10}, - [1753] = {.lex_state = 44, .external_lex_state = 10}, - [1754] = {.lex_state = 44, .external_lex_state = 10}, - [1755] = {.lex_state = 48, .external_lex_state = 10}, - [1756] = {.lex_state = 45, .external_lex_state = 21}, - [1757] = {.lex_state = 45, .external_lex_state = 10}, - [1758] = {.lex_state = 40}, - [1759] = {.lex_state = 45, .external_lex_state = 10}, - [1760] = {.lex_state = 45, .external_lex_state = 10}, - [1761] = {.lex_state = 45, .external_lex_state = 21}, - [1762] = {.lex_state = 48, .external_lex_state = 10}, - [1763] = {.lex_state = 45, .external_lex_state = 21}, - [1764] = {.lex_state = 45, .external_lex_state = 10}, - [1765] = {.lex_state = 52, .external_lex_state = 20}, - [1766] = {.lex_state = 48, .external_lex_state = 10}, - [1767] = {.lex_state = 52, .external_lex_state = 10}, - [1768] = {.lex_state = 45, .external_lex_state = 10}, - [1769] = {.lex_state = 45, .external_lex_state = 10}, - [1770] = {.lex_state = 45, .external_lex_state = 10}, - [1771] = {.lex_state = 45, .external_lex_state = 10}, - [1772] = {.lex_state = 52, .external_lex_state = 20}, - [1773] = {.lex_state = 48, .external_lex_state = 10}, - [1774] = {.lex_state = 52, .external_lex_state = 10}, - [1775] = {.lex_state = 45, .external_lex_state = 10}, - [1776] = {.lex_state = 45, .external_lex_state = 10}, - [1777] = {.lex_state = 45, .external_lex_state = 10}, - [1778] = {.lex_state = 45, .external_lex_state = 10}, - [1779] = {.lex_state = 45, .external_lex_state = 10}, - [1780] = {.lex_state = 38}, - [1781] = {.lex_state = 51}, - [1782] = {.lex_state = 9}, - [1783] = {.lex_state = 9}, - [1784] = {.lex_state = 47}, - [1785] = {.lex_state = 44, .external_lex_state = 10}, - [1786] = {.lex_state = 44, .external_lex_state = 10}, - [1787] = {.lex_state = 40}, - [1788] = {.lex_state = 51}, - [1789] = {.lex_state = 47, .external_lex_state = 2}, - [1790] = {.lex_state = 9}, - [1791] = {.lex_state = 45, .external_lex_state = 21}, - [1792] = {.lex_state = 45, .external_lex_state = 10}, - [1793] = {.lex_state = 44, .external_lex_state = 10}, - [1794] = {.lex_state = 44, .external_lex_state = 10}, - [1795] = {.lex_state = 48, .external_lex_state = 10}, - [1796] = {.lex_state = 45, .external_lex_state = 21}, - [1797] = {.lex_state = 45, .external_lex_state = 10}, - [1798] = {.lex_state = 40}, - [1799] = {.lex_state = 45, .external_lex_state = 10}, - [1800] = {.lex_state = 45, .external_lex_state = 10}, - [1801] = {.lex_state = 45, .external_lex_state = 21}, - [1802] = {.lex_state = 48, .external_lex_state = 10}, - [1803] = {.lex_state = 45, .external_lex_state = 21}, - [1804] = {.lex_state = 45, .external_lex_state = 10}, - [1805] = {.lex_state = 52, .external_lex_state = 20}, - [1806] = {.lex_state = 48, .external_lex_state = 10}, - [1807] = {.lex_state = 52, .external_lex_state = 10}, - [1808] = {.lex_state = 45, .external_lex_state = 10}, - [1809] = {.lex_state = 45, .external_lex_state = 10}, - [1810] = {.lex_state = 45, .external_lex_state = 10}, - [1811] = {.lex_state = 45, .external_lex_state = 10}, - [1812] = {.lex_state = 52, .external_lex_state = 20}, - [1813] = {.lex_state = 48, .external_lex_state = 10}, - [1814] = {.lex_state = 52, .external_lex_state = 10}, - [1815] = {.lex_state = 45, .external_lex_state = 10}, - [1816] = {.lex_state = 45, .external_lex_state = 10}, - [1817] = {.lex_state = 45, .external_lex_state = 10}, - [1818] = {.lex_state = 45, .external_lex_state = 10}, - [1819] = {.lex_state = 45, .external_lex_state = 10}, - [1820] = {.lex_state = 38}, - [1821] = {.lex_state = 51}, - [1822] = {.lex_state = 9}, - [1823] = {.lex_state = 9}, - [1824] = {.lex_state = 47}, - [1825] = {.lex_state = 44, .external_lex_state = 10}, - [1826] = {.lex_state = 44, .external_lex_state = 10}, - [1827] = {.lex_state = 40}, - [1828] = {.lex_state = 51}, - [1829] = {.lex_state = 47, .external_lex_state = 2}, - [1830] = {.lex_state = 9}, - [1831] = {.lex_state = 45, .external_lex_state = 21}, - [1832] = {.lex_state = 45, .external_lex_state = 10}, - [1833] = {.lex_state = 44, .external_lex_state = 10}, - [1834] = {.lex_state = 44, .external_lex_state = 10}, - [1835] = {.lex_state = 48, .external_lex_state = 10}, - [1836] = {.lex_state = 45, .external_lex_state = 21}, - [1837] = {.lex_state = 45, .external_lex_state = 10}, - [1838] = {.lex_state = 40}, - [1839] = {.lex_state = 45, .external_lex_state = 10}, - [1840] = {.lex_state = 45, .external_lex_state = 10}, - [1841] = {.lex_state = 45, .external_lex_state = 21}, - [1842] = {.lex_state = 48, .external_lex_state = 10}, - [1843] = {.lex_state = 45, .external_lex_state = 21}, - [1844] = {.lex_state = 45, .external_lex_state = 10}, - [1845] = {.lex_state = 52, .external_lex_state = 20}, - [1846] = {.lex_state = 48, .external_lex_state = 10}, - [1847] = {.lex_state = 52, .external_lex_state = 10}, - [1848] = {.lex_state = 45, .external_lex_state = 10}, - [1849] = {.lex_state = 45, .external_lex_state = 10}, - [1850] = {.lex_state = 45, .external_lex_state = 10}, - [1851] = {.lex_state = 45, .external_lex_state = 10}, - [1852] = {.lex_state = 52, .external_lex_state = 20}, - [1853] = {.lex_state = 48, .external_lex_state = 10}, - [1854] = {.lex_state = 52, .external_lex_state = 10}, - [1855] = {.lex_state = 45, .external_lex_state = 10}, - [1856] = {.lex_state = 45, .external_lex_state = 10}, - [1857] = {.lex_state = 45, .external_lex_state = 10}, - [1858] = {.lex_state = 45, .external_lex_state = 10}, - [1859] = {.lex_state = 45, .external_lex_state = 10}, - [1860] = {.lex_state = 38}, - [1861] = {.lex_state = 51}, - [1862] = {.lex_state = 9}, - [1863] = {.lex_state = 9}, - [1864] = {.lex_state = 47}, - [1865] = {.lex_state = 44, .external_lex_state = 10}, - [1866] = {.lex_state = 44, .external_lex_state = 10}, - [1867] = {.lex_state = 40}, - [1868] = {.lex_state = 51}, - [1869] = {.lex_state = 47, .external_lex_state = 2}, - [1870] = {.lex_state = 9}, - [1871] = {.lex_state = 45, .external_lex_state = 21}, - [1872] = {.lex_state = 45, .external_lex_state = 10}, - [1873] = {.lex_state = 44, .external_lex_state = 10}, - [1874] = {.lex_state = 44, .external_lex_state = 10}, - [1875] = {.lex_state = 48, .external_lex_state = 10}, - [1876] = {.lex_state = 45, .external_lex_state = 21}, - [1877] = {.lex_state = 45, .external_lex_state = 10}, - [1878] = {.lex_state = 40}, - [1879] = {.lex_state = 45, .external_lex_state = 10}, - [1880] = {.lex_state = 45, .external_lex_state = 10}, - [1881] = {.lex_state = 45, .external_lex_state = 21}, - [1882] = {.lex_state = 48, .external_lex_state = 10}, - [1883] = {.lex_state = 45, .external_lex_state = 21}, - [1884] = {.lex_state = 45, .external_lex_state = 10}, - [1885] = {.lex_state = 52, .external_lex_state = 20}, - [1886] = {.lex_state = 48, .external_lex_state = 10}, - [1887] = {.lex_state = 52, .external_lex_state = 10}, - [1888] = {.lex_state = 45, .external_lex_state = 10}, - [1889] = {.lex_state = 45, .external_lex_state = 10}, - [1890] = {.lex_state = 45, .external_lex_state = 10}, - [1891] = {.lex_state = 45, .external_lex_state = 10}, - [1892] = {.lex_state = 52, .external_lex_state = 20}, - [1893] = {.lex_state = 48, .external_lex_state = 10}, - [1894] = {.lex_state = 52, .external_lex_state = 10}, - [1895] = {.lex_state = 45, .external_lex_state = 10}, - [1896] = {.lex_state = 45, .external_lex_state = 10}, - [1897] = {.lex_state = 45, .external_lex_state = 10}, - [1898] = {.lex_state = 45, .external_lex_state = 10}, - [1899] = {.lex_state = 45, .external_lex_state = 10}, - [1900] = {.lex_state = 38}, - [1901] = {.lex_state = 51}, - [1902] = {.lex_state = 9}, - [1903] = {.lex_state = 9}, - [1904] = {.lex_state = 47}, - [1905] = {.lex_state = 44, .external_lex_state = 10}, - [1906] = {.lex_state = 44, .external_lex_state = 10}, - [1907] = {.lex_state = 40}, - [1908] = {.lex_state = 51}, - [1909] = {.lex_state = 47, .external_lex_state = 2}, - [1910] = {.lex_state = 9}, - [1911] = {.lex_state = 45, .external_lex_state = 21}, - [1912] = {.lex_state = 45, .external_lex_state = 10}, - [1913] = {.lex_state = 44, .external_lex_state = 10}, - [1914] = {.lex_state = 44, .external_lex_state = 10}, - [1915] = {.lex_state = 48, .external_lex_state = 10}, - [1916] = {.lex_state = 45, .external_lex_state = 21}, - [1917] = {.lex_state = 45, .external_lex_state = 10}, - [1918] = {.lex_state = 40}, - [1919] = {.lex_state = 45, .external_lex_state = 10}, - [1920] = {.lex_state = 45, .external_lex_state = 10}, - [1921] = {.lex_state = 45, .external_lex_state = 21}, - [1922] = {.lex_state = 48, .external_lex_state = 10}, - [1923] = {.lex_state = 45, .external_lex_state = 21}, - [1924] = {.lex_state = 45, .external_lex_state = 10}, - [1925] = {.lex_state = 52, .external_lex_state = 20}, - [1926] = {.lex_state = 48, .external_lex_state = 10}, - [1927] = {.lex_state = 52, .external_lex_state = 10}, - [1928] = {.lex_state = 45, .external_lex_state = 10}, - [1929] = {.lex_state = 45, .external_lex_state = 10}, - [1930] = {.lex_state = 45, .external_lex_state = 10}, - [1931] = {.lex_state = 45, .external_lex_state = 10}, - [1932] = {.lex_state = 52, .external_lex_state = 20}, - [1933] = {.lex_state = 48, .external_lex_state = 10}, - [1934] = {.lex_state = 52, .external_lex_state = 10}, - [1935] = {.lex_state = 45, .external_lex_state = 10}, - [1936] = {.lex_state = 45, .external_lex_state = 10}, - [1937] = {.lex_state = 45, .external_lex_state = 10}, - [1938] = {.lex_state = 45, .external_lex_state = 10}, - [1939] = {.lex_state = 45, .external_lex_state = 10}, - [1940] = {.lex_state = 38}, - [1941] = {.lex_state = 51}, - [1942] = {.lex_state = 9}, - [1943] = {.lex_state = 9}, - [1944] = {.lex_state = 47}, - [1945] = {.lex_state = 44, .external_lex_state = 10}, - [1946] = {.lex_state = 44, .external_lex_state = 10}, - [1947] = {.lex_state = 40}, - [1948] = {.lex_state = 51}, - [1949] = {.lex_state = 47, .external_lex_state = 2}, - [1950] = {.lex_state = 9}, - [1951] = {.lex_state = 45, .external_lex_state = 21}, - [1952] = {.lex_state = 45, .external_lex_state = 10}, - [1953] = {.lex_state = 44, .external_lex_state = 10}, - [1954] = {.lex_state = 44, .external_lex_state = 10}, - [1955] = {.lex_state = 48, .external_lex_state = 10}, - [1956] = {.lex_state = 45, .external_lex_state = 21}, - [1957] = {.lex_state = 45, .external_lex_state = 10}, - [1958] = {.lex_state = 40}, - [1959] = {.lex_state = 45, .external_lex_state = 10}, - [1960] = {.lex_state = 45, .external_lex_state = 10}, - [1961] = {.lex_state = 45, .external_lex_state = 21}, - [1962] = {.lex_state = 48, .external_lex_state = 10}, - [1963] = {.lex_state = 45, .external_lex_state = 21}, - [1964] = {.lex_state = 45, .external_lex_state = 10}, - [1965] = {.lex_state = 52, .external_lex_state = 20}, - [1966] = {.lex_state = 48, .external_lex_state = 10}, - [1967] = {.lex_state = 52, .external_lex_state = 10}, - [1968] = {.lex_state = 45, .external_lex_state = 10}, - [1969] = {.lex_state = 45, .external_lex_state = 10}, - [1970] = {.lex_state = 45, .external_lex_state = 10}, - [1971] = {.lex_state = 45, .external_lex_state = 10}, - [1972] = {.lex_state = 52, .external_lex_state = 20}, - [1973] = {.lex_state = 48, .external_lex_state = 10}, - [1974] = {.lex_state = 52, .external_lex_state = 10}, - [1975] = {.lex_state = 45, .external_lex_state = 10}, - [1976] = {.lex_state = 45, .external_lex_state = 10}, - [1977] = {.lex_state = 45, .external_lex_state = 10}, - [1978] = {.lex_state = 45, .external_lex_state = 10}, - [1979] = {.lex_state = 45, .external_lex_state = 10}, - [1980] = {.lex_state = 38}, - [1981] = {.lex_state = 51}, - [1982] = {.lex_state = 9}, - [1983] = {.lex_state = 9}, - [1984] = {.lex_state = 47}, - [1985] = {.lex_state = 44, .external_lex_state = 10}, - [1986] = {.lex_state = 44, .external_lex_state = 10}, - [1987] = {.lex_state = 40}, - [1988] = {.lex_state = 51}, - [1989] = {.lex_state = 47, .external_lex_state = 2}, - [1990] = {.lex_state = 9}, - [1991] = {.lex_state = 45, .external_lex_state = 21}, - [1992] = {.lex_state = 45, .external_lex_state = 10}, - [1993] = {.lex_state = 44, .external_lex_state = 10}, - [1994] = {.lex_state = 44, .external_lex_state = 10}, - [1995] = {.lex_state = 48, .external_lex_state = 10}, - [1996] = {.lex_state = 45, .external_lex_state = 21}, - [1997] = {.lex_state = 45, .external_lex_state = 10}, - [1998] = {.lex_state = 40}, - [1999] = {.lex_state = 45, .external_lex_state = 10}, - [2000] = {.lex_state = 45, .external_lex_state = 10}, - [2001] = {.lex_state = 45, .external_lex_state = 21}, - [2002] = {.lex_state = 48, .external_lex_state = 10}, - [2003] = {.lex_state = 45, .external_lex_state = 21}, - [2004] = {.lex_state = 45, .external_lex_state = 10}, - [2005] = {.lex_state = 52, .external_lex_state = 20}, - [2006] = {.lex_state = 48, .external_lex_state = 10}, - [2007] = {.lex_state = 52, .external_lex_state = 10}, - [2008] = {.lex_state = 45, .external_lex_state = 10}, - [2009] = {.lex_state = 45, .external_lex_state = 10}, - [2010] = {.lex_state = 45, .external_lex_state = 10}, - [2011] = {.lex_state = 45, .external_lex_state = 10}, - [2012] = {.lex_state = 52, .external_lex_state = 20}, - [2013] = {.lex_state = 48, .external_lex_state = 10}, - [2014] = {.lex_state = 52, .external_lex_state = 10}, - [2015] = {.lex_state = 45, .external_lex_state = 10}, - [2016] = {.lex_state = 45, .external_lex_state = 10}, - [2017] = {.lex_state = 45, .external_lex_state = 10}, - [2018] = {.lex_state = 45, .external_lex_state = 10}, - [2019] = {.lex_state = 45, .external_lex_state = 10}, - [2020] = {.lex_state = 38}, - [2021] = {.lex_state = 51}, - [2022] = {.lex_state = 9}, - [2023] = {.lex_state = 9}, - [2024] = {.lex_state = 47}, - [2025] = {.lex_state = 44, .external_lex_state = 10}, - [2026] = {.lex_state = 44, .external_lex_state = 10}, - [2027] = {.lex_state = 40}, - [2028] = {.lex_state = 51}, - [2029] = {.lex_state = 47, .external_lex_state = 2}, - [2030] = {.lex_state = 9}, - [2031] = {.lex_state = 45, .external_lex_state = 21}, - [2032] = {.lex_state = 45, .external_lex_state = 10}, - [2033] = {.lex_state = 44, .external_lex_state = 10}, - [2034] = {.lex_state = 44, .external_lex_state = 10}, - [2035] = {.lex_state = 48, .external_lex_state = 10}, - [2036] = {.lex_state = 45, .external_lex_state = 21}, - [2037] = {.lex_state = 45, .external_lex_state = 10}, - [2038] = {.lex_state = 40}, - [2039] = {.lex_state = 45, .external_lex_state = 10}, - [2040] = {.lex_state = 45, .external_lex_state = 10}, - [2041] = {.lex_state = 45, .external_lex_state = 21}, - [2042] = {.lex_state = 48, .external_lex_state = 10}, - [2043] = {.lex_state = 45, .external_lex_state = 21}, - [2044] = {.lex_state = 45, .external_lex_state = 10}, - [2045] = {.lex_state = 52, .external_lex_state = 20}, - [2046] = {.lex_state = 48, .external_lex_state = 10}, - [2047] = {.lex_state = 52, .external_lex_state = 10}, - [2048] = {.lex_state = 45, .external_lex_state = 10}, - [2049] = {.lex_state = 45, .external_lex_state = 10}, - [2050] = {.lex_state = 45, .external_lex_state = 10}, - [2051] = {.lex_state = 45, .external_lex_state = 10}, - [2052] = {.lex_state = 52, .external_lex_state = 20}, - [2053] = {.lex_state = 48, .external_lex_state = 10}, - [2054] = {.lex_state = 52, .external_lex_state = 10}, - [2055] = {.lex_state = 45, .external_lex_state = 10}, - [2056] = {.lex_state = 45, .external_lex_state = 10}, - [2057] = {.lex_state = 45, .external_lex_state = 10}, - [2058] = {.lex_state = 45, .external_lex_state = 10}, - [2059] = {.lex_state = 45, .external_lex_state = 10}, - [2060] = {.lex_state = 38}, - [2061] = {.lex_state = 51}, - [2062] = {.lex_state = 9}, - [2063] = {.lex_state = 9}, - [2064] = {.lex_state = 47}, - [2065] = {.lex_state = 44, .external_lex_state = 10}, - [2066] = {.lex_state = 44, .external_lex_state = 10}, - [2067] = {.lex_state = 40}, - [2068] = {.lex_state = 51}, - [2069] = {.lex_state = 47, .external_lex_state = 2}, - [2070] = {.lex_state = 9}, - [2071] = {.lex_state = 45, .external_lex_state = 21}, - [2072] = {.lex_state = 45, .external_lex_state = 10}, - [2073] = {.lex_state = 44, .external_lex_state = 10}, - [2074] = {.lex_state = 44, .external_lex_state = 10}, - [2075] = {.lex_state = 48, .external_lex_state = 10}, - [2076] = {.lex_state = 45, .external_lex_state = 21}, - [2077] = {.lex_state = 45, .external_lex_state = 10}, - [2078] = {.lex_state = 40}, - [2079] = {.lex_state = 45, .external_lex_state = 10}, - [2080] = {.lex_state = 45, .external_lex_state = 10}, - [2081] = {.lex_state = 45, .external_lex_state = 21}, - [2082] = {.lex_state = 48, .external_lex_state = 10}, - [2083] = {.lex_state = 45, .external_lex_state = 21}, - [2084] = {.lex_state = 45, .external_lex_state = 10}, - [2085] = {.lex_state = 52, .external_lex_state = 20}, - [2086] = {.lex_state = 48, .external_lex_state = 10}, - [2087] = {.lex_state = 52, .external_lex_state = 10}, - [2088] = {.lex_state = 45, .external_lex_state = 10}, - [2089] = {.lex_state = 45, .external_lex_state = 10}, - [2090] = {.lex_state = 45, .external_lex_state = 10}, - [2091] = {.lex_state = 45, .external_lex_state = 10}, - [2092] = {.lex_state = 52, .external_lex_state = 20}, - [2093] = {.lex_state = 48, .external_lex_state = 10}, - [2094] = {.lex_state = 52, .external_lex_state = 10}, - [2095] = {.lex_state = 45, .external_lex_state = 10}, - [2096] = {.lex_state = 45, .external_lex_state = 10}, - [2097] = {.lex_state = 45, .external_lex_state = 10}, - [2098] = {.lex_state = 45, .external_lex_state = 10}, - [2099] = {.lex_state = 45, .external_lex_state = 10}, - [2100] = {.lex_state = 38}, - [2101] = {.lex_state = 51}, - [2102] = {.lex_state = 9}, - [2103] = {.lex_state = 9}, - [2104] = {.lex_state = 47}, - [2105] = {.lex_state = 44, .external_lex_state = 10}, - [2106] = {.lex_state = 44, .external_lex_state = 10}, - [2107] = {.lex_state = 40}, - [2108] = {.lex_state = 51}, - [2109] = {.lex_state = 47, .external_lex_state = 2}, - [2110] = {.lex_state = 9}, - [2111] = {.lex_state = 45, .external_lex_state = 21}, - [2112] = {.lex_state = 45, .external_lex_state = 10}, - [2113] = {.lex_state = 44, .external_lex_state = 10}, - [2114] = {.lex_state = 44, .external_lex_state = 10}, - [2115] = {.lex_state = 48, .external_lex_state = 10}, - [2116] = {.lex_state = 45, .external_lex_state = 21}, - [2117] = {.lex_state = 45, .external_lex_state = 10}, - [2118] = {.lex_state = 40}, - [2119] = {.lex_state = 45, .external_lex_state = 10}, - [2120] = {.lex_state = 45, .external_lex_state = 10}, - [2121] = {.lex_state = 45, .external_lex_state = 21}, - [2122] = {.lex_state = 48, .external_lex_state = 10}, - [2123] = {.lex_state = 45, .external_lex_state = 21}, - [2124] = {.lex_state = 45, .external_lex_state = 10}, - [2125] = {.lex_state = 52, .external_lex_state = 20}, - [2126] = {.lex_state = 48, .external_lex_state = 10}, - [2127] = {.lex_state = 52, .external_lex_state = 10}, - [2128] = {.lex_state = 45, .external_lex_state = 10}, - [2129] = {.lex_state = 45, .external_lex_state = 10}, - [2130] = {.lex_state = 45, .external_lex_state = 10}, - [2131] = {.lex_state = 45, .external_lex_state = 10}, - [2132] = {.lex_state = 52, .external_lex_state = 20}, - [2133] = {.lex_state = 48, .external_lex_state = 10}, - [2134] = {.lex_state = 52, .external_lex_state = 10}, - [2135] = {.lex_state = 45, .external_lex_state = 10}, - [2136] = {.lex_state = 45, .external_lex_state = 10}, - [2137] = {.lex_state = 45, .external_lex_state = 10}, - [2138] = {.lex_state = 45, .external_lex_state = 10}, - [2139] = {.lex_state = 45, .external_lex_state = 10}, - [2140] = {.lex_state = 38}, - [2141] = {.lex_state = 51}, + [1718] = {.lex_state = 51}, + [1719] = {.lex_state = 43, .external_lex_state = 12}, + [1720] = {.lex_state = 47, .external_lex_state = 2}, + [1721] = {.lex_state = 9}, + [1722] = {.lex_state = 9}, + [1723] = {.lex_state = 47}, + [1724] = {.lex_state = 44, .external_lex_state = 15}, + [1725] = {.lex_state = 44, .external_lex_state = 15}, + [1726] = {.lex_state = 47, .external_lex_state = 16}, + [1727] = {.lex_state = 9}, + [1728] = {.lex_state = 40}, + [1729] = {.lex_state = 45, .external_lex_state = 24}, + [1730] = {.lex_state = 45, .external_lex_state = 15}, + [1731] = {.lex_state = 44, .external_lex_state = 15}, + [1732] = {.lex_state = 44, .external_lex_state = 15}, + [1733] = {.lex_state = 48, .external_lex_state = 15}, + [1734] = {.lex_state = 45, .external_lex_state = 24}, + [1735] = {.lex_state = 45, .external_lex_state = 15}, + [1736] = {.lex_state = 47}, + [1737] = {.lex_state = 45, .external_lex_state = 15}, + [1738] = {.lex_state = 45, .external_lex_state = 15}, + [1739] = {.lex_state = 45, .external_lex_state = 24}, + [1740] = {.lex_state = 48, .external_lex_state = 15}, + [1741] = {.lex_state = 45, .external_lex_state = 24}, + [1742] = {.lex_state = 45, .external_lex_state = 15}, + [1743] = {.lex_state = 52, .external_lex_state = 23}, + [1744] = {.lex_state = 52, .external_lex_state = 15}, + [1745] = {.lex_state = 42, .external_lex_state = 15}, + [1746] = {.lex_state = 45, .external_lex_state = 15}, + [1747] = {.lex_state = 45, .external_lex_state = 15}, + [1748] = {.lex_state = 47}, + [1749] = {.lex_state = 45, .external_lex_state = 15}, + [1750] = {.lex_state = 45, .external_lex_state = 15}, + [1751] = {.lex_state = 52, .external_lex_state = 23}, + [1752] = {.lex_state = 52, .external_lex_state = 15}, + [1753] = {.lex_state = 42, .external_lex_state = 15}, + [1754] = {.lex_state = 45, .external_lex_state = 15}, + [1755] = {.lex_state = 45, .external_lex_state = 15}, + [1756] = {.lex_state = 45, .external_lex_state = 15}, + [1757] = {.lex_state = 45, .external_lex_state = 15}, + [1758] = {.lex_state = 45, .external_lex_state = 15}, + [1759] = {.lex_state = 51}, + [1760] = {.lex_state = 38}, + [1761] = {.lex_state = 40}, + [1762] = {.lex_state = 51}, + [1763] = {.lex_state = 43, .external_lex_state = 12}, + [1764] = {.lex_state = 47, .external_lex_state = 2}, + [1765] = {.lex_state = 9}, + [1766] = {.lex_state = 9}, + [1767] = {.lex_state = 47}, + [1768] = {.lex_state = 44, .external_lex_state = 15}, + [1769] = {.lex_state = 44, .external_lex_state = 15}, + [1770] = {.lex_state = 47, .external_lex_state = 16}, + [1771] = {.lex_state = 9}, + [1772] = {.lex_state = 40}, + [1773] = {.lex_state = 45, .external_lex_state = 24}, + [1774] = {.lex_state = 45, .external_lex_state = 15}, + [1775] = {.lex_state = 44, .external_lex_state = 15}, + [1776] = {.lex_state = 44, .external_lex_state = 15}, + [1777] = {.lex_state = 48, .external_lex_state = 15}, + [1778] = {.lex_state = 45, .external_lex_state = 24}, + [1779] = {.lex_state = 45, .external_lex_state = 15}, + [1780] = {.lex_state = 47}, + [1781] = {.lex_state = 45, .external_lex_state = 15}, + [1782] = {.lex_state = 45, .external_lex_state = 15}, + [1783] = {.lex_state = 45, .external_lex_state = 24}, + [1784] = {.lex_state = 48, .external_lex_state = 15}, + [1785] = {.lex_state = 45, .external_lex_state = 24}, + [1786] = {.lex_state = 45, .external_lex_state = 15}, + [1787] = {.lex_state = 52, .external_lex_state = 23}, + [1788] = {.lex_state = 52, .external_lex_state = 15}, + [1789] = {.lex_state = 42, .external_lex_state = 15}, + [1790] = {.lex_state = 45, .external_lex_state = 15}, + [1791] = {.lex_state = 45, .external_lex_state = 15}, + [1792] = {.lex_state = 47}, + [1793] = {.lex_state = 45, .external_lex_state = 15}, + [1794] = {.lex_state = 45, .external_lex_state = 15}, + [1795] = {.lex_state = 52, .external_lex_state = 23}, + [1796] = {.lex_state = 52, .external_lex_state = 15}, + [1797] = {.lex_state = 42, .external_lex_state = 15}, + [1798] = {.lex_state = 45, .external_lex_state = 15}, + [1799] = {.lex_state = 45, .external_lex_state = 15}, + [1800] = {.lex_state = 45, .external_lex_state = 15}, + [1801] = {.lex_state = 45, .external_lex_state = 15}, + [1802] = {.lex_state = 45, .external_lex_state = 15}, + [1803] = {.lex_state = 51}, + [1804] = {.lex_state = 38}, + [1805] = {.lex_state = 40}, + [1806] = {.lex_state = 51}, + [1807] = {.lex_state = 43, .external_lex_state = 12}, + [1808] = {.lex_state = 47, .external_lex_state = 2}, + [1809] = {.lex_state = 9}, + [1810] = {.lex_state = 9}, + [1811] = {.lex_state = 47}, + [1812] = {.lex_state = 44, .external_lex_state = 15}, + [1813] = {.lex_state = 44, .external_lex_state = 15}, + [1814] = {.lex_state = 9}, + [1815] = {.lex_state = 40}, + [1816] = {.lex_state = 45, .external_lex_state = 24}, + [1817] = {.lex_state = 45, .external_lex_state = 15}, + [1818] = {.lex_state = 44, .external_lex_state = 15}, + [1819] = {.lex_state = 44, .external_lex_state = 15}, + [1820] = {.lex_state = 48, .external_lex_state = 15}, + [1821] = {.lex_state = 45, .external_lex_state = 24}, + [1822] = {.lex_state = 45, .external_lex_state = 15}, + [1823] = {.lex_state = 45, .external_lex_state = 15}, + [1824] = {.lex_state = 45, .external_lex_state = 15}, + [1825] = {.lex_state = 45, .external_lex_state = 24}, + [1826] = {.lex_state = 48, .external_lex_state = 15}, + [1827] = {.lex_state = 45, .external_lex_state = 24}, + [1828] = {.lex_state = 45, .external_lex_state = 15}, + [1829] = {.lex_state = 52, .external_lex_state = 23}, + [1830] = {.lex_state = 52, .external_lex_state = 15}, + [1831] = {.lex_state = 42, .external_lex_state = 15}, + [1832] = {.lex_state = 45, .external_lex_state = 15}, + [1833] = {.lex_state = 45, .external_lex_state = 15}, + [1834] = {.lex_state = 45, .external_lex_state = 15}, + [1835] = {.lex_state = 45, .external_lex_state = 15}, + [1836] = {.lex_state = 52, .external_lex_state = 23}, + [1837] = {.lex_state = 52, .external_lex_state = 15}, + [1838] = {.lex_state = 42, .external_lex_state = 15}, + [1839] = {.lex_state = 45, .external_lex_state = 15}, + [1840] = {.lex_state = 45, .external_lex_state = 15}, + [1841] = {.lex_state = 45, .external_lex_state = 15}, + [1842] = {.lex_state = 45, .external_lex_state = 15}, + [1843] = {.lex_state = 45, .external_lex_state = 15}, + [1844] = {.lex_state = 51}, + [1845] = {.lex_state = 38}, + [1846] = {.lex_state = 40}, + [1847] = {.lex_state = 51}, + [1848] = {.lex_state = 43, .external_lex_state = 12}, + [1849] = {.lex_state = 47, .external_lex_state = 2}, + [1850] = {.lex_state = 9}, + [1851] = {.lex_state = 9}, + [1852] = {.lex_state = 47}, + [1853] = {.lex_state = 44, .external_lex_state = 15}, + [1854] = {.lex_state = 44, .external_lex_state = 15}, + [1855] = {.lex_state = 9}, + [1856] = {.lex_state = 40}, + [1857] = {.lex_state = 45, .external_lex_state = 24}, + [1858] = {.lex_state = 45, .external_lex_state = 15}, + [1859] = {.lex_state = 44, .external_lex_state = 15}, + [1860] = {.lex_state = 44, .external_lex_state = 15}, + [1861] = {.lex_state = 48, .external_lex_state = 15}, + [1862] = {.lex_state = 45, .external_lex_state = 24}, + [1863] = {.lex_state = 45, .external_lex_state = 15}, + [1864] = {.lex_state = 45, .external_lex_state = 15}, + [1865] = {.lex_state = 45, .external_lex_state = 15}, + [1866] = {.lex_state = 45, .external_lex_state = 24}, + [1867] = {.lex_state = 48, .external_lex_state = 15}, + [1868] = {.lex_state = 45, .external_lex_state = 24}, + [1869] = {.lex_state = 45, .external_lex_state = 15}, + [1870] = {.lex_state = 52, .external_lex_state = 23}, + [1871] = {.lex_state = 52, .external_lex_state = 15}, + [1872] = {.lex_state = 42, .external_lex_state = 15}, + [1873] = {.lex_state = 45, .external_lex_state = 15}, + [1874] = {.lex_state = 45, .external_lex_state = 15}, + [1875] = {.lex_state = 45, .external_lex_state = 15}, + [1876] = {.lex_state = 45, .external_lex_state = 15}, + [1877] = {.lex_state = 52, .external_lex_state = 23}, + [1878] = {.lex_state = 52, .external_lex_state = 15}, + [1879] = {.lex_state = 42, .external_lex_state = 15}, + [1880] = {.lex_state = 45, .external_lex_state = 15}, + [1881] = {.lex_state = 45, .external_lex_state = 15}, + [1882] = {.lex_state = 45, .external_lex_state = 15}, + [1883] = {.lex_state = 45, .external_lex_state = 15}, + [1884] = {.lex_state = 45, .external_lex_state = 15}, + [1885] = {.lex_state = 51}, + [1886] = {.lex_state = 38}, + [1887] = {.lex_state = 40}, + [1888] = {.lex_state = 51}, + [1889] = {.lex_state = 43, .external_lex_state = 12}, + [1890] = {.lex_state = 47, .external_lex_state = 2}, + [1891] = {.lex_state = 9}, + [1892] = {.lex_state = 9}, + [1893] = {.lex_state = 47}, + [1894] = {.lex_state = 44, .external_lex_state = 15}, + [1895] = {.lex_state = 44, .external_lex_state = 15}, + [1896] = {.lex_state = 9}, + [1897] = {.lex_state = 40}, + [1898] = {.lex_state = 45, .external_lex_state = 24}, + [1899] = {.lex_state = 45, .external_lex_state = 15}, + [1900] = {.lex_state = 44, .external_lex_state = 15}, + [1901] = {.lex_state = 44, .external_lex_state = 15}, + [1902] = {.lex_state = 48, .external_lex_state = 15}, + [1903] = {.lex_state = 45, .external_lex_state = 24}, + [1904] = {.lex_state = 45, .external_lex_state = 15}, + [1905] = {.lex_state = 45, .external_lex_state = 15}, + [1906] = {.lex_state = 45, .external_lex_state = 15}, + [1907] = {.lex_state = 45, .external_lex_state = 24}, + [1908] = {.lex_state = 48, .external_lex_state = 15}, + [1909] = {.lex_state = 45, .external_lex_state = 24}, + [1910] = {.lex_state = 45, .external_lex_state = 15}, + [1911] = {.lex_state = 52, .external_lex_state = 23}, + [1912] = {.lex_state = 52, .external_lex_state = 15}, + [1913] = {.lex_state = 42, .external_lex_state = 15}, + [1914] = {.lex_state = 45, .external_lex_state = 15}, + [1915] = {.lex_state = 45, .external_lex_state = 15}, + [1916] = {.lex_state = 45, .external_lex_state = 15}, + [1917] = {.lex_state = 45, .external_lex_state = 15}, + [1918] = {.lex_state = 52, .external_lex_state = 23}, + [1919] = {.lex_state = 52, .external_lex_state = 15}, + [1920] = {.lex_state = 42, .external_lex_state = 15}, + [1921] = {.lex_state = 45, .external_lex_state = 15}, + [1922] = {.lex_state = 45, .external_lex_state = 15}, + [1923] = {.lex_state = 45, .external_lex_state = 15}, + [1924] = {.lex_state = 45, .external_lex_state = 15}, + [1925] = {.lex_state = 45, .external_lex_state = 15}, + [1926] = {.lex_state = 51}, + [1927] = {.lex_state = 38}, + [1928] = {.lex_state = 40}, + [1929] = {.lex_state = 51}, + [1930] = {.lex_state = 43, .external_lex_state = 12}, + [1931] = {.lex_state = 47, .external_lex_state = 2}, + [1932] = {.lex_state = 9}, + [1933] = {.lex_state = 9}, + [1934] = {.lex_state = 47}, + [1935] = {.lex_state = 44, .external_lex_state = 15}, + [1936] = {.lex_state = 44, .external_lex_state = 15}, + [1937] = {.lex_state = 9}, + [1938] = {.lex_state = 40}, + [1939] = {.lex_state = 45, .external_lex_state = 24}, + [1940] = {.lex_state = 45, .external_lex_state = 15}, + [1941] = {.lex_state = 44, .external_lex_state = 15}, + [1942] = {.lex_state = 44, .external_lex_state = 15}, + [1943] = {.lex_state = 48, .external_lex_state = 15}, + [1944] = {.lex_state = 45, .external_lex_state = 24}, + [1945] = {.lex_state = 45, .external_lex_state = 15}, + [1946] = {.lex_state = 45, .external_lex_state = 15}, + [1947] = {.lex_state = 45, .external_lex_state = 15}, + [1948] = {.lex_state = 45, .external_lex_state = 24}, + [1949] = {.lex_state = 48, .external_lex_state = 15}, + [1950] = {.lex_state = 45, .external_lex_state = 24}, + [1951] = {.lex_state = 45, .external_lex_state = 15}, + [1952] = {.lex_state = 52, .external_lex_state = 23}, + [1953] = {.lex_state = 52, .external_lex_state = 15}, + [1954] = {.lex_state = 42, .external_lex_state = 15}, + [1955] = {.lex_state = 45, .external_lex_state = 15}, + [1956] = {.lex_state = 45, .external_lex_state = 15}, + [1957] = {.lex_state = 45, .external_lex_state = 15}, + [1958] = {.lex_state = 45, .external_lex_state = 15}, + [1959] = {.lex_state = 52, .external_lex_state = 23}, + [1960] = {.lex_state = 52, .external_lex_state = 15}, + [1961] = {.lex_state = 42, .external_lex_state = 15}, + [1962] = {.lex_state = 45, .external_lex_state = 15}, + [1963] = {.lex_state = 45, .external_lex_state = 15}, + [1964] = {.lex_state = 45, .external_lex_state = 15}, + [1965] = {.lex_state = 45, .external_lex_state = 15}, + [1966] = {.lex_state = 45, .external_lex_state = 15}, + [1967] = {.lex_state = 51}, + [1968] = {.lex_state = 38}, + [1969] = {.lex_state = 40}, + [1970] = {.lex_state = 51}, + [1971] = {.lex_state = 43, .external_lex_state = 12}, + [1972] = {.lex_state = 47, .external_lex_state = 2}, + [1973] = {.lex_state = 9}, + [1974] = {.lex_state = 9}, + [1975] = {.lex_state = 47}, + [1976] = {.lex_state = 44, .external_lex_state = 15}, + [1977] = {.lex_state = 44, .external_lex_state = 15}, + [1978] = {.lex_state = 9}, + [1979] = {.lex_state = 40}, + [1980] = {.lex_state = 45, .external_lex_state = 24}, + [1981] = {.lex_state = 45, .external_lex_state = 15}, + [1982] = {.lex_state = 44, .external_lex_state = 15}, + [1983] = {.lex_state = 44, .external_lex_state = 15}, + [1984] = {.lex_state = 48, .external_lex_state = 15}, + [1985] = {.lex_state = 45, .external_lex_state = 24}, + [1986] = {.lex_state = 45, .external_lex_state = 15}, + [1987] = {.lex_state = 45, .external_lex_state = 15}, + [1988] = {.lex_state = 45, .external_lex_state = 15}, + [1989] = {.lex_state = 45, .external_lex_state = 24}, + [1990] = {.lex_state = 48, .external_lex_state = 15}, + [1991] = {.lex_state = 45, .external_lex_state = 24}, + [1992] = {.lex_state = 45, .external_lex_state = 15}, + [1993] = {.lex_state = 52, .external_lex_state = 23}, + [1994] = {.lex_state = 52, .external_lex_state = 15}, + [1995] = {.lex_state = 42, .external_lex_state = 15}, + [1996] = {.lex_state = 45, .external_lex_state = 15}, + [1997] = {.lex_state = 45, .external_lex_state = 15}, + [1998] = {.lex_state = 45, .external_lex_state = 15}, + [1999] = {.lex_state = 45, .external_lex_state = 15}, + [2000] = {.lex_state = 52, .external_lex_state = 23}, + [2001] = {.lex_state = 52, .external_lex_state = 15}, + [2002] = {.lex_state = 42, .external_lex_state = 15}, + [2003] = {.lex_state = 45, .external_lex_state = 15}, + [2004] = {.lex_state = 45, .external_lex_state = 15}, + [2005] = {.lex_state = 45, .external_lex_state = 15}, + [2006] = {.lex_state = 45, .external_lex_state = 15}, + [2007] = {.lex_state = 45, .external_lex_state = 15}, + [2008] = {.lex_state = 51}, + [2009] = {.lex_state = 38}, + [2010] = {.lex_state = 40}, + [2011] = {.lex_state = 51}, + [2012] = {.lex_state = 43, .external_lex_state = 12}, + [2013] = {.lex_state = 47, .external_lex_state = 2}, + [2014] = {.lex_state = 9}, + [2015] = {.lex_state = 9}, + [2016] = {.lex_state = 47}, + [2017] = {.lex_state = 44, .external_lex_state = 15}, + [2018] = {.lex_state = 44, .external_lex_state = 15}, + [2019] = {.lex_state = 9}, + [2020] = {.lex_state = 40}, + [2021] = {.lex_state = 45, .external_lex_state = 24}, + [2022] = {.lex_state = 45, .external_lex_state = 15}, + [2023] = {.lex_state = 44, .external_lex_state = 15}, + [2024] = {.lex_state = 44, .external_lex_state = 15}, + [2025] = {.lex_state = 48, .external_lex_state = 15}, + [2026] = {.lex_state = 45, .external_lex_state = 24}, + [2027] = {.lex_state = 45, .external_lex_state = 15}, + [2028] = {.lex_state = 45, .external_lex_state = 15}, + [2029] = {.lex_state = 45, .external_lex_state = 15}, + [2030] = {.lex_state = 45, .external_lex_state = 24}, + [2031] = {.lex_state = 48, .external_lex_state = 15}, + [2032] = {.lex_state = 45, .external_lex_state = 24}, + [2033] = {.lex_state = 45, .external_lex_state = 15}, + [2034] = {.lex_state = 52, .external_lex_state = 23}, + [2035] = {.lex_state = 52, .external_lex_state = 15}, + [2036] = {.lex_state = 42, .external_lex_state = 15}, + [2037] = {.lex_state = 45, .external_lex_state = 15}, + [2038] = {.lex_state = 45, .external_lex_state = 15}, + [2039] = {.lex_state = 45, .external_lex_state = 15}, + [2040] = {.lex_state = 45, .external_lex_state = 15}, + [2041] = {.lex_state = 52, .external_lex_state = 23}, + [2042] = {.lex_state = 52, .external_lex_state = 15}, + [2043] = {.lex_state = 42, .external_lex_state = 15}, + [2044] = {.lex_state = 45, .external_lex_state = 15}, + [2045] = {.lex_state = 45, .external_lex_state = 15}, + [2046] = {.lex_state = 45, .external_lex_state = 15}, + [2047] = {.lex_state = 45, .external_lex_state = 15}, + [2048] = {.lex_state = 45, .external_lex_state = 15}, + [2049] = {.lex_state = 51}, + [2050] = {.lex_state = 38}, + [2051] = {.lex_state = 40}, + [2052] = {.lex_state = 51}, + [2053] = {.lex_state = 43, .external_lex_state = 12}, + [2054] = {.lex_state = 47, .external_lex_state = 2}, + [2055] = {.lex_state = 9}, + [2056] = {.lex_state = 9}, + [2057] = {.lex_state = 47}, + [2058] = {.lex_state = 44, .external_lex_state = 15}, + [2059] = {.lex_state = 44, .external_lex_state = 15}, + [2060] = {.lex_state = 9}, + [2061] = {.lex_state = 40}, + [2062] = {.lex_state = 45, .external_lex_state = 24}, + [2063] = {.lex_state = 45, .external_lex_state = 15}, + [2064] = {.lex_state = 44, .external_lex_state = 15}, + [2065] = {.lex_state = 44, .external_lex_state = 15}, + [2066] = {.lex_state = 48, .external_lex_state = 15}, + [2067] = {.lex_state = 45, .external_lex_state = 24}, + [2068] = {.lex_state = 45, .external_lex_state = 15}, + [2069] = {.lex_state = 45, .external_lex_state = 15}, + [2070] = {.lex_state = 45, .external_lex_state = 15}, + [2071] = {.lex_state = 45, .external_lex_state = 24}, + [2072] = {.lex_state = 48, .external_lex_state = 15}, + [2073] = {.lex_state = 45, .external_lex_state = 24}, + [2074] = {.lex_state = 45, .external_lex_state = 15}, + [2075] = {.lex_state = 52, .external_lex_state = 23}, + [2076] = {.lex_state = 52, .external_lex_state = 15}, + [2077] = {.lex_state = 42, .external_lex_state = 15}, + [2078] = {.lex_state = 45, .external_lex_state = 15}, + [2079] = {.lex_state = 45, .external_lex_state = 15}, + [2080] = {.lex_state = 45, .external_lex_state = 15}, + [2081] = {.lex_state = 45, .external_lex_state = 15}, + [2082] = {.lex_state = 52, .external_lex_state = 23}, + [2083] = {.lex_state = 52, .external_lex_state = 15}, + [2084] = {.lex_state = 42, .external_lex_state = 15}, + [2085] = {.lex_state = 45, .external_lex_state = 15}, + [2086] = {.lex_state = 45, .external_lex_state = 15}, + [2087] = {.lex_state = 45, .external_lex_state = 15}, + [2088] = {.lex_state = 45, .external_lex_state = 15}, + [2089] = {.lex_state = 45, .external_lex_state = 15}, + [2090] = {.lex_state = 51}, + [2091] = {.lex_state = 38}, + [2092] = {.lex_state = 40}, + [2093] = {.lex_state = 51}, + [2094] = {.lex_state = 43, .external_lex_state = 12}, + [2095] = {.lex_state = 47, .external_lex_state = 2}, + [2096] = {.lex_state = 9}, + [2097] = {.lex_state = 9}, + [2098] = {.lex_state = 47}, + [2099] = {.lex_state = 44, .external_lex_state = 15}, + [2100] = {.lex_state = 44, .external_lex_state = 15}, + [2101] = {.lex_state = 9}, + [2102] = {.lex_state = 40}, + [2103] = {.lex_state = 45, .external_lex_state = 24}, + [2104] = {.lex_state = 45, .external_lex_state = 15}, + [2105] = {.lex_state = 44, .external_lex_state = 15}, + [2106] = {.lex_state = 44, .external_lex_state = 15}, + [2107] = {.lex_state = 48, .external_lex_state = 15}, + [2108] = {.lex_state = 45, .external_lex_state = 24}, + [2109] = {.lex_state = 45, .external_lex_state = 15}, + [2110] = {.lex_state = 45, .external_lex_state = 15}, + [2111] = {.lex_state = 45, .external_lex_state = 15}, + [2112] = {.lex_state = 45, .external_lex_state = 24}, + [2113] = {.lex_state = 48, .external_lex_state = 15}, + [2114] = {.lex_state = 45, .external_lex_state = 24}, + [2115] = {.lex_state = 45, .external_lex_state = 15}, + [2116] = {.lex_state = 52, .external_lex_state = 23}, + [2117] = {.lex_state = 52, .external_lex_state = 15}, + [2118] = {.lex_state = 42, .external_lex_state = 15}, + [2119] = {.lex_state = 45, .external_lex_state = 15}, + [2120] = {.lex_state = 45, .external_lex_state = 15}, + [2121] = {.lex_state = 45, .external_lex_state = 15}, + [2122] = {.lex_state = 45, .external_lex_state = 15}, + [2123] = {.lex_state = 52, .external_lex_state = 23}, + [2124] = {.lex_state = 52, .external_lex_state = 15}, + [2125] = {.lex_state = 42, .external_lex_state = 15}, + [2126] = {.lex_state = 45, .external_lex_state = 15}, + [2127] = {.lex_state = 45, .external_lex_state = 15}, + [2128] = {.lex_state = 45, .external_lex_state = 15}, + [2129] = {.lex_state = 45, .external_lex_state = 15}, + [2130] = {.lex_state = 45, .external_lex_state = 15}, + [2131] = {.lex_state = 51}, + [2132] = {.lex_state = 38}, + [2133] = {.lex_state = 40}, + [2134] = {.lex_state = 51}, + [2135] = {.lex_state = 43, .external_lex_state = 12}, + [2136] = {.lex_state = 47, .external_lex_state = 2}, + [2137] = {.lex_state = 9}, + [2138] = {.lex_state = 9}, + [2139] = {.lex_state = 47}, + [2140] = {.lex_state = 44, .external_lex_state = 15}, + [2141] = {.lex_state = 44, .external_lex_state = 15}, [2142] = {.lex_state = 9}, - [2143] = {.lex_state = 9}, - [2144] = {.lex_state = 47}, - [2145] = {.lex_state = 44, .external_lex_state = 10}, - [2146] = {.lex_state = 44, .external_lex_state = 10}, - [2147] = {.lex_state = 40}, - [2148] = {.lex_state = 51}, - [2149] = {.lex_state = 47, .external_lex_state = 2}, - [2150] = {.lex_state = 9}, - [2151] = {.lex_state = 45, .external_lex_state = 21}, - [2152] = {.lex_state = 45, .external_lex_state = 10}, - [2153] = {.lex_state = 44, .external_lex_state = 10}, - [2154] = {.lex_state = 44, .external_lex_state = 10}, - [2155] = {.lex_state = 48, .external_lex_state = 10}, - [2156] = {.lex_state = 45, .external_lex_state = 21}, - [2157] = {.lex_state = 45, .external_lex_state = 10}, - [2158] = {.lex_state = 40}, - [2159] = {.lex_state = 45, .external_lex_state = 10}, - [2160] = {.lex_state = 45, .external_lex_state = 10}, - [2161] = {.lex_state = 45, .external_lex_state = 21}, - [2162] = {.lex_state = 48, .external_lex_state = 10}, - [2163] = {.lex_state = 45, .external_lex_state = 21}, - [2164] = {.lex_state = 45, .external_lex_state = 10}, - [2165] = {.lex_state = 52, .external_lex_state = 20}, - [2166] = {.lex_state = 48, .external_lex_state = 10}, - [2167] = {.lex_state = 52, .external_lex_state = 10}, - [2168] = {.lex_state = 45, .external_lex_state = 10}, - [2169] = {.lex_state = 45, .external_lex_state = 10}, - [2170] = {.lex_state = 45, .external_lex_state = 10}, - [2171] = {.lex_state = 45, .external_lex_state = 10}, - [2172] = {.lex_state = 52, .external_lex_state = 20}, - [2173] = {.lex_state = 48, .external_lex_state = 10}, - [2174] = {.lex_state = 52, .external_lex_state = 10}, - [2175] = {.lex_state = 45, .external_lex_state = 10}, - [2176] = {.lex_state = 45, .external_lex_state = 10}, - [2177] = {.lex_state = 45, .external_lex_state = 10}, - [2178] = {.lex_state = 45, .external_lex_state = 10}, - [2179] = {.lex_state = 45, .external_lex_state = 10}, - [2180] = {.lex_state = 38}, - [2181] = {.lex_state = 51}, - [2182] = {.lex_state = 9}, + [2143] = {.lex_state = 40}, + [2144] = {.lex_state = 45, .external_lex_state = 24}, + [2145] = {.lex_state = 45, .external_lex_state = 15}, + [2146] = {.lex_state = 44, .external_lex_state = 15}, + [2147] = {.lex_state = 44, .external_lex_state = 15}, + [2148] = {.lex_state = 48, .external_lex_state = 15}, + [2149] = {.lex_state = 45, .external_lex_state = 24}, + [2150] = {.lex_state = 45, .external_lex_state = 15}, + [2151] = {.lex_state = 45, .external_lex_state = 15}, + [2152] = {.lex_state = 45, .external_lex_state = 15}, + [2153] = {.lex_state = 45, .external_lex_state = 24}, + [2154] = {.lex_state = 48, .external_lex_state = 15}, + [2155] = {.lex_state = 45, .external_lex_state = 24}, + [2156] = {.lex_state = 45, .external_lex_state = 15}, + [2157] = {.lex_state = 52, .external_lex_state = 23}, + [2158] = {.lex_state = 52, .external_lex_state = 15}, + [2159] = {.lex_state = 42, .external_lex_state = 15}, + [2160] = {.lex_state = 45, .external_lex_state = 15}, + [2161] = {.lex_state = 45, .external_lex_state = 15}, + [2162] = {.lex_state = 45, .external_lex_state = 15}, + [2163] = {.lex_state = 45, .external_lex_state = 15}, + [2164] = {.lex_state = 52, .external_lex_state = 23}, + [2165] = {.lex_state = 52, .external_lex_state = 15}, + [2166] = {.lex_state = 42, .external_lex_state = 15}, + [2167] = {.lex_state = 45, .external_lex_state = 15}, + [2168] = {.lex_state = 45, .external_lex_state = 15}, + [2169] = {.lex_state = 45, .external_lex_state = 15}, + [2170] = {.lex_state = 45, .external_lex_state = 15}, + [2171] = {.lex_state = 45, .external_lex_state = 15}, + [2172] = {.lex_state = 51}, + [2173] = {.lex_state = 38}, + [2174] = {.lex_state = 40}, + [2175] = {.lex_state = 51}, + [2176] = {.lex_state = 43, .external_lex_state = 12}, + [2177] = {.lex_state = 47, .external_lex_state = 2}, + [2178] = {.lex_state = 9}, + [2179] = {.lex_state = 9}, + [2180] = {.lex_state = 47}, + [2181] = {.lex_state = 44, .external_lex_state = 15}, + [2182] = {.lex_state = 44, .external_lex_state = 15}, [2183] = {.lex_state = 9}, - [2184] = {.lex_state = 47}, - [2185] = {.lex_state = 44, .external_lex_state = 10}, - [2186] = {.lex_state = 44, .external_lex_state = 10}, - [2187] = {.lex_state = 40}, - [2188] = {.lex_state = 51}, - [2189] = {.lex_state = 47, .external_lex_state = 2}, - [2190] = {.lex_state = 9}, - [2191] = {.lex_state = 45, .external_lex_state = 21}, - [2192] = {.lex_state = 45, .external_lex_state = 10}, - [2193] = {.lex_state = 44, .external_lex_state = 10}, - [2194] = {.lex_state = 44, .external_lex_state = 10}, - [2195] = {.lex_state = 48, .external_lex_state = 10}, - [2196] = {.lex_state = 45, .external_lex_state = 21}, - [2197] = {.lex_state = 45, .external_lex_state = 10}, - [2198] = {.lex_state = 40}, - [2199] = {.lex_state = 45, .external_lex_state = 10}, - [2200] = {.lex_state = 45, .external_lex_state = 10}, - [2201] = {.lex_state = 45, .external_lex_state = 21}, - [2202] = {.lex_state = 48, .external_lex_state = 10}, - [2203] = {.lex_state = 45, .external_lex_state = 21}, - [2204] = {.lex_state = 45, .external_lex_state = 10}, - [2205] = {.lex_state = 52, .external_lex_state = 20}, - [2206] = {.lex_state = 48, .external_lex_state = 10}, - [2207] = {.lex_state = 52, .external_lex_state = 10}, - [2208] = {.lex_state = 45, .external_lex_state = 10}, - [2209] = {.lex_state = 45, .external_lex_state = 10}, - [2210] = {.lex_state = 45, .external_lex_state = 10}, - [2211] = {.lex_state = 45, .external_lex_state = 10}, - [2212] = {.lex_state = 52, .external_lex_state = 20}, - [2213] = {.lex_state = 48, .external_lex_state = 10}, - [2214] = {.lex_state = 52, .external_lex_state = 10}, - [2215] = {.lex_state = 45, .external_lex_state = 10}, - [2216] = {.lex_state = 45, .external_lex_state = 10}, - [2217] = {.lex_state = 45, .external_lex_state = 10}, - [2218] = {.lex_state = 45, .external_lex_state = 10}, - [2219] = {.lex_state = 45, .external_lex_state = 10}, - [2220] = {.lex_state = 38}, - [2221] = {.lex_state = 51}, - [2222] = {.lex_state = 9}, - [2223] = {.lex_state = 9}, - [2224] = {.lex_state = 47}, - [2225] = {.lex_state = 44, .external_lex_state = 10}, - [2226] = {.lex_state = 44, .external_lex_state = 10}, - [2227] = {.lex_state = 40}, - [2228] = {.lex_state = 51}, - [2229] = {.lex_state = 47, .external_lex_state = 2}, - [2230] = {.lex_state = 9}, - [2231] = {.lex_state = 45, .external_lex_state = 21}, - [2232] = {.lex_state = 45, .external_lex_state = 10}, - [2233] = {.lex_state = 44, .external_lex_state = 10}, - [2234] = {.lex_state = 44, .external_lex_state = 10}, - [2235] = {.lex_state = 48, .external_lex_state = 10}, - [2236] = {.lex_state = 45, .external_lex_state = 21}, - [2237] = {.lex_state = 45, .external_lex_state = 10}, - [2238] = {.lex_state = 40}, - [2239] = {.lex_state = 45, .external_lex_state = 10}, - [2240] = {.lex_state = 45, .external_lex_state = 10}, - [2241] = {.lex_state = 45, .external_lex_state = 21}, - [2242] = {.lex_state = 48, .external_lex_state = 10}, - [2243] = {.lex_state = 45, .external_lex_state = 21}, - [2244] = {.lex_state = 45, .external_lex_state = 10}, - [2245] = {.lex_state = 52, .external_lex_state = 20}, - [2246] = {.lex_state = 48, .external_lex_state = 10}, - [2247] = {.lex_state = 52, .external_lex_state = 10}, - [2248] = {.lex_state = 45, .external_lex_state = 10}, - [2249] = {.lex_state = 45, .external_lex_state = 10}, - [2250] = {.lex_state = 45, .external_lex_state = 10}, - [2251] = {.lex_state = 45, .external_lex_state = 10}, - [2252] = {.lex_state = 52, .external_lex_state = 20}, - [2253] = {.lex_state = 48, .external_lex_state = 10}, - [2254] = {.lex_state = 52, .external_lex_state = 10}, - [2255] = {.lex_state = 45, .external_lex_state = 10}, - [2256] = {.lex_state = 45, .external_lex_state = 10}, - [2257] = {.lex_state = 45, .external_lex_state = 10}, - [2258] = {.lex_state = 45, .external_lex_state = 10}, - [2259] = {.lex_state = 45, .external_lex_state = 10}, - [2260] = {.lex_state = 38}, - [2261] = {.lex_state = 51}, - [2262] = {.lex_state = 9}, - [2263] = {.lex_state = 9}, - [2264] = {.lex_state = 47}, - [2265] = {.lex_state = 44, .external_lex_state = 10}, - [2266] = {.lex_state = 44, .external_lex_state = 10}, - [2267] = {.lex_state = 40}, - [2268] = {.lex_state = 51}, - [2269] = {.lex_state = 47, .external_lex_state = 2}, - [2270] = {.lex_state = 9}, - [2271] = {.lex_state = 45, .external_lex_state = 21}, - [2272] = {.lex_state = 45, .external_lex_state = 10}, - [2273] = {.lex_state = 44, .external_lex_state = 10}, - [2274] = {.lex_state = 44, .external_lex_state = 10}, - [2275] = {.lex_state = 48, .external_lex_state = 10}, - [2276] = {.lex_state = 45, .external_lex_state = 21}, - [2277] = {.lex_state = 45, .external_lex_state = 10}, - [2278] = {.lex_state = 40}, - [2279] = {.lex_state = 45, .external_lex_state = 10}, - [2280] = {.lex_state = 45, .external_lex_state = 10}, - [2281] = {.lex_state = 45, .external_lex_state = 21}, - [2282] = {.lex_state = 48, .external_lex_state = 10}, - [2283] = {.lex_state = 45, .external_lex_state = 21}, - [2284] = {.lex_state = 45, .external_lex_state = 10}, - [2285] = {.lex_state = 52, .external_lex_state = 20}, - [2286] = {.lex_state = 48, .external_lex_state = 10}, - [2287] = {.lex_state = 52, .external_lex_state = 10}, - [2288] = {.lex_state = 45, .external_lex_state = 10}, - [2289] = {.lex_state = 45, .external_lex_state = 10}, - [2290] = {.lex_state = 45, .external_lex_state = 10}, - [2291] = {.lex_state = 45, .external_lex_state = 10}, - [2292] = {.lex_state = 52, .external_lex_state = 20}, - [2293] = {.lex_state = 48, .external_lex_state = 10}, - [2294] = {.lex_state = 52, .external_lex_state = 10}, - [2295] = {.lex_state = 45, .external_lex_state = 10}, - [2296] = {.lex_state = 45, .external_lex_state = 10}, - [2297] = {.lex_state = 45, .external_lex_state = 10}, - [2298] = {.lex_state = 45, .external_lex_state = 10}, - [2299] = {.lex_state = 45, .external_lex_state = 10}, - [2300] = {.lex_state = 38}, - [2301] = {.lex_state = 51}, + [2184] = {.lex_state = 40}, + [2185] = {.lex_state = 45, .external_lex_state = 24}, + [2186] = {.lex_state = 45, .external_lex_state = 15}, + [2187] = {.lex_state = 44, .external_lex_state = 15}, + [2188] = {.lex_state = 44, .external_lex_state = 15}, + [2189] = {.lex_state = 48, .external_lex_state = 15}, + [2190] = {.lex_state = 45, .external_lex_state = 24}, + [2191] = {.lex_state = 45, .external_lex_state = 15}, + [2192] = {.lex_state = 45, .external_lex_state = 15}, + [2193] = {.lex_state = 45, .external_lex_state = 15}, + [2194] = {.lex_state = 45, .external_lex_state = 24}, + [2195] = {.lex_state = 48, .external_lex_state = 15}, + [2196] = {.lex_state = 45, .external_lex_state = 24}, + [2197] = {.lex_state = 45, .external_lex_state = 15}, + [2198] = {.lex_state = 52, .external_lex_state = 23}, + [2199] = {.lex_state = 52, .external_lex_state = 15}, + [2200] = {.lex_state = 42, .external_lex_state = 15}, + [2201] = {.lex_state = 45, .external_lex_state = 15}, + [2202] = {.lex_state = 45, .external_lex_state = 15}, + [2203] = {.lex_state = 45, .external_lex_state = 15}, + [2204] = {.lex_state = 45, .external_lex_state = 15}, + [2205] = {.lex_state = 52, .external_lex_state = 23}, + [2206] = {.lex_state = 52, .external_lex_state = 15}, + [2207] = {.lex_state = 42, .external_lex_state = 15}, + [2208] = {.lex_state = 45, .external_lex_state = 15}, + [2209] = {.lex_state = 45, .external_lex_state = 15}, + [2210] = {.lex_state = 45, .external_lex_state = 15}, + [2211] = {.lex_state = 45, .external_lex_state = 15}, + [2212] = {.lex_state = 45, .external_lex_state = 15}, + [2213] = {.lex_state = 51}, + [2214] = {.lex_state = 38}, + [2215] = {.lex_state = 40}, + [2216] = {.lex_state = 51}, + [2217] = {.lex_state = 43, .external_lex_state = 12}, + [2218] = {.lex_state = 47, .external_lex_state = 2}, + [2219] = {.lex_state = 9}, + [2220] = {.lex_state = 9}, + [2221] = {.lex_state = 47}, + [2222] = {.lex_state = 44, .external_lex_state = 15}, + [2223] = {.lex_state = 44, .external_lex_state = 15}, + [2224] = {.lex_state = 9}, + [2225] = {.lex_state = 40}, + [2226] = {.lex_state = 45, .external_lex_state = 24}, + [2227] = {.lex_state = 45, .external_lex_state = 15}, + [2228] = {.lex_state = 44, .external_lex_state = 15}, + [2229] = {.lex_state = 44, .external_lex_state = 15}, + [2230] = {.lex_state = 48, .external_lex_state = 15}, + [2231] = {.lex_state = 45, .external_lex_state = 24}, + [2232] = {.lex_state = 45, .external_lex_state = 15}, + [2233] = {.lex_state = 45, .external_lex_state = 15}, + [2234] = {.lex_state = 45, .external_lex_state = 15}, + [2235] = {.lex_state = 45, .external_lex_state = 24}, + [2236] = {.lex_state = 48, .external_lex_state = 15}, + [2237] = {.lex_state = 45, .external_lex_state = 24}, + [2238] = {.lex_state = 45, .external_lex_state = 15}, + [2239] = {.lex_state = 52, .external_lex_state = 23}, + [2240] = {.lex_state = 52, .external_lex_state = 15}, + [2241] = {.lex_state = 42, .external_lex_state = 15}, + [2242] = {.lex_state = 45, .external_lex_state = 15}, + [2243] = {.lex_state = 45, .external_lex_state = 15}, + [2244] = {.lex_state = 45, .external_lex_state = 15}, + [2245] = {.lex_state = 45, .external_lex_state = 15}, + [2246] = {.lex_state = 52, .external_lex_state = 23}, + [2247] = {.lex_state = 52, .external_lex_state = 15}, + [2248] = {.lex_state = 42, .external_lex_state = 15}, + [2249] = {.lex_state = 45, .external_lex_state = 15}, + [2250] = {.lex_state = 45, .external_lex_state = 15}, + [2251] = {.lex_state = 45, .external_lex_state = 15}, + [2252] = {.lex_state = 45, .external_lex_state = 15}, + [2253] = {.lex_state = 45, .external_lex_state = 15}, + [2254] = {.lex_state = 51}, + [2255] = {.lex_state = 38}, + [2256] = {.lex_state = 40}, + [2257] = {.lex_state = 51}, + [2258] = {.lex_state = 43, .external_lex_state = 12}, + [2259] = {.lex_state = 47, .external_lex_state = 2}, + [2260] = {.lex_state = 9}, + [2261] = {.lex_state = 9}, + [2262] = {.lex_state = 47}, + [2263] = {.lex_state = 44, .external_lex_state = 15}, + [2264] = {.lex_state = 44, .external_lex_state = 15}, + [2265] = {.lex_state = 9}, + [2266] = {.lex_state = 40}, + [2267] = {.lex_state = 45, .external_lex_state = 24}, + [2268] = {.lex_state = 45, .external_lex_state = 15}, + [2269] = {.lex_state = 44, .external_lex_state = 15}, + [2270] = {.lex_state = 44, .external_lex_state = 15}, + [2271] = {.lex_state = 48, .external_lex_state = 15}, + [2272] = {.lex_state = 45, .external_lex_state = 24}, + [2273] = {.lex_state = 45, .external_lex_state = 15}, + [2274] = {.lex_state = 45, .external_lex_state = 15}, + [2275] = {.lex_state = 45, .external_lex_state = 15}, + [2276] = {.lex_state = 45, .external_lex_state = 24}, + [2277] = {.lex_state = 48, .external_lex_state = 15}, + [2278] = {.lex_state = 45, .external_lex_state = 24}, + [2279] = {.lex_state = 45, .external_lex_state = 15}, + [2280] = {.lex_state = 52, .external_lex_state = 23}, + [2281] = {.lex_state = 52, .external_lex_state = 15}, + [2282] = {.lex_state = 42, .external_lex_state = 15}, + [2283] = {.lex_state = 45, .external_lex_state = 15}, + [2284] = {.lex_state = 45, .external_lex_state = 15}, + [2285] = {.lex_state = 45, .external_lex_state = 15}, + [2286] = {.lex_state = 45, .external_lex_state = 15}, + [2287] = {.lex_state = 52, .external_lex_state = 23}, + [2288] = {.lex_state = 52, .external_lex_state = 15}, + [2289] = {.lex_state = 42, .external_lex_state = 15}, + [2290] = {.lex_state = 45, .external_lex_state = 15}, + [2291] = {.lex_state = 45, .external_lex_state = 15}, + [2292] = {.lex_state = 45, .external_lex_state = 15}, + [2293] = {.lex_state = 45, .external_lex_state = 15}, + [2294] = {.lex_state = 45, .external_lex_state = 15}, + [2295] = {.lex_state = 51}, + [2296] = {.lex_state = 38}, + [2297] = {.lex_state = 40}, + [2298] = {.lex_state = 51}, + [2299] = {.lex_state = 43, .external_lex_state = 12}, + [2300] = {.lex_state = 47, .external_lex_state = 2}, + [2301] = {.lex_state = 9}, [2302] = {.lex_state = 9}, - [2303] = {.lex_state = 9}, - [2304] = {.lex_state = 47}, - [2305] = {.lex_state = 44, .external_lex_state = 10}, - [2306] = {.lex_state = 44, .external_lex_state = 10}, + [2303] = {.lex_state = 47}, + [2304] = {.lex_state = 44, .external_lex_state = 15}, + [2305] = {.lex_state = 44, .external_lex_state = 15}, + [2306] = {.lex_state = 9}, [2307] = {.lex_state = 40}, - [2308] = {.lex_state = 51}, - [2309] = {.lex_state = 47, .external_lex_state = 2}, - [2310] = {.lex_state = 9}, - [2311] = {.lex_state = 45, .external_lex_state = 21}, - [2312] = {.lex_state = 45, .external_lex_state = 10}, - [2313] = {.lex_state = 44, .external_lex_state = 10}, - [2314] = {.lex_state = 44, .external_lex_state = 10}, - [2315] = {.lex_state = 48, .external_lex_state = 10}, - [2316] = {.lex_state = 45, .external_lex_state = 21}, - [2317] = {.lex_state = 45, .external_lex_state = 10}, - [2318] = {.lex_state = 40}, - [2319] = {.lex_state = 45, .external_lex_state = 10}, - [2320] = {.lex_state = 45, .external_lex_state = 10}, - [2321] = {.lex_state = 45, .external_lex_state = 21}, - [2322] = {.lex_state = 48, .external_lex_state = 10}, - [2323] = {.lex_state = 45, .external_lex_state = 21}, - [2324] = {.lex_state = 45, .external_lex_state = 10}, - [2325] = {.lex_state = 52, .external_lex_state = 20}, - [2326] = {.lex_state = 48, .external_lex_state = 10}, - [2327] = {.lex_state = 52, .external_lex_state = 10}, - [2328] = {.lex_state = 45, .external_lex_state = 10}, - [2329] = {.lex_state = 45, .external_lex_state = 10}, - [2330] = {.lex_state = 45, .external_lex_state = 10}, - [2331] = {.lex_state = 45, .external_lex_state = 10}, - [2332] = {.lex_state = 52, .external_lex_state = 20}, - [2333] = {.lex_state = 48, .external_lex_state = 10}, - [2334] = {.lex_state = 52, .external_lex_state = 10}, - [2335] = {.lex_state = 45, .external_lex_state = 10}, - [2336] = {.lex_state = 45, .external_lex_state = 10}, - [2337] = {.lex_state = 45, .external_lex_state = 10}, - [2338] = {.lex_state = 45, .external_lex_state = 10}, - [2339] = {.lex_state = 45, .external_lex_state = 10}, - [2340] = {.lex_state = 9}, - [2341] = {.lex_state = 44, .external_lex_state = 10}, - [2342] = {.lex_state = 44, .external_lex_state = 10}, - [2343] = {.lex_state = 47, .external_lex_state = 2}, - [2344] = {.lex_state = 9}, - [2345] = {.lex_state = 45, .external_lex_state = 21}, - [2346] = {.lex_state = 45, .external_lex_state = 10}, - [2347] = {.lex_state = 44, .external_lex_state = 10}, - [2348] = {.lex_state = 44, .external_lex_state = 10}, - [2349] = {.lex_state = 48, .external_lex_state = 10}, - [2350] = {.lex_state = 45, .external_lex_state = 21}, - [2351] = {.lex_state = 45, .external_lex_state = 10}, - [2352] = {.lex_state = 45, .external_lex_state = 10}, - [2353] = {.lex_state = 45, .external_lex_state = 10}, - [2354] = {.lex_state = 45, .external_lex_state = 21}, - [2355] = {.lex_state = 48, .external_lex_state = 10}, - [2356] = {.lex_state = 45, .external_lex_state = 21}, - [2357] = {.lex_state = 45, .external_lex_state = 10}, - [2358] = {.lex_state = 52, .external_lex_state = 20}, - [2359] = {.lex_state = 48, .external_lex_state = 10}, - [2360] = {.lex_state = 52, .external_lex_state = 10}, - [2361] = {.lex_state = 45, .external_lex_state = 10}, - [2362] = {.lex_state = 45, .external_lex_state = 10}, - [2363] = {.lex_state = 45, .external_lex_state = 10}, - [2364] = {.lex_state = 45, .external_lex_state = 10}, - [2365] = {.lex_state = 52, .external_lex_state = 20}, - [2366] = {.lex_state = 48, .external_lex_state = 10}, - [2367] = {.lex_state = 52, .external_lex_state = 10}, - [2368] = {.lex_state = 45, .external_lex_state = 10}, - [2369] = {.lex_state = 45, .external_lex_state = 10}, - [2370] = {.lex_state = 45, .external_lex_state = 10}, - [2371] = {.lex_state = 45, .external_lex_state = 10}, - [2372] = {.lex_state = 45, .external_lex_state = 10}, - [2373] = {.lex_state = 9}, - [2374] = {.lex_state = 44, .external_lex_state = 10}, - [2375] = {.lex_state = 44, .external_lex_state = 10}, - [2376] = {.lex_state = 47, .external_lex_state = 2}, - [2377] = {.lex_state = 9}, - [2378] = {.lex_state = 45, .external_lex_state = 21}, - [2379] = {.lex_state = 45, .external_lex_state = 10}, - [2380] = {.lex_state = 44, .external_lex_state = 10}, - [2381] = {.lex_state = 44, .external_lex_state = 10}, - [2382] = {.lex_state = 48, .external_lex_state = 10}, - [2383] = {.lex_state = 45, .external_lex_state = 21}, - [2384] = {.lex_state = 45, .external_lex_state = 10}, - [2385] = {.lex_state = 45, .external_lex_state = 10}, - [2386] = {.lex_state = 45, .external_lex_state = 10}, - [2387] = {.lex_state = 45, .external_lex_state = 21}, - [2388] = {.lex_state = 48, .external_lex_state = 10}, - [2389] = {.lex_state = 45, .external_lex_state = 21}, - [2390] = {.lex_state = 45, .external_lex_state = 10}, - [2391] = {.lex_state = 52, .external_lex_state = 20}, - [2392] = {.lex_state = 48, .external_lex_state = 10}, - [2393] = {.lex_state = 52, .external_lex_state = 10}, - [2394] = {.lex_state = 45, .external_lex_state = 10}, - [2395] = {.lex_state = 45, .external_lex_state = 10}, - [2396] = {.lex_state = 45, .external_lex_state = 10}, - [2397] = {.lex_state = 45, .external_lex_state = 10}, - [2398] = {.lex_state = 52, .external_lex_state = 20}, - [2399] = {.lex_state = 48, .external_lex_state = 10}, - [2400] = {.lex_state = 52, .external_lex_state = 10}, - [2401] = {.lex_state = 45, .external_lex_state = 10}, - [2402] = {.lex_state = 45, .external_lex_state = 10}, - [2403] = {.lex_state = 45, .external_lex_state = 10}, - [2404] = {.lex_state = 45, .external_lex_state = 10}, - [2405] = {.lex_state = 45, .external_lex_state = 10}, - [2406] = {.lex_state = 9, .external_lex_state = 2}, - [2407] = {.lex_state = 9, .external_lex_state = 2}, - [2408] = {.lex_state = 9, .external_lex_state = 2}, - [2409] = {.lex_state = 38, .external_lex_state = 6}, - [2410] = {.lex_state = 52}, - [2411] = {.lex_state = 37}, - [2412] = {.lex_state = 53}, - [2413] = {.lex_state = 52}, - [2414] = {.lex_state = 9, .external_lex_state = 2}, - [2415] = {.lex_state = 9, .external_lex_state = 2}, - [2416] = {.lex_state = 37}, - [2417] = {.lex_state = 37}, - [2418] = {.lex_state = 53}, - [2419] = {.lex_state = 41, .external_lex_state = 6}, - [2420] = {.lex_state = 53}, - [2421] = {.lex_state = 9}, - [2422] = {.lex_state = 52}, - [2423] = {.lex_state = 37}, - [2424] = {.lex_state = 47}, - [2425] = {.lex_state = 4, .external_lex_state = 12}, - [2426] = {.lex_state = 53}, - [2427] = {.lex_state = 9}, - [2428] = {.lex_state = 4, .external_lex_state = 12}, - [2429] = {.lex_state = 4, .external_lex_state = 12}, - [2430] = {.lex_state = 4, .external_lex_state = 12}, - [2431] = {.lex_state = 4, .external_lex_state = 12}, - [2432] = {.lex_state = 37}, - [2433] = {.lex_state = 23, .external_lex_state = 12}, - [2434] = {.lex_state = 47}, - [2435] = {.lex_state = 47}, - [2436] = {.lex_state = 43}, - [2437] = {.lex_state = 37}, - [2438] = {.lex_state = 47}, - [2439] = {.lex_state = 47}, - [2440] = {.lex_state = 43}, - [2441] = {.lex_state = 37}, - [2442] = {.lex_state = 43}, - [2443] = {.lex_state = 4, .external_lex_state = 11}, + [2308] = {.lex_state = 45, .external_lex_state = 24}, + [2309] = {.lex_state = 45, .external_lex_state = 15}, + [2310] = {.lex_state = 44, .external_lex_state = 15}, + [2311] = {.lex_state = 44, .external_lex_state = 15}, + [2312] = {.lex_state = 48, .external_lex_state = 15}, + [2313] = {.lex_state = 45, .external_lex_state = 24}, + [2314] = {.lex_state = 45, .external_lex_state = 15}, + [2315] = {.lex_state = 45, .external_lex_state = 15}, + [2316] = {.lex_state = 45, .external_lex_state = 15}, + [2317] = {.lex_state = 45, .external_lex_state = 24}, + [2318] = {.lex_state = 48, .external_lex_state = 15}, + [2319] = {.lex_state = 45, .external_lex_state = 24}, + [2320] = {.lex_state = 45, .external_lex_state = 15}, + [2321] = {.lex_state = 52, .external_lex_state = 23}, + [2322] = {.lex_state = 52, .external_lex_state = 15}, + [2323] = {.lex_state = 42, .external_lex_state = 15}, + [2324] = {.lex_state = 45, .external_lex_state = 15}, + [2325] = {.lex_state = 45, .external_lex_state = 15}, + [2326] = {.lex_state = 45, .external_lex_state = 15}, + [2327] = {.lex_state = 45, .external_lex_state = 15}, + [2328] = {.lex_state = 52, .external_lex_state = 23}, + [2329] = {.lex_state = 52, .external_lex_state = 15}, + [2330] = {.lex_state = 42, .external_lex_state = 15}, + [2331] = {.lex_state = 45, .external_lex_state = 15}, + [2332] = {.lex_state = 45, .external_lex_state = 15}, + [2333] = {.lex_state = 45, .external_lex_state = 15}, + [2334] = {.lex_state = 45, .external_lex_state = 15}, + [2335] = {.lex_state = 45, .external_lex_state = 15}, + [2336] = {.lex_state = 51}, + [2337] = {.lex_state = 38}, + [2338] = {.lex_state = 40}, + [2339] = {.lex_state = 51}, + [2340] = {.lex_state = 43, .external_lex_state = 12}, + [2341] = {.lex_state = 47, .external_lex_state = 2}, + [2342] = {.lex_state = 9}, + [2343] = {.lex_state = 9}, + [2344] = {.lex_state = 47}, + [2345] = {.lex_state = 44, .external_lex_state = 15}, + [2346] = {.lex_state = 44, .external_lex_state = 15}, + [2347] = {.lex_state = 9}, + [2348] = {.lex_state = 40}, + [2349] = {.lex_state = 45, .external_lex_state = 24}, + [2350] = {.lex_state = 45, .external_lex_state = 15}, + [2351] = {.lex_state = 44, .external_lex_state = 15}, + [2352] = {.lex_state = 44, .external_lex_state = 15}, + [2353] = {.lex_state = 48, .external_lex_state = 15}, + [2354] = {.lex_state = 45, .external_lex_state = 24}, + [2355] = {.lex_state = 45, .external_lex_state = 15}, + [2356] = {.lex_state = 45, .external_lex_state = 15}, + [2357] = {.lex_state = 45, .external_lex_state = 15}, + [2358] = {.lex_state = 45, .external_lex_state = 24}, + [2359] = {.lex_state = 48, .external_lex_state = 15}, + [2360] = {.lex_state = 45, .external_lex_state = 24}, + [2361] = {.lex_state = 45, .external_lex_state = 15}, + [2362] = {.lex_state = 52, .external_lex_state = 23}, + [2363] = {.lex_state = 52, .external_lex_state = 15}, + [2364] = {.lex_state = 42, .external_lex_state = 15}, + [2365] = {.lex_state = 45, .external_lex_state = 15}, + [2366] = {.lex_state = 45, .external_lex_state = 15}, + [2367] = {.lex_state = 45, .external_lex_state = 15}, + [2368] = {.lex_state = 45, .external_lex_state = 15}, + [2369] = {.lex_state = 52, .external_lex_state = 23}, + [2370] = {.lex_state = 52, .external_lex_state = 15}, + [2371] = {.lex_state = 42, .external_lex_state = 15}, + [2372] = {.lex_state = 45, .external_lex_state = 15}, + [2373] = {.lex_state = 45, .external_lex_state = 15}, + [2374] = {.lex_state = 45, .external_lex_state = 15}, + [2375] = {.lex_state = 45, .external_lex_state = 15}, + [2376] = {.lex_state = 45, .external_lex_state = 15}, + [2377] = {.lex_state = 51}, + [2378] = {.lex_state = 38}, + [2379] = {.lex_state = 40}, + [2380] = {.lex_state = 51}, + [2381] = {.lex_state = 43, .external_lex_state = 12}, + [2382] = {.lex_state = 47, .external_lex_state = 2}, + [2383] = {.lex_state = 9}, + [2384] = {.lex_state = 9}, + [2385] = {.lex_state = 47}, + [2386] = {.lex_state = 44, .external_lex_state = 15}, + [2387] = {.lex_state = 44, .external_lex_state = 15}, + [2388] = {.lex_state = 9}, + [2389] = {.lex_state = 40}, + [2390] = {.lex_state = 45, .external_lex_state = 24}, + [2391] = {.lex_state = 45, .external_lex_state = 15}, + [2392] = {.lex_state = 44, .external_lex_state = 15}, + [2393] = {.lex_state = 44, .external_lex_state = 15}, + [2394] = {.lex_state = 48, .external_lex_state = 15}, + [2395] = {.lex_state = 45, .external_lex_state = 24}, + [2396] = {.lex_state = 45, .external_lex_state = 15}, + [2397] = {.lex_state = 45, .external_lex_state = 15}, + [2398] = {.lex_state = 45, .external_lex_state = 15}, + [2399] = {.lex_state = 45, .external_lex_state = 24}, + [2400] = {.lex_state = 48, .external_lex_state = 15}, + [2401] = {.lex_state = 45, .external_lex_state = 24}, + [2402] = {.lex_state = 45, .external_lex_state = 15}, + [2403] = {.lex_state = 52, .external_lex_state = 23}, + [2404] = {.lex_state = 52, .external_lex_state = 15}, + [2405] = {.lex_state = 42, .external_lex_state = 15}, + [2406] = {.lex_state = 45, .external_lex_state = 15}, + [2407] = {.lex_state = 45, .external_lex_state = 15}, + [2408] = {.lex_state = 45, .external_lex_state = 15}, + [2409] = {.lex_state = 45, .external_lex_state = 15}, + [2410] = {.lex_state = 52, .external_lex_state = 23}, + [2411] = {.lex_state = 52, .external_lex_state = 15}, + [2412] = {.lex_state = 42, .external_lex_state = 15}, + [2413] = {.lex_state = 45, .external_lex_state = 15}, + [2414] = {.lex_state = 45, .external_lex_state = 15}, + [2415] = {.lex_state = 45, .external_lex_state = 15}, + [2416] = {.lex_state = 45, .external_lex_state = 15}, + [2417] = {.lex_state = 45, .external_lex_state = 15}, + [2418] = {.lex_state = 51}, + [2419] = {.lex_state = 38}, + [2420] = {.lex_state = 40}, + [2421] = {.lex_state = 51}, + [2422] = {.lex_state = 43, .external_lex_state = 12}, + [2423] = {.lex_state = 47, .external_lex_state = 2}, + [2424] = {.lex_state = 9}, + [2425] = {.lex_state = 9}, + [2426] = {.lex_state = 47}, + [2427] = {.lex_state = 44, .external_lex_state = 15}, + [2428] = {.lex_state = 44, .external_lex_state = 15}, + [2429] = {.lex_state = 9}, + [2430] = {.lex_state = 40}, + [2431] = {.lex_state = 45, .external_lex_state = 24}, + [2432] = {.lex_state = 45, .external_lex_state = 15}, + [2433] = {.lex_state = 44, .external_lex_state = 15}, + [2434] = {.lex_state = 44, .external_lex_state = 15}, + [2435] = {.lex_state = 48, .external_lex_state = 15}, + [2436] = {.lex_state = 45, .external_lex_state = 24}, + [2437] = {.lex_state = 45, .external_lex_state = 15}, + [2438] = {.lex_state = 45, .external_lex_state = 15}, + [2439] = {.lex_state = 45, .external_lex_state = 15}, + [2440] = {.lex_state = 45, .external_lex_state = 24}, + [2441] = {.lex_state = 48, .external_lex_state = 15}, + [2442] = {.lex_state = 45, .external_lex_state = 24}, + [2443] = {.lex_state = 45, .external_lex_state = 15}, [2444] = {.lex_state = 52, .external_lex_state = 23}, - [2445] = {.lex_state = 3, .external_lex_state = 5}, - [2446] = {.lex_state = 3, .external_lex_state = 5}, - [2447] = {.lex_state = 47}, - [2448] = {.lex_state = 47}, - [2449] = {.lex_state = 47}, - [2450] = {.lex_state = 9, .external_lex_state = 2}, - [2451] = {.lex_state = 9, .external_lex_state = 2}, - [2452] = {.lex_state = 38, .external_lex_state = 6}, - [2453] = {.lex_state = 53}, - [2454] = {.lex_state = 52}, - [2455] = {.lex_state = 9, .external_lex_state = 2}, - [2456] = {.lex_state = 53}, - [2457] = {.lex_state = 41, .external_lex_state = 6}, - [2458] = {.lex_state = 53}, - [2459] = {.lex_state = 37}, - [2460] = {.lex_state = 53}, - [2461] = {.lex_state = 9, .external_lex_state = 2}, - [2462] = {.lex_state = 9, .external_lex_state = 2}, - [2463] = {.lex_state = 38, .external_lex_state = 6}, - [2464] = {.lex_state = 53}, - [2465] = {.lex_state = 52}, - [2466] = {.lex_state = 9, .external_lex_state = 2}, - [2467] = {.lex_state = 53}, - [2468] = {.lex_state = 41, .external_lex_state = 6}, - [2469] = {.lex_state = 53}, - [2470] = {.lex_state = 53}, - [2471] = {.lex_state = 9, .external_lex_state = 2}, - [2472] = {.lex_state = 9, .external_lex_state = 2}, - [2473] = {.lex_state = 38, .external_lex_state = 6}, - [2474] = {.lex_state = 53}, - [2475] = {.lex_state = 9, .external_lex_state = 2}, - [2476] = {.lex_state = 53}, - [2477] = {.lex_state = 41, .external_lex_state = 6}, - [2478] = {.lex_state = 53}, - [2479] = {.lex_state = 53}, - [2480] = {.lex_state = 9, .external_lex_state = 2}, - [2481] = {.lex_state = 9, .external_lex_state = 2}, - [2482] = {.lex_state = 38, .external_lex_state = 6}, - [2483] = {.lex_state = 53}, - [2484] = {.lex_state = 9, .external_lex_state = 2}, - [2485] = {.lex_state = 53}, - [2486] = {.lex_state = 41, .external_lex_state = 6}, - [2487] = {.lex_state = 53}, - [2488] = {.lex_state = 53}, - [2489] = {.lex_state = 9, .external_lex_state = 2}, - [2490] = {.lex_state = 9, .external_lex_state = 2}, - [2491] = {.lex_state = 38, .external_lex_state = 6}, - [2492] = {.lex_state = 53}, - [2493] = {.lex_state = 9, .external_lex_state = 2}, - [2494] = {.lex_state = 53}, - [2495] = {.lex_state = 41, .external_lex_state = 6}, - [2496] = {.lex_state = 53}, - [2497] = {.lex_state = 53}, - [2498] = {.lex_state = 9, .external_lex_state = 2}, - [2499] = {.lex_state = 9, .external_lex_state = 2}, - [2500] = {.lex_state = 38, .external_lex_state = 6}, - [2501] = {.lex_state = 53}, - [2502] = {.lex_state = 9, .external_lex_state = 2}, - [2503] = {.lex_state = 53}, - [2504] = {.lex_state = 41, .external_lex_state = 6}, - [2505] = {.lex_state = 53}, - [2506] = {.lex_state = 53}, - [2507] = {.lex_state = 9, .external_lex_state = 2}, - [2508] = {.lex_state = 9, .external_lex_state = 2}, - [2509] = {.lex_state = 38, .external_lex_state = 6}, - [2510] = {.lex_state = 9, .external_lex_state = 2}, - [2511] = {.lex_state = 41, .external_lex_state = 6}, - [2512] = {.lex_state = 53}, - [2513] = {.lex_state = 53}, - [2514] = {.lex_state = 9, .external_lex_state = 2}, - [2515] = {.lex_state = 9, .external_lex_state = 2}, - [2516] = {.lex_state = 38, .external_lex_state = 6}, - [2517] = {.lex_state = 9, .external_lex_state = 2}, - [2518] = {.lex_state = 41, .external_lex_state = 6}, - [2519] = {.lex_state = 53}, - [2520] = {.lex_state = 53}, - [2521] = {.lex_state = 9, .external_lex_state = 2}, - [2522] = {.lex_state = 9, .external_lex_state = 2}, - [2523] = {.lex_state = 38, .external_lex_state = 6}, - [2524] = {.lex_state = 9, .external_lex_state = 2}, - [2525] = {.lex_state = 41, .external_lex_state = 6}, - [2526] = {.lex_state = 53}, - [2527] = {.lex_state = 53}, + [2445] = {.lex_state = 52, .external_lex_state = 15}, + [2446] = {.lex_state = 42, .external_lex_state = 15}, + [2447] = {.lex_state = 45, .external_lex_state = 15}, + [2448] = {.lex_state = 45, .external_lex_state = 15}, + [2449] = {.lex_state = 45, .external_lex_state = 15}, + [2450] = {.lex_state = 45, .external_lex_state = 15}, + [2451] = {.lex_state = 52, .external_lex_state = 23}, + [2452] = {.lex_state = 52, .external_lex_state = 15}, + [2453] = {.lex_state = 42, .external_lex_state = 15}, + [2454] = {.lex_state = 45, .external_lex_state = 15}, + [2455] = {.lex_state = 45, .external_lex_state = 15}, + [2456] = {.lex_state = 45, .external_lex_state = 15}, + [2457] = {.lex_state = 45, .external_lex_state = 15}, + [2458] = {.lex_state = 45, .external_lex_state = 15}, + [2459] = {.lex_state = 43, .external_lex_state = 12}, + [2460] = {.lex_state = 47, .external_lex_state = 2}, + [2461] = {.lex_state = 9}, + [2462] = {.lex_state = 44, .external_lex_state = 15}, + [2463] = {.lex_state = 44, .external_lex_state = 15}, + [2464] = {.lex_state = 9}, + [2465] = {.lex_state = 45, .external_lex_state = 24}, + [2466] = {.lex_state = 45, .external_lex_state = 15}, + [2467] = {.lex_state = 44, .external_lex_state = 15}, + [2468] = {.lex_state = 44, .external_lex_state = 15}, + [2469] = {.lex_state = 48, .external_lex_state = 15}, + [2470] = {.lex_state = 45, .external_lex_state = 24}, + [2471] = {.lex_state = 45, .external_lex_state = 15}, + [2472] = {.lex_state = 45, .external_lex_state = 15}, + [2473] = {.lex_state = 45, .external_lex_state = 15}, + [2474] = {.lex_state = 45, .external_lex_state = 24}, + [2475] = {.lex_state = 48, .external_lex_state = 15}, + [2476] = {.lex_state = 45, .external_lex_state = 24}, + [2477] = {.lex_state = 45, .external_lex_state = 15}, + [2478] = {.lex_state = 52, .external_lex_state = 23}, + [2479] = {.lex_state = 52, .external_lex_state = 15}, + [2480] = {.lex_state = 42, .external_lex_state = 15}, + [2481] = {.lex_state = 45, .external_lex_state = 15}, + [2482] = {.lex_state = 45, .external_lex_state = 15}, + [2483] = {.lex_state = 45, .external_lex_state = 15}, + [2484] = {.lex_state = 45, .external_lex_state = 15}, + [2485] = {.lex_state = 52, .external_lex_state = 23}, + [2486] = {.lex_state = 52, .external_lex_state = 15}, + [2487] = {.lex_state = 42, .external_lex_state = 15}, + [2488] = {.lex_state = 45, .external_lex_state = 15}, + [2489] = {.lex_state = 45, .external_lex_state = 15}, + [2490] = {.lex_state = 45, .external_lex_state = 15}, + [2491] = {.lex_state = 45, .external_lex_state = 15}, + [2492] = {.lex_state = 45, .external_lex_state = 15}, + [2493] = {.lex_state = 47, .external_lex_state = 2}, + [2494] = {.lex_state = 9}, + [2495] = {.lex_state = 44, .external_lex_state = 15}, + [2496] = {.lex_state = 44, .external_lex_state = 15}, + [2497] = {.lex_state = 9}, + [2498] = {.lex_state = 45, .external_lex_state = 24}, + [2499] = {.lex_state = 45, .external_lex_state = 15}, + [2500] = {.lex_state = 44, .external_lex_state = 15}, + [2501] = {.lex_state = 44, .external_lex_state = 15}, + [2502] = {.lex_state = 48, .external_lex_state = 15}, + [2503] = {.lex_state = 45, .external_lex_state = 24}, + [2504] = {.lex_state = 45, .external_lex_state = 15}, + [2505] = {.lex_state = 45, .external_lex_state = 15}, + [2506] = {.lex_state = 45, .external_lex_state = 15}, + [2507] = {.lex_state = 45, .external_lex_state = 24}, + [2508] = {.lex_state = 48, .external_lex_state = 15}, + [2509] = {.lex_state = 45, .external_lex_state = 24}, + [2510] = {.lex_state = 45, .external_lex_state = 15}, + [2511] = {.lex_state = 52, .external_lex_state = 23}, + [2512] = {.lex_state = 52, .external_lex_state = 15}, + [2513] = {.lex_state = 42, .external_lex_state = 15}, + [2514] = {.lex_state = 45, .external_lex_state = 15}, + [2515] = {.lex_state = 45, .external_lex_state = 15}, + [2516] = {.lex_state = 45, .external_lex_state = 15}, + [2517] = {.lex_state = 45, .external_lex_state = 15}, + [2518] = {.lex_state = 52, .external_lex_state = 23}, + [2519] = {.lex_state = 52, .external_lex_state = 15}, + [2520] = {.lex_state = 42, .external_lex_state = 15}, + [2521] = {.lex_state = 45, .external_lex_state = 15}, + [2522] = {.lex_state = 45, .external_lex_state = 15}, + [2523] = {.lex_state = 45, .external_lex_state = 15}, + [2524] = {.lex_state = 45, .external_lex_state = 15}, + [2525] = {.lex_state = 45, .external_lex_state = 15}, + [2526] = {.lex_state = 9, .external_lex_state = 2}, + [2527] = {.lex_state = 37}, [2528] = {.lex_state = 9, .external_lex_state = 2}, [2529] = {.lex_state = 9, .external_lex_state = 2}, - [2530] = {.lex_state = 38, .external_lex_state = 6}, - [2531] = {.lex_state = 9, .external_lex_state = 2}, - [2532] = {.lex_state = 41, .external_lex_state = 6}, + [2530] = {.lex_state = 52}, + [2531] = {.lex_state = 37}, + [2532] = {.lex_state = 38, .external_lex_state = 7}, [2533] = {.lex_state = 53}, - [2534] = {.lex_state = 53}, + [2534] = {.lex_state = 52}, [2535] = {.lex_state = 9, .external_lex_state = 2}, [2536] = {.lex_state = 9, .external_lex_state = 2}, - [2537] = {.lex_state = 38, .external_lex_state = 6}, - [2538] = {.lex_state = 9, .external_lex_state = 2}, - [2539] = {.lex_state = 41, .external_lex_state = 6}, - [2540] = {.lex_state = 53}, - [2541] = {.lex_state = 53}, - [2542] = {.lex_state = 9, .external_lex_state = 2}, - [2543] = {.lex_state = 9, .external_lex_state = 2}, - [2544] = {.lex_state = 38, .external_lex_state = 6}, - [2545] = {.lex_state = 9, .external_lex_state = 2}, - [2546] = {.lex_state = 41, .external_lex_state = 6}, - [2547] = {.lex_state = 53}, - [2548] = {.lex_state = 53}, - [2549] = {.lex_state = 9, .external_lex_state = 2}, - [2550] = {.lex_state = 9, .external_lex_state = 2}, - [2551] = {.lex_state = 38, .external_lex_state = 6}, - [2552] = {.lex_state = 9, .external_lex_state = 2}, - [2553] = {.lex_state = 41, .external_lex_state = 6}, - [2554] = {.lex_state = 53}, - [2555] = {.lex_state = 53}, - [2556] = {.lex_state = 9, .external_lex_state = 2}, - [2557] = {.lex_state = 9, .external_lex_state = 2}, - [2558] = {.lex_state = 38, .external_lex_state = 6}, - [2559] = {.lex_state = 9, .external_lex_state = 2}, - [2560] = {.lex_state = 41, .external_lex_state = 6}, - [2561] = {.lex_state = 53}, - [2562] = {.lex_state = 53}, - [2563] = {.lex_state = 9, .external_lex_state = 2}, - [2564] = {.lex_state = 9, .external_lex_state = 2}, - [2565] = {.lex_state = 38, .external_lex_state = 6}, - [2566] = {.lex_state = 9, .external_lex_state = 2}, - [2567] = {.lex_state = 41, .external_lex_state = 6}, - [2568] = {.lex_state = 53}, - [2569] = {.lex_state = 53}, - [2570] = {.lex_state = 9, .external_lex_state = 2}, - [2571] = {.lex_state = 9, .external_lex_state = 2}, - [2572] = {.lex_state = 38, .external_lex_state = 6}, + [2537] = {.lex_state = 37}, + [2538] = {.lex_state = 37}, + [2539] = {.lex_state = 53}, + [2540] = {.lex_state = 37}, + [2541] = {.lex_state = 52}, + [2542] = {.lex_state = 41, .external_lex_state = 7}, + [2543] = {.lex_state = 53}, + [2544] = {.lex_state = 47}, + [2545] = {.lex_state = 9}, + [2546] = {.lex_state = 4, .external_lex_state = 14}, + [2547] = {.lex_state = 9}, + [2548] = {.lex_state = 4, .external_lex_state = 14}, + [2549] = {.lex_state = 4, .external_lex_state = 14}, + [2550] = {.lex_state = 53}, + [2551] = {.lex_state = 4, .external_lex_state = 14}, + [2552] = {.lex_state = 4, .external_lex_state = 14}, + [2553] = {.lex_state = 23, .external_lex_state = 14}, + [2554] = {.lex_state = 37}, + [2555] = {.lex_state = 47}, + [2556] = {.lex_state = 47}, + [2557] = {.lex_state = 43, .external_lex_state = 12}, + [2558] = {.lex_state = 37}, + [2559] = {.lex_state = 47}, + [2560] = {.lex_state = 47}, + [2561] = {.lex_state = 43, .external_lex_state = 12}, + [2562] = {.lex_state = 37}, + [2563] = {.lex_state = 43, .external_lex_state = 12}, + [2564] = {.lex_state = 4, .external_lex_state = 13}, + [2565] = {.lex_state = 3, .external_lex_state = 5}, + [2566] = {.lex_state = 9, .external_lex_state = 10}, + [2567] = {.lex_state = 37}, + [2568] = {.lex_state = 9, .external_lex_state = 2}, + [2569] = {.lex_state = 9, .external_lex_state = 2}, + [2570] = {.lex_state = 38, .external_lex_state = 7}, + [2571] = {.lex_state = 53}, + [2572] = {.lex_state = 52}, [2573] = {.lex_state = 9, .external_lex_state = 2}, - [2574] = {.lex_state = 41, .external_lex_state = 6}, - [2575] = {.lex_state = 53}, - [2576] = {.lex_state = 53}, - [2577] = {.lex_state = 9, .external_lex_state = 2}, - [2578] = {.lex_state = 9, .external_lex_state = 2}, - [2579] = {.lex_state = 38, .external_lex_state = 6}, + [2574] = {.lex_state = 53}, + [2575] = {.lex_state = 37}, + [2576] = {.lex_state = 41, .external_lex_state = 7}, + [2577] = {.lex_state = 53}, + [2578] = {.lex_state = 53}, + [2579] = {.lex_state = 37}, [2580] = {.lex_state = 9, .external_lex_state = 2}, - [2581] = {.lex_state = 41, .external_lex_state = 6}, - [2582] = {.lex_state = 53}, + [2581] = {.lex_state = 9, .external_lex_state = 2}, + [2582] = {.lex_state = 38, .external_lex_state = 7}, [2583] = {.lex_state = 53}, [2584] = {.lex_state = 9, .external_lex_state = 2}, - [2585] = {.lex_state = 9, .external_lex_state = 2}, - [2586] = {.lex_state = 38, .external_lex_state = 6}, - [2587] = {.lex_state = 9, .external_lex_state = 2}, - [2588] = {.lex_state = 41, .external_lex_state = 6}, - [2589] = {.lex_state = 53}, - [2590] = {.lex_state = 53}, + [2585] = {.lex_state = 53}, + [2586] = {.lex_state = 41, .external_lex_state = 7}, + [2587] = {.lex_state = 53}, + [2588] = {.lex_state = 53}, + [2589] = {.lex_state = 37}, + [2590] = {.lex_state = 9, .external_lex_state = 2}, [2591] = {.lex_state = 9, .external_lex_state = 2}, - [2592] = {.lex_state = 9, .external_lex_state = 2}, - [2593] = {.lex_state = 38, .external_lex_state = 6}, + [2592] = {.lex_state = 38, .external_lex_state = 7}, + [2593] = {.lex_state = 53}, [2594] = {.lex_state = 9, .external_lex_state = 2}, - [2595] = {.lex_state = 41, .external_lex_state = 6}, - [2596] = {.lex_state = 53}, + [2595] = {.lex_state = 53}, + [2596] = {.lex_state = 41, .external_lex_state = 7}, [2597] = {.lex_state = 53}, - [2598] = {.lex_state = 9, .external_lex_state = 2}, - [2599] = {.lex_state = 9, .external_lex_state = 2}, - [2600] = {.lex_state = 38, .external_lex_state = 6}, + [2598] = {.lex_state = 53}, + [2599] = {.lex_state = 37}, + [2600] = {.lex_state = 9, .external_lex_state = 2}, [2601] = {.lex_state = 9, .external_lex_state = 2}, - [2602] = {.lex_state = 41, .external_lex_state = 6}, + [2602] = {.lex_state = 38, .external_lex_state = 7}, [2603] = {.lex_state = 53}, - [2604] = {.lex_state = 53}, - [2605] = {.lex_state = 9, .external_lex_state = 2}, - [2606] = {.lex_state = 9, .external_lex_state = 2}, - [2607] = {.lex_state = 38, .external_lex_state = 6}, - [2608] = {.lex_state = 9, .external_lex_state = 2}, - [2609] = {.lex_state = 41, .external_lex_state = 6}, - [2610] = {.lex_state = 53}, - [2611] = {.lex_state = 53}, - [2612] = {.lex_state = 9, .external_lex_state = 2}, - [2613] = {.lex_state = 38, .external_lex_state = 6}, + [2604] = {.lex_state = 9, .external_lex_state = 2}, + [2605] = {.lex_state = 53}, + [2606] = {.lex_state = 41, .external_lex_state = 7}, + [2607] = {.lex_state = 53}, + [2608] = {.lex_state = 53}, + [2609] = {.lex_state = 37}, + [2610] = {.lex_state = 9, .external_lex_state = 2}, + [2611] = {.lex_state = 9, .external_lex_state = 2}, + [2612] = {.lex_state = 38, .external_lex_state = 7}, + [2613] = {.lex_state = 53}, [2614] = {.lex_state = 9, .external_lex_state = 2}, - [2615] = {.lex_state = 41, .external_lex_state = 6}, - [2616] = {.lex_state = 53}, + [2615] = {.lex_state = 53}, + [2616] = {.lex_state = 41, .external_lex_state = 7}, [2617] = {.lex_state = 53}, - [2618] = {.lex_state = 9, .external_lex_state = 2}, - [2619] = {.lex_state = 38, .external_lex_state = 6}, + [2618] = {.lex_state = 53}, + [2619] = {.lex_state = 37}, [2620] = {.lex_state = 9, .external_lex_state = 2}, - [2621] = {.lex_state = 41, .external_lex_state = 6}, - [2622] = {.lex_state = 53}, + [2621] = {.lex_state = 9, .external_lex_state = 2}, + [2622] = {.lex_state = 38, .external_lex_state = 7}, [2623] = {.lex_state = 53}, [2624] = {.lex_state = 9, .external_lex_state = 2}, [2625] = {.lex_state = 53}, - [2626] = {.lex_state = 4, .external_lex_state = 11}, - [2627] = {.lex_state = 4, .external_lex_state = 12}, - [2628] = {.lex_state = 4, .external_lex_state = 12}, - [2629] = {.lex_state = 43}, - [2630] = {.lex_state = 43}, - [2631] = {.lex_state = 17, .external_lex_state = 12}, - [2632] = {.lex_state = 47}, - [2633] = {.lex_state = 19, .external_lex_state = 12}, - [2634] = {.lex_state = 17, .external_lex_state = 12}, - [2635] = {.lex_state = 19, .external_lex_state = 12}, - [2636] = {.lex_state = 3, .external_lex_state = 4}, - [2637] = {.lex_state = 3, .external_lex_state = 4}, - [2638] = {.lex_state = 3, .external_lex_state = 5}, - [2639] = {.lex_state = 3, .external_lex_state = 4}, - [2640] = {.lex_state = 3, .external_lex_state = 5}, - [2641] = {.lex_state = 3, .external_lex_state = 5}, - [2642] = {.lex_state = 4, .external_lex_state = 11}, - [2643] = {.lex_state = 47}, - [2644] = {.lex_state = 17, .external_lex_state = 15}, - [2645] = {.lex_state = 4, .external_lex_state = 12}, - [2646] = {.lex_state = 19, .external_lex_state = 12}, + [2626] = {.lex_state = 41, .external_lex_state = 7}, + [2627] = {.lex_state = 53}, + [2628] = {.lex_state = 53}, + [2629] = {.lex_state = 37}, + [2630] = {.lex_state = 9, .external_lex_state = 2}, + [2631] = {.lex_state = 9, .external_lex_state = 2}, + [2632] = {.lex_state = 38, .external_lex_state = 7}, + [2633] = {.lex_state = 9, .external_lex_state = 2}, + [2634] = {.lex_state = 41, .external_lex_state = 7}, + [2635] = {.lex_state = 53}, + [2636] = {.lex_state = 53}, + [2637] = {.lex_state = 37}, + [2638] = {.lex_state = 9, .external_lex_state = 2}, + [2639] = {.lex_state = 9, .external_lex_state = 2}, + [2640] = {.lex_state = 38, .external_lex_state = 7}, + [2641] = {.lex_state = 9, .external_lex_state = 2}, + [2642] = {.lex_state = 41, .external_lex_state = 7}, + [2643] = {.lex_state = 53}, + [2644] = {.lex_state = 53}, + [2645] = {.lex_state = 37}, + [2646] = {.lex_state = 9, .external_lex_state = 2}, + [2647] = {.lex_state = 9, .external_lex_state = 2}, + [2648] = {.lex_state = 38, .external_lex_state = 7}, + [2649] = {.lex_state = 9, .external_lex_state = 2}, + [2650] = {.lex_state = 41, .external_lex_state = 7}, + [2651] = {.lex_state = 53}, + [2652] = {.lex_state = 53}, + [2653] = {.lex_state = 37}, + [2654] = {.lex_state = 9, .external_lex_state = 2}, + [2655] = {.lex_state = 9, .external_lex_state = 2}, + [2656] = {.lex_state = 38, .external_lex_state = 7}, + [2657] = {.lex_state = 9, .external_lex_state = 2}, + [2658] = {.lex_state = 41, .external_lex_state = 7}, + [2659] = {.lex_state = 53}, + [2660] = {.lex_state = 53}, + [2661] = {.lex_state = 37}, + [2662] = {.lex_state = 9, .external_lex_state = 2}, + [2663] = {.lex_state = 9, .external_lex_state = 2}, + [2664] = {.lex_state = 38, .external_lex_state = 7}, + [2665] = {.lex_state = 9, .external_lex_state = 2}, + [2666] = {.lex_state = 41, .external_lex_state = 7}, + [2667] = {.lex_state = 53}, + [2668] = {.lex_state = 53}, + [2669] = {.lex_state = 37}, + [2670] = {.lex_state = 9, .external_lex_state = 2}, + [2671] = {.lex_state = 9, .external_lex_state = 2}, + [2672] = {.lex_state = 38, .external_lex_state = 7}, + [2673] = {.lex_state = 9, .external_lex_state = 2}, + [2674] = {.lex_state = 41, .external_lex_state = 7}, + [2675] = {.lex_state = 53}, + [2676] = {.lex_state = 53}, + [2677] = {.lex_state = 37}, + [2678] = {.lex_state = 9, .external_lex_state = 2}, + [2679] = {.lex_state = 9, .external_lex_state = 2}, + [2680] = {.lex_state = 38, .external_lex_state = 7}, + [2681] = {.lex_state = 9, .external_lex_state = 2}, + [2682] = {.lex_state = 41, .external_lex_state = 7}, + [2683] = {.lex_state = 53}, + [2684] = {.lex_state = 53}, + [2685] = {.lex_state = 37}, + [2686] = {.lex_state = 9, .external_lex_state = 2}, + [2687] = {.lex_state = 9, .external_lex_state = 2}, + [2688] = {.lex_state = 38, .external_lex_state = 7}, + [2689] = {.lex_state = 9, .external_lex_state = 2}, + [2690] = {.lex_state = 41, .external_lex_state = 7}, + [2691] = {.lex_state = 53}, + [2692] = {.lex_state = 53}, + [2693] = {.lex_state = 37}, + [2694] = {.lex_state = 9, .external_lex_state = 2}, + [2695] = {.lex_state = 9, .external_lex_state = 2}, + [2696] = {.lex_state = 38, .external_lex_state = 7}, + [2697] = {.lex_state = 9, .external_lex_state = 2}, + [2698] = {.lex_state = 41, .external_lex_state = 7}, + [2699] = {.lex_state = 53}, + [2700] = {.lex_state = 53}, + [2701] = {.lex_state = 37}, + [2702] = {.lex_state = 9, .external_lex_state = 2}, + [2703] = {.lex_state = 9, .external_lex_state = 2}, + [2704] = {.lex_state = 38, .external_lex_state = 7}, + [2705] = {.lex_state = 9, .external_lex_state = 2}, + [2706] = {.lex_state = 41, .external_lex_state = 7}, + [2707] = {.lex_state = 53}, + [2708] = {.lex_state = 53}, + [2709] = {.lex_state = 37}, + [2710] = {.lex_state = 9, .external_lex_state = 2}, + [2711] = {.lex_state = 9, .external_lex_state = 2}, + [2712] = {.lex_state = 38, .external_lex_state = 7}, + [2713] = {.lex_state = 9, .external_lex_state = 2}, + [2714] = {.lex_state = 41, .external_lex_state = 7}, + [2715] = {.lex_state = 53}, + [2716] = {.lex_state = 53}, + [2717] = {.lex_state = 37}, + [2718] = {.lex_state = 9, .external_lex_state = 2}, + [2719] = {.lex_state = 9, .external_lex_state = 2}, + [2720] = {.lex_state = 38, .external_lex_state = 7}, + [2721] = {.lex_state = 9, .external_lex_state = 2}, + [2722] = {.lex_state = 41, .external_lex_state = 7}, + [2723] = {.lex_state = 53}, + [2724] = {.lex_state = 53}, + [2725] = {.lex_state = 37}, + [2726] = {.lex_state = 9, .external_lex_state = 2}, + [2727] = {.lex_state = 9, .external_lex_state = 2}, + [2728] = {.lex_state = 38, .external_lex_state = 7}, + [2729] = {.lex_state = 9, .external_lex_state = 2}, + [2730] = {.lex_state = 41, .external_lex_state = 7}, + [2731] = {.lex_state = 53}, + [2732] = {.lex_state = 53}, + [2733] = {.lex_state = 37}, + [2734] = {.lex_state = 9, .external_lex_state = 2}, + [2735] = {.lex_state = 9, .external_lex_state = 2}, + [2736] = {.lex_state = 38, .external_lex_state = 7}, + [2737] = {.lex_state = 9, .external_lex_state = 2}, + [2738] = {.lex_state = 41, .external_lex_state = 7}, + [2739] = {.lex_state = 53}, + [2740] = {.lex_state = 53}, + [2741] = {.lex_state = 37}, + [2742] = {.lex_state = 9, .external_lex_state = 2}, + [2743] = {.lex_state = 9, .external_lex_state = 2}, + [2744] = {.lex_state = 38, .external_lex_state = 7}, + [2745] = {.lex_state = 9, .external_lex_state = 2}, + [2746] = {.lex_state = 41, .external_lex_state = 7}, + [2747] = {.lex_state = 53}, + [2748] = {.lex_state = 53}, + [2749] = {.lex_state = 37}, + [2750] = {.lex_state = 9, .external_lex_state = 2}, + [2751] = {.lex_state = 9, .external_lex_state = 2}, + [2752] = {.lex_state = 38, .external_lex_state = 7}, + [2753] = {.lex_state = 9, .external_lex_state = 2}, + [2754] = {.lex_state = 41, .external_lex_state = 7}, + [2755] = {.lex_state = 53}, + [2756] = {.lex_state = 53}, + [2757] = {.lex_state = 37}, + [2758] = {.lex_state = 9, .external_lex_state = 2}, + [2759] = {.lex_state = 38, .external_lex_state = 7}, + [2760] = {.lex_state = 9, .external_lex_state = 2}, + [2761] = {.lex_state = 41, .external_lex_state = 7}, + [2762] = {.lex_state = 53}, + [2763] = {.lex_state = 53}, + [2764] = {.lex_state = 9, .external_lex_state = 2}, + [2765] = {.lex_state = 38, .external_lex_state = 7}, + [2766] = {.lex_state = 9, .external_lex_state = 2}, + [2767] = {.lex_state = 41, .external_lex_state = 7}, + [2768] = {.lex_state = 53}, + [2769] = {.lex_state = 53}, + [2770] = {.lex_state = 9, .external_lex_state = 2}, + [2771] = {.lex_state = 53}, + [2772] = {.lex_state = 4, .external_lex_state = 13}, + [2773] = {.lex_state = 4, .external_lex_state = 14}, + [2774] = {.lex_state = 4, .external_lex_state = 14}, + [2775] = {.lex_state = 43}, + [2776] = {.lex_state = 43}, + [2777] = {.lex_state = 47}, + [2778] = {.lex_state = 17, .external_lex_state = 14}, + [2779] = {.lex_state = 19, .external_lex_state = 26}, + [2780] = {.lex_state = 17, .external_lex_state = 14}, + [2781] = {.lex_state = 19, .external_lex_state = 26}, + [2782] = {.lex_state = 3, .external_lex_state = 5}, + [2783] = {.lex_state = 3, .external_lex_state = 5}, + [2784] = {.lex_state = 3, .external_lex_state = 5}, + [2785] = {.lex_state = 4, .external_lex_state = 13}, + [2786] = {.lex_state = 3, .external_lex_state = 5}, + [2787] = {.lex_state = 47, .external_lex_state = 10}, + [2788] = {.lex_state = 47}, + [2789] = {.lex_state = 47}, + [2790] = {.lex_state = 47}, + [2791] = {.lex_state = 52}, + [2792] = {.lex_state = 47}, + [2793] = {.lex_state = 17, .external_lex_state = 17}, + [2794] = {.lex_state = 4, .external_lex_state = 14}, + [2795] = {.lex_state = 19, .external_lex_state = 26}, + [2796] = {.lex_state = 3, .external_lex_state = 4}, + [2797] = {.lex_state = 3, .external_lex_state = 4}, + [2798] = {.lex_state = 3, .external_lex_state = 4}, }; enum { @@ -7079,7 +7266,7 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = anon_sym_LF, }; -static bool ts_external_scanner_states[25][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[31][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token_LT_LT_DASH] = true, @@ -7122,11 +7309,11 @@ static bool ts_external_scanner_states[25][EXTERNAL_TOKEN_COUNT] = { }, [6] = { [ts_external_token_variable_name] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_RBRACE] = true, }, [7] = { [ts_external_token_variable_name] = true, - [ts_external_token_file_descriptor] = true, - [ts_external_token_RBRACE] = true, }, [8] = { [ts_external_token_variable_name] = true, @@ -7142,47 +7329,47 @@ static bool ts_external_scanner_states[25][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = true, }, [10] = { - [ts_external_token_RBRACE] = true, + [ts_external_token__concat] = true, }, [11] = { - [ts_external_token_LF] = true, + [ts_external_token_LT_LT] = true, [ts_external_token__concat] = true, }, [12] = { - [ts_external_token_LF] = true, + [ts_external_token_LT_LT] = true, }, [13] = { + [ts_external_token_LF] = true, [ts_external_token__concat] = true, }, [14] = { - [ts_external_token__empty_value] = true, + [ts_external_token_LF] = true, }, [15] = { - [ts_external_token_variable_name] = true, - [ts_external_token_LF] = true, + [ts_external_token_RBRACE] = true, }, [16] = { - [ts_external_token_RBRACK] = true, + [ts_external_token__empty_value] = true, }, [17] = { [ts_external_token_variable_name] = true, - [ts_external_token_file_descriptor] = true, - [ts_external_token__heredoc_body_beginning] = true, - [ts_external_token__simple_heredoc_body] = true, + [ts_external_token_LF] = true, }, [18] = { - [ts_external_token_heredoc_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_RBRACK] = true, }, [19] = { - [ts_external_token_regex] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token__heredoc_body_beginning] = true, + [ts_external_token__simple_heredoc_body] = true, }, [20] = { - [ts_external_token_RBRACE] = true, - [ts_external_token__concat] = true, + [ts_external_token_heredoc_start] = true, }, [21] = { [ts_external_token_regex] = true, - [ts_external_token_RBRACE] = true, }, [22] = { [ts_external_token_variable_name] = true, @@ -7192,95 +7379,120 @@ static bool ts_external_scanner_states[25][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__simple_heredoc_body] = true, }, [23] = { + [ts_external_token_RBRACE] = true, [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, }, [24] = { + [ts_external_token_regex] = true, + [ts_external_token_RBRACE] = true, + }, + [25] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, + }, + [26] = { + [ts_external_token_LT_LT] = true, + [ts_external_token_LF] = true, + }, + [27] = { [ts_external_token__heredoc_body_end] = true, [ts_external_token__heredoc_body_middle] = true, }, + [28] = { + [ts_external_token_RBRACK] = true, + }, + [29] = { + [ts_external_token_LT_LT] = true, + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, + }, + [30] = { + [ts_external_token_LT_LT] = true, + [ts_external_token_LF] = true, + [ts_external_token__concat] = true, + }, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [anon_sym__] = ACTIONS(1), + [anon_sym_0] = ACTIONS(1), [sym_heredoc_start] = ACTIONS(1), [anon_sym_AMP_GT_GT] = ACTIONS(1), [sym__empty_value] = ACTIONS(1), [anon_sym_typeset] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), - [anon_sym_BQUOTE] = ACTIONS(1), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), [anon_sym_done] = ACTIONS(1), - [anon_sym_GT_LPAREN] = ACTIONS(1), + [anon_sym_LT_LPAREN] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), - [anon_sym_COLON_QMARK] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), [anon_sym_RPAREN_RPAREN] = ACTIONS(1), [anon_sym_RBRACK_RBRACK] = ACTIONS(1), - [anon_sym_0] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), - [sym_word] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), [sym__simple_heredoc_body] = ACTIONS(1), [anon_sym_LT_AMP] = ACTIONS(1), [sym__concat] = ACTIONS(1), [anon_sym_export] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), - [sym__special_character] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1), [anon_sym_LPAREN_LPAREN] = ACTIONS(1), - [sym_raw_string] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_declare] = ACTIONS(1), [sym_variable_name] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), - [sym_test_operator] = ACTIONS(1), + [sym_word] = ACTIONS(1), [sym__heredoc_body_beginning] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_readonly] = ACTIONS(1), [anon_sym_unset] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), + [sym__special_character] = ACTIONS(1), [anon_sym_GT_AMP] = ACTIONS(1), [anon_sym_then] = ACTIONS(1), + [sym_comment] = ACTIONS(3), [anon_sym_elif] = ACTIONS(1), - [sym_ansii_c_string] = ACTIONS(1), + [sym_raw_string] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [sym_regex] = ACTIONS(1), [anon_sym_SEMI_SEMI] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), + [sym_test_operator] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), [sym__heredoc_body_middle] = ACTIONS(1), [anon_sym_local] = ACTIONS(1), [anon_sym_unsetenv] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_LT_LT] = ACTIONS(1), [anon_sym_fi] = ACTIONS(1), - [anon_sym_COLON_DASH] = ACTIONS(1), + [anon_sym_COLON_QMARK] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), - [sym_number] = ACTIONS(1), + [sym_ansii_c_string] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), + [sym__heredoc_body_end] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), - [sym__heredoc_body_end] = ACTIONS(1), [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_EQ_TILDE] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_LT_LT_DASH] = ACTIONS(1), [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_COLON_DASH] = ACTIONS(1), [anon_sym_case] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), + [sym_number] = ACTIONS(1), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [sym_file_descriptor] = ACTIONS(1), @@ -7290,28 +7502,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_LT_LT_LT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_esac] = ACTIONS(1), - [anon_sym_LT_LPAREN] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), [anon_sym_LBRACK_LBRACK] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), [anon_sym_PIPE_AMP] = ACTIONS(1), }, [1] = { - [aux_sym__literal_repeat1] = STATE(27), [sym_if_statement] = STATE(28), [sym_function_definition] = STATE(28), [sym_negated_command] = STATE(28), [sym_test_command] = STATE(28), [sym_variable_assignment] = STATE(29), [sym_subscript] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_expansion] = STATE(9), - [sym_command_substitution] = STATE(9), - [aux_sym__statements_repeat1] = STATE(32), + [sym_arithmetic_expansion] = STATE(10), + [sym_string_expansion] = STATE(10), + [sym_expansion] = STATE(10), + [aux_sym__statements_repeat1] = STATE(31), + [aux_sym__literal_repeat1] = STATE(32), [sym_program] = STATE(33), [sym_redirected_statement] = STATE(28), [sym_for_statement] = STATE(28), @@ -7319,15042 +7532,15427 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(28), [sym_declaration_command] = STATE(28), [sym_unset_command] = STATE(28), - [sym_file_redirect] = STATE(34), - [sym_string] = STATE(9), - [sym_process_substitution] = STATE(9), - [aux_sym_command_repeat1] = STATE(34), - [sym__statements] = STATE(35), + [sym_file_redirect] = STATE(35), + [sym_concatenation] = STATE(34), + [sym_string] = STATE(10), + [sym_command_substitution] = STATE(10), + [sym_process_substitution] = STATE(10), + [aux_sym_command_repeat1] = STATE(35), + [sym__statements] = STATE(36), [sym_c_style_for_statement] = STATE(28), [sym_while_statement] = STATE(28), [sym_case_statement] = STATE(28), [sym_pipeline] = STATE(28), [sym_list] = STATE(28), [sym_command] = STATE(28), - [sym_command_name] = STATE(36), - [sym_simple_expansion] = STATE(9), - [sym_string_expansion] = STATE(9), + [sym_command_name] = STATE(37), + [sym_simple_expansion] = STATE(10), [anon_sym_LPAREN] = ACTIONS(5), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(9), [anon_sym_typeset] = ACTIONS(9), [anon_sym_unsetenv] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_BQUOTE] = ACTIONS(15), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [sym_number] = ACTIONS(19), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [anon_sym_LT_LPAREN] = ACTIONS(19), + [sym_ansii_c_string] = ACTIONS(21), [anon_sym_function] = ACTIONS(23), - [sym_word] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(31), - [anon_sym_if] = ACTIONS(33), - [anon_sym_case] = ACTIONS(35), - [anon_sym_LPAREN_LPAREN] = ACTIONS(37), - [sym_raw_string] = ACTIONS(39), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_case] = ACTIONS(33), + [anon_sym_LPAREN_LPAREN] = ACTIONS(35), + [sym_number] = ACTIONS(37), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), + [anon_sym_BANG] = ACTIONS(41), [anon_sym_declare] = ACTIONS(9), - [sym_variable_name] = ACTIONS(45), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), + [sym_variable_name] = ACTIONS(43), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(19), + [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(9), [anon_sym_unset] = ACTIONS(11), [ts_builtin_sym_end] = ACTIONS(49), - [anon_sym_DQUOTE] = ACTIONS(51), + [sym__special_character] = ACTIONS(51), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [anon_sym_for] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [sym_ansii_c_string] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(61), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [sym_raw_string] = ACTIONS(21), + [anon_sym_LBRACK_LBRACK] = ACTIONS(63), }, [2] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(37), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(38), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [3] = { - [sym_command_substitution] = STATE(38), - [aux_sym__literal_repeat1] = STATE(39), - [sym_string] = STATE(38), - [sym_process_substitution] = STATE(38), - [sym_simple_expansion] = STATE(38), - [sym_string_expansion] = STATE(38), + [sym_expansion] = STATE(39), [sym_concatenation] = STATE(40), - [sym_expansion] = STATE(38), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_BQUOTE] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(117), - [sym_number] = ACTIONS(119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_word] = ACTIONS(119), + [sym_string] = STATE(39), + [sym_command_substitution] = STATE(39), + [sym_process_substitution] = STATE(39), + [aux_sym__literal_repeat1] = STATE(41), + [sym_simple_expansion] = STATE(39), + [sym_arithmetic_expansion] = STATE(39), + [sym_string_expansion] = STATE(39), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_number] = ACTIONS(117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(123), + [sym_word] = ACTIONS(117), [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(117), - [sym_ansii_c_string] = ACTIONS(111), - [sym__special_character] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [sym_ansii_c_string] = ACTIONS(127), + [sym__special_character] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(131), + [sym_raw_string] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(133), }, [4] = { - [sym_command_substitution] = STATE(41), - [aux_sym__literal_repeat1] = STATE(42), - [sym_string] = STATE(41), - [aux_sym_declaration_command_repeat1] = STATE(43), - [sym_process_substitution] = STATE(41), - [sym_simple_expansion] = STATE(41), - [sym_subscript] = STATE(2456), - [sym_string_expansion] = STATE(41), - [sym_variable_assignment] = STATE(43), - [sym_concatenation] = STATE(43), - [sym_expansion] = STATE(41), - [anon_sym_PIPE_AMP] = ACTIONS(129), - [anon_sym_AMP_GT_GT] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_LT_LT] = ACTIONS(129), - [anon_sym_BQUOTE] = ACTIONS(133), - [anon_sym_GT_LPAREN] = ACTIONS(135), - [sym_number] = ACTIONS(137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(129), - [sym_word] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_LT_AMP] = ACTIONS(129), - [anon_sym_GT_GT] = ACTIONS(129), - [sym__special_character] = ACTIONS(141), - [anon_sym_LT_LT_DASH] = ACTIONS(129), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(129), - [sym_raw_string] = ACTIONS(137), - [sym_variable_name] = ACTIONS(145), - [sym_file_descriptor] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(129), - [anon_sym_AMP_GT] = ACTIONS(129), - [ts_builtin_sym_end] = ACTIONS(143), - [anon_sym_LT_LT_LT] = ACTIONS(129), - [anon_sym_GT_AMP] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [aux_sym__simple_variable_name_token1] = ACTIONS(151), - [anon_sym_LT_LPAREN] = ACTIONS(135), - [sym_ansii_c_string] = ACTIONS(137), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_SEMI_SEMI] = ACTIONS(129), - [anon_sym_AMP] = ACTIONS(129), + [sym_expansion] = STATE(42), + [sym_concatenation] = STATE(44), + [aux_sym_declaration_command_repeat1] = STATE(44), + [sym_string] = STATE(42), + [sym_command_substitution] = STATE(42), + [sym_process_substitution] = STATE(42), + [aux_sym__literal_repeat1] = STATE(43), + [sym_variable_assignment] = STATE(44), + [sym_subscript] = STATE(2574), + [sym_simple_expansion] = STATE(42), + [sym_arithmetic_expansion] = STATE(42), + [sym_string_expansion] = STATE(42), + [anon_sym_AMP_GT_GT] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_LT_LT] = ACTIONS(135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), + [anon_sym_LT_LPAREN] = ACTIONS(143), + [sym_ansii_c_string] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [aux_sym__simple_variable_name_token1] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_LT_AMP] = ACTIONS(135), + [anon_sym_GT_GT] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_LT_LT_DASH] = ACTIONS(135), + [anon_sym_GT_LPAREN] = ACTIONS(143), + [sym_number] = ACTIONS(145), + [anon_sym_LF] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), + [sym_variable_name] = ACTIONS(155), + [sym_file_descriptor] = ACTIONS(151), + [sym_word] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_AMP_GT] = ACTIONS(135), + [ts_builtin_sym_end] = ACTIONS(151), + [anon_sym_LT_LT_LT] = ACTIONS(135), + [anon_sym_GT_AMP] = ACTIONS(135), + [sym__special_character] = ACTIONS(157), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(159), + [sym_raw_string] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(135), + [anon_sym_SEMI_SEMI] = ACTIONS(135), + [anon_sym_PIPE_AMP] = ACTIONS(135), }, [5] = { - [sym_command_substitution] = STATE(44), - [aux_sym__literal_repeat1] = STATE(45), - [sym_string] = STATE(44), - [aux_sym_unset_command_repeat1] = STATE(46), - [sym_process_substitution] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_concatenation] = STATE(46), - [sym_expansion] = STATE(44), - [anon_sym_PIPE_AMP] = ACTIONS(153), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(153), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_GT_LPAREN] = ACTIONS(159), - [sym_number] = ACTIONS(161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(163), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [sym_word] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(153), - [anon_sym_GT_GT] = ACTIONS(153), - [sym__special_character] = ACTIONS(165), - [anon_sym_LT_LT_DASH] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(153), - [sym_raw_string] = ACTIONS(161), - [sym_file_descriptor] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_AMP_GT] = ACTIONS(153), - [ts_builtin_sym_end] = ACTIONS(167), - [anon_sym_LT_LT_LT] = ACTIONS(153), - [anon_sym_GT_AMP] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [sym_expansion] = STATE(45), + [sym_concatenation] = STATE(47), + [sym_string] = STATE(45), + [sym_command_substitution] = STATE(45), + [sym_process_substitution] = STATE(45), + [aux_sym__literal_repeat1] = STATE(46), + [aux_sym_unset_command_repeat1] = STATE(47), + [sym_simple_expansion] = STATE(45), + [sym_arithmetic_expansion] = STATE(45), + [sym_string_expansion] = STATE(45), + [anon_sym_AMP_GT_GT] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(163), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(161), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), + [anon_sym_LT_LPAREN] = ACTIONS(169), + [sym_ansii_c_string] = ACTIONS(171), + [anon_sym_PIPE_PIPE] = ACTIONS(161), + [anon_sym_PIPE] = ACTIONS(161), [aux_sym__simple_variable_name_token1] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(159), - [sym_ansii_c_string] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(153), - [anon_sym_SEMI_SEMI] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_LT_AMP] = ACTIONS(161), + [anon_sym_GT_GT] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_LT_LT_DASH] = ACTIONS(161), + [anon_sym_GT_LPAREN] = ACTIONS(169), + [sym_number] = ACTIONS(171), + [anon_sym_LF] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(179), + [sym_file_descriptor] = ACTIONS(177), + [sym_word] = ACTIONS(171), + [anon_sym_GT] = ACTIONS(161), + [anon_sym_AMP_GT] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(177), + [anon_sym_LT_LT_LT] = ACTIONS(161), + [anon_sym_GT_AMP] = ACTIONS(161), + [sym__special_character] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(183), + [sym_raw_string] = ACTIONS(171), + [anon_sym_AMP_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(161), + [anon_sym_SEMI_SEMI] = ACTIONS(161), + [anon_sym_PIPE_AMP] = ACTIONS(161), }, [6] = { - [sym_string] = STATE(49), - [anon_sym__] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(51), - [anon_sym_POUND] = ACTIONS(177), - [anon_sym_STAR] = ACTIONS(179), - [anon_sym_0] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(177), - [aux_sym__simple_variable_name_token1] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(177), - [anon_sym_AT] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(177), - [sym_raw_string] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(179), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(51), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(197), }, [7] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(50), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(56), + [sym_postfix_expression] = STATE(56), + [sym_concatenation] = STATE(56), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(56), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(56), + [sym_binary_expression] = STATE(56), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [8] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(57), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(58), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [8] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(51), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [9] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(59), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [9] = { - [aux_sym_concatenation_repeat1] = STATE(53), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_number] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(193), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [10] = { - [sym_subscript] = STATE(54), - [anon_sym__] = ACTIONS(195), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(195), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_POUND] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [aux_sym__simple_variable_name_token1] = ACTIONS(195), - [sym_variable_name] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(197), + [aux_sym_concatenation_repeat1] = STATE(61), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [sym_ansii_c_string] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_number] = ACTIONS(225), + [anon_sym_LF] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(229), + [sym_word] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_AMP_GT] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [sym__special_character] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [ts_builtin_sym_end] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(225), + [sym_raw_string] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), }, [11] = { - [sym_word] = ACTIONS(205), - [sym_comment] = ACTIONS(41), + [sym_word] = ACTIONS(231), + [sym_comment] = ACTIONS(53), }, [12] = { - [aux_sym_concatenation_repeat1] = STATE(53), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_number] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(193), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), - }, - [13] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_negated_command] = STATE(61), - [sym_test_command] = STATE(61), - [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(63), - [sym_redirected_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_compound_statement] = STATE(61), - [sym_subshell] = STATE(61), - [sym_declaration_command] = STATE(61), - [sym_unset_command] = STATE(61), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_pipeline] = STATE(61), - [sym_list] = STATE(61), - [sym_command] = STATE(61), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_if_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_negated_command] = STATE(64), + [sym_test_command] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(66), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_compound_statement] = STATE(64), + [sym_subshell] = STATE(64), + [sym_declaration_command] = STATE(64), + [sym_unset_command] = STATE(64), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_pipeline] = STATE(64), + [sym_list] = STATE(64), + [sym_command] = STATE(64), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [14] = { - [aux_sym_concatenation_repeat1] = STATE(53), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [ts_builtin_sym_end] = ACTIONS(213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [13] = { + [sym_string] = STATE(69), + [anon_sym_POUND] = ACTIONS(235), + [anon_sym_0] = ACTIONS(237), + [anon_sym_QMARK] = ACTIONS(239), + [aux_sym__simple_variable_name_token1] = ACTIONS(237), + [anon_sym__] = ACTIONS(237), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(235), + [sym_raw_string] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_AT] = ACTIONS(239), }, - [15] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym__terminated_statement] = STATE(64), - [sym_if_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_negated_command] = STATE(65), - [sym_test_command] = STATE(65), - [sym_variable_assignment] = STATE(66), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_compound_statement] = STATE(65), - [sym_subshell] = STATE(65), - [sym_declaration_command] = STATE(65), - [sym_unset_command] = STATE(65), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_case_statement] = STATE(65), - [sym_pipeline] = STATE(65), - [sym_list] = STATE(65), - [sym_command] = STATE(65), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [14] = { + [sym__terminated_statement] = STATE(70), + [sym_if_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_negated_command] = STATE(71), + [sym_test_command] = STATE(71), + [sym_variable_assignment] = STATE(72), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_compound_statement] = STATE(71), + [sym_subshell] = STATE(71), + [sym_declaration_command] = STATE(71), + [sym_unset_command] = STATE(71), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_pipeline] = STATE(71), + [sym_list] = STATE(71), + [sym_command] = STATE(71), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [16] = { - [sym_command_substitution] = STATE(67), - [aux_sym__literal_repeat1] = STATE(68), - [sym_string] = STATE(67), - [sym_process_substitution] = STATE(67), - [sym_simple_expansion] = STATE(67), - [sym_string_expansion] = STATE(67), - [sym_concatenation] = STATE(69), - [sym_expansion] = STATE(67), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(219), - [sym_word] = ACTIONS(221), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(225), - [sym_ansii_c_string] = ACTIONS(219), - [anon_sym_LT_LPAREN] = ACTIONS(227), - [anon_sym_BQUOTE] = ACTIONS(229), - [sym__special_character] = ACTIONS(231), - [sym_number] = ACTIONS(221), - [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [17] = { - [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(74), - [sym_postfix_expression] = STATE(74), - [sym_string] = STATE(71), - [aux_sym__literal_repeat1] = STATE(73), - [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(74), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(74), - [sym_binary_expression] = STATE(74), + [15] = { + [sym_expansion] = STATE(73), [sym_concatenation] = STATE(74), - [sym_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_string] = STATE(73), + [sym_command_substitution] = STATE(73), + [sym_process_substitution] = STATE(73), + [aux_sym__literal_repeat1] = STATE(75), + [sym_simple_expansion] = STATE(73), + [sym_arithmetic_expansion] = STATE(73), + [sym_string_expansion] = STATE(73), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym__special_character] = ACTIONS(245), [sym_number] = ACTIONS(247), [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), + [sym_raw_string] = ACTIONS(255), [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [anon_sym_BQUOTE] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [sym_ansii_c_string] = ACTIONS(255), + [anon_sym_LT_LPAREN] = ACTIONS(243), + }, + [16] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(76), + [sym_postfix_expression] = STATE(76), + [sym_concatenation] = STATE(76), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(76), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(76), + [sym_binary_expression] = STATE(76), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [17] = { + [sym_subscript] = STATE(77), + [anon_sym_0] = ACTIONS(263), + [anon_sym_POUND] = ACTIONS(265), + [anon_sym_QMARK] = ACTIONS(267), + [aux_sym__simple_variable_name_token1] = ACTIONS(263), + [anon_sym__] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(265), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(267), }, [18] = { - [aux_sym__literal_repeat1] = STATE(27), - [sym_string] = STATE(9), - [sym_process_substitution] = STATE(9), - [sym_test_command] = STATE(75), - [aux_sym_command_repeat1] = STATE(34), - [sym_subscript] = STATE(2467), - [sym_variable_assignment] = STATE(34), - [sym_concatenation] = STATE(31), - [sym_expansion] = STATE(9), - [sym_command_substitution] = STATE(9), - [sym_command] = STATE(75), - [sym_command_name] = STATE(36), - [sym_simple_expansion] = STATE(9), - [sym_string_expansion] = STATE(9), - [sym_subshell] = STATE(75), - [sym_file_redirect] = STATE(34), + [sym_concatenation] = STATE(34), + [sym_string] = STATE(10), + [sym_command_substitution] = STATE(10), + [sym_process_substitution] = STATE(10), + [sym_test_command] = STATE(81), + [sym_variable_assignment] = STATE(35), + [aux_sym_command_repeat1] = STATE(35), + [sym_subscript] = STATE(2585), + [sym_arithmetic_expansion] = STATE(10), + [sym_string_expansion] = STATE(10), + [sym_expansion] = STATE(10), + [sym_command] = STATE(81), + [sym_command_name] = STATE(37), + [aux_sym__literal_repeat1] = STATE(32), + [sym_simple_expansion] = STATE(10), + [sym_subshell] = STATE(81), + [sym_file_redirect] = STATE(35), [anon_sym_LPAREN] = ACTIONS(5), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_LPAREN_LPAREN] = ACTIONS(37), - [sym_raw_string] = ACTIONS(39), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(257), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_BQUOTE] = ACTIONS(15), - [anon_sym_AMP_GT] = ACTIONS(29), - [sym_number] = ACTIONS(19), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(51), + [anon_sym_LPAREN_LPAREN] = ACTIONS(35), + [sym_number] = ACTIONS(37), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), + [anon_sym_GT_LPAREN] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(13), + [sym_variable_name] = ACTIONS(273), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), + [anon_sym_AMP_GT] = ACTIONS(27), + [sym_ansii_c_string] = ACTIONS(21), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [anon_sym_LT_LPAREN] = ACTIONS(19), + [sym__special_character] = ACTIONS(51), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_word] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(39), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [anon_sym_LBRACK_LBRACK] = ACTIONS(61), - [sym__special_character] = ACTIONS(31), + [sym_raw_string] = ACTIONS(21), + [anon_sym_BQUOTE] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK_LBRACK] = ACTIONS(63), + [anon_sym_DOLLAR] = ACTIONS(29), }, [19] = { - [anon_sym_PLUS_EQ] = ACTIONS(259), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(259), + [anon_sym_PLUS_EQ] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(275), + [sym_comment] = ACTIONS(53), }, [20] = { - [anon_sym_AMP_GT_GT] = ACTIONS(263), - [sym_comment] = ACTIONS(41), - [anon_sym_GT_AMP] = ACTIONS(263), - [anon_sym_LT] = ACTIONS(265), - [anon_sym_LT_AMP] = ACTIONS(263), - [anon_sym_GT_GT] = ACTIONS(263), - [anon_sym_GT] = ACTIONS(265), - [anon_sym_AMP_GT] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(279), + [anon_sym_GT_AMP] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_AMP] = ACTIONS(279), + [anon_sym_GT_GT] = ACTIONS(279), + [sym_comment] = ACTIONS(53), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_AMP_GT] = ACTIONS(281), }, [21] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(82), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [aux_sym_concatenation_repeat1] = STATE(61), + [anon_sym_LPAREN] = ACTIONS(283), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [sym_ansii_c_string] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_number] = ACTIONS(225), + [anon_sym_LF] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(229), + [sym_word] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_AMP_GT] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [sym__special_character] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [ts_builtin_sym_end] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(225), + [sym_raw_string] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), }, [22] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(83), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(84), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [aux_sym_concatenation_repeat1] = STATE(61), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + }, + [23] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(86), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [23] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(279), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(281), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [24] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym__terminated_statement] = STATE(87), - [sym_if_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_negated_command] = STATE(65), - [sym_test_command] = STATE(65), - [sym_variable_assignment] = STATE(66), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_compound_statement] = STATE(65), - [sym_subshell] = STATE(65), - [sym_declaration_command] = STATE(65), - [sym_unset_command] = STATE(65), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_case_statement] = STATE(65), - [sym_pipeline] = STATE(65), - [sym_list] = STATE(65), - [sym_command] = STATE(65), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [aux_sym__simple_variable_name_token1] = ACTIONS(295), + [sym_comment] = ACTIONS(53), + [anon_sym_LPAREN_LPAREN] = ACTIONS(297), + }, + [25] = { + [sym__terminated_statement] = STATE(89), + [sym_if_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_negated_command] = STATE(71), + [sym_test_command] = STATE(71), + [sym_variable_assignment] = STATE(72), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_compound_statement] = STATE(71), + [sym_subshell] = STATE(71), + [sym_declaration_command] = STATE(71), + [sym_unset_command] = STATE(71), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_pipeline] = STATE(71), + [sym_list] = STATE(71), + [sym_command] = STATE(71), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [25] = { - [sym_command_substitution] = STATE(408), - [sym_unary_expression] = STATE(88), - [sym_postfix_expression] = STATE(88), - [sym_string] = STATE(408), - [aux_sym__literal_repeat1] = STATE(410), - [sym_process_substitution] = STATE(408), - [sym_parenthesized_expression] = STATE(88), - [sym_simple_expansion] = STATE(408), - [sym_string_expansion] = STATE(408), - [sym__expression] = STATE(88), - [sym_binary_expression] = STATE(88), - [sym_concatenation] = STATE(88), - [sym_expansion] = STATE(408), - [anon_sym_LPAREN] = ACTIONS(283), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(285), - [anon_sym_BANG] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_test_operator] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym_number] = ACTIONS(297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_word] = ACTIONS(297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(285), - [sym__special_character] = ACTIONS(305), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [26] = { - [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(89), - [sym_postfix_expression] = STATE(89), - [sym_string] = STATE(71), - [aux_sym__literal_repeat1] = STATE(73), - [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(89), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(89), - [sym_binary_expression] = STATE(89), - [sym_concatenation] = STATE(89), - [sym_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [sym_expansion] = STATE(407), + [sym_unary_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_concatenation] = STATE(90), + [sym_string] = STATE(407), + [sym_command_substitution] = STATE(407), + [sym_process_substitution] = STATE(407), + [sym_parenthesized_expression] = STATE(90), + [aux_sym__literal_repeat1] = STATE(409), + [sym_simple_expansion] = STATE(407), + [sym__expression] = STATE(90), + [sym_binary_expression] = STATE(90), + [sym_arithmetic_expansion] = STATE(407), + [sym_string_expansion] = STATE(407), + [anon_sym_LPAREN] = ACTIONS(299), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_number] = ACTIONS(303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), + [anon_sym_BANG] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), + [sym_word] = ACTIONS(303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [sym_ansii_c_string] = ACTIONS(315), + [sym__special_character] = ACTIONS(317), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(319), + [sym_raw_string] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_test_operator] = ACTIONS(323), }, [27] = { - [aux_sym__literal_repeat1] = STATE(91), - [anon_sym_AMP] = ACTIONS(307), - [anon_sym_AMP_GT_GT] = ACTIONS(307), - [anon_sym_DOLLAR] = ACTIONS(307), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_BQUOTE] = ACTIONS(307), - [anon_sym_GT_LPAREN] = ACTIONS(307), - [sym_number] = ACTIONS(307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(307), - [anon_sym_PIPE_PIPE] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(307), - [sym_word] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_LT_AMP] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_EQ_TILDE] = ACTIONS(307), - [sym__special_character] = ACTIONS(309), - [anon_sym_LT_LT_DASH] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(307), - [sym_raw_string] = ACTIONS(307), - [sym_file_descriptor] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_AMP_GT] = ACTIONS(307), - [anon_sym_EQ_EQ] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(307), - [anon_sym_LT_LT_LT] = ACTIONS(307), - [anon_sym_GT_AMP] = ACTIONS(307), - [ts_builtin_sym_end] = ACTIONS(311), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(307), - [anon_sym_LT_LPAREN] = ACTIONS(307), - [sym_ansii_c_string] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI_SEMI] = ACTIONS(307), - [anon_sym_PIPE_AMP] = ACTIONS(307), + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(91), + [sym_postfix_expression] = STATE(91), + [sym_concatenation] = STATE(91), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(91), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(91), + [sym_binary_expression] = STATE(91), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, [28] = { [sym_heredoc_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_SEMI_SEMI] = ACTIONS(313), - [anon_sym_AMP_GT_GT] = ACTIONS(315), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(317), - [anon_sym_SEMI] = ACTIONS(313), - [sym_file_descriptor] = ACTIONS(319), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_AMP_GT] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(323), - [ts_builtin_sym_end] = ACTIONS(325), - [anon_sym_LT_LT_LT] = ACTIONS(327), - [anon_sym_GT_AMP] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_LT_AMP] = ACTIONS(315), - [anon_sym_GT_GT] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_LT_LT_DASH] = ACTIONS(321), - [anon_sym_PIPE_AMP] = ACTIONS(329), - }, - [29] = { - [sym_heredoc_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), + [aux_sym_redirected_statement_repeat1] = STATE(98), + [anon_sym_SEMI_SEMI] = ACTIONS(325), + [anon_sym_AMP_GT_GT] = ACTIONS(327), + [anon_sym_LF] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(325), + [sym_file_descriptor] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_AMP_GT] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [ts_builtin_sym_end] = ACTIONS(337), + [anon_sym_LT_LT_LT] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_LT_AMP] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(327), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_LT_LT_DASH] = ACTIONS(333), + [anon_sym_PIPE_AMP] = ACTIONS(341), + }, + [29] = { + [sym_heredoc_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_AMP] = ACTIONS(313), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(329), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(321), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(317), - [anon_sym_SEMI] = ACTIONS(313), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [ts_builtin_sym_end] = ACTIONS(325), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(327), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_SEMI_SEMI] = ACTIONS(313), - [anon_sym_PIPE_AMP] = ACTIONS(329), + [sym_herestring_redirect] = STATE(98), + [aux_sym_redirected_statement_repeat1] = STATE(98), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_PIPE] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(325), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(337), + [sym__special_character] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(339), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_SEMI_SEMI] = ACTIONS(325), + [anon_sym_PIPE_AMP] = ACTIONS(341), }, [30] = { - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_PLUS_EQ] = ACTIONS(259), - [sym_comment] = ACTIONS(41), + [anon_sym_EQ] = ACTIONS(275), + [anon_sym_PLUS_EQ] = ACTIONS(275), + [sym_comment] = ACTIONS(53), }, [31] = { - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_number] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(193), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [ts_builtin_sym_end] = ACTIONS(193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), - }, - [32] = { - [aux_sym__literal_repeat1] = STATE(27), [sym_if_statement] = STATE(99), [sym_function_definition] = STATE(99), [sym_negated_command] = STATE(99), [sym_test_command] = STATE(99), [sym_variable_assignment] = STATE(100), [sym_subscript] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_expansion] = STATE(9), - [sym_command_substitution] = STATE(9), + [sym_arithmetic_expansion] = STATE(10), + [sym_string_expansion] = STATE(10), + [sym_expansion] = STATE(10), [aux_sym__statements_repeat1] = STATE(101), + [aux_sym__literal_repeat1] = STATE(32), [sym_redirected_statement] = STATE(99), [sym_for_statement] = STATE(99), [sym_compound_statement] = STATE(99), [sym_subshell] = STATE(99), [sym_declaration_command] = STATE(99), [sym_unset_command] = STATE(99), - [sym_file_redirect] = STATE(34), - [sym_string] = STATE(9), - [sym_process_substitution] = STATE(9), - [aux_sym_command_repeat1] = STATE(34), + [sym_file_redirect] = STATE(35), + [sym_concatenation] = STATE(34), + [sym_string] = STATE(10), + [sym_command_substitution] = STATE(10), + [sym_process_substitution] = STATE(10), + [aux_sym_command_repeat1] = STATE(35), [sym_c_style_for_statement] = STATE(99), [sym_while_statement] = STATE(99), [sym_case_statement] = STATE(99), [sym_pipeline] = STATE(99), [sym_list] = STATE(99), [sym_command] = STATE(99), - [sym_command_name] = STATE(36), - [sym_simple_expansion] = STATE(9), - [sym_string_expansion] = STATE(9), + [sym_command_name] = STATE(37), + [sym_simple_expansion] = STATE(10), [anon_sym_LPAREN] = ACTIONS(5), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(9), [anon_sym_typeset] = ACTIONS(9), [anon_sym_unsetenv] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_BQUOTE] = ACTIONS(15), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [sym_number] = ACTIONS(19), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [anon_sym_LT_LPAREN] = ACTIONS(19), + [sym_ansii_c_string] = ACTIONS(21), [anon_sym_function] = ACTIONS(23), - [sym_word] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(31), - [anon_sym_if] = ACTIONS(33), - [anon_sym_case] = ACTIONS(35), - [anon_sym_LPAREN_LPAREN] = ACTIONS(37), - [sym_raw_string] = ACTIONS(39), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_case] = ACTIONS(33), + [anon_sym_LPAREN_LPAREN] = ACTIONS(35), + [sym_number] = ACTIONS(37), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), + [anon_sym_BANG] = ACTIONS(41), [anon_sym_declare] = ACTIONS(9), - [sym_variable_name] = ACTIONS(45), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), + [sym_variable_name] = ACTIONS(43), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(19), + [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(9), [anon_sym_unset] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(51), + [sym__special_character] = ACTIONS(51), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [anon_sym_for] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [sym_ansii_c_string] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(61), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [sym_raw_string] = ACTIONS(21), + [anon_sym_LBRACK_LBRACK] = ACTIONS(63), + }, + [32] = { + [aux_sym__literal_repeat1] = STATE(103), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_EQ_TILDE] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [sym_file_descriptor] = ACTIONS(349), + [sym_word] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [sym__special_character] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(347), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_SEMI_SEMI] = ACTIONS(347), + [anon_sym_PIPE_AMP] = ACTIONS(347), }, [33] = { - [ts_builtin_sym_end] = ACTIONS(335), - [sym_comment] = ACTIONS(41), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_comment] = ACTIONS(53), }, [34] = { - [sym_command_substitution] = STATE(9), - [aux_sym__literal_repeat1] = STATE(27), - [sym_expansion] = STATE(9), - [sym_string] = STATE(9), - [sym_command_name] = STATE(102), - [sym_process_substitution] = STATE(9), - [sym_simple_expansion] = STATE(9), - [sym_string_expansion] = STATE(9), - [sym_subscript] = STATE(2467), - [sym_variable_assignment] = STATE(103), - [aux_sym_command_repeat1] = STATE(103), - [sym_concatenation] = STATE(31), - [sym_file_redirect] = STATE(103), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [sym_ansii_c_string] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_number] = ACTIONS(225), + [anon_sym_LF] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(229), + [sym_word] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_AMP_GT] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [sym__special_character] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [ts_builtin_sym_end] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(225), + [sym_raw_string] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), + }, + [35] = { + [sym_expansion] = STATE(10), + [sym_string_expansion] = STATE(10), + [sym_concatenation] = STATE(34), + [sym_string] = STATE(10), + [aux_sym__literal_repeat1] = STATE(32), + [sym_command_substitution] = STATE(10), + [sym_process_substitution] = STATE(10), + [sym_command_name] = STATE(104), + [sym_variable_assignment] = STATE(105), + [sym_simple_expansion] = STATE(10), + [sym_subscript] = STATE(2585), + [aux_sym_command_repeat1] = STATE(105), + [sym_arithmetic_expansion] = STATE(10), + [sym_file_redirect] = STATE(105), + [anon_sym_GT_LPAREN] = ACTIONS(19), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(39), - [sym_variable_name] = ACTIONS(257), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_BQUOTE] = ACTIONS(15), - [anon_sym_AMP_GT] = ACTIONS(29), - [sym_number] = ACTIONS(19), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(51), + [sym_number] = ACTIONS(37), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), + [sym_variable_name] = ACTIONS(273), + [sym_word] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(27), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_LT_LPAREN] = ACTIONS(19), + [anon_sym_AMP_GT] = ACTIONS(27), + [sym_ansii_c_string] = ACTIONS(21), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [sym__special_character] = ACTIONS(355), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_word] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(39), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [sym__special_character] = ACTIONS(337), - }, - [35] = { - [ts_builtin_sym_end] = ACTIONS(339), - [sym_comment] = ACTIONS(41), + [sym_raw_string] = ACTIONS(21), + [anon_sym_BQUOTE] = ACTIONS(55), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(29), }, [36] = { - [sym_command_substitution] = STATE(105), - [aux_sym__literal_repeat1] = STATE(106), - [sym_string] = STATE(105), - [sym_process_substitution] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [aux_sym_command_repeat2] = STATE(107), - [sym_concatenation] = STATE(107), - [sym_expansion] = STATE(105), - [anon_sym_PIPE_AMP] = ACTIONS(341), - [anon_sym_AMP_GT_GT] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_LT_LT] = ACTIONS(341), - [anon_sym_BQUOTE] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(341), - [sym_word] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_LT_AMP] = ACTIONS(341), - [anon_sym_GT_GT] = ACTIONS(341), - [anon_sym_EQ_TILDE] = ACTIONS(351), - [sym__special_character] = ACTIONS(31), - [anon_sym_LT_LT_DASH] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(353), - [anon_sym_SEMI] = ACTIONS(341), - [sym_raw_string] = ACTIONS(347), - [sym_file_descriptor] = ACTIONS(353), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_AMP_GT] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(351), - [ts_builtin_sym_end] = ACTIONS(353), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [anon_sym_GT_AMP] = ACTIONS(341), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_SEMI_SEMI] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(341), + [ts_builtin_sym_end] = ACTIONS(357), + [sym_comment] = ACTIONS(53), }, [37] = { - [anon_sym_RPAREN] = ACTIONS(359), - [sym_comment] = ACTIONS(41), - }, - [38] = { - [aux_sym_concatenation_repeat1] = STATE(559), - [anon_sym_AMP_GT_GT] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(361), - [anon_sym_GT_LPAREN] = ACTIONS(361), - [sym_number] = ACTIONS(363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [sym__concat] = ACTIONS(365), - [sym_word] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LT_AMP] = ACTIONS(361), - [anon_sym_GT_GT] = ACTIONS(361), - [sym__special_character] = ACTIONS(361), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(361), - [sym_variable_name] = ACTIONS(361), - [sym_file_descriptor] = ACTIONS(361), - [anon_sym_RPAREN] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(363), + [sym_expansion] = STATE(106), + [sym_string_expansion] = STATE(106), + [sym_concatenation] = STATE(108), + [sym_string] = STATE(106), + [aux_sym__literal_repeat1] = STATE(109), + [sym_command_substitution] = STATE(106), + [sym_process_substitution] = STATE(106), + [sym_simple_expansion] = STATE(106), + [sym_arithmetic_expansion] = STATE(106), + [aux_sym_command_repeat2] = STATE(108), + [anon_sym_AMP_GT_GT] = ACTIONS(359), [anon_sym_DQUOTE] = ACTIONS(361), - [anon_sym_GT_AMP] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_LT_LPAREN] = ACTIONS(361), - [sym_ansii_c_string] = ACTIONS(361), - }, - [39] = { - [aux_sym__literal_repeat1] = STATE(565), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_number] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [sym_word] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_GT] = ACTIONS(367), - [sym__special_character] = ACTIONS(371), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [sym_file_descriptor] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [anon_sym_LT_LPAREN] = ACTIONS(365), [sym_ansii_c_string] = ACTIONS(367), - }, - [40] = { - [anon_sym_AMP_GT_GT] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(361), - [anon_sym_GT_LPAREN] = ACTIONS(361), - [sym_number] = ACTIONS(363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), - [sym_word] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LT_AMP] = ACTIONS(361), - [anon_sym_GT_GT] = ACTIONS(361), - [sym__special_character] = ACTIONS(361), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(361), - [sym_variable_name] = ACTIONS(361), - [sym_file_descriptor] = ACTIONS(361), - [anon_sym_RPAREN] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(361), - [anon_sym_GT_AMP] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(361), - [anon_sym_LT_LPAREN] = ACTIONS(361), - [sym_ansii_c_string] = ACTIONS(361), - }, - [41] = { - [aux_sym_concatenation_repeat1] = STATE(644), - [anon_sym_AMP] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_number] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_LT_AMP] = ACTIONS(359), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_EQ_TILDE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LT_LT_DASH] = ACTIONS(359), + [anon_sym_GT_LPAREN] = ACTIONS(365), + [sym_number] = ACTIONS(367), + [anon_sym_LF] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(359), [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [sym__concat] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(373), - [sym_word] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [sym__special_character] = ACTIONS(373), - [anon_sym_LT_LT_DASH] = ACTIONS(373), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [sym_variable_name] = ACTIONS(377), - [sym_file_descriptor] = ACTIONS(377), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_LT_LT_LT] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [ts_builtin_sym_end] = ACTIONS(377), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [aux_sym__simple_variable_name_token1] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [sym_ansii_c_string] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_SEMI_SEMI] = ACTIONS(373), - [anon_sym_PIPE_AMP] = ACTIONS(373), + [sym_file_descriptor] = ACTIONS(371), + [sym_word] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(371), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [anon_sym_GT_AMP] = ACTIONS(359), + [sym__special_character] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(375), + [sym_raw_string] = ACTIONS(367), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_SEMI_SEMI] = ACTIONS(359), + [anon_sym_PIPE_AMP] = ACTIONS(359), }, - [42] = { - [aux_sym__literal_repeat1] = STATE(647), - [anon_sym_AMP] = ACTIONS(379), + [38] = { + [anon_sym_RPAREN] = ACTIONS(377), + [sym_comment] = ACTIONS(53), + }, + [39] = { + [aux_sym_concatenation_repeat1] = STATE(564), [anon_sym_AMP_GT_GT] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_BQUOTE] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_number] = ACTIONS(379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(379), - [sym_word] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [sym_ansii_c_string] = ACTIONS(379), + [sym__concat] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(381), [anon_sym_LT_AMP] = ACTIONS(379), [anon_sym_GT_GT] = ACTIONS(379), - [sym__special_character] = ACTIONS(381), - [anon_sym_LT_LT_DASH] = ACTIONS(379), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_number] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [sym_variable_name] = ACTIONS(379), + [sym_file_descriptor] = ACTIONS(379), + [sym_word] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_AMP_GT] = ACTIONS(381), + [sym__special_character] = ACTIONS(379), + [anon_sym_GT_AMP] = ACTIONS(379), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(379), [sym_raw_string] = ACTIONS(379), - [sym_variable_name] = ACTIONS(383), - [sym_file_descriptor] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_AMP_GT] = ACTIONS(379), + }, + [40] = { + [anon_sym_AMP_GT_GT] = ACTIONS(379), [anon_sym_DQUOTE] = ACTIONS(379), - [anon_sym_LT_LT_LT] = ACTIONS(379), - [anon_sym_GT_AMP] = ACTIONS(379), - [ts_builtin_sym_end] = ACTIONS(383), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(379), - [aux_sym__simple_variable_name_token1] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), [anon_sym_LT_LPAREN] = ACTIONS(379), [sym_ansii_c_string] = ACTIONS(379), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_SEMI_SEMI] = ACTIONS(379), - [anon_sym_PIPE_AMP] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_LT_AMP] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_number] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [sym_variable_name] = ACTIONS(379), + [sym_file_descriptor] = ACTIONS(379), + [sym_word] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_AMP_GT] = ACTIONS(381), + [sym__special_character] = ACTIONS(379), + [anon_sym_GT_AMP] = ACTIONS(379), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(379), + [sym_raw_string] = ACTIONS(379), }, - [43] = { - [sym_command_substitution] = STATE(41), - [aux_sym__literal_repeat1] = STATE(42), - [sym_string] = STATE(41), - [aux_sym_declaration_command_repeat1] = STATE(109), - [sym_process_substitution] = STATE(41), - [sym_simple_expansion] = STATE(41), - [sym_subscript] = STATE(2456), - [sym_string_expansion] = STATE(41), - [sym_variable_assignment] = STATE(109), - [sym_concatenation] = STATE(109), - [sym_expansion] = STATE(41), - [anon_sym_PIPE_AMP] = ACTIONS(385), + [41] = { + [aux_sym__literal_repeat1] = STATE(575), [anon_sym_AMP_GT_GT] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(133), - [anon_sym_GT_LPAREN] = ACTIONS(135), - [sym_number] = ACTIONS(137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [sym_word] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), + [anon_sym_LT_LPAREN] = ACTIONS(385), + [sym_ansii_c_string] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(387), [anon_sym_LT_AMP] = ACTIONS(385), [anon_sym_GT_GT] = ACTIONS(385), - [sym__special_character] = ACTIONS(141), - [anon_sym_LT_LT_DASH] = ACTIONS(385), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(387), - [anon_sym_SEMI] = ACTIONS(385), - [sym_raw_string] = ACTIONS(137), - [sym_variable_name] = ACTIONS(145), - [sym_file_descriptor] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_AMP_GT] = ACTIONS(385), - [ts_builtin_sym_end] = ACTIONS(387), - [anon_sym_LT_LT_LT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(387), + [anon_sym_GT_LPAREN] = ACTIONS(385), + [sym_number] = ACTIONS(387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), + [sym_variable_name] = ACTIONS(385), + [sym_file_descriptor] = ACTIONS(385), + [sym_word] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(387), + [sym__special_character] = ACTIONS(389), [anon_sym_GT_AMP] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [aux_sym__simple_variable_name_token1] = ACTIONS(389), - [anon_sym_LT_LPAREN] = ACTIONS(135), - [sym_ansii_c_string] = ACTIONS(137), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_SEMI_SEMI] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(385), + [sym_raw_string] = ACTIONS(385), }, - [44] = { - [aux_sym_concatenation_repeat1] = STATE(700), - [anon_sym_AMP] = ACTIONS(391), + [42] = { + [aux_sym_concatenation_repeat1] = STATE(647), [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(391), [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_BQUOTE] = ACTIONS(391), - [anon_sym_GT_LPAREN] = ACTIONS(391), - [sym_number] = ACTIONS(391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [sym_ansii_c_string] = ACTIONS(391), [anon_sym_PIPE_PIPE] = ACTIONS(391), [sym__concat] = ACTIONS(393), [anon_sym_PIPE] = ACTIONS(391), - [sym_word] = ACTIONS(391), + [aux_sym__simple_variable_name_token1] = ACTIONS(391), [anon_sym_LT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), [anon_sym_GT_GT] = ACTIONS(391), - [sym__special_character] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(391), [anon_sym_LT_LT_DASH] = ACTIONS(391), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_number] = ACTIONS(391), [anon_sym_LF] = ACTIONS(395), [anon_sym_SEMI] = ACTIONS(391), - [sym_raw_string] = ACTIONS(391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), + [sym_variable_name] = ACTIONS(395), [sym_file_descriptor] = ACTIONS(395), + [sym_word] = ACTIONS(391), [anon_sym_GT] = ACTIONS(391), [anon_sym_AMP_GT] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(391), + [sym__special_character] = ACTIONS(391), [anon_sym_LT_LT_LT] = ACTIONS(391), [anon_sym_GT_AMP] = ACTIONS(391), [ts_builtin_sym_end] = ACTIONS(395), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), - [aux_sym__simple_variable_name_token1] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(391), - [sym_ansii_c_string] = ACTIONS(391), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(391), + [sym_raw_string] = ACTIONS(391), [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(391), [anon_sym_SEMI_SEMI] = ACTIONS(391), [anon_sym_PIPE_AMP] = ACTIONS(391), }, - [45] = { - [aux_sym__literal_repeat1] = STATE(703), - [anon_sym_AMP] = ACTIONS(397), + [43] = { + [aux_sym__literal_repeat1] = STATE(658), [anon_sym_AMP_GT_GT] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(397), [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_GT_LPAREN] = ACTIONS(397), - [sym_number] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), + [anon_sym_LT_LPAREN] = ACTIONS(397), + [sym_ansii_c_string] = ACTIONS(397), [anon_sym_PIPE_PIPE] = ACTIONS(397), [anon_sym_PIPE] = ACTIONS(397), - [sym_word] = ACTIONS(397), + [aux_sym__simple_variable_name_token1] = ACTIONS(397), [anon_sym_LT] = ACTIONS(397), [anon_sym_LT_AMP] = ACTIONS(397), [anon_sym_GT_GT] = ACTIONS(397), - [sym__special_character] = ACTIONS(399), + [anon_sym_DOLLAR] = ACTIONS(397), [anon_sym_LT_LT_DASH] = ACTIONS(397), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(401), + [anon_sym_GT_LPAREN] = ACTIONS(397), + [sym_number] = ACTIONS(397), + [anon_sym_LF] = ACTIONS(399), [anon_sym_SEMI] = ACTIONS(397), - [sym_raw_string] = ACTIONS(397), - [sym_file_descriptor] = ACTIONS(401), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [sym_variable_name] = ACTIONS(399), + [sym_file_descriptor] = ACTIONS(399), + [sym_word] = ACTIONS(397), [anon_sym_GT] = ACTIONS(397), [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), + [sym__special_character] = ACTIONS(401), [anon_sym_LT_LT_LT] = ACTIONS(397), [anon_sym_GT_AMP] = ACTIONS(397), - [ts_builtin_sym_end] = ACTIONS(401), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), - [aux_sym__simple_variable_name_token1] = ACTIONS(397), - [anon_sym_LT_LPAREN] = ACTIONS(397), - [sym_ansii_c_string] = ACTIONS(397), + [ts_builtin_sym_end] = ACTIONS(399), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(397), + [sym_raw_string] = ACTIONS(397), [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), [anon_sym_SEMI_SEMI] = ACTIONS(397), [anon_sym_PIPE_AMP] = ACTIONS(397), }, - [46] = { - [sym_command_substitution] = STATE(44), - [aux_sym__literal_repeat1] = STATE(45), - [sym_string] = STATE(44), - [aux_sym_unset_command_repeat1] = STATE(110), - [sym_process_substitution] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_concatenation] = STATE(110), - [sym_expansion] = STATE(44), - [anon_sym_PIPE_AMP] = ACTIONS(403), + [44] = { + [sym_expansion] = STATE(42), + [sym_concatenation] = STATE(111), + [aux_sym_declaration_command_repeat1] = STATE(111), + [sym_string] = STATE(42), + [sym_command_substitution] = STATE(42), + [sym_process_substitution] = STATE(42), + [aux_sym__literal_repeat1] = STATE(43), + [sym_variable_assignment] = STATE(111), + [sym_subscript] = STATE(2574), + [sym_simple_expansion] = STATE(42), + [sym_arithmetic_expansion] = STATE(42), + [sym_string_expansion] = STATE(42), [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(139), [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_GT_LPAREN] = ACTIONS(159), - [sym_number] = ACTIONS(161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), + [anon_sym_LT_LPAREN] = ACTIONS(143), + [sym_ansii_c_string] = ACTIONS(145), [anon_sym_PIPE_PIPE] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), - [sym_word] = ACTIONS(161), + [aux_sym__simple_variable_name_token1] = ACTIONS(405), [anon_sym_LT] = ACTIONS(403), [anon_sym_LT_AMP] = ACTIONS(403), [anon_sym_GT_GT] = ACTIONS(403), - [sym__special_character] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(149), [anon_sym_LT_LT_DASH] = ACTIONS(403), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(405), + [anon_sym_GT_LPAREN] = ACTIONS(143), + [sym_number] = ACTIONS(145), + [anon_sym_LF] = ACTIONS(407), [anon_sym_SEMI] = ACTIONS(403), - [sym_raw_string] = ACTIONS(161), - [sym_file_descriptor] = ACTIONS(405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), + [sym_variable_name] = ACTIONS(155), + [sym_file_descriptor] = ACTIONS(407), + [sym_word] = ACTIONS(145), [anon_sym_GT] = ACTIONS(403), [anon_sym_AMP_GT] = ACTIONS(403), - [ts_builtin_sym_end] = ACTIONS(405), + [ts_builtin_sym_end] = ACTIONS(407), [anon_sym_LT_LT_LT] = ACTIONS(403), [anon_sym_GT_AMP] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [aux_sym__simple_variable_name_token1] = ACTIONS(407), - [anon_sym_LT_LPAREN] = ACTIONS(159), - [sym_ansii_c_string] = ACTIONS(161), + [sym__special_character] = ACTIONS(157), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(159), + [sym_raw_string] = ACTIONS(145), [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_SEMI_SEMI] = ACTIONS(403), [anon_sym_AMP] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_PIPE_AMP] = ACTIONS(403), }, - [47] = { - [anon_sym_AMP] = ACTIONS(409), + [45] = { + [aux_sym_concatenation_repeat1] = STATE(704), [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(409), [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), [anon_sym_PIPE_PIPE] = ACTIONS(409), [sym__concat] = ACTIONS(411), [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(409), [anon_sym_LT] = ACTIONS(409), [anon_sym_LT_AMP] = ACTIONS(409), [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_EQ_TILDE] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), [anon_sym_LT_LT_DASH] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_LF] = ACTIONS(413), [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(413), + [sym_word] = ACTIONS(409), [anon_sym_GT] = ACTIONS(409), [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_EQ_EQ] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), [anon_sym_LT_LT_LT] = ACTIONS(409), [anon_sym_GT_AMP] = ACTIONS(409), - [ts_builtin_sym_end] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), + [ts_builtin_sym_end] = ACTIONS(413), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(409), [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, + [46] = { + [aux_sym__literal_repeat1] = STATE(711), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), + [anon_sym_LT_LPAREN] = ACTIONS(415), + [sym_ansii_c_string] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(415), + [aux_sym__simple_variable_name_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_GT_LPAREN] = ACTIONS(415), + [sym_number] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(417), + [sym_word] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(415), + [sym__special_character] = ACTIONS(419), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [ts_builtin_sym_end] = ACTIONS(417), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), + }, + [47] = { + [sym_expansion] = STATE(45), + [sym_concatenation] = STATE(112), + [sym_string] = STATE(45), + [sym_command_substitution] = STATE(45), + [sym_process_substitution] = STATE(45), + [aux_sym__literal_repeat1] = STATE(46), + [aux_sym_unset_command_repeat1] = STATE(112), + [sym_simple_expansion] = STATE(45), + [sym_arithmetic_expansion] = STATE(45), + [sym_string_expansion] = STATE(45), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(163), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), + [anon_sym_LT_LPAREN] = ACTIONS(169), + [sym_ansii_c_string] = ACTIONS(171), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [aux_sym__simple_variable_name_token1] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_DOLLAR] = ACTIONS(175), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [anon_sym_GT_LPAREN] = ACTIONS(169), + [sym_number] = ACTIONS(171), + [anon_sym_LF] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(179), + [sym_file_descriptor] = ACTIONS(425), + [sym_word] = ACTIONS(171), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [ts_builtin_sym_end] = ACTIONS(425), + [anon_sym_LT_LT_LT] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [sym__special_character] = ACTIONS(181), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(183), + [sym_raw_string] = ACTIONS(171), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + }, [48] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_EQ_TILDE] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [ts_builtin_sym_end] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [sym__concat] = ACTIONS(427), + [sym__string_content] = ACTIONS(429), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(429), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(429), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), + [anon_sym_DOLLAR] = ACTIONS(429), }, [49] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_EQ_TILDE] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [ts_builtin_sym_end] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [50] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_EQ_TILDE] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(439), + [anon_sym_EQ_EQ] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [ts_builtin_sym_end] = ACTIONS(441), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [51] = { - [anon_sym_RPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(437), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(443), }, [52] = { - [sym_command_substitution] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_string] = STATE(113), - [sym_process_substitution] = STATE(113), - [sym_expansion] = STATE(113), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(51), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(425), - [sym_word] = ACTIONS(427), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [sym_ansii_c_string] = ACTIONS(425), - [anon_sym_BQUOTE] = ACTIONS(15), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [sym__special_character] = ACTIONS(425), - [sym_number] = ACTIONS(427), + [sym_unary_expression] = STATE(118), + [sym_postfix_expression] = STATE(118), + [sym_concatenation] = STATE(118), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(118), + [sym_binary_expression] = STATE(118), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(118), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, [53] = { - [aux_sym_concatenation_repeat1] = STATE(115), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(431), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_EQ_TILDE] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_EQ_EQ] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [ts_builtin_sym_end] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [aux_sym_concatenation_repeat1] = STATE(744), + [anon_sym_PLUS_EQ] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_RPAREN_RPAREN] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_RBRACK_RBRACK] = ACTIONS(445), + [sym__concat] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT_GT] = ACTIONS(445), + [anon_sym_EQ_TILDE] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_DASH_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_RPAREN] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(445), + [sym_test_operator] = ACTIONS(445), }, [54] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(120), - [sym_concatenation] = STATE(120), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(437), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(435), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(455), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(435), - [sym__special_character] = ACTIONS(459), + [sym_unary_expression] = STATE(119), + [sym_postfix_expression] = STATE(119), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(119), + [sym_binary_expression] = STATE(119), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(119), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, [55] = { - [sym_subscript] = STATE(121), - [anon_sym__] = ACTIONS(461), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(463), - [aux_sym__simple_variable_name_token1] = ACTIONS(461), - [sym_variable_name] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(467), - [anon_sym_AT] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), + [aux_sym__literal_repeat1] = STATE(749), + [anon_sym_PLUS_EQ] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_RPAREN_RPAREN] = ACTIONS(451), + [anon_sym_PIPE_PIPE] = ACTIONS(451), + [anon_sym_RBRACK_RBRACK] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_EQ_TILDE] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(451), + [anon_sym_BANG_EQ] = ACTIONS(451), + [anon_sym_RPAREN] = ACTIONS(453), + [anon_sym_GT] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(451), + [sym__special_character] = ACTIONS(455), + [anon_sym_PLUS] = ACTIONS(453), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(451), + [sym_test_operator] = ACTIONS(451), }, [56] = { - [anon_sym_EQ] = ACTIONS(469), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [57] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(127), - [sym_concatenation] = STATE(127), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(475), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(473), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(479), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(473), - [sym__special_character] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(467), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [58] = { - [sym_compound_statement] = STATE(129), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(27), - [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(467), + [sym_comment] = ACTIONS(53), }, [59] = { - [anon_sym_RPAREN] = ACTIONS(483), - [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(469), + [sym_comment] = ACTIONS(53), }, [60] = { - [anon_sym_LT_LT_DASH] = ACTIONS(485), - [anon_sym_AMP] = ACTIONS(485), - [anon_sym_AMP_GT_GT] = ACTIONS(485), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_LT_LT] = ACTIONS(485), - [sym_file_descriptor] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(485), - [anon_sym_AMP_GT] = ACTIONS(485), - [anon_sym_PIPE_PIPE] = ACTIONS(485), - [ts_builtin_sym_end] = ACTIONS(487), - [anon_sym_LT_LT_LT] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(485), - [anon_sym_GT_AMP] = ACTIONS(485), - [anon_sym_LT] = ACTIONS(485), - [anon_sym_LT_AMP] = ACTIONS(485), - [anon_sym_GT_GT] = ACTIONS(485), - [anon_sym_AMP_AMP] = ACTIONS(485), - [anon_sym_SEMI_SEMI] = ACTIONS(485), - [anon_sym_PIPE_AMP] = ACTIONS(485), + [sym_expansion] = STATE(126), + [sym_string_expansion] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_string] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [sym_arithmetic_expansion] = STATE(126), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(19), + [sym_number] = ACTIONS(471), + [sym__special_character] = ACTIONS(473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), + [anon_sym_BQUOTE] = ACTIONS(55), + [sym_raw_string] = ACTIONS(473), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [sym_word] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(19), + [anon_sym_DOLLAR] = ACTIONS(29), + [sym_ansii_c_string] = ACTIONS(473), }, [61] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(497), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(497), + [aux_sym_concatenation_repeat1] = STATE(128), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_EQ_TILDE] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [anon_sym_EQ_EQ] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [ts_builtin_sym_end] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [62] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(491), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(497), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(497), + [sym_compound_statement] = STATE(130), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(53), }, [63] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_negated_command] = STATE(61), - [sym_test_command] = STATE(61), - [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(422), - [sym_redirected_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_compound_statement] = STATE(61), - [sym_subshell] = STATE(61), - [sym_declaration_command] = STATE(61), - [sym_unset_command] = STATE(61), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_pipeline] = STATE(61), - [sym_list] = STATE(61), - [sym_command] = STATE(61), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_LT_LT_DASH] = ACTIONS(483), + [anon_sym_AMP_GT_GT] = ACTIONS(483), + [anon_sym_LF] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(483), + [sym_file_descriptor] = ACTIONS(485), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_AMP_GT] = ACTIONS(483), + [anon_sym_PIPE_PIPE] = ACTIONS(483), + [ts_builtin_sym_end] = ACTIONS(485), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_GT_AMP] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_LT_AMP] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(483), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(483), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_SEMI_SEMI] = ACTIONS(483), + [anon_sym_PIPE_AMP] = ACTIONS(483), + }, + [64] = { + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_PIPE_AMP] = ACTIONS(487), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LF] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(493), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_SEMI_SEMI] = ACTIONS(493), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + }, + [65] = { + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(493), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_SEMI_SEMI] = ACTIONS(493), + [anon_sym_PIPE_AMP] = ACTIONS(487), + }, + [66] = { + [sym_if_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_negated_command] = STATE(64), + [sym_test_command] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_compound_statement] = STATE(64), + [sym_subshell] = STATE(64), + [sym_declaration_command] = STATE(64), + [sym_unset_command] = STATE(64), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_pipeline] = STATE(64), + [sym_list] = STATE(64), + [sym_command] = STATE(64), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_RBRACE] = ACTIONS(503), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [64] = { - [anon_sym_then] = ACTIONS(507), - [sym_comment] = ACTIONS(41), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [65] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(511), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(511), + [67] = { + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_EQ_TILDE] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [sym_file_descriptor] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_AMP_GT] = ACTIONS(505), + [anon_sym_EQ_EQ] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [ts_builtin_sym_end] = ACTIONS(507), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, - [66] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(511), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(491), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(511), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(511), - [anon_sym_PIPE_AMP] = ACTIONS(491), + [68] = { + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_EQ_TILDE] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [sym_file_descriptor] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [ts_builtin_sym_end] = ACTIONS(511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, - [67] = { - [aux_sym_concatenation_repeat1] = STATE(739), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [sym_comment] = ACTIONS(3), + [69] = { + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), [sym__concat] = ACTIONS(515), - [anon_sym_LF] = ACTIONS(517), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_in] = ACTIONS(519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_AMP_GT] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [ts_builtin_sym_end] = ACTIONS(515), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), [anon_sym_AMP] = ACTIONS(513), - }, - [68] = { - [aux_sym__literal_repeat1] = STATE(742), - [anon_sym_in] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(523), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(525), - [sym__special_character] = ACTIONS(527), - [anon_sym_SEMI_SEMI] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(523), - }, - [69] = { [anon_sym_SEMI_SEMI] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(517), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_in] = ACTIONS(519), - [anon_sym_AMP] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [70] = { - [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(140), - [sym_postfix_expression] = STATE(140), - [sym_string] = STATE(71), - [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(140), - [sym_binary_expression] = STATE(140), - [sym_concatenation] = STATE(140), - [sym_expansion] = STATE(71), - [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(140), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [anon_sym_then] = ACTIONS(517), + [sym_comment] = ACTIONS(53), }, [71] = { - [aux_sym_concatenation_repeat1] = STATE(776), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_PLUS_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_RPAREN_RPAREN] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_RBRACK_RBRACK] = ACTIONS(529), - [sym__concat] = ACTIONS(533), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_EQ_TILDE] = ACTIONS(529), - [anon_sym_DASH_DASH] = ACTIONS(529), - [anon_sym_LT_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(531), - [sym_test_operator] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_GT_EQ] = ACTIONS(529), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_AMP_AMP] = ACTIONS(529), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_LF] = ACTIONS(519), + [anon_sym_SEMI] = ACTIONS(521), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(521), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(521), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [72] = { - [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(141), - [sym_postfix_expression] = STATE(141), - [sym_string] = STATE(71), - [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(141), - [sym_binary_expression] = STATE(141), - [sym_concatenation] = STATE(141), - [sym_expansion] = STATE(71), - [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(141), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(521), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(521), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(521), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [73] = { - [aux_sym__literal_repeat1] = STATE(779), - [anon_sym_PLUS_EQ] = ACTIONS(535), - [anon_sym_PLUS_PLUS] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_RPAREN_RPAREN] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_RBRACK_RBRACK] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_EQ_TILDE] = ACTIONS(535), - [anon_sym_DASH_DASH] = ACTIONS(535), - [anon_sym_LT_EQ] = ACTIONS(535), - [sym__special_character] = ACTIONS(539), - [anon_sym_DASH_EQ] = ACTIONS(535), - [anon_sym_BANG_EQ] = ACTIONS(535), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(537), - [sym_test_operator] = ACTIONS(535), - [anon_sym_GT] = ACTIONS(537), - [anon_sym_EQ] = ACTIONS(537), - [anon_sym_EQ_EQ] = ACTIONS(535), - [anon_sym_GT_EQ] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(535), + [aux_sym_concatenation_repeat1] = STATE(782), + [anon_sym_SEMI_SEMI] = ACTIONS(523), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(523), + [anon_sym_in] = ACTIONS(529), }, [74] = { - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [sym_test_operator] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_RPAREN_RPAREN] = ACTIONS(549), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_SEMI_SEMI] = ACTIONS(523), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(523), + [anon_sym_in] = ACTIONS(529), }, [75] = { - [anon_sym_LT_LT_DASH] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(551), - [anon_sym_AMP_GT_GT] = ACTIONS(551), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(553), - [anon_sym_SEMI] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [sym_file_descriptor] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_AMP_GT] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [ts_builtin_sym_end] = ACTIONS(553), - [anon_sym_LT_LT_LT] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_GT_AMP] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_AMP] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_SEMI_SEMI] = ACTIONS(551), - [anon_sym_PIPE_AMP] = ACTIONS(551), + [aux_sym__literal_repeat1] = STATE(787), + [anon_sym_SEMI_SEMI] = ACTIONS(531), + [sym_comment] = ACTIONS(3), + [sym__special_character] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(531), + [anon_sym_LF] = ACTIONS(535), + [anon_sym_SEMI] = ACTIONS(531), + [anon_sym_in] = ACTIONS(537), }, [76] = { - [sym_command_substitution] = STATE(148), - [aux_sym__literal_repeat1] = STATE(149), - [sym_string] = STATE(148), - [sym_array] = STATE(147), - [sym_process_substitution] = STATE(148), - [sym_simple_expansion] = STATE(148), - [sym_string_expansion] = STATE(148), - [sym_concatenation] = STATE(147), - [sym_expansion] = STATE(148), - [anon_sym_LPAREN] = ACTIONS(555), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(559), - [anon_sym_BQUOTE] = ACTIONS(561), - [anon_sym_GT_LPAREN] = ACTIONS(563), - [sym_number] = ACTIONS(565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [sym_word] = ACTIONS(565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), - [anon_sym_LT_LPAREN] = ACTIONS(563), - [sym_ansii_c_string] = ACTIONS(557), - [sym__special_character] = ACTIONS(573), - [sym__empty_value] = ACTIONS(575), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [77] = { - [sym_command_substitution] = STATE(150), - [aux_sym__literal_repeat1] = STATE(151), - [sym_string] = STATE(150), - [sym_process_substitution] = STATE(150), - [sym_simple_expansion] = STATE(150), - [sym_string_expansion] = STATE(150), - [sym_concatenation] = STATE(152), - [sym_expansion] = STATE(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(577), - [sym_word] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(577), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(293), - [sym__special_character] = ACTIONS(581), - [sym_number] = ACTIONS(579), - [anon_sym_GT_LPAREN] = ACTIONS(295), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(145), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(145), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(541), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(541), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(541), + [anon_sym_POUND] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(541), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(541), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(541), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(567), }, [78] = { - [sym_command_substitution] = STATE(153), - [aux_sym__literal_repeat1] = STATE(154), - [sym_string] = STATE(153), - [sym_process_substitution] = STATE(153), - [sym_simple_expansion] = STATE(153), - [sym_string_expansion] = STATE(153), - [sym_concatenation] = STATE(155), - [sym_expansion] = STATE(153), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(583), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_BQUOTE] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(117), - [sym_number] = ACTIONS(585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_word] = ACTIONS(585), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(117), - [sym_ansii_c_string] = ACTIONS(583), - [sym__special_character] = ACTIONS(127), + [sym_subscript] = STATE(146), + [anon_sym_0] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(571), + [aux_sym__simple_variable_name_token1] = ACTIONS(569), + [anon_sym__] = ACTIONS(569), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_AT] = ACTIONS(571), }, [79] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(577), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), }, [80] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_EQ_TILDE] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [ts_builtin_sym_end] = ACTIONS(597), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(152), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(152), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(581), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(581), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(581), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(567), }, [81] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), - [anon_sym_DQUOTE] = ACTIONS(599), - [sym__concat] = ACTIONS(601), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(599), - [sym__string_content] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(599), - [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [ts_builtin_sym_end] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [82] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(603), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(589), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(154), + [sym_concatenation] = STATE(155), + [sym_string] = STATE(154), + [sym_command_substitution] = STATE(154), + [sym_process_substitution] = STATE(154), + [aux_sym__literal_repeat1] = STATE(156), + [sym_array] = STATE(155), + [sym_simple_expansion] = STATE(154), + [sym_arithmetic_expansion] = STATE(154), + [sym_string_expansion] = STATE(154), + [anon_sym_LPAREN] = ACTIONS(593), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(597), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(603), + [sym_word] = ACTIONS(597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(605), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(607), + [sym__special_character] = ACTIONS(609), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(611), + [sym_raw_string] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(613), + [sym__empty_value] = ACTIONS(615), }, [83] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_expansion] = STATE(157), + [sym_concatenation] = STATE(158), + [sym_string] = STATE(157), + [sym_command_substitution] = STATE(157), + [sym_process_substitution] = STATE(157), + [aux_sym__literal_repeat1] = STATE(159), + [sym_simple_expansion] = STATE(157), + [sym_arithmetic_expansion] = STATE(157), + [sym_string_expansion] = STATE(157), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(617), + [sym__special_character] = ACTIONS(619), + [sym_number] = ACTIONS(621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), + [sym_raw_string] = ACTIONS(629), + [sym_word] = ACTIONS(621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [anon_sym_BQUOTE] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_ansii_c_string] = ACTIONS(629), + [anon_sym_LT_LPAREN] = ACTIONS(617), }, [84] = { - [anon_sym_RPAREN] = ACTIONS(605), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(160), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(160), + [sym_command_substitution] = STATE(160), + [sym_process_substitution] = STATE(160), + [aux_sym__literal_repeat1] = STATE(162), + [sym_simple_expansion] = STATE(160), + [sym_arithmetic_expansion] = STATE(160), + [sym_string_expansion] = STATE(160), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_number] = ACTIONS(637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(123), + [sym_word] = ACTIONS(637), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [sym_ansii_c_string] = ACTIONS(639), + [sym__special_character] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(131), + [sym_raw_string] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(133), }, [85] = { - [aux_sym__literal_repeat1] = STATE(562), - [sym_unary_expression] = STATE(164), - [sym_postfix_expression] = STATE(164), - [sym_string] = STATE(560), - [sym_process_substitution] = STATE(560), - [sym_variable_assignment] = STATE(163), - [sym_subscript] = STATE(2485), - [sym__expression] = STATE(164), - [sym_binary_expression] = STATE(164), - [sym_concatenation] = STATE(164), - [sym_expansion] = STATE(560), - [sym_command_substitution] = STATE(560), - [sym_parenthesized_expression] = STATE(164), - [sym_simple_expansion] = STATE(560), - [sym_string_expansion] = STATE(560), - [anon_sym_LPAREN] = ACTIONS(607), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(611), - [sym_variable_name] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_test_operator] = ACTIONS(613), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_GT_LPAREN] = ACTIONS(621), - [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(625), - [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), - [anon_sym_LT_LPAREN] = ACTIONS(621), - [sym_ansii_c_string] = ACTIONS(609), - [sym__special_character] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(641), + [sym_comment] = ACTIONS(53), }, [86] = { - [anon_sym_AMP] = ACTIONS(631), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_in] = ACTIONS(635), - [anon_sym_SEMI_SEMI] = ACTIONS(631), + [anon_sym_BQUOTE] = ACTIONS(643), + [sym_comment] = ACTIONS(53), }, [87] = { - [sym_do_group] = STATE(168), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_in] = ACTIONS(649), + [anon_sym_SEMI_SEMI] = ACTIONS(645), }, [88] = { - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_PLUS_EQ] = ACTIONS(639), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(643), - [sym_test_operator] = ACTIONS(639), - [anon_sym_EQ_EQ] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_EQ_TILDE] = ACTIONS(645), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_DASH_EQ] = ACTIONS(639), + [sym_unary_expression] = STATE(169), + [sym_postfix_expression] = STATE(169), + [sym_concatenation] = STATE(169), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [sym_variable_assignment] = STATE(168), + [sym_subscript] = STATE(2605), + [sym__expression] = STATE(169), + [sym_binary_expression] = STATE(169), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [sym_expansion] = STATE(561), + [aux_sym__literal_repeat1] = STATE(563), + [sym_parenthesized_expression] = STATE(169), + [sym_simple_expansion] = STATE(561), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_GT_LPAREN] = ACTIONS(653), + [sym_number] = ACTIONS(655), + [anon_sym_LF] = ACTIONS(657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(663), + [sym_variable_name] = ACTIONS(665), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), + [sym_word] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(657), + [anon_sym_LT_LPAREN] = ACTIONS(653), + [sym_ansii_c_string] = ACTIONS(655), + [sym__special_character] = ACTIONS(671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(673), + [sym_raw_string] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(657), + [sym_test_operator] = ACTIONS(661), }, [89] = { - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [sym_test_operator] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_RBRACK_RBRACK] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), + [sym_do_group] = STATE(171), + [sym_comment] = ACTIONS(53), + [anon_sym_do] = ACTIONS(677), }, [90] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [ts_builtin_sym_end] = ACTIONS(213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(679), + [anon_sym_PLUS_EQ] = ACTIONS(679), + [anon_sym_DASH_EQ] = ACTIONS(679), + [anon_sym_PLUS_PLUS] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(539), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_GT_EQ] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(683), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_EQ_TILDE] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_LT_EQ] = ACTIONS(679), + [sym_test_operator] = ACTIONS(679), }, [91] = { - [aux_sym__literal_repeat1] = STATE(91), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_EQ_TILDE] = ACTIONS(647), - [sym__special_character] = ACTIONS(649), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [ts_builtin_sym_end] = ACTIONS(652), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_RBRACK_RBRACK] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [92] = { - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [ts_builtin_sym_end] = ACTIONS(658), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), - }, - [93] = { - [aux_sym__literal_repeat1] = STATE(27), - [sym_if_statement] = STATE(169), - [sym_function_definition] = STATE(169), - [sym_negated_command] = STATE(169), - [sym_test_command] = STATE(169), - [sym_variable_assignment] = STATE(170), + [sym_if_statement] = STATE(172), + [sym_function_definition] = STATE(172), + [sym_negated_command] = STATE(172), + [sym_test_command] = STATE(172), + [sym_variable_assignment] = STATE(173), [sym_subscript] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_expansion] = STATE(9), - [sym_command_substitution] = STATE(9), - [sym_redirected_statement] = STATE(169), - [sym_for_statement] = STATE(169), - [sym_compound_statement] = STATE(169), - [sym_subshell] = STATE(169), - [sym_declaration_command] = STATE(169), - [sym_unset_command] = STATE(169), - [sym_file_redirect] = STATE(34), - [sym_string] = STATE(9), - [sym_process_substitution] = STATE(9), - [aux_sym_command_repeat1] = STATE(34), - [sym_c_style_for_statement] = STATE(169), - [sym_while_statement] = STATE(169), - [sym_case_statement] = STATE(169), - [sym_pipeline] = STATE(169), - [sym_list] = STATE(169), - [sym_command] = STATE(169), - [sym_command_name] = STATE(36), - [sym_simple_expansion] = STATE(9), - [sym_string_expansion] = STATE(9), + [sym_arithmetic_expansion] = STATE(10), + [sym_string_expansion] = STATE(10), + [sym_expansion] = STATE(10), + [aux_sym__literal_repeat1] = STATE(32), + [sym_redirected_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_compound_statement] = STATE(172), + [sym_subshell] = STATE(172), + [sym_declaration_command] = STATE(172), + [sym_unset_command] = STATE(172), + [sym_file_redirect] = STATE(35), + [sym_concatenation] = STATE(34), + [sym_string] = STATE(10), + [sym_command_substitution] = STATE(10), + [sym_process_substitution] = STATE(10), + [aux_sym_command_repeat1] = STATE(35), + [sym_c_style_for_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_pipeline] = STATE(172), + [sym_list] = STATE(172), + [sym_command] = STATE(172), + [sym_command_name] = STATE(37), + [sym_simple_expansion] = STATE(10), [anon_sym_LPAREN] = ACTIONS(5), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(9), [anon_sym_typeset] = ACTIONS(9), [anon_sym_unsetenv] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_BQUOTE] = ACTIONS(15), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [sym_number] = ACTIONS(19), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [anon_sym_LT_LPAREN] = ACTIONS(19), + [sym_ansii_c_string] = ACTIONS(21), [anon_sym_function] = ACTIONS(23), - [sym_word] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(31), - [anon_sym_if] = ACTIONS(33), - [anon_sym_case] = ACTIONS(35), - [anon_sym_LPAREN_LPAREN] = ACTIONS(37), - [sym_raw_string] = ACTIONS(39), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_case] = ACTIONS(33), + [anon_sym_LPAREN_LPAREN] = ACTIONS(35), + [sym_number] = ACTIONS(37), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), + [anon_sym_BANG] = ACTIONS(41), [anon_sym_declare] = ACTIONS(9), - [sym_variable_name] = ACTIONS(45), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), + [sym_variable_name] = ACTIONS(43), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(19), + [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(9), [anon_sym_unset] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(51), + [sym__special_character] = ACTIONS(51), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [anon_sym_for] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [sym_ansii_c_string] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(61), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [sym_raw_string] = ACTIONS(21), + [anon_sym_LBRACK_LBRACK] = ACTIONS(63), + }, + [93] = { + [sym_heredoc_body] = STATE(176), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(687), + [ts_builtin_sym_end] = ACTIONS(695), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [94] = { - [sym_heredoc_body] = STATE(173), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(660), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [sym__heredoc_body_beginning] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [ts_builtin_sym_end] = ACTIONS(658), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [anon_sym_unset] = ACTIONS(687), + [ts_builtin_sym_end] = ACTIONS(695), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [95] = { - [sym_heredoc_start] = ACTIONS(664), - [sym_comment] = ACTIONS(41), + [sym_heredoc_start] = ACTIONS(697), + [sym_comment] = ACTIONS(53), }, [96] = { - [aux_sym__literal_repeat1] = STATE(27), - [sym_if_statement] = STATE(175), - [sym_function_definition] = STATE(175), - [sym_negated_command] = STATE(175), - [sym_test_command] = STATE(175), - [sym_variable_assignment] = STATE(176), + [sym_if_statement] = STATE(178), + [sym_function_definition] = STATE(178), + [sym_negated_command] = STATE(178), + [sym_test_command] = STATE(178), + [sym_variable_assignment] = STATE(179), [sym_subscript] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_expansion] = STATE(9), - [sym_command_substitution] = STATE(9), - [sym_redirected_statement] = STATE(175), - [sym_for_statement] = STATE(175), - [sym_compound_statement] = STATE(175), - [sym_subshell] = STATE(175), - [sym_declaration_command] = STATE(175), - [sym_unset_command] = STATE(175), - [sym_file_redirect] = STATE(34), - [sym_string] = STATE(9), - [sym_process_substitution] = STATE(9), - [aux_sym_command_repeat1] = STATE(34), - [sym_c_style_for_statement] = STATE(175), - [sym_while_statement] = STATE(175), - [sym_case_statement] = STATE(175), - [sym_pipeline] = STATE(175), - [sym_list] = STATE(175), - [sym_command] = STATE(175), - [sym_command_name] = STATE(36), - [sym_simple_expansion] = STATE(9), - [sym_string_expansion] = STATE(9), + [sym_arithmetic_expansion] = STATE(10), + [sym_string_expansion] = STATE(10), + [sym_expansion] = STATE(10), + [aux_sym__literal_repeat1] = STATE(32), + [sym_redirected_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_compound_statement] = STATE(178), + [sym_subshell] = STATE(178), + [sym_declaration_command] = STATE(178), + [sym_unset_command] = STATE(178), + [sym_file_redirect] = STATE(35), + [sym_concatenation] = STATE(34), + [sym_string] = STATE(10), + [sym_command_substitution] = STATE(10), + [sym_process_substitution] = STATE(10), + [aux_sym_command_repeat1] = STATE(35), + [sym_c_style_for_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_pipeline] = STATE(178), + [sym_list] = STATE(178), + [sym_command] = STATE(178), + [sym_command_name] = STATE(37), + [sym_simple_expansion] = STATE(10), [anon_sym_LPAREN] = ACTIONS(5), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(9), [anon_sym_typeset] = ACTIONS(9), [anon_sym_unsetenv] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_BQUOTE] = ACTIONS(15), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [sym_number] = ACTIONS(19), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [anon_sym_LT_LPAREN] = ACTIONS(19), + [sym_ansii_c_string] = ACTIONS(21), [anon_sym_function] = ACTIONS(23), - [sym_word] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(31), - [anon_sym_if] = ACTIONS(33), - [anon_sym_case] = ACTIONS(35), - [anon_sym_LPAREN_LPAREN] = ACTIONS(37), - [sym_raw_string] = ACTIONS(39), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_case] = ACTIONS(33), + [anon_sym_LPAREN_LPAREN] = ACTIONS(35), + [sym_number] = ACTIONS(37), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), + [anon_sym_BANG] = ACTIONS(41), [anon_sym_declare] = ACTIONS(9), - [sym_variable_name] = ACTIONS(45), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), + [sym_variable_name] = ACTIONS(43), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(47), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(19), + [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(9), [anon_sym_unset] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(51), + [sym__special_character] = ACTIONS(51), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [anon_sym_for] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [sym_ansii_c_string] = ACTIONS(39), - [anon_sym_LBRACK_LBRACK] = ACTIONS(61), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [sym_raw_string] = ACTIONS(21), + [anon_sym_LBRACK_LBRACK] = ACTIONS(63), }, [97] = { - [sym_command_substitution] = STATE(177), - [aux_sym__literal_repeat1] = STATE(178), - [sym_string] = STATE(177), - [sym_process_substitution] = STATE(177), - [sym_simple_expansion] = STATE(177), - [sym_string_expansion] = STATE(177), - [sym_concatenation] = STATE(179), - [sym_expansion] = STATE(177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(668), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(670), - [sym_word] = ACTIONS(672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(674), - [anon_sym_DOLLAR] = ACTIONS(676), - [sym_ansii_c_string] = ACTIONS(670), - [anon_sym_LT_LPAREN] = ACTIONS(678), - [anon_sym_BQUOTE] = ACTIONS(680), - [sym__special_character] = ACTIONS(682), - [sym_number] = ACTIONS(672), - [anon_sym_GT_LPAREN] = ACTIONS(678), + [sym_expansion] = STATE(180), + [sym_concatenation] = STATE(181), + [sym_string] = STATE(180), + [sym_command_substitution] = STATE(180), + [sym_process_substitution] = STATE(180), + [aux_sym__literal_repeat1] = STATE(182), + [sym_simple_expansion] = STATE(180), + [sym_arithmetic_expansion] = STATE(180), + [sym_string_expansion] = STATE(180), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym__special_character] = ACTIONS(701), + [sym_number] = ACTIONS(703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [sym_raw_string] = ACTIONS(711), + [sym_word] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_ansii_c_string] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(699), }, [98] = { - [sym_heredoc_redirect] = STATE(180), - [aux_sym_redirected_statement_repeat1] = STATE(180), - [sym_herestring_redirect] = STATE(180), - [sym_file_redirect] = STATE(180), - [anon_sym_LT_LT_DASH] = ACTIONS(321), - [anon_sym_AMP] = ACTIONS(684), - [anon_sym_AMP_GT_GT] = ACTIONS(315), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(686), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LT_LT] = ACTIONS(321), - [sym_file_descriptor] = ACTIONS(319), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_AMP_GT] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(684), - [ts_builtin_sym_end] = ACTIONS(686), - [anon_sym_LT_LT_LT] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(684), - [anon_sym_GT_AMP] = ACTIONS(315), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_LT_AMP] = ACTIONS(315), - [anon_sym_GT_GT] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(684), - [anon_sym_SEMI_SEMI] = ACTIONS(684), - [anon_sym_PIPE_AMP] = ACTIONS(684), + [sym_heredoc_redirect] = STATE(183), + [sym_file_redirect] = STATE(183), + [sym_herestring_redirect] = STATE(183), + [aux_sym_redirected_statement_repeat1] = STATE(183), + [anon_sym_LT_LT_DASH] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(327), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LT_LT] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(331), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_AMP_GT] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [ts_builtin_sym_end] = ACTIONS(719), + [anon_sym_LT_LT_LT] = ACTIONS(339), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(327), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_LT_AMP] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(327), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), }, [99] = { [sym_heredoc_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_LT_LT_DASH] = ACTIONS(321), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(315), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(688), - [anon_sym_SEMI] = ACTIONS(690), - [sym_file_descriptor] = ACTIONS(319), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_AMP_GT] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(323), - [ts_builtin_sym_end] = ACTIONS(658), - [anon_sym_LT_LT_LT] = ACTIONS(327), - [anon_sym_GT_AMP] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_LT_AMP] = ACTIONS(315), - [anon_sym_GT_GT] = ACTIONS(315), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_SEMI_SEMI] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), + [sym_herestring_redirect] = STATE(98), + [aux_sym_redirected_statement_repeat1] = STATE(98), + [anon_sym_PIPE_AMP] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(327), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(725), + [sym_file_descriptor] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_AMP_GT] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [ts_builtin_sym_end] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_LT_AMP] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(327), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_LT_LT_DASH] = ACTIONS(333), }, [100] = { [sym_heredoc_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_PIPE_AMP] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(321), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(329), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(321), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(688), - [anon_sym_SEMI] = ACTIONS(690), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [ts_builtin_sym_end] = ACTIONS(658), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(327), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_SEMI_SEMI] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), + [sym_herestring_redirect] = STATE(98), + [aux_sym_redirected_statement_repeat1] = STATE(98), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_PIPE] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(725), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(339), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(341), }, [101] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1381), - [sym_function_definition] = STATE(1381), - [sym_negated_command] = STATE(1381), - [sym_test_command] = STATE(1381), - [sym_variable_assignment] = STATE(1382), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), + [sym_if_statement] = STATE(1439), + [sym_function_definition] = STATE(1439), + [sym_negated_command] = STATE(1439), + [sym_test_command] = STATE(1439), + [sym_variable_assignment] = STATE(1440), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(1381), - [sym_for_statement] = STATE(1381), - [sym_compound_statement] = STATE(1381), - [sym_subshell] = STATE(1381), - [sym_declaration_command] = STATE(1381), - [sym_unset_command] = STATE(1381), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(1381), - [sym_while_statement] = STATE(1381), - [sym_case_statement] = STATE(1381), - [sym_pipeline] = STATE(1381), - [sym_list] = STATE(1381), - [sym_command] = STATE(1381), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_local] = ACTIONS(698), - [anon_sym_typeset] = ACTIONS(698), - [anon_sym_unsetenv] = ACTIONS(701), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(707), - [anon_sym_GT_LPAREN] = ACTIONS(710), - [sym_number] = ACTIONS(713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(716), - [anon_sym_function] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(725), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_export] = ACTIONS(698), - [sym_word] = ACTIONS(728), - [sym__special_character] = ACTIONS(731), - [anon_sym_if] = ACTIONS(734), - [anon_sym_case] = ACTIONS(737), - [anon_sym_LPAREN_LPAREN] = ACTIONS(740), - [sym_raw_string] = ACTIONS(743), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_declare] = ACTIONS(698), - [sym_variable_name] = ACTIONS(749), - [sym_file_descriptor] = ACTIONS(752), - [anon_sym_GT] = ACTIONS(725), - [anon_sym_AMP_GT] = ACTIONS(725), - [anon_sym_readonly] = ACTIONS(698), - [anon_sym_unset] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(758), - [anon_sym_LT_LPAREN] = ACTIONS(710), - [anon_sym_for] = ACTIONS(761), - [anon_sym_while] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(767), - [sym_ansii_c_string] = ACTIONS(743), - [anon_sym_LBRACK_LBRACK] = ACTIONS(770), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1439), + [sym_for_statement] = STATE(1439), + [sym_compound_statement] = STATE(1439), + [sym_subshell] = STATE(1439), + [sym_declaration_command] = STATE(1439), + [sym_unset_command] = STATE(1439), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(1439), + [sym_while_statement] = STATE(1439), + [sym_case_statement] = STATE(1439), + [sym_pipeline] = STATE(1439), + [sym_list] = STATE(1439), + [sym_command] = STATE(1439), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_AMP_GT_GT] = ACTIONS(730), + [anon_sym_local] = ACTIONS(733), + [anon_sym_typeset] = ACTIONS(733), + [anon_sym_unsetenv] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [sym_ansii_c_string] = ACTIONS(751), + [anon_sym_function] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(760), + [anon_sym_LT_AMP] = ACTIONS(730), + [anon_sym_GT_GT] = ACTIONS(730), + [anon_sym_export] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(763), + [anon_sym_if] = ACTIONS(766), + [anon_sym_case] = ACTIONS(769), + [anon_sym_LPAREN_LPAREN] = ACTIONS(772), + [sym_number] = ACTIONS(775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_file_descriptor] = ACTIONS(784), + [sym_word] = ACTIONS(787), + [anon_sym_GT] = ACTIONS(760), + [sym_variable_name] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(760), + [anon_sym_readonly] = ACTIONS(733), + [anon_sym_unset] = ACTIONS(736), + [sym__special_character] = ACTIONS(793), + [anon_sym_GT_AMP] = ACTIONS(730), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_for] = ACTIONS(799), + [anon_sym_while] = ACTIONS(802), + [anon_sym_LBRACK] = ACTIONS(805), + [sym_raw_string] = ACTIONS(751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(808), }, [102] = { - [sym_command_substitution] = STATE(105), - [aux_sym__literal_repeat1] = STATE(106), - [sym_string] = STATE(105), - [sym_process_substitution] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [aux_sym_command_repeat2] = STATE(183), - [sym_concatenation] = STATE(183), - [sym_expansion] = STATE(105), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [sym_word] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(351), - [sym__special_character] = ACTIONS(31), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(773), - [sym_raw_string] = ACTIONS(347), - [sym_file_descriptor] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(351), - [ts_builtin_sym_end] = ACTIONS(775), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [103] = { - [sym_variable_assignment] = STATE(103), - [sym_subscript] = STATE(2467), - [aux_sym_command_repeat1] = STATE(103), - [sym_file_redirect] = STATE(103), - [anon_sym_AMP_GT_GT] = ACTIONS(777), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(780), - [anon_sym_DOLLAR] = ACTIONS(782), - [sym_file_descriptor] = ACTIONS(784), - [sym_variable_name] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(780), - [anon_sym_AMP_GT] = ACTIONS(790), - [sym_number] = ACTIONS(782), - [anon_sym_GT_LPAREN] = ACTIONS(780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(780), - [anon_sym_DQUOTE] = ACTIONS(780), - [anon_sym_GT_AMP] = ACTIONS(777), - [sym_word] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(777), - [sym_ansii_c_string] = ACTIONS(780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(780), - [anon_sym_LT_LPAREN] = ACTIONS(780), - [sym__special_character] = ACTIONS(780), - }, - [104] = { - [sym_command_substitution] = STATE(185), - [aux_sym__literal_repeat1] = STATE(186), - [sym_string] = STATE(185), - [sym_process_substitution] = STATE(185), - [sym_simple_expansion] = STATE(185), - [sym_string_expansion] = STATE(185), - [sym_concatenation] = STATE(184), - [sym_expansion] = STATE(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(51), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(793), - [sym_word] = ACTIONS(795), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(13), - [sym_ansii_c_string] = ACTIONS(793), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [anon_sym_BQUOTE] = ACTIONS(15), - [sym_regex] = ACTIONS(797), - [sym__special_character] = ACTIONS(337), - [sym_number] = ACTIONS(795), - }, - [105] = { - [aux_sym_concatenation_repeat1] = STATE(53), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_AMP_GT_GT] = ACTIONS(799), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_LT_LT] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(799), - [anon_sym_GT_LPAREN] = ACTIONS(799), - [sym_number] = ACTIONS(799), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(799), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [sym__concat] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(799), - [sym_word] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(799), - [anon_sym_LT_AMP] = ACTIONS(799), - [anon_sym_GT_GT] = ACTIONS(799), - [anon_sym_EQ_TILDE] = ACTIONS(799), - [sym__special_character] = ACTIONS(799), - [anon_sym_LT_LT_DASH] = ACTIONS(799), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(799), - [sym_raw_string] = ACTIONS(799), - [sym_file_descriptor] = ACTIONS(801), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_AMP_GT] = ACTIONS(799), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [anon_sym_LT_LT_LT] = ACTIONS(799), - [anon_sym_GT_AMP] = ACTIONS(799), - [ts_builtin_sym_end] = ACTIONS(801), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(799), - [anon_sym_LT_LPAREN] = ACTIONS(799), - [sym_ansii_c_string] = ACTIONS(799), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_SEMI_SEMI] = ACTIONS(799), - [anon_sym_PIPE_AMP] = ACTIONS(799), - }, - [106] = { - [aux_sym__literal_repeat1] = STATE(91), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_LT_LT] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_number] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [sym_word] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(803), - [sym__special_character] = ACTIONS(309), - [anon_sym_LT_LT_DASH] = ACTIONS(803), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(803), - [sym_raw_string] = ACTIONS(803), - [sym_file_descriptor] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_AMP_GT] = ACTIONS(803), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_LT_LT_LT] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [ts_builtin_sym_end] = ACTIONS(805), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [sym_ansii_c_string] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - }, - [107] = { - [sym_command_substitution] = STATE(105), - [aux_sym__literal_repeat1] = STATE(106), - [sym_string] = STATE(105), - [sym_process_substitution] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [aux_sym_command_repeat2] = STATE(187), - [sym_concatenation] = STATE(187), - [sym_expansion] = STATE(105), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [sym_word] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(351), - [sym__special_character] = ACTIONS(31), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(773), - [sym_raw_string] = ACTIONS(347), - [sym_file_descriptor] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(351), - [ts_builtin_sym_end] = ACTIONS(775), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - }, - [108] = { - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [ts_builtin_sym_end] = ACTIONS(809), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - }, - [109] = { - [sym_command_substitution] = STATE(41), - [aux_sym__literal_repeat1] = STATE(42), - [sym_string] = STATE(41), - [aux_sym_declaration_command_repeat1] = STATE(109), - [sym_process_substitution] = STATE(41), - [sym_simple_expansion] = STATE(41), - [sym_subscript] = STATE(2456), - [sym_string_expansion] = STATE(41), - [sym_variable_assignment] = STATE(109), - [sym_concatenation] = STATE(109), - [sym_expansion] = STATE(41), - [anon_sym_AMP] = ACTIONS(811), + [aux_sym__literal_repeat1] = STATE(103), [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(816), - [anon_sym_GT_LPAREN] = ACTIONS(819), - [sym_number] = ACTIONS(822), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), [anon_sym_PIPE_PIPE] = ACTIONS(811), [anon_sym_PIPE] = ACTIONS(811), - [sym_word] = ACTIONS(822), [anon_sym_LT] = ACTIONS(811), [anon_sym_LT_AMP] = ACTIONS(811), [anon_sym_GT_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(828), + [anon_sym_EQ_TILDE] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), [anon_sym_LT_LT_DASH] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(831), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), [anon_sym_SEMI] = ACTIONS(811), - [sym_raw_string] = ACTIONS(822), - [sym_variable_name] = ACTIONS(833), - [sym_file_descriptor] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(813), + [sym_word] = ACTIONS(811), [anon_sym_GT] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_EQ_EQ] = ACTIONS(811), + [sym__special_character] = ACTIONS(815), [anon_sym_LT_LT_LT] = ACTIONS(811), [anon_sym_GT_AMP] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(839), - [aux_sym__simple_variable_name_token1] = ACTIONS(842), - [anon_sym_LT_LPAREN] = ACTIONS(819), - [sym_ansii_c_string] = ACTIONS(822), + [ts_builtin_sym_end] = ACTIONS(813), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), [anon_sym_SEMI_SEMI] = ACTIONS(811), [anon_sym_PIPE_AMP] = ACTIONS(811), }, + [104] = { + [sym_expansion] = STATE(106), + [sym_string_expansion] = STATE(106), + [sym_concatenation] = STATE(186), + [sym_string] = STATE(106), + [aux_sym__literal_repeat1] = STATE(109), + [sym_command_substitution] = STATE(106), + [sym_process_substitution] = STATE(106), + [sym_simple_expansion] = STATE(106), + [sym_arithmetic_expansion] = STATE(106), + [aux_sym_command_repeat2] = STATE(186), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [anon_sym_LT_LPAREN] = ACTIONS(365), + [sym_ansii_c_string] = ACTIONS(367), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_EQ_TILDE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(365), + [sym_number] = ACTIONS(367), + [anon_sym_LF] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [sym_file_descriptor] = ACTIONS(820), + [sym_word] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(820), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [sym__special_character] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(375), + [sym_raw_string] = ACTIONS(367), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + }, + [105] = { + [sym_variable_assignment] = STATE(105), + [sym_subscript] = STATE(2585), + [aux_sym_command_repeat1] = STATE(105), + [sym_file_redirect] = STATE(105), + [anon_sym_AMP_GT_GT] = ACTIONS(822), + [sym_number] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(827), + [sym_file_descriptor] = ACTIONS(829), + [sym_word] = ACTIONS(825), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(832), + [sym_ansii_c_string] = ACTIONS(827), + [anon_sym_LT_LPAREN] = ACTIONS(827), + [sym_variable_name] = ACTIONS(835), + [sym__special_character] = ACTIONS(827), + [anon_sym_GT_AMP] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(822), + [sym_raw_string] = ACTIONS(827), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(825), + }, + [106] = { + [aux_sym_concatenation_repeat1] = STATE(61), + [anon_sym_AMP_GT_GT] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(838), + [anon_sym_LT_LT] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), + [anon_sym_LT_LPAREN] = ACTIONS(838), + [sym_ansii_c_string] = ACTIONS(838), + [anon_sym_PIPE_PIPE] = ACTIONS(838), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(838), + [anon_sym_LT_AMP] = ACTIONS(838), + [anon_sym_GT_GT] = ACTIONS(838), + [anon_sym_EQ_TILDE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_LT_LT_DASH] = ACTIONS(838), + [anon_sym_GT_LPAREN] = ACTIONS(838), + [sym_number] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [sym_file_descriptor] = ACTIONS(840), + [sym_word] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(838), + [anon_sym_AMP_GT] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(838), + [sym__special_character] = ACTIONS(838), + [anon_sym_LT_LT_LT] = ACTIONS(838), + [anon_sym_GT_AMP] = ACTIONS(838), + [ts_builtin_sym_end] = ACTIONS(840), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(838), + [sym_raw_string] = ACTIONS(838), + [anon_sym_AMP_AMP] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_SEMI_SEMI] = ACTIONS(838), + [anon_sym_PIPE_AMP] = ACTIONS(838), + }, + [107] = { + [sym_expansion] = STATE(188), + [sym_concatenation] = STATE(187), + [sym_string] = STATE(188), + [sym_command_substitution] = STATE(188), + [sym_process_substitution] = STATE(188), + [aux_sym__literal_repeat1] = STATE(189), + [sym_simple_expansion] = STATE(188), + [sym_arithmetic_expansion] = STATE(188), + [sym_string_expansion] = STATE(188), + [anon_sym_GT_LPAREN] = ACTIONS(19), + [sym_number] = ACTIONS(842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), + [sym_word] = ACTIONS(842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [anon_sym_LT_LPAREN] = ACTIONS(19), + [sym_ansii_c_string] = ACTIONS(844), + [sym__special_character] = ACTIONS(355), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(55), + [sym_raw_string] = ACTIONS(844), + [sym_regex] = ACTIONS(846), + [anon_sym_DOLLAR] = ACTIONS(29), + }, + [108] = { + [sym_expansion] = STATE(106), + [sym_string_expansion] = STATE(106), + [sym_concatenation] = STATE(190), + [sym_string] = STATE(106), + [aux_sym__literal_repeat1] = STATE(109), + [sym_command_substitution] = STATE(106), + [sym_process_substitution] = STATE(106), + [sym_simple_expansion] = STATE(106), + [sym_arithmetic_expansion] = STATE(106), + [aux_sym_command_repeat2] = STATE(190), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [anon_sym_LT_LPAREN] = ACTIONS(365), + [sym_ansii_c_string] = ACTIONS(367), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_EQ_TILDE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(365), + [sym_number] = ACTIONS(367), + [anon_sym_LF] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [sym_file_descriptor] = ACTIONS(820), + [sym_word] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(820), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [sym__special_character] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(375), + [sym_raw_string] = ACTIONS(367), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + }, + [109] = { + [aux_sym__literal_repeat1] = STATE(103), + [anon_sym_AMP_GT_GT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(848), + [anon_sym_LT_LT] = ACTIONS(848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(848), + [anon_sym_LT_LPAREN] = ACTIONS(848), + [sym_ansii_c_string] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_LT_AMP] = ACTIONS(848), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_EQ_TILDE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(848), + [anon_sym_LT_LT_DASH] = ACTIONS(848), + [anon_sym_GT_LPAREN] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [anon_sym_LF] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(848), + [sym_file_descriptor] = ACTIONS(850), + [sym_word] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_AMP_GT] = ACTIONS(848), + [anon_sym_EQ_EQ] = ACTIONS(848), + [sym__special_character] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(848), + [anon_sym_GT_AMP] = ACTIONS(848), + [ts_builtin_sym_end] = ACTIONS(850), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_raw_string] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_SEMI_SEMI] = ACTIONS(848), + [anon_sym_PIPE_AMP] = ACTIONS(848), + }, [110] = { - [sym_command_substitution] = STATE(44), - [aux_sym__literal_repeat1] = STATE(45), - [sym_string] = STATE(44), - [aux_sym_unset_command_repeat1] = STATE(110), - [sym_process_substitution] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_concatenation] = STATE(110), - [sym_expansion] = STATE(44), - [anon_sym_AMP] = ACTIONS(845), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [anon_sym_LT_LT] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(850), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_number] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(859), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [sym_word] = ACTIONS(856), - [anon_sym_LT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_GT] = ACTIONS(845), - [sym__special_character] = ACTIONS(862), - [anon_sym_LT_LT_DASH] = ACTIONS(845), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(845), - [sym_raw_string] = ACTIONS(856), - [sym_file_descriptor] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(867), - [anon_sym_LT_LT_LT] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [ts_builtin_sym_end] = ACTIONS(865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(870), - [aux_sym__simple_variable_name_token1] = ACTIONS(873), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [sym_ansii_c_string] = ACTIONS(856), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_LT_LT_DASH] = ACTIONS(852), + [anon_sym_AMP_GT_GT] = ACTIONS(852), + [anon_sym_LF] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_LT_LT] = ACTIONS(852), + [sym_file_descriptor] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_AMP_GT] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(852), + [ts_builtin_sym_end] = ACTIONS(854), + [anon_sym_LT_LT_LT] = ACTIONS(852), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_GT_AMP] = ACTIONS(852), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_AMP] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(852), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_SEMI_SEMI] = ACTIONS(852), + [anon_sym_PIPE_AMP] = ACTIONS(852), }, [111] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), + [sym_expansion] = STATE(42), + [sym_concatenation] = STATE(111), + [aux_sym_declaration_command_repeat1] = STATE(111), + [sym_string] = STATE(42), + [sym_command_substitution] = STATE(42), + [sym_process_substitution] = STATE(42), + [aux_sym__literal_repeat1] = STATE(43), + [sym_variable_assignment] = STATE(111), + [sym_subscript] = STATE(2574), + [sym_simple_expansion] = STATE(42), + [sym_arithmetic_expansion] = STATE(42), + [sym_string_expansion] = STATE(42), + [anon_sym_AMP_GT_GT] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(858), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(864), + [anon_sym_LT_LPAREN] = ACTIONS(867), + [sym_ansii_c_string] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(856), + [anon_sym_PIPE] = ACTIONS(856), + [aux_sym__simple_variable_name_token1] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_LT_AMP] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [ts_builtin_sym_end] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(856), + [anon_sym_GT_LPAREN] = ACTIONS(867), + [sym_number] = ACTIONS(870), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(881), + [sym_variable_name] = ACTIONS(884), + [sym_file_descriptor] = ACTIONS(879), + [sym_word] = ACTIONS(870), + [anon_sym_GT] = ACTIONS(856), + [anon_sym_AMP_GT] = ACTIONS(856), + [sym__special_character] = ACTIONS(887), + [anon_sym_LT_LT_LT] = ACTIONS(856), + [anon_sym_GT_AMP] = ACTIONS(856), + [ts_builtin_sym_end] = ACTIONS(879), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(890), + [sym_raw_string] = ACTIONS(870), + [anon_sym_AMP_AMP] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [anon_sym_PIPE_AMP] = ACTIONS(856), }, [112] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_EQ_TILDE] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [ts_builtin_sym_end] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [sym_expansion] = STATE(45), + [sym_concatenation] = STATE(112), + [sym_string] = STATE(45), + [sym_command_substitution] = STATE(45), + [sym_process_substitution] = STATE(45), + [aux_sym__literal_repeat1] = STATE(46), + [aux_sym_unset_command_repeat1] = STATE(112), + [sym_simple_expansion] = STATE(45), + [sym_arithmetic_expansion] = STATE(45), + [sym_string_expansion] = STATE(45), + [anon_sym_AMP_GT_GT] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(895), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(898), + [anon_sym_LT_LT] = ACTIONS(893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), + [anon_sym_LT_LPAREN] = ACTIONS(904), + [sym_ansii_c_string] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [aux_sym__simple_variable_name_token1] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_LT_AMP] = ACTIONS(893), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_LT_LT_DASH] = ACTIONS(893), + [anon_sym_GT_LPAREN] = ACTIONS(904), + [sym_number] = ACTIONS(907), + [anon_sym_LF] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(918), + [sym_file_descriptor] = ACTIONS(916), + [sym_word] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_AMP_GT] = ACTIONS(893), + [sym__special_character] = ACTIONS(921), + [anon_sym_LT_LT_LT] = ACTIONS(893), + [anon_sym_GT_AMP] = ACTIONS(893), + [ts_builtin_sym_end] = ACTIONS(916), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(924), + [sym_raw_string] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_SEMI_SEMI] = ACTIONS(893), + [anon_sym_PIPE_AMP] = ACTIONS(893), }, [113] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [sym__string_content] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), }, [114] = { - [sym_command_substitution] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_string] = STATE(113), - [sym_process_substitution] = STATE(113), - [sym_expansion] = STATE(113), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(51), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(425), - [sym_word] = ACTIONS(427), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(888), - [anon_sym_LT_LPAREN] = ACTIONS(17), - [sym_ansii_c_string] = ACTIONS(425), - [anon_sym_BQUOTE] = ACTIONS(15), - [anon_sym_GT_LPAREN] = ACTIONS(17), - [sym__special_character] = ACTIONS(425), - [sym_number] = ACTIONS(427), + [sym__concat] = ACTIONS(929), + [sym__string_content] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), }, [115] = { - [aux_sym_concatenation_repeat1] = STATE(115), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_EQ_TILDE] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [sym_file_descriptor] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [ts_builtin_sym_end] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [116] = { - [aux_sym_concatenation_repeat1] = STATE(914), - [anon_sym_PERCENT] = ACTIONS(893), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(895), - [sym_raw_string] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_COLON_DASH] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(893), - [sym_number] = ACTIONS(893), - [anon_sym_COLON_QMARK] = ACTIONS(893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(895), - [anon_sym_BQUOTE] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [anon_sym_GT_LPAREN] = ACTIONS(895), - [sym__concat] = ACTIONS(897), - [sym_word] = ACTIONS(893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(895), - [anon_sym_LT_LPAREN] = ACTIONS(895), - [sym_ansii_c_string] = ACTIONS(895), - [anon_sym_COLON] = ACTIONS(893), - [sym__special_character] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [117] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(899), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(901), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(899), - [anon_sym_COLON_DASH] = ACTIONS(899), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(899), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(899), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(899), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(905), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(946), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(952), }, [118] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [ts_builtin_sym_end] = ACTIONS(909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_RPAREN] = ACTIONS(955), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [119] = { - [aux_sym__literal_repeat1] = STATE(917), - [anon_sym_PERCENT] = ACTIONS(911), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(913), - [sym_raw_string] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_COLON_DASH] = ACTIONS(911), - [anon_sym_EQ] = ACTIONS(911), - [sym_number] = ACTIONS(911), - [anon_sym_COLON_QMARK] = ACTIONS(911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(913), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_GT_LPAREN] = ACTIONS(913), - [sym_word] = ACTIONS(911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(913), - [anon_sym_LT_LPAREN] = ACTIONS(913), - [sym_ansii_c_string] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(911), - [sym__special_character] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_RBRACK_RBRACK] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [120] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_unary_expression] = STATE(195), + [sym_postfix_expression] = STATE(195), + [sym_concatenation] = STATE(195), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(195), + [sym_binary_expression] = STATE(195), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(195), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, [121] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(191), - [sym_concatenation] = STATE(191), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(899), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(901), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(899), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(899), - [anon_sym_EQ] = ACTIONS(899), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(899), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(903), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(899), - [sym__special_character] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_RPAREN_RPAREN] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_RBRACK_RBRACK] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_EQ_TILDE] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(963), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(961), + [sym_test_operator] = ACTIONS(961), }, [122] = { - [anon_sym_EQ] = ACTIONS(923), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), + [sym_unary_expression] = STATE(195), + [sym_postfix_expression] = STATE(195), + [sym_concatenation] = STATE(195), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(195), + [sym_binary_expression] = STATE(195), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(195), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_regex] = ACTIONS(965), + [sym_test_operator] = ACTIONS(223), }, [123] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(197), - [sym_concatenation] = STATE(197), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(925), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(927), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(929), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(931), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(925), - [sym__special_character] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_EQ_TILDE] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [sym_file_descriptor] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [ts_builtin_sym_end] = ACTIONS(969), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [124] = { - [sym_command_substitution] = STATE(198), - [aux_sym__literal_repeat1] = STATE(199), - [sym_string] = STATE(198), - [sym_process_substitution] = STATE(198), - [sym_simple_expansion] = STATE(198), - [sym_string_expansion] = STATE(198), - [sym_concatenation] = STATE(200), - [sym_expansion] = STATE(198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(937), - [sym_word] = ACTIONS(939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(937), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(903), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(939), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_EQ_TILDE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [125] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(203), - [sym_concatenation] = STATE(203), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(953), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_COLON_DASH] = ACTIONS(951), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(951), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(951), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(957), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_EQ_TILDE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [126] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_EQ_TILDE] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [127] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(126), + [sym_string_expansion] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_string] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [sym_arithmetic_expansion] = STATE(126), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(19), + [sym_number] = ACTIONS(471), + [sym__special_character] = ACTIONS(473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), + [anon_sym_BQUOTE] = ACTIONS(55), + [sym_raw_string] = ACTIONS(473), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [sym_word] = ACTIONS(471), + [anon_sym_LT_LPAREN] = ACTIONS(19), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_ansii_c_string] = ACTIONS(473), }, [128] = { - [anon_sym_RPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(41), + [aux_sym_concatenation_repeat1] = STATE(128), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_EQ_TILDE] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [129] = { - [anon_sym_LT_LT_DASH] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(965), - [anon_sym_AMP_GT_GT] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(965), - [anon_sym_LT_LT] = ACTIONS(965), - [sym_file_descriptor] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(965), - [anon_sym_AMP_GT] = ACTIONS(965), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [ts_builtin_sym_end] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(965), - [anon_sym_GT_AMP] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(965), - [anon_sym_LT_AMP] = ACTIONS(965), - [anon_sym_GT_GT] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(965), - [anon_sym_SEMI_SEMI] = ACTIONS(965), - [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(988), + [sym_comment] = ACTIONS(53), }, [130] = { - [sym_compound_statement] = STATE(205), - [anon_sym_LBRACE] = ACTIONS(27), - [sym_comment] = ACTIONS(41), + [anon_sym_LT_LT_DASH] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LF] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(990), + [sym_file_descriptor] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_PIPE_PIPE] = ACTIONS(990), + [ts_builtin_sym_end] = ACTIONS(992), + [anon_sym_LT_LT_LT] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(990), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI_SEMI] = ACTIONS(990), + [anon_sym_PIPE_AMP] = ACTIONS(990), }, [131] = { - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(687), + [sym_word] = ACTIONS(687), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [132] = { - [sym_heredoc_body] = STATE(206), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [sym_heredoc_body] = STATE(199), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(687), + [sym_word] = ACTIONS(687), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_unset] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(996), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [133] = { - [anon_sym_LT_LT_DASH] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_AMP_GT_GT] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [ts_builtin_sym_end] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_GT_AMP] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_LT_AMP] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(973), - [anon_sym_SEMI_SEMI] = ACTIONS(973), - [anon_sym_PIPE_AMP] = ACTIONS(973), + [anon_sym_LT_LT_DASH] = ACTIONS(998), + [anon_sym_AMP_GT_GT] = ACTIONS(998), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(998), + [sym_file_descriptor] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_AMP_GT] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(998), + [ts_builtin_sym_end] = ACTIONS(1000), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_GT_AMP] = ACTIONS(998), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_AMP] = ACTIONS(998), + [anon_sym_GT_GT] = ACTIONS(998), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI_SEMI] = ACTIONS(998), + [anon_sym_PIPE_AMP] = ACTIONS(998), }, [134] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_elif_clause] = STATE(213), - [sym_else_clause] = STATE(212), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_if_statement_repeat1] = STATE(213), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(214), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_elif_clause] = STATE(207), + [sym_else_clause] = STATE(205), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(206), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [aux_sym_if_statement_repeat1] = STATE(207), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_fi] = ACTIONS(977), - [anon_sym_else] = ACTIONS(979), - [sym_number] = ACTIONS(75), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_fi] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1004), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_elif] = ACTIONS(981), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_LT_LPAREN] = ACTIONS(73), + [sym_comment] = ACTIONS(53), + [anon_sym_elif] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(105), }, [135] = { - [anon_sym_do] = ACTIONS(983), - [anon_sym_then] = ACTIONS(983), - [sym_comment] = ACTIONS(41), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_then] = ACTIONS(1008), + [sym_comment] = ACTIONS(53), }, [136] = { - [anon_sym_in] = ACTIONS(985), - [sym_comment] = ACTIONS(41), + [anon_sym_in] = ACTIONS(1010), + [sym_comment] = ACTIONS(53), }, [137] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), + [anon_sym_LF] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_SEMI_SEMI] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), }, [138] = { - [anon_sym_in] = ACTIONS(991), - [sym_comment] = ACTIONS(41), + [anon_sym_in] = ACTIONS(1016), + [sym_comment] = ACTIONS(53), }, [139] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(995), + [anon_sym_LF] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_SEMI_SEMI] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1020), }, [140] = { - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(997), - [sym_test_operator] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_LT_LT_DASH] = ACTIONS(1022), + [anon_sym_AMP_GT_GT] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_LT_LT] = ACTIONS(1022), + [sym_file_descriptor] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1022), + [anon_sym_AMP_GT] = ACTIONS(1022), + [anon_sym_PIPE_PIPE] = ACTIONS(1022), + [ts_builtin_sym_end] = ACTIONS(1024), + [anon_sym_LT_LT_LT] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_GT_AMP] = ACTIONS(1022), + [anon_sym_LT] = ACTIONS(1022), + [anon_sym_LT_AMP] = ACTIONS(1022), + [anon_sym_GT_GT] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI_SEMI] = ACTIONS(1022), + [anon_sym_PIPE_AMP] = ACTIONS(1022), }, [141] = { - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_RPAREN_RPAREN] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_RBRACK_RBRACK] = ACTIONS(999), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1001), - [sym_test_operator] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(541), + [aux_sym_concatenation_repeat1] = STATE(924), + [anon_sym_COLON_DASH] = ACTIONS(1026), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [sym_number] = ACTIONS(1026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_COLON_QMARK] = ACTIONS(1026), + [anon_sym_EQ] = ACTIONS(1026), + [sym_ansii_c_string] = ACTIONS(1028), + [anon_sym_COLON] = ACTIONS(1026), + [anon_sym_POUND] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1026), + [sym__special_character] = ACTIONS(1026), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_word] = ACTIONS(1026), + [sym__concat] = ACTIONS(1030), + [anon_sym_PERCENT] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_raw_string] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), }, [142] = { - [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(220), - [sym_postfix_expression] = STATE(220), - [sym_string] = STATE(71), - [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(220), - [sym_binary_expression] = STATE(220), - [sym_concatenation] = STATE(220), - [sym_expansion] = STATE(71), - [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(220), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_EQ_TILDE] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [143] = { - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), - [anon_sym_BANG_EQ] = ACTIONS(1003), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1005), - [sym_test_operator] = ACTIONS(1003), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_EQ] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_AMP_AMP] = ACTIONS(1003), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(214), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(214), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1036), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(1042), }, [144] = { - [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(220), - [sym_postfix_expression] = STATE(220), - [sym_string] = STATE(71), - [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(220), - [sym_binary_expression] = STATE(220), - [sym_concatenation] = STATE(220), - [sym_expansion] = STATE(71), - [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(220), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), - [sym_regex] = ACTIONS(1007), + [aux_sym__literal_repeat1] = STATE(929), + [anon_sym_COLON_DASH] = ACTIONS(1044), + [anon_sym_GT_LPAREN] = ACTIONS(1046), + [sym_number] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_COLON_QMARK] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1044), + [sym_ansii_c_string] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [sym__special_character] = ACTIONS(1048), + [anon_sym_LT_LPAREN] = ACTIONS(1046), + [sym_word] = ACTIONS(1044), + [anon_sym_PERCENT] = ACTIONS(1044), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1046), + [sym_raw_string] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1044), }, [145] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_AMP_GT_GT] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1009), - [sym_file_descriptor] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [ts_builtin_sym_end] = ACTIONS(1011), - [anon_sym_LT_LT_LT] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1009), - [anon_sym_GT_AMP] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_LT_AMP] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1009), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_SEMI_SEMI] = ACTIONS(1009), - [anon_sym_PIPE_AMP] = ACTIONS(1009), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [146] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(225), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(225), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1029), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(214), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(214), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1036), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(567), }, [147] = { - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [anon_sym_EQ] = ACTIONS(1056), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), }, [148] = { - [aux_sym_concatenation_repeat1] = STATE(946), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [sym__concat] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(220), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(220), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1058), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_PERCENT] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(567), }, [149] = { - [aux_sym__literal_repeat1] = STATE(949), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_GT_LPAREN] = ACTIONS(1039), - [sym_number] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [sym_word] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_LT_AMP] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1039), - [sym__special_character] = ACTIONS(1041), - [anon_sym_LT_LT_DASH] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1039), - [sym_raw_string] = ACTIONS(1039), - [sym_variable_name] = ACTIONS(1043), - [sym_file_descriptor] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [anon_sym_LT_LT_LT] = ACTIONS(1039), - [anon_sym_GT_AMP] = ACTIONS(1039), - [ts_builtin_sym_end] = ACTIONS(1043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), - [anon_sym_LT_LPAREN] = ACTIONS(1039), - [sym_ansii_c_string] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), + [sym_expansion] = STATE(221), + [sym_concatenation] = STATE(222), + [sym_string] = STATE(221), + [sym_command_substitution] = STATE(221), + [sym_process_substitution] = STATE(221), + [aux_sym__literal_repeat1] = STATE(223), + [sym_simple_expansion] = STATE(221), + [sym_arithmetic_expansion] = STATE(221), + [sym_string_expansion] = STATE(221), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(1068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1040), + [sym_word] = ACTIONS(1068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(1078), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [150] = { - [aux_sym_concatenation_repeat1] = STATE(2444), - [anon_sym_RBRACK] = ACTIONS(1045), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1047), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [sym_file_descriptor] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_AMP_GT] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [151] = { - [aux_sym__literal_repeat1] = STATE(981), - [anon_sym_RBRACK] = ACTIONS(1049), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1051), - [sym__special_character] = ACTIONS(1053), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(226), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(226), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1090), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_PERCENT] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(1096), }, [152] = { - [anon_sym_RBRACK] = ACTIONS(1045), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1055), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [153] = { - [aux_sym_concatenation_repeat1] = STATE(559), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_BQUOTE] = ACTIONS(1057), - [anon_sym_GT_LPAREN] = ACTIONS(1057), - [sym_number] = ACTIONS(1059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [sym__concat] = ACTIONS(365), - [sym_word] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym__special_character] = ACTIONS(1057), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1057), - [sym_variable_name] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1057), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_LT_LPAREN] = ACTIONS(1057), - [sym_ansii_c_string] = ACTIONS(1057), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(230), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(230), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(1108), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [154] = { - [aux_sym__literal_repeat1] = STATE(565), - [anon_sym_AMP_GT_GT] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1061), - [anon_sym_GT_LPAREN] = ACTIONS(1061), - [sym_number] = ACTIONS(1063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1061), - [sym_word] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1061), - [anon_sym_GT_GT] = ACTIONS(1061), - [sym__special_character] = ACTIONS(371), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1061), - [sym_variable_name] = ACTIONS(1061), - [sym_file_descriptor] = ACTIONS(1061), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1061), - [anon_sym_GT_AMP] = ACTIONS(1061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1061), - [anon_sym_LT_LPAREN] = ACTIONS(1061), - [sym_ansii_c_string] = ACTIONS(1061), + [aux_sym_concatenation_repeat1] = STATE(957), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [sym__concat] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [sym_file_descriptor] = ACTIONS(1124), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [155] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_BQUOTE] = ACTIONS(1057), - [anon_sym_GT_LPAREN] = ACTIONS(1057), - [sym_number] = ACTIONS(1059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [sym_word] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym__special_character] = ACTIONS(1057), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1057), - [sym_variable_name] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1057), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_LT_LPAREN] = ACTIONS(1057), - [sym_ansii_c_string] = ACTIONS(1057), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [sym_file_descriptor] = ACTIONS(1124), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [156] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [aux_sym__literal_repeat1] = STATE(962), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [sym_ansii_c_string] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1126), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_number] = ACTIONS(1126), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), + [sym_variable_name] = ACTIONS(1128), + [sym_file_descriptor] = ACTIONS(1128), + [sym_word] = ACTIONS(1126), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_raw_string] = ACTIONS(1126), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), }, [157] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1069), - [sym__concat] = ACTIONS(1071), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1069), - [sym__string_content] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_BQUOTE] = ACTIONS(1069), + [aux_sym_concatenation_repeat1] = STATE(990), + [anon_sym_RBRACK] = ACTIONS(1132), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1134), }, [158] = { - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1069), - [anon_sym_BQUOTE] = ACTIONS(1069), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1069), - [sym__string_content] = ACTIONS(1069), + [anon_sym_RBRACK] = ACTIONS(1132), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1136), }, [159] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(1073), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [aux_sym__literal_repeat1] = STATE(995), + [anon_sym_RBRACK] = ACTIONS(1138), + [sym__special_character] = ACTIONS(1140), + [sym__concat] = ACTIONS(1142), + [sym_comment] = ACTIONS(53), }, [160] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(1075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1069), - [anon_sym_BQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1084), - [sym__string_content] = ACTIONS(1087), + [aux_sym_concatenation_repeat1] = STATE(564), + [anon_sym_AMP_GT_GT] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1146), + [anon_sym_LT_LPAREN] = ACTIONS(1144), + [sym_ansii_c_string] = ACTIONS(1144), + [sym__concat] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_LT_AMP] = ACTIONS(1144), + [anon_sym_GT_GT] = ACTIONS(1144), + [anon_sym_DOLLAR] = ACTIONS(1146), + [anon_sym_GT_LPAREN] = ACTIONS(1144), + [sym_number] = ACTIONS(1146), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1144), + [sym_variable_name] = ACTIONS(1144), + [sym_file_descriptor] = ACTIONS(1144), + [sym_word] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_RPAREN] = ACTIONS(1144), + [anon_sym_AMP_GT] = ACTIONS(1146), + [sym__special_character] = ACTIONS(1144), + [anon_sym_GT_AMP] = ACTIONS(1144), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_raw_string] = ACTIONS(1144), }, [161] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [ts_builtin_sym_end] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1146), + [anon_sym_LT_LPAREN] = ACTIONS(1144), + [sym_ansii_c_string] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_LT_AMP] = ACTIONS(1144), + [anon_sym_GT_GT] = ACTIONS(1144), + [anon_sym_DOLLAR] = ACTIONS(1146), + [anon_sym_GT_LPAREN] = ACTIONS(1144), + [sym_number] = ACTIONS(1146), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1144), + [sym_variable_name] = ACTIONS(1144), + [sym_file_descriptor] = ACTIONS(1144), + [sym_word] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_RPAREN] = ACTIONS(1144), + [anon_sym_AMP_GT] = ACTIONS(1146), + [sym__special_character] = ACTIONS(1144), + [anon_sym_GT_AMP] = ACTIONS(1144), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_raw_string] = ACTIONS(1144), }, [162] = { - [sym_command_substitution] = STATE(560), - [sym_unary_expression] = STATE(235), - [sym_postfix_expression] = STATE(235), - [sym_string] = STATE(560), - [aux_sym__literal_repeat1] = STATE(562), - [sym_process_substitution] = STATE(560), - [sym_parenthesized_expression] = STATE(235), - [sym_simple_expansion] = STATE(560), - [sym_string_expansion] = STATE(560), - [sym__expression] = STATE(235), - [sym_binary_expression] = STATE(235), - [sym_concatenation] = STATE(235), - [sym_expansion] = STATE(560), - [anon_sym_LPAREN] = ACTIONS(607), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_test_operator] = ACTIONS(613), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_GT_LPAREN] = ACTIONS(621), - [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(625), - [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), - [anon_sym_LT_LPAREN] = ACTIONS(621), - [sym_ansii_c_string] = ACTIONS(609), - [sym__special_character] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), + [aux_sym__literal_repeat1] = STATE(575), + [anon_sym_AMP_GT_GT] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1150), + [anon_sym_LT_LPAREN] = ACTIONS(1148), + [sym_ansii_c_string] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_LT_AMP] = ACTIONS(1148), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(1150), + [anon_sym_GT_LPAREN] = ACTIONS(1148), + [sym_number] = ACTIONS(1150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1148), + [sym_variable_name] = ACTIONS(1148), + [sym_file_descriptor] = ACTIONS(1148), + [sym_word] = ACTIONS(1150), + [anon_sym_GT] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_AMP_GT] = ACTIONS(1150), + [sym__special_character] = ACTIONS(389), + [anon_sym_GT_AMP] = ACTIONS(1148), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1148), + [sym_raw_string] = ACTIONS(1148), }, [163] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), + [sym_compound_statement] = STATE(236), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(53), }, [164] = { - [anon_sym_BANG_EQ] = ACTIONS(1096), - [anon_sym_PLUS_EQ] = ACTIONS(1096), - [anon_sym_DASH_EQ] = ACTIONS(1096), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_EQ] = ACTIONS(1096), - [sym_test_operator] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_PIPE_PIPE] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_EQ_TILDE] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1096), - [anon_sym_AMP_AMP] = ACTIONS(1096), - [anon_sym_SEMI_SEMI] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_EQ_TILDE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [165] = { - [sym_command_substitution] = STATE(483), - [aux_sym__literal_repeat1] = STATE(485), - [sym_string] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_for_statement_repeat1] = STATE(237), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(488), [sym_concatenation] = STATE(237), - [sym_expansion] = STATE(483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1106), - [sym_word] = ACTIONS(1108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_DOLLAR] = ACTIONS(1112), - [sym_ansii_c_string] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1114), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym__special_character] = ACTIONS(1118), - [sym_number] = ACTIONS(1108), - [anon_sym_GT_LPAREN] = ACTIONS(1114), + [sym_string] = STATE(488), + [sym_command_substitution] = STATE(488), + [sym_process_substitution] = STATE(488), + [aux_sym__literal_repeat1] = STATE(489), + [aux_sym_for_statement_repeat1] = STATE(237), + [sym_simple_expansion] = STATE(488), + [sym_arithmetic_expansion] = STATE(488), + [sym_string_expansion] = STATE(488), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1154), + [sym_number] = ACTIONS(1156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1162), + [sym_raw_string] = ACTIONS(1164), + [sym_word] = ACTIONS(1156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), + [anon_sym_BQUOTE] = ACTIONS(1168), + [anon_sym_DOLLAR] = ACTIONS(1170), + [sym_ansii_c_string] = ACTIONS(1164), + [anon_sym_LT_LPAREN] = ACTIONS(1152), }, [166] = { [sym_do_group] = STATE(238), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(637), + [sym_comment] = ACTIONS(53), + [anon_sym_do] = ACTIONS(677), }, [167] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(240), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_expansion] = STATE(561), + [sym_unary_expression] = STATE(240), + [sym_postfix_expression] = STATE(240), + [sym_concatenation] = STATE(240), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [sym_parenthesized_expression] = STATE(240), + [aux_sym__literal_repeat1] = STATE(563), + [sym_simple_expansion] = STATE(561), + [sym__expression] = STATE(240), + [sym_binary_expression] = STATE(240), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_GT_LPAREN] = ACTIONS(653), + [sym_number] = ACTIONS(655), + [anon_sym_LF] = ACTIONS(1172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), + [anon_sym_SEMI] = ACTIONS(1172), + [sym_word] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(653), + [sym_ansii_c_string] = ACTIONS(655), + [sym__special_character] = ACTIONS(671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(673), + [sym_raw_string] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(1172), + [sym_test_operator] = ACTIONS(661), + }, + [168] = { + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym_SEMI_SEMI] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + }, + [169] = { + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [anon_sym_SEMI_SEMI] = ACTIONS(1176), + [anon_sym_DASH_EQ] = ACTIONS(1178), + [anon_sym_LF] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1178), + [anon_sym_EQ_TILDE] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_LT_EQ] = ACTIONS(1178), + [sym_test_operator] = ACTIONS(1178), + }, + [170] = { + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(243), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_done] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_done] = ACTIONS(1184), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [168] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1122), - [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [ts_builtin_sym_end] = ACTIONS(1124), - [anon_sym_LT_LT_LT] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), + [171] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1186), + [anon_sym_AMP_GT_GT] = ACTIONS(1186), + [anon_sym_LF] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1186), + [anon_sym_LT_LT] = ACTIONS(1186), + [sym_file_descriptor] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_AMP_GT] = ACTIONS(1186), + [anon_sym_PIPE_PIPE] = ACTIONS(1186), + [ts_builtin_sym_end] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1186), + [anon_sym_PIPE] = ACTIONS(1186), + [anon_sym_GT_AMP] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_LT_AMP] = ACTIONS(1186), + [anon_sym_GT_GT] = ACTIONS(1186), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1186), + [anon_sym_SEMI_SEMI] = ACTIONS(1186), + [anon_sym_PIPE_AMP] = ACTIONS(1186), }, - [169] = { + [172] = { [sym_heredoc_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [sym_herestring_redirect] = STATE(98), [sym_file_redirect] = STATE(98), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [sym_file_descriptor] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [ts_builtin_sym_end] = ACTIONS(1128), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), - }, - [170] = { - [sym_heredoc_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), [sym_herestring_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [ts_builtin_sym_end] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), - }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(1130), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_SEMI_SEMI] = ACTIONS(1132), - [anon_sym_AMP] = ACTIONS(1132), - }, - [172] = { - [sym_command_substitution] = STATE(243), - [sym_simple_expansion] = STATE(243), - [sym_expansion] = STATE(243), - [aux_sym_heredoc_body_repeat1] = STATE(243), - [anon_sym_DOLLAR] = ACTIONS(1134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1138), - [sym__heredoc_body_end] = ACTIONS(1140), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1142), - [sym__heredoc_body_middle] = ACTIONS(1144), + [aux_sym_redirected_statement_repeat1] = STATE(98), + [anon_sym_LT_LT_DASH] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1190), + [anon_sym_LF] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1190), + [anon_sym_LT_LT] = ACTIONS(1190), + [sym_file_descriptor] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_PIPE_PIPE] = ACTIONS(1190), + [ts_builtin_sym_end] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_GT_AMP] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_LT_AMP] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_SEMI_SEMI] = ACTIONS(1190), + [anon_sym_PIPE_AMP] = ACTIONS(1190), }, [173] = { - [ts_builtin_sym_end] = ACTIONS(1146), + [sym_heredoc_redirect] = STATE(98), + [sym_file_redirect] = STATE(98), + [sym_herestring_redirect] = STATE(98), + [aux_sym_redirected_statement_repeat1] = STATE(98), + [anon_sym_AMP_GT_GT] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_LT_AMP] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(1190), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(1192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(1190), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(1192), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_AMP_GT] = ACTIONS(1190), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(1190), + [anon_sym_GT_AMP] = ACTIONS(1190), + [ts_builtin_sym_end] = ACTIONS(1192), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_SEMI_SEMI] = ACTIONS(1190), + [anon_sym_PIPE_AMP] = ACTIONS(1190), }, [174] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_AMP_GT_GT] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1152), - [sym_file_descriptor] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_AMP_GT] = ACTIONS(1152), - [anon_sym_PIPE_PIPE] = ACTIONS(1152), - [ts_builtin_sym_end] = ACTIONS(1154), - [anon_sym_LT_LT_LT] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_GT_AMP] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_LT_AMP] = ACTIONS(1152), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_AMP_AMP] = ACTIONS(1152), - [anon_sym_SEMI_SEMI] = ACTIONS(1152), - [anon_sym_PIPE_AMP] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1194), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), }, [175] = { - [sym_heredoc_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1156), - [sym_file_descriptor] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_AMP_GT] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [ts_builtin_sym_end] = ACTIONS(1158), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_GT_AMP] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_LT_AMP] = ACTIONS(1156), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_AMP_AMP] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(329), + [sym_expansion] = STATE(246), + [aux_sym_heredoc_body_repeat1] = STATE(246), + [sym_simple_expansion] = STATE(246), + [sym_command_substitution] = STATE(246), + [anon_sym_BQUOTE] = ACTIONS(1198), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), + [sym__heredoc_body_end] = ACTIONS(1202), + [anon_sym_DOLLAR] = ACTIONS(1204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [sym__heredoc_body_middle] = ACTIONS(1208), }, [176] = { - [sym_heredoc_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1156), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(329), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_GT_AMP] = ACTIONS(331), - [ts_builtin_sym_end] = ACTIONS(1158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1210), + [anon_sym_LF] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_SEMI_SEMI] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), }, [177] = { - [aux_sym_concatenation_repeat1] = STATE(1010), - [anon_sym_LT_LT_DASH] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_AMP_GT_GT] = ACTIONS(1160), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym_LT_LT] = ACTIONS(1160), - [sym_file_descriptor] = ACTIONS(1162), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_AMP_GT] = ACTIONS(1160), - [anon_sym_PIPE_PIPE] = ACTIONS(1160), - [ts_builtin_sym_end] = ACTIONS(1162), - [anon_sym_LT_LT_LT] = ACTIONS(1160), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_GT_AMP] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_LT_AMP] = ACTIONS(1160), - [anon_sym_GT_GT] = ACTIONS(1160), - [sym__concat] = ACTIONS(1164), - [anon_sym_AMP_AMP] = ACTIONS(1160), - [anon_sym_SEMI_SEMI] = ACTIONS(1160), - [anon_sym_PIPE_AMP] = ACTIONS(1160), + [anon_sym_LT_LT_DASH] = ACTIONS(1216), + [anon_sym_AMP_GT_GT] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_LT_LT] = ACTIONS(1216), + [sym_file_descriptor] = ACTIONS(1218), + [anon_sym_GT] = ACTIONS(1216), + [anon_sym_AMP_GT] = ACTIONS(1216), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [ts_builtin_sym_end] = ACTIONS(1218), + [anon_sym_LT_LT_LT] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_GT_AMP] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_LT_AMP] = ACTIONS(1216), + [anon_sym_GT_GT] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [anon_sym_PIPE_AMP] = ACTIONS(1216), }, [178] = { - [aux_sym__literal_repeat1] = STATE(1045), - [anon_sym_LT_LT_DASH] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_AMP_GT_GT] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_LT_LT] = ACTIONS(1166), - [sym_file_descriptor] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1166), - [anon_sym_AMP_GT] = ACTIONS(1166), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), - [ts_builtin_sym_end] = ACTIONS(1168), - [anon_sym_LT_LT_LT] = ACTIONS(1166), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_GT_AMP] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1166), - [anon_sym_LT_AMP] = ACTIONS(1166), - [anon_sym_GT_GT] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1166), - [sym__special_character] = ACTIONS(1170), - [anon_sym_SEMI_SEMI] = ACTIONS(1166), - [anon_sym_PIPE_AMP] = ACTIONS(1166), + [sym_heredoc_redirect] = STATE(98), + [sym_file_redirect] = STATE(98), + [sym_herestring_redirect] = STATE(98), + [aux_sym_redirected_statement_repeat1] = STATE(98), + [anon_sym_LT_LT_DASH] = ACTIONS(1220), + [anon_sym_AMP_GT_GT] = ACTIONS(1220), + [anon_sym_LF] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_LT_LT] = ACTIONS(1220), + [sym_file_descriptor] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1220), + [anon_sym_AMP_GT] = ACTIONS(1220), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [ts_builtin_sym_end] = ACTIONS(1222), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(341), + [anon_sym_GT_AMP] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1220), + [anon_sym_LT_AMP] = ACTIONS(1220), + [anon_sym_GT_GT] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(341), }, [179] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_AMP_GT_GT] = ACTIONS(1160), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym_LT_LT] = ACTIONS(1160), - [sym_file_descriptor] = ACTIONS(1162), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_AMP_GT] = ACTIONS(1160), - [anon_sym_PIPE_PIPE] = ACTIONS(1160), - [ts_builtin_sym_end] = ACTIONS(1162), - [anon_sym_LT_LT_LT] = ACTIONS(1160), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_GT_AMP] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_LT_AMP] = ACTIONS(1160), - [anon_sym_GT_GT] = ACTIONS(1160), - [anon_sym_AMP_AMP] = ACTIONS(1160), - [anon_sym_SEMI_SEMI] = ACTIONS(1160), - [anon_sym_PIPE_AMP] = ACTIONS(1160), + [sym_heredoc_redirect] = STATE(98), + [sym_file_redirect] = STATE(98), + [sym_herestring_redirect] = STATE(98), + [aux_sym_redirected_statement_repeat1] = STATE(98), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(1220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(1220), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(1222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(1220), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_GT_AMP] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(341), }, [180] = { - [sym_heredoc_redirect] = STATE(180), - [aux_sym_redirected_statement_repeat1] = STATE(180), - [sym_herestring_redirect] = STATE(180), - [sym_file_redirect] = STATE(180), - [anon_sym_LT_LT_DASH] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_AMP_GT_GT] = ACTIONS(1177), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_LT_LT] = ACTIONS(1172), - [sym_file_descriptor] = ACTIONS(1182), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_AMP_GT] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [ts_builtin_sym_end] = ACTIONS(1180), - [anon_sym_LT_LT_LT] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_GT_AMP] = ACTIONS(1177), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_LT_AMP] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_SEMI_SEMI] = ACTIONS(1175), - [anon_sym_PIPE_AMP] = ACTIONS(1175), + [aux_sym_concatenation_repeat1] = STATE(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(1224), + [anon_sym_AMP_GT_GT] = ACTIONS(1224), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1224), + [sym_file_descriptor] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1224), + [anon_sym_AMP_GT] = ACTIONS(1224), + [anon_sym_PIPE_PIPE] = ACTIONS(1224), + [ts_builtin_sym_end] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_GT_AMP] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_LT_AMP] = ACTIONS(1224), + [anon_sym_GT_GT] = ACTIONS(1224), + [sym__concat] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI_SEMI] = ACTIONS(1224), + [anon_sym_PIPE_AMP] = ACTIONS(1224), }, [181] = { - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [ts_builtin_sym_end] = ACTIONS(1146), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_LT_LT_DASH] = ACTIONS(1224), + [anon_sym_AMP_GT_GT] = ACTIONS(1224), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1224), + [sym_file_descriptor] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1224), + [anon_sym_AMP_GT] = ACTIONS(1224), + [anon_sym_PIPE_PIPE] = ACTIONS(1224), + [ts_builtin_sym_end] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_GT_AMP] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_LT_AMP] = ACTIONS(1224), + [anon_sym_GT_GT] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI_SEMI] = ACTIONS(1224), + [anon_sym_PIPE_AMP] = ACTIONS(1224), }, [182] = { - [sym_heredoc_body] = STATE(245), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(660), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [sym__heredoc_body_beginning] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [ts_builtin_sym_end] = ACTIONS(1146), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [aux_sym__literal_repeat1] = STATE(1061), + [anon_sym_LT_LT_DASH] = ACTIONS(1230), + [anon_sym_AMP_GT_GT] = ACTIONS(1230), + [anon_sym_LF] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_LT_LT] = ACTIONS(1230), + [sym_file_descriptor] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_AMP_GT] = ACTIONS(1230), + [anon_sym_PIPE_PIPE] = ACTIONS(1230), + [ts_builtin_sym_end] = ACTIONS(1232), + [anon_sym_LT_LT_LT] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_GT_AMP] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_AMP] = ACTIONS(1230), + [anon_sym_GT_GT] = ACTIONS(1230), + [sym__special_character] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_SEMI_SEMI] = ACTIONS(1230), + [anon_sym_PIPE_AMP] = ACTIONS(1230), }, [183] = { - [sym_command_substitution] = STATE(105), - [aux_sym__literal_repeat1] = STATE(106), - [sym_string] = STATE(105), - [sym_process_substitution] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [aux_sym_command_repeat2] = STATE(187), - [sym_concatenation] = STATE(187), - [sym_expansion] = STATE(105), - [anon_sym_PIPE_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_AMP] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(351), - [sym__special_character] = ACTIONS(31), - [anon_sym_LT_LT_DASH] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(347), - [sym_file_descriptor] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(351), - [ts_builtin_sym_end] = ACTIONS(1190), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_GT_AMP] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), + [sym_heredoc_redirect] = STATE(183), + [sym_file_redirect] = STATE(183), + [sym_herestring_redirect] = STATE(183), + [aux_sym_redirected_statement_repeat1] = STATE(183), + [anon_sym_LT_LT_DASH] = ACTIONS(1236), + [anon_sym_AMP_GT_GT] = ACTIONS(1239), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_LT_LT] = ACTIONS(1236), + [sym_file_descriptor] = ACTIONS(1246), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_AMP_GT] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(1242), + [anon_sym_LT_LT_LT] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_GT_AMP] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_LT_AMP] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_SEMI_SEMI] = ACTIONS(1244), + [anon_sym_PIPE_AMP] = ACTIONS(1244), }, [184] = { - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_number] = ACTIONS(1192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [sym_word] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [sym__special_character] = ACTIONS(1192), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [sym_file_descriptor] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [ts_builtin_sym_end] = ACTIONS(1194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [sym_ansii_c_string] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_SEMI_SEMI] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [ts_builtin_sym_end] = ACTIONS(1210), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [185] = { - [aux_sym_concatenation_repeat1] = STATE(53), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_number] = ACTIONS(1192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [sym__concat] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(1192), - [sym_word] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [sym__special_character] = ACTIONS(1192), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [sym_file_descriptor] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [ts_builtin_sym_end] = ACTIONS(1194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [sym_ansii_c_string] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_SEMI_SEMI] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), + [sym_heredoc_body] = STATE(248), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [ts_builtin_sym_end] = ACTIONS(1210), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [186] = { - [aux_sym__literal_repeat1] = STATE(91), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_AMP_GT_GT] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_BQUOTE] = ACTIONS(1196), - [anon_sym_GT_LPAREN] = ACTIONS(1196), - [sym_number] = ACTIONS(1196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), - [anon_sym_PIPE_PIPE] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [sym_word] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_LT_AMP] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_EQ_TILDE] = ACTIONS(1196), - [sym__special_character] = ACTIONS(309), - [anon_sym_LT_LT_DASH] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1196), - [sym_raw_string] = ACTIONS(1196), - [sym_file_descriptor] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_AMP_GT] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [anon_sym_LT_LT_LT] = ACTIONS(1196), - [anon_sym_GT_AMP] = ACTIONS(1196), - [ts_builtin_sym_end] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), - [anon_sym_LT_LPAREN] = ACTIONS(1196), - [sym_ansii_c_string] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1196), - [anon_sym_SEMI_SEMI] = ACTIONS(1196), - [anon_sym_PIPE_AMP] = ACTIONS(1196), + [sym_expansion] = STATE(106), + [sym_string_expansion] = STATE(106), + [sym_concatenation] = STATE(190), + [sym_string] = STATE(106), + [aux_sym__literal_repeat1] = STATE(109), + [sym_command_substitution] = STATE(106), + [sym_process_substitution] = STATE(106), + [sym_simple_expansion] = STATE(106), + [sym_arithmetic_expansion] = STATE(106), + [aux_sym_command_repeat2] = STATE(190), + [anon_sym_AMP_GT_GT] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), + [anon_sym_LT_LPAREN] = ACTIONS(365), + [sym_ansii_c_string] = ACTIONS(367), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_LT_AMP] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LT_LT_DASH] = ACTIONS(1252), + [anon_sym_GT_LPAREN] = ACTIONS(365), + [sym_number] = ACTIONS(367), + [anon_sym_LF] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [sym_file_descriptor] = ACTIONS(1254), + [sym_word] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(1254), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_GT_AMP] = ACTIONS(1252), + [sym__special_character] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(375), + [sym_raw_string] = ACTIONS(367), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1252), }, [187] = { - [sym_command_substitution] = STATE(105), - [aux_sym__literal_repeat1] = STATE(106), - [sym_string] = STATE(105), - [sym_process_substitution] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [aux_sym_command_repeat2] = STATE(187), - [sym_concatenation] = STATE(187), - [sym_expansion] = STATE(105), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1203), - [anon_sym_GT_LPAREN] = ACTIONS(1206), - [sym_number] = ACTIONS(1209), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [sym_word] = ACTIONS(1209), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1215), - [sym__special_character] = ACTIONS(1218), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1209), - [sym_file_descriptor] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1221), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [ts_builtin_sym_end] = ACTIONS(1194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), - [anon_sym_LT_LPAREN] = ACTIONS(1206), - [sym_ansii_c_string] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_SEMI_SEMI] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LPAREN] = ACTIONS(1256), + [sym_ansii_c_string] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), + [anon_sym_GT_LPAREN] = ACTIONS(1256), + [sym_number] = ACTIONS(1256), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1258), + [sym_word] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [sym__special_character] = ACTIONS(1256), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_raw_string] = ACTIONS(1256), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI_SEMI] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), }, [188] = { - [sym_string] = STATE(49), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym__] = ACTIONS(175), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(175), - [anon_sym_EQ_TILDE] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_raw_string] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(175), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(355), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [ts_builtin_sym_end] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(175), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [aux_sym_concatenation_repeat1] = STATE(61), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LPAREN] = ACTIONS(1256), + [sym_ansii_c_string] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), + [anon_sym_GT_LPAREN] = ACTIONS(1256), + [sym_number] = ACTIONS(1256), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1258), + [sym_word] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [sym__special_character] = ACTIONS(1256), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_raw_string] = ACTIONS(1256), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI_SEMI] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), }, [189] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [anon_sym_EQ_TILDE] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [ts_builtin_sym_end] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [aux_sym__literal_repeat1] = STATE(103), + [anon_sym_AMP_GT_GT] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), + [anon_sym_LT_LT] = ACTIONS(1260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1260), + [anon_sym_LT_LPAREN] = ACTIONS(1260), + [sym_ansii_c_string] = ACTIONS(1260), + [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_LT_AMP] = ACTIONS(1260), + [anon_sym_GT_GT] = ACTIONS(1260), + [anon_sym_EQ_TILDE] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_LT_LT_DASH] = ACTIONS(1260), + [anon_sym_GT_LPAREN] = ACTIONS(1260), + [sym_number] = ACTIONS(1260), + [anon_sym_LF] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), + [sym_file_descriptor] = ACTIONS(1262), + [sym_word] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1260), + [anon_sym_AMP_GT] = ACTIONS(1260), + [anon_sym_EQ_EQ] = ACTIONS(1260), + [sym__special_character] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_GT_AMP] = ACTIONS(1260), + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1260), + [sym_raw_string] = ACTIONS(1260), + [anon_sym_AMP_AMP] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI_SEMI] = ACTIONS(1260), + [anon_sym_PIPE_AMP] = ACTIONS(1260), }, [190] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(247), - [sym_concatenation] = STATE(247), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_COLON_DASH] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1239), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1239), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1239), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(106), + [sym_string_expansion] = STATE(106), + [sym_concatenation] = STATE(190), + [sym_string] = STATE(106), + [aux_sym__literal_repeat1] = STATE(109), + [sym_command_substitution] = STATE(106), + [sym_process_substitution] = STATE(106), + [sym_simple_expansion] = STATE(106), + [sym_arithmetic_expansion] = STATE(106), + [aux_sym_command_repeat2] = STATE(190), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1264), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), + [anon_sym_LT_LPAREN] = ACTIONS(1273), + [sym_ansii_c_string] = ACTIONS(1276), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), + [anon_sym_GT_LPAREN] = ACTIONS(1273), + [sym_number] = ACTIONS(1276), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1285), + [sym_file_descriptor] = ACTIONS(1258), + [sym_word] = ACTIONS(1276), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1279), + [sym__special_character] = ACTIONS(1288), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1291), + [sym_raw_string] = ACTIONS(1276), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI_SEMI] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), }, [191] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym__string_content] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), }, [192] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1245), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1248), - [sym_raw_string] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_COLON_DASH] = ACTIONS(1245), - [anon_sym_EQ] = ACTIONS(1245), - [sym_number] = ACTIONS(1259), - [anon_sym_COLON_QMARK] = ACTIONS(1245), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), - [anon_sym_BQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1271), - [sym_word] = ACTIONS(1259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1271), - [sym_ansii_c_string] = ACTIONS(1251), - [anon_sym_COLON] = ACTIONS(1245), - [sym__special_character] = ACTIONS(1277), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [193] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(247), - [sym_concatenation] = STATE(247), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1241), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_COLON_DASH] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1239), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1239), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1239), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [194] = { - [sym_command_substitution] = STATE(249), - [aux_sym__literal_repeat1] = STATE(250), - [sym_string] = STATE(249), - [sym_process_substitution] = STATE(249), - [sym_simple_expansion] = STATE(249), - [sym_string_expansion] = STATE(249), - [sym_concatenation] = STATE(251), - [sym_expansion] = STATE(249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1282), - [sym_word] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(1282), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(1243), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1302), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [sym_test_operator] = ACTIONS(1300), }, [195] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(254), - [sym_concatenation] = STATE(254), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1286), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1288), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_COLON_DASH] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1286), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1286), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1306), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1304), }, [196] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1306), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1304), }, [197] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_string] = STATE(69), + [anon_sym_0] = ACTIONS(237), + [anon_sym_AT] = ACTIONS(237), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym__] = ACTIONS(237), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1310), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1310), + [sym_file_descriptor] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(237), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [198] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1243), - [sym__concat] = ACTIONS(1298), + [sym_compound_statement] = STATE(249), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(53), }, [199] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1302), - [sym_comment] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_SEMI_SEMI] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), }, [200] = { - [anon_sym_RBRACE] = ACTIONS(1243), - [sym_comment] = ACTIONS(41), + [anon_sym_LT_LT_DASH] = ACTIONS(1320), + [anon_sym_AMP_GT_GT] = ACTIONS(1320), + [anon_sym_LF] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_LT_LT] = ACTIONS(1320), + [sym_file_descriptor] = ACTIONS(1322), + [anon_sym_GT] = ACTIONS(1320), + [anon_sym_AMP_GT] = ACTIONS(1320), + [anon_sym_PIPE_PIPE] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_GT_AMP] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_LT_AMP] = ACTIONS(1320), + [anon_sym_GT_GT] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI_SEMI] = ACTIONS(1320), + [anon_sym_PIPE_AMP] = ACTIONS(1320), }, [201] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [ts_builtin_sym_end] = ACTIONS(1306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(251), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_fi] = ACTIONS(1324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [202] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(257), - [sym_concatenation] = STATE(257), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1310), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_COLON_DASH] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1308), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1308), - [sym__special_character] = ACTIONS(459), + [sym__terminated_statement] = STATE(252), + [sym_if_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_negated_command] = STATE(71), + [sym_test_command] = STATE(71), + [sym_variable_assignment] = STATE(72), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_compound_statement] = STATE(71), + [sym_subshell] = STATE(71), + [sym_declaration_command] = STATE(71), + [sym_unset_command] = STATE(71), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_pipeline] = STATE(71), + [sym_list] = STATE(71), + [sym_command] = STATE(71), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [203] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_LF] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1328), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(1328), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [204] = { - [sym_compound_statement] = STATE(258), - [anon_sym_LBRACE] = ACTIONS(27), - [sym_comment] = ACTIONS(41), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(1326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(1328), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(1328), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [205] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_AMP_GT_GT] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1314), - [sym_file_descriptor] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_AMP_GT] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [ts_builtin_sym_end] = ACTIONS(1316), - [anon_sym_LT_LT_LT] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_GT_AMP] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_LT_AMP] = ACTIONS(1314), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_SEMI_SEMI] = ACTIONS(1314), - [anon_sym_PIPE_AMP] = ACTIONS(1314), + [sym_comment] = ACTIONS(53), + [anon_sym_fi] = ACTIONS(1330), }, [206] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_SEMI_SEMI] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - }, - [207] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1322), - [sym_file_descriptor] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_AMP_GT] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [ts_builtin_sym_end] = ACTIONS(1324), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_GT_AMP] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_SEMI_SEMI] = ACTIONS(1322), - [anon_sym_PIPE_AMP] = ACTIONS(1322), - }, - [208] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(260), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_elif_clause] = STATE(258), + [sym_else_clause] = STATE(256), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(257), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [aux_sym_if_statement_repeat1] = STATE(258), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(1326), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_fi] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1004), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_elif] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(105), + }, + [207] = { + [sym_elif_clause] = STATE(259), + [aux_sym_if_statement_repeat1] = STATE(259), + [sym_else_clause] = STATE(256), + [anon_sym_elif] = ACTIONS(1334), + [anon_sym_fi] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1336), + [sym_comment] = ACTIONS(53), + }, + [208] = { + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_SEMI_SEMI] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), }, [209] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym__terminated_statement] = STATE(261), - [sym_if_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_negated_command] = STATE(65), - [sym_test_command] = STATE(65), - [sym_variable_assignment] = STATE(66), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_compound_statement] = STATE(65), - [sym_subshell] = STATE(65), - [sym_declaration_command] = STATE(65), - [sym_unset_command] = STATE(65), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_case_statement] = STATE(65), - [sym_pipeline] = STATE(65), - [sym_list] = STATE(65), - [sym_command] = STATE(65), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(263), + [sym_string_expansion] = STATE(262), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [aux_sym__literal_repeat1] = STATE(265), + [sym_last_case_item] = STATE(266), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(263), + [sym_arithmetic_expansion] = STATE(262), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1344), + [sym__special_character] = ACTIONS(1346), + [anon_sym_esac] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1344), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [210] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1330), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_SEMI_SEMI] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), }, [211] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(491), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1330), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(1330), - [anon_sym_PIPE_AMP] = ACTIONS(491), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(269), + [sym_string_expansion] = STATE(262), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [aux_sym__literal_repeat1] = STATE(265), + [sym_last_case_item] = STATE(270), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(269), + [sym_arithmetic_expansion] = STATE(262), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1344), + [sym__special_character] = ACTIONS(1346), + [anon_sym_esac] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1344), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [212] = { - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1332), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [213] = { - [aux_sym_if_statement_repeat1] = STATE(265), - [sym_elif_clause] = STATE(265), - [sym_else_clause] = STATE(266), - [anon_sym_elif] = ACTIONS(1334), - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1336), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(272), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(272), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [214] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_elif_clause] = STATE(267), - [sym_else_clause] = STATE(266), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_if_statement_repeat1] = STATE(267), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(268), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_fi] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(979), - [sym_number] = ACTIONS(75), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_elif] = ACTIONS(981), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_LT_LPAREN] = ACTIONS(73), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [215] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1369), + [sym_number] = ACTIONS(1372), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1378), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_COLON_QMARK] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1366), + [sym_ansii_c_string] = ACTIONS(1386), + [anon_sym_COLON] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1392), + [sym__special_character] = ACTIONS(1395), + [anon_sym_LT_LPAREN] = ACTIONS(1369), + [sym_word] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1398), + [sym_raw_string] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1401), }, [216] = { - [sym_command_substitution] = STATE(270), - [aux_sym__literal_repeat1] = STATE(272), - [sym_case_item] = STATE(274), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(273), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(274), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_BQUOTE] = ACTIONS(243), - [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(272), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(272), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(1404), }, [217] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_SEMI_SEMI] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), + [sym_expansion] = STATE(274), + [sym_concatenation] = STATE(275), + [sym_string] = STATE(274), + [sym_command_substitution] = STATE(274), + [sym_process_substitution] = STATE(274), + [aux_sym__literal_repeat1] = STATE(276), + [sym_simple_expansion] = STATE(274), + [sym_arithmetic_expansion] = STATE(274), + [sym_string_expansion] = STATE(274), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(1406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1364), + [sym_word] = ACTIONS(1406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(1408), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [218] = { - [sym_command_substitution] = STATE(270), - [aux_sym__literal_repeat1] = STATE(272), - [sym_case_item] = STATE(279), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(278), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(279), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_BQUOTE] = ACTIONS(243), - [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(245), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_EQ_TILDE] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [sym_file_descriptor] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_AMP_GT] = ACTIONS(1410), + [anon_sym_EQ_EQ] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [219] = { - [anon_sym_PLUS_EQ] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_DASH_EQ] = ACTIONS(1356), - [anon_sym_BANG_EQ] = ACTIONS(1356), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1358), - [sym_test_operator] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1356), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(279), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(279), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1414), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(1420), }, [220] = { - [anon_sym_PLUS_EQ] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1360), - [anon_sym_PIPE_PIPE] = ACTIONS(1360), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_DASH_EQ] = ACTIONS(1360), - [anon_sym_BANG_EQ] = ACTIONS(1360), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1362), - [sym_test_operator] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1360), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [221] = { - [anon_sym_PLUS_EQ] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1360), - [anon_sym_PIPE_PIPE] = ACTIONS(1360), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_DASH_EQ] = ACTIONS(1360), - [anon_sym_BANG_EQ] = ACTIONS(1360), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1362), - [sym_test_operator] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1360), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1364), + [sym__concat] = ACTIONS(1422), }, [222] = { - [aux_sym_concatenation_repeat1] = STATE(1138), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1364), - [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_RPAREN] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [anon_sym_GT_LPAREN] = ACTIONS(1364), - [sym_number] = ACTIONS(1366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym__concat] = ACTIONS(1368), - [sym_word] = ACTIONS(1366), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), - [anon_sym_LT_LPAREN] = ACTIONS(1364), - [sym_ansii_c_string] = ACTIONS(1364), - [sym__special_character] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [sym_comment] = ACTIONS(53), }, [223] = { - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_AMP_GT_GT] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_GT_LPAREN] = ACTIONS(1370), - [sym_number] = ACTIONS(1370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [sym_word] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_LT_AMP] = ACTIONS(1370), - [anon_sym_GT_GT] = ACTIONS(1370), - [sym__special_character] = ACTIONS(1370), - [anon_sym_LT_LT_DASH] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [sym_raw_string] = ACTIONS(1370), - [sym_variable_name] = ACTIONS(1372), - [sym_file_descriptor] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_AMP_GT] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_LT_LT_LT] = ACTIONS(1370), - [anon_sym_GT_AMP] = ACTIONS(1370), - [ts_builtin_sym_end] = ACTIONS(1372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), - [anon_sym_LT_LPAREN] = ACTIONS(1370), - [sym_ansii_c_string] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_SEMI_SEMI] = ACTIONS(1370), - [anon_sym_PIPE_AMP] = ACTIONS(1370), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1426), }, [224] = { - [aux_sym__literal_repeat1] = STATE(1173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1374), - [sym_word] = ACTIONS(1376), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1374), - [sym_ansii_c_string] = ACTIONS(1374), - [anon_sym_BQUOTE] = ACTIONS(1374), - [anon_sym_LT_LPAREN] = ACTIONS(1374), - [sym__special_character] = ACTIONS(1378), - [sym_number] = ACTIONS(1376), - [anon_sym_GT_LPAREN] = ACTIONS(1374), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_EQ_TILDE] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [anon_sym_EQ_EQ] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [225] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(281), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(281), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1380), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(282), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(282), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1432), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [226] = { - [anon_sym_PLUS_EQ] = ACTIONS(1382), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1382), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [227] = { - [sym_command_substitution] = STATE(819), - [sym_simple_expansion] = STATE(819), - [sym_string_expansion] = STATE(819), - [sym_string] = STATE(819), - [sym_process_substitution] = STATE(819), - [sym_expansion] = STATE(819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1386), - [sym_word] = ACTIONS(1388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(289), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym__special_character] = ACTIONS(1388), - [sym_number] = ACTIONS(1388), + [anon_sym_AMP_GT_GT] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LPAREN] = ACTIONS(1438), + [sym_ansii_c_string] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_LT_AMP] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_LT_LT_DASH] = ACTIONS(1438), + [anon_sym_GT_LPAREN] = ACTIONS(1438), + [sym_number] = ACTIONS(1438), + [anon_sym_LF] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), + [sym_variable_name] = ACTIONS(1440), + [sym_file_descriptor] = ACTIONS(1440), + [sym_word] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_AMP_GT] = ACTIONS(1438), + [sym__special_character] = ACTIONS(1438), + [anon_sym_LT_LT_LT] = ACTIONS(1438), + [anon_sym_GT_AMP] = ACTIONS(1438), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1438), + [sym_raw_string] = ACTIONS(1438), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI_SEMI] = ACTIONS(1438), + [anon_sym_PIPE_AMP] = ACTIONS(1438), }, [228] = { - [anon_sym_PLUS_EQ] = ACTIONS(1392), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1392), + [aux_sym_concatenation_repeat1] = STATE(1188), + [anon_sym_GT_LPAREN] = ACTIONS(1442), + [sym_number] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [sym_word] = ACTIONS(1444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1444), + [anon_sym_LT_LPAREN] = ACTIONS(1442), + [sym_ansii_c_string] = ACTIONS(1442), + [sym__special_character] = ACTIONS(1442), + [sym__concat] = ACTIONS(1446), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1442), + [sym_raw_string] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1444), }, [229] = { - [anon_sym_RBRACK] = ACTIONS(1396), - [sym_comment] = ACTIONS(41), + [aux_sym__literal_repeat1] = STATE(1193), + [anon_sym_GT_LPAREN] = ACTIONS(1448), + [sym_number] = ACTIONS(1450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), + [sym_word] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_LT_LPAREN] = ACTIONS(1448), + [sym_ansii_c_string] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1452), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1448), + [sym_raw_string] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1450), }, [230] = { - [anon_sym_RBRACK] = ACTIONS(1390), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(284), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(284), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(1454), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [231] = { - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_BQUOTE] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1398), - [sym__string_content] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [sym__concat] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1456), + [sym_comment] = ACTIONS(53), }, [232] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [ts_builtin_sym_end] = ACTIONS(1402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [sym_expansion] = STATE(1000), + [sym_string_expansion] = STATE(1000), + [sym_simple_expansion] = STATE(1000), + [sym_string] = STATE(1000), + [sym_command_substitution] = STATE(1000), + [sym_process_substitution] = STATE(1000), + [sym_arithmetic_expansion] = STATE(1000), + [anon_sym_GT_LPAREN] = ACTIONS(617), + [sym_number] = ACTIONS(1460), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), + [sym_word] = ACTIONS(1460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [anon_sym_LT_LPAREN] = ACTIONS(617), + [sym_ansii_c_string] = ACTIONS(1464), + [sym__special_character] = ACTIONS(1460), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(633), + [sym_raw_string] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(635), }, [233] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_RBRACK] = ACTIONS(1462), + [sym_comment] = ACTIONS(53), }, [234] = { - [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(287), - [sym_postfix_expression] = STATE(287), - [sym_string] = STATE(71), - [aux_sym__literal_repeat1] = STATE(73), - [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(287), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(287), - [sym_binary_expression] = STATE(287), - [sym_concatenation] = STATE(287), - [sym_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [sym__concat] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1466), + [sym_comment] = ACTIONS(53), }, [235] = { - [anon_sym_BANG_EQ] = ACTIONS(1096), - [anon_sym_PLUS_EQ] = ACTIONS(1096), - [anon_sym_DASH_EQ] = ACTIONS(1096), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_EQ] = ACTIONS(1096), - [sym_test_operator] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_PIPE_PIPE] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_EQ_TILDE] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1096), - [anon_sym_AMP_AMP] = ACTIONS(1096), - [anon_sym_SEMI_SEMI] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1470), + [sym_comment] = ACTIONS(53), }, [236] = { - [sym_command_substitution] = STATE(560), - [sym_unary_expression] = STATE(289), - [sym_postfix_expression] = STATE(289), - [sym_string] = STATE(560), - [aux_sym__literal_repeat1] = STATE(562), - [sym_process_substitution] = STATE(560), - [sym_parenthesized_expression] = STATE(289), - [sym_simple_expansion] = STATE(560), - [sym_string_expansion] = STATE(560), - [sym__expression] = STATE(289), - [sym_binary_expression] = STATE(289), - [sym_concatenation] = STATE(289), - [sym_expansion] = STATE(560), - [anon_sym_LPAREN] = ACTIONS(607), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_test_operator] = ACTIONS(613), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_GT_LPAREN] = ACTIONS(621), - [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(625), - [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), - [anon_sym_LT_LPAREN] = ACTIONS(621), - [sym_ansii_c_string] = ACTIONS(609), - [sym__special_character] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_LT_LT_DASH] = ACTIONS(1472), + [anon_sym_AMP_GT_GT] = ACTIONS(1472), + [anon_sym_LF] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LT_LT] = ACTIONS(1472), + [sym_file_descriptor] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_AMP_GT] = ACTIONS(1472), + [anon_sym_PIPE_PIPE] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_GT_AMP] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_LT_AMP] = ACTIONS(1472), + [anon_sym_GT_GT] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI_SEMI] = ACTIONS(1472), + [anon_sym_PIPE_AMP] = ACTIONS(1472), }, [237] = { - [sym_command_substitution] = STATE(483), - [aux_sym__literal_repeat1] = STATE(485), - [sym_string] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_for_statement_repeat1] = STATE(504), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_concatenation] = STATE(504), - [sym_expansion] = STATE(483), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1412), - [anon_sym_GT_LPAREN] = ACTIONS(1414), - [sym_number] = ACTIONS(1108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_word] = ACTIONS(1108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1420), - [anon_sym_LT_LPAREN] = ACTIONS(1414), - [sym_ansii_c_string] = ACTIONS(1108), - [sym__special_character] = ACTIONS(1422), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), + [sym_expansion] = STATE(488), + [sym_concatenation] = STATE(508), + [sym_string] = STATE(488), + [sym_command_substitution] = STATE(488), + [sym_process_substitution] = STATE(488), + [aux_sym__literal_repeat1] = STATE(489), + [aux_sym_for_statement_repeat1] = STATE(508), + [sym_simple_expansion] = STATE(488), + [sym_arithmetic_expansion] = STATE(488), + [sym_string_expansion] = STATE(488), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1156), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [sym_word] = ACTIONS(1156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1156), + [sym__special_character] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1490), + [sym_raw_string] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1170), + [anon_sym_SEMI_SEMI] = ACTIONS(1482), }, [238] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_AMP_GT_GT] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1424), - [sym_file_descriptor] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1424), - [anon_sym_AMP_GT] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [ts_builtin_sym_end] = ACTIONS(1426), - [anon_sym_LT_LT_LT] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1424), - [anon_sym_GT_AMP] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_LT_AMP] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_SEMI_SEMI] = ACTIONS(1424), - [anon_sym_PIPE_AMP] = ACTIONS(1424), + [anon_sym_LT_LT_DASH] = ACTIONS(1492), + [anon_sym_AMP_GT_GT] = ACTIONS(1492), + [anon_sym_LF] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT_LT] = ACTIONS(1492), + [sym_file_descriptor] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_AMP_GT] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1494), + [anon_sym_LT_LT_LT] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_GT_AMP] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_LT_AMP] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_SEMI_SEMI] = ACTIONS(1492), + [anon_sym_PIPE_AMP] = ACTIONS(1492), }, [239] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(291), + [sym_postfix_expression] = STATE(291), + [sym_concatenation] = STATE(291), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(291), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(291), + [sym_binary_expression] = STATE(291), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1496), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, [240] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(268), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_done] = ACTIONS(1432), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [anon_sym_SEMI_SEMI] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1178), + [anon_sym_LF] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1178), + [anon_sym_EQ_TILDE] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_LT_EQ] = ACTIONS(1178), + [sym_test_operator] = ACTIONS(1178), }, [241] = { - [anon_sym__] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_0] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1436), - [aux_sym__simple_variable_name_token1] = ACTIONS(1434), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_QMARK] = ACTIONS(1438), + [sym_expansion] = STATE(561), + [sym_unary_expression] = STATE(293), + [sym_postfix_expression] = STATE(293), + [sym_concatenation] = STATE(293), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [sym_parenthesized_expression] = STATE(293), + [aux_sym__literal_repeat1] = STATE(563), + [sym_simple_expansion] = STATE(561), + [sym__expression] = STATE(293), + [sym_binary_expression] = STATE(293), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_GT_LPAREN] = ACTIONS(653), + [sym_number] = ACTIONS(655), + [anon_sym_LF] = ACTIONS(1498), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), + [anon_sym_SEMI] = ACTIONS(1498), + [sym_word] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(653), + [sym_ansii_c_string] = ACTIONS(655), + [sym__special_character] = ACTIONS(671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(673), + [sym_raw_string] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_SEMI_SEMI] = ACTIONS(1498), + [sym_test_operator] = ACTIONS(661), }, [242] = { - [ts_builtin_sym_end] = ACTIONS(1440), + [anon_sym_LT_LT_DASH] = ACTIONS(1500), + [anon_sym_AMP_GT_GT] = ACTIONS(1500), + [anon_sym_LF] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1500), + [sym_file_descriptor] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1502), + [anon_sym_LT_LT_LT] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_GT_AMP] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_LT_AMP] = ACTIONS(1500), + [anon_sym_GT_GT] = ACTIONS(1500), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_SEMI_SEMI] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_SEMI_SEMI] = ACTIONS(1500), + [anon_sym_PIPE_AMP] = ACTIONS(1500), }, [243] = { - [sym_command_substitution] = STATE(293), - [sym_simple_expansion] = STATE(293), - [sym_expansion] = STATE(293), - [aux_sym_heredoc_body_repeat1] = STATE(293), - [anon_sym_DOLLAR] = ACTIONS(1134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1138), - [sym__heredoc_body_end] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1142), - [sym__heredoc_body_middle] = ACTIONS(1446), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(257), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_done] = ACTIONS(1504), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [244] = { - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_local] = ACTIONS(1448), - [anon_sym_typeset] = ACTIONS(1448), - [anon_sym_unsetenv] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_number] = ACTIONS(1448), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1448), - [sym_word] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_declare] = ACTIONS(1448), - [sym_variable_name] = ACTIONS(1450), - [sym_file_descriptor] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_AMP_GT] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [ts_builtin_sym_end] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_GT_AMP] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_LT_LPAREN] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [sym_ansii_c_string] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_LF] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_SEMI_SEMI] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_SEMI_SEMI] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_0] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1514), + [aux_sym__simple_variable_name_token1] = ACTIONS(1512), + [anon_sym__] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1514), }, [246] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [anon_sym_EQ_TILDE] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [sym_expansion] = STATE(296), + [aux_sym_heredoc_body_repeat1] = STATE(296), + [sym_simple_expansion] = STATE(296), + [sym_command_substitution] = STATE(296), + [anon_sym_BQUOTE] = ACTIONS(1198), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), + [sym__heredoc_body_end] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [sym__heredoc_body_middle] = ACTIONS(1518), }, [247] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_typeset] = ACTIONS(1520), + [anon_sym_unsetenv] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [anon_sym_LT_LPAREN] = ACTIONS(1522), + [sym_ansii_c_string] = ACTIONS(1522), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), + [sym_number] = ACTIONS(1520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_declare] = ACTIONS(1520), + [anon_sym_GT_LPAREN] = ACTIONS(1522), + [sym_file_descriptor] = ACTIONS(1522), + [sym_word] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [sym_variable_name] = ACTIONS(1522), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_readonly] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [ts_builtin_sym_end] = ACTIONS(1524), + [sym__special_character] = ACTIONS(1520), + [anon_sym_GT_AMP] = ACTIONS(1522), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), }, [248] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(296), - [sym_concatenation] = STATE(296), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1464), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_COLON_DASH] = ACTIONS(1464), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1464), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1464), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1464), - [sym__special_character] = ACTIONS(459), + [ts_builtin_sym_end] = ACTIONS(1524), + [anon_sym_LF] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_SEMI_SEMI] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), }, [249] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1462), - [sym__concat] = ACTIONS(1298), + [anon_sym_LT_LT_DASH] = ACTIONS(1530), + [anon_sym_AMP_GT_GT] = ACTIONS(1530), + [anon_sym_LF] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [sym_file_descriptor] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_AMP_GT] = ACTIONS(1530), + [anon_sym_PIPE_PIPE] = ACTIONS(1530), + [ts_builtin_sym_end] = ACTIONS(1532), + [anon_sym_LT_LT_LT] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_GT_AMP] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_LT_AMP] = ACTIONS(1530), + [anon_sym_GT_GT] = ACTIONS(1530), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_SEMI_SEMI] = ACTIONS(1530), + [anon_sym_PIPE_AMP] = ACTIONS(1530), }, [250] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1468), - [sym_comment] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_typeset] = ACTIONS(1520), + [anon_sym_unsetenv] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [anon_sym_LT_LPAREN] = ACTIONS(1522), + [sym_ansii_c_string] = ACTIONS(1522), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), + [sym_number] = ACTIONS(1520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_declare] = ACTIONS(1520), + [anon_sym_GT_LPAREN] = ACTIONS(1522), + [sym_file_descriptor] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [sym_word] = ACTIONS(1520), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_readonly] = ACTIONS(1520), + [sym_variable_name] = ACTIONS(1522), + [anon_sym_unset] = ACTIONS(1520), + [sym__special_character] = ACTIONS(1520), + [anon_sym_GT_AMP] = ACTIONS(1522), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), }, [251] = { - [anon_sym_RBRACE] = ACTIONS(1462), - [sym_comment] = ACTIONS(41), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(257), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_fi] = ACTIONS(1534), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [252] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [anon_sym_EQ_TILDE] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_EQ_EQ] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [anon_sym_then] = ACTIONS(1536), + [sym_comment] = ACTIONS(53), }, [253] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(299), - [sym_concatenation] = STATE(299), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1476), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_COLON_DASH] = ACTIONS(1474), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(1474), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(1474), - [sym__special_character] = ACTIONS(459), + [sym_heredoc_body] = STATE(299), + [anon_sym_AMP_GT_GT] = ACTIONS(1538), + [anon_sym_typeset] = ACTIONS(1540), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1540), + [anon_sym_done] = ACTIONS(1540), + [anon_sym_LT_LPAREN] = ACTIONS(1538), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_LT_AMP] = ACTIONS(1538), + [anon_sym_export] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_GT_LPAREN] = ACTIONS(1538), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1538), + [anon_sym_declare] = ACTIONS(1540), + [sym_variable_name] = ACTIONS(1538), + [sym_word] = ACTIONS(1540), + [sym__heredoc_body_beginning] = ACTIONS(996), + [anon_sym_readonly] = ACTIONS(1540), + [anon_sym_unset] = ACTIONS(1540), + [sym__special_character] = ACTIONS(1540), + [anon_sym_GT_AMP] = ACTIONS(1538), + [sym_comment] = ACTIONS(53), + [anon_sym_elif] = ACTIONS(1540), + [sym_raw_string] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_local] = ACTIONS(1540), + [anon_sym_unsetenv] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_fi] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [sym_ansii_c_string] = ACTIONS(1538), + [anon_sym_function] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_case] = ACTIONS(1540), + [sym_number] = ACTIONS(1540), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1540), + [sym_file_descriptor] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_AMP_GT] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), }, [254] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(1538), + [anon_sym_typeset] = ACTIONS(1540), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1540), + [anon_sym_done] = ACTIONS(1540), + [anon_sym_LT_LPAREN] = ACTIONS(1538), + [anon_sym_LT_AMP] = ACTIONS(1538), + [anon_sym_export] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_GT_LPAREN] = ACTIONS(1538), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1538), + [anon_sym_declare] = ACTIONS(1540), + [sym_variable_name] = ACTIONS(1538), + [sym_word] = ACTIONS(1540), + [anon_sym_readonly] = ACTIONS(1540), + [anon_sym_unset] = ACTIONS(1540), + [sym__special_character] = ACTIONS(1540), + [anon_sym_GT_AMP] = ACTIONS(1538), + [sym_comment] = ACTIONS(53), + [anon_sym_elif] = ACTIONS(1540), + [sym_raw_string] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_local] = ACTIONS(1540), + [anon_sym_unsetenv] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_fi] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [sym_ansii_c_string] = ACTIONS(1538), + [anon_sym_function] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_case] = ACTIONS(1540), + [sym_number] = ACTIONS(1540), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1540), + [sym_file_descriptor] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_AMP_GT] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), }, [255] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [anon_sym_EQ_TILDE] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_EQ_EQ] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [ts_builtin_sym_end] = ACTIONS(1482), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(1542), + [anon_sym_AMP_GT_GT] = ACTIONS(1542), + [anon_sym_LF] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_LT_LT] = ACTIONS(1542), + [sym_file_descriptor] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_AMP_GT] = ACTIONS(1542), + [anon_sym_PIPE_PIPE] = ACTIONS(1542), + [ts_builtin_sym_end] = ACTIONS(1544), + [anon_sym_LT_LT_LT] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_GT_AMP] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_LT_AMP] = ACTIONS(1542), + [anon_sym_GT_GT] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI_SEMI] = ACTIONS(1542), + [anon_sym_PIPE_AMP] = ACTIONS(1542), }, [256] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [anon_sym_EQ_TILDE] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_EQ_EQ] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [ts_builtin_sym_end] = ACTIONS(1486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [sym_comment] = ACTIONS(53), + [anon_sym_fi] = ACTIONS(1546), }, [257] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(257), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_AMP_GT_GT] = ACTIONS(1548), + [anon_sym_typeset] = ACTIONS(1551), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1554), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1557), + [anon_sym_done] = ACTIONS(1540), + [anon_sym_LT_LPAREN] = ACTIONS(1560), + [anon_sym_LT_AMP] = ACTIONS(1548), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_GT_LPAREN] = ACTIONS(1560), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1569), + [anon_sym_declare] = ACTIONS(1551), + [sym_variable_name] = ACTIONS(1572), + [sym_word] = ACTIONS(1575), + [anon_sym_readonly] = ACTIONS(1551), + [anon_sym_unset] = ACTIONS(1578), + [sym__special_character] = ACTIONS(1581), + [anon_sym_GT_AMP] = ACTIONS(1548), + [sym_comment] = ACTIONS(53), + [anon_sym_elif] = ACTIONS(1540), + [sym_raw_string] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_local] = ACTIONS(1551), + [anon_sym_unsetenv] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_fi] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [sym_ansii_c_string] = ACTIONS(1584), + [anon_sym_function] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_GT_GT] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1605), + [sym_number] = ACTIONS(1608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1614), + [sym_file_descriptor] = ACTIONS(1617), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_AMP_GT] = ACTIONS(1602), + [anon_sym_BQUOTE] = ACTIONS(1620), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1629), }, [258] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_AMP_GT_GT] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [sym_file_descriptor] = ACTIONS(1492), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_AMP_GT] = ACTIONS(1490), - [anon_sym_PIPE_PIPE] = ACTIONS(1490), - [ts_builtin_sym_end] = ACTIONS(1492), - [anon_sym_LT_LT_LT] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_GT_AMP] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_AMP] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_SEMI_SEMI] = ACTIONS(1490), - [anon_sym_PIPE_AMP] = ACTIONS(1490), + [sym_elif_clause] = STATE(259), + [aux_sym_if_statement_repeat1] = STATE(259), + [sym_else_clause] = STATE(301), + [anon_sym_elif] = ACTIONS(1334), + [anon_sym_fi] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1336), + [sym_comment] = ACTIONS(53), }, [259] = { - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_local] = ACTIONS(1448), - [anon_sym_typeset] = ACTIONS(1448), - [anon_sym_unsetenv] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_number] = ACTIONS(1448), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1448), - [sym_word] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_declare] = ACTIONS(1448), - [sym_variable_name] = ACTIONS(1450), - [sym_file_descriptor] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_AMP_GT] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_GT_AMP] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_LT_LPAREN] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [sym_ansii_c_string] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [sym_elif_clause] = STATE(259), + [aux_sym_if_statement_repeat1] = STATE(259), + [anon_sym_elif] = ACTIONS(1632), + [anon_sym_fi] = ACTIONS(1635), + [anon_sym_else] = ACTIONS(1635), + [sym_comment] = ACTIONS(53), }, [260] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(268), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(1494), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(303), + [sym_string_expansion] = STATE(262), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [aux_sym__literal_repeat1] = STATE(265), + [sym_last_case_item] = STATE(304), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(303), + [sym_arithmetic_expansion] = STATE(262), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1344), + [sym__special_character] = ACTIONS(1346), + [anon_sym_esac] = ACTIONS(1637), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1344), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [261] = { - [anon_sym_then] = ACTIONS(1496), - [sym_comment] = ACTIONS(41), + [anon_sym_LT_LT_DASH] = ACTIONS(1639), + [anon_sym_AMP_GT_GT] = ACTIONS(1639), + [anon_sym_LF] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1639), + [sym_file_descriptor] = ACTIONS(1641), + [anon_sym_GT] = ACTIONS(1639), + [anon_sym_AMP_GT] = ACTIONS(1639), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [ts_builtin_sym_end] = ACTIONS(1641), + [anon_sym_LT_LT_LT] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_GT_AMP] = ACTIONS(1639), + [anon_sym_LT] = ACTIONS(1639), + [anon_sym_LT_AMP] = ACTIONS(1639), + [anon_sym_GT_GT] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_SEMI_SEMI] = ACTIONS(1639), + [anon_sym_PIPE_AMP] = ACTIONS(1639), }, [262] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1498), - [anon_sym_typeset] = ACTIONS(1500), - [anon_sym_DOLLAR] = ACTIONS(1500), - [anon_sym_BQUOTE] = ACTIONS(1498), - [anon_sym_done] = ACTIONS(1500), - [anon_sym_GT_LPAREN] = ACTIONS(1498), - [sym_word] = ACTIONS(1500), - [anon_sym_LT_AMP] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1500), - [sym__special_character] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1498), - [sym_raw_string] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1500), - [sym_variable_name] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1500), - [anon_sym_unset] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_GT_AMP] = ACTIONS(1498), - [anon_sym_elif] = ACTIONS(1500), - [sym_ansii_c_string] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_local] = ACTIONS(1500), - [anon_sym_unsetenv] = ACTIONS(1500), - [anon_sym_fi] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [sym_number] = ACTIONS(1500), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1498), - [anon_sym_function] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [sym_file_descriptor] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1500), - [anon_sym_AMP_GT] = ACTIONS(1500), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1498), - [anon_sym_LT_LPAREN] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [aux_sym_concatenation_repeat1] = STATE(2566), + [aux_sym_case_item_repeat1] = STATE(307), + [anon_sym_RPAREN] = ACTIONS(1643), + [sym__concat] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1645), + [sym_comment] = ACTIONS(53), }, [263] = { - [sym_heredoc_body] = STATE(302), - [anon_sym_AMP_GT_GT] = ACTIONS(1498), - [anon_sym_typeset] = ACTIONS(1500), - [anon_sym_DOLLAR] = ACTIONS(1500), - [anon_sym_BQUOTE] = ACTIONS(1498), - [anon_sym_done] = ACTIONS(1500), - [anon_sym_GT_LPAREN] = ACTIONS(1498), - [sym_word] = ACTIONS(1500), - [sym__simple_heredoc_body] = ACTIONS(969), - [anon_sym_LT_AMP] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1500), - [sym__special_character] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1498), - [sym_raw_string] = ACTIONS(1498), - [anon_sym_declare] = ACTIONS(1500), - [sym_variable_name] = ACTIONS(1498), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_readonly] = ACTIONS(1500), - [anon_sym_unset] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_GT_AMP] = ACTIONS(1498), - [anon_sym_elif] = ACTIONS(1500), - [sym_ansii_c_string] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_local] = ACTIONS(1500), - [anon_sym_unsetenv] = ACTIONS(1500), - [anon_sym_fi] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [sym_number] = ACTIONS(1500), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1498), - [anon_sym_function] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [sym_file_descriptor] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1500), - [anon_sym_AMP_GT] = ACTIONS(1500), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1498), - [anon_sym_LT_LPAREN] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(308), + [sym_string_expansion] = STATE(262), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [aux_sym__literal_repeat1] = STATE(265), + [sym_last_case_item] = STATE(304), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(308), + [sym_arithmetic_expansion] = STATE(262), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym__special_character] = ACTIONS(1346), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_raw_string] = ACTIONS(1344), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_ansii_c_string] = ACTIONS(1344), + [anon_sym_LT_LPAREN] = ACTIONS(1098), }, [264] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_AMP_GT_GT] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_LT_LT] = ACTIONS(1502), - [sym_file_descriptor] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_AMP_GT] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [ts_builtin_sym_end] = ACTIONS(1504), - [anon_sym_LT_LT_LT] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_GT_AMP] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_LT_AMP] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_SEMI_SEMI] = ACTIONS(1502), - [anon_sym_PIPE_AMP] = ACTIONS(1502), + [aux_sym_case_item_repeat1] = STATE(307), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1643), + [sym_comment] = ACTIONS(53), }, [265] = { - [aux_sym_if_statement_repeat1] = STATE(265), - [sym_elif_clause] = STATE(265), - [anon_sym_elif] = ACTIONS(1506), - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1509), - [anon_sym_else] = ACTIONS(1509), + [aux_sym__literal_repeat1] = STATE(1193), + [aux_sym_case_item_repeat1] = STATE(310), + [anon_sym_RPAREN] = ACTIONS(1647), + [sym__special_character] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1645), + [sym_comment] = ACTIONS(53), }, [266] = { - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1511), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(1649), }, [267] = { - [aux_sym_if_statement_repeat1] = STATE(265), - [sym_elif_clause] = STATE(265), - [sym_else_clause] = STATE(304), - [anon_sym_elif] = ACTIONS(1334), - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1511), - [anon_sym_else] = ACTIONS(1336), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(312), + [sym_string_expansion] = STATE(262), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [aux_sym__literal_repeat1] = STATE(265), + [sym_last_case_item] = STATE(313), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(312), + [sym_arithmetic_expansion] = STATE(262), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1344), + [sym__special_character] = ACTIONS(1346), + [anon_sym_esac] = ACTIONS(1651), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1344), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [268] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(268), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_AMP_GT_GT] = ACTIONS(1513), - [anon_sym_typeset] = ACTIONS(1516), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_BQUOTE] = ACTIONS(1522), - [anon_sym_done] = ACTIONS(1500), - [anon_sym_GT_LPAREN] = ACTIONS(1525), - [sym_word] = ACTIONS(1528), - [anon_sym_LT_AMP] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1516), - [sym__special_character] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1534), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1537), - [sym_raw_string] = ACTIONS(1540), - [anon_sym_declare] = ACTIONS(1516), - [sym_variable_name] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1516), - [anon_sym_unset] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1549), - [anon_sym_GT_AMP] = ACTIONS(1513), - [anon_sym_elif] = ACTIONS(1500), - [sym_ansii_c_string] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_local] = ACTIONS(1516), - [anon_sym_unsetenv] = ACTIONS(1546), - [anon_sym_fi] = ACTIONS(1500), - [anon_sym_else] = ACTIONS(1500), - [sym_number] = ACTIONS(1558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), - [anon_sym_function] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_LT] = ACTIONS(1570), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_case] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1576), - [sym_file_descriptor] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1570), - [anon_sym_AMP_GT] = ACTIONS(1570), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1591), + [anon_sym_LT_LT_DASH] = ACTIONS(1653), + [anon_sym_AMP_GT_GT] = ACTIONS(1653), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_LT_LT] = ACTIONS(1653), + [sym_file_descriptor] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1653), + [anon_sym_AMP_GT] = ACTIONS(1653), + [anon_sym_PIPE_PIPE] = ACTIONS(1653), + [ts_builtin_sym_end] = ACTIONS(1655), + [anon_sym_LT_LT_LT] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_GT_AMP] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(1653), + [anon_sym_LT_AMP] = ACTIONS(1653), + [anon_sym_GT_GT] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1653), + [anon_sym_SEMI_SEMI] = ACTIONS(1653), + [anon_sym_PIPE_AMP] = ACTIONS(1653), }, [269] = { - [sym_command_substitution] = STATE(270), - [aux_sym__literal_repeat1] = STATE(272), - [sym_case_item] = STATE(307), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(306), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(307), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(308), + [sym_string_expansion] = STATE(262), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [aux_sym__literal_repeat1] = STATE(265), + [sym_last_case_item] = STATE(313), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(308), + [sym_arithmetic_expansion] = STATE(262), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym__special_character] = ACTIONS(1346), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(1594), - [anon_sym_DOLLAR] = ACTIONS(239), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_DOLLAR] = ACTIONS(1118), [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_BQUOTE] = ACTIONS(243), - [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(245), + [anon_sym_LT_LPAREN] = ACTIONS(1098), }, [270] = { - [aux_sym_concatenation_repeat1] = STATE(776), - [aux_sym_case_item_repeat1] = STATE(310), - [anon_sym_RPAREN] = ACTIONS(1596), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(1598), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(1657), }, [271] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1600), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_AMP_GT_GT] = ACTIONS(1600), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_LT_LT] = ACTIONS(1600), - [sym_file_descriptor] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_AMP_GT] = ACTIONS(1600), - [anon_sym_PIPE_PIPE] = ACTIONS(1600), - [ts_builtin_sym_end] = ACTIONS(1602), - [anon_sym_LT_LT_LT] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_GT_AMP] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1600), - [anon_sym_LT_AMP] = ACTIONS(1600), - [anon_sym_GT_GT] = ACTIONS(1600), - [anon_sym_AMP_AMP] = ACTIONS(1600), - [anon_sym_SEMI_SEMI] = ACTIONS(1600), - [anon_sym_PIPE_AMP] = ACTIONS(1600), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_EQ_TILDE] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [sym_file_descriptor] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_AMP_GT] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [ts_builtin_sym_end] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [272] = { - [aux_sym__literal_repeat1] = STATE(779), - [aux_sym_case_item_repeat1] = STATE(312), - [anon_sym_RPAREN] = ACTIONS(1604), - [sym_comment] = ACTIONS(41), - [anon_sym_PIPE] = ACTIONS(1598), - [sym__special_character] = ACTIONS(1606), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [273] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1608), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(315), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(315), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1665), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1665), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1665), + [anon_sym_POUND] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1665), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [274] = { - [sym_command_substitution] = STATE(270), - [aux_sym__literal_repeat1] = STATE(272), - [sym_case_item] = STATE(313), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(306), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(313), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_BQUOTE] = ACTIONS(243), - [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(245), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1663), + [sym__concat] = ACTIONS(1422), }, [275] = { - [aux_sym_case_item_repeat1] = STATE(310), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1596), - [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1663), + [sym_comment] = ACTIONS(53), }, [276] = { - [sym_command_substitution] = STATE(270), - [aux_sym__literal_repeat1] = STATE(272), - [sym_case_item] = STATE(316), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(315), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(316), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_BQUOTE] = ACTIONS(243), - [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(245), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1669), }, [277] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_AMP_GT_GT] = ACTIONS(1612), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_LT_LT] = ACTIONS(1612), - [sym_file_descriptor] = ACTIONS(1614), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_AMP_GT] = ACTIONS(1612), - [anon_sym_PIPE_PIPE] = ACTIONS(1612), - [ts_builtin_sym_end] = ACTIONS(1614), - [anon_sym_LT_LT_LT] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_GT_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_LT_AMP] = ACTIONS(1612), - [anon_sym_GT_GT] = ACTIONS(1612), - [anon_sym_AMP_AMP] = ACTIONS(1612), - [anon_sym_SEMI_SEMI] = ACTIONS(1612), - [anon_sym_PIPE_AMP] = ACTIONS(1612), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1673), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [278] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1616), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(318), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(318), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1675), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1675), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1675), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_PERCENT] = ACTIONS(1675), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [279] = { - [sym_command_substitution] = STATE(270), - [aux_sym__literal_repeat1] = STATE(272), - [sym_case_item] = STATE(313), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(315), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(313), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_BQUOTE] = ACTIONS(243), - [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [280] = { - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_AMP_GT_GT] = ACTIONS(1618), - [anon_sym_DOLLAR] = ACTIONS(1618), - [anon_sym_LT_LT] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [anon_sym_GT_LPAREN] = ACTIONS(1618), - [sym_number] = ACTIONS(1618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), - [anon_sym_PIPE_PIPE] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [sym_word] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_LT_AMP] = ACTIONS(1618), - [anon_sym_GT_GT] = ACTIONS(1618), - [sym__special_character] = ACTIONS(1618), - [anon_sym_LT_LT_DASH] = ACTIONS(1618), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [sym_raw_string] = ACTIONS(1618), - [sym_variable_name] = ACTIONS(1620), - [sym_file_descriptor] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_AMP_GT] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_LT_LT_LT] = ACTIONS(1618), - [anon_sym_GT_AMP] = ACTIONS(1618), - [ts_builtin_sym_end] = ACTIONS(1620), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), - [anon_sym_LT_LPAREN] = ACTIONS(1618), - [sym_ansii_c_string] = ACTIONS(1618), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_SEMI_SEMI] = ACTIONS(1618), - [anon_sym_PIPE_AMP] = ACTIONS(1618), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_EQ_TILDE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [sym_file_descriptor] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_EQ_EQ] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [281] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(281), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(281), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1625), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1628), - [sym_word] = ACTIONS(1631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1640), - [sym_ansii_c_string] = ACTIONS(1628), - [anon_sym_BQUOTE] = ACTIONS(1642), - [anon_sym_LT_LPAREN] = ACTIONS(1645), - [sym__special_character] = ACTIONS(1648), - [sym_number] = ACTIONS(1631), - [anon_sym_GT_LPAREN] = ACTIONS(1645), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_EQ_TILDE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [sym_file_descriptor] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [282] = { - [anon_sym_EQ] = ACTIONS(1651), - [anon_sym_PLUS_EQ] = ACTIONS(1651), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [283] = { - [anon_sym_PLUS_EQ] = ACTIONS(1651), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1653), - [anon_sym_EQ] = ACTIONS(1651), + [anon_sym_AMP_GT_GT] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LT] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [sym_ansii_c_string] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_LT_AMP] = ACTIONS(1691), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_LT_LT_DASH] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), + [sym_number] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1693), + [sym_file_descriptor] = ACTIONS(1693), + [sym_word] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_AMP_GT] = ACTIONS(1691), + [sym__special_character] = ACTIONS(1691), + [anon_sym_LT_LT_LT] = ACTIONS(1691), + [anon_sym_GT_AMP] = ACTIONS(1691), + [ts_builtin_sym_end] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_raw_string] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_SEMI_SEMI] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), }, [284] = { - [anon_sym_EQ] = ACTIONS(1655), - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(284), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(284), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1695), + [sym_number] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1710), + [sym_word] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1712), + [anon_sym_LT_LPAREN] = ACTIONS(1695), + [sym_ansii_c_string] = ACTIONS(1715), + [sym__special_character] = ACTIONS(1718), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1721), + [sym_raw_string] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1724), }, [285] = { - [anon_sym_PLUS_EQ] = ACTIONS(1655), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(1657), - [anon_sym_EQ] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1727), + [anon_sym_PLUS_EQ] = ACTIONS(1727), + [sym_comment] = ACTIONS(53), }, [286] = { - [sym_do_group] = STATE(320), - [sym_compound_statement] = STATE(320), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(637), + [anon_sym_PLUS_EQ] = ACTIONS(1727), + [sym__concat] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(1727), + [sym_comment] = ACTIONS(53), }, [287] = { - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [sym_test_operator] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1661), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_EQ] = ACTIONS(1731), + [anon_sym_PLUS_EQ] = ACTIONS(1731), + [sym_comment] = ACTIONS(53), }, [288] = { - [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(322), - [sym_postfix_expression] = STATE(322), - [sym_string] = STATE(71), - [aux_sym__literal_repeat1] = STATE(73), - [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(322), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(322), - [sym_binary_expression] = STATE(322), - [sym_concatenation] = STATE(322), - [sym_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(1731), + [sym__concat] = ACTIONS(1733), + [anon_sym_EQ] = ACTIONS(1731), + [sym_comment] = ACTIONS(53), }, [289] = { - [anon_sym_BANG_EQ] = ACTIONS(1096), - [anon_sym_PLUS_EQ] = ACTIONS(1096), - [anon_sym_DASH_EQ] = ACTIONS(1096), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_EQ] = ACTIONS(1096), - [sym_test_operator] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_PIPE_PIPE] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_EQ_TILDE] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1096), - [anon_sym_AMP_AMP] = ACTIONS(1096), - [anon_sym_SEMI_SEMI] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), + [sym_do_group] = STATE(322), + [sym_comment] = ACTIONS(53), + [anon_sym_do] = ACTIONS(677), }, [290] = { [sym_do_group] = STATE(324), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(637), + [sym_compound_statement] = STATE(324), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(677), }, [291] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_AMP_GT_GT] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_LT_LT] = ACTIONS(1665), - [sym_file_descriptor] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1665), - [anon_sym_AMP_GT] = ACTIONS(1665), - [anon_sym_PIPE_PIPE] = ACTIONS(1665), - [ts_builtin_sym_end] = ACTIONS(1667), - [anon_sym_LT_LT_LT] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_GT_AMP] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_LT_AMP] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1665), - [anon_sym_SEMI_SEMI] = ACTIONS(1665), - [anon_sym_PIPE_AMP] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1737), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1669), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(326), + [sym_postfix_expression] = STATE(326), + [sym_concatenation] = STATE(326), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(326), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(326), + [sym_binary_expression] = STATE(326), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1737), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, [293] = { - [sym_command_substitution] = STATE(293), - [sym_simple_expansion] = STATE(293), - [sym_expansion] = STATE(293), - [aux_sym_heredoc_body_repeat1] = STATE(293), - [anon_sym_DOLLAR] = ACTIONS(1673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1676), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1679), - [sym__heredoc_body_end] = ACTIONS(1682), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1684), - [sym__heredoc_body_middle] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [anon_sym_SEMI_SEMI] = ACTIONS(1739), + [anon_sym_DASH_EQ] = ACTIONS(1178), + [anon_sym_LF] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1178), + [anon_sym_EQ_TILDE] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1739), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_LT_EQ] = ACTIONS(1178), + [sym_test_operator] = ACTIONS(1178), }, [294] = { - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_local] = ACTIONS(1448), - [anon_sym_typeset] = ACTIONS(1448), - [anon_sym_unsetenv] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_number] = ACTIONS(1448), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1448), - [sym_word] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_declare] = ACTIONS(1448), - [sym_variable_name] = ACTIONS(1450), - [sym_file_descriptor] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_AMP_GT] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1450), - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_GT_AMP] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_LT_LPAREN] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [sym_ansii_c_string] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym_LT_LT_DASH] = ACTIONS(1741), + [anon_sym_AMP_GT_GT] = ACTIONS(1741), + [anon_sym_LF] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_LT_LT] = ACTIONS(1741), + [sym_file_descriptor] = ACTIONS(1743), + [anon_sym_GT] = ACTIONS(1741), + [anon_sym_AMP_GT] = ACTIONS(1741), + [anon_sym_PIPE_PIPE] = ACTIONS(1741), + [ts_builtin_sym_end] = ACTIONS(1743), + [anon_sym_LT_LT_LT] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_GT_AMP] = ACTIONS(1741), + [anon_sym_LT] = ACTIONS(1741), + [anon_sym_LT_AMP] = ACTIONS(1741), + [anon_sym_GT_GT] = ACTIONS(1741), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1741), + [anon_sym_SEMI_SEMI] = ACTIONS(1741), + [anon_sym_PIPE_AMP] = ACTIONS(1741), }, [295] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [anon_sym_EQ_TILDE] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_EQ_EQ] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [ts_builtin_sym_end] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1745), + [anon_sym_LF] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), }, [296] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(296), + [aux_sym_heredoc_body_repeat1] = STATE(296), + [sym_simple_expansion] = STATE(296), + [sym_command_substitution] = STATE(296), + [anon_sym_BQUOTE] = ACTIONS(1749), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1752), + [sym__heredoc_body_end] = ACTIONS(1755), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1760), + [sym__heredoc_body_middle] = ACTIONS(1763), }, [297] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [anon_sym_EQ_TILDE] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [ts_builtin_sym_end] = ACTIONS(1700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_typeset] = ACTIONS(1520), + [anon_sym_unsetenv] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [anon_sym_LT_LPAREN] = ACTIONS(1522), + [sym_ansii_c_string] = ACTIONS(1522), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), + [sym_number] = ACTIONS(1520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_declare] = ACTIONS(1520), + [anon_sym_GT_LPAREN] = ACTIONS(1522), + [sym_file_descriptor] = ACTIONS(1522), + [sym_word] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [sym_variable_name] = ACTIONS(1522), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_readonly] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [sym__special_character] = ACTIONS(1520), + [ts_builtin_sym_end] = ACTIONS(1766), + [anon_sym_GT_AMP] = ACTIONS(1522), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), }, [298] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [anon_sym_EQ_TILDE] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [ts_builtin_sym_end] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), - }, - [299] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), - }, - [300] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_EQ_TILDE] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [ts_builtin_sym_end] = ACTIONS(1710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), - }, - [301] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(327), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(328), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_else] = ACTIONS(1712), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_fi] = ACTIONS(1768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_elif] = ACTIONS(1712), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_elif] = ACTIONS(1768), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [302] = { + [299] = { + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_SEMI_SEMI] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1716), - }, - [303] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1718), - [anon_sym_AMP_GT_GT] = ACTIONS(1718), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1718), - [anon_sym_LT_LT] = ACTIONS(1718), - [sym_file_descriptor] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1718), - [anon_sym_AMP_GT] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(1718), - [ts_builtin_sym_end] = ACTIONS(1720), - [anon_sym_LT_LT_LT] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_GT_AMP] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1718), - [anon_sym_LT_AMP] = ACTIONS(1718), - [anon_sym_GT_GT] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_SEMI_SEMI] = ACTIONS(1718), - [anon_sym_PIPE_AMP] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_SEMI_SEMI] = ACTIONS(1772), }, - [304] = { - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(1722), + [300] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1774), + [anon_sym_AMP_GT_GT] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1774), + [sym_file_descriptor] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_AMP_GT] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [ts_builtin_sym_end] = ACTIONS(1776), + [anon_sym_LT_LT_LT] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_GT_AMP] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_LT_AMP] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1774), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), }, - [305] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), + [301] = { + [sym_comment] = ACTIONS(53), + [anon_sym_fi] = ACTIONS(1778), }, - [306] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1728), + [302] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1780), + [anon_sym_AMP_GT_GT] = ACTIONS(1780), + [anon_sym_LF] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1780), + [sym_file_descriptor] = ACTIONS(1782), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_AMP_GT] = ACTIONS(1780), + [anon_sym_PIPE_PIPE] = ACTIONS(1780), + [ts_builtin_sym_end] = ACTIONS(1782), + [anon_sym_LT_LT_LT] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_GT_AMP] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_LT_AMP] = ACTIONS(1780), + [anon_sym_GT_GT] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1780), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_SEMI_SEMI] = ACTIONS(1780), + [anon_sym_PIPE_AMP] = ACTIONS(1780), }, - [307] = { - [sym_command_substitution] = STATE(270), - [aux_sym__literal_repeat1] = STATE(272), - [sym_case_item] = STATE(313), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), + [303] = { + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(308), + [sym_string_expansion] = STATE(262), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [aux_sym__literal_repeat1] = STATE(265), [sym_last_case_item] = STATE(331), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(313), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_comment] = ACTIONS(41), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(308), + [sym_arithmetic_expansion] = STATE(262), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym__special_character] = ACTIONS(1346), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_DOLLAR] = ACTIONS(239), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_DOLLAR] = ACTIONS(1118), [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_BQUOTE] = ACTIONS(243), - [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(245), + [anon_sym_LT_LPAREN] = ACTIONS(1098), }, - [308] = { - [sym_command_substitution] = STATE(332), - [aux_sym__literal_repeat1] = STATE(333), - [sym_string] = STATE(332), - [sym_process_substitution] = STATE(332), - [sym_simple_expansion] = STATE(332), - [sym_string_expansion] = STATE(332), + [304] = { + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(1784), + }, + [305] = { + [sym_expansion] = STATE(333), [sym_concatenation] = STATE(334), - [sym_expansion] = STATE(332), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1730), - [sym_word] = ACTIONS(1732), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1730), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_BQUOTE] = ACTIONS(243), - [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1732), - [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_string] = STATE(333), + [sym_command_substitution] = STATE(333), + [sym_process_substitution] = STATE(333), + [aux_sym__literal_repeat1] = STATE(335), + [sym_simple_expansion] = STATE(333), + [sym_arithmetic_expansion] = STATE(333), + [sym_string_expansion] = STATE(333), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym__special_character] = ACTIONS(1346), + [sym_number] = ACTIONS(1786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_raw_string] = ACTIONS(1788), + [sym_word] = ACTIONS(1786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_ansii_c_string] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1098), }, - [309] = { - [aux_sym__literal_repeat1] = STATE(540), - [sym_if_statement] = STATE(541), - [sym_function_definition] = STATE(541), - [sym_negated_command] = STATE(541), - [sym_test_command] = STATE(541), - [sym_variable_assignment] = STATE(636), - [sym_subscript] = STATE(2494), - [sym_concatenation] = STATE(543), - [sym_expansion] = STATE(536), - [sym_command_substitution] = STATE(536), - [aux_sym__statements_repeat1] = STATE(637), - [sym_redirected_statement] = STATE(541), - [sym_for_statement] = STATE(541), - [sym_compound_statement] = STATE(541), - [sym_subshell] = STATE(541), - [sym_declaration_command] = STATE(541), - [sym_unset_command] = STATE(541), - [sym_file_redirect] = STATE(545), - [sym_string] = STATE(536), - [sym_process_substitution] = STATE(536), - [aux_sym_command_repeat1] = STATE(545), - [sym__statements] = STATE(336), - [sym_c_style_for_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_case_statement] = STATE(541), - [sym_pipeline] = STATE(541), - [sym_list] = STATE(541), - [sym_command] = STATE(541), - [sym_command_name] = STATE(638), - [sym_simple_expansion] = STATE(536), - [sym_string_expansion] = STATE(536), - [anon_sym_LPAREN] = ACTIONS(63), + [306] = { + [sym_if_statement] = STATE(544), + [sym_function_definition] = STATE(544), + [sym_negated_command] = STATE(544), + [sym_test_command] = STATE(544), + [sym_variable_assignment] = STATE(641), + [sym_subscript] = STATE(2615), + [sym_arithmetic_expansion] = STATE(540), + [sym_string_expansion] = STATE(540), + [sym_expansion] = STATE(540), + [aux_sym__statements_repeat1] = STATE(642), + [aux_sym__literal_repeat1] = STATE(547), + [sym_redirected_statement] = STATE(544), + [sym_for_statement] = STATE(544), + [sym_compound_statement] = STATE(544), + [sym_subshell] = STATE(544), + [sym_declaration_command] = STATE(544), + [sym_unset_command] = STATE(544), + [sym_file_redirect] = STATE(549), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(540), + [sym_command_substitution] = STATE(540), + [sym_process_substitution] = STATE(540), + [aux_sym_command_repeat1] = STATE(549), + [sym__statements] = STATE(337), + [sym_c_style_for_statement] = STATE(544), + [sym_while_statement] = STATE(544), + [sym_case_statement] = STATE(544), + [sym_pipeline] = STATE(544), + [sym_list] = STATE(544), + [sym_command] = STATE(544), + [sym_command_name] = STATE(643), + [sym_simple_expansion] = STATE(540), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1734), - [anon_sym_typeset] = ACTIONS(1734), - [anon_sym_unsetenv] = ACTIONS(1736), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_number] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1748), + [anon_sym_local] = ACTIONS(1790), + [anon_sym_typeset] = ACTIONS(1790), + [anon_sym_unsetenv] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [sym_ansii_c_string] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1804), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1752), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_declare] = ACTIONS(1734), - [sym_variable_name] = ACTIONS(1756), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1734), - [anon_sym_unset] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_declare] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1812), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(1790), + [anon_sym_unset] = ACTIONS(1792), + [sym__special_character] = ACTIONS(1816), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_esac] = ACTIONS(1762), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1764), + [anon_sym_esac] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(1802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_SEMI_SEMI] = ACTIONS(1822), + [sym_comment] = ACTIONS(53), }, - [310] = { - [aux_sym_case_item_repeat1] = STATE(338), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1766), - [sym_comment] = ACTIONS(41), + [307] = { + [aux_sym_case_item_repeat1] = STATE(339), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1824), + [sym_comment] = ACTIONS(53), }, - [311] = { - [aux_sym__literal_repeat1] = STATE(540), - [sym_if_statement] = STATE(541), - [sym_function_definition] = STATE(541), - [sym_negated_command] = STATE(541), - [sym_test_command] = STATE(541), - [sym_variable_assignment] = STATE(636), - [sym_subscript] = STATE(2494), - [sym_concatenation] = STATE(543), - [sym_expansion] = STATE(536), - [sym_command_substitution] = STATE(536), - [aux_sym__statements_repeat1] = STATE(637), - [sym_redirected_statement] = STATE(541), - [sym_for_statement] = STATE(541), - [sym_compound_statement] = STATE(541), - [sym_subshell] = STATE(541), - [sym_declaration_command] = STATE(541), - [sym_unset_command] = STATE(541), - [sym_file_redirect] = STATE(545), - [sym_string] = STATE(536), - [sym_process_substitution] = STATE(536), - [aux_sym_command_repeat1] = STATE(545), - [sym__statements] = STATE(340), - [sym_c_style_for_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_case_statement] = STATE(541), - [sym_pipeline] = STATE(541), - [sym_list] = STATE(541), - [sym_command] = STATE(541), - [sym_command_name] = STATE(638), - [sym_simple_expansion] = STATE(536), - [sym_string_expansion] = STATE(536), - [anon_sym_LPAREN] = ACTIONS(63), + [308] = { + [sym_expansion] = STATE(340), + [sym_case_item] = STATE(308), + [sym_string_expansion] = STATE(340), + [sym_concatenation] = STATE(341), + [sym_string] = STATE(340), + [sym_command_substitution] = STATE(340), + [sym_process_substitution] = STATE(340), + [aux_sym__literal_repeat1] = STATE(342), + [sym_simple_expansion] = STATE(340), + [aux_sym_case_statement_repeat1] = STATE(308), + [sym_arithmetic_expansion] = STATE(340), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1826), + [sym_number] = ACTIONS(1829), + [anon_sym_GT_LPAREN] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1841), + [sym_raw_string] = ACTIONS(1844), + [anon_sym_BQUOTE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1850), + [sym_word] = ACTIONS(1829), + [anon_sym_DOLLAR] = ACTIONS(1853), + [sym_ansii_c_string] = ACTIONS(1844), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + }, + [309] = { + [sym_if_statement] = STATE(544), + [sym_function_definition] = STATE(544), + [sym_negated_command] = STATE(544), + [sym_test_command] = STATE(544), + [sym_variable_assignment] = STATE(641), + [sym_subscript] = STATE(2615), + [sym_arithmetic_expansion] = STATE(540), + [sym_string_expansion] = STATE(540), + [sym_expansion] = STATE(540), + [aux_sym__statements_repeat1] = STATE(642), + [aux_sym__literal_repeat1] = STATE(547), + [sym_redirected_statement] = STATE(544), + [sym_for_statement] = STATE(544), + [sym_compound_statement] = STATE(544), + [sym_subshell] = STATE(544), + [sym_declaration_command] = STATE(544), + [sym_unset_command] = STATE(544), + [sym_file_redirect] = STATE(549), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(540), + [sym_command_substitution] = STATE(540), + [sym_process_substitution] = STATE(540), + [aux_sym_command_repeat1] = STATE(549), + [sym__statements] = STATE(344), + [sym_c_style_for_statement] = STATE(544), + [sym_while_statement] = STATE(544), + [sym_case_statement] = STATE(544), + [sym_pipeline] = STATE(544), + [sym_list] = STATE(544), + [sym_command] = STATE(544), + [sym_command_name] = STATE(643), + [sym_simple_expansion] = STATE(540), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1734), - [anon_sym_typeset] = ACTIONS(1734), - [anon_sym_unsetenv] = ACTIONS(1736), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_number] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1748), + [anon_sym_local] = ACTIONS(1790), + [anon_sym_typeset] = ACTIONS(1790), + [anon_sym_unsetenv] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [sym_ansii_c_string] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1804), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1752), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_declare] = ACTIONS(1734), - [sym_variable_name] = ACTIONS(1756), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1734), - [anon_sym_unset] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_declare] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1812), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(1790), + [anon_sym_unset] = ACTIONS(1792), + [sym__special_character] = ACTIONS(1816), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_esac] = ACTIONS(1768), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_esac] = ACTIONS(1856), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(1802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_SEMI_SEMI] = ACTIONS(1858), + [sym_comment] = ACTIONS(53), + }, + [310] = { + [aux_sym_case_item_repeat1] = STATE(339), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(53), + }, + [311] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1862), + [anon_sym_AMP_GT_GT] = ACTIONS(1862), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_LT_LT] = ACTIONS(1862), + [sym_file_descriptor] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1862), + [anon_sym_AMP_GT] = ACTIONS(1862), + [anon_sym_PIPE_PIPE] = ACTIONS(1862), + [ts_builtin_sym_end] = ACTIONS(1864), + [anon_sym_LT_LT_LT] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_GT_AMP] = ACTIONS(1862), + [anon_sym_LT] = ACTIONS(1862), + [anon_sym_LT_AMP] = ACTIONS(1862), + [anon_sym_GT_GT] = ACTIONS(1862), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI_SEMI] = ACTIONS(1862), + [anon_sym_PIPE_AMP] = ACTIONS(1862), }, [312] = { - [aux_sym_case_item_repeat1] = STATE(338), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1772), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(308), + [sym_string_expansion] = STATE(262), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [aux_sym__literal_repeat1] = STATE(265), + [sym_last_case_item] = STATE(346), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(308), + [sym_arithmetic_expansion] = STATE(262), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym__special_character] = ACTIONS(1346), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_raw_string] = ACTIONS(1344), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_ansii_c_string] = ACTIONS(1344), + [anon_sym_LT_LPAREN] = ACTIONS(1098), }, [313] = { - [sym_command_substitution] = STATE(342), - [aux_sym__literal_repeat1] = STATE(343), - [sym_case_item] = STATE(313), - [sym_string] = STATE(342), - [sym_process_substitution] = STATE(342), - [sym_simple_expansion] = STATE(342), - [sym_string_expansion] = STATE(342), - [aux_sym_case_statement_repeat1] = STATE(313), - [sym_concatenation] = STATE(344), - [sym_expansion] = STATE(342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1777), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1780), - [sym_word] = ACTIONS(1783), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1789), - [sym_ansii_c_string] = ACTIONS(1780), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1795), - [sym__special_character] = ACTIONS(1798), - [sym_number] = ACTIONS(1783), - [anon_sym_GT_LPAREN] = ACTIONS(1792), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(1866), }, [314] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_AMP_GT_GT] = ACTIONS(1801), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [sym_file_descriptor] = ACTIONS(1803), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_AMP_GT] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [ts_builtin_sym_end] = ACTIONS(1803), - [anon_sym_LT_LT_LT] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_GT_AMP] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_LT_AMP] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_SEMI_SEMI] = ACTIONS(1801), - [anon_sym_PIPE_AMP] = ACTIONS(1801), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [sym_file_descriptor] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_AMP_GT] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [315] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1805), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [316] = { - [sym_command_substitution] = STATE(270), - [aux_sym__literal_repeat1] = STATE(272), - [sym_case_item] = STATE(313), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(346), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(313), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_BQUOTE] = ACTIONS(243), - [sym__special_character] = ACTIONS(255), - [sym_number] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(245), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_EQ_TILDE] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [317] = { - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_PLUS_EQ] = ACTIONS(1807), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_EQ_TILDE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [318] = { - [anon_sym_EQ] = ACTIONS(1809), - [anon_sym_PLUS_EQ] = ACTIONS(1809), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [319] = { - [sym_do_group] = STATE(347), - [sym_compound_statement] = STATE(347), - [anon_sym_LBRACE] = ACTIONS(27), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [320] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_AMP_GT_GT] = ACTIONS(1811), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_LT_LT] = ACTIONS(1811), - [sym_file_descriptor] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1811), - [anon_sym_AMP_GT] = ACTIONS(1811), - [anon_sym_PIPE_PIPE] = ACTIONS(1811), - [ts_builtin_sym_end] = ACTIONS(1813), - [anon_sym_LT_LT_LT] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_GT_AMP] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_LT_AMP] = ACTIONS(1811), - [anon_sym_GT_GT] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1811), - [anon_sym_SEMI_SEMI] = ACTIONS(1811), - [anon_sym_PIPE_AMP] = ACTIONS(1811), + [anon_sym_EQ] = ACTIONS(1888), + [anon_sym_PLUS_EQ] = ACTIONS(1888), + [sym_comment] = ACTIONS(53), }, [321] = { - [sym_do_group] = STATE(347), - [sym_compound_statement] = STATE(347), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(637), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_PLUS_EQ] = ACTIONS(1890), + [sym_comment] = ACTIONS(53), }, [322] = { - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [sym_test_operator] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - }, - [323] = { - [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(350), - [sym_postfix_expression] = STATE(350), - [sym_string] = STATE(71), - [aux_sym__literal_repeat1] = STATE(73), - [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(350), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(350), - [sym_binary_expression] = STATE(350), - [sym_concatenation] = STATE(350), - [sym_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), - }, - [324] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [ts_builtin_sym_end] = ACTIONS(1821), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(1819), - }, - [325] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [ts_builtin_sym_end] = ACTIONS(1825), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - }, - [326] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [ts_builtin_sym_end] = ACTIONS(1829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), - }, - [327] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(268), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(1831), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_else] = ACTIONS(1831), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_elif] = ACTIONS(1831), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [sym_file_descriptor] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [ts_builtin_sym_end] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + }, + [323] = { + [sym_do_group] = STATE(350), + [sym_compound_statement] = STATE(350), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_do] = ACTIONS(677), + }, + [324] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1896), + [anon_sym_AMP_GT_GT] = ACTIONS(1896), + [anon_sym_LF] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_LT_LT] = ACTIONS(1896), + [sym_file_descriptor] = ACTIONS(1898), + [anon_sym_GT] = ACTIONS(1896), + [anon_sym_AMP_GT] = ACTIONS(1896), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [ts_builtin_sym_end] = ACTIONS(1898), + [anon_sym_LT_LT_LT] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_GT_AMP] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_LT_AMP] = ACTIONS(1896), + [anon_sym_GT_GT] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_SEMI_SEMI] = ACTIONS(1896), + [anon_sym_PIPE_AMP] = ACTIONS(1896), + }, + [325] = { + [sym_do_group] = STATE(350), + [sym_compound_statement] = STATE(350), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(677), + }, + [326] = { + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), + }, + [327] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(353), + [sym_postfix_expression] = STATE(353), + [sym_concatenation] = STATE(353), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(353), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(353), + [sym_binary_expression] = STATE(353), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1902), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, [328] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1833), - [anon_sym_typeset] = ACTIONS(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_BQUOTE] = ACTIONS(1833), - [anon_sym_done] = ACTIONS(1835), - [anon_sym_GT_LPAREN] = ACTIONS(1833), - [sym_word] = ACTIONS(1835), - [anon_sym_LT_AMP] = ACTIONS(1833), - [anon_sym_export] = ACTIONS(1835), - [sym__special_character] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1833), - [sym_raw_string] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1835), - [sym_variable_name] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1835), - [anon_sym_unset] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1833), - [anon_sym_GT_AMP] = ACTIONS(1833), - [anon_sym_elif] = ACTIONS(1835), - [sym_ansii_c_string] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_local] = ACTIONS(1835), - [anon_sym_unsetenv] = ACTIONS(1835), - [anon_sym_fi] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [sym_number] = ACTIONS(1835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1833), - [anon_sym_function] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_GT_GT] = ACTIONS(1833), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [sym_file_descriptor] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1835), - [anon_sym_AMP_GT] = ACTIONS(1835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1833), - [anon_sym_LT_LPAREN] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1833), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(257), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_fi] = ACTIONS(1904), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_else] = ACTIONS(1904), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_elif] = ACTIONS(1904), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [329] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_AMP_GT_GT] = ACTIONS(1837), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(1837), - [sym_file_descriptor] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_AMP_GT] = ACTIONS(1837), - [anon_sym_PIPE_PIPE] = ACTIONS(1837), - [ts_builtin_sym_end] = ACTIONS(1839), - [anon_sym_LT_LT_LT] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_GT_AMP] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_AMP] = ACTIONS(1837), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_SEMI_SEMI] = ACTIONS(1837), - [anon_sym_PIPE_AMP] = ACTIONS(1837), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [anon_sym_typeset] = ACTIONS(1908), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1908), + [anon_sym_done] = ACTIONS(1908), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_export] = ACTIONS(1908), + [anon_sym_DOLLAR] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_declare] = ACTIONS(1908), + [sym_variable_name] = ACTIONS(1906), + [sym_word] = ACTIONS(1908), + [anon_sym_readonly] = ACTIONS(1908), + [anon_sym_unset] = ACTIONS(1908), + [sym__special_character] = ACTIONS(1908), + [anon_sym_GT_AMP] = ACTIONS(1906), + [sym_comment] = ACTIONS(53), + [anon_sym_elif] = ACTIONS(1908), + [sym_raw_string] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_local] = ACTIONS(1908), + [anon_sym_unsetenv] = ACTIONS(1908), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_fi] = ACTIONS(1908), + [anon_sym_else] = ACTIONS(1908), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_function] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_case] = ACTIONS(1908), + [sym_number] = ACTIONS(1908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [sym_file_descriptor] = ACTIONS(1906), + [anon_sym_GT] = ACTIONS(1908), + [anon_sym_AMP_GT] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1906), }, [330] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1841), - [anon_sym_AMP_GT_GT] = ACTIONS(1841), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_LT_LT] = ACTIONS(1841), - [sym_file_descriptor] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_AMP_GT] = ACTIONS(1841), - [anon_sym_PIPE_PIPE] = ACTIONS(1841), - [ts_builtin_sym_end] = ACTIONS(1843), - [anon_sym_LT_LT_LT] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_GT_AMP] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_LT_AMP] = ACTIONS(1841), - [anon_sym_GT_GT] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_SEMI_SEMI] = ACTIONS(1841), - [anon_sym_PIPE_AMP] = ACTIONS(1841), + [anon_sym_LT_LT_DASH] = ACTIONS(1910), + [anon_sym_AMP_GT_GT] = ACTIONS(1910), + [anon_sym_LF] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_LT_LT] = ACTIONS(1910), + [sym_file_descriptor] = ACTIONS(1912), + [anon_sym_GT] = ACTIONS(1910), + [anon_sym_AMP_GT] = ACTIONS(1910), + [anon_sym_PIPE_PIPE] = ACTIONS(1910), + [ts_builtin_sym_end] = ACTIONS(1912), + [anon_sym_LT_LT_LT] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1910), + [anon_sym_GT_AMP] = ACTIONS(1910), + [anon_sym_LT] = ACTIONS(1910), + [anon_sym_LT_AMP] = ACTIONS(1910), + [anon_sym_GT_GT] = ACTIONS(1910), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI_SEMI] = ACTIONS(1910), + [anon_sym_PIPE_AMP] = ACTIONS(1910), }, [331] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1845), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(1914), }, [332] = { - [aux_sym_concatenation_repeat1] = STATE(776), - [anon_sym_RPAREN] = ACTIONS(1847), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_LT_LT_DASH] = ACTIONS(1916), + [anon_sym_AMP_GT_GT] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_AMP_GT] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [ts_builtin_sym_end] = ACTIONS(1918), + [anon_sym_LT_LT_LT] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_GT_AMP] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_LT_AMP] = ACTIONS(1916), + [anon_sym_GT_GT] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), }, [333] = { - [aux_sym__literal_repeat1] = STATE(779), - [anon_sym_RPAREN] = ACTIONS(1849), - [sym_comment] = ACTIONS(41), - [anon_sym_PIPE] = ACTIONS(1849), - [sym__special_character] = ACTIONS(1606), + [aux_sym_concatenation_repeat1] = STATE(2566), + [anon_sym_RPAREN] = ACTIONS(1920), + [sym__concat] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1920), + [sym_comment] = ACTIONS(53), }, [334] = { - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_RPAREN] = ACTIONS(1847), - [sym_comment] = ACTIONS(41), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_RPAREN] = ACTIONS(1920), + [sym_comment] = ACTIONS(53), }, [335] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1851), - [sym_word] = ACTIONS(1853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1851), - [anon_sym_esac] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1853), - [sym_ansii_c_string] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1851), - [anon_sym_BQUOTE] = ACTIONS(1851), - [sym__special_character] = ACTIONS(1851), - [sym_number] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1851), + [aux_sym__literal_repeat1] = STATE(1193), + [anon_sym_RPAREN] = ACTIONS(1922), + [sym__special_character] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1922), + [sym_comment] = ACTIONS(53), }, [336] = { - [sym_comment] = ACTIONS(41), - [anon_sym_SEMI_SEMI] = ACTIONS(1857), - [anon_sym_esac] = ACTIONS(1859), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_number] = ACTIONS(1926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1924), + [sym_word] = ACTIONS(1926), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1926), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [sym_ansii_c_string] = ACTIONS(1924), + [sym__special_character] = ACTIONS(1924), + [anon_sym_esac] = ACTIONS(1928), + [anon_sym_BQUOTE] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1924), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1926), }, [337] = { - [aux_sym__literal_repeat1] = STATE(540), - [sym_if_statement] = STATE(541), - [sym_function_definition] = STATE(541), - [sym_negated_command] = STATE(541), - [sym_test_command] = STATE(541), - [sym_variable_assignment] = STATE(636), - [sym_subscript] = STATE(2494), - [sym_concatenation] = STATE(543), - [sym_expansion] = STATE(536), - [sym_command_substitution] = STATE(536), - [aux_sym__statements_repeat1] = STATE(637), - [sym_redirected_statement] = STATE(541), - [sym_for_statement] = STATE(541), - [sym_compound_statement] = STATE(541), - [sym_subshell] = STATE(541), - [sym_declaration_command] = STATE(541), - [sym_unset_command] = STATE(541), - [sym_file_redirect] = STATE(545), - [sym_string] = STATE(536), - [sym_process_substitution] = STATE(536), - [aux_sym_command_repeat1] = STATE(545), - [sym__statements] = STATE(353), - [sym_c_style_for_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_case_statement] = STATE(541), - [sym_pipeline] = STATE(541), - [sym_list] = STATE(541), - [sym_command] = STATE(541), - [sym_command_name] = STATE(638), - [sym_simple_expansion] = STATE(536), - [sym_string_expansion] = STATE(536), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [anon_sym_esac] = ACTIONS(1932), + }, + [338] = { + [sym_if_statement] = STATE(544), + [sym_function_definition] = STATE(544), + [sym_negated_command] = STATE(544), + [sym_test_command] = STATE(544), + [sym_variable_assignment] = STATE(641), + [sym_subscript] = STATE(2615), + [sym_arithmetic_expansion] = STATE(540), + [sym_string_expansion] = STATE(540), + [sym_expansion] = STATE(540), + [aux_sym__statements_repeat1] = STATE(642), + [aux_sym__literal_repeat1] = STATE(547), + [sym_redirected_statement] = STATE(544), + [sym_for_statement] = STATE(544), + [sym_compound_statement] = STATE(544), + [sym_subshell] = STATE(544), + [sym_declaration_command] = STATE(544), + [sym_unset_command] = STATE(544), + [sym_file_redirect] = STATE(549), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(540), + [sym_command_substitution] = STATE(540), + [sym_process_substitution] = STATE(540), + [aux_sym_command_repeat1] = STATE(549), + [sym__statements] = STATE(356), + [sym_c_style_for_statement] = STATE(544), + [sym_while_statement] = STATE(544), + [sym_case_statement] = STATE(544), + [sym_pipeline] = STATE(544), + [sym_list] = STATE(544), + [sym_command] = STATE(544), + [sym_command_name] = STATE(643), + [sym_simple_expansion] = STATE(540), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1734), - [anon_sym_typeset] = ACTIONS(1734), - [anon_sym_unsetenv] = ACTIONS(1736), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_number] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1748), + [anon_sym_local] = ACTIONS(1790), + [anon_sym_typeset] = ACTIONS(1790), + [anon_sym_unsetenv] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [sym_ansii_c_string] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1804), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1752), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_declare] = ACTIONS(1734), - [sym_variable_name] = ACTIONS(1756), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1734), - [anon_sym_unset] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_declare] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1812), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(1790), + [anon_sym_unset] = ACTIONS(1792), + [sym__special_character] = ACTIONS(1816), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_esac] = ACTIONS(1855), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1857), - }, - [338] = { - [aux_sym_case_item_repeat1] = STATE(338), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1847), - [sym_comment] = ACTIONS(41), + [anon_sym_esac] = ACTIONS(1928), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(1802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [sym_comment] = ACTIONS(53), }, [339] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1864), - [sym_word] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1864), - [anon_sym_esac] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1866), - [sym_ansii_c_string] = ACTIONS(1864), - [anon_sym_LT_LPAREN] = ACTIONS(1864), - [anon_sym_BQUOTE] = ACTIONS(1864), - [sym__special_character] = ACTIONS(1864), - [sym_number] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1864), + [aux_sym_case_item_repeat1] = STATE(339), + [anon_sym_PIPE] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1920), + [sym_comment] = ACTIONS(53), }, [340] = { - [sym_comment] = ACTIONS(41), - [anon_sym_SEMI_SEMI] = ACTIONS(1870), - [anon_sym_esac] = ACTIONS(1872), + [aux_sym_concatenation_repeat1] = STATE(2566), + [aux_sym_case_item_repeat1] = STATE(358), + [anon_sym_RPAREN] = ACTIONS(1937), + [sym__concat] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1645), + [sym_comment] = ACTIONS(53), }, [341] = { - [aux_sym__literal_repeat1] = STATE(540), - [sym_if_statement] = STATE(541), - [sym_function_definition] = STATE(541), - [sym_negated_command] = STATE(541), - [sym_test_command] = STATE(541), - [sym_variable_assignment] = STATE(636), - [sym_subscript] = STATE(2494), - [sym_concatenation] = STATE(543), - [sym_expansion] = STATE(536), - [sym_command_substitution] = STATE(536), - [aux_sym__statements_repeat1] = STATE(637), - [sym_redirected_statement] = STATE(541), - [sym_for_statement] = STATE(541), - [sym_compound_statement] = STATE(541), - [sym_subshell] = STATE(541), - [sym_declaration_command] = STATE(541), - [sym_unset_command] = STATE(541), - [sym_file_redirect] = STATE(545), - [sym_string] = STATE(536), - [sym_process_substitution] = STATE(536), - [aux_sym_command_repeat1] = STATE(545), - [sym__statements] = STATE(355), - [sym_c_style_for_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_case_statement] = STATE(541), - [sym_pipeline] = STATE(541), - [sym_list] = STATE(541), - [sym_command] = STATE(541), - [sym_command_name] = STATE(638), - [sym_simple_expansion] = STATE(536), - [sym_string_expansion] = STATE(536), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1734), - [anon_sym_typeset] = ACTIONS(1734), - [anon_sym_unsetenv] = ACTIONS(1736), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_number] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1734), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1752), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_declare] = ACTIONS(1734), - [sym_variable_name] = ACTIONS(1756), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1734), - [anon_sym_unset] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_esac] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1870), + [aux_sym_case_item_repeat1] = STATE(358), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1937), + [sym_comment] = ACTIONS(53), }, [342] = { - [aux_sym_concatenation_repeat1] = STATE(776), - [aux_sym_case_item_repeat1] = STATE(357), - [anon_sym_RPAREN] = ACTIONS(1874), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(1598), + [aux_sym__literal_repeat1] = STATE(1193), + [aux_sym_case_item_repeat1] = STATE(360), + [anon_sym_RPAREN] = ACTIONS(1939), + [sym__special_character] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1645), + [sym_comment] = ACTIONS(53), }, [343] = { - [aux_sym__literal_repeat1] = STATE(779), - [aux_sym_case_item_repeat1] = STATE(359), - [anon_sym_RPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(41), - [anon_sym_PIPE] = ACTIONS(1598), - [sym__special_character] = ACTIONS(1606), + [anon_sym_GT_LPAREN] = ACTIONS(1941), + [sym_number] = ACTIONS(1943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1941), + [sym_word] = ACTIONS(1943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1943), + [anon_sym_LT_LPAREN] = ACTIONS(1941), + [sym_ansii_c_string] = ACTIONS(1941), + [sym__special_character] = ACTIONS(1941), + [anon_sym_esac] = ACTIONS(1945), + [anon_sym_BQUOTE] = ACTIONS(1941), + [sym_raw_string] = ACTIONS(1941), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1943), }, [344] = { - [aux_sym_case_item_repeat1] = STATE(357), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1874), - [sym_comment] = ACTIONS(41), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI_SEMI] = ACTIONS(1947), + [anon_sym_esac] = ACTIONS(1949), }, [345] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [ts_builtin_sym_end] = ACTIONS(1880), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [sym_if_statement] = STATE(544), + [sym_function_definition] = STATE(544), + [sym_negated_command] = STATE(544), + [sym_test_command] = STATE(544), + [sym_variable_assignment] = STATE(641), + [sym_subscript] = STATE(2615), + [sym_arithmetic_expansion] = STATE(540), + [sym_string_expansion] = STATE(540), + [sym_expansion] = STATE(540), + [aux_sym__statements_repeat1] = STATE(642), + [aux_sym__literal_repeat1] = STATE(547), + [sym_redirected_statement] = STATE(544), + [sym_for_statement] = STATE(544), + [sym_compound_statement] = STATE(544), + [sym_subshell] = STATE(544), + [sym_declaration_command] = STATE(544), + [sym_unset_command] = STATE(544), + [sym_file_redirect] = STATE(549), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(540), + [sym_command_substitution] = STATE(540), + [sym_process_substitution] = STATE(540), + [aux_sym_command_repeat1] = STATE(549), + [sym__statements] = STATE(362), + [sym_c_style_for_statement] = STATE(544), + [sym_while_statement] = STATE(544), + [sym_case_statement] = STATE(544), + [sym_pipeline] = STATE(544), + [sym_list] = STATE(544), + [sym_command] = STATE(544), + [sym_command_name] = STATE(643), + [sym_simple_expansion] = STATE(540), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1790), + [anon_sym_typeset] = ACTIONS(1790), + [anon_sym_unsetenv] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [sym_ansii_c_string] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_declare] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1812), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(1790), + [anon_sym_unset] = ACTIONS(1792), + [sym__special_character] = ACTIONS(1816), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_esac] = ACTIONS(1945), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(1802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_SEMI_SEMI] = ACTIONS(1947), + [sym_comment] = ACTIONS(53), }, [346] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(1882), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(1951), }, [347] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1953), + [anon_sym_AMP_GT_GT] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_LT_LT] = ACTIONS(1953), + [sym_file_descriptor] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1953), + [anon_sym_AMP_GT] = ACTIONS(1953), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [ts_builtin_sym_end] = ACTIONS(1955), + [anon_sym_LT_LT_LT] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_GT_AMP] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1953), + [anon_sym_LT_AMP] = ACTIONS(1953), + [anon_sym_GT_GT] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_SEMI_SEMI] = ACTIONS(1953), + [anon_sym_PIPE_AMP] = ACTIONS(1953), }, [348] = { - [sym_do_group] = STATE(361), - [sym_compound_statement] = STATE(361), - [anon_sym_LBRACE] = ACTIONS(27), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_EQ_TILDE] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [sym_file_descriptor] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_AMP_GT] = ACTIONS(1957), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [349] = { - [sym_do_group] = STATE(361), - [sym_compound_statement] = STATE(361), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_do] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_EQ_TILDE] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_EQ_EQ] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [350] = { - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [sym_test_operator] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_LT_LT_DASH] = ACTIONS(1965), + [anon_sym_AMP_GT_GT] = ACTIONS(1965), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym_LT_LT] = ACTIONS(1965), + [sym_file_descriptor] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1965), + [anon_sym_AMP_GT] = ACTIONS(1965), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [ts_builtin_sym_end] = ACTIONS(1967), + [anon_sym_LT_LT_LT] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_GT_AMP] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_LT_AMP] = ACTIONS(1965), + [anon_sym_GT_GT] = ACTIONS(1965), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_SEMI_SEMI] = ACTIONS(1965), + [anon_sym_PIPE_AMP] = ACTIONS(1965), }, [351] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [sym_file_descriptor] = ACTIONS(1894), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [ts_builtin_sym_end] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), + [sym_do_group] = STATE(364), + [sym_compound_statement] = STATE(364), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_do] = ACTIONS(677), }, [352] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1896), - [anon_sym_esac] = ACTIONS(1900), - [anon_sym_DOLLAR] = ACTIONS(1898), - [sym_ansii_c_string] = ACTIONS(1896), - [anon_sym_LT_LPAREN] = ACTIONS(1896), - [anon_sym_BQUOTE] = ACTIONS(1896), - [sym__special_character] = ACTIONS(1896), - [sym_number] = ACTIONS(1898), - [anon_sym_GT_LPAREN] = ACTIONS(1896), + [sym_do_group] = STATE(364), + [sym_compound_statement] = STATE(364), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(677), }, [353] = { - [sym_comment] = ACTIONS(41), - [anon_sym_SEMI_SEMI] = ACTIONS(1902), - [anon_sym_esac] = ACTIONS(1904), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [354] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1906), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1906), - [sym_word] = ACTIONS(1908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), - [anon_sym_esac] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(1908), - [sym_ansii_c_string] = ACTIONS(1906), - [anon_sym_LT_LPAREN] = ACTIONS(1906), - [anon_sym_BQUOTE] = ACTIONS(1906), - [sym__special_character] = ACTIONS(1906), - [sym_number] = ACTIONS(1908), - [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1973), + [anon_sym_AMP_GT_GT] = ACTIONS(1973), + [anon_sym_LF] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [sym_file_descriptor] = ACTIONS(1975), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_AMP_GT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1973), + [ts_builtin_sym_end] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_GT_AMP] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_AMP] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_SEMI_SEMI] = ACTIONS(1973), + [anon_sym_PIPE_AMP] = ACTIONS(1973), }, [355] = { - [sym_comment] = ACTIONS(41), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_esac] = ACTIONS(1914), + [anon_sym_GT_LPAREN] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1977), + [sym_word] = ACTIONS(1979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1979), + [anon_sym_LT_LPAREN] = ACTIONS(1977), + [sym_ansii_c_string] = ACTIONS(1977), + [sym__special_character] = ACTIONS(1977), + [anon_sym_esac] = ACTIONS(1981), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_raw_string] = ACTIONS(1977), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1979), }, [356] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(635), - [sym_function_definition] = STATE(635), - [sym_negated_command] = STATE(635), - [sym_test_command] = STATE(635), - [sym_variable_assignment] = STATE(696), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(1470), - [sym_redirected_statement] = STATE(635), - [sym_for_statement] = STATE(635), - [sym_compound_statement] = STATE(635), - [sym_subshell] = STATE(635), - [sym_declaration_command] = STATE(635), - [sym_unset_command] = STATE(635), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(367), - [sym_c_style_for_statement] = STATE(635), - [sym_while_statement] = STATE(635), - [sym_case_statement] = STATE(635), - [sym_pipeline] = STATE(635), - [sym_list] = STATE(635), - [sym_command] = STATE(635), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI_SEMI] = ACTIONS(1983), + [anon_sym_esac] = ACTIONS(1985), + }, + [357] = { + [sym_if_statement] = STATE(640), + [sym_function_definition] = STATE(640), + [sym_negated_command] = STATE(640), + [sym_test_command] = STATE(640), + [sym_variable_assignment] = STATE(702), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(1527), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(640), + [sym_for_statement] = STATE(640), + [sym_compound_statement] = STATE(640), + [sym_subshell] = STATE(640), + [sym_declaration_command] = STATE(640), + [sym_unset_command] = STATE(640), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(369), + [sym_c_style_for_statement] = STATE(640), + [sym_while_statement] = STATE(640), + [sym_case_statement] = STATE(640), + [sym_pipeline] = STATE(640), + [sym_list] = STATE(640), + [sym_command] = STATE(640), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - }, - [357] = { - [aux_sym_case_item_repeat1] = STATE(338), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(41), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_SEMI_SEMI] = ACTIONS(1987), }, [358] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(635), - [sym_function_definition] = STATE(635), - [sym_negated_command] = STATE(635), - [sym_test_command] = STATE(635), - [sym_variable_assignment] = STATE(696), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(1470), - [sym_redirected_statement] = STATE(635), - [sym_for_statement] = STATE(635), - [sym_compound_statement] = STATE(635), - [sym_subshell] = STATE(635), - [sym_declaration_command] = STATE(635), - [sym_unset_command] = STATE(635), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(370), - [sym_c_style_for_statement] = STATE(635), - [sym_while_statement] = STATE(635), - [sym_case_statement] = STATE(635), - [sym_pipeline] = STATE(635), - [sym_list] = STATE(635), - [sym_command] = STATE(635), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [aux_sym_case_item_repeat1] = STATE(339), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1989), + [sym_comment] = ACTIONS(53), + }, + [359] = { + [sym_if_statement] = STATE(640), + [sym_function_definition] = STATE(640), + [sym_negated_command] = STATE(640), + [sym_test_command] = STATE(640), + [sym_variable_assignment] = STATE(702), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(1527), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(640), + [sym_for_statement] = STATE(640), + [sym_compound_statement] = STATE(640), + [sym_subshell] = STATE(640), + [sym_declaration_command] = STATE(640), + [sym_unset_command] = STATE(640), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(372), + [sym_c_style_for_statement] = STATE(640), + [sym_while_statement] = STATE(640), + [sym_case_statement] = STATE(640), + [sym_pipeline] = STATE(640), + [sym_list] = STATE(640), + [sym_command] = STATE(640), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1920), - }, - [359] = { - [aux_sym_case_item_repeat1] = STATE(338), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1922), - [sym_comment] = ACTIONS(41), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_SEMI_SEMI] = ACTIONS(1991), }, [360] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_AMP_GT_GT] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_LT_LT] = ACTIONS(1924), - [sym_file_descriptor] = ACTIONS(1926), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_AMP_GT] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [ts_builtin_sym_end] = ACTIONS(1926), - [anon_sym_LT_LT_LT] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_GT_AMP] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_LT_AMP] = ACTIONS(1924), - [anon_sym_GT_GT] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), + [aux_sym_case_item_repeat1] = STATE(339), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1993), + [sym_comment] = ACTIONS(53), }, [361] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [ts_builtin_sym_end] = ACTIONS(1930), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(1928), + [anon_sym_GT_LPAREN] = ACTIONS(1995), + [sym_number] = ACTIONS(1997), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1995), + [sym_word] = ACTIONS(1997), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1997), + [anon_sym_LT_LPAREN] = ACTIONS(1995), + [sym_ansii_c_string] = ACTIONS(1995), + [sym__special_character] = ACTIONS(1995), + [anon_sym_esac] = ACTIONS(1999), + [anon_sym_BQUOTE] = ACTIONS(1995), + [sym_raw_string] = ACTIONS(1995), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1997), }, [362] = { - [sym_do_group] = STATE(372), - [sym_compound_statement] = STATE(372), - [anon_sym_LBRACE] = ACTIONS(27), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(637), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI_SEMI] = ACTIONS(2001), + [anon_sym_esac] = ACTIONS(2003), }, [363] = { - [sym_do_group] = STATE(372), - [sym_compound_statement] = STATE(372), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_do] = ACTIONS(637), + [anon_sym_LT_LT_DASH] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2005), + [anon_sym_LF] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_LT_LT] = ACTIONS(2005), + [sym_file_descriptor] = ACTIONS(2007), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_PIPE_PIPE] = ACTIONS(2005), + [ts_builtin_sym_end] = ACTIONS(2007), + [anon_sym_LT_LT_LT] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_GT_AMP] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_LT_AMP] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2005), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_SEMI_SEMI] = ACTIONS(2005), + [anon_sym_PIPE_AMP] = ACTIONS(2005), }, [364] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1934), - [anon_sym_DQUOTE] = ACTIONS(1934), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1934), - [sym_word] = ACTIONS(1936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1934), - [anon_sym_esac] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1936), - [sym_ansii_c_string] = ACTIONS(1934), - [anon_sym_LT_LPAREN] = ACTIONS(1934), - [anon_sym_BQUOTE] = ACTIONS(1934), - [sym__special_character] = ACTIONS(1934), - [sym_number] = ACTIONS(1936), - [anon_sym_GT_LPAREN] = ACTIONS(1934), + [anon_sym_LT_LT_DASH] = ACTIONS(2009), + [anon_sym_AMP_GT_GT] = ACTIONS(2009), + [anon_sym_LF] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_LT_LT] = ACTIONS(2009), + [sym_file_descriptor] = ACTIONS(2011), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_AMP_GT] = ACTIONS(2009), + [anon_sym_PIPE_PIPE] = ACTIONS(2009), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_LT_LT_LT] = ACTIONS(2009), + [anon_sym_PIPE] = ACTIONS(2009), + [anon_sym_GT_AMP] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_LT_AMP] = ACTIONS(2009), + [anon_sym_GT_GT] = ACTIONS(2009), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2009), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SEMI_SEMI] = ACTIONS(2009), + [anon_sym_PIPE_AMP] = ACTIONS(2009), }, [365] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1940), - [sym_word] = ACTIONS(1942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), - [anon_sym_esac] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1942), - [sym_ansii_c_string] = ACTIONS(1940), - [anon_sym_LT_LPAREN] = ACTIONS(1940), - [anon_sym_BQUOTE] = ACTIONS(1940), - [sym__special_character] = ACTIONS(1940), - [sym_number] = ACTIONS(1942), - [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_do_group] = STATE(375), + [sym_compound_statement] = STATE(375), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_do] = ACTIONS(677), }, [366] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1851), - [sym_word] = ACTIONS(1853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1853), - [sym_ansii_c_string] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1851), - [anon_sym_BQUOTE] = ACTIONS(1851), - [sym__special_character] = ACTIONS(1851), - [sym_number] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1851), + [sym_do_group] = STATE(375), + [sym_compound_statement] = STATE(375), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_do] = ACTIONS(677), }, [367] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1946), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(2015), + [sym_number] = ACTIONS(2017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2015), + [sym_word] = ACTIONS(2017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2017), + [anon_sym_LT_LPAREN] = ACTIONS(2015), + [sym_ansii_c_string] = ACTIONS(2015), + [sym__special_character] = ACTIONS(2015), + [anon_sym_esac] = ACTIONS(2019), + [anon_sym_BQUOTE] = ACTIONS(2015), + [sym_raw_string] = ACTIONS(2015), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(2017), }, [368] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(635), - [sym_function_definition] = STATE(635), - [sym_negated_command] = STATE(635), - [sym_test_command] = STATE(635), - [sym_variable_assignment] = STATE(696), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(1470), - [sym_redirected_statement] = STATE(635), - [sym_for_statement] = STATE(635), - [sym_compound_statement] = STATE(635), - [sym_subshell] = STATE(635), - [sym_declaration_command] = STATE(635), - [sym_unset_command] = STATE(635), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(375), - [sym_c_style_for_statement] = STATE(635), - [sym_while_statement] = STATE(635), - [sym_case_statement] = STATE(635), - [sym_pipeline] = STATE(635), - [sym_list] = STATE(635), - [sym_command] = STATE(635), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1924), + [sym_number] = ACTIONS(1926), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1924), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1926), + [sym_word] = ACTIONS(1926), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_ansii_c_string] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + }, + [369] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2021), + [sym_comment] = ACTIONS(53), + }, + [370] = { + [sym_if_statement] = STATE(640), + [sym_function_definition] = STATE(640), + [sym_negated_command] = STATE(640), + [sym_test_command] = STATE(640), + [sym_variable_assignment] = STATE(702), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(1527), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(640), + [sym_for_statement] = STATE(640), + [sym_compound_statement] = STATE(640), + [sym_subshell] = STATE(640), + [sym_declaration_command] = STATE(640), + [sym_unset_command] = STATE(640), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(378), + [sym_c_style_for_statement] = STATE(640), + [sym_while_statement] = STATE(640), + [sym_case_statement] = STATE(640), + [sym_pipeline] = STATE(640), + [sym_list] = STATE(640), + [sym_command] = STATE(640), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1946), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_SEMI_SEMI] = ACTIONS(2021), }, - [369] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1864), - [sym_word] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1864), - [anon_sym_DOLLAR] = ACTIONS(1866), - [sym_ansii_c_string] = ACTIONS(1864), - [anon_sym_LT_LPAREN] = ACTIONS(1864), - [anon_sym_BQUOTE] = ACTIONS(1864), - [sym__special_character] = ACTIONS(1864), - [sym_number] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1864), + [371] = { + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1941), + [sym_number] = ACTIONS(1943), + [anon_sym_GT_LPAREN] = ACTIONS(1941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1941), + [sym_raw_string] = ACTIONS(1941), + [anon_sym_BQUOTE] = ACTIONS(1941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1943), + [sym_word] = ACTIONS(1943), + [anon_sym_DOLLAR] = ACTIONS(1943), + [sym_ansii_c_string] = ACTIONS(1941), + [anon_sym_LT_LPAREN] = ACTIONS(1941), }, - [370] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1948), - [sym_comment] = ACTIONS(41), + [372] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [sym_comment] = ACTIONS(53), }, - [371] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(635), - [sym_function_definition] = STATE(635), - [sym_negated_command] = STATE(635), - [sym_test_command] = STATE(635), - [sym_variable_assignment] = STATE(696), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(1470), - [sym_redirected_statement] = STATE(635), - [sym_for_statement] = STATE(635), - [sym_compound_statement] = STATE(635), - [sym_subshell] = STATE(635), - [sym_declaration_command] = STATE(635), - [sym_unset_command] = STATE(635), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(377), - [sym_c_style_for_statement] = STATE(635), - [sym_while_statement] = STATE(635), - [sym_case_statement] = STATE(635), - [sym_pipeline] = STATE(635), - [sym_list] = STATE(635), - [sym_command] = STATE(635), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [373] = { + [sym_if_statement] = STATE(640), + [sym_function_definition] = STATE(640), + [sym_negated_command] = STATE(640), + [sym_test_command] = STATE(640), + [sym_variable_assignment] = STATE(702), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(1527), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(640), + [sym_for_statement] = STATE(640), + [sym_compound_statement] = STATE(640), + [sym_subshell] = STATE(640), + [sym_declaration_command] = STATE(640), + [sym_unset_command] = STATE(640), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(380), + [sym_c_style_for_statement] = STATE(640), + [sym_while_statement] = STATE(640), + [sym_case_statement] = STATE(640), + [sym_pipeline] = STATE(640), + [sym_list] = STATE(640), + [sym_command] = STATE(640), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [anon_sym_SEMI_SEMI] = ACTIONS(1948), - }, - [372] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_AMP_GT_GT] = ACTIONS(1950), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_LT_LT] = ACTIONS(1950), - [sym_file_descriptor] = ACTIONS(1952), - [anon_sym_GT] = ACTIONS(1950), - [anon_sym_AMP_GT] = ACTIONS(1950), - [anon_sym_PIPE_PIPE] = ACTIONS(1950), - [ts_builtin_sym_end] = ACTIONS(1952), - [anon_sym_LT_LT_LT] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_GT_AMP] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_LT_AMP] = ACTIONS(1950), - [anon_sym_GT_GT] = ACTIONS(1950), - [anon_sym_AMP_AMP] = ACTIONS(1950), - [anon_sym_SEMI_SEMI] = ACTIONS(1950), - [anon_sym_PIPE_AMP] = ACTIONS(1950), - }, - [373] = { - [sym_do_group] = STATE(378), - [sym_compound_statement] = STATE(378), - [anon_sym_LBRACE] = ACTIONS(27), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(637), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), }, [374] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [sym_ansii_c_string] = ACTIONS(1896), - [anon_sym_LT_LPAREN] = ACTIONS(1896), - [anon_sym_BQUOTE] = ACTIONS(1896), - [sym__special_character] = ACTIONS(1896), - [sym_number] = ACTIONS(1898), - [anon_sym_GT_LPAREN] = ACTIONS(1896), + [anon_sym_GT_LPAREN] = ACTIONS(2025), + [sym_number] = ACTIONS(2027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2025), + [sym_word] = ACTIONS(2027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2027), + [anon_sym_LT_LPAREN] = ACTIONS(2025), + [sym_ansii_c_string] = ACTIONS(2025), + [sym__special_character] = ACTIONS(2025), + [anon_sym_esac] = ACTIONS(2029), + [anon_sym_BQUOTE] = ACTIONS(2025), + [sym_raw_string] = ACTIONS(2025), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(2027), }, [375] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1954), - [sym_comment] = ACTIONS(41), + [anon_sym_LT_LT_DASH] = ACTIONS(2031), + [anon_sym_AMP_GT_GT] = ACTIONS(2031), + [anon_sym_LF] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [sym_file_descriptor] = ACTIONS(2033), + [anon_sym_GT] = ACTIONS(2031), + [anon_sym_AMP_GT] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [ts_builtin_sym_end] = ACTIONS(2033), + [anon_sym_LT_LT_LT] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_GT_AMP] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_LT_AMP] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2031), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_SEMI_SEMI] = ACTIONS(2031), + [anon_sym_PIPE_AMP] = ACTIONS(2031), }, [376] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1906), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1906), - [sym_word] = ACTIONS(1908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), - [anon_sym_DOLLAR] = ACTIONS(1908), - [sym_ansii_c_string] = ACTIONS(1906), - [anon_sym_LT_LPAREN] = ACTIONS(1906), - [anon_sym_BQUOTE] = ACTIONS(1906), - [sym__special_character] = ACTIONS(1906), - [sym_number] = ACTIONS(1908), - [anon_sym_GT_LPAREN] = ACTIONS(1906), + [sym_do_group] = STATE(381), + [sym_compound_statement] = STATE(381), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_do] = ACTIONS(677), }, [377] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1956), - [sym_comment] = ACTIONS(41), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1977), + [sym_number] = ACTIONS(1979), + [anon_sym_GT_LPAREN] = ACTIONS(1977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1977), + [sym_raw_string] = ACTIONS(1977), + [anon_sym_BQUOTE] = ACTIONS(1977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1979), + [sym_word] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1979), + [sym_ansii_c_string] = ACTIONS(1977), + [anon_sym_LT_LPAREN] = ACTIONS(1977), }, [378] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_AMP_GT_GT] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_LT_LT] = ACTIONS(1958), - [sym_file_descriptor] = ACTIONS(1960), - [anon_sym_GT] = ACTIONS(1958), - [anon_sym_AMP_GT] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1958), - [ts_builtin_sym_end] = ACTIONS(1960), - [anon_sym_LT_LT_LT] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_GT_AMP] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_LT_AMP] = ACTIONS(1958), - [anon_sym_GT_GT] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_SEMI_SEMI] = ACTIONS(1958), - [anon_sym_PIPE_AMP] = ACTIONS(1958), + [anon_sym_SEMI_SEMI] = ACTIONS(2035), + [sym_comment] = ACTIONS(53), }, [379] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1934), - [anon_sym_DQUOTE] = ACTIONS(1934), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1934), - [sym_word] = ACTIONS(1936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1934), - [anon_sym_DOLLAR] = ACTIONS(1936), - [sym_ansii_c_string] = ACTIONS(1934), - [anon_sym_LT_LPAREN] = ACTIONS(1934), - [anon_sym_BQUOTE] = ACTIONS(1934), - [sym__special_character] = ACTIONS(1934), - [sym_number] = ACTIONS(1936), - [anon_sym_GT_LPAREN] = ACTIONS(1934), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1995), + [sym_number] = ACTIONS(1997), + [anon_sym_GT_LPAREN] = ACTIONS(1995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1995), + [sym_raw_string] = ACTIONS(1995), + [anon_sym_BQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1997), + [sym_word] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [sym_ansii_c_string] = ACTIONS(1995), + [anon_sym_LT_LPAREN] = ACTIONS(1995), }, [380] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1940), - [sym_word] = ACTIONS(1942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1942), - [sym_ansii_c_string] = ACTIONS(1940), - [anon_sym_LT_LPAREN] = ACTIONS(1940), - [anon_sym_BQUOTE] = ACTIONS(1940), - [sym__special_character] = ACTIONS(1940), - [sym_number] = ACTIONS(1942), - [anon_sym_GT_LPAREN] = ACTIONS(1940), + [anon_sym_SEMI_SEMI] = ACTIONS(2037), + [sym_comment] = ACTIONS(53), }, [381] = { - [aux_sym__literal_repeat1] = STATE(398), - [sym_string] = STATE(397), - [sym_process_substitution] = STATE(397), - [sym_variable_assignment] = STATE(399), - [sym_subscript] = STATE(2476), - [sym_concatenation] = STATE(399), - [sym_expansion] = STATE(397), - [sym_command_substitution] = STATE(397), - [aux_sym_declaration_command_repeat1] = STATE(399), - [sym_simple_expansion] = STATE(397), - [sym_string_expansion] = STATE(397), - [anon_sym_PIPE_AMP] = ACTIONS(129), - [anon_sym_AMP_GT_GT] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(129), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1966), - [sym_number] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(129), - [sym_word] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_LT_AMP] = ACTIONS(129), - [anon_sym_GT_GT] = ACTIONS(129), - [sym__special_character] = ACTIONS(1972), - [anon_sym_LT_LT_DASH] = ACTIONS(129), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(129), - [sym_raw_string] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(129), - [sym_file_descriptor] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(129), - [anon_sym_AMP_GT] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(129), - [anon_sym_GT_AMP] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), - [aux_sym__simple_variable_name_token1] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1966), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_SEMI_SEMI] = ACTIONS(129), - [anon_sym_AMP] = ACTIONS(129), + [anon_sym_LT_LT_DASH] = ACTIONS(2039), + [anon_sym_AMP_GT_GT] = ACTIONS(2039), + [anon_sym_LF] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [sym_file_descriptor] = ACTIONS(2041), + [anon_sym_GT] = ACTIONS(2039), + [anon_sym_AMP_GT] = ACTIONS(2039), + [anon_sym_PIPE_PIPE] = ACTIONS(2039), + [ts_builtin_sym_end] = ACTIONS(2041), + [anon_sym_LT_LT_LT] = ACTIONS(2039), + [anon_sym_PIPE] = ACTIONS(2039), + [anon_sym_GT_AMP] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_LT_AMP] = ACTIONS(2039), + [anon_sym_GT_GT] = ACTIONS(2039), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_SEMI_SEMI] = ACTIONS(2039), + [anon_sym_PIPE_AMP] = ACTIONS(2039), }, [382] = { - [sym_command_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), - [sym_string] = STATE(400), - [aux_sym_unset_command_repeat1] = STATE(402), - [sym_process_substitution] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_concatenation] = STATE(402), - [sym_expansion] = STATE(400), - [anon_sym_PIPE_AMP] = ACTIONS(153), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_LT_LT] = ACTIONS(153), - [anon_sym_BQUOTE] = ACTIONS(1984), - [anon_sym_GT_LPAREN] = ACTIONS(1986), - [sym_number] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1990), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [sym_word] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(153), - [anon_sym_GT_GT] = ACTIONS(153), - [sym__special_character] = ACTIONS(1992), - [anon_sym_LT_LT_DASH] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(153), - [sym_raw_string] = ACTIONS(1988), - [anon_sym_RPAREN] = ACTIONS(153), - [sym_file_descriptor] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_AMP_GT] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(1994), - [anon_sym_LT_LT_LT] = ACTIONS(153), - [anon_sym_GT_AMP] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1996), - [aux_sym__simple_variable_name_token1] = ACTIONS(1998), - [anon_sym_LT_LPAREN] = ACTIONS(1986), - [sym_ansii_c_string] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(153), - [anon_sym_SEMI_SEMI] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(2015), + [sym_number] = ACTIONS(2017), + [anon_sym_GT_LPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2015), + [sym_raw_string] = ACTIONS(2015), + [anon_sym_BQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2017), + [sym_word] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(2017), + [sym_ansii_c_string] = ACTIONS(2015), + [anon_sym_LT_LPAREN] = ACTIONS(2015), }, [383] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_number] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(193), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [anon_sym_RPAREN] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(2025), + [sym_number] = ACTIONS(2027), + [anon_sym_GT_LPAREN] = ACTIONS(2025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2025), + [sym_raw_string] = ACTIONS(2025), + [anon_sym_BQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2027), + [sym_word] = ACTIONS(2027), + [anon_sym_DOLLAR] = ACTIONS(2027), + [sym_ansii_c_string] = ACTIONS(2025), + [anon_sym_LT_LPAREN] = ACTIONS(2025), }, [384] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_number] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(193), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [anon_sym_RPAREN] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [sym_concatenation] = STATE(402), + [sym_string] = STATE(400), + [sym_command_substitution] = STATE(400), + [sym_process_substitution] = STATE(400), + [sym_variable_assignment] = STATE(402), + [sym_subscript] = STATE(2595), + [sym_arithmetic_expansion] = STATE(400), + [sym_string_expansion] = STATE(400), + [sym_expansion] = STATE(400), + [aux_sym_declaration_command_repeat1] = STATE(402), + [aux_sym__literal_repeat1] = STATE(401), + [sym_simple_expansion] = STATE(400), + [anon_sym_AMP_GT_GT] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), + [anon_sym_LT_LPAREN] = ACTIONS(2049), + [sym_ansii_c_string] = ACTIONS(2051), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [aux_sym__simple_variable_name_token1] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_LT_AMP] = ACTIONS(135), + [anon_sym_GT_GT] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_LT_LT_DASH] = ACTIONS(135), + [anon_sym_GT_LPAREN] = ACTIONS(2049), + [sym_number] = ACTIONS(2051), + [anon_sym_LF] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2057), + [sym_variable_name] = ACTIONS(2059), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_file_descriptor] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(135), + [sym_word] = ACTIONS(2051), + [anon_sym_AMP_GT] = ACTIONS(135), + [sym__special_character] = ACTIONS(2061), + [anon_sym_LT_LT_LT] = ACTIONS(135), + [anon_sym_GT_AMP] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2063), + [sym_raw_string] = ACTIONS(2051), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(135), + [anon_sym_SEMI_SEMI] = ACTIONS(135), + [anon_sym_PIPE_AMP] = ACTIONS(135), }, [385] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [sym_concatenation] = STATE(405), + [sym_string] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_unset_command_repeat1] = STATE(405), + [sym_arithmetic_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [aux_sym__literal_repeat1] = STATE(404), + [sym_simple_expansion] = STATE(403), + [anon_sym_AMP_GT_GT] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(2065), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(161), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), + [anon_sym_LT_LPAREN] = ACTIONS(2071), + [sym_ansii_c_string] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(161), + [anon_sym_PIPE] = ACTIONS(161), + [aux_sym__simple_variable_name_token1] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_LT_AMP] = ACTIONS(161), + [anon_sym_GT_GT] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_LT_LT_DASH] = ACTIONS(161), + [anon_sym_GT_LPAREN] = ACTIONS(2071), + [sym_number] = ACTIONS(2073), + [anon_sym_LF] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(161), + [sym_file_descriptor] = ACTIONS(177), + [anon_sym_GT] = ACTIONS(161), + [sym_word] = ACTIONS(2073), + [anon_sym_AMP_GT] = ACTIONS(161), + [sym__special_character] = ACTIONS(2081), + [anon_sym_LT_LT_LT] = ACTIONS(161), + [anon_sym_GT_AMP] = ACTIONS(161), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2083), + [sym_raw_string] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(161), + [anon_sym_SEMI_SEMI] = ACTIONS(161), + [anon_sym_PIPE_AMP] = ACTIONS(161), }, [386] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [sym_test_command] = STATE(411), - [aux_sym_command_repeat1] = STATE(392), - [sym_subscript] = STATE(2467), - [sym_variable_assignment] = STATE(392), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_command] = STATE(411), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [sym_subshell] = STATE(411), - [sym_file_redirect] = STATE(392), - [anon_sym_LPAREN] = ACTIONS(63), + [aux_sym_concatenation_repeat1] = STATE(410), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [sym_ansii_c_string] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [sym__concat] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_number] = ACTIONS(225), + [anon_sym_LF] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(225), + [sym_word] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(229), + [anon_sym_AMP_GT] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [sym__special_character] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(225), + [sym_raw_string] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), + }, + [387] = { + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [sym_test_command] = STATE(415), + [sym_variable_assignment] = STATE(395), + [aux_sym_command_repeat1] = STATE(395), + [sym_subscript] = STATE(2585), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [sym_command] = STATE(415), + [sym_command_name] = STATE(396), + [aux_sym__literal_repeat1] = STATE(393), + [sym_simple_expansion] = STATE(386), + [sym_subshell] = STATE(415), + [sym_file_redirect] = STATE(395), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [sym_word] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [sym_comment] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_variable_name] = ACTIONS(257), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [sym_variable_name] = ACTIONS(273), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [387] = { - [aux_sym__literal_repeat1] = STATE(414), - [anon_sym_AMP] = ACTIONS(307), - [anon_sym_AMP_GT_GT] = ACTIONS(307), - [anon_sym_DOLLAR] = ACTIONS(307), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_BQUOTE] = ACTIONS(307), - [anon_sym_GT_LPAREN] = ACTIONS(307), - [sym_number] = ACTIONS(307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(307), - [anon_sym_PIPE_PIPE] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(307), - [sym_word] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_LT_AMP] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_EQ_TILDE] = ACTIONS(307), - [sym__special_character] = ACTIONS(2004), - [anon_sym_LT_LT_DASH] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(307), - [sym_raw_string] = ACTIONS(307), - [anon_sym_RPAREN] = ACTIONS(307), - [sym_file_descriptor] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_AMP_GT] = ACTIONS(307), - [anon_sym_EQ_EQ] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(307), - [anon_sym_LT_LT_LT] = ACTIONS(307), - [anon_sym_GT_AMP] = ACTIONS(307), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(307), - [anon_sym_LT_LPAREN] = ACTIONS(307), - [sym_ansii_c_string] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI_SEMI] = ACTIONS(307), - [anon_sym_PIPE_AMP] = ACTIONS(307), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [388] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_SEMI_SEMI] = ACTIONS(2006), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2010), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_PIPE_AMP] = ACTIONS(491), + [aux_sym_concatenation_repeat1] = STATE(410), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [sym__concat] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(225), + [sym_word] = ACTIONS(225), + [sym__special_character] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(225), + [sym_ansii_c_string] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(225), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [sym_number] = ACTIONS(225), + [anon_sym_LF] = ACTIONS(229), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_AMP_GT] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), }, [389] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(491), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [sym_variable_name] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(2010), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2006), - [anon_sym_PIPE_AMP] = ACTIONS(491), + [aux_sym_concatenation_repeat1] = STATE(410), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(285), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_AMP_GT] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [390] = { - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_number] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(193), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [anon_sym_RPAREN] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_SEMI_SEMI] = ACTIONS(2089), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LF] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_RPAREN] = ACTIONS(2093), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [391] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(420), - [sym_function_definition] = STATE(420), - [sym_negated_command] = STATE(420), - [sym_test_command] = STATE(420), - [sym_variable_assignment] = STATE(421), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(2091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(2089), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(2093), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [sym_file_descriptor] = ACTIONS(345), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(2089), + [anon_sym_PIPE_AMP] = ACTIONS(487), + }, + [392] = { + [sym_if_statement] = STATE(421), + [sym_function_definition] = STATE(421), + [sym_negated_command] = STATE(421), + [sym_test_command] = STATE(421), + [sym_variable_assignment] = STATE(422), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(420), - [sym_for_statement] = STATE(420), - [sym_compound_statement] = STATE(420), - [sym_subshell] = STATE(420), - [sym_declaration_command] = STATE(420), - [sym_unset_command] = STATE(420), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(420), - [sym_while_statement] = STATE(420), - [sym_case_statement] = STATE(420), - [sym_pipeline] = STATE(420), - [sym_list] = STATE(420), - [sym_command] = STATE(420), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(421), + [sym_for_statement] = STATE(421), + [sym_compound_statement] = STATE(421), + [sym_subshell] = STATE(421), + [sym_declaration_command] = STATE(421), + [sym_unset_command] = STATE(421), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(421), + [sym_while_statement] = STATE(421), + [sym_case_statement] = STATE(421), + [sym_pipeline] = STATE(421), + [sym_list] = STATE(421), + [sym_command] = STATE(421), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [392] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [sym_variable_assignment] = STATE(103), - [sym_subscript] = STATE(2467), - [aux_sym_command_repeat1] = STATE(103), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_command_name] = STATE(423), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [sym_file_redirect] = STATE(103), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [sym_word] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [sym__special_character] = ACTIONS(2012), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(93), - [sym_variable_name] = ACTIONS(257), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [sym_ansii_c_string] = ACTIONS(93), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [393] = { - [sym_command_substitution] = STATE(425), - [aux_sym__literal_repeat1] = STATE(426), - [sym_string] = STATE(425), - [sym_process_substitution] = STATE(425), - [sym_simple_expansion] = STATE(425), - [sym_string_expansion] = STATE(425), - [aux_sym_command_repeat2] = STATE(427), - [sym_concatenation] = STATE(427), - [sym_expansion] = STATE(425), - [anon_sym_PIPE_AMP] = ACTIONS(341), - [anon_sym_AMP_GT_GT] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(341), - [anon_sym_BQUOTE] = ACTIONS(2014), - [anon_sym_GT_LPAREN] = ACTIONS(2016), - [sym_number] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(341), - [sym_word] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_LT_AMP] = ACTIONS(341), - [anon_sym_GT_GT] = ACTIONS(341), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(353), - [anon_sym_SEMI] = ACTIONS(341), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_RPAREN] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(353), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_AMP_GT] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [anon_sym_GT_AMP] = ACTIONS(341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [sym_ansii_c_string] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_SEMI_SEMI] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(341), + [aux_sym__literal_repeat1] = STATE(425), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_EQ_TILDE] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_RPAREN] = ACTIONS(347), + [sym_word] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(347), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [sym__special_character] = ACTIONS(2095), + [anon_sym_LT_LT_LT] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(347), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_SEMI_SEMI] = ACTIONS(347), + [anon_sym_PIPE_AMP] = ACTIONS(347), }, [394] = { - [aux_sym_concatenation_repeat1] = STATE(1010), - [anon_sym_LT_LT_DASH] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_AMP_GT_GT] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(361), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(363), - [sym_file_descriptor] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(363), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [ts_builtin_sym_end] = ACTIONS(361), - [anon_sym_LT_LT_LT] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_GT_AMP] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LT_AMP] = ACTIONS(363), - [anon_sym_GT_GT] = ACTIONS(363), - [sym__concat] = ACTIONS(1164), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_SEMI_SEMI] = ACTIONS(363), - [anon_sym_PIPE_AMP] = ACTIONS(363), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [sym_ansii_c_string] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_number] = ACTIONS(225), + [anon_sym_LF] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(225), + [sym_word] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(229), + [anon_sym_AMP_GT] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [sym__special_character] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(225), + [sym_raw_string] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), }, [395] = { - [aux_sym__literal_repeat1] = STATE(1045), - [anon_sym_LT_LT_DASH] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(369), - [sym_file_descriptor] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [ts_builtin_sym_end] = ACTIONS(367), - [anon_sym_LT_LT_LT] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [sym__special_character] = ACTIONS(1170), - [anon_sym_SEMI_SEMI] = ACTIONS(369), - [anon_sym_PIPE_AMP] = ACTIONS(369), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [sym_variable_assignment] = STATE(105), + [sym_subscript] = STATE(2585), + [aux_sym_command_repeat1] = STATE(105), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [sym_command_name] = STATE(426), + [aux_sym__literal_repeat1] = STATE(393), + [sym_simple_expansion] = STATE(386), + [sym_file_redirect] = STATE(105), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [sym_variable_name] = ACTIONS(273), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [sym__special_character] = ACTIONS(2097), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(79), }, [396] = { - [anon_sym_LT_LT_DASH] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_AMP_GT_GT] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(361), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(363), - [sym_file_descriptor] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(363), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [ts_builtin_sym_end] = ACTIONS(361), - [anon_sym_LT_LT_LT] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_GT_AMP] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LT_AMP] = ACTIONS(363), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_SEMI_SEMI] = ACTIONS(363), - [anon_sym_PIPE_AMP] = ACTIONS(363), + [sym_concatenation] = STATE(429), + [sym_string] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [sym_arithmetic_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [aux_sym__literal_repeat1] = STATE(430), + [sym_simple_expansion] = STATE(427), + [aux_sym_command_repeat2] = STATE(429), + [anon_sym_AMP_GT_GT] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(2103), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_LT_AMP] = ACTIONS(359), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_EQ_TILDE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(359), + [anon_sym_GT_LPAREN] = ACTIONS(2103), + [sym_number] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(359), + [sym_file_descriptor] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(359), + [sym_word] = ACTIONS(2105), + [anon_sym_AMP_GT] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(2107), + [sym__special_character] = ACTIONS(103), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [anon_sym_GT_AMP] = ACTIONS(359), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_SEMI_SEMI] = ACTIONS(359), + [anon_sym_PIPE_AMP] = ACTIONS(359), }, [397] = { - [aux_sym_concatenation_repeat1] = STATE(850), - [anon_sym_AMP] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_number] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [sym__concat] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(373), - [sym_word] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [sym__special_character] = ACTIONS(373), - [anon_sym_LT_LT_DASH] = ACTIONS(373), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [sym_variable_name] = ACTIONS(377), - [anon_sym_RPAREN] = ACTIONS(373), - [sym_file_descriptor] = ACTIONS(377), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_LT_LT_LT] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [aux_sym__simple_variable_name_token1] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [sym_ansii_c_string] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_SEMI_SEMI] = ACTIONS(373), - [anon_sym_PIPE_AMP] = ACTIONS(373), + [aux_sym_concatenation_repeat1] = STATE(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(381), + [anon_sym_AMP_GT_GT] = ACTIONS(381), + [anon_sym_LF] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_AMP_GT] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [ts_builtin_sym_end] = ACTIONS(379), + [anon_sym_LT_LT_LT] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_GT_AMP] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_LT_AMP] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [sym__concat] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_SEMI_SEMI] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(381), }, [398] = { - [aux_sym__literal_repeat1] = STATE(853), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_AMP_GT_GT] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_BQUOTE] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_number] = ACTIONS(379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(379), - [sym_word] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_LT_AMP] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [sym__special_character] = ACTIONS(2030), - [anon_sym_LT_LT_DASH] = ACTIONS(379), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(379), - [sym_raw_string] = ACTIONS(379), - [sym_variable_name] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(379), - [sym_file_descriptor] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_AMP_GT] = ACTIONS(379), - [anon_sym_DQUOTE] = ACTIONS(379), - [anon_sym_LT_LT_LT] = ACTIONS(379), - [anon_sym_GT_AMP] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(379), - [aux_sym__simple_variable_name_token1] = ACTIONS(379), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [sym_ansii_c_string] = ACTIONS(379), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_SEMI_SEMI] = ACTIONS(379), - [anon_sym_PIPE_AMP] = ACTIONS(379), + [anon_sym_LT_LT_DASH] = ACTIONS(381), + [anon_sym_AMP_GT_GT] = ACTIONS(381), + [anon_sym_LF] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_AMP_GT] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [ts_builtin_sym_end] = ACTIONS(379), + [anon_sym_LT_LT_LT] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_GT_AMP] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_LT_AMP] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_SEMI_SEMI] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(381), }, [399] = { - [aux_sym__literal_repeat1] = STATE(398), - [sym_string] = STATE(397), - [sym_process_substitution] = STATE(397), - [sym_variable_assignment] = STATE(429), - [sym_subscript] = STATE(2476), - [sym_concatenation] = STATE(429), - [sym_expansion] = STATE(397), - [sym_command_substitution] = STATE(397), - [aux_sym_declaration_command_repeat1] = STATE(429), - [sym_simple_expansion] = STATE(397), - [sym_string_expansion] = STATE(397), - [anon_sym_PIPE_AMP] = ACTIONS(385), - [anon_sym_AMP_GT_GT] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1966), - [sym_number] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [sym_word] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_AMP] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [sym__special_character] = ACTIONS(1972), - [anon_sym_LT_LT_DASH] = ACTIONS(385), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(387), - [anon_sym_SEMI] = ACTIONS(385), - [sym_raw_string] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(385), - [sym_file_descriptor] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_AMP_GT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(385), - [anon_sym_GT_AMP] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), - [aux_sym__simple_variable_name_token1] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(1966), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_SEMI_SEMI] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), + [aux_sym__literal_repeat1] = STATE(1061), + [anon_sym_LT_LT_DASH] = ACTIONS(387), + [anon_sym_AMP_GT_GT] = ACTIONS(387), + [anon_sym_LF] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(387), + [sym_file_descriptor] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_AMP_GT] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [ts_builtin_sym_end] = ACTIONS(385), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_GT_AMP] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_LT_AMP] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [sym__special_character] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_SEMI_SEMI] = ACTIONS(387), + [anon_sym_PIPE_AMP] = ACTIONS(387), }, [400] = { - [aux_sym_concatenation_repeat1] = STATE(882), - [anon_sym_AMP] = ACTIONS(391), + [aux_sym_concatenation_repeat1] = STATE(858), [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(391), [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_BQUOTE] = ACTIONS(391), - [anon_sym_GT_LPAREN] = ACTIONS(391), - [sym_number] = ACTIONS(391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [sym_ansii_c_string] = ACTIONS(391), [anon_sym_PIPE_PIPE] = ACTIONS(391), - [sym__concat] = ACTIONS(2034), + [sym__concat] = ACTIONS(2113), [anon_sym_PIPE] = ACTIONS(391), - [sym_word] = ACTIONS(391), + [aux_sym__simple_variable_name_token1] = ACTIONS(391), [anon_sym_LT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), [anon_sym_GT_GT] = ACTIONS(391), - [sym__special_character] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(391), [anon_sym_LT_LT_DASH] = ACTIONS(391), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_number] = ACTIONS(391), [anon_sym_LF] = ACTIONS(395), [anon_sym_SEMI] = ACTIONS(391), - [sym_raw_string] = ACTIONS(391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), + [sym_variable_name] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(391), - [sym_file_descriptor] = ACTIONS(395), + [sym_word] = ACTIONS(391), [anon_sym_GT] = ACTIONS(391), + [sym_file_descriptor] = ACTIONS(395), [anon_sym_AMP_GT] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(391), + [sym__special_character] = ACTIONS(391), [anon_sym_LT_LT_LT] = ACTIONS(391), [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), - [aux_sym__simple_variable_name_token1] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(391), - [sym_ansii_c_string] = ACTIONS(391), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(391), + [sym_raw_string] = ACTIONS(391), [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(391), [anon_sym_SEMI_SEMI] = ACTIONS(391), [anon_sym_PIPE_AMP] = ACTIONS(391), }, [401] = { - [aux_sym__literal_repeat1] = STATE(885), - [anon_sym_AMP] = ACTIONS(397), + [aux_sym__literal_repeat1] = STATE(863), [anon_sym_AMP_GT_GT] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(397), [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_GT_LPAREN] = ACTIONS(397), - [sym_number] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), + [anon_sym_LT_LPAREN] = ACTIONS(397), + [sym_ansii_c_string] = ACTIONS(397), [anon_sym_PIPE_PIPE] = ACTIONS(397), [anon_sym_PIPE] = ACTIONS(397), - [sym_word] = ACTIONS(397), + [aux_sym__simple_variable_name_token1] = ACTIONS(397), [anon_sym_LT] = ACTIONS(397), [anon_sym_LT_AMP] = ACTIONS(397), [anon_sym_GT_GT] = ACTIONS(397), - [sym__special_character] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(397), [anon_sym_LT_LT_DASH] = ACTIONS(397), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(401), + [anon_sym_GT_LPAREN] = ACTIONS(397), + [sym_number] = ACTIONS(397), + [anon_sym_LF] = ACTIONS(399), [anon_sym_SEMI] = ACTIONS(397), - [sym_raw_string] = ACTIONS(397), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [sym_variable_name] = ACTIONS(399), [anon_sym_RPAREN] = ACTIONS(397), - [sym_file_descriptor] = ACTIONS(401), + [sym_word] = ACTIONS(397), [anon_sym_GT] = ACTIONS(397), + [sym_file_descriptor] = ACTIONS(399), [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), + [sym__special_character] = ACTIONS(2115), [anon_sym_LT_LT_LT] = ACTIONS(397), [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), - [aux_sym__simple_variable_name_token1] = ACTIONS(397), - [anon_sym_LT_LPAREN] = ACTIONS(397), - [sym_ansii_c_string] = ACTIONS(397), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(397), + [sym_raw_string] = ACTIONS(397), [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), [anon_sym_SEMI_SEMI] = ACTIONS(397), [anon_sym_PIPE_AMP] = ACTIONS(397), }, [402] = { - [sym_command_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), + [sym_concatenation] = STATE(432), [sym_string] = STATE(400), - [aux_sym_unset_command_repeat1] = STATE(430), + [sym_command_substitution] = STATE(400), [sym_process_substitution] = STATE(400), - [sym_simple_expansion] = STATE(400), + [sym_variable_assignment] = STATE(432), + [sym_subscript] = STATE(2595), + [sym_arithmetic_expansion] = STATE(400), [sym_string_expansion] = STATE(400), - [sym_concatenation] = STATE(430), [sym_expansion] = STATE(400), - [anon_sym_PIPE_AMP] = ACTIONS(403), + [aux_sym_declaration_command_repeat1] = STATE(432), + [aux_sym__literal_repeat1] = STATE(401), + [sym_simple_expansion] = STATE(400), [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2045), [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(1984), - [anon_sym_GT_LPAREN] = ACTIONS(1986), - [sym_number] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1990), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), + [anon_sym_LT_LPAREN] = ACTIONS(2049), + [sym_ansii_c_string] = ACTIONS(2051), [anon_sym_PIPE_PIPE] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), - [sym_word] = ACTIONS(1988), + [aux_sym__simple_variable_name_token1] = ACTIONS(2117), [anon_sym_LT] = ACTIONS(403), [anon_sym_LT_AMP] = ACTIONS(403), [anon_sym_GT_GT] = ACTIONS(403), - [sym__special_character] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(2055), [anon_sym_LT_LT_DASH] = ACTIONS(403), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(405), + [anon_sym_GT_LPAREN] = ACTIONS(2049), + [sym_number] = ACTIONS(2051), + [anon_sym_LF] = ACTIONS(407), [anon_sym_SEMI] = ACTIONS(403), - [sym_raw_string] = ACTIONS(1988), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2057), + [sym_variable_name] = ACTIONS(2059), [anon_sym_RPAREN] = ACTIONS(403), - [sym_file_descriptor] = ACTIONS(405), + [sym_file_descriptor] = ACTIONS(407), [anon_sym_GT] = ACTIONS(403), + [sym_word] = ACTIONS(2051), [anon_sym_AMP_GT] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(1994), + [sym__special_character] = ACTIONS(2061), [anon_sym_LT_LT_LT] = ACTIONS(403), [anon_sym_GT_AMP] = ACTIONS(403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1996), - [aux_sym__simple_variable_name_token1] = ACTIONS(2038), - [anon_sym_LT_LPAREN] = ACTIONS(1986), - [sym_ansii_c_string] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2063), + [sym_raw_string] = ACTIONS(2051), [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_SEMI_SEMI] = ACTIONS(403), [anon_sym_AMP] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_PIPE_AMP] = ACTIONS(403), }, [403] = { - [anon_sym_AMP] = ACTIONS(409), + [aux_sym_concatenation_repeat1] = STATE(891), [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(409), [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), + [sym__concat] = ACTIONS(2119), [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(409), [anon_sym_LT] = ACTIONS(409), [anon_sym_LT_AMP] = ACTIONS(409), [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_EQ_TILDE] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(409), [anon_sym_LT_LT_DASH] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), + [anon_sym_GT_LPAREN] = ACTIONS(409), + [sym_number] = ACTIONS(409), + [anon_sym_LF] = ACTIONS(413), [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), [anon_sym_RPAREN] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(411), + [sym_word] = ACTIONS(409), [anon_sym_GT] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(413), [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_EQ_EQ] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), + [sym__special_character] = ACTIONS(409), [anon_sym_LT_LT_LT] = ACTIONS(409), [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(409), [anon_sym_SEMI_SEMI] = ACTIONS(409), [anon_sym_PIPE_AMP] = ACTIONS(409), }, [404] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_EQ_TILDE] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [aux_sym__literal_repeat1] = STATE(896), + [anon_sym_AMP_GT_GT] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), + [anon_sym_LT_LPAREN] = ACTIONS(415), + [sym_ansii_c_string] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(415), + [aux_sym__simple_variable_name_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_GT_LPAREN] = ACTIONS(415), + [sym_number] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(415), + [sym_word] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(415), + [sym__special_character] = ACTIONS(2121), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(415), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), }, [405] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_EQ_TILDE] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [sym_concatenation] = STATE(433), + [sym_string] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_unset_command_repeat1] = STATE(433), + [sym_arithmetic_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [aux_sym__literal_repeat1] = STATE(404), + [sym_simple_expansion] = STATE(403), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(2065), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), + [anon_sym_LT_LPAREN] = ACTIONS(2071), + [sym_ansii_c_string] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [aux_sym__simple_variable_name_token1] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [anon_sym_GT_LPAREN] = ACTIONS(2071), + [sym_number] = ACTIONS(2073), + [anon_sym_LF] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(421), + [sym_file_descriptor] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(421), + [sym_word] = ACTIONS(2073), + [anon_sym_AMP_GT] = ACTIONS(421), + [sym__special_character] = ACTIONS(2081), + [anon_sym_LT_LT_LT] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2083), + [sym_raw_string] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), }, [406] = { - [aux_sym_concatenation_repeat1] = STATE(435), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_EQ_TILDE] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_EQ_EQ] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_EQ_TILDE] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(439), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(441), + [anon_sym_AMP_GT] = ACTIONS(439), + [anon_sym_EQ_EQ] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [407] = { - [anon_sym_PIPE_AMP] = ACTIONS(485), - [anon_sym_AMP_GT_GT] = ACTIONS(485), - [anon_sym_LT_LT] = ACTIONS(485), - [anon_sym_BQUOTE] = ACTIONS(485), - [anon_sym_PIPE_PIPE] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(485), - [anon_sym_LT] = ACTIONS(485), - [anon_sym_LT_AMP] = ACTIONS(485), - [anon_sym_GT_GT] = ACTIONS(485), - [anon_sym_LT_LT_DASH] = ACTIONS(485), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(485), - [sym_file_descriptor] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(485), - [anon_sym_AMP_GT] = ACTIONS(485), - [anon_sym_LT_LT_LT] = ACTIONS(485), - [anon_sym_GT_AMP] = ACTIONS(485), - [anon_sym_esac] = ACTIONS(485), - [anon_sym_AMP_AMP] = ACTIONS(485), - [anon_sym_SEMI_SEMI] = ACTIONS(485), - [anon_sym_AMP] = ACTIONS(485), + [aux_sym_concatenation_repeat1] = STATE(820), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_PLUS_EQ] = ACTIONS(445), + [sym_test_operator] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_RBRACK] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [sym__concat] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(445), + [anon_sym_EQ_TILDE] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_DASH_EQ] = ACTIONS(445), }, [408] = { - [aux_sym_concatenation_repeat1] = STATE(813), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(531), - [sym_test_operator] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_GT_EQ] = ACTIONS(529), - [sym__concat] = ACTIONS(2042), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_EQ_TILDE] = ACTIONS(529), - [anon_sym_DASH_DASH] = ACTIONS(529), - [anon_sym_LT_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), + [sym_expansion] = STATE(407), + [sym_unary_expression] = STATE(435), + [sym_postfix_expression] = STATE(435), + [sym_concatenation] = STATE(435), + [sym_string] = STATE(407), + [sym_command_substitution] = STATE(407), + [sym_process_substitution] = STATE(407), + [sym_parenthesized_expression] = STATE(435), + [aux_sym__literal_repeat1] = STATE(409), + [sym_simple_expansion] = STATE(407), + [sym__expression] = STATE(435), + [sym_binary_expression] = STATE(435), + [sym_arithmetic_expansion] = STATE(407), + [sym_string_expansion] = STATE(407), + [anon_sym_LPAREN] = ACTIONS(299), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_number] = ACTIONS(303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), + [anon_sym_BANG] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), + [sym_word] = ACTIONS(303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [sym_ansii_c_string] = ACTIONS(315), + [sym__special_character] = ACTIONS(317), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(319), + [sym_raw_string] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_test_operator] = ACTIONS(323), }, [409] = { - [sym_command_substitution] = STATE(408), - [sym_unary_expression] = STATE(442), - [sym_postfix_expression] = STATE(442), - [sym_string] = STATE(408), - [aux_sym__literal_repeat1] = STATE(410), - [sym_process_substitution] = STATE(408), - [sym_parenthesized_expression] = STATE(442), - [sym_simple_expansion] = STATE(408), - [sym_string_expansion] = STATE(408), - [sym__expression] = STATE(442), - [sym_binary_expression] = STATE(442), - [sym_concatenation] = STATE(442), - [sym_expansion] = STATE(408), - [anon_sym_LPAREN] = ACTIONS(283), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(285), - [anon_sym_BANG] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_test_operator] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym_number] = ACTIONS(297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_word] = ACTIONS(297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(285), - [sym__special_character] = ACTIONS(305), + [aux_sym__literal_repeat1] = STATE(825), + [anon_sym_BANG_EQ] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(451), + [sym_test_operator] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_RBRACK] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_GT] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(451), + [anon_sym_PIPE_PIPE] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(451), + [sym__special_character] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_LT] = ACTIONS(453), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_EQ_TILDE] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_AMP_AMP] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(451), }, [410] = { - [aux_sym__literal_repeat1] = STATE(816), - [anon_sym_BANG_EQ] = ACTIONS(535), - [anon_sym_PLUS_EQ] = ACTIONS(535), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(535), - [anon_sym_RBRACK] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_GT] = ACTIONS(537), - [anon_sym_EQ] = ACTIONS(537), - [sym_test_operator] = ACTIONS(535), - [anon_sym_EQ_EQ] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_GT_EQ] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_EQ_TILDE] = ACTIONS(535), - [anon_sym_DASH_DASH] = ACTIONS(535), - [anon_sym_LT_EQ] = ACTIONS(535), - [anon_sym_AMP_AMP] = ACTIONS(535), - [sym__special_character] = ACTIONS(2044), - [anon_sym_DASH_EQ] = ACTIONS(535), + [aux_sym_concatenation_repeat1] = STATE(444), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_EQ_TILDE] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(475), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [anon_sym_AMP_GT] = ACTIONS(475), + [anon_sym_EQ_EQ] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [411] = { - [anon_sym_PIPE_AMP] = ACTIONS(551), - [anon_sym_AMP_GT_GT] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_BQUOTE] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_AMP] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_LT_LT_DASH] = ACTIONS(551), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(553), - [anon_sym_SEMI] = ACTIONS(551), - [anon_sym_RPAREN] = ACTIONS(551), - [sym_file_descriptor] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_AMP_GT] = ACTIONS(551), - [anon_sym_LT_LT_LT] = ACTIONS(551), - [anon_sym_GT_AMP] = ACTIONS(551), - [anon_sym_esac] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_SEMI_SEMI] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(551), + [anon_sym_AMP_GT_GT] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(483), + [anon_sym_PIPE_PIPE] = ACTIONS(483), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_LT_AMP] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(483), + [anon_sym_LT_LT_DASH] = ACTIONS(483), + [anon_sym_LF] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(483), + [sym_file_descriptor] = ACTIONS(485), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_AMP_GT] = ACTIONS(483), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [anon_sym_GT_AMP] = ACTIONS(483), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(483), + [anon_sym_esac] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(483), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_SEMI_SEMI] = ACTIONS(483), + [anon_sym_PIPE_AMP] = ACTIONS(483), }, [412] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_EQ_TILDE] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [anon_sym_RPAREN] = ACTIONS(595), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_EQ_TILDE] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [sym_file_descriptor] = ACTIONS(507), + [anon_sym_AMP_GT] = ACTIONS(505), + [anon_sym_EQ_EQ] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [413] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_EQ_TILDE] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_AMP_GT] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [414] = { - [aux_sym__literal_repeat1] = STATE(414), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_EQ_TILDE] = ACTIONS(647), - [sym__special_character] = ACTIONS(2046), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [anon_sym_RPAREN] = ACTIONS(647), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [anon_sym_RPAREN] = ACTIONS(513), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [415] = { - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_word] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(658), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_while] = ACTIONS(654), - [anon_sym_SEMI_SEMI] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_local] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_case] = ACTIONS(654), - [anon_sym_BANG] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(589), + [anon_sym_esac] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [416] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(456), - [sym_function_definition] = STATE(456), - [sym_negated_command] = STATE(456), - [sym_test_command] = STATE(456), - [sym_variable_assignment] = STATE(457), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(456), - [sym_for_statement] = STATE(456), - [sym_compound_statement] = STATE(456), - [sym_subshell] = STATE(456), - [sym_declaration_command] = STATE(456), - [sym_unset_command] = STATE(456), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(456), - [sym_while_statement] = STATE(456), - [sym_case_statement] = STATE(456), - [sym_pipeline] = STATE(456), - [sym_list] = STATE(456), - [sym_command] = STATE(456), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_if_statement] = STATE(460), + [sym_function_definition] = STATE(460), + [sym_negated_command] = STATE(460), + [sym_test_command] = STATE(460), + [sym_variable_assignment] = STATE(461), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_compound_statement] = STATE(460), + [sym_subshell] = STATE(460), + [sym_declaration_command] = STATE(460), + [sym_unset_command] = STATE(460), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_pipeline] = STATE(460), + [sym_list] = STATE(460), + [sym_command] = STATE(460), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [417] = { - [sym_heredoc_body] = STATE(459), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(658), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [sym_heredoc_body] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(695), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_unset] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(996), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [418] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(461), - [sym_function_definition] = STATE(461), - [sym_negated_command] = STATE(461), - [sym_test_command] = STATE(461), - [sym_variable_assignment] = STATE(462), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(461), - [sym_for_statement] = STATE(461), - [sym_compound_statement] = STATE(461), - [sym_subshell] = STATE(461), - [sym_declaration_command] = STATE(461), - [sym_unset_command] = STATE(461), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(461), - [sym_while_statement] = STATE(461), - [sym_case_statement] = STATE(461), - [sym_pipeline] = STATE(461), - [sym_list] = STATE(461), - [sym_command] = STATE(461), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(695), + [sym_word] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(689), + [anon_sym_while] = ACTIONS(687), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_local] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_case] = ACTIONS(687), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(687), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + }, + [419] = { + [sym_if_statement] = STATE(465), + [sym_function_definition] = STATE(465), + [sym_negated_command] = STATE(465), + [sym_test_command] = STATE(465), + [sym_variable_assignment] = STATE(466), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(465), + [sym_for_statement] = STATE(465), + [sym_compound_statement] = STATE(465), + [sym_subshell] = STATE(465), + [sym_declaration_command] = STATE(465), + [sym_unset_command] = STATE(465), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(465), + [sym_while_statement] = STATE(465), + [sym_case_statement] = STATE(465), + [sym_pipeline] = STATE(465), + [sym_list] = STATE(465), + [sym_command] = STATE(465), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [419] = { - [sym_heredoc_redirect] = STATE(466), - [aux_sym_redirected_statement_repeat1] = STATE(466), - [sym_herestring_redirect] = STATE(466), - [sym_file_redirect] = STATE(466), - [anon_sym_PIPE_AMP] = ACTIONS(684), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(684), - [anon_sym_PIPE_PIPE] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(686), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_RPAREN] = ACTIONS(684), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(684), - [anon_sym_SEMI_SEMI] = ACTIONS(684), - [anon_sym_AMP] = ACTIONS(684), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [420] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2049), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_RPAREN] = ACTIONS(2053), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2051), - [anon_sym_AMP] = ACTIONS(2051), + [sym_heredoc_redirect] = STATE(470), + [sym_file_redirect] = STATE(470), + [sym_herestring_redirect] = STATE(470), + [aux_sym_redirected_statement_repeat1] = STATE(470), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), }, [421] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(491), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2049), - [anon_sym_SEMI] = ACTIONS(2051), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(2053), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2051), - [anon_sym_AMP] = ACTIONS(2051), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_PIPE_AMP] = ACTIONS(487), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LF] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_RPAREN] = ACTIONS(2135), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_SEMI_SEMI] = ACTIONS(2133), + [anon_sym_LT_LT_DASH] = ACTIONS(497), }, [422] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_negated_command] = STATE(61), - [sym_test_command] = STATE(61), - [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(422), - [sym_redirected_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_compound_statement] = STATE(61), - [sym_subshell] = STATE(61), - [sym_declaration_command] = STATE(61), - [sym_unset_command] = STATE(61), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_pipeline] = STATE(61), - [sym_list] = STATE(61), - [sym_command] = STATE(61), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_local] = ACTIONS(698), - [anon_sym_typeset] = ACTIONS(698), - [anon_sym_unsetenv] = ACTIONS(701), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(707), - [anon_sym_GT_LPAREN] = ACTIONS(710), - [sym_number] = ACTIONS(713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(716), - [anon_sym_function] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(725), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_export] = ACTIONS(698), - [sym_word] = ACTIONS(728), - [sym__special_character] = ACTIONS(731), - [anon_sym_if] = ACTIONS(734), - [anon_sym_case] = ACTIONS(737), - [anon_sym_LPAREN_LPAREN] = ACTIONS(740), - [sym_raw_string] = ACTIONS(743), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_declare] = ACTIONS(698), - [sym_variable_name] = ACTIONS(749), - [sym_file_descriptor] = ACTIONS(752), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(725), - [anon_sym_AMP_GT] = ACTIONS(725), - [anon_sym_readonly] = ACTIONS(698), - [anon_sym_unset] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(758), - [anon_sym_LT_LPAREN] = ACTIONS(710), - [anon_sym_for] = ACTIONS(761), - [anon_sym_while] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(767), - [sym_ansii_c_string] = ACTIONS(743), - [anon_sym_LBRACK_LBRACK] = ACTIONS(770), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(2131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(2133), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(2135), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_SEMI_SEMI] = ACTIONS(2133), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [423] = { - [sym_command_substitution] = STATE(425), - [aux_sym__literal_repeat1] = STATE(426), - [sym_string] = STATE(425), - [sym_process_substitution] = STATE(425), - [sym_simple_expansion] = STATE(425), - [sym_string_expansion] = STATE(425), - [aux_sym_command_repeat2] = STATE(469), - [sym_concatenation] = STATE(469), - [sym_expansion] = STATE(425), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(2014), - [anon_sym_GT_LPAREN] = ACTIONS(2016), - [sym_number] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [sym_word] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(773), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_RPAREN] = ACTIONS(773), - [sym_file_descriptor] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [sym_ansii_c_string] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), + [sym_if_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_negated_command] = STATE(64), + [sym_test_command] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_compound_statement] = STATE(64), + [sym_subshell] = STATE(64), + [sym_declaration_command] = STATE(64), + [sym_unset_command] = STATE(64), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_pipeline] = STATE(64), + [sym_list] = STATE(64), + [sym_command] = STATE(64), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_AMP_GT_GT] = ACTIONS(730), + [anon_sym_local] = ACTIONS(733), + [anon_sym_typeset] = ACTIONS(733), + [anon_sym_unsetenv] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [sym_ansii_c_string] = ACTIONS(751), + [anon_sym_function] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(760), + [anon_sym_LT_AMP] = ACTIONS(730), + [anon_sym_GT_GT] = ACTIONS(730), + [anon_sym_export] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(763), + [anon_sym_if] = ACTIONS(766), + [anon_sym_case] = ACTIONS(769), + [anon_sym_LPAREN_LPAREN] = ACTIONS(772), + [sym_number] = ACTIONS(775), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_file_descriptor] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(760), + [sym_word] = ACTIONS(787), + [anon_sym_AMP_GT] = ACTIONS(760), + [anon_sym_readonly] = ACTIONS(733), + [sym_variable_name] = ACTIONS(790), + [anon_sym_unset] = ACTIONS(736), + [sym__special_character] = ACTIONS(793), + [anon_sym_GT_AMP] = ACTIONS(730), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_for] = ACTIONS(799), + [anon_sym_while] = ACTIONS(802), + [anon_sym_LBRACK] = ACTIONS(805), + [sym_raw_string] = ACTIONS(751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(808), }, [424] = { - [sym_command_substitution] = STATE(471), - [aux_sym__literal_repeat1] = STATE(472), - [sym_string] = STATE(471), - [sym_process_substitution] = STATE(471), - [sym_simple_expansion] = STATE(471), - [sym_string_expansion] = STATE(471), - [sym_concatenation] = STATE(470), - [sym_expansion] = STATE(471), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(2057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_word] = ACTIONS(2057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [sym_ansii_c_string] = ACTIONS(2055), - [sym_regex] = ACTIONS(2059), - [sym__special_character] = ACTIONS(2012), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(285), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_AMP_GT] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [425] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_AMP_GT_GT] = ACTIONS(799), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_LT_LT] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(799), - [anon_sym_GT_LPAREN] = ACTIONS(799), - [sym_number] = ACTIONS(799), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(799), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [sym__concat] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(799), - [sym_word] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(799), - [anon_sym_LT_AMP] = ACTIONS(799), - [anon_sym_GT_GT] = ACTIONS(799), - [anon_sym_EQ_TILDE] = ACTIONS(799), - [sym__special_character] = ACTIONS(799), - [anon_sym_LT_LT_DASH] = ACTIONS(799), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(799), - [sym_raw_string] = ACTIONS(799), - [anon_sym_RPAREN] = ACTIONS(799), - [sym_file_descriptor] = ACTIONS(801), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_AMP_GT] = ACTIONS(799), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [anon_sym_LT_LT_LT] = ACTIONS(799), - [anon_sym_GT_AMP] = ACTIONS(799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(799), - [anon_sym_LT_LPAREN] = ACTIONS(799), - [sym_ansii_c_string] = ACTIONS(799), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_SEMI_SEMI] = ACTIONS(799), - [anon_sym_PIPE_AMP] = ACTIONS(799), - }, - [426] = { - [aux_sym__literal_repeat1] = STATE(414), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_LT_LT] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_number] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [sym_word] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(803), - [sym__special_character] = ACTIONS(2004), - [anon_sym_LT_LT_DASH] = ACTIONS(803), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(803), - [sym_raw_string] = ACTIONS(803), - [anon_sym_RPAREN] = ACTIONS(803), - [sym_file_descriptor] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_AMP_GT] = ACTIONS(803), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_LT_LT_LT] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [sym_ansii_c_string] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - }, - [427] = { - [sym_command_substitution] = STATE(425), - [aux_sym__literal_repeat1] = STATE(426), - [sym_string] = STATE(425), - [sym_process_substitution] = STATE(425), - [sym_simple_expansion] = STATE(425), - [sym_string_expansion] = STATE(425), - [aux_sym_command_repeat2] = STATE(473), - [sym_concatenation] = STATE(473), - [sym_expansion] = STATE(425), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(2014), - [anon_sym_GT_LPAREN] = ACTIONS(2016), - [sym_number] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [sym_word] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(773), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_RPAREN] = ACTIONS(773), - [sym_file_descriptor] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [sym_ansii_c_string] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - }, - [428] = { - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_esac] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(807), - }, - [429] = { - [aux_sym__literal_repeat1] = STATE(398), - [sym_string] = STATE(397), - [sym_process_substitution] = STATE(397), - [sym_variable_assignment] = STATE(429), - [sym_subscript] = STATE(2476), - [sym_concatenation] = STATE(429), - [sym_expansion] = STATE(397), - [sym_command_substitution] = STATE(397), - [aux_sym_declaration_command_repeat1] = STATE(429), - [sym_simple_expansion] = STATE(397), - [sym_string_expansion] = STATE(397), - [anon_sym_AMP] = ACTIONS(811), + [aux_sym__literal_repeat1] = STATE(425), [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2067), - [sym_number] = ACTIONS(2070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), [anon_sym_PIPE_PIPE] = ACTIONS(811), [anon_sym_PIPE] = ACTIONS(811), - [sym_word] = ACTIONS(2070), [anon_sym_LT] = ACTIONS(811), [anon_sym_LT_AMP] = ACTIONS(811), [anon_sym_GT_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(2076), + [anon_sym_EQ_TILDE] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), [anon_sym_LT_LT_DASH] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(831), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), [anon_sym_SEMI] = ACTIONS(811), - [sym_raw_string] = ACTIONS(2070), - [sym_variable_name] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(831), + [sym_word] = ACTIONS(811), [anon_sym_GT] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(813), [anon_sym_AMP_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_EQ_EQ] = ACTIONS(811), + [sym__special_character] = ACTIONS(2137), [anon_sym_LT_LT_LT] = ACTIONS(811), [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2085), - [aux_sym__simple_variable_name_token1] = ACTIONS(2088), - [anon_sym_LT_LPAREN] = ACTIONS(2067), - [sym_ansii_c_string] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), [anon_sym_SEMI_SEMI] = ACTIONS(811), [anon_sym_PIPE_AMP] = ACTIONS(811), }, + [426] = { + [sym_concatenation] = STATE(473), + [sym_string] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [sym_arithmetic_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [aux_sym__literal_repeat1] = STATE(430), + [sym_simple_expansion] = STATE(427), + [aux_sym_command_repeat2] = STATE(473), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(2103), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_EQ_TILDE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(2103), + [sym_number] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(818), + [sym_file_descriptor] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(818), + [sym_word] = ACTIONS(2105), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(2107), + [sym__special_character] = ACTIONS(103), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + }, + [427] = { + [aux_sym_concatenation_repeat1] = STATE(410), + [anon_sym_AMP_GT_GT] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(838), + [anon_sym_LT_LT] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), + [anon_sym_LT_LPAREN] = ACTIONS(838), + [sym_ansii_c_string] = ACTIONS(838), + [anon_sym_PIPE_PIPE] = ACTIONS(838), + [sym__concat] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(838), + [anon_sym_LT_AMP] = ACTIONS(838), + [anon_sym_GT_GT] = ACTIONS(838), + [anon_sym_EQ_TILDE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_LT_LT_DASH] = ACTIONS(838), + [anon_sym_GT_LPAREN] = ACTIONS(838), + [sym_number] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [sym_word] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(838), + [sym_file_descriptor] = ACTIONS(840), + [anon_sym_AMP_GT] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(838), + [sym__special_character] = ACTIONS(838), + [anon_sym_LT_LT_LT] = ACTIONS(838), + [anon_sym_GT_AMP] = ACTIONS(838), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(838), + [sym_raw_string] = ACTIONS(838), + [anon_sym_AMP_AMP] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_SEMI_SEMI] = ACTIONS(838), + [anon_sym_PIPE_AMP] = ACTIONS(838), + }, + [428] = { + [sym_expansion] = STATE(475), + [sym_concatenation] = STATE(474), + [sym_string] = STATE(475), + [sym_command_substitution] = STATE(475), + [sym_process_substitution] = STATE(475), + [aux_sym__literal_repeat1] = STATE(476), + [sym_simple_expansion] = STATE(475), + [sym_arithmetic_expansion] = STATE(475), + [sym_string_expansion] = STATE(475), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [sym_number] = ACTIONS(2140), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(2140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(2142), + [sym__special_character] = ACTIONS(2097), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(2142), + [sym_regex] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(85), + }, + [429] = { + [sym_concatenation] = STATE(477), + [sym_string] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [sym_arithmetic_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [aux_sym__literal_repeat1] = STATE(430), + [sym_simple_expansion] = STATE(427), + [aux_sym_command_repeat2] = STATE(477), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(2103), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_EQ_TILDE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(2103), + [sym_number] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(818), + [sym_file_descriptor] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(818), + [sym_word] = ACTIONS(2105), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(2107), + [sym__special_character] = ACTIONS(103), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + }, [430] = { - [sym_command_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), - [sym_string] = STATE(400), - [aux_sym_unset_command_repeat1] = STATE(430), - [sym_process_substitution] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_concatenation] = STATE(430), - [sym_expansion] = STATE(400), - [anon_sym_AMP] = ACTIONS(845), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(2094), - [anon_sym_GT_LPAREN] = ACTIONS(2097), - [sym_number] = ACTIONS(2100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2103), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [sym_word] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_GT] = ACTIONS(845), - [sym__special_character] = ACTIONS(2106), - [anon_sym_LT_LT_DASH] = ACTIONS(845), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(845), - [sym_raw_string] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(845), - [sym_file_descriptor] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_LT_LT_LT] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2112), - [aux_sym__simple_variable_name_token1] = ACTIONS(2115), - [anon_sym_LT_LPAREN] = ACTIONS(2097), - [sym_ansii_c_string] = ACTIONS(2100), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), + [aux_sym__literal_repeat1] = STATE(425), + [anon_sym_AMP_GT_GT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(848), + [anon_sym_LT_LT] = ACTIONS(848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(848), + [anon_sym_LT_LPAREN] = ACTIONS(848), + [sym_ansii_c_string] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_LT_AMP] = ACTIONS(848), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_EQ_TILDE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(848), + [anon_sym_LT_LT_DASH] = ACTIONS(848), + [anon_sym_GT_LPAREN] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [anon_sym_LF] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(848), + [anon_sym_RPAREN] = ACTIONS(848), + [sym_word] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(848), + [sym_file_descriptor] = ACTIONS(850), + [anon_sym_AMP_GT] = ACTIONS(848), + [anon_sym_EQ_EQ] = ACTIONS(848), + [sym__special_character] = ACTIONS(2095), + [anon_sym_LT_LT_LT] = ACTIONS(848), + [anon_sym_GT_AMP] = ACTIONS(848), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_raw_string] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_SEMI_SEMI] = ACTIONS(848), + [anon_sym_PIPE_AMP] = ACTIONS(848), }, [431] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(852), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(852), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_AMP] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(852), + [anon_sym_LT_LT_DASH] = ACTIONS(852), + [anon_sym_LF] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_RPAREN] = ACTIONS(852), + [sym_file_descriptor] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_AMP_GT] = ACTIONS(852), + [anon_sym_LT_LT_LT] = ACTIONS(852), + [anon_sym_GT_AMP] = ACTIONS(852), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(852), + [anon_sym_esac] = ACTIONS(852), + [anon_sym_AMP_AMP] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_SEMI_SEMI] = ACTIONS(852), + [anon_sym_PIPE_AMP] = ACTIONS(852), }, [432] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_EQ_TILDE] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [sym_concatenation] = STATE(432), + [sym_string] = STATE(400), + [sym_command_substitution] = STATE(400), + [sym_process_substitution] = STATE(400), + [sym_variable_assignment] = STATE(432), + [sym_subscript] = STATE(2595), + [sym_arithmetic_expansion] = STATE(400), + [sym_string_expansion] = STATE(400), + [sym_expansion] = STATE(400), + [aux_sym_declaration_command_repeat1] = STATE(432), + [aux_sym__literal_repeat1] = STATE(401), + [sym_simple_expansion] = STATE(400), + [anon_sym_AMP_GT_GT] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2152), + [anon_sym_LT_LPAREN] = ACTIONS(2155), + [sym_ansii_c_string] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(856), + [anon_sym_PIPE] = ACTIONS(856), + [aux_sym__simple_variable_name_token1] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_LT_AMP] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_LT_LT_DASH] = ACTIONS(856), + [anon_sym_GT_LPAREN] = ACTIONS(2155), + [sym_number] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2167), + [sym_variable_name] = ACTIONS(2170), + [anon_sym_RPAREN] = ACTIONS(856), + [sym_word] = ACTIONS(2158), + [anon_sym_GT] = ACTIONS(856), + [sym_file_descriptor] = ACTIONS(879), + [anon_sym_AMP_GT] = ACTIONS(856), + [sym__special_character] = ACTIONS(2173), + [anon_sym_LT_LT_LT] = ACTIONS(856), + [anon_sym_GT_AMP] = ACTIONS(856), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [anon_sym_PIPE_AMP] = ACTIONS(856), }, [433] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [sym_concatenation] = STATE(433), + [sym_string] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_unset_command_repeat1] = STATE(433), + [sym_arithmetic_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [aux_sym__literal_repeat1] = STATE(404), + [sym_simple_expansion] = STATE(403), + [anon_sym_AMP_GT_GT] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2182), + [anon_sym_LT_LT] = ACTIONS(893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2185), + [anon_sym_LT_LPAREN] = ACTIONS(2188), + [sym_ansii_c_string] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [aux_sym__simple_variable_name_token1] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_LT_AMP] = ACTIONS(893), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_LT_LT_DASH] = ACTIONS(893), + [anon_sym_GT_LPAREN] = ACTIONS(2188), + [sym_number] = ACTIONS(2191), + [anon_sym_LF] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(893), + [sym_word] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(916), + [anon_sym_AMP_GT] = ACTIONS(893), + [sym__special_character] = ACTIONS(2203), + [anon_sym_LT_LT_LT] = ACTIONS(893), + [anon_sym_GT_AMP] = ACTIONS(893), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2206), + [sym_raw_string] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_SEMI_SEMI] = ACTIONS(893), + [anon_sym_PIPE_AMP] = ACTIONS(893), }, [434] = { - [sym_command_substitution] = STATE(433), - [sym_string] = STATE(433), - [sym_process_substitution] = STATE(433), - [sym_simple_expansion] = STATE(433), - [sym_string_expansion] = STATE(433), - [sym_expansion] = STATE(433), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(2122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_word] = ACTIONS(2122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [sym_ansii_c_string] = ACTIONS(2118), - [sym__special_character] = ACTIONS(2118), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_EQ_TILDE] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [sym_file_descriptor] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [435] = { - [aux_sym_concatenation_repeat1] = STATE(435), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(679), + [anon_sym_PLUS_EQ] = ACTIONS(679), + [sym_test_operator] = ACTIONS(679), + [anon_sym_PLUS_PLUS] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_GT_EQ] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(683), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_EQ_TILDE] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_LT_EQ] = ACTIONS(679), + [anon_sym_DASH_EQ] = ACTIONS(679), }, [436] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [sym_expansion] = STATE(407), + [sym_unary_expression] = STATE(480), + [sym_postfix_expression] = STATE(480), + [sym_concatenation] = STATE(480), + [sym_string] = STATE(407), + [sym_command_substitution] = STATE(407), + [sym_process_substitution] = STATE(407), + [sym_parenthesized_expression] = STATE(480), + [aux_sym__literal_repeat1] = STATE(409), + [sym_simple_expansion] = STATE(407), + [sym__expression] = STATE(480), + [sym_binary_expression] = STATE(480), + [sym_arithmetic_expansion] = STATE(407), + [sym_string_expansion] = STATE(407), + [anon_sym_LPAREN] = ACTIONS(299), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_number] = ACTIONS(303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), + [anon_sym_BANG] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), + [sym_word] = ACTIONS(303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [sym_ansii_c_string] = ACTIONS(315), + [sym__special_character] = ACTIONS(317), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(319), + [sym_raw_string] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_test_operator] = ACTIONS(323), }, [437] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), - }, - [438] = { - [anon_sym_PIPE_AMP] = ACTIONS(965), - [anon_sym_AMP_GT_GT] = ACTIONS(965), - [anon_sym_LT_LT] = ACTIONS(965), - [anon_sym_BQUOTE] = ACTIONS(965), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(965), - [anon_sym_LT_AMP] = ACTIONS(965), - [anon_sym_GT_GT] = ACTIONS(965), - [anon_sym_LT_LT_DASH] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(965), - [anon_sym_RPAREN] = ACTIONS(965), - [sym_file_descriptor] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(965), - [anon_sym_AMP_GT] = ACTIONS(965), - [anon_sym_LT_LT_LT] = ACTIONS(965), - [anon_sym_GT_AMP] = ACTIONS(965), - [anon_sym_esac] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(965), - [anon_sym_SEMI_SEMI] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(965), - }, - [439] = { - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), - }, - [440] = { - [sym_heredoc_body] = STATE(1426), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), - }, - [441] = { - [anon_sym_PIPE_AMP] = ACTIONS(973), - [anon_sym_AMP_GT_GT] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_BQUOTE] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_LT_AMP] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_LT_LT_DASH] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(973), - [anon_sym_LT_LT_LT] = ACTIONS(973), - [anon_sym_GT_AMP] = ACTIONS(973), - [anon_sym_esac] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(973), - [anon_sym_SEMI_SEMI] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [sym_test_operator] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_EQ_TILDE] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + }, + [438] = { + [sym_expansion] = STATE(407), + [sym_unary_expression] = STATE(480), + [sym_postfix_expression] = STATE(480), + [sym_concatenation] = STATE(480), + [sym_string] = STATE(407), + [sym_command_substitution] = STATE(407), + [sym_process_substitution] = STATE(407), + [sym_parenthesized_expression] = STATE(480), + [aux_sym__literal_repeat1] = STATE(409), + [sym_simple_expansion] = STATE(407), + [sym__expression] = STATE(480), + [sym_binary_expression] = STATE(480), + [sym_arithmetic_expansion] = STATE(407), + [sym_string_expansion] = STATE(407), + [anon_sym_LPAREN] = ACTIONS(299), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_number] = ACTIONS(303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), + [anon_sym_BANG] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), + [sym_word] = ACTIONS(303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [sym_ansii_c_string] = ACTIONS(315), + [sym__special_character] = ACTIONS(317), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(319), + [sym_raw_string] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_regex] = ACTIONS(2209), + [sym_test_operator] = ACTIONS(323), + }, + [439] = { + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_EQ_TILDE] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [sym_file_descriptor] = ACTIONS(969), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), + }, + [440] = { + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_EQ_TILDE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + }, + [441] = { + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_EQ_TILDE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(977), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [442] = { - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_PLUS_EQ] = ACTIONS(639), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(643), - [sym_test_operator] = ACTIONS(639), - [anon_sym_EQ_EQ] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_EQ_TILDE] = ACTIONS(645), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_DASH_EQ] = ACTIONS(639), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_EQ_TILDE] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [443] = { - [sym_command_substitution] = STATE(408), - [sym_unary_expression] = STATE(481), - [sym_postfix_expression] = STATE(481), - [sym_string] = STATE(408), - [aux_sym__literal_repeat1] = STATE(410), - [sym_process_substitution] = STATE(408), - [sym_parenthesized_expression] = STATE(481), - [sym_simple_expansion] = STATE(408), - [sym_string_expansion] = STATE(408), - [sym__expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_concatenation] = STATE(481), - [sym_expansion] = STATE(408), - [anon_sym_LPAREN] = ACTIONS(283), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(285), - [anon_sym_BANG] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_test_operator] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym_number] = ACTIONS(297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_word] = ACTIONS(297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(285), - [sym__special_character] = ACTIONS(305), + [sym_expansion] = STATE(442), + [sym_string] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_arithmetic_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [sym_number] = ACTIONS(2211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(2211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(2213), + [sym__special_character] = ACTIONS(2213), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2215), }, [444] = { - [anon_sym_BANG_EQ] = ACTIONS(1003), - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_EQ] = ACTIONS(1005), - [sym_test_operator] = ACTIONS(1003), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), + [aux_sym_concatenation_repeat1] = STATE(444), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_EQ_TILDE] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [445] = { - [sym_command_substitution] = STATE(408), - [sym_unary_expression] = STATE(481), - [sym_postfix_expression] = STATE(481), - [sym_string] = STATE(408), - [aux_sym__literal_repeat1] = STATE(410), - [sym_process_substitution] = STATE(408), - [sym_parenthesized_expression] = STATE(481), - [sym_simple_expansion] = STATE(408), - [sym_string_expansion] = STATE(408), - [sym__expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_concatenation] = STATE(481), - [sym_expansion] = STATE(408), - [anon_sym_LPAREN] = ACTIONS(283), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(285), - [anon_sym_BANG] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_test_operator] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym_number] = ACTIONS(297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_word] = ACTIONS(297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(285), - [sym__special_character] = ACTIONS(305), - [sym_regex] = ACTIONS(2127), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(990), + [anon_sym_PIPE_PIPE] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_LT_LT_DASH] = ACTIONS(990), + [anon_sym_LF] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(990), + [sym_file_descriptor] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_LT_LT_LT] = ACTIONS(990), + [anon_sym_GT_AMP] = ACTIONS(990), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(990), + [anon_sym_esac] = ACTIONS(990), + [anon_sym_AMP_AMP] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI_SEMI] = ACTIONS(990), + [anon_sym_PIPE_AMP] = ACTIONS(990), }, [446] = { - [anon_sym_PIPE_AMP] = ACTIONS(1009), - [anon_sym_AMP_GT_GT] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_BQUOTE] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_LT_AMP] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1009), - [anon_sym_LT_LT_DASH] = ACTIONS(1009), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1009), - [sym_file_descriptor] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(1009), - [anon_sym_LT_LT_LT] = ACTIONS(1009), - [anon_sym_GT_AMP] = ACTIONS(1009), - [anon_sym_esac] = ACTIONS(1009), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_SEMI_SEMI] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [447] = { - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [sym_heredoc_body] = STATE(1472), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [448] = { - [aux_sym_concatenation_repeat1] = STATE(1042), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [sym__concat] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_AMP] = ACTIONS(998), + [anon_sym_GT_GT] = ACTIONS(998), + [anon_sym_LT_LT_DASH] = ACTIONS(998), + [anon_sym_LF] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [sym_file_descriptor] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_AMP_GT] = ACTIONS(998), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [anon_sym_GT_AMP] = ACTIONS(998), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(998), + [anon_sym_esac] = ACTIONS(998), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI_SEMI] = ACTIONS(998), + [anon_sym_PIPE_AMP] = ACTIONS(998), }, [449] = { - [aux_sym__literal_repeat1] = STATE(1077), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_GT_LPAREN] = ACTIONS(1039), - [sym_number] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [sym_word] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_LT_AMP] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1039), - [sym__special_character] = ACTIONS(2131), - [anon_sym_LT_LT_DASH] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1039), - [sym_raw_string] = ACTIONS(1039), - [sym_variable_name] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1039), - [sym_file_descriptor] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [anon_sym_LT_LT_LT] = ACTIONS(1039), - [anon_sym_GT_AMP] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), - [anon_sym_LT_LPAREN] = ACTIONS(1039), - [sym_ansii_c_string] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1022), + [anon_sym_LT_LT] = ACTIONS(1022), + [anon_sym_PIPE_PIPE] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_LT] = ACTIONS(1022), + [anon_sym_LT_AMP] = ACTIONS(1022), + [anon_sym_GT_GT] = ACTIONS(1022), + [anon_sym_LT_LT_DASH] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(1022), + [sym_file_descriptor] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1022), + [anon_sym_AMP_GT] = ACTIONS(1022), + [anon_sym_LT_LT_LT] = ACTIONS(1022), + [anon_sym_GT_AMP] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1022), + [anon_sym_esac] = ACTIONS(1022), + [anon_sym_AMP_AMP] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI_SEMI] = ACTIONS(1022), + [anon_sym_PIPE_AMP] = ACTIONS(1022), }, [450] = { - [aux_sym_concatenation_repeat1] = STATE(1010), - [anon_sym_LT_LT_DASH] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_LT_LT] = ACTIONS(1059), - [sym_file_descriptor] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_PIPE_PIPE] = ACTIONS(1059), - [ts_builtin_sym_end] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1059), - [sym__concat] = ACTIONS(1164), - [anon_sym_AMP_AMP] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1059), - [anon_sym_PIPE_AMP] = ACTIONS(1059), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_EQ_TILDE] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1032), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [anon_sym_AMP_GT] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [451] = { - [aux_sym__literal_repeat1] = STATE(1045), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [ts_builtin_sym_end] = ACTIONS(1061), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [sym__special_character] = ACTIONS(1170), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [sym_file_descriptor] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [452] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_LT_LT] = ACTIONS(1059), - [sym_file_descriptor] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_PIPE_PIPE] = ACTIONS(1059), - [ts_builtin_sym_end] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_AMP_AMP] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1059), - [anon_sym_PIPE_AMP] = ACTIONS(1059), + [aux_sym_concatenation_repeat1] = STATE(1089), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [sym__concat] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1120), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [453] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), - }, - [454] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), - }, - [455] = { - [anon_sym_PIPE_AMP] = ACTIONS(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_LT_LT_DASH] = ACTIONS(1122), - [sym_comment] = ACTIONS(3), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_RPAREN] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1120), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1122), - [anon_sym_LT_LT_LT] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), - [anon_sym_esac] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, - [456] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_PIPE_AMP] = ACTIONS(1126), + [454] = { + [aux_sym__literal_repeat1] = STATE(1094), [anon_sym_AMP_GT_GT] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [sym_ansii_c_string] = ACTIONS(1126), [anon_sym_PIPE_PIPE] = ACTIONS(1126), [anon_sym_PIPE] = ACTIONS(1126), [anon_sym_LT] = ACTIONS(1126), [anon_sym_LT_AMP] = ACTIONS(1126), [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1126), [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_number] = ACTIONS(1126), [anon_sym_LF] = ACTIONS(1128), [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), + [sym_variable_name] = ACTIONS(1128), [anon_sym_RPAREN] = ACTIONS(1126), - [sym_file_descriptor] = ACTIONS(1128), + [sym_word] = ACTIONS(1126), [anon_sym_GT] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1126), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - }, - [457] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [sym_variable_name] = ACTIONS(333), [sym_file_descriptor] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), [anon_sym_AMP_GT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(331), + [sym__special_character] = ACTIONS(2222), [anon_sym_LT_LT_LT] = ACTIONS(1126), [anon_sym_GT_AMP] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_raw_string] = ACTIONS(1126), [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), [anon_sym_SEMI_SEMI] = ACTIONS(1126), [anon_sym_PIPE_AMP] = ACTIONS(1126), }, + [455] = { + [aux_sym_concatenation_repeat1] = STATE(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(1146), + [anon_sym_AMP_GT_GT] = ACTIONS(1146), + [anon_sym_LF] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(1146), + [sym_file_descriptor] = ACTIONS(1144), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_AMP_GT] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [ts_builtin_sym_end] = ACTIONS(1144), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_GT_AMP] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_LT_AMP] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1146), + [sym__concat] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), + [anon_sym_PIPE_AMP] = ACTIONS(1146), + }, + [456] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1146), + [anon_sym_AMP_GT_GT] = ACTIONS(1146), + [anon_sym_LF] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(1146), + [sym_file_descriptor] = ACTIONS(1144), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_AMP_GT] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [ts_builtin_sym_end] = ACTIONS(1144), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_GT_AMP] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_LT_AMP] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), + [anon_sym_PIPE_AMP] = ACTIONS(1146), + }, + [457] = { + [aux_sym__literal_repeat1] = STATE(1061), + [anon_sym_LT_LT_DASH] = ACTIONS(1150), + [anon_sym_AMP_GT_GT] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LT_LT] = ACTIONS(1150), + [sym_file_descriptor] = ACTIONS(1148), + [anon_sym_GT] = ACTIONS(1150), + [anon_sym_AMP_GT] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [ts_builtin_sym_end] = ACTIONS(1148), + [anon_sym_LT_LT_LT] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_GT_AMP] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_LT_AMP] = ACTIONS(1150), + [anon_sym_GT_GT] = ACTIONS(1150), + [sym__special_character] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), + }, [458] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_esac] = ACTIONS(1132), - [anon_sym_RPAREN] = ACTIONS(1132), - [anon_sym_BQUOTE] = ACTIONS(1132), - [anon_sym_SEMI_SEMI] = ACTIONS(1132), - [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_EQ_TILDE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [459] = { - [anon_sym_RPAREN] = ACTIONS(2133), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_SEMI_SEMI] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_AMP_GT_GT] = ACTIONS(1186), + [anon_sym_LT_LT] = ACTIONS(1186), + [anon_sym_PIPE_PIPE] = ACTIONS(1186), + [anon_sym_PIPE] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_LT_AMP] = ACTIONS(1186), + [anon_sym_GT_GT] = ACTIONS(1186), + [anon_sym_LT_LT_DASH] = ACTIONS(1186), + [anon_sym_LF] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1186), + [anon_sym_RPAREN] = ACTIONS(1186), + [sym_file_descriptor] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_AMP_GT] = ACTIONS(1186), + [anon_sym_LT_LT_LT] = ACTIONS(1186), + [anon_sym_GT_AMP] = ACTIONS(1186), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1186), + [anon_sym_esac] = ACTIONS(1186), + [anon_sym_AMP_AMP] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1186), + [anon_sym_SEMI_SEMI] = ACTIONS(1186), + [anon_sym_PIPE_AMP] = ACTIONS(1186), }, [460] = { - [anon_sym_PIPE_AMP] = ACTIONS(1152), - [anon_sym_AMP_GT_GT] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(1152), - [anon_sym_PIPE_PIPE] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_LT_AMP] = ACTIONS(1152), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_LT_LT_DASH] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_RPAREN] = ACTIONS(1152), - [sym_file_descriptor] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_AMP_GT] = ACTIONS(1152), - [anon_sym_LT_LT_LT] = ACTIONS(1152), - [anon_sym_GT_AMP] = ACTIONS(1152), - [anon_sym_esac] = ACTIONS(1152), - [anon_sym_AMP_AMP] = ACTIONS(1152), - [anon_sym_SEMI_SEMI] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(1190), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_PIPE_PIPE] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_LT_AMP] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_LT_LT_DASH] = ACTIONS(1190), + [anon_sym_LF] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1190), + [anon_sym_RPAREN] = ACTIONS(1190), + [sym_file_descriptor] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_LT_LT_LT] = ACTIONS(1190), + [anon_sym_GT_AMP] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1190), + [anon_sym_AMP_AMP] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_SEMI_SEMI] = ACTIONS(1190), + [anon_sym_PIPE_AMP] = ACTIONS(1190), }, [461] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_LT_AMP] = ACTIONS(1156), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_RPAREN] = ACTIONS(1156), - [sym_file_descriptor] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_AMP_GT] = ACTIONS(1156), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_GT_AMP] = ACTIONS(1156), - [anon_sym_AMP_AMP] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_LT_AMP] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(1190), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(1192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(1190), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(1192), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_RPAREN] = ACTIONS(1190), + [anon_sym_AMP_GT] = ACTIONS(1190), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(1190), + [anon_sym_GT_AMP] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_SEMI_SEMI] = ACTIONS(1190), + [anon_sym_PIPE_AMP] = ACTIONS(1190), }, [462] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1156), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(491), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(1156), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_LF] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_esac] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), }, [463] = { - [aux_sym_concatenation_repeat1] = STATE(1074), - [anon_sym_PIPE_AMP] = ACTIONS(1160), - [anon_sym_AMP_GT_GT] = ACTIONS(1160), - [anon_sym_LT_LT] = ACTIONS(1160), - [anon_sym_BQUOTE] = ACTIONS(1160), - [anon_sym_PIPE_PIPE] = ACTIONS(1160), - [sym__concat] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_LT_AMP] = ACTIONS(1160), - [anon_sym_GT_GT] = ACTIONS(1160), - [anon_sym_LT_LT_DASH] = ACTIONS(1160), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym_RPAREN] = ACTIONS(1160), - [sym_file_descriptor] = ACTIONS(1162), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_AMP_GT] = ACTIONS(1160), - [anon_sym_LT_LT_LT] = ACTIONS(1160), - [anon_sym_GT_AMP] = ACTIONS(1160), - [anon_sym_AMP_AMP] = ACTIONS(1160), - [anon_sym_SEMI_SEMI] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2224), + [anon_sym_LF] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_SEMI_SEMI] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), }, [464] = { - [aux_sym__literal_repeat1] = STATE(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1166), - [anon_sym_AMP_GT_GT] = ACTIONS(1166), - [anon_sym_LT_LT] = ACTIONS(1166), - [anon_sym_BQUOTE] = ACTIONS(1166), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1166), - [anon_sym_LT_AMP] = ACTIONS(1166), - [anon_sym_GT_GT] = ACTIONS(1166), - [sym__special_character] = ACTIONS(2141), - [anon_sym_LT_LT_DASH] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1166), - [sym_file_descriptor] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1166), - [anon_sym_AMP_GT] = ACTIONS(1166), - [anon_sym_LT_LT_LT] = ACTIONS(1166), - [anon_sym_GT_AMP] = ACTIONS(1166), - [anon_sym_esac] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1166), - [anon_sym_SEMI_SEMI] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), + [anon_sym_AMP_GT_GT] = ACTIONS(1216), + [anon_sym_LT_LT] = ACTIONS(1216), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_LT_AMP] = ACTIONS(1216), + [anon_sym_GT_GT] = ACTIONS(1216), + [anon_sym_LT_LT_DASH] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [sym_file_descriptor] = ACTIONS(1218), + [anon_sym_GT] = ACTIONS(1216), + [anon_sym_AMP_GT] = ACTIONS(1216), + [anon_sym_LT_LT_LT] = ACTIONS(1216), + [anon_sym_GT_AMP] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1216), + [anon_sym_esac] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [anon_sym_PIPE_AMP] = ACTIONS(1216), }, [465] = { - [anon_sym_PIPE_AMP] = ACTIONS(1160), - [anon_sym_AMP_GT_GT] = ACTIONS(1160), - [anon_sym_LT_LT] = ACTIONS(1160), - [anon_sym_BQUOTE] = ACTIONS(1160), - [anon_sym_PIPE_PIPE] = ACTIONS(1160), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_LT_AMP] = ACTIONS(1160), - [anon_sym_GT_GT] = ACTIONS(1160), - [anon_sym_LT_LT_DASH] = ACTIONS(1160), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym_RPAREN] = ACTIONS(1160), - [sym_file_descriptor] = ACTIONS(1162), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_AMP_GT] = ACTIONS(1160), - [anon_sym_LT_LT_LT] = ACTIONS(1160), - [anon_sym_GT_AMP] = ACTIONS(1160), - [anon_sym_esac] = ACTIONS(1160), - [anon_sym_AMP_AMP] = ACTIONS(1160), - [anon_sym_SEMI_SEMI] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(1220), + [anon_sym_LT_LT] = ACTIONS(1220), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(1220), + [anon_sym_LT_AMP] = ACTIONS(1220), + [anon_sym_GT_GT] = ACTIONS(1220), + [anon_sym_LT_LT_DASH] = ACTIONS(1220), + [anon_sym_LF] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1220), + [sym_file_descriptor] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1220), + [anon_sym_AMP_GT] = ACTIONS(1220), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_GT_AMP] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [466] = { - [sym_heredoc_redirect] = STATE(466), - [aux_sym_redirected_statement_repeat1] = STATE(466), - [sym_herestring_redirect] = STATE(466), - [sym_file_redirect] = STATE(466), - [anon_sym_PIPE_AMP] = ACTIONS(1175), - [anon_sym_AMP_GT_GT] = ACTIONS(2143), - [anon_sym_LT_LT] = ACTIONS(2146), - [anon_sym_BQUOTE] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym_LT_AMP] = ACTIONS(2143), - [anon_sym_GT_GT] = ACTIONS(2143), - [anon_sym_LT_LT_DASH] = ACTIONS(2146), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_RPAREN] = ACTIONS(1175), - [sym_file_descriptor] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2143), - [anon_sym_AMP_GT] = ACTIONS(2143), - [anon_sym_LT_LT_LT] = ACTIONS(2152), - [anon_sym_GT_AMP] = ACTIONS(2143), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_SEMI_SEMI] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(1220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(1220), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(1222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(1220), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(1220), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [467] = { - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_word] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(1146), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_while] = ACTIONS(654), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_local] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_case] = ACTIONS(654), - [anon_sym_BANG] = ACTIONS(654), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [aux_sym_concatenation_repeat1] = STATE(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1224), + [anon_sym_PIPE_PIPE] = ACTIONS(1224), + [sym__concat] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_LT_AMP] = ACTIONS(1224), + [anon_sym_GT_GT] = ACTIONS(1224), + [anon_sym_LT_LT_DASH] = ACTIONS(1224), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1224), + [sym_file_descriptor] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1224), + [anon_sym_AMP_GT] = ACTIONS(1224), + [anon_sym_LT_LT_LT] = ACTIONS(1224), + [anon_sym_GT_AMP] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1224), + [anon_sym_AMP_AMP] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI_SEMI] = ACTIONS(1224), + [anon_sym_PIPE_AMP] = ACTIONS(1224), }, [468] = { - [sym_heredoc_body] = STATE(493), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(1146), - [anon_sym_GT] = ACTIONS(654), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_AMP_GT_GT] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1224), + [anon_sym_PIPE_PIPE] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_LT_AMP] = ACTIONS(1224), + [anon_sym_GT_GT] = ACTIONS(1224), + [anon_sym_LT_LT_DASH] = ACTIONS(1224), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1224), + [sym_file_descriptor] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1224), + [anon_sym_AMP_GT] = ACTIONS(1224), + [anon_sym_LT_LT_LT] = ACTIONS(1224), + [anon_sym_GT_AMP] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1224), + [anon_sym_esac] = ACTIONS(1224), + [anon_sym_AMP_AMP] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI_SEMI] = ACTIONS(1224), + [anon_sym_PIPE_AMP] = ACTIONS(1224), }, [469] = { - [sym_command_substitution] = STATE(425), - [aux_sym__literal_repeat1] = STATE(426), - [sym_string] = STATE(425), - [sym_process_substitution] = STATE(425), - [sym_simple_expansion] = STATE(425), - [sym_string_expansion] = STATE(425), - [aux_sym_command_repeat2] = STATE(473), - [sym_concatenation] = STATE(473), - [sym_expansion] = STATE(425), - [anon_sym_PIPE_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(2014), - [anon_sym_GT_LPAREN] = ACTIONS(2016), - [sym_number] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_AMP] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_RPAREN] = ACTIONS(1188), - [sym_file_descriptor] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_GT_AMP] = ACTIONS(1188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [sym_ansii_c_string] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), + [aux_sym__literal_repeat1] = STATE(1127), + [anon_sym_AMP_GT_GT] = ACTIONS(1230), + [anon_sym_LT_LT] = ACTIONS(1230), + [anon_sym_PIPE_PIPE] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_AMP] = ACTIONS(1230), + [anon_sym_GT_GT] = ACTIONS(1230), + [anon_sym_LT_LT_DASH] = ACTIONS(1230), + [anon_sym_LF] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_RPAREN] = ACTIONS(1230), + [sym_file_descriptor] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_AMP_GT] = ACTIONS(1230), + [sym__special_character] = ACTIONS(2232), + [anon_sym_LT_LT_LT] = ACTIONS(1230), + [anon_sym_GT_AMP] = ACTIONS(1230), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1230), + [anon_sym_esac] = ACTIONS(1230), + [anon_sym_AMP_AMP] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_SEMI_SEMI] = ACTIONS(1230), + [anon_sym_PIPE_AMP] = ACTIONS(1230), }, [470] = { - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_number] = ACTIONS(1192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [sym_word] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [sym__special_character] = ACTIONS(1192), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1192), - [sym_file_descriptor] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [sym_ansii_c_string] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_SEMI_SEMI] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), + [sym_heredoc_redirect] = STATE(470), + [sym_file_redirect] = STATE(470), + [sym_herestring_redirect] = STATE(470), + [aux_sym_redirected_statement_repeat1] = STATE(470), + [anon_sym_AMP_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_LT_AMP] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT_DASH] = ACTIONS(2237), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_RPAREN] = ACTIONS(1244), + [sym_file_descriptor] = ACTIONS(2240), + [anon_sym_GT] = ACTIONS(2234), + [anon_sym_AMP_GT] = ACTIONS(2234), + [anon_sym_LT_LT_LT] = ACTIONS(2243), + [anon_sym_GT_AMP] = ACTIONS(2234), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1244), + [anon_sym_AMP_AMP] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_SEMI_SEMI] = ACTIONS(1244), + [anon_sym_PIPE_AMP] = ACTIONS(1244), }, [471] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_number] = ACTIONS(1192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [sym__concat] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(1192), - [sym_word] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [sym__special_character] = ACTIONS(1192), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1192), - [sym_file_descriptor] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [sym_ansii_c_string] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_SEMI_SEMI] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(1210), + [sym_word] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(689), + [anon_sym_while] = ACTIONS(687), + [anon_sym_SEMI_SEMI] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_local] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_case] = ACTIONS(687), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(687), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [472] = { - [aux_sym__literal_repeat1] = STATE(414), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_AMP_GT_GT] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_BQUOTE] = ACTIONS(1196), - [anon_sym_GT_LPAREN] = ACTIONS(1196), - [sym_number] = ACTIONS(1196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), - [anon_sym_PIPE_PIPE] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [sym_word] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_LT_AMP] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_EQ_TILDE] = ACTIONS(1196), - [sym__special_character] = ACTIONS(2004), - [anon_sym_LT_LT_DASH] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1196), - [sym_raw_string] = ACTIONS(1196), - [anon_sym_RPAREN] = ACTIONS(1196), - [sym_file_descriptor] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_AMP_GT] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [anon_sym_LT_LT_LT] = ACTIONS(1196), - [anon_sym_GT_AMP] = ACTIONS(1196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), - [anon_sym_LT_LPAREN] = ACTIONS(1196), - [sym_ansii_c_string] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1196), - [anon_sym_SEMI_SEMI] = ACTIONS(1196), - [anon_sym_PIPE_AMP] = ACTIONS(1196), + [sym_heredoc_body] = STATE(497), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(1210), + [anon_sym_unset] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(996), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [473] = { - [sym_command_substitution] = STATE(425), - [aux_sym__literal_repeat1] = STATE(426), - [sym_string] = STATE(425), - [sym_process_substitution] = STATE(425), - [sym_simple_expansion] = STATE(425), - [sym_string_expansion] = STATE(425), - [aux_sym_command_repeat2] = STATE(473), - [sym_concatenation] = STATE(473), - [sym_expansion] = STATE(425), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(2158), - [anon_sym_GT_LPAREN] = ACTIONS(2161), - [sym_number] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2167), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [sym_word] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(2170), - [sym__special_character] = ACTIONS(2173), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(2164), - [anon_sym_RPAREN] = ACTIONS(1192), - [sym_file_descriptor] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2179), - [anon_sym_LT_LPAREN] = ACTIONS(2161), - [sym_ansii_c_string] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_SEMI_SEMI] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), + [sym_concatenation] = STATE(477), + [sym_string] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [sym_arithmetic_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [aux_sym__literal_repeat1] = STATE(430), + [sym_simple_expansion] = STATE(427), + [aux_sym_command_repeat2] = STATE(477), + [anon_sym_AMP_GT_GT] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(2103), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_LT_AMP] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(1252), + [anon_sym_GT_LPAREN] = ACTIONS(2103), + [sym_number] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(1252), + [sym_file_descriptor] = ACTIONS(1254), + [anon_sym_GT] = ACTIONS(1252), + [sym_word] = ACTIONS(2105), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(2107), + [sym__special_character] = ACTIONS(103), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_GT_AMP] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1252), }, [474] = { - [sym_string] = STATE(405), - [anon_sym__] = ACTIONS(2182), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2186), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_GT_AMP] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2182), - [sym_ansii_c_string] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_LT_LT] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_EQ_TILDE] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(2184), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(2184), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2182), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LPAREN] = ACTIONS(1256), + [sym_ansii_c_string] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), + [anon_sym_GT_LPAREN] = ACTIONS(1256), + [sym_number] = ACTIONS(1256), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), + [anon_sym_RPAREN] = ACTIONS(1256), + [sym_word] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [sym__special_character] = ACTIONS(1256), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_raw_string] = ACTIONS(1256), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI_SEMI] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), }, [475] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [anon_sym_EQ_TILDE] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [anon_sym_RPAREN] = ACTIONS(1235), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [aux_sym_concatenation_repeat1] = STATE(410), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LPAREN] = ACTIONS(1256), + [sym_ansii_c_string] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [sym__concat] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), + [anon_sym_GT_LPAREN] = ACTIONS(1256), + [sym_number] = ACTIONS(1256), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), + [anon_sym_RPAREN] = ACTIONS(1256), + [sym_word] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [sym__special_character] = ACTIONS(1256), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_raw_string] = ACTIONS(1256), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI_SEMI] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), }, [476] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [aux_sym__literal_repeat1] = STATE(425), + [anon_sym_AMP_GT_GT] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), + [anon_sym_LT_LT] = ACTIONS(1260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1260), + [anon_sym_LT_LPAREN] = ACTIONS(1260), + [sym_ansii_c_string] = ACTIONS(1260), + [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_LT_AMP] = ACTIONS(1260), + [anon_sym_GT_GT] = ACTIONS(1260), + [anon_sym_EQ_TILDE] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_LT_LT_DASH] = ACTIONS(1260), + [anon_sym_GT_LPAREN] = ACTIONS(1260), + [sym_number] = ACTIONS(1260), + [anon_sym_LF] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), + [anon_sym_RPAREN] = ACTIONS(1260), + [sym_word] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1260), + [sym_file_descriptor] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1260), + [anon_sym_EQ_EQ] = ACTIONS(1260), + [sym__special_character] = ACTIONS(2095), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_GT_AMP] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1260), + [sym_raw_string] = ACTIONS(1260), + [anon_sym_AMP_AMP] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI_SEMI] = ACTIONS(1260), + [anon_sym_PIPE_AMP] = ACTIONS(1260), }, [477] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [sym_concatenation] = STATE(477), + [sym_string] = STATE(427), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [sym_arithmetic_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_expansion] = STATE(427), + [aux_sym__literal_repeat1] = STATE(430), + [sym_simple_expansion] = STATE(427), + [aux_sym_command_repeat2] = STATE(477), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2252), + [anon_sym_LT_LPAREN] = ACTIONS(2255), + [sym_ansii_c_string] = ACTIONS(2258), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2264), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), + [anon_sym_GT_LPAREN] = ACTIONS(2255), + [sym_number] = ACTIONS(2258), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2267), + [anon_sym_RPAREN] = ACTIONS(1256), + [sym_word] = ACTIONS(2258), + [anon_sym_GT] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(2261), + [sym__special_character] = ACTIONS(2270), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2273), + [sym_raw_string] = ACTIONS(2258), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI_SEMI] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), }, [478] = { - [anon_sym_PIPE_AMP] = ACTIONS(1314), - [anon_sym_AMP_GT_GT] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1314), - [anon_sym_BQUOTE] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_LT_AMP] = ACTIONS(1314), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1314), - [sym_file_descriptor] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_AMP_GT] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1314), - [anon_sym_GT_AMP] = ACTIONS(1314), - [anon_sym_esac] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_SEMI_SEMI] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [479] = { - [anon_sym_PIPE_AMP] = ACTIONS(1322), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_BQUOTE] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_LT_LT_DASH] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_file_descriptor] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_AMP_GT] = ACTIONS(1322), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_GT_AMP] = ACTIONS(1322), - [anon_sym_esac] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_SEMI_SEMI] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [sym_test_operator] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_RBRACK] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1302), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), }, [480] = { - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1356), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_RBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1358), - [sym_test_operator] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_DASH_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_RBRACK] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1306), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), }, [481] = { - [anon_sym_BANG_EQ] = ACTIONS(1360), - [anon_sym_PLUS_EQ] = ACTIONS(1360), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_RBRACK] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [sym_test_operator] = ACTIONS(1360), - [anon_sym_EQ_EQ] = ACTIONS(1360), - [anon_sym_PIPE_PIPE] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_AMP_AMP] = ACTIONS(1360), - [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_RBRACK] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1306), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), }, [482] = { - [anon_sym_BANG_EQ] = ACTIONS(1360), - [anon_sym_PLUS_EQ] = ACTIONS(1360), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_RBRACK] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [sym_test_operator] = ACTIONS(1360), - [anon_sym_EQ_EQ] = ACTIONS(1360), - [anon_sym_PIPE_PIPE] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_AMP_AMP] = ACTIONS(1360), - [anon_sym_DASH_EQ] = ACTIONS(1360), + [sym_string] = STATE(414), + [anon_sym_0] = ACTIONS(2276), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2278), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym__] = ACTIONS(2276), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(2278), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1308), + [sym_word] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2278), + [sym_file_descriptor] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(2276), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [483] = { - [aux_sym_concatenation_repeat1] = STATE(1170), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1366), - [anon_sym_LF] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1366), - [anon_sym_BQUOTE] = ACTIONS(1366), - [anon_sym_GT_LPAREN] = ACTIONS(1366), - [sym_number] = ACTIONS(1366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym__concat] = ACTIONS(2188), - [sym_word] = ACTIONS(1366), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), - [anon_sym_LT_LPAREN] = ACTIONS(1366), - [sym_ansii_c_string] = ACTIONS(1366), - [sym__special_character] = ACTIONS(1366), - [anon_sym_SEMI_SEMI] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_AMP_GT_GT] = ACTIONS(1320), + [anon_sym_LT_LT] = ACTIONS(1320), + [anon_sym_PIPE_PIPE] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_LT_AMP] = ACTIONS(1320), + [anon_sym_GT_GT] = ACTIONS(1320), + [anon_sym_LT_LT_DASH] = ACTIONS(1320), + [anon_sym_LF] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_RPAREN] = ACTIONS(1320), + [sym_file_descriptor] = ACTIONS(1322), + [anon_sym_GT] = ACTIONS(1320), + [anon_sym_AMP_GT] = ACTIONS(1320), + [anon_sym_LT_LT_LT] = ACTIONS(1320), + [anon_sym_GT_AMP] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_esac] = ACTIONS(1320), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI_SEMI] = ACTIONS(1320), + [anon_sym_PIPE_AMP] = ACTIONS(1320), }, [484] = { - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_AMP_GT_GT] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_GT_LPAREN] = ACTIONS(1370), - [sym_number] = ACTIONS(1370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [sym_word] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_LT_AMP] = ACTIONS(1370), - [anon_sym_GT_GT] = ACTIONS(1370), - [sym__special_character] = ACTIONS(1370), - [anon_sym_LT_LT_DASH] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [sym_raw_string] = ACTIONS(1370), - [sym_variable_name] = ACTIONS(1372), - [anon_sym_RPAREN] = ACTIONS(1370), - [sym_file_descriptor] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_AMP_GT] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_LT_LT_LT] = ACTIONS(1370), - [anon_sym_GT_AMP] = ACTIONS(1370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), - [anon_sym_LT_LPAREN] = ACTIONS(1370), - [sym_ansii_c_string] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_SEMI_SEMI] = ACTIONS(1370), - [anon_sym_PIPE_AMP] = ACTIONS(1370), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [485] = { - [aux_sym__literal_repeat1] = STATE(1205), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1376), - [anon_sym_LF] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_BQUOTE] = ACTIONS(1376), - [anon_sym_GT_LPAREN] = ACTIONS(1376), - [sym_number] = ACTIONS(1376), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_word] = ACTIONS(1376), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1376), - [anon_sym_LT_LPAREN] = ACTIONS(1376), - [sym_ansii_c_string] = ACTIONS(1376), - [sym__special_character] = ACTIONS(2190), - [anon_sym_SEMI_SEMI] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_EQ_TILDE] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [sym_file_descriptor] = ACTIONS(1412), + [anon_sym_AMP_GT] = ACTIONS(1410), + [anon_sym_EQ_EQ] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [486] = { - [anon_sym_PERCENT] = ACTIONS(2192), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1382), - [sym_raw_string] = ACTIONS(1382), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_EQ] = ACTIONS(2192), - [anon_sym_COLON_DASH] = ACTIONS(2192), - [sym_number] = ACTIONS(2192), - [anon_sym_COLON_QMARK] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1382), - [anon_sym_BQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_GT_LPAREN] = ACTIONS(1382), - [sym__concat] = ACTIONS(2194), - [sym_word] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1382), - [anon_sym_LT_LPAREN] = ACTIONS(1382), - [sym_ansii_c_string] = ACTIONS(1382), - [anon_sym_COLON] = ACTIONS(2192), - [sym__special_character] = ACTIONS(2192), - }, - [487] = { - [anon_sym_PERCENT] = ACTIONS(2196), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1392), - [sym_raw_string] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_EQ] = ACTIONS(2196), - [anon_sym_COLON_DASH] = ACTIONS(2196), - [sym_number] = ACTIONS(2196), - [anon_sym_COLON_QMARK] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1392), - [anon_sym_BQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [anon_sym_GT_LPAREN] = ACTIONS(1392), - [sym__concat] = ACTIONS(2198), - [sym_word] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1392), - [anon_sym_LT_LPAREN] = ACTIONS(1392), - [sym_ansii_c_string] = ACTIONS(1392), - [anon_sym_COLON] = ACTIONS(2196), - [sym__special_character] = ACTIONS(2196), - }, - [488] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), - }, - [489] = { - [anon_sym_PIPE_AMP] = ACTIONS(1424), - [anon_sym_AMP_GT_GT] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_LT_AMP] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_LT_LT_DASH] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_RPAREN] = ACTIONS(1424), - [sym_file_descriptor] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1424), - [anon_sym_AMP_GT] = ACTIONS(1424), - [anon_sym_LT_LT_LT] = ACTIONS(1424), - [anon_sym_GT_AMP] = ACTIONS(1424), - [anon_sym_esac] = ACTIONS(1424), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_SEMI_SEMI] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - }, - [490] = { - [anon_sym_PIPE_AMP] = ACTIONS(1428), [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), [anon_sym_PIPE] = ACTIONS(1428), [anon_sym_LT] = ACTIONS(1428), [anon_sym_LT_AMP] = ACTIONS(1428), [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_EQ_TILDE] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), [anon_sym_LF] = ACTIONS(1430), [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), [anon_sym_RPAREN] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), [anon_sym_GT] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), [anon_sym_AMP_GT] = ACTIONS(1428), + [anon_sym_EQ_EQ] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), [anon_sym_LT_LT_LT] = ACTIONS(1428), [anon_sym_GT_AMP] = ACTIONS(1428), - [anon_sym_esac] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, - [491] = { - [sym_comment] = ACTIONS(3), + [487] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LPAREN] = ACTIONS(1438), + [sym_ansii_c_string] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_LT_AMP] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_LT_LT_DASH] = ACTIONS(1438), + [anon_sym_GT_LPAREN] = ACTIONS(1438), + [sym_number] = ACTIONS(1438), [anon_sym_LF] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_esac] = ACTIONS(1442), - [anon_sym_RPAREN] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1442), - [anon_sym_SEMI_SEMI] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), + [sym_variable_name] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1438), + [sym_word] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [sym_file_descriptor] = ACTIONS(1440), + [anon_sym_AMP_GT] = ACTIONS(1438), + [sym__special_character] = ACTIONS(1438), + [anon_sym_LT_LT_LT] = ACTIONS(1438), + [anon_sym_GT_AMP] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1438), + [sym_raw_string] = ACTIONS(1438), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI_SEMI] = ACTIONS(1438), + [anon_sym_PIPE_AMP] = ACTIONS(1438), }, - [492] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_typeset] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1450), + [488] = { + [aux_sym_concatenation_repeat1] = STATE(1221), + [anon_sym_GT_LPAREN] = ACTIONS(1444), + [sym_number] = ACTIONS(1444), + [anon_sym_LF] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1444), + [sym_word] = ACTIONS(1444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1444), + [anon_sym_LT_LPAREN] = ACTIONS(1444), + [sym_ansii_c_string] = ACTIONS(1444), + [sym__special_character] = ACTIONS(1444), + [sym__concat] = ACTIONS(2282), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1444), + [sym_raw_string] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_SEMI_SEMI] = ACTIONS(1444), + }, + [489] = { + [aux_sym__literal_repeat1] = STATE(1226), [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_word] = ACTIONS(1448), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [anon_sym_declare] = ACTIONS(1448), - [sym_variable_name] = ACTIONS(1450), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_GT_AMP] = ACTIONS(1450), - [sym_ansii_c_string] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_SEMI_SEMI] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_local] = ACTIONS(1448), - [anon_sym_unsetenv] = ACTIONS(1448), - [sym_number] = ACTIONS(1448), + [sym_number] = ACTIONS(1450), + [anon_sym_LF] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1450), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [sym_file_descriptor] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_AMP_GT] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1450), + [sym_word] = ACTIONS(1450), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), [anon_sym_LT_LPAREN] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - }, - [493] = { - [anon_sym_RPAREN] = ACTIONS(2200), + [sym_ansii_c_string] = ACTIONS(1450), + [sym__special_character] = ACTIONS(2284), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_SEMI_SEMI] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), - }, - [494] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [anon_sym_EQ_TILDE] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1458), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1450), + [sym_raw_string] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_DOLLAR] = ACTIONS(1450), + [anon_sym_SEMI_SEMI] = ACTIONS(1450), }, - [495] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [anon_sym_EQ_TILDE] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1470), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_EQ_EQ] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [490] = { + [anon_sym_COLON_DASH] = ACTIONS(2286), + [anon_sym_GT_LPAREN] = ACTIONS(1456), + [sym_number] = ACTIONS(2286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_EQ] = ACTIONS(2286), + [anon_sym_COLON_QMARK] = ACTIONS(2286), + [sym_ansii_c_string] = ACTIONS(1456), + [anon_sym_COLON] = ACTIONS(2286), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), + [sym__special_character] = ACTIONS(2286), + [anon_sym_LT_LPAREN] = ACTIONS(1456), + [sym_word] = ACTIONS(2286), + [sym__concat] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2286), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1456), + [sym_raw_string] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(2286), + }, + [491] = { + [anon_sym_COLON_DASH] = ACTIONS(2290), + [anon_sym_GT_LPAREN] = ACTIONS(1466), + [sym_number] = ACTIONS(2290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(2290), + [anon_sym_EQ] = ACTIONS(2290), + [anon_sym_COLON_QMARK] = ACTIONS(2290), + [sym_ansii_c_string] = ACTIONS(1466), + [anon_sym_COLON] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2290), + [sym__special_character] = ACTIONS(2290), + [anon_sym_LT_LPAREN] = ACTIONS(1466), + [sym_word] = ACTIONS(2290), + [sym__concat] = ACTIONS(2292), + [anon_sym_PERCENT] = ACTIONS(2290), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1466), + [sym_raw_string] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(2290), + }, + [492] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1472), + [anon_sym_LT_LT] = ACTIONS(1472), + [anon_sym_PIPE_PIPE] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_LT_AMP] = ACTIONS(1472), + [anon_sym_GT_GT] = ACTIONS(1472), + [anon_sym_LT_LT_DASH] = ACTIONS(1472), + [anon_sym_LF] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [sym_file_descriptor] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_AMP_GT] = ACTIONS(1472), + [anon_sym_LT_LT_LT] = ACTIONS(1472), + [anon_sym_GT_AMP] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_esac] = ACTIONS(1472), + [anon_sym_AMP_AMP] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI_SEMI] = ACTIONS(1472), + [anon_sym_PIPE_AMP] = ACTIONS(1472), + }, + [493] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1492), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_PIPE_PIPE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_LT_AMP] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_LT_LT_DASH] = ACTIONS(1492), + [anon_sym_LF] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [sym_file_descriptor] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_AMP_GT] = ACTIONS(1492), + [anon_sym_LT_LT_LT] = ACTIONS(1492), + [anon_sym_GT_AMP] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_esac] = ACTIONS(1492), + [anon_sym_AMP_AMP] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_SEMI_SEMI] = ACTIONS(1492), + [anon_sym_PIPE_AMP] = ACTIONS(1492), + }, + [494] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_LT_AMP] = ACTIONS(1500), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_LT_LT_DASH] = ACTIONS(1500), + [anon_sym_LF] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [sym_file_descriptor] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_AMP_GT] = ACTIONS(1500), + [anon_sym_LT_LT_LT] = ACTIONS(1500), + [anon_sym_GT_AMP] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_esac] = ACTIONS(1500), + [anon_sym_AMP_AMP] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_SEMI_SEMI] = ACTIONS(1500), + [anon_sym_PIPE_AMP] = ACTIONS(1500), + }, + [495] = { + [anon_sym_LF] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_esac] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_SEMI_SEMI] = ACTIONS(1508), }, [496] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [anon_sym_EQ_TILDE] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_EQ_EQ] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_typeset] = ACTIONS(1520), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [anon_sym_LT_LPAREN] = ACTIONS(1522), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_GT_LPAREN] = ACTIONS(1522), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_declare] = ACTIONS(1520), + [sym_variable_name] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1524), + [sym_word] = ACTIONS(1520), + [anon_sym_readonly] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [sym__special_character] = ACTIONS(1520), + [anon_sym_GT_AMP] = ACTIONS(1522), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_SEMI_SEMI] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_unsetenv] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_ansii_c_string] = ACTIONS(1522), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1520), + [sym_number] = ACTIONS(1520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1520), + [sym_file_descriptor] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), }, [497] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [anon_sym_EQ_TILDE] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_EQ_EQ] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_SEMI_SEMI] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), }, [498] = { - [anon_sym_PIPE_AMP] = ACTIONS(1490), - [anon_sym_AMP_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_BQUOTE] = ACTIONS(1490), - [anon_sym_PIPE_PIPE] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_LT_AMP] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_LT_LT_DASH] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_RPAREN] = ACTIONS(1490), - [sym_file_descriptor] = ACTIONS(1492), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_AMP_GT] = ACTIONS(1490), - [anon_sym_LT_LT_LT] = ACTIONS(1490), - [anon_sym_GT_AMP] = ACTIONS(1490), - [anon_sym_esac] = ACTIONS(1490), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_SEMI_SEMI] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_AMP_GT_GT] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_PIPE_PIPE] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_LT_AMP] = ACTIONS(1530), + [anon_sym_GT_GT] = ACTIONS(1530), + [anon_sym_LT_LT_DASH] = ACTIONS(1530), + [anon_sym_LF] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [sym_file_descriptor] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_AMP_GT] = ACTIONS(1530), + [anon_sym_LT_LT_LT] = ACTIONS(1530), + [anon_sym_GT_AMP] = ACTIONS(1530), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1530), + [anon_sym_esac] = ACTIONS(1530), + [anon_sym_AMP_AMP] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_SEMI_SEMI] = ACTIONS(1530), + [anon_sym_PIPE_AMP] = ACTIONS(1530), }, [499] = { - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_local] = ACTIONS(1448), - [anon_sym_typeset] = ACTIONS(1448), - [anon_sym_unsetenv] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_number] = ACTIONS(1448), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1448), - [sym_word] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_declare] = ACTIONS(1448), - [sym_variable_name] = ACTIONS(1450), - [sym_file_descriptor] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_AMP_GT] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_GT_AMP] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_LT_LPAREN] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [sym_ansii_c_string] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_typeset] = ACTIONS(1520), + [anon_sym_unsetenv] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [anon_sym_LT_LPAREN] = ACTIONS(1522), + [sym_ansii_c_string] = ACTIONS(1522), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), + [sym_number] = ACTIONS(1520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_declare] = ACTIONS(1520), + [anon_sym_GT_LPAREN] = ACTIONS(1522), + [sym_file_descriptor] = ACTIONS(1522), + [sym_word] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [sym_variable_name] = ACTIONS(1522), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_readonly] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [sym__special_character] = ACTIONS(1520), + [anon_sym_GT_AMP] = ACTIONS(1522), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), }, [500] = { - [anon_sym_PIPE_AMP] = ACTIONS(1502), - [anon_sym_AMP_GT_GT] = ACTIONS(1502), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_LT_AMP] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1502), - [anon_sym_LT_LT_DASH] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1502), - [sym_file_descriptor] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_AMP_GT] = ACTIONS(1502), - [anon_sym_LT_LT_LT] = ACTIONS(1502), - [anon_sym_GT_AMP] = ACTIONS(1502), - [anon_sym_esac] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_SEMI_SEMI] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_AMP_GT_GT] = ACTIONS(1542), + [anon_sym_LT_LT] = ACTIONS(1542), + [anon_sym_PIPE_PIPE] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_LT_AMP] = ACTIONS(1542), + [anon_sym_GT_GT] = ACTIONS(1542), + [anon_sym_LT_LT_DASH] = ACTIONS(1542), + [anon_sym_LF] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [sym_file_descriptor] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_AMP_GT] = ACTIONS(1542), + [anon_sym_LT_LT_LT] = ACTIONS(1542), + [anon_sym_GT_AMP] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_esac] = ACTIONS(1542), + [anon_sym_AMP_AMP] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI_SEMI] = ACTIONS(1542), + [anon_sym_PIPE_AMP] = ACTIONS(1542), }, [501] = { - [anon_sym_PIPE_AMP] = ACTIONS(1600), - [anon_sym_AMP_GT_GT] = ACTIONS(1600), - [anon_sym_LT_LT] = ACTIONS(1600), - [anon_sym_BQUOTE] = ACTIONS(1600), - [anon_sym_PIPE_PIPE] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1600), - [anon_sym_LT_AMP] = ACTIONS(1600), - [anon_sym_GT_GT] = ACTIONS(1600), - [anon_sym_LT_LT_DASH] = ACTIONS(1600), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_RPAREN] = ACTIONS(1600), - [sym_file_descriptor] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_AMP_GT] = ACTIONS(1600), - [anon_sym_LT_LT_LT] = ACTIONS(1600), - [anon_sym_GT_AMP] = ACTIONS(1600), - [anon_sym_esac] = ACTIONS(1600), - [anon_sym_AMP_AMP] = ACTIONS(1600), - [anon_sym_SEMI_SEMI] = ACTIONS(1600), - [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_AMP_GT_GT] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1639), + [anon_sym_PIPE_PIPE] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_LT] = ACTIONS(1639), + [anon_sym_LT_AMP] = ACTIONS(1639), + [anon_sym_GT_GT] = ACTIONS(1639), + [anon_sym_LT_LT_DASH] = ACTIONS(1639), + [anon_sym_LF] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1639), + [sym_file_descriptor] = ACTIONS(1641), + [anon_sym_GT] = ACTIONS(1639), + [anon_sym_AMP_GT] = ACTIONS(1639), + [anon_sym_LT_LT_LT] = ACTIONS(1639), + [anon_sym_GT_AMP] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1639), + [anon_sym_esac] = ACTIONS(1639), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_SEMI_SEMI] = ACTIONS(1639), + [anon_sym_PIPE_AMP] = ACTIONS(1639), }, [502] = { - [anon_sym_PIPE_AMP] = ACTIONS(1612), - [anon_sym_AMP_GT_GT] = ACTIONS(1612), - [anon_sym_LT_LT] = ACTIONS(1612), - [anon_sym_BQUOTE] = ACTIONS(1612), - [anon_sym_PIPE_PIPE] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_LT_AMP] = ACTIONS(1612), - [anon_sym_GT_GT] = ACTIONS(1612), - [anon_sym_LT_LT_DASH] = ACTIONS(1612), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1612), - [sym_file_descriptor] = ACTIONS(1614), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_AMP_GT] = ACTIONS(1612), - [anon_sym_LT_LT_LT] = ACTIONS(1612), - [anon_sym_GT_AMP] = ACTIONS(1612), - [anon_sym_esac] = ACTIONS(1612), - [anon_sym_AMP_AMP] = ACTIONS(1612), - [anon_sym_SEMI_SEMI] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_AMP_GT_GT] = ACTIONS(1653), + [anon_sym_LT_LT] = ACTIONS(1653), + [anon_sym_PIPE_PIPE] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(1653), + [anon_sym_LT_AMP] = ACTIONS(1653), + [anon_sym_GT_GT] = ACTIONS(1653), + [anon_sym_LT_LT_DASH] = ACTIONS(1653), + [anon_sym_LF] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1653), + [sym_file_descriptor] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1653), + [anon_sym_AMP_GT] = ACTIONS(1653), + [anon_sym_LT_LT_LT] = ACTIONS(1653), + [anon_sym_GT_AMP] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1653), + [anon_sym_esac] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1653), + [anon_sym_SEMI_SEMI] = ACTIONS(1653), + [anon_sym_PIPE_AMP] = ACTIONS(1653), }, [503] = { - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_AMP_GT_GT] = ACTIONS(1618), - [anon_sym_DOLLAR] = ACTIONS(1618), - [anon_sym_LT_LT] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [anon_sym_GT_LPAREN] = ACTIONS(1618), - [sym_number] = ACTIONS(1618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), - [anon_sym_PIPE_PIPE] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [sym_word] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_LT_AMP] = ACTIONS(1618), - [anon_sym_GT_GT] = ACTIONS(1618), - [sym__special_character] = ACTIONS(1618), - [anon_sym_LT_LT_DASH] = ACTIONS(1618), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [sym_raw_string] = ACTIONS(1618), - [sym_variable_name] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1618), - [sym_file_descriptor] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_AMP_GT] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_LT_LT_LT] = ACTIONS(1618), - [anon_sym_GT_AMP] = ACTIONS(1618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), - [anon_sym_LT_LPAREN] = ACTIONS(1618), - [sym_ansii_c_string] = ACTIONS(1618), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_SEMI_SEMI] = ACTIONS(1618), - [anon_sym_PIPE_AMP] = ACTIONS(1618), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_EQ_TILDE] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1659), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [sym_file_descriptor] = ACTIONS(1661), + [anon_sym_AMP_GT] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [504] = { - [sym_command_substitution] = STATE(483), - [aux_sym__literal_repeat1] = STATE(485), - [sym_string] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_for_statement_repeat1] = STATE(504), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_concatenation] = STATE(504), - [sym_expansion] = STATE(483), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2206), - [anon_sym_LF] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_BQUOTE] = ACTIONS(2214), - [anon_sym_GT_LPAREN] = ACTIONS(2217), - [sym_number] = ACTIONS(2206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2223), - [sym_word] = ACTIONS(2206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), - [anon_sym_LT_LPAREN] = ACTIONS(2217), - [sym_ansii_c_string] = ACTIONS(2206), - [sym__special_character] = ACTIONS(2229), - [anon_sym_SEMI_SEMI] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1673), + [anon_sym_AMP_GT] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [505] = { - [anon_sym_PERCENT] = ACTIONS(2232), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1651), - [sym_raw_string] = ACTIONS(1651), - [anon_sym_SLASH] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_COLON_DASH] = ACTIONS(2232), - [sym_number] = ACTIONS(2232), - [anon_sym_COLON_QMARK] = ACTIONS(2232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1651), - [anon_sym_BQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [anon_sym_GT_LPAREN] = ACTIONS(1651), - [sym_word] = ACTIONS(2232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1651), - [anon_sym_LT_LPAREN] = ACTIONS(1651), - [sym_ansii_c_string] = ACTIONS(1651), - [anon_sym_COLON] = ACTIONS(2232), - [sym__special_character] = ACTIONS(2232), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_EQ_TILDE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [sym_file_descriptor] = ACTIONS(1683), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_EQ_EQ] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [506] = { - [anon_sym_PERCENT] = ACTIONS(2232), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1651), - [sym_raw_string] = ACTIONS(1651), - [anon_sym_SLASH] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_COLON_DASH] = ACTIONS(2232), - [sym_number] = ACTIONS(2232), - [anon_sym_COLON_QMARK] = ACTIONS(2232), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1651), - [anon_sym_BQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [anon_sym_GT_LPAREN] = ACTIONS(1651), - [sym__concat] = ACTIONS(2234), - [sym_word] = ACTIONS(2232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1651), - [anon_sym_LT_LPAREN] = ACTIONS(1651), - [sym_ansii_c_string] = ACTIONS(1651), - [anon_sym_COLON] = ACTIONS(2232), - [sym__special_character] = ACTIONS(2232), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_EQ_TILDE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [sym_file_descriptor] = ACTIONS(1687), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [507] = { - [anon_sym_PERCENT] = ACTIONS(2236), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1655), - [sym_raw_string] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(2236), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(2236), - [anon_sym_EQ] = ACTIONS(2236), - [anon_sym_COLON_DASH] = ACTIONS(2236), - [sym_number] = ACTIONS(2236), - [anon_sym_COLON_QMARK] = ACTIONS(2236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_GT_LPAREN] = ACTIONS(1655), - [sym_word] = ACTIONS(2236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1655), - [anon_sym_LT_LPAREN] = ACTIONS(1655), - [sym_ansii_c_string] = ACTIONS(1655), - [anon_sym_COLON] = ACTIONS(2236), - [sym__special_character] = ACTIONS(2236), + [anon_sym_AMP_GT_GT] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LT] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [sym_ansii_c_string] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_LT_AMP] = ACTIONS(1691), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_LT_LT_DASH] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), + [sym_number] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1691), + [sym_word] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [sym_file_descriptor] = ACTIONS(1693), + [anon_sym_AMP_GT] = ACTIONS(1691), + [sym__special_character] = ACTIONS(1691), + [anon_sym_LT_LT_LT] = ACTIONS(1691), + [anon_sym_GT_AMP] = ACTIONS(1691), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_raw_string] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_SEMI_SEMI] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), }, [508] = { - [anon_sym_PERCENT] = ACTIONS(2236), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1655), - [sym_raw_string] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(2236), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(2236), - [anon_sym_EQ] = ACTIONS(2236), - [anon_sym_COLON_DASH] = ACTIONS(2236), - [sym_number] = ACTIONS(2236), - [anon_sym_COLON_QMARK] = ACTIONS(2236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_GT_LPAREN] = ACTIONS(1655), - [sym__concat] = ACTIONS(2238), - [sym_word] = ACTIONS(2236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1655), - [anon_sym_LT_LPAREN] = ACTIONS(1655), - [sym_ansii_c_string] = ACTIONS(1655), - [anon_sym_COLON] = ACTIONS(2236), - [sym__special_character] = ACTIONS(2236), + [sym_expansion] = STATE(488), + [sym_concatenation] = STATE(508), + [sym_string] = STATE(488), + [sym_command_substitution] = STATE(488), + [sym_process_substitution] = STATE(488), + [aux_sym__literal_repeat1] = STATE(489), + [aux_sym_for_statement_repeat1] = STATE(508), + [sym_simple_expansion] = STATE(488), + [sym_arithmetic_expansion] = STATE(488), + [sym_string_expansion] = STATE(488), + [anon_sym_GT_LPAREN] = ACTIONS(2300), + [sym_number] = ACTIONS(2303), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2311), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2314), + [sym_word] = ACTIONS(2303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2317), + [anon_sym_LT_LPAREN] = ACTIONS(2300), + [sym_ansii_c_string] = ACTIONS(2303), + [sym__special_character] = ACTIONS(2320), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2323), + [sym_raw_string] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_DOLLAR] = ACTIONS(2326), + [anon_sym_SEMI_SEMI] = ACTIONS(2306), }, [509] = { - [anon_sym_PIPE_AMP] = ACTIONS(1665), - [anon_sym_AMP_GT_GT] = ACTIONS(1665), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_BQUOTE] = ACTIONS(1665), - [anon_sym_PIPE_PIPE] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_LT_AMP] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [anon_sym_LT_LT_DASH] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(1665), - [sym_file_descriptor] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1665), - [anon_sym_AMP_GT] = ACTIONS(1665), - [anon_sym_LT_LT_LT] = ACTIONS(1665), - [anon_sym_GT_AMP] = ACTIONS(1665), - [anon_sym_esac] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1665), - [anon_sym_SEMI_SEMI] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_COLON_DASH] = ACTIONS(2329), + [anon_sym_GT_LPAREN] = ACTIONS(1727), + [sym_number] = ACTIONS(2329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_COLON_QMARK] = ACTIONS(2329), + [sym_ansii_c_string] = ACTIONS(1727), + [anon_sym_COLON] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(1727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2329), + [sym__special_character] = ACTIONS(2329), + [anon_sym_LT_LPAREN] = ACTIONS(1727), + [sym_word] = ACTIONS(2329), + [anon_sym_PERCENT] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1727), + [sym_raw_string] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(2329), }, [510] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_esac] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_BQUOTE] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_COLON_DASH] = ACTIONS(2329), + [anon_sym_GT_LPAREN] = ACTIONS(1727), + [sym_number] = ACTIONS(2329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_COLON_QMARK] = ACTIONS(2329), + [sym_ansii_c_string] = ACTIONS(1727), + [anon_sym_COLON] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(1727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2329), + [sym__special_character] = ACTIONS(2329), + [anon_sym_LT_LPAREN] = ACTIONS(1727), + [sym_word] = ACTIONS(2329), + [sym__concat] = ACTIONS(2331), + [anon_sym_PERCENT] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1727), + [sym_raw_string] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(2329), }, [511] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_typeset] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_word] = ACTIONS(1448), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [anon_sym_declare] = ACTIONS(1448), - [sym_variable_name] = ACTIONS(1450), - [anon_sym_RPAREN] = ACTIONS(1690), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_GT_AMP] = ACTIONS(1450), - [sym_ansii_c_string] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_SEMI_SEMI] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_local] = ACTIONS(1448), - [anon_sym_unsetenv] = ACTIONS(1448), - [sym_number] = ACTIONS(1448), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [sym_file_descriptor] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_AMP_GT] = ACTIONS(1448), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_LT_LPAREN] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym_COLON_DASH] = ACTIONS(2333), + [anon_sym_GT_LPAREN] = ACTIONS(1731), + [sym_number] = ACTIONS(2333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_EQ] = ACTIONS(2333), + [anon_sym_COLON_QMARK] = ACTIONS(2333), + [sym_ansii_c_string] = ACTIONS(1731), + [anon_sym_COLON] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(1731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2333), + [sym__special_character] = ACTIONS(2333), + [anon_sym_LT_LPAREN] = ACTIONS(1731), + [sym_word] = ACTIONS(2333), + [anon_sym_PERCENT] = ACTIONS(2333), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1731), + [sym_raw_string] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(2333), }, [512] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [anon_sym_EQ_TILDE] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [anon_sym_RPAREN] = ACTIONS(1692), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_EQ_EQ] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [anon_sym_COLON_DASH] = ACTIONS(2333), + [anon_sym_GT_LPAREN] = ACTIONS(1731), + [sym_number] = ACTIONS(2333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_EQ] = ACTIONS(2333), + [anon_sym_COLON_QMARK] = ACTIONS(2333), + [sym_ansii_c_string] = ACTIONS(1731), + [anon_sym_COLON] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(1731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2333), + [sym__special_character] = ACTIONS(2333), + [anon_sym_LT_LPAREN] = ACTIONS(1731), + [sym_word] = ACTIONS(2333), + [sym__concat] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2333), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1731), + [sym_raw_string] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(2333), }, [513] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [anon_sym_EQ_TILDE] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1741), + [anon_sym_LT_LT] = ACTIONS(1741), + [anon_sym_PIPE_PIPE] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_LT] = ACTIONS(1741), + [anon_sym_LT_AMP] = ACTIONS(1741), + [anon_sym_GT_GT] = ACTIONS(1741), + [anon_sym_LT_LT_DASH] = ACTIONS(1741), + [anon_sym_LF] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_RPAREN] = ACTIONS(1741), + [sym_file_descriptor] = ACTIONS(1743), + [anon_sym_GT] = ACTIONS(1741), + [anon_sym_AMP_GT] = ACTIONS(1741), + [anon_sym_LT_LT_LT] = ACTIONS(1741), + [anon_sym_GT_AMP] = ACTIONS(1741), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1741), + [anon_sym_esac] = ACTIONS(1741), + [anon_sym_AMP_AMP] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1741), + [anon_sym_SEMI_SEMI] = ACTIONS(1741), + [anon_sym_PIPE_AMP] = ACTIONS(1741), }, [514] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [anon_sym_EQ_TILDE] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [anon_sym_RPAREN] = ACTIONS(1702), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_LF] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1747), + [anon_sym_RPAREN] = ACTIONS(1747), + [anon_sym_esac] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), }, [515] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_EQ_TILDE] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [anon_sym_RPAREN] = ACTIONS(1708), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_typeset] = ACTIONS(1520), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [anon_sym_LT_LPAREN] = ACTIONS(1522), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_GT_LPAREN] = ACTIONS(1522), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_declare] = ACTIONS(1520), + [sym_variable_name] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1766), + [sym_word] = ACTIONS(1520), + [anon_sym_readonly] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [sym__special_character] = ACTIONS(1520), + [anon_sym_GT_AMP] = ACTIONS(1522), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_unsetenv] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_ansii_c_string] = ACTIONS(1522), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1520), + [sym_number] = ACTIONS(1520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1520), + [sym_file_descriptor] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), }, [516] = { - [anon_sym_PIPE_AMP] = ACTIONS(1718), - [anon_sym_AMP_GT_GT] = ACTIONS(1718), - [anon_sym_LT_LT] = ACTIONS(1718), - [anon_sym_BQUOTE] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1718), - [anon_sym_LT_AMP] = ACTIONS(1718), - [anon_sym_GT_GT] = ACTIONS(1718), - [anon_sym_LT_LT_DASH] = ACTIONS(1718), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1718), - [anon_sym_RPAREN] = ACTIONS(1718), - [sym_file_descriptor] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1718), - [anon_sym_AMP_GT] = ACTIONS(1718), - [anon_sym_LT_LT_LT] = ACTIONS(1718), - [anon_sym_GT_AMP] = ACTIONS(1718), - [anon_sym_esac] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_SEMI_SEMI] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_AMP_GT_GT] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_LT_AMP] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_LT_LT_DASH] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [sym_file_descriptor] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_AMP_GT] = ACTIONS(1774), + [anon_sym_LT_LT_LT] = ACTIONS(1774), + [anon_sym_GT_AMP] = ACTIONS(1774), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_esac] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), }, [517] = { - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_esac] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_AMP_GT_GT] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1780), + [anon_sym_PIPE_PIPE] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_LT_AMP] = ACTIONS(1780), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_LT_LT_DASH] = ACTIONS(1780), + [anon_sym_LF] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_RPAREN] = ACTIONS(1780), + [sym_file_descriptor] = ACTIONS(1782), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_AMP_GT] = ACTIONS(1780), + [anon_sym_LT_LT_LT] = ACTIONS(1780), + [anon_sym_GT_AMP] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1780), + [anon_sym_esac] = ACTIONS(1780), + [anon_sym_AMP_AMP] = ACTIONS(1780), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_SEMI_SEMI] = ACTIONS(1780), + [anon_sym_PIPE_AMP] = ACTIONS(1780), }, [518] = { - [anon_sym_PIPE_AMP] = ACTIONS(1801), - [anon_sym_AMP_GT_GT] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_BQUOTE] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_LT_AMP] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1801), - [anon_sym_LT_LT_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [sym_file_descriptor] = ACTIONS(1803), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_AMP_GT] = ACTIONS(1801), - [anon_sym_LT_LT_LT] = ACTIONS(1801), - [anon_sym_GT_AMP] = ACTIONS(1801), - [anon_sym_esac] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_SEMI_SEMI] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_AMP_GT_GT] = ACTIONS(1862), + [anon_sym_LT_LT] = ACTIONS(1862), + [anon_sym_PIPE_PIPE] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_LT] = ACTIONS(1862), + [anon_sym_LT_AMP] = ACTIONS(1862), + [anon_sym_GT_GT] = ACTIONS(1862), + [anon_sym_LT_LT_DASH] = ACTIONS(1862), + [anon_sym_LF] = ACTIONS(1864), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [sym_file_descriptor] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1862), + [anon_sym_AMP_GT] = ACTIONS(1862), + [anon_sym_LT_LT_LT] = ACTIONS(1862), + [anon_sym_GT_AMP] = ACTIONS(1862), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1862), + [anon_sym_esac] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI_SEMI] = ACTIONS(1862), + [anon_sym_PIPE_AMP] = ACTIONS(1862), }, [519] = { - [anon_sym_PERCENT] = ACTIONS(2240), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1807), - [sym_raw_string] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_DOLLAR] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_EQ] = ACTIONS(2240), - [anon_sym_COLON_DASH] = ACTIONS(2240), - [sym_number] = ACTIONS(2240), - [anon_sym_COLON_QMARK] = ACTIONS(2240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1807), - [anon_sym_BQUOTE] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_GT_LPAREN] = ACTIONS(1807), - [sym_word] = ACTIONS(2240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1807), - [anon_sym_LT_LPAREN] = ACTIONS(1807), - [sym_ansii_c_string] = ACTIONS(1807), - [anon_sym_COLON] = ACTIONS(2240), - [sym__special_character] = ACTIONS(2240), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [anon_sym_RPAREN] = ACTIONS(1868), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [sym_file_descriptor] = ACTIONS(1870), + [anon_sym_AMP_GT] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [520] = { - [anon_sym_PERCENT] = ACTIONS(2242), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1809), - [sym_raw_string] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_EQ] = ACTIONS(2242), - [anon_sym_COLON_DASH] = ACTIONS(2242), - [sym_number] = ACTIONS(2242), - [anon_sym_COLON_QMARK] = ACTIONS(2242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1809), - [anon_sym_BQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_GT_LPAREN] = ACTIONS(1809), - [sym_word] = ACTIONS(2242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1809), - [anon_sym_LT_LPAREN] = ACTIONS(1809), - [sym_ansii_c_string] = ACTIONS(1809), - [anon_sym_COLON] = ACTIONS(2242), - [sym__special_character] = ACTIONS(2242), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_EQ_TILDE] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [anon_sym_AMP_GT] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [521] = { - [anon_sym_PIPE_AMP] = ACTIONS(1811), - [anon_sym_AMP_GT_GT] = ACTIONS(1811), - [anon_sym_LT_LT] = ACTIONS(1811), - [anon_sym_BQUOTE] = ACTIONS(1811), - [anon_sym_PIPE_PIPE] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_LT_AMP] = ACTIONS(1811), - [anon_sym_GT_GT] = ACTIONS(1811), - [anon_sym_LT_LT_DASH] = ACTIONS(1811), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_RPAREN] = ACTIONS(1811), - [sym_file_descriptor] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1811), - [anon_sym_AMP_GT] = ACTIONS(1811), - [anon_sym_LT_LT_LT] = ACTIONS(1811), - [anon_sym_GT_AMP] = ACTIONS(1811), - [anon_sym_esac] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1811), - [anon_sym_SEMI_SEMI] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - }, - [522] = { - [anon_sym_PIPE_AMP] = ACTIONS(1819), - [anon_sym_AMP_GT_GT] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_LT_AMP] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1819), - [anon_sym_LT_LT_DASH] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1819), - [sym_file_descriptor] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_AMP_GT] = ACTIONS(1819), - [anon_sym_LT_LT_LT] = ACTIONS(1819), - [anon_sym_GT_AMP] = ACTIONS(1819), - [anon_sym_esac] = ACTIONS(1819), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_SEMI_SEMI] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - }, - [523] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - }, - [524] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [anon_sym_RPAREN] = ACTIONS(1827), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), - }, - [525] = { - [anon_sym_PIPE_AMP] = ACTIONS(1837), - [anon_sym_AMP_GT_GT] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(1837), - [anon_sym_BQUOTE] = ACTIONS(1837), - [anon_sym_PIPE_PIPE] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_AMP] = ACTIONS(1837), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_LT_LT_DASH] = ACTIONS(1837), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [sym_file_descriptor] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_AMP_GT] = ACTIONS(1837), - [anon_sym_LT_LT_LT] = ACTIONS(1837), - [anon_sym_GT_AMP] = ACTIONS(1837), - [anon_sym_esac] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_SEMI_SEMI] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1837), - }, - [526] = { - [anon_sym_PIPE_AMP] = ACTIONS(1841), - [anon_sym_AMP_GT_GT] = ACTIONS(1841), - [anon_sym_LT_LT] = ACTIONS(1841), - [anon_sym_BQUOTE] = ACTIONS(1841), - [anon_sym_PIPE_PIPE] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_LT_AMP] = ACTIONS(1841), - [anon_sym_GT_GT] = ACTIONS(1841), - [anon_sym_LT_LT_DASH] = ACTIONS(1841), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_RPAREN] = ACTIONS(1841), - [sym_file_descriptor] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_AMP_GT] = ACTIONS(1841), - [anon_sym_LT_LT_LT] = ACTIONS(1841), - [anon_sym_GT_AMP] = ACTIONS(1841), - [anon_sym_esac] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_SEMI_SEMI] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1841), - }, - [527] = { - [anon_sym_PIPE_AMP] = ACTIONS(1878), [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), [anon_sym_PIPE] = ACTIONS(1878), [anon_sym_LT] = ACTIONS(1878), [anon_sym_LT_AMP] = ACTIONS(1878), [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_EQ_TILDE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), [anon_sym_LF] = ACTIONS(1880), [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), [anon_sym_RPAREN] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), [anon_sym_GT] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), [anon_sym_AMP_GT] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), [anon_sym_LT_LT_LT] = ACTIONS(1878), [anon_sym_GT_AMP] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, - [528] = { - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [522] = { [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), [anon_sym_PIPE] = ACTIONS(1884), [anon_sym_LT] = ACTIONS(1884), [anon_sym_LT_AMP] = ACTIONS(1884), [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), [anon_sym_LF] = ACTIONS(1886), [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), [anon_sym_RPAREN] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), [anon_sym_GT] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), [anon_sym_LT_LT_LT] = ACTIONS(1884), [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_esac] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, - [529] = { - [anon_sym_PIPE_AMP] = ACTIONS(1892), + [523] = { + [anon_sym_COLON_DASH] = ACTIONS(2337), + [anon_sym_GT_LPAREN] = ACTIONS(1888), + [sym_number] = ACTIONS(2337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_EQ] = ACTIONS(2337), + [anon_sym_COLON_QMARK] = ACTIONS(2337), + [sym_ansii_c_string] = ACTIONS(1888), + [anon_sym_COLON] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2337), + [sym__special_character] = ACTIONS(2337), + [anon_sym_LT_LPAREN] = ACTIONS(1888), + [sym_word] = ACTIONS(2337), + [anon_sym_PERCENT] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1888), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_SLASH] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(2337), + }, + [524] = { + [anon_sym_COLON_DASH] = ACTIONS(2339), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_number] = ACTIONS(2339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_EQ] = ACTIONS(2339), + [anon_sym_COLON_QMARK] = ACTIONS(2339), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_COLON] = ACTIONS(2339), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2339), + [sym__special_character] = ACTIONS(2339), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_word] = ACTIONS(2339), + [anon_sym_PERCENT] = ACTIONS(2339), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(2339), + }, + [525] = { [anon_sym_AMP_GT_GT] = ACTIONS(1892), [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), [anon_sym_PIPE_PIPE] = ACTIONS(1892), [anon_sym_PIPE] = ACTIONS(1892), [anon_sym_LT] = ACTIONS(1892), [anon_sym_LT_AMP] = ACTIONS(1892), [anon_sym_GT_GT] = ACTIONS(1892), [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(1894), [anon_sym_SEMI] = ACTIONS(1892), [anon_sym_RPAREN] = ACTIONS(1892), @@ -22363,55478 +22961,61536 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT] = ACTIONS(1892), [anon_sym_LT_LT_LT] = ACTIONS(1892), [anon_sym_GT_AMP] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1892), [anon_sym_esac] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + }, + [526] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1896), + [anon_sym_LT_LT] = ACTIONS(1896), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_LT_AMP] = ACTIONS(1896), + [anon_sym_GT_GT] = ACTIONS(1896), + [anon_sym_LT_LT_DASH] = ACTIONS(1896), + [anon_sym_LF] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_RPAREN] = ACTIONS(1896), + [sym_file_descriptor] = ACTIONS(1898), + [anon_sym_GT] = ACTIONS(1896), + [anon_sym_AMP_GT] = ACTIONS(1896), + [anon_sym_LT_LT_LT] = ACTIONS(1896), + [anon_sym_GT_AMP] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1896), + [anon_sym_esac] = ACTIONS(1896), + [anon_sym_AMP_AMP] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_SEMI_SEMI] = ACTIONS(1896), + [anon_sym_PIPE_AMP] = ACTIONS(1896), + }, + [527] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1910), + [anon_sym_LT_LT] = ACTIONS(1910), + [anon_sym_PIPE_PIPE] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1910), + [anon_sym_LT] = ACTIONS(1910), + [anon_sym_LT_AMP] = ACTIONS(1910), + [anon_sym_GT_GT] = ACTIONS(1910), + [anon_sym_LT_LT_DASH] = ACTIONS(1910), + [anon_sym_LF] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_RPAREN] = ACTIONS(1910), + [sym_file_descriptor] = ACTIONS(1912), + [anon_sym_GT] = ACTIONS(1910), + [anon_sym_AMP_GT] = ACTIONS(1910), + [anon_sym_LT_LT_LT] = ACTIONS(1910), + [anon_sym_GT_AMP] = ACTIONS(1910), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1910), + [anon_sym_esac] = ACTIONS(1910), + [anon_sym_AMP_AMP] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI_SEMI] = ACTIONS(1910), + [anon_sym_PIPE_AMP] = ACTIONS(1910), + }, + [528] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1916), + [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_LT_AMP] = ACTIONS(1916), + [anon_sym_GT_GT] = ACTIONS(1916), + [anon_sym_LT_LT_DASH] = ACTIONS(1916), + [anon_sym_LF] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_AMP_GT] = ACTIONS(1916), + [anon_sym_LT_LT_LT] = ACTIONS(1916), + [anon_sym_GT_AMP] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_esac] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(1916), + }, + [529] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1953), + [anon_sym_LT_LT] = ACTIONS(1953), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1953), + [anon_sym_LT_AMP] = ACTIONS(1953), + [anon_sym_GT_GT] = ACTIONS(1953), + [anon_sym_LT_LT_DASH] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1953), + [sym_file_descriptor] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1953), + [anon_sym_AMP_GT] = ACTIONS(1953), + [anon_sym_LT_LT_LT] = ACTIONS(1953), + [anon_sym_GT_AMP] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1953), + [anon_sym_esac] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_SEMI_SEMI] = ACTIONS(1953), + [anon_sym_PIPE_AMP] = ACTIONS(1953), }, [530] = { - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_GT_GT] = ACTIONS(1924), - [anon_sym_LT_LT] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_LT_AMP] = ACTIONS(1924), - [anon_sym_GT_GT] = ACTIONS(1924), - [anon_sym_LT_LT_DASH] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1924), - [sym_file_descriptor] = ACTIONS(1926), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_AMP_GT] = ACTIONS(1924), - [anon_sym_LT_LT_LT] = ACTIONS(1924), - [anon_sym_GT_AMP] = ACTIONS(1924), - [anon_sym_esac] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_EQ_TILDE] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [anon_sym_RPAREN] = ACTIONS(1957), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [sym_file_descriptor] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1957), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [531] = { - [anon_sym_PIPE_AMP] = ACTIONS(1928), - [anon_sym_AMP_GT_GT] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1928), - [anon_sym_LT_AMP] = ACTIONS(1928), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_LT_LT_DASH] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_RPAREN] = ACTIONS(1928), - [sym_file_descriptor] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_AMP_GT] = ACTIONS(1928), - [anon_sym_LT_LT_LT] = ACTIONS(1928), - [anon_sym_GT_AMP] = ACTIONS(1928), - [anon_sym_esac] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_EQ_TILDE] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1961), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1963), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_EQ_EQ] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [532] = { - [anon_sym_PIPE_AMP] = ACTIONS(1950), - [anon_sym_AMP_GT_GT] = ACTIONS(1950), - [anon_sym_LT_LT] = ACTIONS(1950), - [anon_sym_BQUOTE] = ACTIONS(1950), - [anon_sym_PIPE_PIPE] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_LT_AMP] = ACTIONS(1950), - [anon_sym_GT_GT] = ACTIONS(1950), - [anon_sym_LT_LT_DASH] = ACTIONS(1950), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_RPAREN] = ACTIONS(1950), - [sym_file_descriptor] = ACTIONS(1952), - [anon_sym_GT] = ACTIONS(1950), - [anon_sym_AMP_GT] = ACTIONS(1950), - [anon_sym_LT_LT_LT] = ACTIONS(1950), - [anon_sym_GT_AMP] = ACTIONS(1950), - [anon_sym_esac] = ACTIONS(1950), - [anon_sym_AMP_AMP] = ACTIONS(1950), - [anon_sym_SEMI_SEMI] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_AMP_GT_GT] = ACTIONS(1965), + [anon_sym_LT_LT] = ACTIONS(1965), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_LT_AMP] = ACTIONS(1965), + [anon_sym_GT_GT] = ACTIONS(1965), + [anon_sym_LT_LT_DASH] = ACTIONS(1965), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym_RPAREN] = ACTIONS(1965), + [sym_file_descriptor] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1965), + [anon_sym_AMP_GT] = ACTIONS(1965), + [anon_sym_LT_LT_LT] = ACTIONS(1965), + [anon_sym_GT_AMP] = ACTIONS(1965), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1965), + [anon_sym_esac] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_SEMI_SEMI] = ACTIONS(1965), + [anon_sym_PIPE_AMP] = ACTIONS(1965), }, [533] = { - [anon_sym_PIPE_AMP] = ACTIONS(1958), - [anon_sym_AMP_GT_GT] = ACTIONS(1958), - [anon_sym_LT_LT] = ACTIONS(1958), - [anon_sym_BQUOTE] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_LT_AMP] = ACTIONS(1958), - [anon_sym_GT_GT] = ACTIONS(1958), - [anon_sym_LT_LT_DASH] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_RPAREN] = ACTIONS(1958), - [sym_file_descriptor] = ACTIONS(1960), - [anon_sym_GT] = ACTIONS(1958), - [anon_sym_AMP_GT] = ACTIONS(1958), - [anon_sym_LT_LT_LT] = ACTIONS(1958), - [anon_sym_GT_AMP] = ACTIONS(1958), - [anon_sym_esac] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_SEMI_SEMI] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_AMP_GT_GT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_AMP] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_LT_LT_DASH] = ACTIONS(1973), + [anon_sym_LF] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [sym_file_descriptor] = ACTIONS(1975), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_AMP_GT] = ACTIONS(1973), + [anon_sym_LT_LT_LT] = ACTIONS(1973), + [anon_sym_GT_AMP] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_esac] = ACTIONS(1973), + [anon_sym_AMP_AMP] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_SEMI_SEMI] = ACTIONS(1973), + [anon_sym_PIPE_AMP] = ACTIONS(1973), }, [534] = { - [sym_command_substitution] = STATE(397), - [aux_sym__literal_repeat1] = STATE(398), - [sym_string] = STATE(397), - [aux_sym_declaration_command_repeat1] = STATE(552), - [sym_process_substitution] = STATE(397), - [sym_simple_expansion] = STATE(397), - [sym_subscript] = STATE(2476), - [sym_string_expansion] = STATE(397), - [sym_variable_assignment] = STATE(552), - [sym_concatenation] = STATE(552), - [sym_expansion] = STATE(397), - [anon_sym_PIPE_AMP] = ACTIONS(129), - [anon_sym_AMP_GT_GT] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(129), - [anon_sym_BQUOTE] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(1966), - [sym_number] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(129), - [sym_word] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_LT_AMP] = ACTIONS(129), - [anon_sym_GT_GT] = ACTIONS(129), - [sym__special_character] = ACTIONS(1972), - [anon_sym_LT_LT_DASH] = ACTIONS(129), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(129), - [sym_raw_string] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1974), - [sym_file_descriptor] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(129), - [anon_sym_AMP_GT] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(129), - [anon_sym_GT_AMP] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), - [aux_sym__simple_variable_name_token1] = ACTIONS(2244), - [anon_sym_LT_LPAREN] = ACTIONS(1966), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_SEMI_SEMI] = ACTIONS(129), - [anon_sym_AMP] = ACTIONS(129), + [anon_sym_AMP_GT_GT] = ACTIONS(2005), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_PIPE_PIPE] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_LT_AMP] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2005), + [anon_sym_LF] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_RPAREN] = ACTIONS(2005), + [sym_file_descriptor] = ACTIONS(2007), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_LT_LT_LT] = ACTIONS(2005), + [anon_sym_GT_AMP] = ACTIONS(2005), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2005), + [anon_sym_esac] = ACTIONS(2005), + [anon_sym_AMP_AMP] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_SEMI_SEMI] = ACTIONS(2005), + [anon_sym_PIPE_AMP] = ACTIONS(2005), }, [535] = { - [sym_command_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), - [sym_string] = STATE(400), - [aux_sym_unset_command_repeat1] = STATE(555), - [sym_process_substitution] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_concatenation] = STATE(555), - [sym_expansion] = STATE(400), - [anon_sym_PIPE_AMP] = ACTIONS(153), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_LT_LT] = ACTIONS(153), - [anon_sym_BQUOTE] = ACTIONS(153), - [anon_sym_GT_LPAREN] = ACTIONS(1986), - [sym_number] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1990), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [sym_word] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(153), - [anon_sym_GT_GT] = ACTIONS(153), - [sym__special_character] = ACTIONS(1992), - [anon_sym_LT_LT_DASH] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(153), - [sym_raw_string] = ACTIONS(1988), - [sym_file_descriptor] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_AMP_GT] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(1994), - [anon_sym_LT_LT_LT] = ACTIONS(153), - [anon_sym_GT_AMP] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1996), - [aux_sym__simple_variable_name_token1] = ACTIONS(2246), - [anon_sym_LT_LPAREN] = ACTIONS(1986), - [sym_ansii_c_string] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(153), - [anon_sym_SEMI_SEMI] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), + [anon_sym_AMP_GT_GT] = ACTIONS(2009), + [anon_sym_LT_LT] = ACTIONS(2009), + [anon_sym_PIPE_PIPE] = ACTIONS(2009), + [anon_sym_PIPE] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_LT_AMP] = ACTIONS(2009), + [anon_sym_GT_GT] = ACTIONS(2009), + [anon_sym_LT_LT_DASH] = ACTIONS(2009), + [anon_sym_LF] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [sym_file_descriptor] = ACTIONS(2011), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_AMP_GT] = ACTIONS(2009), + [anon_sym_LT_LT_LT] = ACTIONS(2009), + [anon_sym_GT_AMP] = ACTIONS(2009), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2009), + [anon_sym_esac] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2009), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_SEMI_SEMI] = ACTIONS(2009), + [anon_sym_PIPE_AMP] = ACTIONS(2009), }, [536] = { - [aux_sym_concatenation_repeat1] = STATE(1202), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_number] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(193), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP_GT_GT] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_LT_AMP] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2031), + [anon_sym_LT_LT_DASH] = ACTIONS(2031), + [anon_sym_LF] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_RPAREN] = ACTIONS(2031), + [sym_file_descriptor] = ACTIONS(2033), + [anon_sym_GT] = ACTIONS(2031), + [anon_sym_AMP_GT] = ACTIONS(2031), + [anon_sym_LT_LT_LT] = ACTIONS(2031), + [anon_sym_GT_AMP] = ACTIONS(2031), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2031), + [anon_sym_esac] = ACTIONS(2031), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_SEMI_SEMI] = ACTIONS(2031), + [anon_sym_PIPE_AMP] = ACTIONS(2031), }, [537] = { - [aux_sym_concatenation_repeat1] = STATE(1202), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_number] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym__concat] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(193), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP_GT_GT] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_PIPE_PIPE] = ACTIONS(2039), + [anon_sym_PIPE] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_LT_AMP] = ACTIONS(2039), + [anon_sym_GT_GT] = ACTIONS(2039), + [anon_sym_LT_LT_DASH] = ACTIONS(2039), + [anon_sym_LF] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2039), + [anon_sym_RPAREN] = ACTIONS(2039), + [sym_file_descriptor] = ACTIONS(2041), + [anon_sym_GT] = ACTIONS(2039), + [anon_sym_AMP_GT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2039), + [anon_sym_GT_AMP] = ACTIONS(2039), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2039), + [anon_sym_esac] = ACTIONS(2039), + [anon_sym_AMP_AMP] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_SEMI_SEMI] = ACTIONS(2039), + [anon_sym_PIPE_AMP] = ACTIONS(2039), }, [538] = { - [aux_sym_concatenation_repeat1] = STATE(559), - [anon_sym_AMP_GT_GT] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), - [sym__concat] = ACTIONS(365), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym__special_character] = ACTIONS(213), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(213), - [sym_variable_name] = ACTIONS(213), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_GT_AMP] = ACTIONS(213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [sym_ansii_c_string] = ACTIONS(213), + [sym_expansion] = STATE(400), + [sym_concatenation] = STATE(556), + [aux_sym_declaration_command_repeat1] = STATE(556), + [sym_string] = STATE(400), + [sym_command_substitution] = STATE(400), + [sym_process_substitution] = STATE(400), + [aux_sym__literal_repeat1] = STATE(401), + [sym_variable_assignment] = STATE(556), + [sym_subscript] = STATE(2595), + [sym_simple_expansion] = STATE(400), + [sym_arithmetic_expansion] = STATE(400), + [sym_string_expansion] = STATE(400), + [anon_sym_AMP_GT_GT] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), + [anon_sym_LT_LPAREN] = ACTIONS(2049), + [sym_ansii_c_string] = ACTIONS(2051), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [aux_sym__simple_variable_name_token1] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_LT_AMP] = ACTIONS(135), + [anon_sym_GT_GT] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_LT_LT_DASH] = ACTIONS(135), + [anon_sym_GT_LPAREN] = ACTIONS(2049), + [sym_number] = ACTIONS(2051), + [anon_sym_LF] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2057), + [sym_variable_name] = ACTIONS(2059), + [sym_file_descriptor] = ACTIONS(151), + [sym_word] = ACTIONS(2051), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_AMP_GT] = ACTIONS(135), + [sym__special_character] = ACTIONS(2061), + [anon_sym_LT_LT_LT] = ACTIONS(135), + [anon_sym_GT_AMP] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(135), + [sym_raw_string] = ACTIONS(2051), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(135), + [anon_sym_SEMI_SEMI] = ACTIONS(135), + [anon_sym_PIPE_AMP] = ACTIONS(135), }, [539] = { - [aux_sym__literal_repeat1] = STATE(540), - [sym_string] = STATE(536), - [sym_process_substitution] = STATE(536), - [sym_test_command] = STATE(411), - [aux_sym_command_repeat1] = STATE(545), - [sym_subscript] = STATE(2467), - [sym_variable_assignment] = STATE(545), - [sym_concatenation] = STATE(543), - [sym_expansion] = STATE(536), - [sym_command_substitution] = STATE(536), - [sym_command] = STATE(411), - [sym_command_name] = STATE(638), - [sym_simple_expansion] = STATE(536), - [sym_string_expansion] = STATE(536), - [sym_subshell] = STATE(411), - [sym_file_redirect] = STATE(545), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_expansion] = STATE(403), + [sym_concatenation] = STATE(559), + [sym_string] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym__literal_repeat1] = STATE(404), + [aux_sym_unset_command_repeat1] = STATE(559), + [sym_simple_expansion] = STATE(403), + [sym_arithmetic_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [anon_sym_AMP_GT_GT] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(2065), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(161), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), + [anon_sym_LT_LPAREN] = ACTIONS(2071), + [sym_ansii_c_string] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(161), + [anon_sym_PIPE] = ACTIONS(161), + [aux_sym__simple_variable_name_token1] = ACTIONS(2343), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_LT_AMP] = ACTIONS(161), + [anon_sym_GT_GT] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_LT_LT_DASH] = ACTIONS(161), + [anon_sym_GT_LPAREN] = ACTIONS(2071), + [sym_number] = ACTIONS(2073), + [anon_sym_LF] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2079), + [sym_file_descriptor] = ACTIONS(177), + [sym_word] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(161), + [anon_sym_AMP_GT] = ACTIONS(161), + [sym__special_character] = ACTIONS(2081), + [anon_sym_LT_LT_LT] = ACTIONS(161), + [anon_sym_GT_AMP] = ACTIONS(161), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(161), + [sym_raw_string] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(161), + [anon_sym_SEMI_SEMI] = ACTIONS(161), + [anon_sym_PIPE_AMP] = ACTIONS(161), + }, + [540] = { + [aux_sym_concatenation_repeat1] = STATE(1254), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [sym_ansii_c_string] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [sym__concat] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_number] = ACTIONS(225), + [anon_sym_LF] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(229), + [sym_word] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_AMP_GT] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [sym__special_character] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(225), + [sym_raw_string] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), + }, + [541] = { + [sym_concatenation] = STATE(548), + [sym_string] = STATE(540), + [sym_command_substitution] = STATE(540), + [sym_process_substitution] = STATE(540), + [sym_test_command] = STATE(415), + [sym_variable_assignment] = STATE(549), + [aux_sym_command_repeat1] = STATE(549), + [sym_subscript] = STATE(2585), + [sym_arithmetic_expansion] = STATE(540), + [sym_string_expansion] = STATE(540), + [sym_expansion] = STATE(540), + [sym_command] = STATE(415), + [sym_command_name] = STATE(643), + [aux_sym__literal_repeat1] = STATE(547), + [sym_simple_expansion] = STATE(540), + [sym_subshell] = STATE(415), + [sym_file_redirect] = STATE(549), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1752), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(257), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_AMP_GT] = ACTIONS(29), - [sym_number] = ACTIONS(1744), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym_variable_name] = ACTIONS(273), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [anon_sym_AMP_GT] = ACTIONS(27), + [sym_ansii_c_string] = ACTIONS(1802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [sym__special_character] = ACTIONS(1816), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_word] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(1752), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [sym__special_character] = ACTIONS(1750), - }, - [540] = { - [aux_sym__literal_repeat1] = STATE(1237), - [anon_sym_AMP] = ACTIONS(307), - [anon_sym_AMP_GT_GT] = ACTIONS(307), - [anon_sym_DOLLAR] = ACTIONS(307), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_BQUOTE] = ACTIONS(307), - [anon_sym_GT_LPAREN] = ACTIONS(307), - [sym_number] = ACTIONS(307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(307), - [anon_sym_PIPE_PIPE] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(307), - [sym_word] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_LT_AMP] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_EQ_TILDE] = ACTIONS(307), - [sym__special_character] = ACTIONS(2250), - [anon_sym_LT_LT_DASH] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(307), - [sym_raw_string] = ACTIONS(307), - [sym_file_descriptor] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_AMP_GT] = ACTIONS(307), - [anon_sym_EQ_EQ] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(307), - [anon_sym_LT_LT_LT] = ACTIONS(307), - [anon_sym_GT_AMP] = ACTIONS(307), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(307), - [anon_sym_esac] = ACTIONS(307), - [anon_sym_LT_LPAREN] = ACTIONS(307), - [sym_ansii_c_string] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI_SEMI] = ACTIONS(307), - [anon_sym_PIPE_AMP] = ACTIONS(307), - }, - [541] = { - [sym_heredoc_redirect] = STATE(2636), - [aux_sym_redirected_statement_repeat1] = STATE(2636), - [sym_herestring_redirect] = STATE(2636), - [sym_file_redirect] = STATE(2636), - [anon_sym_PIPE_AMP] = ACTIONS(2252), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(2254), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2258), - [sym_file_descriptor] = ACTIONS(2260), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(2254), - [anon_sym_AMP_GT] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2262), - [anon_sym_LT_LT_LT] = ACTIONS(2264), - [anon_sym_GT_AMP] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_esac] = ACTIONS(2010), - [anon_sym_LT_AMP] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_SEMI_SEMI] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2258), + [sym_raw_string] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(1804), }, [542] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(2010), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2270), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2266), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_SEMI_SEMI] = ACTIONS(2266), - [anon_sym_PIPE_AMP] = ACTIONS(2270), + [aux_sym_concatenation_repeat1] = STATE(1254), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [sym_ansii_c_string] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [sym__concat] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_number] = ACTIONS(225), + [anon_sym_LF] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(229), + [sym_word] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_AMP_GT] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [sym__special_character] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(225), + [sym_raw_string] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), }, [543] = { - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_number] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(189), - [sym__special_character] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(193), - [anon_sym_SEMI] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_file_descriptor] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_esac] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [sym_ansii_c_string] = ACTIONS(189), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [aux_sym_concatenation_repeat1] = STATE(564), + [anon_sym_AMP_GT_GT] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(287), + [sym_ansii_c_string] = ACTIONS(287), + [sym__concat] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(287), + [sym_number] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), + [sym_variable_name] = ACTIONS(287), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(287), + [anon_sym_GT_AMP] = ACTIONS(287), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(287), + [sym_raw_string] = ACTIONS(287), }, [544] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(570), - [sym_function_definition] = STATE(570), - [sym_negated_command] = STATE(570), - [sym_test_command] = STATE(570), - [sym_variable_assignment] = STATE(571), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), + [sym_heredoc_redirect] = STATE(2796), + [sym_file_redirect] = STATE(2796), + [sym_herestring_redirect] = STATE(2796), + [aux_sym_redirected_statement_repeat1] = STATE(2796), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_AMP_GT_GT] = ACTIONS(2347), + [anon_sym_LF] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2351), + [sym_file_descriptor] = ACTIONS(2353), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(2347), + [anon_sym_AMP_GT] = ACTIONS(2347), + [anon_sym_PIPE_PIPE] = ACTIONS(2355), + [anon_sym_LT_LT_LT] = ACTIONS(2357), + [anon_sym_GT_AMP] = ACTIONS(2347), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_LT] = ACTIONS(2347), + [anon_sym_esac] = ACTIONS(2093), + [anon_sym_LT_AMP] = ACTIONS(2347), + [anon_sym_GT_GT] = ACTIONS(2347), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_SEMI_SEMI] = ACTIONS(2093), + [anon_sym_PIPE_AMP] = ACTIONS(2359), + }, + [545] = { + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(2365), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(2367), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2093), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_SEMI_SEMI] = ACTIONS(2367), + [anon_sym_PIPE_AMP] = ACTIONS(2363), + }, + [546] = { + [sym_if_statement] = STATE(572), + [sym_function_definition] = STATE(572), + [sym_negated_command] = STATE(572), + [sym_test_command] = STATE(572), + [sym_variable_assignment] = STATE(573), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(570), - [sym_for_statement] = STATE(570), - [sym_compound_statement] = STATE(570), - [sym_subshell] = STATE(570), - [sym_declaration_command] = STATE(570), - [sym_unset_command] = STATE(570), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym_c_style_for_statement] = STATE(570), - [sym_while_statement] = STATE(570), - [sym_case_statement] = STATE(570), - [sym_pipeline] = STATE(570), - [sym_list] = STATE(570), - [sym_command] = STATE(570), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(572), + [sym_for_statement] = STATE(572), + [sym_compound_statement] = STATE(572), + [sym_subshell] = STATE(572), + [sym_declaration_command] = STATE(572), + [sym_unset_command] = STATE(572), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym_c_style_for_statement] = STATE(572), + [sym_while_statement] = STATE(572), + [sym_case_statement] = STATE(572), + [sym_pipeline] = STATE(572), + [sym_list] = STATE(572), + [sym_command] = STATE(572), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [545] = { - [sym_command_substitution] = STATE(536), - [aux_sym__literal_repeat1] = STATE(540), - [sym_expansion] = STATE(536), - [sym_string] = STATE(536), - [sym_command_name] = STATE(654), - [sym_process_substitution] = STATE(536), - [sym_simple_expansion] = STATE(536), - [sym_string_expansion] = STATE(536), - [sym_subscript] = STATE(2467), - [sym_variable_assignment] = STATE(103), - [aux_sym_command_repeat1] = STATE(103), - [sym_concatenation] = STATE(543), - [sym_file_redirect] = STATE(103), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1752), - [sym_variable_name] = ACTIONS(257), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_AMP_GT] = ACTIONS(29), - [sym_number] = ACTIONS(1744), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_word] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(1752), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [sym__special_character] = ACTIONS(2274), - }, - [546] = { - [sym_command_substitution] = STATE(425), - [aux_sym__literal_repeat1] = STATE(426), - [sym_string] = STATE(425), - [sym_process_substitution] = STATE(425), - [sym_simple_expansion] = STATE(425), - [sym_string_expansion] = STATE(425), - [aux_sym_command_repeat2] = STATE(576), - [sym_concatenation] = STATE(576), - [sym_expansion] = STATE(425), - [anon_sym_PIPE_AMP] = ACTIONS(341), - [anon_sym_AMP_GT_GT] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(341), - [anon_sym_BQUOTE] = ACTIONS(341), - [anon_sym_GT_LPAREN] = ACTIONS(2016), - [sym_number] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(341), - [sym_word] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_LT_AMP] = ACTIONS(341), - [anon_sym_GT_GT] = ACTIONS(341), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(353), - [anon_sym_SEMI] = ACTIONS(341), - [sym_raw_string] = ACTIONS(2018), - [sym_file_descriptor] = ACTIONS(353), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_AMP_GT] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [anon_sym_GT_AMP] = ACTIONS(341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [sym_ansii_c_string] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_SEMI_SEMI] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(341), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [547] = { - [aux_sym_concatenation_repeat1] = STATE(1074), - [anon_sym_PIPE_AMP] = ACTIONS(363), - [anon_sym_AMP_GT_GT] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [sym__concat] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LT_AMP] = ACTIONS(363), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_LT_LT_DASH] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(361), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_RPAREN] = ACTIONS(363), - [sym_file_descriptor] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(363), - [anon_sym_LT_LT_LT] = ACTIONS(363), - [anon_sym_GT_AMP] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_SEMI_SEMI] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(363), + [aux_sym__literal_repeat1] = STATE(1259), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_EQ_TILDE] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [sym_file_descriptor] = ACTIONS(349), + [sym_word] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(347), + [sym__special_character] = ACTIONS(2369), + [anon_sym_LT_LT_LT] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_esac] = ACTIONS(347), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_SEMI_SEMI] = ACTIONS(347), + [anon_sym_PIPE_AMP] = ACTIONS(347), }, [548] = { - [aux_sym__literal_repeat1] = STATE(1109), - [anon_sym_PIPE_AMP] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(369), - [anon_sym_BQUOTE] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_LT_AMP] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(369), - [sym__special_character] = ACTIONS(2141), - [anon_sym_LT_LT_DASH] = ACTIONS(369), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(369), - [anon_sym_RPAREN] = ACTIONS(369), - [sym_file_descriptor] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_LT_LT_LT] = ACTIONS(369), - [anon_sym_GT_AMP] = ACTIONS(369), - [anon_sym_esac] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_SEMI_SEMI] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [sym_ansii_c_string] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_number] = ACTIONS(225), + [anon_sym_LF] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(229), + [sym_word] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_AMP_GT] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [sym__special_character] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(225), + [sym_raw_string] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), }, [549] = { - [anon_sym_PIPE_AMP] = ACTIONS(363), - [anon_sym_AMP_GT_GT] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(363), - [anon_sym_BQUOTE] = ACTIONS(363), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_LT_AMP] = ACTIONS(363), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_LT_LT_DASH] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(361), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_RPAREN] = ACTIONS(363), - [sym_file_descriptor] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(363), - [anon_sym_LT_LT_LT] = ACTIONS(363), - [anon_sym_GT_AMP] = ACTIONS(363), - [anon_sym_esac] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_SEMI_SEMI] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(363), + [sym_expansion] = STATE(540), + [sym_string_expansion] = STATE(540), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(540), + [aux_sym__literal_repeat1] = STATE(547), + [sym_command_substitution] = STATE(540), + [sym_process_substitution] = STATE(540), + [sym_command_name] = STATE(659), + [sym_variable_assignment] = STATE(105), + [sym_simple_expansion] = STATE(540), + [sym_subscript] = STATE(2585), + [aux_sym_command_repeat1] = STATE(105), + [sym_arithmetic_expansion] = STATE(540), + [sym_file_redirect] = STATE(105), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [sym_number] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [sym_variable_name] = ACTIONS(273), + [sym_word] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(27), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(27), + [sym_ansii_c_string] = ACTIONS(1802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [sym__special_character] = ACTIONS(2371), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [sym_raw_string] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1820), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1804), }, [550] = { - [aux_sym_concatenation_repeat1] = STATE(1234), - [anon_sym_AMP] = ACTIONS(373), - [anon_sym_AMP_GT_GT] = ACTIONS(373), - [anon_sym_DOLLAR] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(373), - [anon_sym_GT_LPAREN] = ACTIONS(373), - [sym_number] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [sym__concat] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(373), - [sym_word] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(373), - [anon_sym_LT_AMP] = ACTIONS(373), - [anon_sym_GT_GT] = ACTIONS(373), - [sym__special_character] = ACTIONS(373), - [anon_sym_LT_LT_DASH] = ACTIONS(373), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(373), - [sym_raw_string] = ACTIONS(373), - [sym_variable_name] = ACTIONS(377), - [sym_file_descriptor] = ACTIONS(377), - [anon_sym_GT] = ACTIONS(373), - [anon_sym_AMP_GT] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(373), - [anon_sym_LT_LT_LT] = ACTIONS(373), - [anon_sym_GT_AMP] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_esac] = ACTIONS(373), - [anon_sym_LT_LPAREN] = ACTIONS(373), - [sym_ansii_c_string] = ACTIONS(373), - [aux_sym__simple_variable_name_token1] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_SEMI_SEMI] = ACTIONS(373), - [anon_sym_PIPE_AMP] = ACTIONS(373), + [sym_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_concatenation] = STATE(579), + [sym_string] = STATE(427), + [aux_sym__literal_repeat1] = STATE(430), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_arithmetic_expansion] = STATE(427), + [aux_sym_command_repeat2] = STATE(579), + [anon_sym_AMP_GT_GT] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(2103), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_LT_AMP] = ACTIONS(359), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_EQ_TILDE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(359), + [anon_sym_GT_LPAREN] = ACTIONS(2103), + [sym_number] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), + [sym_file_descriptor] = ACTIONS(371), + [sym_word] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(2107), + [sym__special_character] = ACTIONS(103), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [anon_sym_GT_AMP] = ACTIONS(359), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_SEMI_SEMI] = ACTIONS(359), + [anon_sym_PIPE_AMP] = ACTIONS(359), }, [551] = { - [aux_sym__literal_repeat1] = STATE(1269), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_AMP_GT_GT] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_BQUOTE] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_number] = ACTIONS(379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(379), - [sym_word] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_LT_AMP] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [sym__special_character] = ACTIONS(2278), - [anon_sym_LT_LT_DASH] = ACTIONS(379), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(379), - [sym_raw_string] = ACTIONS(379), - [sym_variable_name] = ACTIONS(383), - [sym_file_descriptor] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_AMP_GT] = ACTIONS(379), - [anon_sym_DQUOTE] = ACTIONS(379), - [anon_sym_LT_LT_LT] = ACTIONS(379), - [anon_sym_GT_AMP] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(379), - [anon_sym_esac] = ACTIONS(379), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [sym_ansii_c_string] = ACTIONS(379), - [aux_sym__simple_variable_name_token1] = ACTIONS(379), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_SEMI_SEMI] = ACTIONS(379), - [anon_sym_PIPE_AMP] = ACTIONS(379), + [aux_sym_concatenation_repeat1] = STATE(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [sym__concat] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_LT_AMP] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_LT_LT_DASH] = ACTIONS(381), + [anon_sym_LF] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_AMP_GT] = ACTIONS(381), + [anon_sym_LT_LT_LT] = ACTIONS(381), + [anon_sym_GT_AMP] = ACTIONS(381), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_SEMI_SEMI] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(381), }, [552] = { - [sym_command_substitution] = STATE(397), - [aux_sym__literal_repeat1] = STATE(398), - [sym_string] = STATE(397), - [aux_sym_declaration_command_repeat1] = STATE(429), - [sym_process_substitution] = STATE(397), - [sym_simple_expansion] = STATE(397), - [sym_subscript] = STATE(2476), - [sym_string_expansion] = STATE(397), - [sym_variable_assignment] = STATE(429), - [sym_concatenation] = STATE(429), - [sym_expansion] = STATE(397), - [anon_sym_PIPE_AMP] = ACTIONS(385), - [anon_sym_AMP_GT_GT] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(385), - [anon_sym_GT_LPAREN] = ACTIONS(1966), - [sym_number] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [sym_word] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_AMP] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [sym__special_character] = ACTIONS(1972), - [anon_sym_LT_LT_DASH] = ACTIONS(385), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(387), - [anon_sym_SEMI] = ACTIONS(385), - [sym_raw_string] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1974), - [sym_file_descriptor] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_AMP_GT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(385), - [anon_sym_GT_AMP] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1978), - [aux_sym__simple_variable_name_token1] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(1966), - [sym_ansii_c_string] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_SEMI_SEMI] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), + [anon_sym_AMP_GT_GT] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_LT_AMP] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_LT_LT_DASH] = ACTIONS(381), + [anon_sym_LF] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_AMP_GT] = ACTIONS(381), + [anon_sym_LT_LT_LT] = ACTIONS(381), + [anon_sym_GT_AMP] = ACTIONS(381), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_esac] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_SEMI_SEMI] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(381), }, [553] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [anon_sym_AMP] = ACTIONS(391), + [aux_sym__literal_repeat1] = STATE(1127), + [anon_sym_AMP_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_LT_AMP] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_DASH] = ACTIONS(387), + [anon_sym_LF] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(387), + [sym_file_descriptor] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_AMP_GT] = ACTIONS(387), + [sym__special_character] = ACTIONS(2232), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_AMP] = ACTIONS(387), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_esac] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_SEMI_SEMI] = ACTIONS(387), + [anon_sym_PIPE_AMP] = ACTIONS(387), + }, + [554] = { + [aux_sym_concatenation_repeat1] = STATE(1287), [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DQUOTE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(391), [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_BQUOTE] = ACTIONS(391), - [anon_sym_GT_LPAREN] = ACTIONS(391), - [sym_number] = ACTIONS(391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [sym_ansii_c_string] = ACTIONS(391), [anon_sym_PIPE_PIPE] = ACTIONS(391), - [sym__concat] = ACTIONS(2280), + [sym__concat] = ACTIONS(2373), [anon_sym_PIPE] = ACTIONS(391), - [sym_word] = ACTIONS(391), + [aux_sym__simple_variable_name_token1] = ACTIONS(391), [anon_sym_LT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), [anon_sym_GT_GT] = ACTIONS(391), - [sym__special_character] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(391), [anon_sym_LT_LT_DASH] = ACTIONS(391), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_number] = ACTIONS(391), [anon_sym_LF] = ACTIONS(395), [anon_sym_SEMI] = ACTIONS(391), - [sym_raw_string] = ACTIONS(391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), + [sym_variable_name] = ACTIONS(395), [sym_file_descriptor] = ACTIONS(395), + [sym_word] = ACTIONS(391), [anon_sym_GT] = ACTIONS(391), [anon_sym_AMP_GT] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(391), + [sym__special_character] = ACTIONS(391), [anon_sym_LT_LT_LT] = ACTIONS(391), [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), [anon_sym_esac] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(391), - [sym_ansii_c_string] = ACTIONS(391), - [aux_sym__simple_variable_name_token1] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(391), + [sym_raw_string] = ACTIONS(391), + [sym_comment] = ACTIONS(3), [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(391), [anon_sym_SEMI_SEMI] = ACTIONS(391), [anon_sym_PIPE_AMP] = ACTIONS(391), }, - [554] = { - [aux_sym__literal_repeat1] = STATE(1301), - [anon_sym_AMP] = ACTIONS(397), + [555] = { + [aux_sym__literal_repeat1] = STATE(1292), [anon_sym_AMP_GT_GT] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(397), [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_GT_LPAREN] = ACTIONS(397), - [sym_number] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), + [anon_sym_LT_LPAREN] = ACTIONS(397), + [sym_ansii_c_string] = ACTIONS(397), [anon_sym_PIPE_PIPE] = ACTIONS(397), [anon_sym_PIPE] = ACTIONS(397), - [sym_word] = ACTIONS(397), + [aux_sym__simple_variable_name_token1] = ACTIONS(397), [anon_sym_LT] = ACTIONS(397), [anon_sym_LT_AMP] = ACTIONS(397), [anon_sym_GT_GT] = ACTIONS(397), - [sym__special_character] = ACTIONS(2282), + [anon_sym_DOLLAR] = ACTIONS(397), [anon_sym_LT_LT_DASH] = ACTIONS(397), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(401), + [anon_sym_GT_LPAREN] = ACTIONS(397), + [sym_number] = ACTIONS(397), + [anon_sym_LF] = ACTIONS(399), [anon_sym_SEMI] = ACTIONS(397), - [sym_raw_string] = ACTIONS(397), - [sym_file_descriptor] = ACTIONS(401), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [sym_variable_name] = ACTIONS(399), + [sym_file_descriptor] = ACTIONS(399), + [sym_word] = ACTIONS(397), [anon_sym_GT] = ACTIONS(397), [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), + [sym__special_character] = ACTIONS(2375), [anon_sym_LT_LT_LT] = ACTIONS(397), [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), [anon_sym_esac] = ACTIONS(397), - [anon_sym_LT_LPAREN] = ACTIONS(397), - [sym_ansii_c_string] = ACTIONS(397), - [aux_sym__simple_variable_name_token1] = ACTIONS(397), + [anon_sym_BQUOTE] = ACTIONS(397), + [sym_raw_string] = ACTIONS(397), + [sym_comment] = ACTIONS(3), [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), [anon_sym_SEMI_SEMI] = ACTIONS(397), [anon_sym_PIPE_AMP] = ACTIONS(397), }, - [555] = { - [sym_command_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), + [556] = { + [sym_expansion] = STATE(400), + [sym_concatenation] = STATE(432), + [aux_sym_declaration_command_repeat1] = STATE(432), [sym_string] = STATE(400), - [aux_sym_unset_command_repeat1] = STATE(430), + [sym_command_substitution] = STATE(400), [sym_process_substitution] = STATE(400), + [aux_sym__literal_repeat1] = STATE(401), + [sym_variable_assignment] = STATE(432), + [sym_subscript] = STATE(2595), [sym_simple_expansion] = STATE(400), + [sym_arithmetic_expansion] = STATE(400), [sym_string_expansion] = STATE(400), - [sym_concatenation] = STATE(430), - [sym_expansion] = STATE(400), - [anon_sym_PIPE_AMP] = ACTIONS(403), [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(2043), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2045), [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_GT_LPAREN] = ACTIONS(1986), - [sym_number] = ACTIONS(1988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1990), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), + [anon_sym_LT_LPAREN] = ACTIONS(2049), + [sym_ansii_c_string] = ACTIONS(2051), [anon_sym_PIPE_PIPE] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), - [sym_word] = ACTIONS(1988), + [aux_sym__simple_variable_name_token1] = ACTIONS(2117), [anon_sym_LT] = ACTIONS(403), [anon_sym_LT_AMP] = ACTIONS(403), [anon_sym_GT_GT] = ACTIONS(403), - [sym__special_character] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(2055), [anon_sym_LT_LT_DASH] = ACTIONS(403), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(405), + [anon_sym_GT_LPAREN] = ACTIONS(2049), + [sym_number] = ACTIONS(2051), + [anon_sym_LF] = ACTIONS(407), [anon_sym_SEMI] = ACTIONS(403), - [sym_raw_string] = ACTIONS(1988), - [sym_file_descriptor] = ACTIONS(405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2057), + [sym_variable_name] = ACTIONS(2059), + [sym_file_descriptor] = ACTIONS(407), + [sym_word] = ACTIONS(2051), [anon_sym_GT] = ACTIONS(403), [anon_sym_AMP_GT] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(1994), + [sym__special_character] = ACTIONS(2061), [anon_sym_LT_LT_LT] = ACTIONS(403), [anon_sym_GT_AMP] = ACTIONS(403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1996), - [aux_sym__simple_variable_name_token1] = ACTIONS(2038), - [anon_sym_LT_LPAREN] = ACTIONS(1986), - [sym_ansii_c_string] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(403), + [sym_raw_string] = ACTIONS(2051), [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_SEMI_SEMI] = ACTIONS(403), [anon_sym_AMP] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_PIPE_AMP] = ACTIONS(403), }, - [556] = { - [anon_sym_AMP_GT_GT] = ACTIONS(411), + [557] = { + [aux_sym_concatenation_repeat1] = STATE(1320), + [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), + [anon_sym_LT_LPAREN] = ACTIONS(409), + [sym_ansii_c_string] = ACTIONS(409), + [anon_sym_PIPE_PIPE] = ACTIONS(409), + [sym__concat] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_LT_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), + [anon_sym_LT_LT_DASH] = ACTIONS(409), + [anon_sym_GT_LPAREN] = ACTIONS(409), [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [sym__concat] = ACTIONS(411), + [anon_sym_LF] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), + [sym_file_descriptor] = ACTIONS(413), [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(411), - [sym_variable_name] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_RPAREN] = ACTIONS(411), [anon_sym_GT] = ACTIONS(409), [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), + [sym__special_character] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(409), + [anon_sym_GT_AMP] = ACTIONS(409), + [anon_sym_esac] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(409), + [sym_raw_string] = ACTIONS(409), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_SEMI_SEMI] = ACTIONS(409), + [anon_sym_PIPE_AMP] = ACTIONS(409), }, - [557] = { + [558] = { + [aux_sym__literal_repeat1] = STATE(1325), [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [sym__concat] = ACTIONS(415), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(415), - [sym_variable_name] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(415), [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), [anon_sym_LT_LPAREN] = ACTIONS(415), [sym_ansii_c_string] = ACTIONS(415), - }, - [558] = { - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [sym__concat] = ACTIONS(419), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(419), - [sym_variable_name] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(415), + [aux_sym__simple_variable_name_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_LT_AMP] = ACTIONS(415), + [anon_sym_GT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_LT_LT_DASH] = ACTIONS(415), + [anon_sym_GT_LPAREN] = ACTIONS(415), + [sym_number] = ACTIONS(415), + [anon_sym_LF] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), + [sym_file_descriptor] = ACTIONS(417), + [sym_word] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_AMP_GT] = ACTIONS(415), + [sym__special_character] = ACTIONS(2379), + [anon_sym_LT_LT_LT] = ACTIONS(415), + [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_esac] = ACTIONS(415), + [anon_sym_BQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(415), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_SEMI_SEMI] = ACTIONS(415), + [anon_sym_PIPE_AMP] = ACTIONS(415), }, [559] = { - [aux_sym_concatenation_repeat1] = STATE(583), - [anon_sym_AMP_GT_GT] = ACTIONS(433), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(433), - [anon_sym_GT_LPAREN] = ACTIONS(433), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(433), - [sym__concat] = ACTIONS(2284), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [sym__special_character] = ACTIONS(433), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(433), - [sym_variable_name] = ACTIONS(433), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_RPAREN] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_GT_AMP] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(433), - [anon_sym_LT_LPAREN] = ACTIONS(433), - [sym_ansii_c_string] = ACTIONS(433), + [sym_expansion] = STATE(403), + [sym_concatenation] = STATE(433), + [sym_string] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym__literal_repeat1] = STATE(404), + [aux_sym_unset_command_repeat1] = STATE(433), + [sym_simple_expansion] = STATE(403), + [sym_arithmetic_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(2065), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), + [anon_sym_LT_LPAREN] = ACTIONS(2071), + [sym_ansii_c_string] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [aux_sym__simple_variable_name_token1] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [anon_sym_GT_LPAREN] = ACTIONS(2071), + [sym_number] = ACTIONS(2073), + [anon_sym_LF] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2079), + [sym_file_descriptor] = ACTIONS(425), + [sym_word] = ACTIONS(2073), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [sym__special_character] = ACTIONS(2081), + [anon_sym_LT_LT_LT] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(421), + [sym_raw_string] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), }, [560] = { - [aux_sym_concatenation_repeat1] = STATE(978), - [anon_sym_BANG_EQ] = ACTIONS(531), - [anon_sym_PLUS_EQ] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(531), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(531), - [anon_sym_PLUS_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(531), - [sym_test_operator] = ACTIONS(531), - [anon_sym_EQ_EQ] = ACTIONS(531), - [anon_sym_PIPE_PIPE] = ACTIONS(531), - [anon_sym_GT_EQ] = ACTIONS(531), - [sym__concat] = ACTIONS(2286), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_EQ_TILDE] = ACTIONS(531), - [anon_sym_DASH_DASH] = ACTIONS(531), - [anon_sym_AMP_AMP] = ACTIONS(531), - [anon_sym_LT_EQ] = ACTIONS(531), - [anon_sym_SEMI_SEMI] = ACTIONS(531), - [anon_sym_DASH_EQ] = ACTIONS(531), + [anon_sym_AMP_GT_GT] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(441), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(441), + [sym_ansii_c_string] = ACTIONS(441), + [sym__concat] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(441), + [anon_sym_GT_GT] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(441), + [sym_number] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), + [sym_variable_name] = ACTIONS(441), + [sym_file_descriptor] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(441), + [anon_sym_AMP_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(441), + [anon_sym_GT_AMP] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(441), + [sym_raw_string] = ACTIONS(441), }, [561] = { - [sym_command_substitution] = STATE(560), - [sym_unary_expression] = STATE(586), - [sym_postfix_expression] = STATE(586), - [sym_string] = STATE(560), - [aux_sym__literal_repeat1] = STATE(562), - [sym_process_substitution] = STATE(560), - [sym_parenthesized_expression] = STATE(586), - [sym_simple_expansion] = STATE(560), - [sym_string_expansion] = STATE(560), - [sym__expression] = STATE(586), - [sym_binary_expression] = STATE(586), - [sym_concatenation] = STATE(586), - [sym_expansion] = STATE(560), - [anon_sym_LPAREN] = ACTIONS(2288), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_test_operator] = ACTIONS(2292), - [anon_sym_BQUOTE] = ACTIONS(2294), - [anon_sym_GT_LPAREN] = ACTIONS(2296), - [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2302), - [anon_sym_LT_LPAREN] = ACTIONS(2296), - [sym_ansii_c_string] = ACTIONS(2290), - [sym__special_character] = ACTIONS(2304), + [aux_sym_concatenation_repeat1] = STATE(1023), + [anon_sym_BANG_EQ] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(447), + [sym_test_operator] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_LF] = ACTIONS(447), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_LT_LT] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(447), + [anon_sym_PIPE_PIPE] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(447), + [sym__concat] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(447), + [anon_sym_EQ_TILDE] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_SEMI_SEMI] = ACTIONS(447), + [anon_sym_DASH_EQ] = ACTIONS(447), }, [562] = { - [aux_sym__literal_repeat1] = STATE(1013), - [anon_sym_BANG_EQ] = ACTIONS(537), - [anon_sym_PLUS_EQ] = ACTIONS(537), - [anon_sym_AMP] = ACTIONS(537), - [sym__special_character] = ACTIONS(2306), - [anon_sym_LF] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_GT] = ACTIONS(537), - [anon_sym_EQ] = ACTIONS(537), - [sym_test_operator] = ACTIONS(537), - [anon_sym_EQ_EQ] = ACTIONS(537), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_GT_EQ] = ACTIONS(537), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_EQ_TILDE] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_AMP_AMP] = ACTIONS(537), - [anon_sym_LT_EQ] = ACTIONS(537), - [anon_sym_SEMI_SEMI] = ACTIONS(537), - [anon_sym_DASH_EQ] = ACTIONS(537), + [sym_expansion] = STATE(561), + [sym_unary_expression] = STATE(584), + [sym_postfix_expression] = STATE(584), + [sym_concatenation] = STATE(584), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [sym_parenthesized_expression] = STATE(584), + [aux_sym__literal_repeat1] = STATE(563), + [sym_simple_expansion] = STATE(561), + [sym__expression] = STATE(584), + [sym_binary_expression] = STATE(584), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_GT_LPAREN] = ACTIONS(2385), + [sym_number] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(2389), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2391), + [sym_word] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(2385), + [sym_ansii_c_string] = ACTIONS(2393), + [sym__special_character] = ACTIONS(2395), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2397), + [sym_raw_string] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(675), + [sym_test_operator] = ACTIONS(2399), }, [563] = { - [anon_sym_AMP_GT_GT] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(597), - [anon_sym_GT_LPAREN] = ACTIONS(597), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(597), - [sym__concat] = ACTIONS(597), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [sym__special_character] = ACTIONS(597), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(597), - [sym_variable_name] = ACTIONS(597), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(597), - [anon_sym_GT_AMP] = ACTIONS(597), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), - [anon_sym_LT_LPAREN] = ACTIONS(597), - [sym_ansii_c_string] = ACTIONS(597), + [aux_sym__literal_repeat1] = STATE(1028), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [sym_test_operator] = ACTIONS(453), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(453), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_PLUS_PLUS] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_GT] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [sym__special_character] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_LT] = ACTIONS(453), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(453), + [anon_sym_EQ_TILDE] = ACTIONS(453), + [anon_sym_DASH_DASH] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_SEMI_SEMI] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), }, [564] = { - [anon_sym_AMP_GT_GT] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym__special_character] = ACTIONS(213), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(213), - [sym_variable_name] = ACTIONS(213), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_GT_AMP] = ACTIONS(213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [sym_ansii_c_string] = ACTIONS(213), + [aux_sym_concatenation_repeat1] = STATE(593), + [anon_sym_AMP_GT_GT] = ACTIONS(479), + [anon_sym_DQUOTE] = ACTIONS(479), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(479), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(479), + [sym_ansii_c_string] = ACTIONS(479), + [sym__concat] = ACTIONS(2403), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(479), + [sym_number] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(479), + [sym_variable_name] = ACTIONS(479), + [sym_file_descriptor] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(479), + [anon_sym_AMP_GT] = ACTIONS(475), + [sym__special_character] = ACTIONS(479), + [anon_sym_GT_AMP] = ACTIONS(479), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_raw_string] = ACTIONS(479), }, [565] = { - [aux_sym__literal_repeat1] = STATE(565), - [anon_sym_AMP_GT_GT] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(652), - [anon_sym_GT_LPAREN] = ACTIONS(652), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [sym__special_character] = ACTIONS(2308), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(652), - [sym_variable_name] = ACTIONS(652), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(652), - [anon_sym_GT_AMP] = ACTIONS(652), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(652), - [anon_sym_LT_LPAREN] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(507), + [sym_ansii_c_string] = ACTIONS(507), + [sym__concat] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(507), + [sym_number] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [sym_variable_name] = ACTIONS(507), + [sym_file_descriptor] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(507), + [anon_sym_AMP_GT] = ACTIONS(505), + [sym__special_character] = ACTIONS(507), + [anon_sym_GT_AMP] = ACTIONS(507), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_raw_string] = ACTIONS(507), }, [566] = { - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(658), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_AMP_GT_GT] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [sym_ansii_c_string] = ACTIONS(511), + [sym__concat] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(511), + [anon_sym_GT_GT] = ACTIONS(511), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(511), + [sym_number] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(511), + [sym_variable_name] = ACTIONS(511), + [sym_file_descriptor] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(511), + [anon_sym_AMP_GT] = ACTIONS(509), + [sym__special_character] = ACTIONS(511), + [anon_sym_GT_AMP] = ACTIONS(511), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(511), + [sym_raw_string] = ACTIONS(511), }, [567] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(456), - [sym_function_definition] = STATE(456), - [sym_negated_command] = STATE(456), - [sym_test_command] = STATE(456), - [sym_variable_assignment] = STATE(598), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(456), - [sym_for_statement] = STATE(456), - [sym_compound_statement] = STATE(456), - [sym_subshell] = STATE(456), - [sym_declaration_command] = STATE(456), - [sym_unset_command] = STATE(456), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym_c_style_for_statement] = STATE(456), - [sym_while_statement] = STATE(456), - [sym_case_statement] = STATE(456), - [sym_pipeline] = STATE(456), - [sym_list] = STATE(456), - [sym_command] = STATE(456), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [anon_sym_AMP_GT_GT] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(515), + [sym_ansii_c_string] = ACTIONS(515), + [sym__concat] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(515), + [sym_number] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(515), + [sym_variable_name] = ACTIONS(515), + [sym_file_descriptor] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_RPAREN] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(513), + [sym__special_character] = ACTIONS(515), + [anon_sym_GT_AMP] = ACTIONS(515), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(515), + [sym_raw_string] = ACTIONS(515), + }, + [568] = { + [sym_if_statement] = STATE(460), + [sym_function_definition] = STATE(460), + [sym_negated_command] = STATE(460), + [sym_test_command] = STATE(460), + [sym_variable_assignment] = STATE(603), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_compound_statement] = STATE(460), + [sym_subshell] = STATE(460), + [sym_declaration_command] = STATE(460), + [sym_unset_command] = STATE(460), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym_c_style_for_statement] = STATE(460), + [sym_while_statement] = STATE(460), + [sym_case_statement] = STATE(460), + [sym_pipeline] = STATE(460), + [sym_list] = STATE(460), + [sym_command] = STATE(460), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [568] = { - [sym_heredoc_body] = STATE(1473), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(658), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [569] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(600), - [sym_function_definition] = STATE(600), - [sym_negated_command] = STATE(600), - [sym_test_command] = STATE(600), - [sym_variable_assignment] = STATE(601), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(600), - [sym_for_statement] = STATE(600), - [sym_compound_statement] = STATE(600), - [sym_subshell] = STATE(600), - [sym_declaration_command] = STATE(600), - [sym_unset_command] = STATE(600), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym_c_style_for_statement] = STATE(600), - [sym_while_statement] = STATE(600), - [sym_case_statement] = STATE(600), - [sym_pipeline] = STATE(600), - [sym_list] = STATE(600), - [sym_command] = STATE(600), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_heredoc_body] = STATE(1530), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + }, + [570] = { + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + }, + [571] = { + [sym_if_statement] = STATE(605), + [sym_function_definition] = STATE(605), + [sym_negated_command] = STATE(605), + [sym_test_command] = STATE(605), + [sym_variable_assignment] = STATE(606), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(605), + [sym_for_statement] = STATE(605), + [sym_compound_statement] = STATE(605), + [sym_subshell] = STATE(605), + [sym_declaration_command] = STATE(605), + [sym_unset_command] = STATE(605), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym_c_style_for_statement] = STATE(605), + [sym_while_statement] = STATE(605), + [sym_case_statement] = STATE(605), + [sym_pipeline] = STATE(605), + [sym_list] = STATE(605), + [sym_command] = STATE(605), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [570] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_PIPE_AMP] = ACTIONS(2270), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2313), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(2053), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_SEMI_SEMI] = ACTIONS(2313), - [anon_sym_AMP] = ACTIONS(2313), - }, - [571] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_PIPE_AMP] = ACTIONS(2270), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(2053), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2270), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2313), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_SEMI_SEMI] = ACTIONS(2313), - [anon_sym_AMP] = ACTIONS(2313), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [572] = { - [sym_command_substitution] = STATE(425), - [aux_sym__literal_repeat1] = STATE(426), - [sym_string] = STATE(425), - [sym_process_substitution] = STATE(425), - [sym_simple_expansion] = STATE(425), - [sym_string_expansion] = STATE(425), - [aux_sym_command_repeat2] = STATE(604), - [sym_concatenation] = STATE(604), - [sym_expansion] = STATE(425), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [anon_sym_GT_LPAREN] = ACTIONS(2016), - [sym_number] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [sym_word] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(773), - [sym_raw_string] = ACTIONS(2018), - [sym_file_descriptor] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [sym_ansii_c_string] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_PIPE_AMP] = ACTIONS(2363), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LF] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(2361), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(2135), + [anon_sym_GT_GT] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI_SEMI] = ACTIONS(2407), + [anon_sym_LT_LT_DASH] = ACTIONS(497), }, [573] = { - [sym_command_substitution] = STATE(606), - [aux_sym__literal_repeat1] = STATE(607), - [sym_string] = STATE(606), - [sym_process_substitution] = STATE(606), - [sym_simple_expansion] = STATE(606), - [sym_string_expansion] = STATE(606), - [sym_concatenation] = STATE(605), - [sym_expansion] = STATE(606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1758), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2315), - [sym_word] = ACTIONS(2317), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1738), - [sym_ansii_c_string] = ACTIONS(2315), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_BQUOTE] = ACTIONS(1740), - [sym_regex] = ACTIONS(2319), - [sym__special_character] = ACTIONS(2274), - [sym_number] = ACTIONS(2317), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(2405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(2407), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2135), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI_SEMI] = ACTIONS(2407), + [anon_sym_PIPE_AMP] = ACTIONS(2363), }, [574] = { - [aux_sym_concatenation_repeat1] = STATE(1202), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_AMP_GT_GT] = ACTIONS(799), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_LT_LT] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(799), - [anon_sym_GT_LPAREN] = ACTIONS(799), - [sym_number] = ACTIONS(799), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(799), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [sym__concat] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(799), - [sym_word] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(799), - [anon_sym_LT_AMP] = ACTIONS(799), - [anon_sym_GT_GT] = ACTIONS(799), - [anon_sym_EQ_TILDE] = ACTIONS(799), - [sym__special_character] = ACTIONS(799), - [anon_sym_LT_LT_DASH] = ACTIONS(799), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(799), - [sym_raw_string] = ACTIONS(799), - [sym_file_descriptor] = ACTIONS(801), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_AMP_GT] = ACTIONS(799), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [anon_sym_LT_LT_LT] = ACTIONS(799), - [anon_sym_GT_AMP] = ACTIONS(799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(799), - [anon_sym_esac] = ACTIONS(799), - [anon_sym_LT_LPAREN] = ACTIONS(799), - [sym_ansii_c_string] = ACTIONS(799), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_SEMI_SEMI] = ACTIONS(799), - [anon_sym_PIPE_AMP] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(287), + [sym_ansii_c_string] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(287), + [sym_number] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), + [sym_variable_name] = ACTIONS(287), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(287), + [anon_sym_GT_AMP] = ACTIONS(287), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(287), + [sym_raw_string] = ACTIONS(287), }, [575] = { - [aux_sym__literal_repeat1] = STATE(1237), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_LT_LT] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_number] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [sym_word] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(803), - [sym__special_character] = ACTIONS(2250), - [anon_sym_LT_LT_DASH] = ACTIONS(803), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(803), - [sym_raw_string] = ACTIONS(803), - [sym_file_descriptor] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_AMP_GT] = ACTIONS(803), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_LT_LT_LT] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_esac] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [sym_ansii_c_string] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), + [aux_sym__literal_repeat1] = STATE(575), + [anon_sym_AMP_GT_GT] = ACTIONS(813), + [anon_sym_DQUOTE] = ACTIONS(813), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(813), + [sym_ansii_c_string] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(813), + [anon_sym_GT_GT] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(813), + [sym_number] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), + [sym_variable_name] = ACTIONS(813), + [sym_file_descriptor] = ACTIONS(813), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(2409), + [anon_sym_GT_AMP] = ACTIONS(813), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(813), + [sym_raw_string] = ACTIONS(813), }, [576] = { - [sym_command_substitution] = STATE(425), - [aux_sym__literal_repeat1] = STATE(426), - [sym_string] = STATE(425), - [sym_process_substitution] = STATE(425), - [sym_simple_expansion] = STATE(425), - [sym_string_expansion] = STATE(425), - [aux_sym_command_repeat2] = STATE(473), - [sym_concatenation] = STATE(473), - [sym_expansion] = STATE(425), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [anon_sym_GT_LPAREN] = ACTIONS(2016), - [sym_number] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [sym_word] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(773), - [sym_raw_string] = ACTIONS(2018), - [sym_file_descriptor] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [sym_ansii_c_string] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), + [sym_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_concatenation] = STATE(609), + [sym_string] = STATE(427), + [aux_sym__literal_repeat1] = STATE(430), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_arithmetic_expansion] = STATE(427), + [aux_sym_command_repeat2] = STATE(609), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(2103), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_EQ_TILDE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(2103), + [sym_number] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), + [sym_file_descriptor] = ACTIONS(820), + [sym_word] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(2107), + [sym__special_character] = ACTIONS(103), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), }, [577] = { - [sym_command_substitution] = STATE(550), - [aux_sym__literal_repeat1] = STATE(551), - [sym_string] = STATE(550), - [aux_sym_declaration_command_repeat1] = STATE(577), - [sym_process_substitution] = STATE(550), - [sym_simple_expansion] = STATE(550), - [sym_subscript] = STATE(2503), - [sym_string_expansion] = STATE(550), - [sym_variable_assignment] = STATE(577), - [sym_concatenation] = STATE(577), - [sym_expansion] = STATE(550), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(2321), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(2324), - [anon_sym_GT_LPAREN] = ACTIONS(2327), - [sym_number] = ACTIONS(2330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2333), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [sym_word] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(2336), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(811), - [sym_raw_string] = ACTIONS(2330), - [sym_variable_name] = ACTIONS(2339), - [sym_file_descriptor] = ACTIONS(831), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2345), - [anon_sym_esac] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(2327), - [sym_ansii_c_string] = ACTIONS(2330), - [aux_sym__simple_variable_name_token1] = ACTIONS(2348), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1254), + [anon_sym_AMP_GT_GT] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(838), + [anon_sym_LT_LT] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), + [anon_sym_LT_LPAREN] = ACTIONS(838), + [sym_ansii_c_string] = ACTIONS(838), + [anon_sym_PIPE_PIPE] = ACTIONS(838), + [sym__concat] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(838), + [anon_sym_LT_AMP] = ACTIONS(838), + [anon_sym_GT_GT] = ACTIONS(838), + [anon_sym_EQ_TILDE] = ACTIONS(838), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_LT_LT_DASH] = ACTIONS(838), + [anon_sym_GT_LPAREN] = ACTIONS(838), + [sym_number] = ACTIONS(838), + [anon_sym_LF] = ACTIONS(840), + [anon_sym_SEMI] = ACTIONS(838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [sym_file_descriptor] = ACTIONS(840), + [sym_word] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(838), + [anon_sym_AMP_GT] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(838), + [sym__special_character] = ACTIONS(838), + [anon_sym_LT_LT_LT] = ACTIONS(838), + [anon_sym_GT_AMP] = ACTIONS(838), + [anon_sym_esac] = ACTIONS(838), + [anon_sym_BQUOTE] = ACTIONS(838), + [sym_raw_string] = ACTIONS(838), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_SEMI_SEMI] = ACTIONS(838), + [anon_sym_PIPE_AMP] = ACTIONS(838), }, [578] = { - [sym_command_substitution] = STATE(553), - [aux_sym__literal_repeat1] = STATE(554), - [sym_string] = STATE(553), - [aux_sym_unset_command_repeat1] = STATE(578), - [sym_process_substitution] = STATE(553), - [sym_simple_expansion] = STATE(553), - [sym_string_expansion] = STATE(553), - [sym_concatenation] = STATE(578), - [sym_expansion] = STATE(553), - [anon_sym_AMP] = ACTIONS(845), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(2351), - [anon_sym_LT_LT] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(2354), - [anon_sym_GT_LPAREN] = ACTIONS(2357), - [sym_number] = ACTIONS(2360), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2363), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [sym_word] = ACTIONS(2360), - [anon_sym_LT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_GT] = ACTIONS(845), - [sym__special_character] = ACTIONS(2366), - [anon_sym_LT_LT_DASH] = ACTIONS(845), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(845), - [sym_raw_string] = ACTIONS(2360), - [sym_file_descriptor] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(2369), - [anon_sym_LT_LT_LT] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), - [anon_sym_esac] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(2357), - [sym_ansii_c_string] = ACTIONS(2360), - [aux_sym__simple_variable_name_token1] = ACTIONS(2375), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), + [sym_expansion] = STATE(611), + [sym_concatenation] = STATE(610), + [sym_string] = STATE(611), + [sym_command_substitution] = STATE(611), + [sym_process_substitution] = STATE(611), + [aux_sym__literal_repeat1] = STATE(612), + [sym_simple_expansion] = STATE(611), + [sym_arithmetic_expansion] = STATE(611), + [sym_string_expansion] = STATE(611), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_number] = ACTIONS(2412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [sym_word] = ACTIONS(2412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [sym_ansii_c_string] = ACTIONS(2414), + [sym__special_character] = ACTIONS(2371), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1820), + [sym_raw_string] = ACTIONS(2414), + [sym_regex] = ACTIONS(2416), + [anon_sym_DOLLAR] = ACTIONS(1804), }, [579] = { - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [sym__concat] = ACTIONS(878), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(878), - [sym_variable_name] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), + [sym_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_concatenation] = STATE(477), + [sym_string] = STATE(427), + [aux_sym__literal_repeat1] = STATE(430), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_arithmetic_expansion] = STATE(427), + [aux_sym_command_repeat2] = STATE(477), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(2103), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_EQ_TILDE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(2103), + [sym_number] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), + [sym_file_descriptor] = ACTIONS(820), + [sym_word] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(2107), + [sym__special_character] = ACTIONS(103), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), }, [580] = { - [anon_sym_AMP_GT_GT] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [sym__concat] = ACTIONS(882), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(882), - [sym_variable_name] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_GT_AMP] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), + [aux_sym__literal_repeat1] = STATE(1259), + [anon_sym_AMP_GT_GT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(848), + [anon_sym_LT_LT] = ACTIONS(848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(848), + [anon_sym_LT_LPAREN] = ACTIONS(848), + [sym_ansii_c_string] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_LT_AMP] = ACTIONS(848), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_EQ_TILDE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(848), + [anon_sym_LT_LT_DASH] = ACTIONS(848), + [anon_sym_GT_LPAREN] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [anon_sym_LF] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(848), + [sym_file_descriptor] = ACTIONS(850), + [sym_word] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_AMP_GT] = ACTIONS(848), + [anon_sym_EQ_EQ] = ACTIONS(848), + [sym__special_character] = ACTIONS(2369), + [anon_sym_LT_LT_LT] = ACTIONS(848), + [anon_sym_GT_AMP] = ACTIONS(848), + [anon_sym_esac] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_raw_string] = ACTIONS(848), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_SEMI_SEMI] = ACTIONS(848), + [anon_sym_PIPE_AMP] = ACTIONS(848), }, [581] = { - [anon_sym_AMP_GT_GT] = ACTIONS(886), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(886), - [anon_sym_GT_LPAREN] = ACTIONS(886), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), - [sym__concat] = ACTIONS(886), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(886), - [anon_sym_GT_GT] = ACTIONS(886), - [sym__special_character] = ACTIONS(886), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(886), - [sym_variable_name] = ACTIONS(886), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(886), - [anon_sym_GT_AMP] = ACTIONS(886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), - [anon_sym_LT_LPAREN] = ACTIONS(886), - [sym_ansii_c_string] = ACTIONS(886), + [sym_expansion] = STATE(554), + [sym_concatenation] = STATE(581), + [aux_sym_declaration_command_repeat1] = STATE(581), + [sym_string] = STATE(554), + [sym_command_substitution] = STATE(554), + [sym_process_substitution] = STATE(554), + [aux_sym__literal_repeat1] = STATE(555), + [sym_variable_assignment] = STATE(581), + [sym_subscript] = STATE(2625), + [sym_simple_expansion] = STATE(554), + [sym_arithmetic_expansion] = STATE(554), + [sym_string_expansion] = STATE(554), + [anon_sym_AMP_GT_GT] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2424), + [anon_sym_LT_LPAREN] = ACTIONS(2427), + [sym_ansii_c_string] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(856), + [anon_sym_PIPE] = ACTIONS(856), + [aux_sym__simple_variable_name_token1] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_LT_AMP] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), + [anon_sym_DOLLAR] = ACTIONS(2436), + [anon_sym_LT_LT_DASH] = ACTIONS(856), + [anon_sym_GT_LPAREN] = ACTIONS(2427), + [sym_number] = ACTIONS(2430), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(856), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2439), + [sym_variable_name] = ACTIONS(2442), + [sym_file_descriptor] = ACTIONS(879), + [sym_word] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(856), + [anon_sym_AMP_GT] = ACTIONS(856), + [sym__special_character] = ACTIONS(2445), + [anon_sym_LT_LT_LT] = ACTIONS(856), + [anon_sym_GT_AMP] = ACTIONS(856), + [anon_sym_esac] = ACTIONS(856), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_raw_string] = ACTIONS(2430), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SEMI_SEMI] = ACTIONS(856), + [anon_sym_PIPE_AMP] = ACTIONS(856), }, [582] = { - [sym_command_substitution] = STATE(581), - [sym_string] = STATE(581), - [sym_process_substitution] = STATE(581), - [sym_simple_expansion] = STATE(581), - [sym_string_expansion] = STATE(581), - [sym_expansion] = STATE(581), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2378), - [anon_sym_DOLLAR] = ACTIONS(2380), - [anon_sym_BQUOTE] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(117), - [sym_number] = ACTIONS(2382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_word] = ACTIONS(2382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(117), - [sym_ansii_c_string] = ACTIONS(2378), - [sym__special_character] = ACTIONS(2378), + [sym_expansion] = STATE(557), + [sym_concatenation] = STATE(582), + [sym_string] = STATE(557), + [sym_command_substitution] = STATE(557), + [sym_process_substitution] = STATE(557), + [aux_sym__literal_repeat1] = STATE(558), + [aux_sym_unset_command_repeat1] = STATE(582), + [sym_simple_expansion] = STATE(557), + [sym_arithmetic_expansion] = STATE(557), + [sym_string_expansion] = STATE(557), + [anon_sym_AMP_GT_GT] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(2451), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2457), + [anon_sym_LT_LPAREN] = ACTIONS(2460), + [sym_ansii_c_string] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [aux_sym__simple_variable_name_token1] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_LT_AMP] = ACTIONS(893), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_LT_LT_DASH] = ACTIONS(893), + [anon_sym_GT_LPAREN] = ACTIONS(2460), + [sym_number] = ACTIONS(2463), + [anon_sym_LF] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2472), + [sym_file_descriptor] = ACTIONS(916), + [sym_word] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_AMP_GT] = ACTIONS(893), + [sym__special_character] = ACTIONS(2475), + [anon_sym_LT_LT_LT] = ACTIONS(893), + [anon_sym_GT_AMP] = ACTIONS(893), + [anon_sym_esac] = ACTIONS(893), + [anon_sym_BQUOTE] = ACTIONS(2478), + [sym_raw_string] = ACTIONS(2463), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_SEMI_SEMI] = ACTIONS(893), + [anon_sym_PIPE_AMP] = ACTIONS(893), }, [583] = { - [aux_sym_concatenation_repeat1] = STATE(583), - [anon_sym_AMP_GT_GT] = ACTIONS(886), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(886), - [anon_sym_GT_LPAREN] = ACTIONS(886), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), - [sym__concat] = ACTIONS(2384), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(886), - [anon_sym_GT_GT] = ACTIONS(886), - [sym__special_character] = ACTIONS(886), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(886), - [sym_variable_name] = ACTIONS(886), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(886), - [anon_sym_GT_AMP] = ACTIONS(886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), - [anon_sym_LT_LPAREN] = ACTIONS(886), - [sym_ansii_c_string] = ACTIONS(886), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [sym__concat] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_number] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(931), + [sym__special_character] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), }, [584] = { - [anon_sym_AMP_GT_GT] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(909), - [anon_sym_GT_LPAREN] = ACTIONS(909), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(909), - [sym__concat] = ACTIONS(909), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(909), - [sym__special_character] = ACTIONS(909), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(909), - [sym_variable_name] = ACTIONS(909), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(909), - [anon_sym_GT_AMP] = ACTIONS(909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(909), - [anon_sym_LT_LPAREN] = ACTIONS(909), - [sym_ansii_c_string] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [sym_test_operator] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1178), + [anon_sym_EQ_TILDE] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_LT_EQ] = ACTIONS(1178), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_DASH_EQ] = ACTIONS(1178), }, [585] = { - [anon_sym_AMP_GT_GT] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_GT_LPAREN] = ACTIONS(961), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), - [sym__concat] = ACTIONS(961), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [sym__special_character] = ACTIONS(961), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(961), - [sym_variable_name] = ACTIONS(961), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(961), - [anon_sym_GT_AMP] = ACTIONS(961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), - [anon_sym_LT_LPAREN] = ACTIONS(961), - [sym_ansii_c_string] = ACTIONS(961), + [sym_expansion] = STATE(561), + [sym_unary_expression] = STATE(616), + [sym_postfix_expression] = STATE(616), + [sym_concatenation] = STATE(616), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [sym_parenthesized_expression] = STATE(616), + [aux_sym__literal_repeat1] = STATE(563), + [sym_simple_expansion] = STATE(561), + [sym__expression] = STATE(616), + [sym_binary_expression] = STATE(616), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_GT_LPAREN] = ACTIONS(2385), + [sym_number] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(2389), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2391), + [sym_word] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(2385), + [sym_ansii_c_string] = ACTIONS(2393), + [sym__special_character] = ACTIONS(2395), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2397), + [sym_raw_string] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(675), + [sym_test_operator] = ACTIONS(2399), }, [586] = { - [anon_sym_BANG_EQ] = ACTIONS(1096), - [anon_sym_PLUS_EQ] = ACTIONS(1096), - [anon_sym_AMP] = ACTIONS(1001), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_EQ] = ACTIONS(1096), - [sym_test_operator] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_PIPE_PIPE] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_EQ_TILDE] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_AMP_AMP] = ACTIONS(1096), - [anon_sym_LT_EQ] = ACTIONS(1096), - [anon_sym_SEMI_SEMI] = ACTIONS(1001), - [anon_sym_DASH_EQ] = ACTIONS(1096), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [sym_test_operator] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_LT_LT] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_EQ_TILDE] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_SEMI_SEMI] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), }, [587] = { - [sym_command_substitution] = STATE(560), - [sym_unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(614), - [sym_string] = STATE(560), - [aux_sym__literal_repeat1] = STATE(562), - [sym_process_substitution] = STATE(560), - [sym_parenthesized_expression] = STATE(614), - [sym_simple_expansion] = STATE(560), - [sym_string_expansion] = STATE(560), - [sym__expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_concatenation] = STATE(614), - [sym_expansion] = STATE(560), - [anon_sym_LPAREN] = ACTIONS(2288), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_test_operator] = ACTIONS(2292), - [anon_sym_BQUOTE] = ACTIONS(2294), - [anon_sym_GT_LPAREN] = ACTIONS(2296), - [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2302), - [anon_sym_LT_LPAREN] = ACTIONS(2296), - [sym_ansii_c_string] = ACTIONS(2290), - [sym__special_character] = ACTIONS(2304), + [sym_expansion] = STATE(561), + [sym_unary_expression] = STATE(616), + [sym_postfix_expression] = STATE(616), + [sym_concatenation] = STATE(616), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [sym_parenthesized_expression] = STATE(616), + [aux_sym__literal_repeat1] = STATE(563), + [sym_simple_expansion] = STATE(561), + [sym__expression] = STATE(616), + [sym_binary_expression] = STATE(616), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_GT_LPAREN] = ACTIONS(2385), + [sym_number] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(2389), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2391), + [sym_word] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(2385), + [sym_ansii_c_string] = ACTIONS(2393), + [sym__special_character] = ACTIONS(2395), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2397), + [sym_raw_string] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(675), + [sym_regex] = ACTIONS(2481), + [sym_test_operator] = ACTIONS(2399), }, [588] = { - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_PLUS_EQ] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(1005), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_EQ] = ACTIONS(1005), - [sym_test_operator] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_EQ_TILDE] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_AMP_AMP] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_SEMI_SEMI] = ACTIONS(1005), - [anon_sym_DASH_EQ] = ACTIONS(1005), + [anon_sym_AMP_GT_GT] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(969), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(969), + [sym_ansii_c_string] = ACTIONS(969), + [sym__concat] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(969), + [sym_number] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(969), + [sym_variable_name] = ACTIONS(969), + [sym_file_descriptor] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_AMP_GT] = ACTIONS(967), + [sym__special_character] = ACTIONS(969), + [anon_sym_GT_AMP] = ACTIONS(969), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(969), + [sym_raw_string] = ACTIONS(969), }, [589] = { - [sym_command_substitution] = STATE(560), - [sym_unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(614), - [sym_string] = STATE(560), - [aux_sym__literal_repeat1] = STATE(562), - [sym_process_substitution] = STATE(560), - [sym_parenthesized_expression] = STATE(614), - [sym_simple_expansion] = STATE(560), - [sym_string_expansion] = STATE(560), - [sym__expression] = STATE(614), - [sym_binary_expression] = STATE(614), - [sym_concatenation] = STATE(614), - [sym_expansion] = STATE(560), - [anon_sym_LPAREN] = ACTIONS(2288), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(617), - [sym_test_operator] = ACTIONS(2292), - [anon_sym_BQUOTE] = ACTIONS(2294), - [anon_sym_GT_LPAREN] = ACTIONS(2296), - [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym_word] = ACTIONS(609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2302), - [anon_sym_LT_LPAREN] = ACTIONS(2296), - [sym_ansii_c_string] = ACTIONS(2290), - [sym__special_character] = ACTIONS(2304), - [sym_regex] = ACTIONS(2387), + [anon_sym_AMP_GT_GT] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(973), + [sym_ansii_c_string] = ACTIONS(973), + [sym__concat] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(973), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(973), + [sym_number] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), + [sym_variable_name] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(973), + [anon_sym_GT_AMP] = ACTIONS(973), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_raw_string] = ACTIONS(973), }, [590] = { - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [aux_sym__simple_variable_name_token1] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(977), + [sym_ansii_c_string] = ACTIONS(977), + [sym__concat] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(977), + [sym_number] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(977), + [sym_variable_name] = ACTIONS(977), + [sym_file_descriptor] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_AMP_GT] = ACTIONS(975), + [sym__special_character] = ACTIONS(977), + [anon_sym_GT_AMP] = ACTIONS(977), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(977), + [sym_raw_string] = ACTIONS(977), }, [591] = { - [aux_sym_concatenation_repeat1] = STATE(644), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [sym__concat] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [ts_builtin_sym_end] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [aux_sym__simple_variable_name_token1] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [sym_ansii_c_string] = ACTIONS(981), + [sym__concat] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(981), + [sym_number] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [sym_variable_name] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_raw_string] = ACTIONS(981), }, [592] = { - [aux_sym__literal_repeat1] = STATE(647), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_GT_LPAREN] = ACTIONS(1039), - [sym_number] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [sym_word] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_LT_AMP] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1039), - [sym__special_character] = ACTIONS(381), - [anon_sym_LT_LT_DASH] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1039), - [sym_raw_string] = ACTIONS(1039), - [sym_variable_name] = ACTIONS(1043), - [sym_file_descriptor] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [anon_sym_LT_LT_LT] = ACTIONS(1039), - [anon_sym_GT_AMP] = ACTIONS(1039), - [ts_builtin_sym_end] = ACTIONS(1043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), - [aux_sym__simple_variable_name_token1] = ACTIONS(1039), - [anon_sym_LT_LPAREN] = ACTIONS(1039), - [sym_ansii_c_string] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), + [sym_expansion] = STATE(591), + [sym_string] = STATE(591), + [sym_command_substitution] = STATE(591), + [sym_process_substitution] = STATE(591), + [sym_simple_expansion] = STATE(591), + [sym_arithmetic_expansion] = STATE(591), + [sym_string_expansion] = STATE(591), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_number] = ACTIONS(2483), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(123), + [sym_word] = ACTIONS(2483), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [sym_ansii_c_string] = ACTIONS(2485), + [sym__special_character] = ACTIONS(2485), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(131), + [sym_raw_string] = ACTIONS(2485), + [anon_sym_DOLLAR] = ACTIONS(2487), }, [593] = { - [aux_sym_concatenation_repeat1] = STATE(1074), - [anon_sym_PIPE_AMP] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_PIPE_PIPE] = ACTIONS(1059), - [sym__concat] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym_file_descriptor] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_LT_LT_LT] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [anon_sym_AMP_AMP] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1059), + [aux_sym_concatenation_repeat1] = STATE(593), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [sym_ansii_c_string] = ACTIONS(981), + [sym__concat] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(981), + [sym_number] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [sym_variable_name] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_raw_string] = ACTIONS(981), }, [594] = { - [aux_sym__literal_repeat1] = STATE(1109), - [anon_sym_PIPE_AMP] = ACTIONS(1063), - [anon_sym_AMP_GT_GT] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_LT_AMP] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1063), - [sym__special_character] = ACTIONS(2141), - [anon_sym_LT_LT_DASH] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [sym_file_descriptor] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_AMP_GT] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_GT_AMP] = ACTIONS(1063), - [anon_sym_esac] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_SEMI_SEMI] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1034), + [sym_ansii_c_string] = ACTIONS(1034), + [sym__concat] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1034), + [anon_sym_GT_GT] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1034), + [sym_number] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), + [sym_variable_name] = ACTIONS(1034), + [sym_file_descriptor] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1034), + [anon_sym_AMP_GT] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_GT_AMP] = ACTIONS(1034), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1034), + [sym_raw_string] = ACTIONS(1034), }, [595] = { - [anon_sym_PIPE_AMP] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_PIPE_PIPE] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym_file_descriptor] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_LT_LT_LT] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [anon_sym_esac] = ACTIONS(1059), - [anon_sym_AMP_AMP] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1088), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1088), + [sym_ansii_c_string] = ACTIONS(1088), + [sym__concat] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1088), + [sym_number] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1088), + [sym_variable_name] = ACTIONS(1088), + [sym_file_descriptor] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1088), + [sym_raw_string] = ACTIONS(1088), }, [596] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1067), - [anon_sym_GT_LPAREN] = ACTIONS(1067), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [sym__concat] = ACTIONS(1067), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [sym__special_character] = ACTIONS(1067), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1067), - [sym_variable_name] = ACTIONS(1067), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1067), - [anon_sym_GT_AMP] = ACTIONS(1067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), - [anon_sym_LT_LPAREN] = ACTIONS(1067), - [sym_ansii_c_string] = ACTIONS(1067), + [aux_sym_concatenation_repeat1] = STATE(647), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [sym__concat] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(1120), + [aux_sym__simple_variable_name_token1] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [sym_file_descriptor] = ACTIONS(1124), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [597] = { - [anon_sym_AMP_GT_GT] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [sym__concat] = ACTIONS(878), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(878), - [sym_variable_name] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_GT_AMP] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [aux_sym__simple_variable_name_token1] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [sym_file_descriptor] = ACTIONS(1124), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [598] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(1126), + [aux_sym__literal_repeat1] = STATE(658), [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [sym_ansii_c_string] = ACTIONS(1126), [anon_sym_PIPE_PIPE] = ACTIONS(1126), [anon_sym_PIPE] = ACTIONS(1126), - [sym_word] = ACTIONS(331), + [aux_sym__simple_variable_name_token1] = ACTIONS(1126), [anon_sym_LT] = ACTIONS(1126), [anon_sym_LT_AMP] = ACTIONS(1126), [anon_sym_GT_GT] = ACTIONS(1126), - [sym__special_character] = ACTIONS(331), + [anon_sym_DOLLAR] = ACTIONS(1126), [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_number] = ACTIONS(1126), [anon_sym_LF] = ACTIONS(1128), [anon_sym_SEMI] = ACTIONS(1126), - [sym_variable_name] = ACTIONS(333), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), + [sym_variable_name] = ACTIONS(1128), [sym_file_descriptor] = ACTIONS(1128), + [sym_word] = ACTIONS(1126), [anon_sym_GT] = ACTIONS(1126), [anon_sym_AMP_GT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(331), + [sym__special_character] = ACTIONS(401), [anon_sym_LT_LT_LT] = ACTIONS(1126), [anon_sym_GT_AMP] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_raw_string] = ACTIONS(1126), [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), [anon_sym_SEMI_SEMI] = ACTIONS(1126), [anon_sym_PIPE_AMP] = ACTIONS(1126), }, [599] = { - [anon_sym_AMP] = ACTIONS(2389), + [aux_sym_concatenation_repeat1] = STATE(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [sym__concat] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_LT_AMP] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1146), + [anon_sym_LT_LT_DASH] = ACTIONS(1146), + [anon_sym_LF] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_RPAREN] = ACTIONS(1146), + [sym_file_descriptor] = ACTIONS(1144), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_AMP_GT] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_GT_AMP] = ACTIONS(1146), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_SEMI_SEMI] = ACTIONS(2133), - [anon_sym_esac] = ACTIONS(2133), + [anon_sym_BQUOTE] = ACTIONS(1146), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), + [anon_sym_PIPE_AMP] = ACTIONS(1146), }, [600] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1156), - [sym_file_descriptor] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_BQUOTE] = ACTIONS(1156), - [anon_sym_AMP_GT] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_GT_AMP] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_LT_AMP] = ACTIONS(1156), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_AMP_AMP] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(2270), + [anon_sym_AMP_GT_GT] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_LT_AMP] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1146), + [anon_sym_LT_LT_DASH] = ACTIONS(1146), + [anon_sym_LF] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_RPAREN] = ACTIONS(1146), + [sym_file_descriptor] = ACTIONS(1144), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_AMP_GT] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_GT_AMP] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1146), + [anon_sym_esac] = ACTIONS(1146), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), + [anon_sym_PIPE_AMP] = ACTIONS(1146), }, [601] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1156), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(2270), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(2270), + [aux_sym__literal_repeat1] = STATE(1127), + [anon_sym_AMP_GT_GT] = ACTIONS(1150), + [anon_sym_LT_LT] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_LT_AMP] = ACTIONS(1150), + [anon_sym_GT_GT] = ACTIONS(1150), + [anon_sym_LT_LT_DASH] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1150), + [sym_file_descriptor] = ACTIONS(1148), + [anon_sym_GT] = ACTIONS(1150), + [anon_sym_AMP_GT] = ACTIONS(1150), + [sym__special_character] = ACTIONS(2232), + [anon_sym_LT_LT_LT] = ACTIONS(1150), + [anon_sym_GT_AMP] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1150), + [anon_sym_esac] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), }, [602] = { - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(1146), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [anon_sym_AMP_GT_GT] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(973), + [sym_ansii_c_string] = ACTIONS(973), + [sym__concat] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(973), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(973), + [sym_number] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), + [sym_variable_name] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(973), + [anon_sym_GT_AMP] = ACTIONS(973), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_raw_string] = ACTIONS(973), }, [603] = { - [sym_heredoc_body] = STATE(1475), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(1146), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_LT_AMP] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(1190), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(1192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(1190), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(1192), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_AMP_GT] = ACTIONS(1190), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(1190), + [anon_sym_GT_AMP] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1190), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_SEMI_SEMI] = ACTIONS(1190), + [anon_sym_PIPE_AMP] = ACTIONS(1190), }, [604] = { - [sym_command_substitution] = STATE(425), - [aux_sym__literal_repeat1] = STATE(426), - [sym_string] = STATE(425), - [sym_process_substitution] = STATE(425), - [sym_simple_expansion] = STATE(425), - [sym_string_expansion] = STATE(425), - [aux_sym_command_repeat2] = STATE(473), - [sym_concatenation] = STATE(473), - [sym_expansion] = STATE(425), - [anon_sym_PIPE_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_GT_LPAREN] = ACTIONS(2016), - [sym_number] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_AMP] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(2022), - [sym__special_character] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(2018), - [sym_file_descriptor] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_GT_AMP] = ACTIONS(1188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [sym_ansii_c_string] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(2492), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_SEMI_SEMI] = ACTIONS(2224), + [anon_sym_esac] = ACTIONS(2224), }, [605] = { - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_number] = ACTIONS(1192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [sym_word] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [sym__special_character] = ACTIONS(1192), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [sym_file_descriptor] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_esac] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [sym_ansii_c_string] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_SEMI_SEMI] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_LT_LT_DASH] = ACTIONS(1220), + [anon_sym_AMP_GT_GT] = ACTIONS(1220), + [anon_sym_LF] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_LT_LT] = ACTIONS(1220), + [sym_file_descriptor] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1220), + [anon_sym_AMP_GT] = ACTIONS(1220), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_GT_AMP] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1220), + [anon_sym_LT_AMP] = ACTIONS(1220), + [anon_sym_GT_GT] = ACTIONS(1220), + [anon_sym_BQUOTE] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(2363), }, [606] = { - [aux_sym_concatenation_repeat1] = STATE(1202), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), - [sym_number] = ACTIONS(1192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [sym__concat] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(1192), - [sym_word] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1192), - [sym__special_character] = ACTIONS(1192), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(1220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(1220), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(1222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(1220), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_GT_AMP] = ACTIONS(343), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [sym_file_descriptor] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1192), - [anon_sym_esac] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [sym_ansii_c_string] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_SEMI_SEMI] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(2363), }, [607] = { - [aux_sym__literal_repeat1] = STATE(1237), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_AMP_GT_GT] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_BQUOTE] = ACTIONS(1196), - [anon_sym_GT_LPAREN] = ACTIONS(1196), - [sym_number] = ACTIONS(1196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), - [anon_sym_PIPE_PIPE] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [sym_word] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_LT_AMP] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_EQ_TILDE] = ACTIONS(1196), - [sym__special_character] = ACTIONS(2250), - [anon_sym_LT_LT_DASH] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1196), - [sym_raw_string] = ACTIONS(1196), - [sym_file_descriptor] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_AMP_GT] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [anon_sym_LT_LT_LT] = ACTIONS(1196), - [anon_sym_GT_AMP] = ACTIONS(1196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), - [anon_sym_esac] = ACTIONS(1196), - [anon_sym_LT_LPAREN] = ACTIONS(1196), - [sym_ansii_c_string] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1196), - [anon_sym_SEMI_SEMI] = ACTIONS(1196), - [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [608] = { - [sym_command_substitution] = STATE(574), - [aux_sym__literal_repeat1] = STATE(575), - [sym_string] = STATE(574), - [sym_process_substitution] = STATE(574), - [sym_simple_expansion] = STATE(574), - [sym_string_expansion] = STATE(574), - [aux_sym_command_repeat2] = STATE(608), - [sym_concatenation] = STATE(608), - [sym_expansion] = STATE(574), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2399), - [sym_number] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2405), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [sym_word] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(2408), - [sym__special_character] = ACTIONS(2411), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(2402), - [sym_file_descriptor] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(2408), - [anon_sym_DQUOTE] = ACTIONS(2414), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2417), - [anon_sym_esac] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(2399), - [sym_ansii_c_string] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_SEMI_SEMI] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1192), + [sym_heredoc_body] = STATE(1532), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), }, [609] = { - [sym_string] = STATE(558), - [anon_sym__] = ACTIONS(2420), - [anon_sym_AMP_GT_GT] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_0] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2420), - [sym_word] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2424), - [sym_raw_string] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2422), - [sym_variable_name] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2420), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1231), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_GT_AMP] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [aux_sym__simple_variable_name_token1] = ACTIONS(2420), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(2420), + [sym_expansion] = STATE(427), + [sym_string_expansion] = STATE(427), + [sym_concatenation] = STATE(477), + [sym_string] = STATE(427), + [aux_sym__literal_repeat1] = STATE(430), + [sym_command_substitution] = STATE(427), + [sym_process_substitution] = STATE(427), + [sym_simple_expansion] = STATE(427), + [sym_arithmetic_expansion] = STATE(427), + [aux_sym_command_repeat2] = STATE(477), + [anon_sym_AMP_GT_GT] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(2103), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_LT_AMP] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_LT_LT_DASH] = ACTIONS(1252), + [anon_sym_GT_LPAREN] = ACTIONS(2103), + [sym_number] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), + [sym_file_descriptor] = ACTIONS(1254), + [sym_word] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(2107), + [sym__special_character] = ACTIONS(103), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_GT_AMP] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1252), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1252), }, [610] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1237), - [anon_sym_GT_LPAREN] = ACTIONS(1237), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [sym__concat] = ACTIONS(1237), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), - [sym__special_character] = ACTIONS(1237), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1237), - [sym_variable_name] = ACTIONS(1237), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1237), - [anon_sym_GT_AMP] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [anon_sym_LT_LPAREN] = ACTIONS(1237), - [sym_ansii_c_string] = ACTIONS(1237), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LPAREN] = ACTIONS(1256), + [sym_ansii_c_string] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), + [anon_sym_GT_LPAREN] = ACTIONS(1256), + [sym_number] = ACTIONS(1256), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1258), + [sym_word] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [sym__special_character] = ACTIONS(1256), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [anon_sym_esac] = ACTIONS(1256), + [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_raw_string] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI_SEMI] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), }, [611] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1296), - [sym_variable_name] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), + [aux_sym_concatenation_repeat1] = STATE(1254), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), + [anon_sym_LT_LPAREN] = ACTIONS(1256), + [sym_ansii_c_string] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [sym__concat] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), + [anon_sym_GT_LPAREN] = ACTIONS(1256), + [sym_number] = ACTIONS(1256), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1258), + [sym_word] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [sym__special_character] = ACTIONS(1256), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [anon_sym_esac] = ACTIONS(1256), + [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_raw_string] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI_SEMI] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), }, [612] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1306), - [anon_sym_GT_LPAREN] = ACTIONS(1306), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), - [sym__concat] = ACTIONS(1306), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1306), - [sym__special_character] = ACTIONS(1306), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1306), - [sym_variable_name] = ACTIONS(1306), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1306), - [anon_sym_GT_AMP] = ACTIONS(1306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1306), - [anon_sym_LT_LPAREN] = ACTIONS(1306), - [sym_ansii_c_string] = ACTIONS(1306), + [aux_sym__literal_repeat1] = STATE(1259), + [anon_sym_AMP_GT_GT] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), + [anon_sym_LT_LT] = ACTIONS(1260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1260), + [anon_sym_LT_LPAREN] = ACTIONS(1260), + [sym_ansii_c_string] = ACTIONS(1260), + [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_LT_AMP] = ACTIONS(1260), + [anon_sym_GT_GT] = ACTIONS(1260), + [anon_sym_EQ_TILDE] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_LT_LT_DASH] = ACTIONS(1260), + [anon_sym_GT_LPAREN] = ACTIONS(1260), + [sym_number] = ACTIONS(1260), + [anon_sym_LF] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), + [sym_file_descriptor] = ACTIONS(1262), + [sym_word] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1260), + [anon_sym_AMP_GT] = ACTIONS(1260), + [anon_sym_EQ_EQ] = ACTIONS(1260), + [sym__special_character] = ACTIONS(2369), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_GT_AMP] = ACTIONS(1260), + [anon_sym_esac] = ACTIONS(1260), + [anon_sym_BQUOTE] = ACTIONS(1260), + [sym_raw_string] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_SEMI_SEMI] = ACTIONS(1260), + [anon_sym_PIPE_AMP] = ACTIONS(1260), }, [613] = { - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_PLUS_EQ] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1358), - [sym_test_operator] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_SEMI_SEMI] = ACTIONS(1358), - [anon_sym_DASH_EQ] = ACTIONS(1358), + [sym_expansion] = STATE(577), + [sym_string_expansion] = STATE(577), + [sym_concatenation] = STATE(613), + [sym_string] = STATE(577), + [aux_sym__literal_repeat1] = STATE(580), + [sym_command_substitution] = STATE(577), + [sym_process_substitution] = STATE(577), + [sym_simple_expansion] = STATE(577), + [sym_arithmetic_expansion] = STATE(577), + [aux_sym_command_repeat2] = STATE(613), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2499), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2502), + [anon_sym_LT_LPAREN] = ACTIONS(2505), + [sym_ansii_c_string] = ACTIONS(2508), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2514), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), + [anon_sym_GT_LPAREN] = ACTIONS(2505), + [sym_number] = ACTIONS(2508), + [anon_sym_LF] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2517), + [sym_file_descriptor] = ACTIONS(1258), + [sym_word] = ACTIONS(2508), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(2511), + [sym__special_character] = ACTIONS(2520), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [anon_sym_esac] = ACTIONS(1256), + [anon_sym_BQUOTE] = ACTIONS(2523), + [sym_raw_string] = ACTIONS(2508), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_SEMI_SEMI] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), }, [614] = { - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [sym_test_operator] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_SEMI_SEMI] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), + [anon_sym_AMP_GT_GT] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1298), + [sym_ansii_c_string] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1298), + [anon_sym_GT_GT] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1298), + [sym_number] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), + [sym_variable_name] = ACTIONS(1298), + [sym_file_descriptor] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1298), + [anon_sym_AMP_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1298), + [anon_sym_GT_AMP] = ACTIONS(1298), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1298), + [sym_raw_string] = ACTIONS(1298), }, [615] = { - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [sym_test_operator] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_SEMI_SEMI] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_PLUS_EQ] = ACTIONS(1302), + [sym_test_operator] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_LF] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1302), + [anon_sym_EQ_TILDE] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_SEMI_SEMI] = ACTIONS(1302), + [anon_sym_DASH_EQ] = ACTIONS(1302), }, [616] = { - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_AMP_GT_GT] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_GT_LPAREN] = ACTIONS(1370), - [sym_number] = ACTIONS(1370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [sym_word] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_LT_AMP] = ACTIONS(1370), - [anon_sym_GT_GT] = ACTIONS(1370), - [sym__special_character] = ACTIONS(1370), - [anon_sym_LT_LT_DASH] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [sym_raw_string] = ACTIONS(1370), - [sym_variable_name] = ACTIONS(1372), - [sym_file_descriptor] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_AMP_GT] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_LT_LT_LT] = ACTIONS(1370), - [anon_sym_GT_AMP] = ACTIONS(1370), - [ts_builtin_sym_end] = ACTIONS(1372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), - [aux_sym__simple_variable_name_token1] = ACTIONS(1370), - [anon_sym_LT_LPAREN] = ACTIONS(1370), - [sym_ansii_c_string] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_SEMI_SEMI] = ACTIONS(1370), - [anon_sym_PIPE_AMP] = ACTIONS(1370), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1306), + [sym_test_operator] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1306), + [anon_sym_EQ_TILDE] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_SEMI_SEMI] = ACTIONS(1306), + [anon_sym_DASH_EQ] = ACTIONS(1306), }, [617] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1402), - [anon_sym_GT_LPAREN] = ACTIONS(1402), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1402), - [sym__concat] = ACTIONS(1402), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1402), - [anon_sym_GT_GT] = ACTIONS(1402), - [sym__special_character] = ACTIONS(1402), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1402), - [sym_variable_name] = ACTIONS(1402), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1402), - [anon_sym_GT_AMP] = ACTIONS(1402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1402), - [anon_sym_LT_LPAREN] = ACTIONS(1402), - [sym_ansii_c_string] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1306), + [sym_test_operator] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1306), + [anon_sym_EQ_TILDE] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_SEMI_SEMI] = ACTIONS(1306), + [anon_sym_DASH_EQ] = ACTIONS(1306), }, [618] = { - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_local] = ACTIONS(1448), - [anon_sym_typeset] = ACTIONS(1448), - [anon_sym_unsetenv] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1452), - [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_number] = ACTIONS(1448), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1448), - [sym_word] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_declare] = ACTIONS(1448), - [sym_variable_name] = ACTIONS(1450), - [sym_file_descriptor] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_AMP_GT] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_GT_AMP] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_LT_LPAREN] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [sym_ansii_c_string] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [sym_string] = STATE(567), + [anon_sym_0] = ACTIONS(2526), + [anon_sym_AMP_GT_GT] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1312), + [sym_ansii_c_string] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(2530), + [anon_sym_QMARK] = ACTIONS(2526), + [aux_sym__simple_variable_name_token1] = ACTIONS(2526), + [anon_sym__] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_GT_LPAREN] = ACTIONS(1312), + [sym_number] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(2528), + [sym_variable_name] = ACTIONS(1312), + [sym_file_descriptor] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_GT_AMP] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1312), + [sym_raw_string] = ACTIONS(2532), + [anon_sym_AT] = ACTIONS(2526), }, [619] = { - [anon_sym_AMP] = ACTIONS(2428), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_SEMI_SEMI] = ACTIONS(2200), - [anon_sym_esac] = ACTIONS(2200), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [sym__concat] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [sym_number] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [sym_variable_name] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), }, [620] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1460), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1460), - [anon_sym_GT_LPAREN] = ACTIONS(1460), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1460), - [sym__concat] = ACTIONS(1460), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [sym__special_character] = ACTIONS(1460), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1460), - [sym_variable_name] = ACTIONS(1460), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1460), - [anon_sym_GT_AMP] = ACTIONS(1460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), - [anon_sym_LT_LPAREN] = ACTIONS(1460), - [sym_ansii_c_string] = ACTIONS(1460), + [anon_sym_AMP_GT_GT] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1412), + [sym_ansii_c_string] = ACTIONS(1412), + [sym__concat] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1412), + [anon_sym_GT_GT] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1412), + [sym_number] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), + [sym_variable_name] = ACTIONS(1412), + [sym_file_descriptor] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_AMP_GT] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1412), + [anon_sym_GT_AMP] = ACTIONS(1412), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1412), + [sym_raw_string] = ACTIONS(1412), }, [621] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1472), - [anon_sym_GT_LPAREN] = ACTIONS(1472), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1472), - [sym__concat] = ACTIONS(1472), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1472), - [anon_sym_GT_GT] = ACTIONS(1472), - [sym__special_character] = ACTIONS(1472), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1472), - [sym_variable_name] = ACTIONS(1472), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1472), - [anon_sym_GT_AMP] = ACTIONS(1472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1472), - [anon_sym_LT_LPAREN] = ACTIONS(1472), - [sym_ansii_c_string] = ACTIONS(1472), + [anon_sym_AMP_GT_GT] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1430), + [sym_ansii_c_string] = ACTIONS(1430), + [sym__concat] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1430), + [anon_sym_GT_GT] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1430), + [sym_number] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1430), + [sym_variable_name] = ACTIONS(1430), + [sym_file_descriptor] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1430), + [anon_sym_AMP_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1430), + [anon_sym_GT_AMP] = ACTIONS(1430), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_raw_string] = ACTIONS(1430), }, [622] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1482), - [anon_sym_GT_LPAREN] = ACTIONS(1482), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1482), - [sym__concat] = ACTIONS(1482), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1482), - [anon_sym_GT_GT] = ACTIONS(1482), - [sym__special_character] = ACTIONS(1482), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1482), - [sym_variable_name] = ACTIONS(1482), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1482), - [anon_sym_GT_AMP] = ACTIONS(1482), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), - [anon_sym_LT_LPAREN] = ACTIONS(1482), - [sym_ansii_c_string] = ACTIONS(1482), + [anon_sym_AMP_GT_GT] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LPAREN] = ACTIONS(1438), + [sym_ansii_c_string] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [aux_sym__simple_variable_name_token1] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_LT_AMP] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_LT_LT_DASH] = ACTIONS(1438), + [anon_sym_GT_LPAREN] = ACTIONS(1438), + [sym_number] = ACTIONS(1438), + [anon_sym_LF] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), + [sym_variable_name] = ACTIONS(1440), + [sym_file_descriptor] = ACTIONS(1440), + [sym_word] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_AMP_GT] = ACTIONS(1438), + [sym__special_character] = ACTIONS(1438), + [anon_sym_LT_LT_LT] = ACTIONS(1438), + [anon_sym_GT_AMP] = ACTIONS(1438), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1438), + [sym_raw_string] = ACTIONS(1438), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI_SEMI] = ACTIONS(1438), + [anon_sym_PIPE_AMP] = ACTIONS(1438), }, [623] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1486), - [anon_sym_GT_LPAREN] = ACTIONS(1486), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), - [sym__concat] = ACTIONS(1486), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1486), - [anon_sym_GT_GT] = ACTIONS(1486), - [sym__special_character] = ACTIONS(1486), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1486), - [sym_variable_name] = ACTIONS(1486), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1486), - [anon_sym_GT_AMP] = ACTIONS(1486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), - [anon_sym_LT_LPAREN] = ACTIONS(1486), - [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_typeset] = ACTIONS(1520), + [anon_sym_unsetenv] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [anon_sym_LT_LPAREN] = ACTIONS(1522), + [sym_ansii_c_string] = ACTIONS(1522), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), + [sym_number] = ACTIONS(1520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_declare] = ACTIONS(1520), + [anon_sym_GT_LPAREN] = ACTIONS(1522), + [sym_file_descriptor] = ACTIONS(1522), + [sym_word] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [sym_variable_name] = ACTIONS(1522), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_readonly] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [sym__special_character] = ACTIONS(1520), + [anon_sym_GT_AMP] = ACTIONS(1522), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), }, [624] = { - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_AMP_GT_GT] = ACTIONS(1618), - [anon_sym_DOLLAR] = ACTIONS(1618), - [anon_sym_LT_LT] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [anon_sym_GT_LPAREN] = ACTIONS(1618), - [sym_number] = ACTIONS(1618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), - [anon_sym_PIPE_PIPE] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [sym_word] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_LT_AMP] = ACTIONS(1618), - [anon_sym_GT_GT] = ACTIONS(1618), - [sym__special_character] = ACTIONS(1618), - [anon_sym_LT_LT_DASH] = ACTIONS(1618), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [sym_raw_string] = ACTIONS(1618), - [sym_variable_name] = ACTIONS(1620), - [sym_file_descriptor] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_AMP_GT] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_LT_LT_LT] = ACTIONS(1618), - [anon_sym_GT_AMP] = ACTIONS(1618), - [ts_builtin_sym_end] = ACTIONS(1620), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), - [aux_sym__simple_variable_name_token1] = ACTIONS(1618), - [anon_sym_LT_LPAREN] = ACTIONS(1618), - [sym_ansii_c_string] = ACTIONS(1618), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_SEMI_SEMI] = ACTIONS(1618), - [anon_sym_PIPE_AMP] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(2534), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2536), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_SEMI_SEMI] = ACTIONS(2294), + [anon_sym_esac] = ACTIONS(2294), }, [625] = { - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_local] = ACTIONS(1448), - [anon_sym_typeset] = ACTIONS(1448), - [anon_sym_unsetenv] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1690), - [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_number] = ACTIONS(1448), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1448), - [sym_word] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_declare] = ACTIONS(1448), - [sym_variable_name] = ACTIONS(1450), - [sym_file_descriptor] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_AMP_GT] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_GT_AMP] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_LT_LPAREN] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [sym_ansii_c_string] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym_AMP_GT_GT] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1661), + [sym_ansii_c_string] = ACTIONS(1661), + [sym__concat] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1661), + [anon_sym_GT_GT] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1661), + [sym_number] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1661), + [sym_variable_name] = ACTIONS(1661), + [sym_file_descriptor] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_AMP_GT] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1661), + [anon_sym_GT_AMP] = ACTIONS(1661), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1661), + [sym_raw_string] = ACTIONS(1661), }, [626] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1694), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1694), - [sym_variable_name] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_GT_AMP] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), + [anon_sym_AMP_GT_GT] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1673), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1673), + [sym_ansii_c_string] = ACTIONS(1673), + [sym__concat] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1673), + [anon_sym_GT_GT] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1673), + [sym_number] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1673), + [sym_variable_name] = ACTIONS(1673), + [sym_file_descriptor] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_AMP_GT] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1673), + [anon_sym_GT_AMP] = ACTIONS(1673), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1673), }, [627] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1700), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1700), - [anon_sym_GT_LPAREN] = ACTIONS(1700), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1700), - [sym__concat] = ACTIONS(1700), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1700), - [anon_sym_GT_GT] = ACTIONS(1700), - [sym__special_character] = ACTIONS(1700), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1700), - [sym_variable_name] = ACTIONS(1700), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_RPAREN] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_GT_AMP] = ACTIONS(1700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), - [anon_sym_LT_LPAREN] = ACTIONS(1700), - [sym_ansii_c_string] = ACTIONS(1700), + [anon_sym_AMP_GT_GT] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [sym_ansii_c_string] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1683), + [anon_sym_GT_GT] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_number] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [sym_variable_name] = ACTIONS(1683), + [sym_file_descriptor] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_AMP_GT] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1683), + [anon_sym_GT_AMP] = ACTIONS(1683), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1683), + [sym_raw_string] = ACTIONS(1683), }, [628] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1704), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1704), - [anon_sym_GT_GT] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1704), - [sym_variable_name] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_RPAREN] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_GT_AMP] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1687), + [sym_ansii_c_string] = ACTIONS(1687), + [sym__concat] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1687), + [anon_sym_GT_GT] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1687), + [sym_number] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), + [sym_variable_name] = ACTIONS(1687), + [sym_file_descriptor] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_AMP_GT] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1687), + [anon_sym_GT_AMP] = ACTIONS(1687), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_raw_string] = ACTIONS(1687), }, [629] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1710), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_GT_LPAREN] = ACTIONS(1710), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1710), - [sym__concat] = ACTIONS(1710), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1710), - [anon_sym_GT_GT] = ACTIONS(1710), - [sym__special_character] = ACTIONS(1710), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1710), - [sym_variable_name] = ACTIONS(1710), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1710), - [anon_sym_GT_AMP] = ACTIONS(1710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1710), - [anon_sym_LT_LPAREN] = ACTIONS(1710), - [sym_ansii_c_string] = ACTIONS(1710), + [anon_sym_AMP_GT_GT] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LT] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [sym_ansii_c_string] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [aux_sym__simple_variable_name_token1] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_LT_AMP] = ACTIONS(1691), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_LT_LT_DASH] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), + [sym_number] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1693), + [sym_file_descriptor] = ACTIONS(1693), + [sym_word] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_AMP_GT] = ACTIONS(1691), + [sym__special_character] = ACTIONS(1691), + [anon_sym_LT_LT_LT] = ACTIONS(1691), + [anon_sym_GT_AMP] = ACTIONS(1691), + [ts_builtin_sym_end] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_raw_string] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_SEMI_SEMI] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), }, [630] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1825), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1825), - [anon_sym_GT_LPAREN] = ACTIONS(1825), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1825), - [sym__concat] = ACTIONS(1825), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1825), - [anon_sym_GT_GT] = ACTIONS(1825), - [sym__special_character] = ACTIONS(1825), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1825), - [sym_variable_name] = ACTIONS(1825), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_RPAREN] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_GT_AMP] = ACTIONS(1825), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1825), - [anon_sym_LT_LPAREN] = ACTIONS(1825), - [sym_ansii_c_string] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_typeset] = ACTIONS(1520), + [anon_sym_unsetenv] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [anon_sym_LT_LPAREN] = ACTIONS(1522), + [sym_ansii_c_string] = ACTIONS(1522), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), + [sym_number] = ACTIONS(1520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_declare] = ACTIONS(1520), + [anon_sym_GT_LPAREN] = ACTIONS(1522), + [sym_file_descriptor] = ACTIONS(1522), + [sym_word] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [sym_variable_name] = ACTIONS(1522), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_readonly] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [sym__special_character] = ACTIONS(1520), + [anon_sym_GT_AMP] = ACTIONS(1522), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), }, [631] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1829), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1829), - [anon_sym_GT_LPAREN] = ACTIONS(1829), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1829), - [sym__concat] = ACTIONS(1829), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1829), - [anon_sym_GT_GT] = ACTIONS(1829), - [sym__special_character] = ACTIONS(1829), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1829), - [sym_variable_name] = ACTIONS(1829), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1829), - [anon_sym_GT_AMP] = ACTIONS(1829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1829), - [anon_sym_LT_LPAREN] = ACTIONS(1829), - [sym_ansii_c_string] = ACTIONS(1829), + [anon_sym_AMP_GT_GT] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1870), + [sym_ansii_c_string] = ACTIONS(1870), + [sym__concat] = ACTIONS(1870), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1870), + [anon_sym_GT_GT] = ACTIONS(1870), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1870), + [sym_number] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1870), + [sym_variable_name] = ACTIONS(1870), + [sym_file_descriptor] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_RPAREN] = ACTIONS(1870), + [anon_sym_AMP_GT] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1870), + [anon_sym_GT_AMP] = ACTIONS(1870), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1870), + [sym_raw_string] = ACTIONS(1870), }, [632] = { - [sym_command_substitution] = STATE(550), - [aux_sym__literal_repeat1] = STATE(551), - [sym_string] = STATE(550), - [aux_sym_declaration_command_repeat1] = STATE(639), - [sym_process_substitution] = STATE(550), - [sym_simple_expansion] = STATE(550), - [sym_subscript] = STATE(2503), - [sym_string_expansion] = STATE(550), - [sym_variable_assignment] = STATE(639), - [sym_concatenation] = STATE(639), - [sym_expansion] = STATE(550), - [anon_sym_PIPE_AMP] = ACTIONS(129), - [anon_sym_AMP_GT_GT] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(129), - [anon_sym_BQUOTE] = ACTIONS(2434), - [anon_sym_GT_LPAREN] = ACTIONS(2436), - [sym_number] = ACTIONS(2438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(129), - [sym_word] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_LT_AMP] = ACTIONS(129), - [anon_sym_GT_GT] = ACTIONS(129), - [sym__special_character] = ACTIONS(2442), - [anon_sym_LT_LT_DASH] = ACTIONS(129), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(129), - [sym_raw_string] = ACTIONS(2438), - [sym_variable_name] = ACTIONS(2444), - [sym_file_descriptor] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(129), - [anon_sym_AMP_GT] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(2446), - [anon_sym_LT_LT_LT] = ACTIONS(129), - [anon_sym_GT_AMP] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2448), - [anon_sym_esac] = ACTIONS(129), - [aux_sym__simple_variable_name_token1] = ACTIONS(2450), - [sym_ansii_c_string] = ACTIONS(2438), - [anon_sym_LT_LPAREN] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_SEMI_SEMI] = ACTIONS(129), - [anon_sym_AMP] = ACTIONS(129), + [anon_sym_AMP_GT_GT] = ACTIONS(1876), + [anon_sym_DQUOTE] = ACTIONS(1876), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1876), + [sym_ansii_c_string] = ACTIONS(1876), + [sym__concat] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1876), + [anon_sym_GT_GT] = ACTIONS(1876), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1876), + [sym_number] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), + [sym_variable_name] = ACTIONS(1876), + [sym_file_descriptor] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1876), + [anon_sym_AMP_GT] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1876), + [anon_sym_GT_AMP] = ACTIONS(1876), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1876), + [sym_raw_string] = ACTIONS(1876), }, [633] = { - [sym_command_substitution] = STATE(553), - [aux_sym__literal_repeat1] = STATE(554), - [sym_string] = STATE(553), - [aux_sym_unset_command_repeat1] = STATE(640), - [sym_process_substitution] = STATE(553), - [sym_simple_expansion] = STATE(553), - [sym_string_expansion] = STATE(553), - [sym_concatenation] = STATE(640), - [sym_expansion] = STATE(553), - [anon_sym_PIPE_AMP] = ACTIONS(153), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_DOLLAR] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(153), - [anon_sym_BQUOTE] = ACTIONS(2454), - [anon_sym_GT_LPAREN] = ACTIONS(2456), - [sym_number] = ACTIONS(2458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_PIPE] = ACTIONS(153), - [sym_word] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(153), - [anon_sym_GT_GT] = ACTIONS(153), - [sym__special_character] = ACTIONS(2462), - [anon_sym_LT_LT_DASH] = ACTIONS(153), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(167), - [anon_sym_SEMI] = ACTIONS(153), - [sym_raw_string] = ACTIONS(2458), - [sym_file_descriptor] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(153), - [anon_sym_AMP_GT] = ACTIONS(153), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_LT_LT_LT] = ACTIONS(153), - [anon_sym_GT_AMP] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), - [anon_sym_esac] = ACTIONS(153), - [aux_sym__simple_variable_name_token1] = ACTIONS(2468), - [sym_ansii_c_string] = ACTIONS(2458), - [anon_sym_LT_LPAREN] = ACTIONS(2456), - [anon_sym_AMP_AMP] = ACTIONS(153), - [anon_sym_SEMI_SEMI] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(153), + [anon_sym_AMP_GT_GT] = ACTIONS(1880), + [anon_sym_DQUOTE] = ACTIONS(1880), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1880), + [sym_ansii_c_string] = ACTIONS(1880), + [sym__concat] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1880), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1880), + [sym_number] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1880), + [sym_variable_name] = ACTIONS(1880), + [sym_file_descriptor] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_AMP_GT] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1880), + [anon_sym_GT_AMP] = ACTIONS(1880), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1880), }, [634] = { - [aux_sym_concatenation_repeat1] = STATE(644), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [ts_builtin_sym_end] = ACTIONS(213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [sym_ansii_c_string] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1886), + [sym_number] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [sym_variable_name] = ACTIONS(1886), + [sym_file_descriptor] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1886), + [sym_raw_string] = ACTIONS(1886), }, [635] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2006), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2010), - [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [sym_ansii_c_string] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_number] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [sym_variable_name] = ACTIONS(1959), + [sym_file_descriptor] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1959), + [anon_sym_GT_AMP] = ACTIONS(1959), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1959), + [sym_raw_string] = ACTIONS(1959), }, [636] = { - [sym_heredoc_redirect] = STATE(2636), - [aux_sym_redirected_statement_repeat1] = STATE(2636), - [sym_herestring_redirect] = STATE(2636), - [sym_file_redirect] = STATE(2636), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2252), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2258), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(2264), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_esac] = ACTIONS(2010), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_SEMI_SEMI] = ACTIONS(2010), - [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_GT_GT] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1963), + [sym_ansii_c_string] = ACTIONS(1963), + [sym__concat] = ACTIONS(1963), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1963), + [anon_sym_GT_GT] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1963), + [sym_number] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1963), + [sym_variable_name] = ACTIONS(1963), + [sym_file_descriptor] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_AMP_GT] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1963), + [anon_sym_GT_AMP] = ACTIONS(1963), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1963), + [sym_raw_string] = ACTIONS(1963), }, [637] = { - [aux_sym__literal_repeat1] = STATE(540), - [sym_if_statement] = STATE(652), - [sym_function_definition] = STATE(652), - [sym_negated_command] = STATE(652), - [sym_test_command] = STATE(652), - [sym_variable_assignment] = STATE(653), - [sym_subscript] = STATE(2494), - [sym_concatenation] = STATE(543), - [sym_expansion] = STATE(536), - [sym_command_substitution] = STATE(536), + [sym_expansion] = STATE(554), + [sym_concatenation] = STATE(644), + [aux_sym_declaration_command_repeat1] = STATE(644), + [sym_string] = STATE(554), + [sym_command_substitution] = STATE(554), + [sym_process_substitution] = STATE(554), + [aux_sym__literal_repeat1] = STATE(555), + [sym_variable_assignment] = STATE(644), + [sym_subscript] = STATE(2625), + [sym_simple_expansion] = STATE(554), + [sym_arithmetic_expansion] = STATE(554), + [sym_string_expansion] = STATE(554), + [anon_sym_AMP_GT_GT] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2540), + [anon_sym_LT_LT] = ACTIONS(135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2542), + [anon_sym_LT_LPAREN] = ACTIONS(2544), + [sym_ansii_c_string] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(135), + [aux_sym__simple_variable_name_token1] = ACTIONS(2548), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_LT_AMP] = ACTIONS(135), + [anon_sym_GT_GT] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(2550), + [anon_sym_LT_LT_DASH] = ACTIONS(135), + [anon_sym_GT_LPAREN] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [anon_sym_LF] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2552), + [sym_variable_name] = ACTIONS(2554), + [sym_file_descriptor] = ACTIONS(151), + [sym_word] = ACTIONS(2546), + [anon_sym_GT] = ACTIONS(135), + [anon_sym_AMP_GT] = ACTIONS(135), + [sym__special_character] = ACTIONS(2556), + [anon_sym_LT_LT_LT] = ACTIONS(135), + [anon_sym_GT_AMP] = ACTIONS(135), + [anon_sym_esac] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(2558), + [sym_raw_string] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(135), + [anon_sym_SEMI_SEMI] = ACTIONS(135), + [anon_sym_PIPE_AMP] = ACTIONS(135), + }, + [638] = { + [sym_expansion] = STATE(557), + [sym_concatenation] = STATE(645), + [sym_string] = STATE(557), + [sym_command_substitution] = STATE(557), + [sym_process_substitution] = STATE(557), + [aux_sym__literal_repeat1] = STATE(558), + [aux_sym_unset_command_repeat1] = STATE(645), + [sym_simple_expansion] = STATE(557), + [sym_arithmetic_expansion] = STATE(557), + [sym_string_expansion] = STATE(557), + [anon_sym_AMP_GT_GT] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(2560), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2562), + [anon_sym_LT_LT] = ACTIONS(161), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2566), + [sym_ansii_c_string] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(161), + [anon_sym_PIPE] = ACTIONS(161), + [aux_sym__simple_variable_name_token1] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_LT_AMP] = ACTIONS(161), + [anon_sym_GT_GT] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(2572), + [anon_sym_LT_LT_DASH] = ACTIONS(161), + [anon_sym_GT_LPAREN] = ACTIONS(2566), + [sym_number] = ACTIONS(2568), + [anon_sym_LF] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2574), + [sym_file_descriptor] = ACTIONS(177), + [sym_word] = ACTIONS(2568), + [anon_sym_GT] = ACTIONS(161), + [anon_sym_AMP_GT] = ACTIONS(161), + [sym__special_character] = ACTIONS(2576), + [anon_sym_LT_LT_LT] = ACTIONS(161), + [anon_sym_GT_AMP] = ACTIONS(161), + [anon_sym_esac] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(2578), + [sym_raw_string] = ACTIONS(2568), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(161), + [anon_sym_SEMI_SEMI] = ACTIONS(161), + [anon_sym_PIPE_AMP] = ACTIONS(161), + }, + [639] = { + [aux_sym_concatenation_repeat1] = STATE(647), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + }, + [640] = { + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LF] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2089), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(2093), + [anon_sym_PIPE_AMP] = ACTIONS(487), + }, + [641] = { + [sym_heredoc_redirect] = STATE(2796), + [sym_file_redirect] = STATE(2796), + [sym_herestring_redirect] = STATE(2796), + [aux_sym_redirected_statement_repeat1] = STATE(2796), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(2349), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(2351), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(2357), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_esac] = ACTIONS(2093), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_SEMI_SEMI] = ACTIONS(2093), + [anon_sym_PIPE_AMP] = ACTIONS(2359), + }, + [642] = { + [sym_if_statement] = STATE(655), + [sym_function_definition] = STATE(655), + [sym_negated_command] = STATE(655), + [sym_test_command] = STATE(655), + [sym_variable_assignment] = STATE(656), + [sym_subscript] = STATE(2615), + [sym_arithmetic_expansion] = STATE(540), + [sym_string_expansion] = STATE(540), + [sym_expansion] = STATE(540), [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_compound_statement] = STATE(652), - [sym_subshell] = STATE(652), - [sym_declaration_command] = STATE(652), - [sym_unset_command] = STATE(652), - [sym_file_redirect] = STATE(545), - [sym_string] = STATE(536), - [sym_process_substitution] = STATE(536), - [aux_sym_command_repeat1] = STATE(545), - [sym_c_style_for_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_pipeline] = STATE(652), - [sym_list] = STATE(652), - [sym_command] = STATE(652), - [sym_command_name] = STATE(638), - [sym_simple_expansion] = STATE(536), - [sym_string_expansion] = STATE(536), - [anon_sym_LPAREN] = ACTIONS(63), + [aux_sym__literal_repeat1] = STATE(547), + [sym_redirected_statement] = STATE(655), + [sym_for_statement] = STATE(655), + [sym_compound_statement] = STATE(655), + [sym_subshell] = STATE(655), + [sym_declaration_command] = STATE(655), + [sym_unset_command] = STATE(655), + [sym_file_redirect] = STATE(549), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(540), + [sym_command_substitution] = STATE(540), + [sym_process_substitution] = STATE(540), + [aux_sym_command_repeat1] = STATE(549), + [sym_c_style_for_statement] = STATE(655), + [sym_while_statement] = STATE(655), + [sym_case_statement] = STATE(655), + [sym_pipeline] = STATE(655), + [sym_list] = STATE(655), + [sym_command] = STATE(655), + [sym_command_name] = STATE(643), + [sym_simple_expansion] = STATE(540), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1734), - [anon_sym_typeset] = ACTIONS(1734), - [anon_sym_unsetenv] = ACTIONS(1736), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_number] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1748), + [anon_sym_local] = ACTIONS(1790), + [anon_sym_typeset] = ACTIONS(1790), + [anon_sym_unsetenv] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [sym_ansii_c_string] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1804), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1752), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_declare] = ACTIONS(1734), - [sym_variable_name] = ACTIONS(1756), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1734), - [anon_sym_unset] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_declare] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1812), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(1790), + [anon_sym_unset] = ACTIONS(1792), + [sym__special_character] = ACTIONS(1816), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [638] = { - [sym_command_substitution] = STATE(574), - [aux_sym__literal_repeat1] = STATE(575), - [sym_string] = STATE(574), - [sym_process_substitution] = STATE(574), - [sym_simple_expansion] = STATE(574), - [sym_string_expansion] = STATE(574), - [aux_sym_command_repeat2] = STATE(655), - [sym_concatenation] = STATE(655), - [sym_expansion] = STATE(574), - [anon_sym_PIPE_AMP] = ACTIONS(341), - [anon_sym_AMP_GT_GT] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_LT_LT] = ACTIONS(341), - [anon_sym_BQUOTE] = ACTIONS(2472), - [anon_sym_GT_LPAREN] = ACTIONS(2474), - [sym_number] = ACTIONS(2476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2478), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(341), - [sym_word] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_LT_AMP] = ACTIONS(341), - [anon_sym_GT_GT] = ACTIONS(341), - [anon_sym_EQ_TILDE] = ACTIONS(2480), - [sym__special_character] = ACTIONS(1750), - [anon_sym_LT_LT_DASH] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(353), - [anon_sym_SEMI] = ACTIONS(341), - [sym_raw_string] = ACTIONS(2476), - [sym_file_descriptor] = ACTIONS(353), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_AMP_GT] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [anon_sym_GT_AMP] = ACTIONS(341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), - [anon_sym_esac] = ACTIONS(341), - [anon_sym_LT_LPAREN] = ACTIONS(2474), - [sym_ansii_c_string] = ACTIONS(2476), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_SEMI_SEMI] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(341), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(1802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [639] = { - [sym_command_substitution] = STATE(550), - [aux_sym__literal_repeat1] = STATE(551), - [sym_string] = STATE(550), - [aux_sym_declaration_command_repeat1] = STATE(577), - [sym_process_substitution] = STATE(550), - [sym_simple_expansion] = STATE(550), - [sym_subscript] = STATE(2503), - [sym_string_expansion] = STATE(550), - [sym_variable_assignment] = STATE(577), - [sym_concatenation] = STATE(577), - [sym_expansion] = STATE(550), - [anon_sym_PIPE_AMP] = ACTIONS(385), - [anon_sym_AMP_GT_GT] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(2434), - [anon_sym_GT_LPAREN] = ACTIONS(2436), - [sym_number] = ACTIONS(2438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2440), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [sym_word] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_LT_AMP] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [sym__special_character] = ACTIONS(2442), - [anon_sym_LT_LT_DASH] = ACTIONS(385), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(387), - [anon_sym_SEMI] = ACTIONS(385), - [sym_raw_string] = ACTIONS(2438), - [sym_variable_name] = ACTIONS(2444), - [sym_file_descriptor] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_AMP_GT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(2446), - [anon_sym_LT_LT_LT] = ACTIONS(385), - [anon_sym_GT_AMP] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2448), - [anon_sym_esac] = ACTIONS(385), - [aux_sym__simple_variable_name_token1] = ACTIONS(2486), - [sym_ansii_c_string] = ACTIONS(2438), - [anon_sym_LT_LPAREN] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_SEMI_SEMI] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), + [643] = { + [sym_expansion] = STATE(577), + [sym_string_expansion] = STATE(577), + [sym_concatenation] = STATE(660), + [sym_string] = STATE(577), + [aux_sym__literal_repeat1] = STATE(580), + [sym_command_substitution] = STATE(577), + [sym_process_substitution] = STATE(577), + [sym_simple_expansion] = STATE(577), + [sym_arithmetic_expansion] = STATE(577), + [aux_sym_command_repeat2] = STATE(660), + [anon_sym_AMP_GT_GT] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(2582), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2584), + [anon_sym_LT_LT] = ACTIONS(359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(2586), + [sym_ansii_c_string] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(359), + [anon_sym_LT_AMP] = ACTIONS(359), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_EQ_TILDE] = ACTIONS(2590), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_LT_LT_DASH] = ACTIONS(359), + [anon_sym_GT_LPAREN] = ACTIONS(2586), + [sym_number] = ACTIONS(2588), + [anon_sym_LF] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), + [sym_file_descriptor] = ACTIONS(371), + [sym_word] = ACTIONS(2588), + [anon_sym_GT] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(2590), + [sym__special_character] = ACTIONS(1816), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [anon_sym_GT_AMP] = ACTIONS(359), + [anon_sym_esac] = ACTIONS(359), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_raw_string] = ACTIONS(2588), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_SEMI_SEMI] = ACTIONS(359), + [anon_sym_PIPE_AMP] = ACTIONS(359), }, - [640] = { - [sym_command_substitution] = STATE(553), - [aux_sym__literal_repeat1] = STATE(554), - [sym_string] = STATE(553), - [aux_sym_unset_command_repeat1] = STATE(578), - [sym_process_substitution] = STATE(553), - [sym_simple_expansion] = STATE(553), - [sym_string_expansion] = STATE(553), - [sym_concatenation] = STATE(578), - [sym_expansion] = STATE(553), - [anon_sym_PIPE_AMP] = ACTIONS(403), + [644] = { + [sym_expansion] = STATE(554), + [sym_concatenation] = STATE(581), + [aux_sym_declaration_command_repeat1] = STATE(581), + [sym_string] = STATE(554), + [sym_command_substitution] = STATE(554), + [sym_process_substitution] = STATE(554), + [aux_sym__literal_repeat1] = STATE(555), + [sym_variable_assignment] = STATE(581), + [sym_subscript] = STATE(2625), + [sym_simple_expansion] = STATE(554), + [sym_arithmetic_expansion] = STATE(554), + [sym_string_expansion] = STATE(554), [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(2452), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2540), [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(2454), - [anon_sym_GT_LPAREN] = ACTIONS(2456), - [sym_number] = ACTIONS(2458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2542), + [anon_sym_LT_LPAREN] = ACTIONS(2544), + [sym_ansii_c_string] = ACTIONS(2546), [anon_sym_PIPE_PIPE] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), - [sym_word] = ACTIONS(2458), + [aux_sym__simple_variable_name_token1] = ACTIONS(2596), [anon_sym_LT] = ACTIONS(403), [anon_sym_LT_AMP] = ACTIONS(403), [anon_sym_GT_GT] = ACTIONS(403), - [sym__special_character] = ACTIONS(2462), + [anon_sym_DOLLAR] = ACTIONS(2550), [anon_sym_LT_LT_DASH] = ACTIONS(403), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(405), + [anon_sym_GT_LPAREN] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [anon_sym_LF] = ACTIONS(407), [anon_sym_SEMI] = ACTIONS(403), - [sym_raw_string] = ACTIONS(2458), - [sym_file_descriptor] = ACTIONS(405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2552), + [sym_variable_name] = ACTIONS(2554), + [sym_file_descriptor] = ACTIONS(407), + [sym_word] = ACTIONS(2546), [anon_sym_GT] = ACTIONS(403), [anon_sym_AMP_GT] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(2464), + [sym__special_character] = ACTIONS(2556), [anon_sym_LT_LT_LT] = ACTIONS(403), [anon_sym_GT_AMP] = ACTIONS(403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), [anon_sym_esac] = ACTIONS(403), - [aux_sym__simple_variable_name_token1] = ACTIONS(2488), - [sym_ansii_c_string] = ACTIONS(2458), - [anon_sym_LT_LPAREN] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2558), + [sym_raw_string] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_SEMI_SEMI] = ACTIONS(403), [anon_sym_AMP] = ACTIONS(403), - }, - [641] = { - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_variable_name] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [ts_builtin_sym_end] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [aux_sym__simple_variable_name_token1] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), - }, - [642] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_variable_name] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [ts_builtin_sym_end] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [aux_sym__simple_variable_name_token1] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), - }, - [643] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_variable_name] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [ts_builtin_sym_end] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [aux_sym__simple_variable_name_token1] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - }, - [644] = { - [aux_sym_concatenation_repeat1] = STATE(660), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2490), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [sym_variable_name] = ACTIONS(433), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [ts_builtin_sym_end] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [aux_sym__simple_variable_name_token1] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_PIPE_AMP] = ACTIONS(403), }, [645] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [sym_variable_name] = ACTIONS(597), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [ts_builtin_sym_end] = ACTIONS(597), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [aux_sym__simple_variable_name_token1] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [sym_expansion] = STATE(557), + [sym_concatenation] = STATE(582), + [sym_string] = STATE(557), + [sym_command_substitution] = STATE(557), + [sym_process_substitution] = STATE(557), + [aux_sym__literal_repeat1] = STATE(558), + [aux_sym_unset_command_repeat1] = STATE(582), + [sym_simple_expansion] = STATE(557), + [sym_arithmetic_expansion] = STATE(557), + [sym_string_expansion] = STATE(557), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(2560), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2562), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [anon_sym_LT_LPAREN] = ACTIONS(2566), + [sym_ansii_c_string] = ACTIONS(2568), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [aux_sym__simple_variable_name_token1] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_DOLLAR] = ACTIONS(2572), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [anon_sym_GT_LPAREN] = ACTIONS(2566), + [sym_number] = ACTIONS(2568), + [anon_sym_LF] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2574), + [sym_file_descriptor] = ACTIONS(425), + [sym_word] = ACTIONS(2568), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [sym__special_character] = ACTIONS(2576), + [anon_sym_LT_LT_LT] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [anon_sym_esac] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(2578), + [sym_raw_string] = ACTIONS(2568), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), }, [646] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [ts_builtin_sym_end] = ACTIONS(213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [aux_sym__simple_variable_name_token1] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_variable_name] = ACTIONS(441), + [sym_file_descriptor] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [ts_builtin_sym_end] = ACTIONS(441), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [647] = { - [aux_sym__literal_repeat1] = STATE(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [sym__special_character] = ACTIONS(2492), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [sym_variable_name] = ACTIONS(652), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [ts_builtin_sym_end] = ACTIONS(652), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [aux_sym__simple_variable_name_token1] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [aux_sym_concatenation_repeat1] = STATE(667), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(2600), + [anon_sym_PIPE] = ACTIONS(475), + [aux_sym__simple_variable_name_token1] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [sym_variable_name] = ACTIONS(479), + [sym_file_descriptor] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [ts_builtin_sym_end] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [648] = { - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_esac] = ACTIONS(2053), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), - [anon_sym_SEMI_SEMI] = ACTIONS(658), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [aux_sym__simple_variable_name_token1] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [sym_variable_name] = ACTIONS(507), + [sym_file_descriptor] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_AMP_GT] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [ts_builtin_sym_end] = ACTIONS(507), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [649] = { - [aux_sym__literal_repeat1] = STATE(540), - [sym_if_statement] = STATE(2637), - [sym_function_definition] = STATE(2637), - [sym_negated_command] = STATE(2637), - [sym_test_command] = STATE(2637), - [sym_variable_assignment] = STATE(668), - [sym_subscript] = STATE(2494), - [sym_concatenation] = STATE(543), - [sym_expansion] = STATE(536), - [sym_command_substitution] = STATE(536), - [sym_redirected_statement] = STATE(2637), - [sym_for_statement] = STATE(2637), - [sym_compound_statement] = STATE(2637), - [sym_subshell] = STATE(2637), - [sym_declaration_command] = STATE(2637), - [sym_unset_command] = STATE(2637), - [sym_file_redirect] = STATE(545), - [sym_string] = STATE(536), - [sym_process_substitution] = STATE(536), - [aux_sym_command_repeat1] = STATE(545), - [sym_c_style_for_statement] = STATE(2637), - [sym_while_statement] = STATE(2637), - [sym_case_statement] = STATE(2637), - [sym_pipeline] = STATE(2637), - [sym_list] = STATE(2637), - [sym_command] = STATE(2637), - [sym_command_name] = STATE(638), - [sym_simple_expansion] = STATE(536), - [sym_string_expansion] = STATE(536), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1734), - [anon_sym_typeset] = ACTIONS(1734), - [anon_sym_unsetenv] = ACTIONS(1736), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_number] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1734), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1752), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_declare] = ACTIONS(1734), - [sym_variable_name] = ACTIONS(1756), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1734), - [anon_sym_unset] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [aux_sym__simple_variable_name_token1] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [sym_variable_name] = ACTIONS(511), + [sym_file_descriptor] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [ts_builtin_sym_end] = ACTIONS(511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [650] = { - [sym_heredoc_body] = STATE(599), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_esac] = ACTIONS(2053), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), - [anon_sym_SEMI_SEMI] = ACTIONS(658), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [aux_sym__simple_variable_name_token1] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_file_descriptor] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_AMP_GT] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [ts_builtin_sym_end] = ACTIONS(515), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [651] = { - [aux_sym__literal_repeat1] = STATE(540), - [sym_if_statement] = STATE(670), - [sym_function_definition] = STATE(670), - [sym_negated_command] = STATE(670), - [sym_test_command] = STATE(670), - [sym_variable_assignment] = STATE(671), - [sym_subscript] = STATE(2494), - [sym_concatenation] = STATE(543), - [sym_expansion] = STATE(536), - [sym_command_substitution] = STATE(536), - [sym_redirected_statement] = STATE(670), - [sym_for_statement] = STATE(670), - [sym_compound_statement] = STATE(670), - [sym_subshell] = STATE(670), - [sym_declaration_command] = STATE(670), - [sym_unset_command] = STATE(670), - [sym_file_redirect] = STATE(545), - [sym_string] = STATE(536), - [sym_process_substitution] = STATE(536), - [aux_sym_command_repeat1] = STATE(545), - [sym_c_style_for_statement] = STATE(670), - [sym_while_statement] = STATE(670), - [sym_case_statement] = STATE(670), - [sym_pipeline] = STATE(670), - [sym_list] = STATE(670), - [sym_command] = STATE(670), - [sym_command_name] = STATE(638), - [sym_simple_expansion] = STATE(536), - [sym_string_expansion] = STATE(536), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_if_statement] = STATE(2797), + [sym_function_definition] = STATE(2797), + [sym_negated_command] = STATE(2797), + [sym_test_command] = STATE(2797), + [sym_variable_assignment] = STATE(674), + [sym_subscript] = STATE(2615), + [sym_arithmetic_expansion] = STATE(540), + [sym_string_expansion] = STATE(540), + [sym_expansion] = STATE(540), + [aux_sym__literal_repeat1] = STATE(547), + [sym_redirected_statement] = STATE(2797), + [sym_for_statement] = STATE(2797), + [sym_compound_statement] = STATE(2797), + [sym_subshell] = STATE(2797), + [sym_declaration_command] = STATE(2797), + [sym_unset_command] = STATE(2797), + [sym_file_redirect] = STATE(549), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(540), + [sym_command_substitution] = STATE(540), + [sym_process_substitution] = STATE(540), + [aux_sym_command_repeat1] = STATE(549), + [sym_c_style_for_statement] = STATE(2797), + [sym_while_statement] = STATE(2797), + [sym_case_statement] = STATE(2797), + [sym_pipeline] = STATE(2797), + [sym_list] = STATE(2797), + [sym_command] = STATE(2797), + [sym_command_name] = STATE(643), + [sym_simple_expansion] = STATE(540), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1734), - [anon_sym_typeset] = ACTIONS(1734), - [anon_sym_unsetenv] = ACTIONS(1736), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym_number] = ACTIONS(1744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(1748), + [anon_sym_local] = ACTIONS(1790), + [anon_sym_typeset] = ACTIONS(1790), + [anon_sym_unsetenv] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [sym_ansii_c_string] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1804), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(1752), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_declare] = ACTIONS(1734), - [sym_variable_name] = ACTIONS(1756), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(1734), - [anon_sym_unset] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_declare] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1812), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(1790), + [anon_sym_unset] = ACTIONS(1792), + [sym__special_character] = ACTIONS(1816), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(1752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(1802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [652] = { - [sym_heredoc_redirect] = STATE(2636), - [aux_sym_redirected_statement_repeat1] = STATE(2636), - [sym_herestring_redirect] = STATE(2636), - [sym_file_redirect] = STATE(2636), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_PIPE_AMP] = ACTIONS(2252), - [anon_sym_AMP_GT_GT] = ACTIONS(2254), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2497), - [sym_file_descriptor] = ACTIONS(2260), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(2254), - [anon_sym_AMP_GT] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2262), - [anon_sym_LT_LT_LT] = ACTIONS(2264), - [anon_sym_GT_AMP] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_esac] = ACTIONS(2053), - [anon_sym_LT_AMP] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_SEMI_SEMI] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2497), + [sym_heredoc_body] = STATE(604), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_esac] = ACTIONS(2135), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [sym_comment] = ACTIONS(53), }, [653] = { - [sym_heredoc_redirect] = STATE(2636), - [aux_sym_redirected_statement_repeat1] = STATE(2636), - [sym_herestring_redirect] = STATE(2636), - [sym_file_redirect] = STATE(2636), - [anon_sym_PIPE_AMP] = ACTIONS(2252), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2252), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2497), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(2264), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_esac] = ACTIONS(2053), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_SEMI_SEMI] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_esac] = ACTIONS(2135), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [sym_comment] = ACTIONS(53), }, [654] = { - [sym_command_substitution] = STATE(574), - [aux_sym__literal_repeat1] = STATE(575), - [sym_string] = STATE(574), - [sym_process_substitution] = STATE(574), - [sym_simple_expansion] = STATE(574), - [sym_string_expansion] = STATE(574), - [aux_sym_command_repeat2] = STATE(674), - [sym_concatenation] = STATE(674), - [sym_expansion] = STATE(574), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(2472), - [anon_sym_GT_LPAREN] = ACTIONS(2474), - [sym_number] = ACTIONS(2476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2478), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [sym_word] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(2480), - [sym__special_character] = ACTIONS(1750), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(773), - [sym_raw_string] = ACTIONS(2476), - [sym_file_descriptor] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_LT_LPAREN] = ACTIONS(2474), - [sym_ansii_c_string] = ACTIONS(2476), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), + [sym_if_statement] = STATE(676), + [sym_function_definition] = STATE(676), + [sym_negated_command] = STATE(676), + [sym_test_command] = STATE(676), + [sym_variable_assignment] = STATE(677), + [sym_subscript] = STATE(2615), + [sym_arithmetic_expansion] = STATE(540), + [sym_string_expansion] = STATE(540), + [sym_expansion] = STATE(540), + [aux_sym__literal_repeat1] = STATE(547), + [sym_redirected_statement] = STATE(676), + [sym_for_statement] = STATE(676), + [sym_compound_statement] = STATE(676), + [sym_subshell] = STATE(676), + [sym_declaration_command] = STATE(676), + [sym_unset_command] = STATE(676), + [sym_file_redirect] = STATE(549), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(540), + [sym_command_substitution] = STATE(540), + [sym_process_substitution] = STATE(540), + [aux_sym_command_repeat1] = STATE(549), + [sym_c_style_for_statement] = STATE(676), + [sym_while_statement] = STATE(676), + [sym_case_statement] = STATE(676), + [sym_pipeline] = STATE(676), + [sym_list] = STATE(676), + [sym_command] = STATE(676), + [sym_command_name] = STATE(643), + [sym_simple_expansion] = STATE(540), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1790), + [anon_sym_typeset] = ACTIONS(1790), + [anon_sym_unsetenv] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [sym_ansii_c_string] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(1806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_declare] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1812), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(1790), + [anon_sym_unset] = ACTIONS(1792), + [sym__special_character] = ACTIONS(1816), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(1802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [655] = { - [sym_command_substitution] = STATE(574), - [aux_sym__literal_repeat1] = STATE(575), - [sym_string] = STATE(574), - [sym_process_substitution] = STATE(574), - [sym_simple_expansion] = STATE(574), - [sym_string_expansion] = STATE(574), - [aux_sym_command_repeat2] = STATE(608), - [sym_concatenation] = STATE(608), - [sym_expansion] = STATE(574), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(2472), - [anon_sym_GT_LPAREN] = ACTIONS(2474), - [sym_number] = ACTIONS(2476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2478), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [sym_word] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(2480), - [sym__special_character] = ACTIONS(1750), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(773), - [sym_raw_string] = ACTIONS(2476), - [sym_file_descriptor] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_LT_LPAREN] = ACTIONS(2474), - [sym_ansii_c_string] = ACTIONS(2476), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), + [sym_heredoc_redirect] = STATE(2796), + [sym_file_redirect] = STATE(2796), + [sym_herestring_redirect] = STATE(2796), + [aux_sym_redirected_statement_repeat1] = STATE(2796), + [anon_sym_PIPE_AMP] = ACTIONS(2359), + [anon_sym_AMP_GT_GT] = ACTIONS(2347), + [anon_sym_LF] = ACTIONS(2602), + [anon_sym_SEMI] = ACTIONS(2604), + [sym_file_descriptor] = ACTIONS(2353), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(2347), + [anon_sym_AMP_GT] = ACTIONS(2347), + [anon_sym_PIPE_PIPE] = ACTIONS(2355), + [anon_sym_LT_LT_LT] = ACTIONS(2357), + [anon_sym_GT_AMP] = ACTIONS(2347), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_LT] = ACTIONS(2347), + [anon_sym_esac] = ACTIONS(2135), + [anon_sym_LT_AMP] = ACTIONS(2347), + [anon_sym_GT_GT] = ACTIONS(2347), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_SEMI_SEMI] = ACTIONS(2135), + [anon_sym_LT_LT_DASH] = ACTIONS(497), }, [656] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [ts_builtin_sym_end] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [sym_heredoc_redirect] = STATE(2796), + [sym_file_redirect] = STATE(2796), + [sym_herestring_redirect] = STATE(2796), + [aux_sym_redirected_statement_repeat1] = STATE(2796), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(2604), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(2357), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_esac] = ACTIONS(2135), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_SEMI_SEMI] = ACTIONS(2135), + [anon_sym_PIPE_AMP] = ACTIONS(2359), }, [657] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [sym_variable_name] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [ts_builtin_sym_end] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [aux_sym__simple_variable_name_token1] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [658] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [aux_sym__literal_repeat1] = STATE(658), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [aux_sym__simple_variable_name_token1] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [sym_variable_name] = ACTIONS(813), + [sym_file_descriptor] = ACTIONS(813), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(2606), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [ts_builtin_sym_end] = ACTIONS(813), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [659] = { - [sym_command_substitution] = STATE(658), - [sym_simple_expansion] = STATE(658), - [sym_string_expansion] = STATE(658), - [sym_string] = STATE(658), - [sym_process_substitution] = STATE(658), - [sym_expansion] = STATE(658), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2503), - [sym_word] = ACTIONS(2505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2507), - [anon_sym_DOLLAR] = ACTIONS(2509), - [anon_sym_LT_LPAREN] = ACTIONS(2511), - [sym_ansii_c_string] = ACTIONS(2503), - [anon_sym_BQUOTE] = ACTIONS(2513), - [anon_sym_GT_LPAREN] = ACTIONS(2511), - [sym__special_character] = ACTIONS(2503), - [sym_number] = ACTIONS(2505), + [sym_expansion] = STATE(577), + [sym_string_expansion] = STATE(577), + [sym_concatenation] = STATE(680), + [sym_string] = STATE(577), + [aux_sym__literal_repeat1] = STATE(580), + [sym_command_substitution] = STATE(577), + [sym_process_substitution] = STATE(577), + [sym_simple_expansion] = STATE(577), + [sym_arithmetic_expansion] = STATE(577), + [aux_sym_command_repeat2] = STATE(680), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(2582), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2584), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(2586), + [sym_ansii_c_string] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_EQ_TILDE] = ACTIONS(2590), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(2586), + [sym_number] = ACTIONS(2588), + [anon_sym_LF] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), + [sym_file_descriptor] = ACTIONS(820), + [sym_word] = ACTIONS(2588), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(2590), + [sym__special_character] = ACTIONS(1816), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [anon_sym_esac] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_raw_string] = ACTIONS(2588), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), }, [660] = { - [aux_sym_concatenation_repeat1] = STATE(660), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [sym_expansion] = STATE(577), + [sym_string_expansion] = STATE(577), + [sym_concatenation] = STATE(613), + [sym_string] = STATE(577), + [aux_sym__literal_repeat1] = STATE(580), + [sym_command_substitution] = STATE(577), + [sym_process_substitution] = STATE(577), + [sym_simple_expansion] = STATE(577), + [sym_arithmetic_expansion] = STATE(577), + [aux_sym_command_repeat2] = STATE(613), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(2582), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2584), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(2586), + [sym_ansii_c_string] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_EQ_TILDE] = ACTIONS(2590), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(2586), + [sym_number] = ACTIONS(2588), + [anon_sym_LF] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), + [sym_file_descriptor] = ACTIONS(820), + [sym_word] = ACTIONS(2588), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(2590), + [sym__special_character] = ACTIONS(1816), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [anon_sym_esac] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_raw_string] = ACTIONS(2588), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), }, [661] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [sym_variable_name] = ACTIONS(909), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [ts_builtin_sym_end] = ACTIONS(909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [aux_sym__simple_variable_name_token1] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [aux_sym__simple_variable_name_token1] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [sym_variable_name] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [ts_builtin_sym_end] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [662] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [sym_variable_name] = ACTIONS(961), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [aux_sym__simple_variable_name_token1] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [aux_sym__simple_variable_name_token1] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [sym_variable_name] = ACTIONS(969), + [sym_file_descriptor] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [ts_builtin_sym_end] = ACTIONS(969), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [663] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1035), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1035), - [sym_variable_name] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1035), - [anon_sym_AMP_GT] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1035), - [anon_sym_GT_AMP] = ACTIONS(1035), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1035), - [anon_sym_GT_GT] = ACTIONS(1035), - [sym_ansii_c_string] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), - [anon_sym_LT_LPAREN] = ACTIONS(1035), - [sym__special_character] = ACTIONS(1035), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [664] = { - [aux_sym_concatenation_repeat1] = STATE(559), - [anon_sym_AMP_GT_GT] = ACTIONS(1035), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1035), - [sym_variable_name] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1035), - [anon_sym_AMP_GT] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1035), - [sym__concat] = ACTIONS(365), - [anon_sym_GT_AMP] = ACTIONS(1035), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1035), - [anon_sym_GT_GT] = ACTIONS(1035), - [sym_ansii_c_string] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), - [anon_sym_LT_LPAREN] = ACTIONS(1035), - [sym__special_character] = ACTIONS(1035), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [aux_sym__simple_variable_name_token1] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [sym_variable_name] = ACTIONS(977), + [sym_file_descriptor] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [665] = { - [aux_sym__literal_repeat1] = STATE(565), - [anon_sym_AMP_GT_GT] = ACTIONS(1043), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1043), - [anon_sym_DOLLAR] = ACTIONS(1039), - [sym_file_descriptor] = ACTIONS(1043), - [sym_variable_name] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1043), - [anon_sym_AMP_GT] = ACTIONS(1039), - [sym_number] = ACTIONS(1039), - [anon_sym_GT_LPAREN] = ACTIONS(1043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(1043), - [anon_sym_GT_AMP] = ACTIONS(1043), - [sym_word] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_LT_AMP] = ACTIONS(1043), - [anon_sym_GT_GT] = ACTIONS(1043), - [sym_ansii_c_string] = ACTIONS(1043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1043), - [anon_sym_LT_LPAREN] = ACTIONS(1043), - [sym__special_character] = ACTIONS(371), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [666] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(1067), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [aux_sym__simple_variable_name_token1] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [sym_expansion] = STATE(665), + [sym_string_expansion] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_string] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [sym_arithmetic_expansion] = STATE(665), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(2609), + [sym_number] = ACTIONS(2611), + [sym__special_character] = ACTIONS(2613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2619), + [anon_sym_BQUOTE] = ACTIONS(2621), + [sym_raw_string] = ACTIONS(2613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), + [sym_word] = ACTIONS(2611), + [anon_sym_LT_LPAREN] = ACTIONS(2609), + [anon_sym_DOLLAR] = ACTIONS(2623), + [sym_ansii_c_string] = ACTIONS(2613), }, [667] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [ts_builtin_sym_end] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [aux_sym_concatenation_repeat1] = STATE(667), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [668] = { - [sym_heredoc_redirect] = STATE(2636), - [aux_sym_redirected_statement_repeat1] = STATE(2636), - [sym_herestring_redirect] = STATE(2636), - [sym_file_redirect] = STATE(2636), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_esac] = ACTIONS(1126), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [aux_sym__simple_variable_name_token1] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [sym_variable_name] = ACTIONS(1034), + [sym_file_descriptor] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [669] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_SEMI_SEMI] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [aux_sym__simple_variable_name_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [sym_variable_name] = ACTIONS(1088), + [sym_file_descriptor] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_AMP_GT] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [670] = { - [sym_heredoc_redirect] = STATE(2636), - [aux_sym_redirected_statement_repeat1] = STATE(2636), - [sym_herestring_redirect] = STATE(2636), - [sym_file_redirect] = STATE(2636), - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1156), - [sym_file_descriptor] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_AMP_GT] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_GT_AMP] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_esac] = ACTIONS(1156), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_LT_AMP] = ACTIONS(1156), - [anon_sym_AMP_AMP] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(2252), + [aux_sym_concatenation_repeat1] = STATE(564), + [anon_sym_AMP_GT_GT] = ACTIONS(1124), + [sym_number] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1124), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1124), + [sym_file_descriptor] = ACTIONS(1124), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1124), + [sym_variable_name] = ACTIONS(1124), + [sym__special_character] = ACTIONS(1124), + [sym__concat] = ACTIONS(383), + [anon_sym_GT_AMP] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [sym_raw_string] = ACTIONS(1124), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1120), }, [671] = { - [sym_heredoc_redirect] = STATE(2636), - [aux_sym_redirected_statement_repeat1] = STATE(2636), - [sym_herestring_redirect] = STATE(2636), - [sym_file_redirect] = STATE(2636), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(1156), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(2252), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_esac] = ACTIONS(1156), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_GT_GT] = ACTIONS(1124), + [sym_number] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1124), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1124), + [sym_file_descriptor] = ACTIONS(1124), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1124), + [sym_variable_name] = ACTIONS(1124), + [sym__special_character] = ACTIONS(1124), + [anon_sym_GT_AMP] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [sym_raw_string] = ACTIONS(1124), + [anon_sym_BQUOTE] = ACTIONS(1124), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1120), }, [672] = { - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_esac] = ACTIONS(2133), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), - }, - [673] = { - [sym_heredoc_body] = STATE(619), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_esac] = ACTIONS(2133), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), + [aux_sym__literal_repeat1] = STATE(575), + [anon_sym_AMP_GT_GT] = ACTIONS(1128), + [sym_number] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1128), + [sym_file_descriptor] = ACTIONS(1128), + [sym_word] = ACTIONS(1126), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), + [sym_ansii_c_string] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1128), + [sym_variable_name] = ACTIONS(1128), + [sym__special_character] = ACTIONS(389), + [anon_sym_GT_AMP] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1128), + [anon_sym_GT_GT] = ACTIONS(1128), + [sym_raw_string] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1126), + }, + [673] = { + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [674] = { - [sym_command_substitution] = STATE(574), - [aux_sym__literal_repeat1] = STATE(575), - [sym_string] = STATE(574), - [sym_process_substitution] = STATE(574), - [sym_simple_expansion] = STATE(574), - [sym_string_expansion] = STATE(574), - [aux_sym_command_repeat2] = STATE(608), - [sym_concatenation] = STATE(608), - [sym_expansion] = STATE(574), - [anon_sym_PIPE_AMP] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1188), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(2472), - [anon_sym_GT_LPAREN] = ACTIONS(2474), - [sym_number] = ACTIONS(2476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2478), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [sym_word] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_AMP] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(2480), - [sym__special_character] = ACTIONS(1750), - [anon_sym_LT_LT_DASH] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [sym_raw_string] = ACTIONS(2476), - [sym_file_descriptor] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_EQ_EQ] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_GT_AMP] = ACTIONS(1188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2484), - [anon_sym_esac] = ACTIONS(1188), - [anon_sym_LT_LPAREN] = ACTIONS(2474), - [sym_ansii_c_string] = ACTIONS(2476), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_SEMI_SEMI] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), + [sym_heredoc_redirect] = STATE(2796), + [sym_file_redirect] = STATE(2796), + [sym_herestring_redirect] = STATE(2796), + [aux_sym_redirected_statement_repeat1] = STATE(2796), + [anon_sym_AMP_GT_GT] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_LT_AMP] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(1190), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(1192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(1190), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(1192), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_AMP_GT] = ACTIONS(1190), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(1190), + [anon_sym_GT_AMP] = ACTIONS(1190), + [anon_sym_esac] = ACTIONS(1190), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_SEMI_SEMI] = ACTIONS(1190), + [anon_sym_PIPE_AMP] = ACTIONS(1190), }, [675] = { - [sym_string] = STATE(643), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym__] = ACTIONS(2518), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2518), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2518), - [sym__special_character] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2520), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_raw_string] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2520), - [sym_variable_name] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(147), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [ts_builtin_sym_end] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2518), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_SEMI_SEMI] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2228), }, [676] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [sym_variable_name] = ACTIONS(1237), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [ts_builtin_sym_end] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [aux_sym__simple_variable_name_token1] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [sym_heredoc_redirect] = STATE(2796), + [sym_file_redirect] = STATE(2796), + [sym_herestring_redirect] = STATE(2796), + [aux_sym_redirected_statement_repeat1] = STATE(2796), + [anon_sym_LT_LT_DASH] = ACTIONS(1220), + [anon_sym_AMP_GT_GT] = ACTIONS(1220), + [anon_sym_LF] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_LT_LT] = ACTIONS(1220), + [sym_file_descriptor] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1220), + [anon_sym_AMP_GT] = ACTIONS(1220), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_GT_AMP] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1220), + [anon_sym_esac] = ACTIONS(1220), + [anon_sym_GT_GT] = ACTIONS(1220), + [anon_sym_LT_AMP] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(2359), }, [677] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [sym_heredoc_redirect] = STATE(2796), + [sym_file_redirect] = STATE(2796), + [sym_herestring_redirect] = STATE(2796), + [aux_sym_redirected_statement_repeat1] = STATE(2796), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(1220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(1220), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(1222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(1220), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_esac] = ACTIONS(1220), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_variable_name] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [aux_sym__simple_variable_name_token1] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_PIPE_AMP] = ACTIONS(2359), }, [678] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_variable_name] = ACTIONS(1306), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [ts_builtin_sym_end] = ACTIONS(1306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [aux_sym__simple_variable_name_token1] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_esac] = ACTIONS(2224), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(1210), + [sym_comment] = ACTIONS(53), }, [679] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1372), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1370), - [sym_file_descriptor] = ACTIONS(1372), - [sym_variable_name] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1372), - [anon_sym_AMP_GT] = ACTIONS(1370), - [sym_number] = ACTIONS(1370), - [anon_sym_GT_LPAREN] = ACTIONS(1372), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_GT_AMP] = ACTIONS(1372), - [sym_word] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_LT_AMP] = ACTIONS(1372), - [anon_sym_GT_GT] = ACTIONS(1372), - [sym_ansii_c_string] = ACTIONS(1372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), - [anon_sym_LT_LPAREN] = ACTIONS(1372), - [sym__special_character] = ACTIONS(1372), + [sym_heredoc_body] = STATE(624), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_esac] = ACTIONS(2224), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(1210), + [sym_comment] = ACTIONS(53), }, [680] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [sym_variable_name] = ACTIONS(1402), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [ts_builtin_sym_end] = ACTIONS(1402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [aux_sym__simple_variable_name_token1] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [sym_expansion] = STATE(577), + [sym_string_expansion] = STATE(577), + [sym_concatenation] = STATE(613), + [sym_string] = STATE(577), + [aux_sym__literal_repeat1] = STATE(580), + [sym_command_substitution] = STATE(577), + [sym_process_substitution] = STATE(577), + [sym_simple_expansion] = STATE(577), + [sym_arithmetic_expansion] = STATE(577), + [aux_sym_command_repeat2] = STATE(613), + [anon_sym_AMP_GT_GT] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(2582), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2584), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(2586), + [sym_ansii_c_string] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_LT_AMP] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(2590), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_LT_LT_DASH] = ACTIONS(1252), + [anon_sym_GT_LPAREN] = ACTIONS(2586), + [sym_number] = ACTIONS(2588), + [anon_sym_LF] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), + [sym_file_descriptor] = ACTIONS(1254), + [sym_word] = ACTIONS(2588), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(2590), + [sym__special_character] = ACTIONS(1816), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_GT_AMP] = ACTIONS(1252), + [anon_sym_esac] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_raw_string] = ACTIONS(2588), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1252), }, [681] = { - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_local] = ACTIONS(1448), - [anon_sym_typeset] = ACTIONS(1448), - [anon_sym_unsetenv] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_number] = ACTIONS(1448), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1448), - [sym_word] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_declare] = ACTIONS(1448), - [sym_variable_name] = ACTIONS(1450), - [sym_file_descriptor] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_AMP_GT] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_GT_AMP] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_esac] = ACTIONS(2200), - [anon_sym_LT_LPAREN] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [sym_ansii_c_string] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym_SEMI_SEMI] = ACTIONS(1452), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [aux_sym__simple_variable_name_token1] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym_variable_name] = ACTIONS(1298), + [sym_file_descriptor] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [682] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_SEMI_SEMI] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2204), + [sym_string] = STATE(650), + [anon_sym_0] = ACTIONS(2628), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(2630), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2628), + [anon_sym_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym__] = ACTIONS(2628), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2630), + [sym_variable_name] = ACTIONS(1312), + [sym_file_descriptor] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_AMP_GT] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [683] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [sym_variable_name] = ACTIONS(1460), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [aux_sym__simple_variable_name_token1] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [aux_sym__simple_variable_name_token1] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [sym_variable_name] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [684] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [sym_variable_name] = ACTIONS(1472), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [aux_sym__simple_variable_name_token1] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [aux_sym__simple_variable_name_token1] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [sym_variable_name] = ACTIONS(1412), + [sym_file_descriptor] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_AMP_GT] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [685] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [sym_variable_name] = ACTIONS(1482), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [ts_builtin_sym_end] = ACTIONS(1482), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [aux_sym__simple_variable_name_token1] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [aux_sym__simple_variable_name_token1] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_variable_name] = ACTIONS(1430), + [sym_file_descriptor] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [686] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [sym_variable_name] = ACTIONS(1486), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [ts_builtin_sym_end] = ACTIONS(1486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [aux_sym__simple_variable_name_token1] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1440), + [sym_number] = ACTIONS(1438), + [anon_sym_GT_LPAREN] = ACTIONS(1440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1440), + [sym_file_descriptor] = ACTIONS(1440), + [sym_word] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), + [anon_sym_AMP_GT] = ACTIONS(1438), + [sym_ansii_c_string] = ACTIONS(1440), + [anon_sym_LT_LPAREN] = ACTIONS(1440), + [sym_variable_name] = ACTIONS(1440), + [sym__special_character] = ACTIONS(1440), + [anon_sym_GT_AMP] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_LT_AMP] = ACTIONS(1440), + [anon_sym_GT_GT] = ACTIONS(1440), + [sym_raw_string] = ACTIONS(1440), + [anon_sym_BQUOTE] = ACTIONS(1440), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1438), }, [687] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1620), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1618), - [sym_file_descriptor] = ACTIONS(1620), - [sym_variable_name] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1620), - [anon_sym_AMP_GT] = ACTIONS(1618), - [sym_number] = ACTIONS(1618), - [anon_sym_GT_LPAREN] = ACTIONS(1620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1620), - [anon_sym_DQUOTE] = ACTIONS(1620), - [anon_sym_GT_AMP] = ACTIONS(1620), - [sym_word] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_LT_AMP] = ACTIONS(1620), - [anon_sym_GT_GT] = ACTIONS(1620), - [sym_ansii_c_string] = ACTIONS(1620), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1620), - [anon_sym_LT_LPAREN] = ACTIONS(1620), - [sym__special_character] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_typeset] = ACTIONS(1520), + [anon_sym_unsetenv] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [anon_sym_LT_LPAREN] = ACTIONS(1522), + [sym_ansii_c_string] = ACTIONS(1522), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), + [sym_number] = ACTIONS(1520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_declare] = ACTIONS(1520), + [anon_sym_GT_LPAREN] = ACTIONS(1522), + [sym_file_descriptor] = ACTIONS(1522), + [sym_word] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [sym_variable_name] = ACTIONS(1522), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_readonly] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [sym__special_character] = ACTIONS(1520), + [anon_sym_GT_AMP] = ACTIONS(1522), + [anon_sym_esac] = ACTIONS(2294), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym_SEMI_SEMI] = ACTIONS(1524), + [sym_comment] = ACTIONS(53), }, [688] = { - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_local] = ACTIONS(1448), - [anon_sym_typeset] = ACTIONS(1448), - [anon_sym_unsetenv] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_number] = ACTIONS(1448), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1448), - [sym_word] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_declare] = ACTIONS(1448), - [sym_variable_name] = ACTIONS(1450), - [sym_file_descriptor] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_AMP_GT] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_GT_AMP] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_esac] = ACTIONS(2524), - [anon_sym_LT_LPAREN] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [sym_ansii_c_string] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym_SEMI_SEMI] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_SEMI_SEMI] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2298), }, [689] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [sym_variable_name] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [ts_builtin_sym_end] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [aux_sym__simple_variable_name_token1] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [aux_sym__simple_variable_name_token1] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [sym_variable_name] = ACTIONS(1661), + [sym_file_descriptor] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_AMP_GT] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [ts_builtin_sym_end] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [690] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [sym_variable_name] = ACTIONS(1700), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [ts_builtin_sym_end] = ACTIONS(1700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [aux_sym__simple_variable_name_token1] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [aux_sym__simple_variable_name_token1] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1673), + [sym_file_descriptor] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1673), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [691] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [sym_variable_name] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [ts_builtin_sym_end] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [aux_sym__simple_variable_name_token1] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [aux_sym__simple_variable_name_token1] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [sym_variable_name] = ACTIONS(1683), + [sym_file_descriptor] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [692] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [sym_variable_name] = ACTIONS(1710), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [ts_builtin_sym_end] = ACTIONS(1710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [aux_sym__simple_variable_name_token1] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [aux_sym__simple_variable_name_token1] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [sym_variable_name] = ACTIONS(1687), + [sym_file_descriptor] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [693] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [sym_variable_name] = ACTIONS(1825), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [ts_builtin_sym_end] = ACTIONS(1825), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [aux_sym__simple_variable_name_token1] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1693), + [sym_number] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1693), + [sym_file_descriptor] = ACTIONS(1693), + [sym_word] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_AMP_GT] = ACTIONS(1691), + [sym_ansii_c_string] = ACTIONS(1693), + [anon_sym_LT_LPAREN] = ACTIONS(1693), + [sym_variable_name] = ACTIONS(1693), + [sym__special_character] = ACTIONS(1693), + [anon_sym_GT_AMP] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_LT_AMP] = ACTIONS(1693), + [anon_sym_GT_GT] = ACTIONS(1693), + [sym_raw_string] = ACTIONS(1693), + [anon_sym_BQUOTE] = ACTIONS(1693), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1691), }, [694] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [sym_variable_name] = ACTIONS(1829), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [ts_builtin_sym_end] = ACTIONS(1829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [aux_sym__simple_variable_name_token1] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_AMP_GT_GT] = ACTIONS(1522), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_typeset] = ACTIONS(1520), + [anon_sym_unsetenv] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [anon_sym_LT_LPAREN] = ACTIONS(1522), + [sym_ansii_c_string] = ACTIONS(1522), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_AMP] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), + [sym_number] = ACTIONS(1520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_declare] = ACTIONS(1520), + [anon_sym_GT_LPAREN] = ACTIONS(1522), + [sym_file_descriptor] = ACTIONS(1522), + [sym_word] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [sym_variable_name] = ACTIONS(1522), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_readonly] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [sym__special_character] = ACTIONS(1520), + [anon_sym_GT_AMP] = ACTIONS(1522), + [anon_sym_esac] = ACTIONS(2634), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [sym_raw_string] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym_SEMI_SEMI] = ACTIONS(1766), + [sym_comment] = ACTIONS(53), }, [695] = { - [aux_sym_concatenation_repeat1] = STATE(700), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [ts_builtin_sym_end] = ACTIONS(213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [aux_sym__simple_variable_name_token1] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [sym_variable_name] = ACTIONS(1870), + [sym_file_descriptor] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_AMP_GT] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [696] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(491), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2006), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2010), - [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [aux_sym__simple_variable_name_token1] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [sym_variable_name] = ACTIONS(1876), + [sym_file_descriptor] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [697] = { - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [aux_sym__simple_variable_name_token1] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1880), + [sym_file_descriptor] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [ts_builtin_sym_end] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [aux_sym__simple_variable_name_token1] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [698] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [ts_builtin_sym_end] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [aux_sym__simple_variable_name_token1] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [aux_sym__simple_variable_name_token1] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [sym_variable_name] = ACTIONS(1886), + [sym_file_descriptor] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [699] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [ts_builtin_sym_end] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [aux_sym__simple_variable_name_token1] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [aux_sym__simple_variable_name_token1] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [sym_variable_name] = ACTIONS(1959), + [sym_file_descriptor] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_AMP_GT] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [700] = { - [aux_sym_concatenation_repeat1] = STATE(710), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [ts_builtin_sym_end] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [aux_sym__simple_variable_name_token1] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [aux_sym__simple_variable_name_token1] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [sym_variable_name] = ACTIONS(1963), + [sym_file_descriptor] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_AMP_GT] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [701] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [ts_builtin_sym_end] = ACTIONS(597), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [aux_sym__simple_variable_name_token1] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [aux_sym_concatenation_repeat1] = STATE(704), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [702] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [ts_builtin_sym_end] = ACTIONS(213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(2580), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(2089), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(2093), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [703] = { - [aux_sym__literal_repeat1] = STATE(703), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [sym__special_character] = ACTIONS(2528), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [ts_builtin_sym_end] = ACTIONS(652), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [aux_sym__simple_variable_name_token1] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [aux_sym__simple_variable_name_token1] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [ts_builtin_sym_end] = ACTIONS(441), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [704] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2051), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2051), + [aux_sym_concatenation_repeat1] = STATE(718), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(2636), + [anon_sym_PIPE] = ACTIONS(475), + [aux_sym__simple_variable_name_token1] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [ts_builtin_sym_end] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [705] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(491), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2051), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2051), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [aux_sym__simple_variable_name_token1] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [sym_file_descriptor] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_AMP_GT] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [ts_builtin_sym_end] = ACTIONS(507), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [706] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [ts_builtin_sym_end] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [aux_sym__simple_variable_name_token1] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [sym_file_descriptor] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [ts_builtin_sym_end] = ACTIONS(511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [707] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [ts_builtin_sym_end] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [aux_sym__simple_variable_name_token1] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [aux_sym__simple_variable_name_token1] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_AMP_GT] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [ts_builtin_sym_end] = ACTIONS(515), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [708] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_PIPE_AMP] = ACTIONS(487), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LF] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2133), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_SEMI_SEMI] = ACTIONS(2135), + [anon_sym_LT_LT_DASH] = ACTIONS(497), }, [709] = { - [sym_command_substitution] = STATE(708), - [sym_simple_expansion] = STATE(708), - [sym_string_expansion] = STATE(708), - [sym_string] = STATE(708), - [sym_process_substitution] = STATE(708), - [sym_expansion] = STATE(708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2533), - [anon_sym_DQUOTE] = ACTIONS(2535), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2537), - [sym_word] = ACTIONS(2539), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2541), - [anon_sym_DOLLAR] = ACTIONS(2543), - [anon_sym_LT_LPAREN] = ACTIONS(2545), - [sym_ansii_c_string] = ACTIONS(2537), - [anon_sym_BQUOTE] = ACTIONS(2547), - [anon_sym_GT_LPAREN] = ACTIONS(2545), - [sym__special_character] = ACTIONS(2537), - [sym_number] = ACTIONS(2539), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(2638), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(2133), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_SEMI_SEMI] = ACTIONS(2135), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [710] = { - [aux_sym_concatenation_repeat1] = STATE(710), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [711] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [ts_builtin_sym_end] = ACTIONS(909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [aux_sym__simple_variable_name_token1] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [aux_sym__literal_repeat1] = STATE(711), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [aux_sym__simple_variable_name_token1] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(813), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(2640), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [ts_builtin_sym_end] = ACTIONS(813), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [712] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [aux_sym__simple_variable_name_token1] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [aux_sym__simple_variable_name_token1] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [sym_file_descriptor] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [ts_builtin_sym_end] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [713] = { - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [aux_sym__simple_variable_name_token1] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [aux_sym__simple_variable_name_token1] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [sym_file_descriptor] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [ts_builtin_sym_end] = ACTIONS(969), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [714] = { - [aux_sym_concatenation_repeat1] = STATE(850), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [sym__concat] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1033), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [aux_sym__simple_variable_name_token1] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [715] = { - [aux_sym__literal_repeat1] = STATE(853), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_GT_LPAREN] = ACTIONS(1039), - [sym_number] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [sym_word] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_LT_AMP] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1039), - [sym__special_character] = ACTIONS(2030), - [anon_sym_LT_LT_DASH] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1039), - [sym_raw_string] = ACTIONS(1039), - [sym_variable_name] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1039), - [sym_file_descriptor] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [anon_sym_LT_LT_LT] = ACTIONS(1039), - [anon_sym_GT_AMP] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), - [aux_sym__simple_variable_name_token1] = ACTIONS(1039), - [anon_sym_LT_LPAREN] = ACTIONS(1039), - [sym_ansii_c_string] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [aux_sym__simple_variable_name_token1] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [716] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [aux_sym__simple_variable_name_token1] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [717] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [ts_builtin_sym_end] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [sym_expansion] = STATE(716), + [sym_string_expansion] = STATE(716), + [sym_simple_expansion] = STATE(716), + [sym_string] = STATE(716), + [sym_command_substitution] = STATE(716), + [sym_process_substitution] = STATE(716), + [sym_arithmetic_expansion] = STATE(716), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(2643), + [sym_number] = ACTIONS(2645), + [sym__special_character] = ACTIONS(2647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2653), + [anon_sym_BQUOTE] = ACTIONS(2655), + [sym_raw_string] = ACTIONS(2647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), + [sym_word] = ACTIONS(2645), + [anon_sym_LT_LPAREN] = ACTIONS(2643), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_ansii_c_string] = ACTIONS(2647), }, [718] = { - [sym_string] = STATE(699), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym__] = ACTIONS(2552), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_DOLLAR] = ACTIONS(2554), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2552), - [sym__special_character] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2554), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_raw_string] = ACTIONS(2556), - [anon_sym_BANG] = ACTIONS(2554), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [ts_builtin_sym_end] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2552), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [aux_sym_concatenation_repeat1] = STATE(718), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [719] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [ts_builtin_sym_end] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [aux_sym__simple_variable_name_token1] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [aux_sym__simple_variable_name_token1] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [720] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [aux_sym__simple_variable_name_token1] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [aux_sym__simple_variable_name_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [sym_file_descriptor] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_AMP_GT] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [721] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [ts_builtin_sym_end] = ACTIONS(1306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [aux_sym__simple_variable_name_token1] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [aux_sym_concatenation_repeat1] = STATE(858), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [sym__concat] = ACTIONS(2113), + [anon_sym_PIPE] = ACTIONS(1120), + [aux_sym__simple_variable_name_token1] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1120), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [722] = { - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_AMP_GT_GT] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_GT_LPAREN] = ACTIONS(1370), - [sym_number] = ACTIONS(1370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [sym_word] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_LT_AMP] = ACTIONS(1370), - [anon_sym_GT_GT] = ACTIONS(1370), - [sym__special_character] = ACTIONS(1370), - [anon_sym_LT_LT_DASH] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [sym_raw_string] = ACTIONS(1370), - [sym_variable_name] = ACTIONS(1372), - [anon_sym_RPAREN] = ACTIONS(1370), - [sym_file_descriptor] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_AMP_GT] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_LT_LT_LT] = ACTIONS(1370), - [anon_sym_GT_AMP] = ACTIONS(1370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), - [aux_sym__simple_variable_name_token1] = ACTIONS(1370), - [anon_sym_LT_LPAREN] = ACTIONS(1370), - [sym_ansii_c_string] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_SEMI_SEMI] = ACTIONS(1370), - [anon_sym_PIPE_AMP] = ACTIONS(1370), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [aux_sym__simple_variable_name_token1] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1120), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [723] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [ts_builtin_sym_end] = ACTIONS(1402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [aux_sym__simple_variable_name_token1] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), - }, - [724] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [aux_sym__simple_variable_name_token1] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), - }, - [725] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [aux_sym__simple_variable_name_token1] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), - }, - [726] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [ts_builtin_sym_end] = ACTIONS(1482), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [aux_sym__simple_variable_name_token1] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), - }, - [727] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [ts_builtin_sym_end] = ACTIONS(1486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [aux_sym__simple_variable_name_token1] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), - }, - [728] = { - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_AMP_GT_GT] = ACTIONS(1618), - [anon_sym_DOLLAR] = ACTIONS(1618), - [anon_sym_LT_LT] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [anon_sym_GT_LPAREN] = ACTIONS(1618), - [sym_number] = ACTIONS(1618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), - [anon_sym_PIPE_PIPE] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [sym_word] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_LT_AMP] = ACTIONS(1618), - [anon_sym_GT_GT] = ACTIONS(1618), - [sym__special_character] = ACTIONS(1618), - [anon_sym_LT_LT_DASH] = ACTIONS(1618), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [sym_raw_string] = ACTIONS(1618), - [sym_variable_name] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1618), - [sym_file_descriptor] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_AMP_GT] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_LT_LT_LT] = ACTIONS(1618), - [anon_sym_GT_AMP] = ACTIONS(1618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), - [aux_sym__simple_variable_name_token1] = ACTIONS(1618), - [anon_sym_LT_LPAREN] = ACTIONS(1618), - [sym_ansii_c_string] = ACTIONS(1618), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_SEMI_SEMI] = ACTIONS(1618), - [anon_sym_PIPE_AMP] = ACTIONS(1618), - }, - [729] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [ts_builtin_sym_end] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [aux_sym__simple_variable_name_token1] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [aux_sym__literal_repeat1] = STATE(863), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [sym_ansii_c_string] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [aux_sym__simple_variable_name_token1] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1126), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_number] = ACTIONS(1126), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), + [sym_variable_name] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1126), + [sym_word] = ACTIONS(1126), + [anon_sym_GT] = ACTIONS(1126), + [sym_file_descriptor] = ACTIONS(1128), + [anon_sym_AMP_GT] = ACTIONS(1126), + [sym__special_character] = ACTIONS(2115), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_raw_string] = ACTIONS(1126), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), + }, + [724] = { + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), + }, + [725] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [aux_sym__simple_variable_name_token1] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), + }, + [726] = { + [sym_string] = STATE(707), + [anon_sym_0] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(163), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym__] = ACTIONS(2662), + [anon_sym_DOLLAR] = ACTIONS(2664), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2664), + [sym_file_descriptor] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_AMP_GT] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(2666), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), + }, + [727] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [aux_sym__simple_variable_name_token1] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), + }, + [728] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [aux_sym__simple_variable_name_token1] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [sym_file_descriptor] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_AMP_GT] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), + }, + [729] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [aux_sym__simple_variable_name_token1] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [730] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [ts_builtin_sym_end] = ACTIONS(1700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [aux_sym__simple_variable_name_token1] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LPAREN] = ACTIONS(1438), + [sym_ansii_c_string] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [aux_sym__simple_variable_name_token1] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_LT_AMP] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_LT_LT_DASH] = ACTIONS(1438), + [anon_sym_GT_LPAREN] = ACTIONS(1438), + [sym_number] = ACTIONS(1438), + [anon_sym_LF] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), + [sym_variable_name] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1438), + [sym_word] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [sym_file_descriptor] = ACTIONS(1440), + [anon_sym_AMP_GT] = ACTIONS(1438), + [sym__special_character] = ACTIONS(1438), + [anon_sym_LT_LT_LT] = ACTIONS(1438), + [anon_sym_GT_AMP] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1438), + [sym_raw_string] = ACTIONS(1438), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI_SEMI] = ACTIONS(1438), + [anon_sym_PIPE_AMP] = ACTIONS(1438), }, [731] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [ts_builtin_sym_end] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [aux_sym__simple_variable_name_token1] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [aux_sym__simple_variable_name_token1] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [sym_file_descriptor] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_AMP_GT] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [ts_builtin_sym_end] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [732] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [aux_sym__simple_variable_name_token1] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1673), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [ts_builtin_sym_end] = ACTIONS(1710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [aux_sym__simple_variable_name_token1] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [733] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [ts_builtin_sym_end] = ACTIONS(1825), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [aux_sym__simple_variable_name_token1] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [aux_sym__simple_variable_name_token1] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [sym_file_descriptor] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [734] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [ts_builtin_sym_end] = ACTIONS(1829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [aux_sym__simple_variable_name_token1] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [aux_sym__simple_variable_name_token1] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [sym_file_descriptor] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [735] = { - [aux_sym_concatenation_repeat1] = STATE(739), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(515), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_in] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LT] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [sym_ansii_c_string] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [aux_sym__simple_variable_name_token1] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_LT_AMP] = ACTIONS(1691), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_LT_LT_DASH] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), + [sym_number] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1691), + [sym_word] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [sym_file_descriptor] = ACTIONS(1693), + [anon_sym_AMP_GT] = ACTIONS(1691), + [sym__special_character] = ACTIONS(1691), + [anon_sym_LT_LT_LT] = ACTIONS(1691), + [anon_sym_GT_AMP] = ACTIONS(1691), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_raw_string] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_SEMI_SEMI] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), }, [736] = { - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(411), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_in] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [aux_sym__simple_variable_name_token1] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [sym_file_descriptor] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_AMP_GT] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [737] = { - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_in] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [aux_sym__simple_variable_name_token1] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [738] = { - [anon_sym_SEMI_SEMI] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [aux_sym__simple_variable_name_token1] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1880), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_in] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [739] = { - [aux_sym_concatenation_repeat1] = STATE(747), - [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [aux_sym__simple_variable_name_token1] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(1886), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(2558), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_in] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [740] = { - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(597), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [aux_sym__simple_variable_name_token1] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [sym_file_descriptor] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_AMP_GT] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [741] = { - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_in] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [aux_sym__simple_variable_name_token1] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_AMP_GT] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [742] = { - [aux_sym__literal_repeat1] = STATE(742), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym__special_character] = ACTIONS(2560), - [anon_sym_in] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), + [aux_sym_concatenation_repeat1] = STATE(744), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_RPAREN_RPAREN] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_RBRACK_RBRACK] = ACTIONS(287), + [sym__concat] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_EQ_TILDE] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [sym__special_character] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(285), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(287), + [sym_test_operator] = ACTIONS(287), }, [743] = { - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(878), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_in] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_RPAREN_RPAREN] = ACTIONS(441), + [anon_sym_PIPE_PIPE] = ACTIONS(441), + [anon_sym_RBRACK_RBRACK] = ACTIONS(441), + [sym__concat] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(441), + [anon_sym_EQ_TILDE] = ACTIONS(441), + [anon_sym_DASH_DASH] = ACTIONS(441), + [anon_sym_LT_EQ] = ACTIONS(441), + [anon_sym_DASH_EQ] = ACTIONS(441), + [anon_sym_BANG_EQ] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(439), + [anon_sym_EQ_EQ] = ACTIONS(441), + [anon_sym_GT_EQ] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(439), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(441), + [sym_test_operator] = ACTIONS(441), }, [744] = { - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(882), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_in] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), + [aux_sym_concatenation_repeat1] = STATE(756), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(479), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_RPAREN_RPAREN] = ACTIONS(479), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_RBRACK_RBRACK] = ACTIONS(479), + [sym__concat] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_RPAREN] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_EQ_EQ] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(475), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [745] = { - [anon_sym_SEMI_SEMI] = ACTIONS(884), + [sym__concat] = ACTIONS(507), + [sym__string_content] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(505), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(886), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), }, [746] = { - [sym_command_substitution] = STATE(745), - [sym_simple_expansion] = STATE(745), - [sym_string_expansion] = STATE(745), - [sym_string] = STATE(745), - [sym_process_substitution] = STATE(745), - [sym_expansion] = STATE(745), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2563), - [sym_word] = ACTIONS(2565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_LT_LPAREN] = ACTIONS(227), - [sym_ansii_c_string] = ACTIONS(2563), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(227), - [sym__special_character] = ACTIONS(2563), - [sym_number] = ACTIONS(2565), + [sym__concat] = ACTIONS(511), + [sym__string_content] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), }, [747] = { - [aux_sym_concatenation_repeat1] = STATE(747), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(2569), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_RPAREN_RPAREN] = ACTIONS(515), + [anon_sym_PIPE_PIPE] = ACTIONS(515), + [anon_sym_RBRACK_RBRACK] = ACTIONS(515), + [sym__concat] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_EQ_TILDE] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(515), + [anon_sym_DASH_EQ] = ACTIONS(515), + [anon_sym_BANG_EQ] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(515), + [anon_sym_GT_EQ] = ACTIONS(515), + [anon_sym_PLUS] = ACTIONS(513), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(515), + [sym_test_operator] = ACTIONS(515), }, [748] = { - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(909), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_in] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_RPAREN_RPAREN] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_RBRACK_RBRACK] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_EQ_TILDE] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [sym__special_character] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(285), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(287), + [sym_test_operator] = ACTIONS(287), }, [749] = { - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(961), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_in] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), + [aux_sym__literal_repeat1] = STATE(749), + [anon_sym_PLUS_EQ] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_RPAREN_RPAREN] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_RBRACK_RBRACK] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(813), + [anon_sym_DASH_DASH] = ACTIONS(813), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_DASH_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [sym__special_character] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(811), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(813), + [sym_test_operator] = ACTIONS(813), }, [750] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_PLUS_EQ] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_RPAREN_RPAREN] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_RBRACK_RBRACK] = ACTIONS(933), + [sym__concat] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_DASH_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(931), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(933), + [sym_test_operator] = ACTIONS(933), }, [751] = { - [aux_sym_concatenation_repeat1] = STATE(2443), + [sym__concat] = ACTIONS(969), + [sym__string_content] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(515), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), }, [752] = { - [aux_sym__literal_repeat1] = STATE(742), - [sym__special_character] = ACTIONS(527), + [sym__concat] = ACTIONS(973), + [sym__string_content] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), }, [753] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1067), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_RPAREN_RPAREN] = ACTIONS(977), + [anon_sym_PIPE_PIPE] = ACTIONS(977), + [anon_sym_RBRACK_RBRACK] = ACTIONS(977), + [sym__concat] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_EQ_TILDE] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_BANG_EQ] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(975), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(977), + [sym_test_operator] = ACTIONS(977), }, [754] = { - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(878), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_in] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_RPAREN_RPAREN] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_RBRACK_RBRACK] = ACTIONS(981), + [sym__concat] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_EQ_TILDE] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_DASH_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(979), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(981), + [sym_test_operator] = ACTIONS(981), }, [755] = { - [sym_string] = STATE(738), - [anon_sym__] = ACTIONS(2572), - [anon_sym_QMARK] = ACTIONS(2572), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2574), - [sym_raw_string] = ACTIONS(2576), - [anon_sym_DOLLAR] = ACTIONS(2574), - [anon_sym_AT] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(2578), - [anon_sym_0] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2572), - [aux_sym__simple_variable_name_token1] = ACTIONS(2572), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), + [sym_expansion] = STATE(754), + [sym_string] = STATE(754), + [sym_command_substitution] = STATE(754), + [sym_process_substitution] = STATE(754), + [sym_simple_expansion] = STATE(754), + [sym_arithmetic_expansion] = STATE(754), + [sym_string_expansion] = STATE(754), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(2673), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(2673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(2675), + [sym__special_character] = ACTIONS(2675), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(2675), + [anon_sym_DOLLAR] = ACTIONS(2677), }, [756] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1237), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym_in] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), + [aux_sym_concatenation_repeat1] = STATE(756), + [anon_sym_PLUS_EQ] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_RPAREN_RPAREN] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_RBRACK_RBRACK] = ACTIONS(981), + [sym__concat] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_EQ_TILDE] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_DASH_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(979), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(981), + [sym_test_operator] = ACTIONS(981), }, [757] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [sym__concat] = ACTIONS(1034), + [sym__string_content] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), }, [758] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [sym__concat] = ACTIONS(1088), + [sym__string_content] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(1086), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1306), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), }, [759] = { + [aux_sym_concatenation_repeat1] = STATE(2564), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_SEMI_SEMI] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), + [sym__concat] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), }, [760] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1400), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1402), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), }, [761] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1458), + [aux_sym__literal_repeat1] = STATE(787), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1460), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_in] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), + [sym__special_character] = ACTIONS(533), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), }, [762] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1470), + [sym__concat] = ACTIONS(973), + [sym__string_content] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1472), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), }, [763] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1482), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_LT_LT] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1298), + [anon_sym_PIPE_PIPE] = ACTIONS(1298), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1298), + [anon_sym_EQ_TILDE] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_LT_EQ] = ACTIONS(1298), + [anon_sym_DASH_EQ] = ACTIONS(1298), + [anon_sym_BANG_EQ] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1298), + [anon_sym_GT_EQ] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1296), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1298), + [sym_test_operator] = ACTIONS(1298), }, [764] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1484), + [sym_string] = STATE(747), + [anon_sym_0] = ACTIONS(2682), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1312), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(2686), + [anon_sym_QMARK] = ACTIONS(2688), + [aux_sym__simple_variable_name_token1] = ACTIONS(2682), + [anon_sym__] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(2686), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1308), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1486), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_in] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), + [sym_raw_string] = ACTIONS(2690), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(2688), + [sym_test_operator] = ACTIONS(1312), }, [765] = { + [sym__concat] = ACTIONS(1358), + [sym__string_content] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_SEMI_SEMI] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), }, [766] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1692), + [sym__concat] = ACTIONS(1412), + [sym__string_content] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1410), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1694), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_in] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), }, [767] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1698), + [sym__concat] = ACTIONS(1430), + [sym__string_content] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1700), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_in] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), }, [768] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1702), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1704), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_in] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_LF] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_SEMI_SEMI] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), }, [769] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1708), + [sym__concat] = ACTIONS(1661), + [sym__string_content] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_BQUOTE] = ACTIONS(1659), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1710), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_in] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), }, [770] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [sym__concat] = ACTIONS(1673), + [sym__string_content] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1825), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), }, [771] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1827), + [sym__concat] = ACTIONS(1683), + [sym__string_content] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(1829), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), }, [772] = { - [aux_sym_concatenation_repeat1] = STATE(776), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_PLUS_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_RPAREN_RPAREN] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_RBRACK_RBRACK] = ACTIONS(213), - [sym__concat] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(213), - [anon_sym_DASH_DASH] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [sym__special_character] = ACTIONS(211), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_test_operator] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(213), + [sym__concat] = ACTIONS(1687), + [sym__string_content] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), }, [773] = { - [anon_sym_PLUS_EQ] = ACTIONS(411), - [anon_sym_PLUS_PLUS] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_RPAREN_RPAREN] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [anon_sym_RBRACK_RBRACK] = ACTIONS(411), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_EQ_TILDE] = ACTIONS(411), - [anon_sym_DASH_DASH] = ACTIONS(411), - [anon_sym_LT_EQ] = ACTIONS(411), - [anon_sym_DASH_EQ] = ACTIONS(411), - [anon_sym_BANG_EQ] = ACTIONS(411), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(409), - [sym_test_operator] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(409), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_GT_EQ] = ACTIONS(411), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_SEMI_SEMI] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), }, [774] = { - [anon_sym_PLUS_EQ] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_RPAREN_RPAREN] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_RBRACK_RBRACK] = ACTIONS(415), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_EQ_TILDE] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(415), - [anon_sym_DASH_EQ] = ACTIONS(415), - [anon_sym_BANG_EQ] = ACTIONS(415), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(413), - [sym_test_operator] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_GT_EQ] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(415), + [sym__concat] = ACTIONS(1870), + [sym__string_content] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), }, [775] = { - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_RPAREN_RPAREN] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_RBRACK_RBRACK] = ACTIONS(419), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_EQ_TILDE] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(417), - [sym_test_operator] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(419), + [sym__concat] = ACTIONS(1876), + [sym__string_content] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), }, [776] = { - [aux_sym_concatenation_repeat1] = STATE(784), - [anon_sym_PLUS_EQ] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_RPAREN_RPAREN] = ACTIONS(433), - [anon_sym_PIPE_PIPE] = ACTIONS(433), - [anon_sym_RBRACK_RBRACK] = ACTIONS(433), - [sym__concat] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_EQ_TILDE] = ACTIONS(433), - [anon_sym_DASH_DASH] = ACTIONS(433), - [anon_sym_LT_EQ] = ACTIONS(433), - [anon_sym_DASH_EQ] = ACTIONS(433), - [anon_sym_BANG_EQ] = ACTIONS(433), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(429), - [sym_test_operator] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_EQ] = ACTIONS(429), - [anon_sym_EQ_EQ] = ACTIONS(433), - [anon_sym_GT_EQ] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(433), + [sym__concat] = ACTIONS(1880), + [sym__string_content] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), }, [777] = { - [anon_sym_PLUS_EQ] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_RPAREN_RPAREN] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_RBRACK_RBRACK] = ACTIONS(597), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_EQ_TILDE] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_DASH_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(597), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(595), - [sym_test_operator] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(597), + [sym__concat] = ACTIONS(1886), + [sym__string_content] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), }, [778] = { - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_PLUS_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_RPAREN_RPAREN] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_RBRACK_RBRACK] = ACTIONS(213), - [anon_sym_PIPE] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(213), - [anon_sym_DASH_DASH] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [sym__special_character] = ACTIONS(211), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_test_operator] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(213), + [sym__concat] = ACTIONS(1959), + [sym__string_content] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), }, [779] = { - [aux_sym__literal_repeat1] = STATE(779), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_RPAREN_RPAREN] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_RBRACK_RBRACK] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_EQ_TILDE] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [sym__special_character] = ACTIONS(2582), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(647), - [sym_test_operator] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(652), + [sym__concat] = ACTIONS(1963), + [sym__string_content] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), }, [780] = { - [anon_sym_PLUS_EQ] = ACTIONS(878), - [anon_sym_PLUS_PLUS] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_RPAREN_RPAREN] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [anon_sym_RBRACK_RBRACK] = ACTIONS(878), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(878), - [anon_sym_DASH_DASH] = ACTIONS(878), - [anon_sym_LT_EQ] = ACTIONS(878), - [anon_sym_DASH_EQ] = ACTIONS(878), - [anon_sym_BANG_EQ] = ACTIONS(878), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_test_operator] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(878), + [aux_sym_concatenation_repeat1] = STATE(782), + [sym__special_character] = ACTIONS(285), + [sym__concat] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), }, [781] = { - [anon_sym_PLUS_EQ] = ACTIONS(882), - [anon_sym_PLUS_PLUS] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_RPAREN_RPAREN] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [anon_sym_RBRACK_RBRACK] = ACTIONS(882), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_EQ_TILDE] = ACTIONS(882), - [anon_sym_DASH_DASH] = ACTIONS(882), - [anon_sym_LT_EQ] = ACTIONS(882), - [anon_sym_DASH_EQ] = ACTIONS(882), - [anon_sym_BANG_EQ] = ACTIONS(882), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(880), - [sym_test_operator] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_GT_EQ] = ACTIONS(882), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(882), + [sym__concat] = ACTIONS(441), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_in] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), }, [782] = { - [anon_sym_PLUS_EQ] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_RPAREN_RPAREN] = ACTIONS(886), - [anon_sym_PIPE_PIPE] = ACTIONS(886), - [anon_sym_RBRACK_RBRACK] = ACTIONS(886), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(886), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_DASH_EQ] = ACTIONS(886), - [anon_sym_BANG_EQ] = ACTIONS(886), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_test_operator] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(886), + [aux_sym_concatenation_repeat1] = STATE(794), + [anon_sym_AMP] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [sym__concat] = ACTIONS(2692), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_in] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), }, [783] = { - [sym_command_substitution] = STATE(782), - [sym_string] = STATE(782), - [sym_process_substitution] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_string_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2587), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(2589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(2589), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(2585), - [sym__special_character] = ACTIONS(2585), + [anon_sym_PLUS_EQ] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_RPAREN_RPAREN] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_RBRACK_RBRACK] = ACTIONS(507), + [sym__concat] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_EQ_TILDE] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(507), + [anon_sym_DASH_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_GT_EQ] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(505), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(507), + [sym_test_operator] = ACTIONS(507), }, [784] = { - [aux_sym_concatenation_repeat1] = STATE(784), - [anon_sym_PLUS_EQ] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_RPAREN_RPAREN] = ACTIONS(886), - [anon_sym_PIPE_PIPE] = ACTIONS(886), - [anon_sym_RBRACK_RBRACK] = ACTIONS(886), - [sym__concat] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(886), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_DASH_EQ] = ACTIONS(886), - [anon_sym_BANG_EQ] = ACTIONS(886), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_test_operator] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(886), + [anon_sym_PLUS_EQ] = ACTIONS(511), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_LT_LT] = ACTIONS(511), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_RPAREN_RPAREN] = ACTIONS(511), + [anon_sym_PIPE_PIPE] = ACTIONS(511), + [anon_sym_RBRACK_RBRACK] = ACTIONS(511), + [sym__concat] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(511), + [anon_sym_EQ_TILDE] = ACTIONS(511), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_LT_EQ] = ACTIONS(511), + [anon_sym_DASH_EQ] = ACTIONS(511), + [anon_sym_BANG_EQ] = ACTIONS(511), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(511), + [anon_sym_GT_EQ] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(509), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(511), + [sym_test_operator] = ACTIONS(511), }, [785] = { - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_RPAREN_RPAREN] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_RBRACK_RBRACK] = ACTIONS(909), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(907), - [sym_test_operator] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(909), + [sym__concat] = ACTIONS(515), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_in] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), }, [786] = { - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_RPAREN_RPAREN] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_RBRACK_RBRACK] = ACTIONS(961), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(959), - [sym_test_operator] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), + [sym__special_character] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), }, [787] = { - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_esac] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [aux_sym__literal_repeat1] = STATE(787), + [sym__special_character] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_in] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), }, [788] = { - [aux_sym_concatenation_repeat1] = STATE(1298), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [sym__concat] = ACTIONS(2594), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_esac] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [sym__concat] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_in] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), }, [789] = { - [aux_sym__literal_repeat1] = STATE(1330), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_GT_LPAREN] = ACTIONS(1039), - [sym_number] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [sym_word] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_LT_AMP] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1039), - [sym__special_character] = ACTIONS(2596), - [anon_sym_LT_LT_DASH] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1039), - [sym_raw_string] = ACTIONS(1039), - [sym_variable_name] = ACTIONS(1043), - [sym_file_descriptor] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [anon_sym_LT_LT_LT] = ACTIONS(1039), - [anon_sym_GT_AMP] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), - [anon_sym_esac] = ACTIONS(1039), - [anon_sym_LT_LPAREN] = ACTIONS(1039), - [sym_ansii_c_string] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_RPAREN_RPAREN] = ACTIONS(969), + [anon_sym_PIPE_PIPE] = ACTIONS(969), + [anon_sym_RBRACK_RBRACK] = ACTIONS(969), + [sym__concat] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(969), + [anon_sym_EQ_TILDE] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_BANG_EQ] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(967), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(969), + [sym_test_operator] = ACTIONS(969), }, [790] = { - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1067), - [anon_sym_PIPE_PIPE] = ACTIONS(1067), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1067), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_BANG_EQ] = ACTIONS(1067), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1065), - [sym_test_operator] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_RPAREN_RPAREN] = ACTIONS(973), + [anon_sym_PIPE_PIPE] = ACTIONS(973), + [anon_sym_RBRACK_RBRACK] = ACTIONS(973), + [sym__concat] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(971), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(973), + [sym_test_operator] = ACTIONS(973), }, [791] = { - [anon_sym_PLUS_EQ] = ACTIONS(878), - [anon_sym_PLUS_PLUS] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_RPAREN_RPAREN] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [anon_sym_RBRACK_RBRACK] = ACTIONS(878), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(878), - [anon_sym_DASH_DASH] = ACTIONS(878), - [anon_sym_LT_EQ] = ACTIONS(878), - [anon_sym_DASH_EQ] = ACTIONS(878), - [anon_sym_BANG_EQ] = ACTIONS(878), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_test_operator] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(878), + [sym__concat] = ACTIONS(977), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_in] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), }, [792] = { - [sym_string] = STATE(775), - [anon_sym__] = ACTIONS(2598), - [anon_sym_PLUS_EQ] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2602), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1231), - [anon_sym_0] = ACTIONS(2598), - [anon_sym_STAR] = ACTIONS(2604), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_EQ_TILDE] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_LT_EQ] = ACTIONS(1231), - [anon_sym_DASH_EQ] = ACTIONS(1231), - [anon_sym_BANG_EQ] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2600), - [sym_raw_string] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_AT] = ACTIONS(2604), - [sym_test_operator] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1231), - [anon_sym_GT_EQ] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2598), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(2604), + [sym__concat] = ACTIONS(981), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_in] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), }, [793] = { - [anon_sym_PLUS_EQ] = ACTIONS(1237), - [anon_sym_PLUS_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1237), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_EQ_TILDE] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_DASH_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1235), - [sym_test_operator] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_EQ] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1237), + [sym_expansion] = STATE(792), + [sym_string_expansion] = STATE(792), + [sym_simple_expansion] = STATE(792), + [sym_string] = STATE(792), + [sym_command_substitution] = STATE(792), + [sym_process_substitution] = STATE(792), + [sym_arithmetic_expansion] = STATE(792), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_number] = ACTIONS(2697), + [sym__special_character] = ACTIONS(2699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(259), + [sym_raw_string] = ACTIONS(2699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym_word] = ACTIONS(2697), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(2701), + [sym_ansii_c_string] = ACTIONS(2699), }, [794] = { - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1296), + [aux_sym_concatenation_repeat1] = STATE(794), + [sym__concat] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_in] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), }, [795] = { - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1306), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1306), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_BANG_EQ] = ACTIONS(1306), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1304), - [sym_test_operator] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_LT_LT] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1034), + [anon_sym_PIPE_PIPE] = ACTIONS(1034), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1034), + [sym__concat] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1034), + [anon_sym_EQ_TILDE] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_LT_EQ] = ACTIONS(1034), + [anon_sym_DASH_EQ] = ACTIONS(1034), + [anon_sym_BANG_EQ] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1032), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1034), + [sym_test_operator] = ACTIONS(1034), }, [796] = { - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_AMP_GT_GT] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_GT_LPAREN] = ACTIONS(1370), - [sym_number] = ACTIONS(1370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [sym_word] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_LT_AMP] = ACTIONS(1370), - [anon_sym_GT_GT] = ACTIONS(1370), - [sym__special_character] = ACTIONS(1370), - [anon_sym_LT_LT_DASH] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [sym_raw_string] = ACTIONS(1370), - [sym_variable_name] = ACTIONS(1372), - [sym_file_descriptor] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_AMP_GT] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_LT_LT_LT] = ACTIONS(1370), - [anon_sym_GT_AMP] = ACTIONS(1370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), - [anon_sym_esac] = ACTIONS(1370), - [anon_sym_LT_LPAREN] = ACTIONS(1370), - [sym_ansii_c_string] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_SEMI_SEMI] = ACTIONS(1370), - [anon_sym_PIPE_AMP] = ACTIONS(1370), + [anon_sym_PLUS_EQ] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1088), + [sym__concat] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_EQ_TILDE] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_DASH_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1086), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [sym_test_operator] = ACTIONS(1088), }, [797] = { - [anon_sym_PLUS_EQ] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1402), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ] = ACTIONS(1402), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1400), - [sym_test_operator] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1402), + [aux_sym_concatenation_repeat1] = STATE(1353), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [sym__concat] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [sym_file_descriptor] = ACTIONS(1124), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [anon_sym_esac] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [798] = { - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1460), - [anon_sym_PIPE_PIPE] = ACTIONS(1460), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1460), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_EQ_TILDE] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_LT_EQ] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_BANG_EQ] = ACTIONS(1460), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1458), - [sym_test_operator] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1460), - [anon_sym_GT_EQ] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [sym_file_descriptor] = ACTIONS(1124), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [anon_sym_esac] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [799] = { - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1472), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_EQ_TILDE] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1470), - [sym_test_operator] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1472), + [aux_sym__literal_repeat1] = STATE(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [sym_ansii_c_string] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1126), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_number] = ACTIONS(1126), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), + [sym_variable_name] = ACTIONS(1128), + [sym_file_descriptor] = ACTIONS(1128), + [sym_word] = ACTIONS(1126), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), + [sym__special_character] = ACTIONS(2708), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), + [anon_sym_esac] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_raw_string] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), }, [800] = { - [anon_sym_PLUS_EQ] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1482), - [anon_sym_PIPE_PIPE] = ACTIONS(1482), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1482), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_EQ_TILDE] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_DASH_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1480), - [sym_test_operator] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1480), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_RPAREN_RPAREN] = ACTIONS(973), + [anon_sym_PIPE_PIPE] = ACTIONS(973), + [anon_sym_RBRACK_RBRACK] = ACTIONS(973), + [sym__concat] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(971), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(973), + [sym_test_operator] = ACTIONS(973), }, [801] = { - [anon_sym_PLUS_EQ] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1486), - [anon_sym_PIPE_PIPE] = ACTIONS(1486), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1486), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_DASH_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1484), - [sym_test_operator] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_EQ] = ACTIONS(1484), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_GT_EQ] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1298), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_in] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), }, [802] = { - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_AMP_GT_GT] = ACTIONS(1618), - [anon_sym_DOLLAR] = ACTIONS(1618), - [anon_sym_LT_LT] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [anon_sym_GT_LPAREN] = ACTIONS(1618), - [sym_number] = ACTIONS(1618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), - [anon_sym_PIPE_PIPE] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [sym_word] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_LT_AMP] = ACTIONS(1618), - [anon_sym_GT_GT] = ACTIONS(1618), - [sym__special_character] = ACTIONS(1618), - [anon_sym_LT_LT_DASH] = ACTIONS(1618), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [sym_raw_string] = ACTIONS(1618), - [sym_variable_name] = ACTIONS(1620), - [sym_file_descriptor] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_AMP_GT] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_LT_LT_LT] = ACTIONS(1618), - [anon_sym_GT_AMP] = ACTIONS(1618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), - [anon_sym_esac] = ACTIONS(1618), - [anon_sym_LT_LPAREN] = ACTIONS(1618), - [sym_ansii_c_string] = ACTIONS(1618), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_SEMI_SEMI] = ACTIONS(1618), - [anon_sym_PIPE_AMP] = ACTIONS(1618), + [sym_string] = STATE(785), + [anon_sym_0] = ACTIONS(2710), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_QMARK] = ACTIONS(2710), + [aux_sym__simple_variable_name_token1] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2716), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(2710), }, [803] = { - [anon_sym_PLUS_EQ] = ACTIONS(1694), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1694), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_EQ_TILDE] = ACTIONS(1694), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym_LT_EQ] = ACTIONS(1694), - [anon_sym_DASH_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1692), - [sym_test_operator] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1692), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_GT_EQ] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1694), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1358), + [sym__concat] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1356), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1358), }, [804] = { - [anon_sym_PLUS_EQ] = ACTIONS(1700), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1700), - [anon_sym_PIPE_PIPE] = ACTIONS(1700), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1700), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_EQ_TILDE] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [anon_sym_LT_EQ] = ACTIONS(1700), - [anon_sym_DASH_EQ] = ACTIONS(1700), - [anon_sym_BANG_EQ] = ACTIONS(1700), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1698), - [sym_test_operator] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_LT_LT] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1412), + [anon_sym_PIPE_PIPE] = ACTIONS(1412), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1412), + [sym__concat] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1412), + [anon_sym_EQ_TILDE] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_LT_EQ] = ACTIONS(1412), + [anon_sym_DASH_EQ] = ACTIONS(1412), + [anon_sym_BANG_EQ] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_EQ_EQ] = ACTIONS(1412), + [anon_sym_GT_EQ] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1410), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [sym_test_operator] = ACTIONS(1412), }, [805] = { - [anon_sym_PLUS_EQ] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1704), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_EQ_TILDE] = ACTIONS(1704), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_LT_EQ] = ACTIONS(1704), - [anon_sym_DASH_EQ] = ACTIONS(1704), - [anon_sym_BANG_EQ] = ACTIONS(1704), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1702), - [sym_test_operator] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1704), - [anon_sym_GT_EQ] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_PLUS_EQ] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_LT_LT] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1430), + [sym__concat] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1430), + [anon_sym_EQ_TILDE] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_LT_EQ] = ACTIONS(1430), + [anon_sym_DASH_EQ] = ACTIONS(1430), + [anon_sym_BANG_EQ] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_EQ_EQ] = ACTIONS(1430), + [anon_sym_GT_EQ] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1428), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [sym_test_operator] = ACTIONS(1430), }, [806] = { - [anon_sym_PLUS_EQ] = ACTIONS(1710), - [anon_sym_PLUS_PLUS] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1710), - [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1710), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_EQ_TILDE] = ACTIONS(1710), - [anon_sym_DASH_DASH] = ACTIONS(1710), - [anon_sym_LT_EQ] = ACTIONS(1710), - [anon_sym_DASH_EQ] = ACTIONS(1710), - [anon_sym_BANG_EQ] = ACTIONS(1710), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1708), - [sym_test_operator] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_EQ] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1710), - [anon_sym_GT_EQ] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1710), + [anon_sym_AMP_GT_GT] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LPAREN] = ACTIONS(1438), + [sym_ansii_c_string] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_LT_AMP] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_LT_LT_DASH] = ACTIONS(1438), + [anon_sym_GT_LPAREN] = ACTIONS(1438), + [sym_number] = ACTIONS(1438), + [anon_sym_LF] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), + [sym_variable_name] = ACTIONS(1440), + [sym_file_descriptor] = ACTIONS(1440), + [sym_word] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_AMP_GT] = ACTIONS(1438), + [sym__special_character] = ACTIONS(1438), + [anon_sym_LT_LT_LT] = ACTIONS(1438), + [anon_sym_GT_AMP] = ACTIONS(1438), + [anon_sym_esac] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [sym_raw_string] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI_SEMI] = ACTIONS(1438), + [anon_sym_PIPE_AMP] = ACTIONS(1438), }, [807] = { - [anon_sym_PLUS_EQ] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1825), - [anon_sym_PIPE_PIPE] = ACTIONS(1825), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1825), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [anon_sym_LT_EQ] = ACTIONS(1825), - [anon_sym_DASH_EQ] = ACTIONS(1825), - [anon_sym_BANG_EQ] = ACTIONS(1825), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1823), - [sym_test_operator] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1825), - [anon_sym_GT_EQ] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1825), + [anon_sym_PLUS_EQ] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1661), + [sym__concat] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1661), + [anon_sym_EQ_TILDE] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1661), + [anon_sym_DASH_EQ] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [sym_test_operator] = ACTIONS(1661), }, [808] = { - [anon_sym_PLUS_EQ] = ACTIONS(1829), - [anon_sym_PLUS_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1829), - [anon_sym_PIPE_PIPE] = ACTIONS(1829), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1829), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1829), - [anon_sym_DASH_DASH] = ACTIONS(1829), - [anon_sym_LT_EQ] = ACTIONS(1829), - [anon_sym_DASH_EQ] = ACTIONS(1829), - [anon_sym_BANG_EQ] = ACTIONS(1829), - [sym_comment] = ACTIONS(41), - [anon_sym_RPAREN] = ACTIONS(1827), - [sym_test_operator] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1829), - [anon_sym_GT_EQ] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PLUS_EQ] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_LT_LT] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1673), + [anon_sym_PIPE_PIPE] = ACTIONS(1673), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1673), + [sym__concat] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1673), + [anon_sym_EQ_TILDE] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1673), + [anon_sym_DASH_EQ] = ACTIONS(1673), + [anon_sym_BANG_EQ] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1673), + [sym_test_operator] = ACTIONS(1673), }, [809] = { - [aux_sym_concatenation_repeat1] = STATE(813), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [sym_test_operator] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [sym__concat] = ACTIONS(2042), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(213), - [anon_sym_DASH_DASH] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [sym__special_character] = ACTIONS(211), - [anon_sym_DASH_EQ] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_LT_LT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_DASH_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_EQ] = ACTIONS(1681), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [sym_test_operator] = ACTIONS(1683), }, [810] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [sym__string_content] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1687), + [anon_sym_PIPE_PIPE] = ACTIONS(1687), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1687), + [sym__concat] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_DASH_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_EQ] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_GT_EQ] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1687), + [sym_test_operator] = ACTIONS(1687), }, [811] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [sym__string_content] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LT] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [sym_ansii_c_string] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_LT_AMP] = ACTIONS(1691), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_LT_LT_DASH] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), + [sym_number] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1693), + [sym_file_descriptor] = ACTIONS(1693), + [sym_word] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_AMP_GT] = ACTIONS(1691), + [sym__special_character] = ACTIONS(1691), + [anon_sym_LT_LT_LT] = ACTIONS(1691), + [anon_sym_GT_AMP] = ACTIONS(1691), + [anon_sym_esac] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_raw_string] = ACTIONS(1691), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_SEMI_SEMI] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), }, [812] = { - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(417), - [sym_test_operator] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT_EQ] = ACTIONS(419), - [sym__concat] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_EQ_TILDE] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_LT_LT] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1870), + [anon_sym_PIPE_PIPE] = ACTIONS(1870), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1870), + [sym__concat] = ACTIONS(1870), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1870), + [anon_sym_EQ_TILDE] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_LT_EQ] = ACTIONS(1870), + [anon_sym_DASH_EQ] = ACTIONS(1870), + [anon_sym_BANG_EQ] = ACTIONS(1870), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1870), + [anon_sym_GT_EQ] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1868), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1870), + [sym_test_operator] = ACTIONS(1870), }, [813] = { - [aux_sym_concatenation_repeat1] = STATE(821), - [anon_sym_BANG_EQ] = ACTIONS(433), - [anon_sym_PLUS_EQ] = ACTIONS(433), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(433), - [anon_sym_RBRACK] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_EQ] = ACTIONS(429), - [sym_test_operator] = ACTIONS(433), - [anon_sym_EQ_EQ] = ACTIONS(433), - [anon_sym_PIPE_PIPE] = ACTIONS(433), - [anon_sym_GT_EQ] = ACTIONS(433), - [sym__concat] = ACTIONS(2608), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_EQ_TILDE] = ACTIONS(433), - [anon_sym_DASH_DASH] = ACTIONS(433), - [anon_sym_LT_EQ] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(433), - [anon_sym_DASH_EQ] = ACTIONS(433), + [anon_sym_PLUS_EQ] = ACTIONS(1876), + [anon_sym_PLUS_PLUS] = ACTIONS(1876), + [anon_sym_LT_LT] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1876), + [anon_sym_PIPE_PIPE] = ACTIONS(1876), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1876), + [sym__concat] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1876), + [anon_sym_EQ_TILDE] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1876), + [anon_sym_LT_EQ] = ACTIONS(1876), + [anon_sym_DASH_EQ] = ACTIONS(1876), + [anon_sym_BANG_EQ] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1876), + [anon_sym_GT_EQ] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1874), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1876), + [sym_test_operator] = ACTIONS(1876), }, [814] = { - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_PLUS_EQ] = ACTIONS(597), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_RBRACK] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(595), - [sym_test_operator] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [sym__concat] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_EQ_TILDE] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_DASH_EQ] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1880), + [anon_sym_LT_LT] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1880), + [sym__concat] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1880), + [anon_sym_EQ_TILDE] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1880), + [anon_sym_LT_EQ] = ACTIONS(1880), + [anon_sym_DASH_EQ] = ACTIONS(1880), + [anon_sym_BANG_EQ] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1880), + [anon_sym_GT_EQ] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [sym_test_operator] = ACTIONS(1880), }, [815] = { - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [sym_test_operator] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(213), - [anon_sym_DASH_DASH] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [sym__special_character] = ACTIONS(211), - [anon_sym_DASH_EQ] = ACTIONS(213), + [anon_sym_PLUS_EQ] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_EQ_TILDE] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_LT_EQ] = ACTIONS(1886), + [anon_sym_DASH_EQ] = ACTIONS(1886), + [anon_sym_BANG_EQ] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1886), + [anon_sym_GT_EQ] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1884), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [sym_test_operator] = ACTIONS(1886), }, [816] = { - [aux_sym__literal_repeat1] = STATE(816), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_RBRACK] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_EQ] = ACTIONS(647), - [sym_test_operator] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_EQ_TILDE] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [sym__special_character] = ACTIONS(2610), - [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_EQ_TILDE] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1957), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [sym_test_operator] = ACTIONS(1959), }, [817] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [sym__string_content] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_LT_LT] = ACTIONS(1963), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1963), + [anon_sym_PIPE_PIPE] = ACTIONS(1963), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1963), + [sym__concat] = ACTIONS(1963), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1963), + [anon_sym_EQ_TILDE] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_LT_EQ] = ACTIONS(1963), + [anon_sym_DASH_EQ] = ACTIONS(1963), + [anon_sym_BANG_EQ] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_EQ] = ACTIONS(1961), + [anon_sym_EQ_EQ] = ACTIONS(1963), + [anon_sym_GT_EQ] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1961), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(1963), + [sym_test_operator] = ACTIONS(1963), }, [818] = { - [anon_sym_BANG_EQ] = ACTIONS(882), - [anon_sym_PLUS_EQ] = ACTIONS(882), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(882), - [anon_sym_RBRACK] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(880), - [sym_test_operator] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [anon_sym_GT_EQ] = ACTIONS(882), - [sym__concat] = ACTIONS(882), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_EQ_TILDE] = ACTIONS(882), - [anon_sym_DASH_DASH] = ACTIONS(882), - [anon_sym_LT_EQ] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_DASH_EQ] = ACTIONS(882), + [aux_sym_concatenation_repeat1] = STATE(820), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [sym_test_operator] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_RBRACK] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [sym__special_character] = ACTIONS(285), + [sym__concat] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_EQ_TILDE] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), }, [819] = { - [anon_sym_BANG_EQ] = ACTIONS(886), - [anon_sym_PLUS_EQ] = ACTIONS(886), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_RBRACK] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(884), - [sym_test_operator] = ACTIONS(886), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_PIPE_PIPE] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(886), - [sym__concat] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(886), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_AMP_AMP] = ACTIONS(886), - [anon_sym_DASH_EQ] = ACTIONS(886), + [anon_sym_BANG_EQ] = ACTIONS(441), + [anon_sym_PLUS_EQ] = ACTIONS(441), + [sym_test_operator] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(441), + [anon_sym_RBRACK] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(439), + [anon_sym_EQ_EQ] = ACTIONS(441), + [anon_sym_PIPE_PIPE] = ACTIONS(441), + [anon_sym_GT_EQ] = ACTIONS(441), + [sym__concat] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(441), + [anon_sym_EQ_TILDE] = ACTIONS(441), + [anon_sym_DASH_DASH] = ACTIONS(441), + [anon_sym_AMP_AMP] = ACTIONS(441), + [anon_sym_LT_EQ] = ACTIONS(441), + [anon_sym_DASH_EQ] = ACTIONS(441), }, [820] = { - [sym_command_substitution] = STATE(819), - [sym_simple_expansion] = STATE(819), - [sym_string_expansion] = STATE(819), - [sym_string] = STATE(819), - [sym_process_substitution] = STATE(819), - [sym_expansion] = STATE(819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1386), - [sym_word] = ACTIONS(1388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(2613), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym__special_character] = ACTIONS(1386), - [sym_number] = ACTIONS(1388), + [aux_sym_concatenation_repeat1] = STATE(832), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(479), + [anon_sym_RBRACK] = ACTIONS(479), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_EQ_EQ] = ACTIONS(479), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym__concat] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(479), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [821] = { - [aux_sym_concatenation_repeat1] = STATE(821), - [anon_sym_BANG_EQ] = ACTIONS(886), - [anon_sym_PLUS_EQ] = ACTIONS(886), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_RBRACK] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(884), - [sym_test_operator] = ACTIONS(886), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_PIPE_PIPE] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(886), - [sym__concat] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(886), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_AMP_AMP] = ACTIONS(886), - [anon_sym_DASH_EQ] = ACTIONS(886), + [sym__concat] = ACTIONS(507), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_in] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), }, [822] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), + [sym__concat] = ACTIONS(511), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [sym__string_content] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_in] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), }, [823] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [sym__string_content] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(515), + [anon_sym_PLUS_EQ] = ACTIONS(515), + [sym_test_operator] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_RBRACK] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(515), + [anon_sym_PIPE_PIPE] = ACTIONS(515), + [anon_sym_GT_EQ] = ACTIONS(515), + [sym__concat] = ACTIONS(515), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_EQ_TILDE] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(515), + [anon_sym_DASH_EQ] = ACTIONS(515), }, [824] = { - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_esac] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [aux_sym__simple_variable_name_token1] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(287), + [sym_test_operator] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_RBRACK] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [sym__special_character] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_EQ_TILDE] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_DASH_EQ] = ACTIONS(287), }, [825] = { - [aux_sym_concatenation_repeat1] = STATE(1234), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_AMP_GT_GT] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_GT_LPAREN] = ACTIONS(1033), - [sym_number] = ACTIONS(1033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [sym__concat] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(1033), - [sym_word] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_LT_AMP] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [sym__special_character] = ACTIONS(1033), - [anon_sym_LT_LT_DASH] = ACTIONS(1033), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [sym_raw_string] = ACTIONS(1033), - [sym_variable_name] = ACTIONS(1035), - [sym_file_descriptor] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_AMP_GT] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_GT_AMP] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1033), - [anon_sym_esac] = ACTIONS(1033), - [anon_sym_LT_LPAREN] = ACTIONS(1033), - [sym_ansii_c_string] = ACTIONS(1033), - [aux_sym__simple_variable_name_token1] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_SEMI_SEMI] = ACTIONS(1033), - [anon_sym_PIPE_AMP] = ACTIONS(1033), + [aux_sym__literal_repeat1] = STATE(825), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_PLUS_EQ] = ACTIONS(813), + [sym_test_operator] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_RBRACK] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_GT_EQ] = ACTIONS(813), + [sym__special_character] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(813), + [anon_sym_DASH_DASH] = ACTIONS(813), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_DASH_EQ] = ACTIONS(813), }, [826] = { - [aux_sym__literal_repeat1] = STATE(1269), - [anon_sym_AMP] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_GT_LPAREN] = ACTIONS(1039), - [sym_number] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [sym_word] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_LT_AMP] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1039), - [sym__special_character] = ACTIONS(2278), - [anon_sym_LT_LT_DASH] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1039), - [sym_raw_string] = ACTIONS(1039), - [sym_variable_name] = ACTIONS(1043), - [sym_file_descriptor] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [anon_sym_LT_LT_LT] = ACTIONS(1039), - [anon_sym_GT_AMP] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), - [anon_sym_esac] = ACTIONS(1039), - [anon_sym_LT_LPAREN] = ACTIONS(1039), - [sym_ansii_c_string] = ACTIONS(1039), - [aux_sym__simple_variable_name_token1] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_PLUS_EQ] = ACTIONS(933), + [sym_test_operator] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_RBRACK] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [sym__concat] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_DASH_EQ] = ACTIONS(933), }, [827] = { - [anon_sym_BANG_EQ] = ACTIONS(1067), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_RBRACK] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_EQ] = ACTIONS(1065), - [sym_test_operator] = ACTIONS(1067), - [anon_sym_EQ_EQ] = ACTIONS(1067), - [anon_sym_PIPE_PIPE] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [sym__concat] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_AMP_AMP] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), + [sym__concat] = ACTIONS(969), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_in] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), }, [828] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), + [sym__concat] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [sym__string_content] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_in] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), }, [829] = { - [sym_string] = STATE(812), - [anon_sym__] = ACTIONS(2618), - [anon_sym_PLUS_EQ] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [anon_sym_0] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_EQ_TILDE] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_LT_EQ] = ACTIONS(1231), - [anon_sym_DASH_EQ] = ACTIONS(1231), - [anon_sym_BANG_EQ] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2620), - [sym_raw_string] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_RBRACK] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2624), - [sym_test_operator] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1231), - [anon_sym_GT_EQ] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(2624), + [anon_sym_BANG_EQ] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [sym_test_operator] = ACTIONS(977), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(977), + [anon_sym_PIPE_PIPE] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(977), + [sym__concat] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_EQ_TILDE] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_AMP_AMP] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), }, [830] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [sym__string_content] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(981), + [sym_test_operator] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [sym__concat] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_EQ_TILDE] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_DASH_EQ] = ACTIONS(981), }, [831] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [sym__string_content] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), + [sym_expansion] = STATE(830), + [sym_string_expansion] = STATE(830), + [sym_simple_expansion] = STATE(830), + [sym_string] = STATE(830), + [sym_command_substitution] = STATE(830), + [sym_process_substitution] = STATE(830), + [sym_arithmetic_expansion] = STATE(830), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_number] = ACTIONS(2723), + [sym__special_character] = ACTIONS(2725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), + [anon_sym_BQUOTE] = ACTIONS(319), + [sym_raw_string] = ACTIONS(2725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [sym_word] = ACTIONS(2723), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(2727), + [sym_ansii_c_string] = ACTIONS(2725), }, [832] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [sym__string_content] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), + [aux_sym_concatenation_repeat1] = STATE(832), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(981), + [sym_test_operator] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(981), + [sym__concat] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_EQ_TILDE] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_DASH_EQ] = ACTIONS(981), }, [833] = { - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_AMP_GT_GT] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_GT_LPAREN] = ACTIONS(1370), - [sym_number] = ACTIONS(1370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [sym_word] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_LT_AMP] = ACTIONS(1370), - [anon_sym_GT_GT] = ACTIONS(1370), - [sym__special_character] = ACTIONS(1370), - [anon_sym_LT_LT_DASH] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [sym_raw_string] = ACTIONS(1370), - [sym_variable_name] = ACTIONS(1372), - [sym_file_descriptor] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_AMP_GT] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_LT_LT_LT] = ACTIONS(1370), - [anon_sym_GT_AMP] = ACTIONS(1370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), - [anon_sym_esac] = ACTIONS(1370), - [anon_sym_LT_LPAREN] = ACTIONS(1370), - [sym_ansii_c_string] = ACTIONS(1370), - [aux_sym__simple_variable_name_token1] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_SEMI_SEMI] = ACTIONS(1370), - [anon_sym_PIPE_AMP] = ACTIONS(1370), + [sym__concat] = ACTIONS(1034), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_in] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), }, [834] = { - [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_PLUS_EQ] = ACTIONS(1402), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [anon_sym_RBRACK] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1400), - [sym_test_operator] = ACTIONS(1402), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1402), - [sym__concat] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1402), + [sym__concat] = ACTIONS(1088), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_in] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), }, [835] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [sym__string_content] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), + [aux_sym_concatenation_repeat1] = STATE(1287), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [sym__concat] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(1120), + [aux_sym__simple_variable_name_token1] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [sym_file_descriptor] = ACTIONS(1124), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [anon_sym_esac] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [836] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [sym__string_content] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1120), + [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [aux_sym__simple_variable_name_token1] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_LT_LT_DASH] = ACTIONS(1120), + [anon_sym_GT_LPAREN] = ACTIONS(1120), + [sym_number] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [sym_variable_name] = ACTIONS(1124), + [sym_file_descriptor] = ACTIONS(1124), + [sym_word] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_AMP_GT] = ACTIONS(1120), + [sym__special_character] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_GT_AMP] = ACTIONS(1120), + [anon_sym_esac] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(1120), + [sym_raw_string] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), + [anon_sym_PIPE_AMP] = ACTIONS(1120), }, [837] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), + [aux_sym__literal_repeat1] = STATE(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [sym_ansii_c_string] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [aux_sym__simple_variable_name_token1] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1126), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_number] = ACTIONS(1126), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), + [sym_variable_name] = ACTIONS(1128), + [sym_file_descriptor] = ACTIONS(1128), + [sym_word] = ACTIONS(1126), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), + [sym__special_character] = ACTIONS(2375), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), + [anon_sym_esac] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_raw_string] = ACTIONS(1126), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [sym__string_content] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), }, [838] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), + [sym__concat] = ACTIONS(973), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [sym__string_content] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_in] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), }, [839] = { - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_AMP_GT_GT] = ACTIONS(1618), - [anon_sym_DOLLAR] = ACTIONS(1618), - [anon_sym_LT_LT] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [anon_sym_GT_LPAREN] = ACTIONS(1618), - [sym_number] = ACTIONS(1618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1618), - [anon_sym_PIPE_PIPE] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [sym_word] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_LT_AMP] = ACTIONS(1618), - [anon_sym_GT_GT] = ACTIONS(1618), - [sym__special_character] = ACTIONS(1618), - [anon_sym_LT_LT_DASH] = ACTIONS(1618), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [sym_raw_string] = ACTIONS(1618), - [sym_variable_name] = ACTIONS(1620), - [sym_file_descriptor] = ACTIONS(1620), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_AMP_GT] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_LT_LT_LT] = ACTIONS(1618), - [anon_sym_GT_AMP] = ACTIONS(1618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), - [anon_sym_esac] = ACTIONS(1618), - [anon_sym_LT_LPAREN] = ACTIONS(1618), - [sym_ansii_c_string] = ACTIONS(1618), - [aux_sym__simple_variable_name_token1] = ACTIONS(1618), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_SEMI_SEMI] = ACTIONS(1618), - [anon_sym_PIPE_AMP] = ACTIONS(1618), + [anon_sym_BANG_EQ] = ACTIONS(1298), + [anon_sym_PLUS_EQ] = ACTIONS(1298), + [sym_test_operator] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_RBRACK] = ACTIONS(1298), + [anon_sym_LT_LT] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1298), + [anon_sym_PIPE_PIPE] = ACTIONS(1298), + [anon_sym_GT_EQ] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1298), + [anon_sym_EQ_TILDE] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1298), + [anon_sym_LT_EQ] = ACTIONS(1298), + [anon_sym_DASH_EQ] = ACTIONS(1298), }, [840] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), + [sym_string] = STATE(823), + [anon_sym_0] = ACTIONS(2732), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(2738), + [aux_sym__simple_variable_name_token1] = ACTIONS(2732), + [anon_sym__] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(2736), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_RBRACK] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1308), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [sym__string_content] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), + [sym_raw_string] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(2738), + [sym_test_operator] = ACTIONS(1312), }, [841] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), + [sym__concat] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [sym__string_content] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_in] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), }, [842] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), + [sym__concat] = ACTIONS(1412), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [sym__string_content] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_in] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), }, [843] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), + [sym__concat] = ACTIONS(1430), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [sym__string_content] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_in] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), }, [844] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [sym__string_content] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), + [anon_sym_LT_LPAREN] = ACTIONS(1438), + [sym_ansii_c_string] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [aux_sym__simple_variable_name_token1] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_LT_AMP] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_LT_LT_DASH] = ACTIONS(1438), + [anon_sym_GT_LPAREN] = ACTIONS(1438), + [sym_number] = ACTIONS(1438), + [anon_sym_LF] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), + [sym_variable_name] = ACTIONS(1440), + [sym_file_descriptor] = ACTIONS(1440), + [sym_word] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_AMP_GT] = ACTIONS(1438), + [sym__special_character] = ACTIONS(1438), + [anon_sym_LT_LT_LT] = ACTIONS(1438), + [anon_sym_GT_AMP] = ACTIONS(1438), + [anon_sym_esac] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [sym_raw_string] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI_SEMI] = ACTIONS(1438), + [anon_sym_PIPE_AMP] = ACTIONS(1438), }, [845] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), + [sym__concat] = ACTIONS(1661), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [sym__string_content] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), }, [846] = { - [aux_sym_concatenation_repeat1] = STATE(850), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [sym__concat] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), }, [847] = { - [anon_sym_BANG_EQ] = ACTIONS(411), - [anon_sym_PLUS_EQ] = ACTIONS(411), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(411), - [anon_sym_RBRACK] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(409), - [sym_test_operator] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(411), - [anon_sym_PIPE_PIPE] = ACTIONS(411), - [anon_sym_GT_EQ] = ACTIONS(411), - [sym__concat] = ACTIONS(411), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_EQ_TILDE] = ACTIONS(411), - [anon_sym_DASH_DASH] = ACTIONS(411), - [anon_sym_LT_EQ] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(411), - [anon_sym_DASH_EQ] = ACTIONS(411), + [sym__concat] = ACTIONS(1683), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_in] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), }, [848] = { - [anon_sym_BANG_EQ] = ACTIONS(415), - [anon_sym_PLUS_EQ] = ACTIONS(415), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(415), - [anon_sym_RBRACK] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(413), - [sym_test_operator] = ACTIONS(415), - [anon_sym_EQ_EQ] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_GT_EQ] = ACTIONS(415), - [sym__concat] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_EQ_TILDE] = ACTIONS(415), - [anon_sym_DASH_DASH] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_DASH_EQ] = ACTIONS(415), + [sym__concat] = ACTIONS(1687), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_in] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), }, [849] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_variable_name] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [aux_sym__simple_variable_name_token1] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LT] = ACTIONS(1691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_LT_LPAREN] = ACTIONS(1691), + [sym_ansii_c_string] = ACTIONS(1691), + [anon_sym_PIPE_PIPE] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [aux_sym__simple_variable_name_token1] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_LT_AMP] = ACTIONS(1691), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_LT_LT_DASH] = ACTIONS(1691), + [anon_sym_GT_LPAREN] = ACTIONS(1691), + [sym_number] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), + [sym_variable_name] = ACTIONS(1693), + [sym_file_descriptor] = ACTIONS(1693), + [sym_word] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_AMP_GT] = ACTIONS(1691), + [sym__special_character] = ACTIONS(1691), + [anon_sym_LT_LT_LT] = ACTIONS(1691), + [anon_sym_GT_AMP] = ACTIONS(1691), + [anon_sym_esac] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_raw_string] = ACTIONS(1691), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_SEMI_SEMI] = ACTIONS(1691), + [anon_sym_PIPE_AMP] = ACTIONS(1691), }, [850] = { - [aux_sym_concatenation_repeat1] = STATE(858), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [sym_variable_name] = ACTIONS(433), - [anon_sym_RPAREN] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [aux_sym__simple_variable_name_token1] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [sym__concat] = ACTIONS(1870), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), }, [851] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [sym_variable_name] = ACTIONS(597), - [anon_sym_RPAREN] = ACTIONS(595), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [aux_sym__simple_variable_name_token1] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [sym__concat] = ACTIONS(1876), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_in] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), }, [852] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [sym__concat] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_in] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), }, [853] = { - [aux_sym__literal_repeat1] = STATE(853), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [sym__special_character] = ACTIONS(2630), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [sym_variable_name] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(647), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [aux_sym__simple_variable_name_token1] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [sym__concat] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), }, [854] = { - [anon_sym_BANG_EQ] = ACTIONS(878), - [anon_sym_PLUS_EQ] = ACTIONS(878), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(878), - [anon_sym_RBRACK] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [sym_test_operator] = ACTIONS(878), - [anon_sym_EQ_EQ] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(878), - [sym__concat] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(878), - [anon_sym_DASH_DASH] = ACTIONS(878), - [anon_sym_LT_EQ] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_DASH_EQ] = ACTIONS(878), + [sym__concat] = ACTIONS(1959), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), }, [855] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [sym_variable_name] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [aux_sym__simple_variable_name_token1] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [sym__concat] = ACTIONS(1963), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_in] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), }, [856] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [aux_sym_concatenation_repeat1] = STATE(858), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(2113), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(285), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [857] = { - [sym_command_substitution] = STATE(856), - [sym_string] = STATE(856), - [sym_process_substitution] = STATE(856), - [sym_simple_expansion] = STATE(856), - [sym_string_expansion] = STATE(856), - [sym_expansion] = STATE(856), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2633), - [anon_sym_DOLLAR] = ACTIONS(2635), - [anon_sym_BQUOTE] = ACTIONS(2637), - [anon_sym_GT_LPAREN] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_word] = ACTIONS(2641), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2647), - [anon_sym_LT_LPAREN] = ACTIONS(2639), - [sym_ansii_c_string] = ACTIONS(2633), - [sym__special_character] = ACTIONS(2633), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [aux_sym__simple_variable_name_token1] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_variable_name] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(439), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(441), + [anon_sym_AMP_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [858] = { - [aux_sym_concatenation_repeat1] = STATE(858), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [aux_sym_concatenation_repeat1] = STATE(870), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(475), + [aux_sym__simple_variable_name_token1] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [sym_variable_name] = ACTIONS(479), + [anon_sym_RPAREN] = ACTIONS(475), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [anon_sym_AMP_GT] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [859] = { - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(907), - [sym_test_operator] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(909), - [sym__concat] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_PLUS_EQ] = ACTIONS(507), + [sym_test_operator] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_EQ] = ACTIONS(507), + [sym__concat] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_EQ_TILDE] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(507), + [anon_sym_DASH_EQ] = ACTIONS(507), }, [860] = { - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(959), - [sym_test_operator] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [sym__concat] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(511), + [anon_sym_PLUS_EQ] = ACTIONS(511), + [sym_test_operator] = ACTIONS(511), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(511), + [anon_sym_LT_LT] = ACTIONS(511), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(511), + [anon_sym_PIPE_PIPE] = ACTIONS(511), + [anon_sym_GT_EQ] = ACTIONS(511), + [sym__concat] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(511), + [anon_sym_EQ_TILDE] = ACTIONS(511), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_AMP_AMP] = ACTIONS(511), + [anon_sym_LT_EQ] = ACTIONS(511), + [anon_sym_DASH_EQ] = ACTIONS(511), }, [861] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [aux_sym__simple_variable_name_token1] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [aux_sym__simple_variable_name_token1] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(513), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [862] = { - [anon_sym_BANG_EQ] = ACTIONS(878), - [anon_sym_PLUS_EQ] = ACTIONS(878), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(878), - [anon_sym_RBRACK] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [sym_test_operator] = ACTIONS(878), - [anon_sym_EQ_EQ] = ACTIONS(878), - [anon_sym_PIPE_PIPE] = ACTIONS(878), - [anon_sym_GT_EQ] = ACTIONS(878), - [sym__concat] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(878), - [anon_sym_DASH_DASH] = ACTIONS(878), - [anon_sym_LT_EQ] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(878), - [anon_sym_DASH_EQ] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(285), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [863] = { - [sym_string] = STATE(849), - [anon_sym__] = ACTIONS(2652), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2652), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_variable_name] = ACTIONS(1231), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2652), - [sym_ansii_c_string] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_LT_LT] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2652), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(2654), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(2654), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2652), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2652), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [aux_sym__literal_repeat1] = STATE(863), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [aux_sym__simple_variable_name_token1] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [sym_variable_name] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(811), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(813), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(2744), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [864] = { - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1237), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1237), - [anon_sym_RBRACK] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_EQ] = ACTIONS(1235), - [sym_test_operator] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT_EQ] = ACTIONS(1237), - [sym__concat] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_EQ_TILDE] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [aux_sym__simple_variable_name_token1] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [sym_variable_name] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(931), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [sym_file_descriptor] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [865] = { - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_RBRACK] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [sym_test_operator] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(969), + [anon_sym_RBRACK] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(969), + [anon_sym_PIPE_PIPE] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(969), + [sym__concat] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(969), + [anon_sym_EQ_TILDE] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), }, [866] = { - [anon_sym_BANG_EQ] = ACTIONS(1306), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_RBRACK] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1304), - [sym_test_operator] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1306), - [sym__concat] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [sym_test_operator] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_RBRACK] = ACTIONS(973), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_PIPE_PIPE] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [sym__concat] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), }, [867] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [sym_variable_name] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1400), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [aux_sym__simple_variable_name_token1] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [aux_sym__simple_variable_name_token1] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [sym_variable_name] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(977), + [anon_sym_AMP_GT] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [868] = { - [anon_sym_BANG_EQ] = ACTIONS(1460), - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_RBRACK] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1458), - [sym_test_operator] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1460), - [anon_sym_PIPE_PIPE] = ACTIONS(1460), - [anon_sym_GT_EQ] = ACTIONS(1460), - [sym__concat] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_EQ_TILDE] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_LT_EQ] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(979), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [869] = { - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_RBRACK] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1470), - [sym_test_operator] = ACTIONS(1472), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_GT_EQ] = ACTIONS(1472), - [sym__concat] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_EQ_TILDE] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), + [sym_expansion] = STATE(868), + [sym_string] = STATE(868), + [sym_command_substitution] = STATE(868), + [sym_process_substitution] = STATE(868), + [sym_simple_expansion] = STATE(868), + [sym_arithmetic_expansion] = STATE(868), + [sym_string_expansion] = STATE(868), + [anon_sym_GT_LPAREN] = ACTIONS(2747), + [sym_number] = ACTIONS(2749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2753), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2755), + [sym_word] = ACTIONS(2749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), + [anon_sym_LT_LPAREN] = ACTIONS(2747), + [sym_ansii_c_string] = ACTIONS(2757), + [sym__special_character] = ACTIONS(2757), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2759), + [sym_raw_string] = ACTIONS(2757), + [anon_sym_DOLLAR] = ACTIONS(2761), }, [870] = { - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_PLUS_EQ] = ACTIONS(1482), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_RBRACK] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1480), - [sym_test_operator] = ACTIONS(1482), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_PIPE_PIPE] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1482), - [sym__concat] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_EQ_TILDE] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_AMP_AMP] = ACTIONS(1482), - [anon_sym_DASH_EQ] = ACTIONS(1482), + [aux_sym_concatenation_repeat1] = STATE(870), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(979), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [871] = { - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_PLUS_EQ] = ACTIONS(1486), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_RBRACK] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_EQ] = ACTIONS(1484), - [sym_test_operator] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_PIPE_PIPE] = ACTIONS(1486), - [anon_sym_GT_EQ] = ACTIONS(1486), - [sym__concat] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1034), + [sym_test_operator] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_RBRACK] = ACTIONS(1034), + [anon_sym_LT_LT] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1034), + [anon_sym_PIPE_PIPE] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1034), + [sym__concat] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1034), + [anon_sym_EQ_TILDE] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_AMP_AMP] = ACTIONS(1034), + [anon_sym_LT_EQ] = ACTIONS(1034), + [anon_sym_DASH_EQ] = ACTIONS(1034), }, [872] = { - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_PLUS_EQ] = ACTIONS(1694), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_RBRACK] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1692), - [sym_test_operator] = ACTIONS(1694), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [anon_sym_GT_EQ] = ACTIONS(1694), - [sym__concat] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_EQ_TILDE] = ACTIONS(1694), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym_LT_EQ] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_DASH_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_PLUS_EQ] = ACTIONS(1088), + [sym_test_operator] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_RBRACK] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_GT_EQ] = ACTIONS(1088), + [sym__concat] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_EQ_TILDE] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_DASH_EQ] = ACTIONS(1088), }, [873] = { - [anon_sym_BANG_EQ] = ACTIONS(1700), - [anon_sym_PLUS_EQ] = ACTIONS(1700), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_RBRACK] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ] = ACTIONS(1698), - [sym_test_operator] = ACTIONS(1700), - [anon_sym_EQ_EQ] = ACTIONS(1700), - [anon_sym_PIPE_PIPE] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1700), - [sym__concat] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_EQ_TILDE] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [anon_sym_LT_EQ] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1700), - [anon_sym_DASH_EQ] = ACTIONS(1700), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [sym_test_operator] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_RBRACK] = ACTIONS(973), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_PIPE_PIPE] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [sym__concat] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_EQ_TILDE] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), }, [874] = { - [anon_sym_BANG_EQ] = ACTIONS(1704), - [anon_sym_PLUS_EQ] = ACTIONS(1704), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1704), - [anon_sym_RBRACK] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1702), - [sym_test_operator] = ACTIONS(1704), - [anon_sym_EQ_EQ] = ACTIONS(1704), - [anon_sym_PIPE_PIPE] = ACTIONS(1704), - [anon_sym_GT_EQ] = ACTIONS(1704), - [sym__concat] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_EQ_TILDE] = ACTIONS(1704), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_LT_EQ] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_DASH_EQ] = ACTIONS(1704), - }, - [875] = { - [anon_sym_BANG_EQ] = ACTIONS(1710), - [anon_sym_PLUS_EQ] = ACTIONS(1710), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1710), - [anon_sym_RBRACK] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_EQ] = ACTIONS(1708), - [sym_test_operator] = ACTIONS(1710), - [anon_sym_EQ_EQ] = ACTIONS(1710), - [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_GT_EQ] = ACTIONS(1710), - [sym__concat] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_EQ_TILDE] = ACTIONS(1710), - [anon_sym_DASH_DASH] = ACTIONS(1710), - [anon_sym_LT_EQ] = ACTIONS(1710), - [anon_sym_AMP_AMP] = ACTIONS(1710), - [anon_sym_DASH_EQ] = ACTIONS(1710), - }, - [876] = { - [anon_sym_BANG_EQ] = ACTIONS(1825), - [anon_sym_PLUS_EQ] = ACTIONS(1825), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1825), - [anon_sym_RBRACK] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [sym_test_operator] = ACTIONS(1825), - [anon_sym_EQ_EQ] = ACTIONS(1825), - [anon_sym_PIPE_PIPE] = ACTIONS(1825), - [anon_sym_GT_EQ] = ACTIONS(1825), - [sym__concat] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1825), - [anon_sym_DASH_DASH] = ACTIONS(1825), - [anon_sym_LT_EQ] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_DASH_EQ] = ACTIONS(1825), - }, - [877] = { - [anon_sym_BANG_EQ] = ACTIONS(1829), - [anon_sym_PLUS_EQ] = ACTIONS(1829), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(1829), - [anon_sym_RBRACK] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [sym_test_operator] = ACTIONS(1829), - [anon_sym_EQ_EQ] = ACTIONS(1829), - [anon_sym_PIPE_PIPE] = ACTIONS(1829), - [anon_sym_GT_EQ] = ACTIONS(1829), - [sym__concat] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1829), - [anon_sym_DASH_DASH] = ACTIONS(1829), - [anon_sym_LT_EQ] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_DASH_EQ] = ACTIONS(1829), - }, + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [aux_sym__simple_variable_name_token1] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym_variable_name] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(1296), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [anon_sym_AMP_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), + }, + [875] = { + [sym_string] = STATE(861), + [anon_sym_0] = ACTIONS(2766), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym__] = ACTIONS(2766), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [sym_variable_name] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1308), + [sym_word] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2043), + [anon_sym_LT_LT] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(2766), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2768), + [sym_file_descriptor] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(2766), + [anon_sym_PIPE_AMP] = ACTIONS(1308), + }, + [876] = { + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_RBRACK] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1358), + [sym__concat] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + }, + [877] = { + [anon_sym_BANG_EQ] = ACTIONS(1412), + [anon_sym_PLUS_EQ] = ACTIONS(1412), + [sym_test_operator] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_LT_LT] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_EQ_EQ] = ACTIONS(1412), + [anon_sym_PIPE_PIPE] = ACTIONS(1412), + [anon_sym_GT_EQ] = ACTIONS(1412), + [sym__concat] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1412), + [anon_sym_EQ_TILDE] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_LT_EQ] = ACTIONS(1412), + [anon_sym_DASH_EQ] = ACTIONS(1412), + }, [878] = { - [aux_sym_concatenation_repeat1] = STATE(882), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(1430), + [anon_sym_PLUS_EQ] = ACTIONS(1430), + [sym_test_operator] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(1430), + [anon_sym_LT_LT] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_EQ_EQ] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_GT_EQ] = ACTIONS(1430), + [sym__concat] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1430), + [anon_sym_EQ_TILDE] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [anon_sym_LT_EQ] = ACTIONS(1430), + [anon_sym_DASH_EQ] = ACTIONS(1430), }, [879] = { - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_variable_name] = ACTIONS(411), - [anon_sym_RPAREN] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [aux_sym__simple_variable_name_token1] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(1661), + [anon_sym_PLUS_EQ] = ACTIONS(1661), + [sym_test_operator] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_RBRACK] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1661), + [sym__concat] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1661), + [anon_sym_EQ_TILDE] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1661), + [anon_sym_DASH_EQ] = ACTIONS(1661), }, [880] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_variable_name] = ACTIONS(415), - [anon_sym_RPAREN] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [aux_sym__simple_variable_name_token1] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [anon_sym_BANG_EQ] = ACTIONS(1673), + [anon_sym_PLUS_EQ] = ACTIONS(1673), + [sym_test_operator] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_RBRACK] = ACTIONS(1673), + [anon_sym_LT_LT] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1673), + [anon_sym_PIPE_PIPE] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1673), + [sym__concat] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1673), + [anon_sym_EQ_TILDE] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_AMP_AMP] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1673), + [anon_sym_DASH_EQ] = ACTIONS(1673), }, [881] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [aux_sym__simple_variable_name_token1] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_PLUS_EQ] = ACTIONS(1683), + [sym_test_operator] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_RBRACK] = ACTIONS(1683), + [anon_sym_LT_LT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_EQ] = ACTIONS(1681), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_GT_EQ] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_DASH_EQ] = ACTIONS(1683), }, [882] = { - [aux_sym_concatenation_repeat1] = STATE(890), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [aux_sym__simple_variable_name_token1] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_PLUS_EQ] = ACTIONS(1687), + [sym_test_operator] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_RBRACK] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_EQ] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_PIPE_PIPE] = ACTIONS(1687), + [anon_sym_GT_EQ] = ACTIONS(1687), + [sym__concat] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_AMP_AMP] = ACTIONS(1687), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_DASH_EQ] = ACTIONS(1687), }, [883] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [anon_sym_RPAREN] = ACTIONS(595), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [aux_sym__simple_variable_name_token1] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(1870), + [anon_sym_PLUS_EQ] = ACTIONS(1870), + [sym_test_operator] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_RBRACK] = ACTIONS(1870), + [anon_sym_LT_LT] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1870), + [anon_sym_PIPE_PIPE] = ACTIONS(1870), + [anon_sym_GT_EQ] = ACTIONS(1870), + [sym__concat] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1870), + [anon_sym_EQ_TILDE] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_AMP_AMP] = ACTIONS(1870), + [anon_sym_LT_EQ] = ACTIONS(1870), + [anon_sym_DASH_EQ] = ACTIONS(1870), }, [884] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(1876), + [anon_sym_PLUS_EQ] = ACTIONS(1876), + [sym_test_operator] = ACTIONS(1876), + [anon_sym_PLUS_PLUS] = ACTIONS(1876), + [anon_sym_RBRACK] = ACTIONS(1876), + [anon_sym_LT_LT] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1876), + [anon_sym_PIPE_PIPE] = ACTIONS(1876), + [anon_sym_GT_EQ] = ACTIONS(1876), + [sym__concat] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1876), + [anon_sym_EQ_TILDE] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1876), + [anon_sym_AMP_AMP] = ACTIONS(1876), + [anon_sym_LT_EQ] = ACTIONS(1876), + [anon_sym_DASH_EQ] = ACTIONS(1876), }, [885] = { - [aux_sym__literal_repeat1] = STATE(885), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [sym__special_character] = ACTIONS(2660), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [anon_sym_RPAREN] = ACTIONS(647), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [aux_sym__simple_variable_name_token1] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(1880), + [anon_sym_PLUS_EQ] = ACTIONS(1880), + [sym_test_operator] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1880), + [anon_sym_RBRACK] = ACTIONS(1880), + [anon_sym_LT_LT] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [anon_sym_GT_EQ] = ACTIONS(1880), + [sym__concat] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1880), + [anon_sym_EQ_TILDE] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1880), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_LT_EQ] = ACTIONS(1880), + [anon_sym_DASH_EQ] = ACTIONS(1880), }, [886] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(1886), + [anon_sym_PLUS_EQ] = ACTIONS(1886), + [sym_test_operator] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1886), + [anon_sym_RBRACK] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_GT_EQ] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_EQ_TILDE] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_LT_EQ] = ACTIONS(1886), + [anon_sym_DASH_EQ] = ACTIONS(1886), }, [887] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [aux_sym__simple_variable_name_token1] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(1959), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [sym_test_operator] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_RBRACK] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_EQ_TILDE] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), }, [888] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(1963), + [anon_sym_PLUS_EQ] = ACTIONS(1963), + [sym_test_operator] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_LT_LT] = ACTIONS(1963), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_EQ] = ACTIONS(1961), + [anon_sym_EQ_EQ] = ACTIONS(1963), + [anon_sym_PIPE_PIPE] = ACTIONS(1963), + [anon_sym_GT_EQ] = ACTIONS(1963), + [sym__concat] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(1963), + [anon_sym_EQ_TILDE] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_AMP_AMP] = ACTIONS(1963), + [anon_sym_LT_EQ] = ACTIONS(1963), + [anon_sym_DASH_EQ] = ACTIONS(1963), }, [889] = { - [sym_command_substitution] = STATE(888), - [sym_string] = STATE(888), - [sym_process_substitution] = STATE(888), - [sym_simple_expansion] = STATE(888), - [sym_string_expansion] = STATE(888), - [sym_expansion] = STATE(888), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(2665), - [anon_sym_BQUOTE] = ACTIONS(2667), - [anon_sym_GT_LPAREN] = ACTIONS(2669), - [sym_number] = ACTIONS(2671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2673), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_word] = ACTIONS(2671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2677), - [anon_sym_LT_LPAREN] = ACTIONS(2669), - [sym_ansii_c_string] = ACTIONS(2663), - [sym__special_character] = ACTIONS(2663), + [aux_sym_concatenation_repeat1] = STATE(891), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(285), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [890] = { - [aux_sym_concatenation_repeat1] = STATE(890), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [aux_sym__simple_variable_name_token1] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(439), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(441), + [anon_sym_AMP_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [891] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [sym_variable_name] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [aux_sym__simple_variable_name_token1] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [aux_sym_concatenation_repeat1] = STATE(903), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(475), + [aux_sym__simple_variable_name_token1] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(475), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [anon_sym_AMP_GT] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [892] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [sym_variable_name] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [aux_sym__simple_variable_name_token1] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [aux_sym__simple_variable_name_token1] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [sym_variable_name] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(505), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [sym_file_descriptor] = ACTIONS(507), + [anon_sym_AMP_GT] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [893] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [aux_sym__simple_variable_name_token1] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [aux_sym__simple_variable_name_token1] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [sym_variable_name] = ACTIONS(511), + [anon_sym_RPAREN] = ACTIONS(509), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_AMP_GT] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [894] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [aux_sym__simple_variable_name_token1] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [anon_sym_RPAREN] = ACTIONS(513), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [895] = { - [sym_string] = STATE(881), - [anon_sym__] = ACTIONS(2682), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2686), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1994), - [anon_sym_GT_AMP] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2682), - [sym_ansii_c_string] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_LT_LT] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(2684), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2682), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2682), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(285), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [896] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [sym_variable_name] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1235), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [aux_sym__simple_variable_name_token1] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [aux_sym__literal_repeat1] = STATE(896), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [aux_sym__simple_variable_name_token1] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(811), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(813), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(2774), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [897] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_variable_name] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [aux_sym__simple_variable_name_token1] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [aux_sym__simple_variable_name_token1] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [sym_file_descriptor] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [898] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_variable_name] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [aux_sym__simple_variable_name_token1] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [aux_sym__simple_variable_name_token1] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [sym_variable_name] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(967), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [sym_file_descriptor] = ACTIONS(969), + [anon_sym_AMP_GT] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [899] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [aux_sym__simple_variable_name_token1] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [900] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [sym_variable_name] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1458), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [aux_sym__simple_variable_name_token1] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [aux_sym__simple_variable_name_token1] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(977), + [anon_sym_AMP_GT] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [901] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [sym_variable_name] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1470), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [aux_sym__simple_variable_name_token1] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [902] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [sym_variable_name] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1480), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [aux_sym__simple_variable_name_token1] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [sym_expansion] = STATE(901), + [sym_string] = STATE(901), + [sym_command_substitution] = STATE(901), + [sym_process_substitution] = STATE(901), + [sym_simple_expansion] = STATE(901), + [sym_arithmetic_expansion] = STATE(901), + [sym_string_expansion] = STATE(901), + [anon_sym_GT_LPAREN] = ACTIONS(2777), + [sym_number] = ACTIONS(2779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2783), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2785), + [sym_word] = ACTIONS(2779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), + [anon_sym_LT_LPAREN] = ACTIONS(2777), + [sym_ansii_c_string] = ACTIONS(2787), + [sym__special_character] = ACTIONS(2787), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2789), + [sym_raw_string] = ACTIONS(2787), + [anon_sym_DOLLAR] = ACTIONS(2791), }, [903] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [sym_variable_name] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1484), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [aux_sym__simple_variable_name_token1] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [aux_sym_concatenation_repeat1] = STATE(903), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [904] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [sym_variable_name] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1692), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [aux_sym__simple_variable_name_token1] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [aux_sym__simple_variable_name_token1] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [sym_variable_name] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(1032), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [anon_sym_AMP_GT] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [905] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [sym_variable_name] = ACTIONS(1700), - [anon_sym_RPAREN] = ACTIONS(1698), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [aux_sym__simple_variable_name_token1] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [aux_sym__simple_variable_name_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [sym_variable_name] = ACTIONS(1088), + [anon_sym_RPAREN] = ACTIONS(1086), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [sym_file_descriptor] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [906] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [sym_variable_name] = ACTIONS(1704), - [anon_sym_RPAREN] = ACTIONS(1702), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [aux_sym__simple_variable_name_token1] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [907] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [aux_sym__simple_variable_name_token1] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [anon_sym_AMP_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [sym_variable_name] = ACTIONS(1710), - [anon_sym_RPAREN] = ACTIONS(1708), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [aux_sym__simple_variable_name_token1] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [908] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [sym_variable_name] = ACTIONS(1825), - [anon_sym_RPAREN] = ACTIONS(1823), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [aux_sym__simple_variable_name_token1] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [sym_string] = STATE(894), + [anon_sym_0] = ACTIONS(2796), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym__] = ACTIONS(2796), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(2798), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1308), + [sym_word] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2800), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2065), + [anon_sym_LT_LT] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(2796), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2798), + [sym_file_descriptor] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(2796), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(2796), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [909] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [sym_variable_name] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1827), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [aux_sym__simple_variable_name_token1] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [aux_sym__simple_variable_name_token1] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [sym_variable_name] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1356), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [910] = { - [aux_sym_concatenation_repeat1] = STATE(914), - [anon_sym_PERCENT] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(213), - [sym_raw_string] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_COLON_DASH] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_COLON_QMARK] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym__concat] = ACTIONS(897), - [sym_word] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [sym_ansii_c_string] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [aux_sym__simple_variable_name_token1] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [sym_variable_name] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1410), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [sym_file_descriptor] = ACTIONS(1412), + [anon_sym_AMP_GT] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [911] = { - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [aux_sym__simple_variable_name_token1] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_variable_name] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1428), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [anon_sym_AMP_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [anon_sym_RPAREN] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [aux_sym__simple_variable_name_token1] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [912] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [aux_sym__simple_variable_name_token1] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [aux_sym__simple_variable_name_token1] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [sym_variable_name] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1659), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [sym_file_descriptor] = ACTIONS(1661), + [anon_sym_AMP_GT] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [913] = { - [anon_sym_PERCENT] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(419), - [sym_raw_string] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_COLON_DASH] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_COLON_QMARK] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym__concat] = ACTIONS(419), - [sym_word] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [aux_sym__simple_variable_name_token1] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1671), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1673), + [anon_sym_AMP_GT] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [914] = { - [aux_sym_concatenation_repeat1] = STATE(922), - [anon_sym_PERCENT] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(433), - [sym_raw_string] = ACTIONS(433), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_RBRACE] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_COLON_DASH] = ACTIONS(429), - [anon_sym_EQ] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_COLON_QMARK] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(433), - [anon_sym_BQUOTE] = ACTIONS(433), - [anon_sym_DQUOTE] = ACTIONS(433), - [anon_sym_GT_LPAREN] = ACTIONS(433), - [sym__concat] = ACTIONS(2688), - [sym_word] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(433), - [anon_sym_LT_LPAREN] = ACTIONS(433), - [sym_ansii_c_string] = ACTIONS(433), - [anon_sym_COLON] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [aux_sym__simple_variable_name_token1] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [sym_variable_name] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [sym_file_descriptor] = ACTIONS(1683), + [anon_sym_AMP_GT] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [915] = { - [anon_sym_PERCENT] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(597), - [sym_raw_string] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_COLON_DASH] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_COLON_QMARK] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(597), - [anon_sym_BQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE] = ACTIONS(597), - [anon_sym_GT_LPAREN] = ACTIONS(597), - [sym__concat] = ACTIONS(597), - [sym_word] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), - [anon_sym_LT_LPAREN] = ACTIONS(597), - [sym_ansii_c_string] = ACTIONS(597), - [anon_sym_COLON] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [aux_sym__simple_variable_name_token1] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [sym_variable_name] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [sym_file_descriptor] = ACTIONS(1687), + [anon_sym_AMP_GT] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [916] = { - [anon_sym_PERCENT] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(213), - [sym_raw_string] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_COLON_DASH] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_COLON_QMARK] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_word] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [sym_ansii_c_string] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [aux_sym__simple_variable_name_token1] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [sym_variable_name] = ACTIONS(1870), + [anon_sym_RPAREN] = ACTIONS(1868), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [sym_file_descriptor] = ACTIONS(1870), + [anon_sym_AMP_GT] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [917] = { - [aux_sym__literal_repeat1] = STATE(917), - [anon_sym_PERCENT] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(652), - [sym_raw_string] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_COLON_DASH] = ACTIONS(647), - [anon_sym_EQ] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_COLON_QMARK] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(652), - [anon_sym_GT_LPAREN] = ACTIONS(652), - [sym_word] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(652), - [anon_sym_LT_LPAREN] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(652), - [anon_sym_COLON] = ACTIONS(647), - [sym__special_character] = ACTIONS(2690), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [aux_sym__simple_variable_name_token1] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [sym_variable_name] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1874), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [anon_sym_AMP_GT] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [918] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), - }, - [919] = { - [anon_sym_PERCENT] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(882), - [sym_raw_string] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_COLON_DASH] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_COLON_QMARK] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym__concat] = ACTIONS(882), - [sym_word] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [anon_sym_COLON] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - }, - [920] = { - [anon_sym_PERCENT] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(886), - [sym_raw_string] = ACTIONS(886), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_COLON_DASH] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_COLON_QMARK] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), - [anon_sym_BQUOTE] = ACTIONS(886), - [anon_sym_DQUOTE] = ACTIONS(886), - [anon_sym_GT_LPAREN] = ACTIONS(886), - [sym__concat] = ACTIONS(886), - [sym_word] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), - [anon_sym_LT_LPAREN] = ACTIONS(886), - [sym_ansii_c_string] = ACTIONS(886), - [anon_sym_COLON] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - }, - [921] = { - [sym_command_substitution] = STATE(920), - [sym_simple_expansion] = STATE(920), - [sym_string_expansion] = STATE(920), - [sym_string] = STATE(920), - [sym_process_substitution] = STATE(920), - [sym_expansion] = STATE(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2693), - [sym_word] = ACTIONS(2695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_DOLLAR] = ACTIONS(2697), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(2693), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym__special_character] = ACTIONS(2693), - [sym_number] = ACTIONS(2695), - }, - [922] = { - [aux_sym_concatenation_repeat1] = STATE(922), - [anon_sym_PERCENT] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(886), - [sym_raw_string] = ACTIONS(886), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_COLON_DASH] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_COLON_QMARK] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), - [anon_sym_BQUOTE] = ACTIONS(886), - [anon_sym_DQUOTE] = ACTIONS(886), - [anon_sym_GT_LPAREN] = ACTIONS(886), - [sym__concat] = ACTIONS(2699), - [sym_word] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), - [anon_sym_LT_LPAREN] = ACTIONS(886), - [sym_ansii_c_string] = ACTIONS(886), - [anon_sym_COLON] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - }, - [923] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [aux_sym__simple_variable_name_token1] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), - }, - [924] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [aux_sym__simple_variable_name_token1] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [aux_sym__simple_variable_name_token1] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1878), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [anon_sym_AMP_GT] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + }, + [919] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [aux_sym__simple_variable_name_token1] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1884), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), + }, + [920] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [aux_sym__simple_variable_name_token1] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [sym_variable_name] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1957), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [sym_file_descriptor] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), + }, + [921] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [aux_sym__simple_variable_name_token1] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [sym_variable_name] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1961), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1963), + [anon_sym_AMP_GT] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), + }, + [922] = { + [aux_sym_concatenation_repeat1] = STATE(924), + [anon_sym_COLON_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(287), + [sym_number] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_COLON_QMARK] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(285), + [anon_sym_POUND] = ACTIONS(287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [sym__concat] = ACTIONS(1030), + [anon_sym_PERCENT] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(287), + [sym_raw_string] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(285), + }, + [923] = { + [anon_sym_COLON_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(441), + [sym_number] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_COLON_QMARK] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(441), + [anon_sym_COLON] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(441), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(441), + [sym_raw_string] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(439), + }, + [924] = { + [aux_sym_concatenation_repeat1] = STATE(936), + [anon_sym_COLON_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(479), + [sym_number] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(479), + [anon_sym_DQUOTE] = ACTIONS(479), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_COLON_QMARK] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_POUND] = ACTIONS(479), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [sym__concat] = ACTIONS(2802), + [anon_sym_PERCENT] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_raw_string] = ACTIONS(479), + [anon_sym_DOLLAR] = ACTIONS(475), }, [925] = { - [anon_sym_PERCENT] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1067), - [sym_raw_string] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_COLON_DASH] = ACTIONS(1065), - [anon_sym_EQ] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_COLON_QMARK] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [anon_sym_BQUOTE] = ACTIONS(1067), - [anon_sym_DQUOTE] = ACTIONS(1067), - [anon_sym_GT_LPAREN] = ACTIONS(1067), - [sym__concat] = ACTIONS(1067), - [sym_word] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), - [anon_sym_LT_LPAREN] = ACTIONS(1067), - [sym_ansii_c_string] = ACTIONS(1067), - [anon_sym_COLON] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [aux_sym__simple_variable_name_token1] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [sym_file_descriptor] = ACTIONS(507), + [anon_sym_AMP_GT] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [926] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [aux_sym__simple_variable_name_token1] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_AMP_GT] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [927] = { - [sym_string] = STATE(913), - [anon_sym__] = ACTIONS(2702), - [anon_sym_PERCENT] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2704), - [sym_raw_string] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_DOLLAR] = ACTIONS(2708), - [anon_sym_AT] = ACTIONS(2702), - [anon_sym_RBRACE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(2708), - [anon_sym_COLON_DASH] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_COLON_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(2702), - [sym_word] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [anon_sym_0] = ACTIONS(2702), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [anon_sym_COLON] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2702), - [sym__special_character] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_COLON_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(515), + [sym_number] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_COLON_QMARK] = ACTIONS(513), + [anon_sym_EQ] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(513), + [anon_sym_POUND] = ACTIONS(515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(515), + [sym_raw_string] = ACTIONS(515), + [anon_sym_DOLLAR] = ACTIONS(513), }, [928] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [anon_sym_RPAREN] = ACTIONS(1235), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [aux_sym__simple_variable_name_token1] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_COLON_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(287), + [sym_number] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_COLON_QMARK] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(285), + [anon_sym_POUND] = ACTIONS(287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(287), + [sym_raw_string] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(285), }, [929] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [aux_sym__simple_variable_name_token1] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [aux_sym__literal_repeat1] = STATE(929), + [anon_sym_COLON_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(813), + [sym_number] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), + [anon_sym_DQUOTE] = ACTIONS(813), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(813), + [anon_sym_RBRACE] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_COLON_QMARK] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(811), + [anon_sym_POUND] = ACTIONS(813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [sym__special_character] = ACTIONS(2804), + [anon_sym_LT_LPAREN] = ACTIONS(813), + [sym_word] = ACTIONS(811), + [anon_sym_PERCENT] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(813), + [sym_raw_string] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(811), }, [930] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [aux_sym__simple_variable_name_token1] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_COLON_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_number] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_COLON_QMARK] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(931), }, [931] = { - [anon_sym_PERCENT] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1402), - [sym_raw_string] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_COLON_DASH] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_COLON_QMARK] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1402), - [anon_sym_BQUOTE] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1402), - [anon_sym_GT_LPAREN] = ACTIONS(1402), - [sym__concat] = ACTIONS(1402), - [sym_word] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1402), - [anon_sym_LT_LPAREN] = ACTIONS(1402), - [sym_ansii_c_string] = ACTIONS(1402), - [anon_sym_COLON] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [aux_sym__simple_variable_name_token1] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [sym_file_descriptor] = ACTIONS(969), + [anon_sym_AMP_GT] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [932] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1458), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [aux_sym__simple_variable_name_token1] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [933] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1470), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [aux_sym__simple_variable_name_token1] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [anon_sym_COLON_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(977), + [sym_number] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_COLON_QMARK] = ACTIONS(975), + [anon_sym_EQ] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(975), + [anon_sym_POUND] = ACTIONS(977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(977), + [sym_raw_string] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), }, [934] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [aux_sym__simple_variable_name_token1] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_COLON_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(981), + [sym_number] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_COLON_QMARK] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(979), + [anon_sym_POUND] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_raw_string] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), }, [935] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [aux_sym__simple_variable_name_token1] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [sym_expansion] = STATE(934), + [sym_string_expansion] = STATE(934), + [sym_simple_expansion] = STATE(934), + [sym_string] = STATE(934), + [sym_command_substitution] = STATE(934), + [sym_process_substitution] = STATE(934), + [sym_arithmetic_expansion] = STATE(934), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(2807), + [sym__special_character] = ACTIONS(2809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(2809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [sym_word] = ACTIONS(2807), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [anon_sym_DOLLAR] = ACTIONS(2811), + [sym_ansii_c_string] = ACTIONS(2809), }, [936] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [anon_sym_RPAREN] = ACTIONS(1692), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [aux_sym__simple_variable_name_token1] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [aux_sym_concatenation_repeat1] = STATE(936), + [anon_sym_COLON_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(981), + [sym_number] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_COLON_QMARK] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(979), + [anon_sym_POUND] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [sym__concat] = ACTIONS(2813), + [anon_sym_PERCENT] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_raw_string] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), }, [937] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [aux_sym__simple_variable_name_token1] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [aux_sym__simple_variable_name_token1] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1032), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [anon_sym_AMP_GT] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [938] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [anon_sym_RPAREN] = ACTIONS(1702), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [aux_sym__simple_variable_name_token1] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [aux_sym__simple_variable_name_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [sym_file_descriptor] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [939] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [anon_sym_RPAREN] = ACTIONS(1708), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [aux_sym__simple_variable_name_token1] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [940] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [aux_sym__simple_variable_name_token1] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [anon_sym_COLON_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1298), + [sym_number] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_COLON_QMARK] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1298), + [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PERCENT] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1298), + [sym_raw_string] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1296), }, [941] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [anon_sym_RPAREN] = ACTIONS(1827), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [aux_sym__simple_variable_name_token1] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [sym_string] = STATE(927), + [anon_sym_0] = ACTIONS(2816), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1312), + [sym_ansii_c_string] = ACTIONS(1312), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_QMARK] = ACTIONS(2816), + [aux_sym__simple_variable_name_token1] = ACTIONS(2816), + [anon_sym__] = ACTIONS(2816), + [anon_sym_DOLLAR] = ACTIONS(2818), + [anon_sym_COLON_DASH] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1312), + [sym_number] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2816), + [anon_sym_RBRACE] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1312), + [sym_raw_string] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2816), }, [942] = { - [aux_sym_concatenation_repeat1] = STATE(946), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [ts_builtin_sym_end] = ACTIONS(213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [aux_sym__simple_variable_name_token1] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [943] = { - [anon_sym_PERCENT] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(411), - [sym_raw_string] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_COLON_DASH] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_COLON_QMARK] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym__concat] = ACTIONS(411), - [sym_word] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [anon_sym_COLON] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [aux_sym__simple_variable_name_token1] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [sym_file_descriptor] = ACTIONS(1412), + [anon_sym_AMP_GT] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [944] = { - [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [aux_sym__simple_variable_name_token1] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [anon_sym_AMP_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_COLON_DASH] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_COLON_QMARK] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym__concat] = ACTIONS(415), - [sym_word] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_COLON] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [945] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_variable_name] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [ts_builtin_sym_end] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [aux_sym__simple_variable_name_token1] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1659), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [sym_file_descriptor] = ACTIONS(1661), + [anon_sym_AMP_GT] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [946] = { - [aux_sym_concatenation_repeat1] = STATE(954), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [sym_variable_name] = ACTIONS(433), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [ts_builtin_sym_end] = ACTIONS(433), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [aux_sym__simple_variable_name_token1] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1673), + [anon_sym_AMP_GT] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [947] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [sym_variable_name] = ACTIONS(597), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [ts_builtin_sym_end] = ACTIONS(597), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [aux_sym__simple_variable_name_token1] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [sym_file_descriptor] = ACTIONS(1683), + [anon_sym_AMP_GT] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [948] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [ts_builtin_sym_end] = ACTIONS(213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [aux_sym__simple_variable_name_token1] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [sym_file_descriptor] = ACTIONS(1687), + [anon_sym_AMP_GT] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [949] = { - [aux_sym__literal_repeat1] = STATE(949), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [sym__special_character] = ACTIONS(2712), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [sym_variable_name] = ACTIONS(652), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [ts_builtin_sym_end] = ACTIONS(652), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [aux_sym__simple_variable_name_token1] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [anon_sym_RPAREN] = ACTIONS(1868), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [sym_file_descriptor] = ACTIONS(1870), + [anon_sym_AMP_GT] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [950] = { - [anon_sym_PERCENT] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_COLON_DASH] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_COLON_QMARK] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym__concat] = ACTIONS(878), - [sym_word] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [aux_sym__simple_variable_name_token1] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [anon_sym_AMP_GT] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [951] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [sym_variable_name] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [ts_builtin_sym_end] = ACTIONS(882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [aux_sym__simple_variable_name_token1] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1878), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [anon_sym_AMP_GT] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [952] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [aux_sym__simple_variable_name_token1] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [953] = { - [sym_command_substitution] = STATE(952), - [sym_simple_expansion] = STATE(952), - [sym_string_expansion] = STATE(952), - [sym_string] = STATE(952), - [sym_process_substitution] = STATE(952), - [sym_expansion] = STATE(952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2715), - [sym_word] = ACTIONS(2717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(563), - [sym_ansii_c_string] = ACTIONS(2715), - [anon_sym_BQUOTE] = ACTIONS(561), - [anon_sym_GT_LPAREN] = ACTIONS(563), - [sym__special_character] = ACTIONS(2715), - [sym_number] = ACTIONS(2717), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [aux_sym__simple_variable_name_token1] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [anon_sym_RPAREN] = ACTIONS(1957), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [sym_file_descriptor] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [954] = { - [aux_sym_concatenation_repeat1] = STATE(954), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [aux_sym__simple_variable_name_token1] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1961), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1963), + [anon_sym_AMP_GT] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [955] = { - [anon_sym_PERCENT] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(909), - [sym_raw_string] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_COLON_DASH] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_COLON_QMARK] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(909), - [anon_sym_BQUOTE] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [anon_sym_GT_LPAREN] = ACTIONS(909), - [sym__concat] = ACTIONS(909), - [sym_word] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(909), - [anon_sym_LT_LPAREN] = ACTIONS(909), - [sym_ansii_c_string] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), + [aux_sym_concatenation_repeat1] = STATE(957), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [956] = { - [anon_sym_PERCENT] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(961), - [sym_raw_string] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_COLON_DASH] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_COLON_QMARK] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [anon_sym_GT_LPAREN] = ACTIONS(961), - [sym__concat] = ACTIONS(961), - [sym_word] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), - [anon_sym_LT_LPAREN] = ACTIONS(961), - [sym_ansii_c_string] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_variable_name] = ACTIONS(441), + [sym_file_descriptor] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [ts_builtin_sym_end] = ACTIONS(441), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [957] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(1067), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [aux_sym_concatenation_repeat1] = STATE(969), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [sym_variable_name] = ACTIONS(479), + [sym_file_descriptor] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [ts_builtin_sym_end] = ACTIONS(479), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [958] = { - [anon_sym_PERCENT] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(878), - [sym_raw_string] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_COLON_DASH] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_COLON_QMARK] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym__concat] = ACTIONS(878), - [sym_word] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), + [anon_sym_COLON_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(507), + [sym_number] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_COLON_QMARK] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_raw_string] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(505), }, [959] = { - [sym_string] = STATE(945), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym__] = ACTIONS(2724), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2726), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2724), - [sym__special_character] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2726), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_raw_string] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2726), - [sym_variable_name] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(2730), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [ts_builtin_sym_end] = ACTIONS(1231), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2724), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_COLON_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(511), + [sym_number] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(511), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_COLON_QMARK] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(511), + [anon_sym_COLON] = ACTIONS(509), + [anon_sym_POUND] = ACTIONS(511), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(511), + [sym_raw_string] = ACTIONS(511), + [anon_sym_DOLLAR] = ACTIONS(509), }, [960] = { - [anon_sym_PERCENT] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1237), - [sym_raw_string] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_COLON_DASH] = ACTIONS(1235), - [anon_sym_EQ] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_COLON_QMARK] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [anon_sym_BQUOTE] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [anon_sym_GT_LPAREN] = ACTIONS(1237), - [sym__concat] = ACTIONS(1237), - [sym_word] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [anon_sym_LT_LPAREN] = ACTIONS(1237), - [sym_ansii_c_string] = ACTIONS(1237), - [anon_sym_COLON] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_file_descriptor] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_AMP_GT] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [ts_builtin_sym_end] = ACTIONS(515), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [961] = { - [anon_sym_PERCENT] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_COLON_DASH] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_COLON_QMARK] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [sym_word] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_COLON] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [962] = { - [anon_sym_PERCENT] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1306), - [sym_raw_string] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_COLON_DASH] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_COLON_QMARK] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), - [anon_sym_BQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [anon_sym_GT_LPAREN] = ACTIONS(1306), - [sym__concat] = ACTIONS(1306), - [sym_word] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1306), - [anon_sym_LT_LPAREN] = ACTIONS(1306), - [sym_ansii_c_string] = ACTIONS(1306), - [anon_sym_COLON] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), + [aux_sym__literal_repeat1] = STATE(962), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [sym_variable_name] = ACTIONS(813), + [sym_file_descriptor] = ACTIONS(813), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(2826), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [ts_builtin_sym_end] = ACTIONS(813), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [963] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [sym_variable_name] = ACTIONS(1402), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [ts_builtin_sym_end] = ACTIONS(1402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [sym_variable_name] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [ts_builtin_sym_end] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [964] = { - [anon_sym_PERCENT] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1460), - [sym_raw_string] = ACTIONS(1460), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_COLON_DASH] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_COLON_QMARK] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1460), - [anon_sym_BQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [anon_sym_GT_LPAREN] = ACTIONS(1460), - [sym__concat] = ACTIONS(1460), - [sym_word] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), - [anon_sym_LT_LPAREN] = ACTIONS(1460), - [sym_ansii_c_string] = ACTIONS(1460), - [anon_sym_COLON] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), + [anon_sym_COLON_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(969), + [sym_number] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_COLON_QMARK] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(969), + [anon_sym_COLON] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(969), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PERCENT] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(969), + [sym_raw_string] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), }, [965] = { - [anon_sym_PERCENT] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1472), - [sym_raw_string] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_COLON_DASH] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_COLON_QMARK] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1472), - [anon_sym_BQUOTE] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [anon_sym_GT_LPAREN] = ACTIONS(1472), - [sym__concat] = ACTIONS(1472), - [sym_word] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1472), - [anon_sym_LT_LPAREN] = ACTIONS(1472), - [sym_ansii_c_string] = ACTIONS(1472), - [anon_sym_COLON] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), + [anon_sym_COLON_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(973), + [sym_number] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_COLON_QMARK] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(973), + [anon_sym_COLON] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_raw_string] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), }, [966] = { - [anon_sym_PERCENT] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1482), - [sym_raw_string] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_COLON_DASH] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_COLON_QMARK] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1482), - [anon_sym_BQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [anon_sym_GT_LPAREN] = ACTIONS(1482), - [sym__concat] = ACTIONS(1482), - [sym_word] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), - [anon_sym_LT_LPAREN] = ACTIONS(1482), - [sym_ansii_c_string] = ACTIONS(1482), - [anon_sym_COLON] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [sym_variable_name] = ACTIONS(977), + [sym_file_descriptor] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [967] = { - [anon_sym_PERCENT] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1486), - [sym_raw_string] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_COLON_DASH] = ACTIONS(1484), - [anon_sym_EQ] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_COLON_QMARK] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), - [anon_sym_BQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [anon_sym_GT_LPAREN] = ACTIONS(1486), - [sym__concat] = ACTIONS(1486), - [sym_word] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), - [anon_sym_LT_LPAREN] = ACTIONS(1486), - [sym_ansii_c_string] = ACTIONS(1486), - [anon_sym_COLON] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [968] = { - [anon_sym_PERCENT] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1694), - [sym_raw_string] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_COLON_DASH] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_COLON_QMARK] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym__concat] = ACTIONS(1694), - [sym_word] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [anon_sym_COLON] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), + [sym_expansion] = STATE(967), + [sym_string_expansion] = STATE(967), + [sym_simple_expansion] = STATE(967), + [sym_string] = STATE(967), + [sym_command_substitution] = STATE(967), + [sym_process_substitution] = STATE(967), + [sym_arithmetic_expansion] = STATE(967), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(2829), + [sym__special_character] = ACTIONS(2831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(611), + [sym_raw_string] = ACTIONS(2831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(605), + [sym_word] = ACTIONS(2829), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(2833), + [sym_ansii_c_string] = ACTIONS(2831), }, [969] = { - [anon_sym_PERCENT] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1700), - [sym_raw_string] = ACTIONS(1700), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_COLON_DASH] = ACTIONS(1698), - [anon_sym_EQ] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_COLON_QMARK] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1700), - [anon_sym_BQUOTE] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_GT_LPAREN] = ACTIONS(1700), - [sym__concat] = ACTIONS(1700), - [sym_word] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), - [anon_sym_LT_LPAREN] = ACTIONS(1700), - [sym_ansii_c_string] = ACTIONS(1700), - [anon_sym_COLON] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), + [aux_sym_concatenation_repeat1] = STATE(969), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [970] = { - [anon_sym_PERCENT] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1704), - [sym_raw_string] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_COLON_DASH] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_COLON_QMARK] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym__concat] = ACTIONS(1704), - [sym_word] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [anon_sym_COLON] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), + [anon_sym_COLON_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1034), + [sym_number] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_COLON_QMARK] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1034), + [anon_sym_COLON] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(1034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PERCENT] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1034), + [sym_raw_string] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1032), }, [971] = { - [anon_sym_PERCENT] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1710), - [sym_raw_string] = ACTIONS(1710), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_COLON_DASH] = ACTIONS(1708), - [anon_sym_EQ] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_COLON_QMARK] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1710), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_DQUOTE] = ACTIONS(1710), - [anon_sym_GT_LPAREN] = ACTIONS(1710), - [sym__concat] = ACTIONS(1710), - [sym_word] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1710), - [anon_sym_LT_LPAREN] = ACTIONS(1710), - [sym_ansii_c_string] = ACTIONS(1710), - [anon_sym_COLON] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), + [anon_sym_COLON_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1088), + [sym_number] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_COLON_QMARK] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1088), + [anon_sym_COLON] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(1088), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PERCENT] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1088), + [sym_raw_string] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1086), }, [972] = { - [anon_sym_PERCENT] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1825), - [sym_raw_string] = ACTIONS(1825), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_COLON_DASH] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_COLON_QMARK] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1825), - [anon_sym_BQUOTE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [anon_sym_GT_LPAREN] = ACTIONS(1825), - [sym__concat] = ACTIONS(1825), - [sym_word] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1825), - [anon_sym_LT_LPAREN] = ACTIONS(1825), - [sym_ansii_c_string] = ACTIONS(1825), - [anon_sym_COLON] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), + [anon_sym_COLON_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(973), + [sym_number] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_COLON_QMARK] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(973), + [anon_sym_COLON] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_raw_string] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), }, [973] = { - [anon_sym_PERCENT] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(1829), - [sym_raw_string] = ACTIONS(1829), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_COLON_DASH] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_COLON_QMARK] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1829), - [anon_sym_BQUOTE] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [anon_sym_GT_LPAREN] = ACTIONS(1829), - [sym__concat] = ACTIONS(1829), - [sym_word] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1829), - [anon_sym_LT_LPAREN] = ACTIONS(1829), - [sym_ansii_c_string] = ACTIONS(1829), - [anon_sym_COLON] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - }, - [974] = { - [aux_sym_concatenation_repeat1] = STATE(2444), - [anon_sym_RBRACK] = ACTIONS(213), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(213), - [sym__special_character] = ACTIONS(211), - }, - [975] = { - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym_variable_name] = ACTIONS(1298), + [sym_file_descriptor] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1298), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_variable_name] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [ts_builtin_sym_end] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), + }, + [974] = { + [sym_string] = STATE(960), + [anon_sym_0] = ACTIONS(2838), + [anon_sym_AT] = ACTIONS(2838), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2840), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2838), + [anon_sym_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym__] = ACTIONS(2838), + [anon_sym_DOLLAR] = ACTIONS(2842), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2842), + [sym_variable_name] = ACTIONS(1312), + [sym_file_descriptor] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_AMP_GT] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(2844), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), + }, + [975] = { + [anon_sym_COLON_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [sym_number] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_COLON_QMARK] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1356), }, [976] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_variable_name] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [ts_builtin_sym_end] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [anon_sym_COLON_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1412), + [sym_number] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_COLON_QMARK] = ACTIONS(1410), + [anon_sym_EQ] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1412), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PERCENT] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1412), + [sym_raw_string] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1410), }, [977] = { - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(417), - [sym_test_operator] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_EQ_TILDE] = ACTIONS(417), - [anon_sym_DASH_DASH] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_LT_EQ] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_DASH_EQ] = ACTIONS(417), + [anon_sym_COLON_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1430), + [sym_number] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_COLON_QMARK] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1430), + [anon_sym_COLON] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_raw_string] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(1428), }, [978] = { - [aux_sym_concatenation_repeat1] = STATE(986), - [anon_sym_BANG_EQ] = ACTIONS(429), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_EQ] = ACTIONS(429), - [sym_test_operator] = ACTIONS(429), - [anon_sym_EQ_EQ] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [sym__concat] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_EQ_TILDE] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), + [anon_sym_COLON_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1661), + [sym_number] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_COLON_QMARK] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1661), + [anon_sym_COLON] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(1661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1661), + [sym_raw_string] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), }, [979] = { - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(595), - [sym_test_operator] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_EQ_TILDE] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_DASH_EQ] = ACTIONS(595), + [anon_sym_COLON_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1673), + [sym_number] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1673), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_COLON_QMARK] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1673), + [anon_sym_COLON] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(1673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PERCENT] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1671), }, [980] = { - [anon_sym_RBRACK] = ACTIONS(213), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(213), - [sym__special_character] = ACTIONS(211), + [anon_sym_COLON_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_number] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_COLON_QMARK] = ACTIONS(1681), + [anon_sym_EQ] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1683), + [anon_sym_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PERCENT] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1683), + [sym_raw_string] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), }, [981] = { - [aux_sym__literal_repeat1] = STATE(981), - [anon_sym_RBRACK] = ACTIONS(652), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(652), - [sym__special_character] = ACTIONS(2734), + [anon_sym_COLON_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1687), + [sym_number] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_COLON_QMARK] = ACTIONS(1685), + [anon_sym_EQ] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1687), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PERCENT] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_raw_string] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1685), }, [982] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [ts_builtin_sym_end] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_COLON_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1870), + [sym_number] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_COLON_QMARK] = ACTIONS(1868), + [anon_sym_EQ] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1870), + [anon_sym_COLON] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PERCENT] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1870), + [sym_raw_string] = ACTIONS(1870), + [anon_sym_DOLLAR] = ACTIONS(1868), }, [983] = { - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_PLUS_EQ] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(880), - [sym_test_operator] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_EQ_TILDE] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_DASH_EQ] = ACTIONS(880), + [anon_sym_COLON_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1876), + [sym_number] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), + [anon_sym_DQUOTE] = ACTIONS(1876), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_COLON_QMARK] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1876), + [sym_raw_string] = ACTIONS(1876), + [anon_sym_DOLLAR] = ACTIONS(1874), }, [984] = { - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_PLUS_EQ] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(884), - [sym_test_operator] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_DASH_EQ] = ACTIONS(884), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1880), + [sym_number] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1880), + [anon_sym_DQUOTE] = ACTIONS(1880), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1880), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PERCENT] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1880), + [anon_sym_DOLLAR] = ACTIONS(1878), }, [985] = { - [sym_command_substitution] = STATE(984), - [sym_simple_expansion] = STATE(984), - [sym_string_expansion] = STATE(984), - [sym_string] = STATE(984), - [sym_process_substitution] = STATE(984), - [sym_expansion] = STATE(984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2737), - [sym_word] = ACTIONS(2739), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2302), - [anon_sym_DOLLAR] = ACTIONS(2741), - [anon_sym_LT_LPAREN] = ACTIONS(2296), - [sym_ansii_c_string] = ACTIONS(2737), - [anon_sym_BQUOTE] = ACTIONS(2294), - [anon_sym_GT_LPAREN] = ACTIONS(2296), - [sym__special_character] = ACTIONS(2737), - [sym_number] = ACTIONS(2739), + [anon_sym_COLON_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1886), + [sym_number] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_COLON_QMARK] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1886), + [anon_sym_COLON] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1886), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1884), }, [986] = { - [aux_sym_concatenation_repeat1] = STATE(986), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_PLUS_EQ] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(884), - [sym_test_operator] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [sym__concat] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_DASH_EQ] = ACTIONS(884), + [anon_sym_COLON_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_number] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_COLON_QMARK] = ACTIONS(1957), + [anon_sym_EQ] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1959), + [anon_sym_COLON] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1959), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1957), }, [987] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [sym_variable_name] = ACTIONS(909), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [ts_builtin_sym_end] = ACTIONS(909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_COLON_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1963), + [sym_number] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_COLON_QMARK] = ACTIONS(1961), + [anon_sym_EQ] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1961), + [anon_sym_POUND] = ACTIONS(1963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PERCENT] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1963), + [sym_raw_string] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1961), }, [988] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [sym_variable_name] = ACTIONS(961), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [aux_sym_concatenation_repeat1] = STATE(990), + [anon_sym_RBRACK] = ACTIONS(287), + [sym__special_character] = ACTIONS(285), + [sym__concat] = ACTIONS(287), + [sym_comment] = ACTIONS(53), }, [989] = { - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_PLUS_EQ] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_EQ] = ACTIONS(1065), - [sym_test_operator] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_LT_EQ] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_DASH_EQ] = ACTIONS(1065), + [anon_sym_RBRACK] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(441), }, [990] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [ts_builtin_sym_end] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [aux_sym_concatenation_repeat1] = STATE(1002), + [anon_sym_RBRACK] = ACTIONS(479), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(2846), }, [991] = { - [sym_string] = STATE(812), - [anon_sym__] = ACTIONS(2618), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2620), - [sym_raw_string] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2620), - [anon_sym_RBRACK] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym__concat] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_0] = ACTIONS(2618), - [aux_sym__simple_variable_name_token1] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2624), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [sym_variable_name] = ACTIONS(507), + [sym_file_descriptor] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_AMP_GT] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [ts_builtin_sym_end] = ACTIONS(507), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [992] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [sym_variable_name] = ACTIONS(1237), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [ts_builtin_sym_end] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [sym_variable_name] = ACTIONS(511), + [sym_file_descriptor] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [ts_builtin_sym_end] = ACTIONS(511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [993] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_variable_name] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_RBRACK] = ACTIONS(515), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(515), }, [994] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_variable_name] = ACTIONS(1306), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [ts_builtin_sym_end] = ACTIONS(1306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_RBRACK] = ACTIONS(287), + [sym__special_character] = ACTIONS(285), + [sym__concat] = ACTIONS(287), + [sym_comment] = ACTIONS(53), }, [995] = { - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_PLUS_EQ] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1400), - [sym_test_operator] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_DASH_EQ] = ACTIONS(1400), + [aux_sym__literal_repeat1] = STATE(995), + [anon_sym_RBRACK] = ACTIONS(813), + [sym__special_character] = ACTIONS(2848), + [sym__concat] = ACTIONS(813), + [sym_comment] = ACTIONS(53), }, [996] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [sym_variable_name] = ACTIONS(1460), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(933), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(933), }, [997] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [sym_variable_name] = ACTIONS(1472), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [sym_variable_name] = ACTIONS(969), + [sym_file_descriptor] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [ts_builtin_sym_end] = ACTIONS(969), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [998] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [sym_variable_name] = ACTIONS(1482), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [ts_builtin_sym_end] = ACTIONS(1482), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [999] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [sym_variable_name] = ACTIONS(1486), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [ts_builtin_sym_end] = ACTIONS(1486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(977), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(977), }, [1000] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [sym_variable_name] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [ts_builtin_sym_end] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [anon_sym_RBRACK] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(981), }, [1001] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [sym_variable_name] = ACTIONS(1700), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [ts_builtin_sym_end] = ACTIONS(1700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [sym_expansion] = STATE(1000), + [sym_string_expansion] = STATE(1000), + [sym_simple_expansion] = STATE(1000), + [sym_string] = STATE(1000), + [sym_command_substitution] = STATE(1000), + [sym_process_substitution] = STATE(1000), + [sym_arithmetic_expansion] = STATE(1000), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(617), + [sym_number] = ACTIONS(1460), + [sym__special_character] = ACTIONS(1464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), + [anon_sym_BQUOTE] = ACTIONS(633), + [sym_raw_string] = ACTIONS(1464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [sym_word] = ACTIONS(1460), + [anon_sym_LT_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(2851), + [sym_ansii_c_string] = ACTIONS(1464), }, [1002] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [sym_variable_name] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [ts_builtin_sym_end] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [aux_sym_concatenation_repeat1] = STATE(1002), + [anon_sym_RBRACK] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(2853), }, [1003] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [sym_variable_name] = ACTIONS(1710), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [ts_builtin_sym_end] = ACTIONS(1710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [sym_variable_name] = ACTIONS(1034), + [sym_file_descriptor] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [1004] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [sym_variable_name] = ACTIONS(1825), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [ts_builtin_sym_end] = ACTIONS(1825), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [sym_variable_name] = ACTIONS(1088), + [sym_file_descriptor] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_AMP_GT] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [1005] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [sym_variable_name] = ACTIONS(1829), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [ts_builtin_sym_end] = ACTIONS(1829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1006] = { - [aux_sym_concatenation_repeat1] = STATE(978), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_LF] = ACTIONS(211), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [sym_test_operator] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), - [sym__concat] = ACTIONS(2286), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(1298), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1298), }, [1007] = { - [anon_sym_BANG_EQ] = ACTIONS(409), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(409), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_PLUS_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(409), - [sym_test_operator] = ACTIONS(409), - [anon_sym_EQ_EQ] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [anon_sym_GT_EQ] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_EQ_TILDE] = ACTIONS(409), - [anon_sym_DASH_DASH] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_LT_EQ] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), + [sym_string] = STATE(993), + [anon_sym_0] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(2858), + [sym__concat] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(2860), + [aux_sym__simple_variable_name_token1] = ACTIONS(2856), + [anon_sym__] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2860), }, [1008] = { - [anon_sym_BANG_EQ] = ACTIONS(413), - [anon_sym_PLUS_EQ] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(413), - [sym_test_operator] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_GT_EQ] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_EQ_TILDE] = ACTIONS(413), - [anon_sym_DASH_DASH] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_LT_EQ] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_DASH_EQ] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [sym_variable_name] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [1009] = { - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [ts_builtin_sym_end] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [sym_variable_name] = ACTIONS(1412), + [sym_file_descriptor] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_AMP_GT] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [1010] = { - [aux_sym_concatenation_repeat1] = STATE(1018), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [ts_builtin_sym_end] = ACTIONS(433), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [sym__concat] = ACTIONS(2746), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_variable_name] = ACTIONS(1430), + [sym_file_descriptor] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [1011] = { - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [ts_builtin_sym_end] = ACTIONS(597), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [sym_variable_name] = ACTIONS(1661), + [sym_file_descriptor] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_AMP_GT] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [ts_builtin_sym_end] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [1012] = { - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_LF] = ACTIONS(211), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [sym_test_operator] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1673), + [sym_file_descriptor] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1673), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [1013] = { - [aux_sym__literal_repeat1] = STATE(1013), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_PLUS_EQ] = ACTIONS(647), - [sym__special_character] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_LF] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_EQ] = ACTIONS(647), - [sym_test_operator] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_GT_EQ] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_EQ_TILDE] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_DASH_EQ] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [sym_variable_name] = ACTIONS(1683), + [sym_file_descriptor] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [1014] = { - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_PLUS_EQ] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [sym_test_operator] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_DASH_EQ] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [sym_variable_name] = ACTIONS(1687), + [sym_file_descriptor] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [1015] = { - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [ts_builtin_sym_end] = ACTIONS(882), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [sym_variable_name] = ACTIONS(1870), + [sym_file_descriptor] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_AMP_GT] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [1016] = { - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [sym_variable_name] = ACTIONS(1876), + [sym_file_descriptor] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [1017] = { - [sym_command_substitution] = STATE(1016), - [sym_simple_expansion] = STATE(1016), - [sym_string_expansion] = STATE(1016), - [sym_string] = STATE(1016), - [sym_process_substitution] = STATE(1016), - [sym_expansion] = STATE(1016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(668), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2751), - [sym_word] = ACTIONS(2753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(674), - [anon_sym_DOLLAR] = ACTIONS(2755), - [anon_sym_LT_LPAREN] = ACTIONS(678), - [sym_ansii_c_string] = ACTIONS(2751), - [anon_sym_BQUOTE] = ACTIONS(680), - [anon_sym_GT_LPAREN] = ACTIONS(678), - [sym__special_character] = ACTIONS(2751), - [sym_number] = ACTIONS(2753), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1880), + [sym_file_descriptor] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [1018] = { - [aux_sym_concatenation_repeat1] = STATE(1018), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__concat] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [sym_variable_name] = ACTIONS(1886), + [sym_file_descriptor] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [1019] = { - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_PLUS_EQ] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(907), - [sym_test_operator] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_DASH_EQ] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [sym_variable_name] = ACTIONS(1959), + [sym_file_descriptor] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_AMP_GT] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [1020] = { - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_PLUS_EQ] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(959), - [sym_test_operator] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_DASH_EQ] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [sym_variable_name] = ACTIONS(1963), + [sym_file_descriptor] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_AMP_GT] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [1021] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [aux_sym_concatenation_repeat1] = STATE(1023), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_PLUS_EQ] = ACTIONS(285), + [sym_test_operator] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [sym__concat] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_DASH_EQ] = ACTIONS(285), }, [1022] = { - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_PLUS_EQ] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [sym_test_operator] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_DASH_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(439), + [sym_test_operator] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(439), + [anon_sym_EQ_EQ] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_EQ_TILDE] = ACTIONS(439), + [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_LT_EQ] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_DASH_EQ] = ACTIONS(439), }, [1023] = { - [sym_string] = STATE(977), - [anon_sym__] = ACTIONS(2760), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2760), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(2762), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2760), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_EQ_TILDE] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2762), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2762), - [sym_raw_string] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2760), - [sym_test_operator] = ACTIONS(1227), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), + [aux_sym_concatenation_repeat1] = STATE(1035), + [anon_sym_BANG_EQ] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(475), + [sym_test_operator] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_EQ_EQ] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [anon_sym_GT_EQ] = ACTIONS(475), + [sym__concat] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_EQ_TILDE] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_DASH_EQ] = ACTIONS(475), }, [1024] = { - [anon_sym_BANG_EQ] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_EQ] = ACTIONS(1235), - [sym_test_operator] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_EQ_TILDE] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_RBRACK] = ACTIONS(507), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(507), }, [1025] = { - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_DASH_EQ] = ACTIONS(1294), + [anon_sym_RBRACK] = ACTIONS(511), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(511), }, [1026] = { - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1304), - [sym_test_operator] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(513), + [sym_test_operator] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [anon_sym_GT_EQ] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_LT_EQ] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_DASH_EQ] = ACTIONS(513), }, [1027] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [ts_builtin_sym_end] = ACTIONS(1402), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_PLUS_EQ] = ACTIONS(285), + [sym_test_operator] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_DASH_EQ] = ACTIONS(285), }, [1028] = { - [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1458), - [sym_test_operator] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_EQ_TILDE] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), + [aux_sym__literal_repeat1] = STATE(1028), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_PLUS_EQ] = ACTIONS(811), + [sym_test_operator] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [sym__special_character] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_EQ_TILDE] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_DASH_EQ] = ACTIONS(811), }, [1029] = { - [anon_sym_BANG_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1470), - [sym_test_operator] = ACTIONS(1470), - [anon_sym_EQ_EQ] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [anon_sym_GT_EQ] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_EQ_TILDE] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_LT_EQ] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [sym_test_operator] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_EQ_TILDE] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), }, [1030] = { - [anon_sym_BANG_EQ] = ACTIONS(1480), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1480), - [sym_test_operator] = ACTIONS(1480), - [anon_sym_EQ_EQ] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [anon_sym_GT_EQ] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_EQ_TILDE] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_LT_EQ] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(969), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(969), }, [1031] = { - [anon_sym_BANG_EQ] = ACTIONS(1484), - [anon_sym_PLUS_EQ] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_EQ] = ACTIONS(1484), - [sym_test_operator] = ACTIONS(1484), - [anon_sym_EQ_EQ] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_EQ_TILDE] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_DASH_EQ] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(973), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(973), }, [1032] = { - [anon_sym_BANG_EQ] = ACTIONS(1692), - [anon_sym_PLUS_EQ] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1692), - [sym_test_operator] = ACTIONS(1692), - [anon_sym_EQ_EQ] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [anon_sym_GT_EQ] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_EQ_TILDE] = ACTIONS(1692), - [anon_sym_DASH_DASH] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_LT_EQ] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_DASH_EQ] = ACTIONS(1692), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(975), + [sym_test_operator] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_EQ_TILDE] = ACTIONS(975), + [anon_sym_DASH_DASH] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_DASH_EQ] = ACTIONS(975), }, [1033] = { - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_PLUS_EQ] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ] = ACTIONS(1698), - [sym_test_operator] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_EQ_TILDE] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_DASH_EQ] = ACTIONS(1698), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [sym_test_operator] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_EQ_TILDE] = ACTIONS(979), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), }, [1034] = { - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_PLUS_EQ] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1702), - [sym_test_operator] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_GT_EQ] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_EQ_TILDE] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_DASH_EQ] = ACTIONS(1702), + [sym_expansion] = STATE(1033), + [sym_string_expansion] = STATE(1033), + [sym_simple_expansion] = STATE(1033), + [sym_string] = STATE(1033), + [sym_command_substitution] = STATE(1033), + [sym_process_substitution] = STATE(1033), + [sym_arithmetic_expansion] = STATE(1033), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(2385), + [sym_number] = ACTIONS(2869), + [sym__special_character] = ACTIONS(2871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2389), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2391), + [anon_sym_BQUOTE] = ACTIONS(2397), + [sym_raw_string] = ACTIONS(2871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2873), + [sym_ansii_c_string] = ACTIONS(2871), }, [1035] = { - [anon_sym_BANG_EQ] = ACTIONS(1708), - [anon_sym_PLUS_EQ] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_EQ] = ACTIONS(1708), - [sym_test_operator] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_EQ_TILDE] = ACTIONS(1708), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_LT_EQ] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_DASH_EQ] = ACTIONS(1708), + [aux_sym_concatenation_repeat1] = STATE(1035), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [sym_test_operator] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [sym__concat] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_EQ_TILDE] = ACTIONS(979), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), }, [1036] = { - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_PLUS_EQ] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [sym_test_operator] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_DASH_EQ] = ACTIONS(1823), + [anon_sym_RBRACK] = ACTIONS(1034), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1034), }, [1037] = { - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_PLUS_EQ] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [sym_test_operator] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_DASH_EQ] = ACTIONS(1827), + [anon_sym_RBRACK] = ACTIONS(1088), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1088), }, [1038] = { - [aux_sym_concatenation_repeat1] = STATE(1010), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [ts_builtin_sym_end] = ACTIONS(213), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__concat] = ACTIONS(1164), - [anon_sym_AMP_AMP] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(973), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(973), }, [1039] = { - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [sym_test_operator] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_GT_EQ] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [ts_builtin_sym_end] = ACTIONS(411), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_PIPE] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), }, [1040] = { - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [ts_builtin_sym_end] = ACTIONS(415), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [sym_string] = STATE(1026), + [anon_sym_0] = ACTIONS(2878), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2878), + [aux_sym__simple_variable_name_token1] = ACTIONS(2878), + [anon_sym__] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_GT_EQ] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [sym_test_operator] = ACTIONS(1308), }, [1041] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_variable_name] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [anon_sym_RBRACK] = ACTIONS(1358), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1358), }, [1042] = { - [aux_sym_concatenation_repeat1] = STATE(1050), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [sym_variable_name] = ACTIONS(433), - [anon_sym_RPAREN] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [anon_sym_RBRACK] = ACTIONS(1412), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1412), }, [1043] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [sym_variable_name] = ACTIONS(597), - [anon_sym_RPAREN] = ACTIONS(595), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(1430), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1430), }, [1044] = { - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [ts_builtin_sym_end] = ACTIONS(213), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(1661), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1661), }, [1045] = { - [aux_sym__literal_repeat1] = STATE(1045), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [ts_builtin_sym_end] = ACTIONS(652), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [sym__special_character] = ACTIONS(2768), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_RBRACK] = ACTIONS(1673), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1673), }, [1046] = { - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [ts_builtin_sym_end] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_RBRACK] = ACTIONS(1683), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1683), }, [1047] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [sym_variable_name] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(1687), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1687), }, [1048] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_RBRACK] = ACTIONS(1870), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1870), }, [1049] = { - [sym_command_substitution] = STATE(1048), - [sym_string] = STATE(1048), - [sym_process_substitution] = STATE(1048), - [sym_simple_expansion] = STATE(1048), - [sym_string_expansion] = STATE(1048), - [sym_expansion] = STATE(1048), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2771), - [anon_sym_DOLLAR] = ACTIONS(2773), - [anon_sym_BQUOTE] = ACTIONS(2775), - [anon_sym_GT_LPAREN] = ACTIONS(2777), - [sym_number] = ACTIONS(2779), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_word] = ACTIONS(2779), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2785), - [anon_sym_LT_LPAREN] = ACTIONS(2777), - [sym_ansii_c_string] = ACTIONS(2771), - [sym__special_character] = ACTIONS(2771), + [anon_sym_RBRACK] = ACTIONS(1876), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1876), }, [1050] = { - [aux_sym_concatenation_repeat1] = STATE(1050), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2787), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_RBRACK] = ACTIONS(1880), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1880), }, [1051] = { - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [ts_builtin_sym_end] = ACTIONS(909), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_RBRACK] = ACTIONS(1886), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1886), }, [1052] = { - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [ts_builtin_sym_end] = ACTIONS(961), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_RBRACK] = ACTIONS(1959), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1959), }, [1053] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_RBRACK] = ACTIONS(1963), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1963), }, [1054] = { - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [ts_builtin_sym_end] = ACTIONS(878), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [aux_sym_concatenation_repeat1] = STATE(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym__concat] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1055] = { - [sym_string] = STATE(1009), - [anon_sym__] = ACTIONS(2790), - [anon_sym_PIPE_AMP] = ACTIONS(1227), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_DOLLAR] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2792), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2792), - [sym_raw_string] = ACTIONS(2794), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [ts_builtin_sym_end] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(2796), - [aux_sym__simple_variable_name_token1] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(441), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [ts_builtin_sym_end] = ACTIONS(441), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [1056] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [ts_builtin_sym_end] = ACTIONS(1237), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [aux_sym_concatenation_repeat1] = STATE(1068), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [ts_builtin_sym_end] = ACTIONS(479), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [sym__concat] = ACTIONS(2884), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [1057] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [ts_builtin_sym_end] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_BANG_EQ] = ACTIONS(505), + [anon_sym_PLUS_EQ] = ACTIONS(505), + [sym_test_operator] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_EQ_EQ] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_GT_EQ] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_EQ_TILDE] = ACTIONS(505), + [anon_sym_DASH_DASH] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_LT_EQ] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_DASH_EQ] = ACTIONS(505), }, [1058] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [ts_builtin_sym_end] = ACTIONS(1306), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(509), + [sym_test_operator] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_EQ_TILDE] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_DASH_EQ] = ACTIONS(509), }, [1059] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [sym_variable_name] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1400), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_AMP_GT] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [ts_builtin_sym_end] = ACTIONS(515), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [1060] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1061] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [aux_sym__literal_repeat1] = STATE(1061), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [sym__special_character] = ACTIONS(2886), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [ts_builtin_sym_end] = ACTIONS(813), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [1062] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [ts_builtin_sym_end] = ACTIONS(1482), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [sym_file_descriptor] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [ts_builtin_sym_end] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [1063] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [ts_builtin_sym_end] = ACTIONS(1486), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [sym_test_operator] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_PLUS_PLUS] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_GT_EQ] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_EQ_TILDE] = ACTIONS(967), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), }, [1064] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [ts_builtin_sym_end] = ACTIONS(1694), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [sym_test_operator] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_GT_EQ] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_EQ_TILDE] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), }, [1065] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [ts_builtin_sym_end] = ACTIONS(1700), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(977), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [1066] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [ts_builtin_sym_end] = ACTIONS(1704), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1067] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [ts_builtin_sym_end] = ACTIONS(1710), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [sym_expansion] = STATE(1066), + [sym_string_expansion] = STATE(1066), + [sym_simple_expansion] = STATE(1066), + [sym_string] = STATE(1066), + [sym_command_substitution] = STATE(1066), + [sym_process_substitution] = STATE(1066), + [sym_arithmetic_expansion] = STATE(1066), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_number] = ACTIONS(2889), + [sym__special_character] = ACTIONS(2891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_raw_string] = ACTIONS(2891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), + [sym_word] = ACTIONS(2889), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(2893), + [sym_ansii_c_string] = ACTIONS(2891), }, [1068] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [ts_builtin_sym_end] = ACTIONS(1825), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [aux_sym_concatenation_repeat1] = STATE(1068), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [ts_builtin_sym_end] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [sym__concat] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1069] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [ts_builtin_sym_end] = ACTIONS(1829), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [anon_sym_BANG_EQ] = ACTIONS(1032), + [anon_sym_PLUS_EQ] = ACTIONS(1032), + [sym_test_operator] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [anon_sym_GT_EQ] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_EQ_TILDE] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_LT_EQ] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_DASH_EQ] = ACTIONS(1032), }, [1070] = { - [aux_sym_concatenation_repeat1] = STATE(1042), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [sym_test_operator] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), }, [1071] = { - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_variable_name] = ACTIONS(411), - [anon_sym_RPAREN] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [sym_test_operator] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_GT_EQ] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_EQ_TILDE] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), }, [1072] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_variable_name] = ACTIONS(415), - [anon_sym_RPAREN] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [1073] = { - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [sym_string] = STATE(1059), + [anon_sym_0] = ACTIONS(2898), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym__] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2902), + [sym_file_descriptor] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [1074] = { - [aux_sym_concatenation_repeat1] = STATE(1082), - [anon_sym_PIPE_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(429), + [anon_sym_BANG_EQ] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1356), + [sym_test_operator] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_DASH_EQ] = ACTIONS(1356), }, [1075] = { - [anon_sym_PIPE_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_RPAREN] = ACTIONS(595), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [anon_sym_esac] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(1410), + [anon_sym_PLUS_EQ] = ACTIONS(1410), + [sym_test_operator] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_EQ_EQ] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_GT_EQ] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_EQ_TILDE] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_LT_EQ] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_DASH_EQ] = ACTIONS(1410), }, [1076] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(1428), + [anon_sym_PLUS_EQ] = ACTIONS(1428), + [sym_test_operator] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_EQ_EQ] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [anon_sym_GT_EQ] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_EQ_TILDE] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_LT_EQ] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_DASH_EQ] = ACTIONS(1428), }, [1077] = { - [aux_sym__literal_repeat1] = STATE(1077), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [sym__special_character] = ACTIONS(2800), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [sym_variable_name] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(647), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(1659), + [anon_sym_PLUS_EQ] = ACTIONS(1659), + [sym_test_operator] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [anon_sym_GT_EQ] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_EQ_TILDE] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_LT_EQ] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_DASH_EQ] = ACTIONS(1659), }, [1078] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_PLUS_EQ] = ACTIONS(1671), + [sym_test_operator] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_DASH_EQ] = ACTIONS(1671), }, [1079] = { - [anon_sym_PIPE_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_esac] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(1681), + [anon_sym_PLUS_EQ] = ACTIONS(1681), + [sym_test_operator] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_EQ] = ACTIONS(1681), + [anon_sym_EQ_EQ] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_EQ_TILDE] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_DASH_EQ] = ACTIONS(1681), }, [1080] = { - [anon_sym_PIPE_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_esac] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(1685), + [anon_sym_PLUS_EQ] = ACTIONS(1685), + [sym_test_operator] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_EQ] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_EQ_TILDE] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_DASH_EQ] = ACTIONS(1685), }, [1081] = { - [sym_command_substitution] = STATE(1080), - [sym_string] = STATE(1080), - [sym_process_substitution] = STATE(1080), - [sym_simple_expansion] = STATE(1080), - [sym_string_expansion] = STATE(1080), - [sym_expansion] = STATE(1080), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2803), - [anon_sym_DOLLAR] = ACTIONS(2805), - [anon_sym_BQUOTE] = ACTIONS(2807), - [anon_sym_GT_LPAREN] = ACTIONS(2809), - [sym_number] = ACTIONS(2811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_word] = ACTIONS(2811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), - [anon_sym_LT_LPAREN] = ACTIONS(2809), - [sym_ansii_c_string] = ACTIONS(2803), - [sym__special_character] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_PLUS_EQ] = ACTIONS(1868), + [sym_test_operator] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [anon_sym_GT_EQ] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_DASH_EQ] = ACTIONS(1868), }, [1082] = { - [aux_sym_concatenation_repeat1] = STATE(1082), - [anon_sym_PIPE_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2819), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_esac] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(1874), + [anon_sym_PLUS_EQ] = ACTIONS(1874), + [sym_test_operator] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [anon_sym_GT_EQ] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_EQ_TILDE] = ACTIONS(1874), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_DASH_EQ] = ACTIONS(1874), }, [1083] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [sym_variable_name] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_PLUS_EQ] = ACTIONS(1878), + [sym_test_operator] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_GT_EQ] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_EQ_TILDE] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_DASH_EQ] = ACTIONS(1878), }, [1084] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [sym_variable_name] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_PLUS_EQ] = ACTIONS(1884), + [sym_test_operator] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_DASH_EQ] = ACTIONS(1884), }, [1085] = { - [anon_sym_PIPE_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_esac] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_PLUS_EQ] = ACTIONS(1957), + [sym_test_operator] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_GT_EQ] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_EQ_TILDE] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_LT_EQ] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_DASH_EQ] = ACTIONS(1957), }, [1086] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(1961), + [anon_sym_PLUS_EQ] = ACTIONS(1961), + [sym_test_operator] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_PLUS_PLUS] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_EQ] = ACTIONS(1961), + [anon_sym_EQ_EQ] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [anon_sym_GT_EQ] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_EQ_TILDE] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1961), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_LT_EQ] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_DASH_EQ] = ACTIONS(1961), }, [1087] = { - [sym_string] = STATE(1041), - [anon_sym__] = ACTIONS(2822), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_variable_name] = ACTIONS(1231), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(2828), - [anon_sym_GT_AMP] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2822), - [sym_ansii_c_string] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_LT_LT] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(2824), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2822), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [aux_sym_concatenation_repeat1] = STATE(1089), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(285), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1088] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [sym_variable_name] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1235), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_variable_name] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(439), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(441), + [anon_sym_AMP_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [1089] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_variable_name] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [aux_sym_concatenation_repeat1] = STATE(1101), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [sym_variable_name] = ACTIONS(479), + [anon_sym_RPAREN] = ACTIONS(475), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [anon_sym_AMP_GT] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [1090] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_variable_name] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [sym_file_descriptor] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_AMP_GT] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [ts_builtin_sym_end] = ACTIONS(507), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [1091] = { - [anon_sym_PIPE_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [anon_sym_esac] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [ts_builtin_sym_end] = ACTIONS(511), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [1092] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [sym_variable_name] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1458), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(513), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [anon_sym_AMP_GT] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [1093] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [sym_variable_name] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1470), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(285), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1094] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [sym_variable_name] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1480), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [aux_sym__literal_repeat1] = STATE(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [sym_variable_name] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(811), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(813), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(2908), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [1095] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [sym_variable_name] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1484), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [sym_variable_name] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(931), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [sym_file_descriptor] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [1096] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [sym_variable_name] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1692), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [sym_file_descriptor] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [ts_builtin_sym_end] = ACTIONS(969), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [1097] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [sym_variable_name] = ACTIONS(1700), - [anon_sym_RPAREN] = ACTIONS(1698), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1098] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [sym_variable_name] = ACTIONS(1704), - [anon_sym_RPAREN] = ACTIONS(1702), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [sym_variable_name] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(977), + [anon_sym_AMP_GT] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [1099] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [sym_variable_name] = ACTIONS(1710), - [anon_sym_RPAREN] = ACTIONS(1708), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(979), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1100] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [sym_variable_name] = ACTIONS(1825), - [anon_sym_RPAREN] = ACTIONS(1823), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [sym_expansion] = STATE(1099), + [sym_string] = STATE(1099), + [sym_command_substitution] = STATE(1099), + [sym_process_substitution] = STATE(1099), + [sym_simple_expansion] = STATE(1099), + [sym_arithmetic_expansion] = STATE(1099), + [sym_string_expansion] = STATE(1099), + [anon_sym_GT_LPAREN] = ACTIONS(2911), + [sym_number] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2917), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2919), + [sym_word] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_LT_LPAREN] = ACTIONS(2911), + [sym_ansii_c_string] = ACTIONS(2923), + [sym__special_character] = ACTIONS(2923), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2925), + [sym_raw_string] = ACTIONS(2923), + [anon_sym_DOLLAR] = ACTIONS(2927), }, [1101] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [sym_variable_name] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1827), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [aux_sym_concatenation_repeat1] = STATE(1101), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(979), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1102] = { - [aux_sym_concatenation_repeat1] = STATE(1074), - [anon_sym_PIPE_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [ts_builtin_sym_end] = ACTIONS(1034), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [1103] = { - [anon_sym_PIPE_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_RPAREN] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_esac] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(409), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [sym_file_descriptor] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_AMP_GT] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [1104] = { - [anon_sym_PIPE_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_esac] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [ts_builtin_sym_end] = ACTIONS(973), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1105] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(419), - [sym__concat] = ACTIONS(419), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym_variable_name] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(1296), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [anon_sym_AMP_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [1106] = { - [aux_sym_concatenation_repeat1] = STATE(1114), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(433), - [sym__concat] = ACTIONS(2830), + [sym_string] = STATE(1092), + [anon_sym_0] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym__] = ACTIONS(2932), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [sym_variable_name] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1308), + [sym_word] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_LT_LT] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2934), + [sym_file_descriptor] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(2932), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [1107] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(597), - [sym__concat] = ACTIONS(597), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [1108] = { - [anon_sym_PIPE_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [sym_file_descriptor] = ACTIONS(1412), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_AMP_GT] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1412), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [1109] = { - [aux_sym__literal_repeat1] = STATE(1109), - [anon_sym_PIPE_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [sym__special_character] = ACTIONS(2832), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [anon_sym_RPAREN] = ACTIONS(647), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [anon_sym_esac] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1430), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [1110] = { - [anon_sym_PIPE_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_esac] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [sym_file_descriptor] = ACTIONS(1661), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_AMP_GT] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [1111] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(882), - [sym__concat] = ACTIONS(882), - }, + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1673), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + }, [1112] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(886), - [sym__concat] = ACTIONS(886), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [sym_file_descriptor] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [ts_builtin_sym_end] = ACTIONS(1683), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [1113] = { - [sym_command_substitution] = STATE(1112), - [sym_simple_expansion] = STATE(1112), - [sym_string_expansion] = STATE(1112), - [sym_string] = STATE(1112), - [sym_process_substitution] = STATE(1112), - [sym_expansion] = STATE(1112), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2835), - [sym_word] = ACTIONS(2837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(2839), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(2835), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym__special_character] = ACTIONS(2835), - [sym_number] = ACTIONS(2837), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [sym_file_descriptor] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [ts_builtin_sym_end] = ACTIONS(1687), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [1114] = { - [aux_sym_concatenation_repeat1] = STATE(1114), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(886), - [sym__concat] = ACTIONS(2841), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [sym_file_descriptor] = ACTIONS(1870), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_AMP_GT] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [ts_builtin_sym_end] = ACTIONS(1870), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [1115] = { - [anon_sym_PIPE_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_esac] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1876), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [1116] = { - [anon_sym_PIPE_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_esac] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1880), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [1117] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1067), - [sym__concat] = ACTIONS(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(1886), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [1118] = { - [anon_sym_PIPE_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_esac] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [sym_file_descriptor] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_AMP_GT] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(1959), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [1119] = { - [sym_string] = STATE(1073), - [anon_sym__] = ACTIONS(2844), - [anon_sym_PIPE_AMP] = ACTIONS(1227), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2846), - [sym_raw_string] = ACTIONS(2848), - [anon_sym_RPAREN] = ACTIONS(1227), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1963), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [ts_builtin_sym_end] = ACTIONS(1963), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [1120] = { - [anon_sym_PIPE_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym_RPAREN] = ACTIONS(1235), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [anon_sym_esac] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), + [aux_sym_concatenation_repeat1] = STATE(1122), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1121] = { - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_esac] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(441), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(439), + [anon_sym_esac] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [1122] = { - [anon_sym_PIPE_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_esac] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), + [aux_sym_concatenation_repeat1] = STATE(1134), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(2940), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [1123] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1402), - [sym__concat] = ACTIONS(1402), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [sym_variable_name] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(505), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [sym_file_descriptor] = ACTIONS(507), + [anon_sym_AMP_GT] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [1124] = { - [anon_sym_PIPE_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1458), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_esac] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [sym_variable_name] = ACTIONS(511), + [anon_sym_RPAREN] = ACTIONS(509), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_AMP_GT] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [1125] = { - [anon_sym_PIPE_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1470), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [anon_sym_esac] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_RPAREN] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_AMP_GT] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(513), + [anon_sym_esac] = ACTIONS(513), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [1126] = { - [anon_sym_PIPE_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [anon_sym_esac] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [anon_sym_esac] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1127] = { - [anon_sym_PIPE_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [anon_sym_esac] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), + [aux_sym__literal_repeat1] = STATE(1127), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(2942), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [anon_sym_esac] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [1128] = { - [anon_sym_PIPE_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_RPAREN] = ACTIONS(1692), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [anon_sym_esac] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [sym_file_descriptor] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [1129] = { - [anon_sym_PIPE_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [anon_sym_esac] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [sym_variable_name] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(967), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [sym_file_descriptor] = ACTIONS(969), + [anon_sym_AMP_GT] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [1130] = { - [anon_sym_PIPE_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_RPAREN] = ACTIONS(1702), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [anon_sym_esac] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1131] = { - [anon_sym_PIPE_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_RPAREN] = ACTIONS(1708), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [anon_sym_esac] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(975), + [anon_sym_esac] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [1132] = { - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_esac] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [anon_sym_esac] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1133] = { - [anon_sym_PIPE_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_RPAREN] = ACTIONS(1827), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [anon_sym_esac] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), + [sym_expansion] = STATE(1132), + [sym_string] = STATE(1132), + [sym_command_substitution] = STATE(1132), + [sym_process_substitution] = STATE(1132), + [sym_simple_expansion] = STATE(1132), + [sym_arithmetic_expansion] = STATE(1132), + [sym_string_expansion] = STATE(1132), + [anon_sym_GT_LPAREN] = ACTIONS(2945), + [sym_number] = ACTIONS(2947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), + [sym_word] = ACTIONS(2947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [anon_sym_LT_LPAREN] = ACTIONS(2945), + [sym_ansii_c_string] = ACTIONS(2957), + [sym__special_character] = ACTIONS(2957), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2959), + [sym_raw_string] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(2961), }, [1134] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [anon_sym_RBRACE] = ACTIONS(213), - [sym__concat] = ACTIONS(1298), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(211), + [aux_sym_concatenation_repeat1] = STATE(1134), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(2963), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [anon_sym_esac] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1135] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(411), - [sym__concat] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [sym_variable_name] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(1032), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [anon_sym_AMP_GT] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [1136] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(415), - [sym__concat] = ACTIONS(415), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [sym_variable_name] = ACTIONS(1088), + [anon_sym_RPAREN] = ACTIONS(1086), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [sym_file_descriptor] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [1137] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_GT_LPAREN] = ACTIONS(419), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [sym__concat] = ACTIONS(419), - [sym_word] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(419), - [sym_ansii_c_string] = ACTIONS(419), - [sym__special_character] = ACTIONS(419), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1138] = { - [aux_sym_concatenation_repeat1] = STATE(1146), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(433), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_RPAREN] = ACTIONS(433), - [anon_sym_BQUOTE] = ACTIONS(433), - [anon_sym_GT_LPAREN] = ACTIONS(433), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(433), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__concat] = ACTIONS(2852), - [sym_word] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(433), - [anon_sym_LT_LPAREN] = ACTIONS(433), - [sym_ansii_c_string] = ACTIONS(433), - [sym__special_character] = ACTIONS(433), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_esac] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [1139] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_BQUOTE] = ACTIONS(597), - [anon_sym_GT_LPAREN] = ACTIONS(597), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(597), - [anon_sym_DQUOTE] = ACTIONS(597), - [sym__concat] = ACTIONS(597), - [sym_word] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), - [anon_sym_LT_LPAREN] = ACTIONS(597), - [sym_ansii_c_string] = ACTIONS(597), - [sym__special_character] = ACTIONS(597), + [sym_string] = STATE(1125), + [anon_sym_0] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_POUND] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym__] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_RPAREN] = ACTIONS(1308), + [sym_file_descriptor] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(2972), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [1140] = { - [sym__special_character] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(213), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [sym_variable_name] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1356), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [1141] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(652), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [sym_variable_name] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1410), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [sym_file_descriptor] = ACTIONS(1412), + [anon_sym_AMP_GT] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [1142] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(878), - [sym__concat] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_variable_name] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1428), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [anon_sym_AMP_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [1143] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(882), - [anon_sym_BQUOTE] = ACTIONS(882), - [anon_sym_GT_LPAREN] = ACTIONS(882), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [sym__concat] = ACTIONS(882), - [sym_word] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(882), - [anon_sym_LT_LPAREN] = ACTIONS(882), - [sym_ansii_c_string] = ACTIONS(882), - [sym__special_character] = ACTIONS(882), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [sym_variable_name] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1659), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [sym_file_descriptor] = ACTIONS(1661), + [anon_sym_AMP_GT] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [1144] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(886), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_BQUOTE] = ACTIONS(886), - [anon_sym_GT_LPAREN] = ACTIONS(886), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), - [anon_sym_DQUOTE] = ACTIONS(886), - [sym__concat] = ACTIONS(886), - [sym_word] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), - [anon_sym_LT_LPAREN] = ACTIONS(886), - [sym_ansii_c_string] = ACTIONS(886), - [sym__special_character] = ACTIONS(886), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1671), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1673), + [anon_sym_AMP_GT] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [1145] = { - [sym_command_substitution] = STATE(1144), - [sym_simple_expansion] = STATE(1144), - [sym_string_expansion] = STATE(1144), - [sym_string] = STATE(1144), - [sym_process_substitution] = STATE(1144), - [sym_expansion] = STATE(1144), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2857), - [sym_word] = ACTIONS(2859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(2861), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [sym_ansii_c_string] = ACTIONS(2857), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_GT_LPAREN] = ACTIONS(1025), - [sym__special_character] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [sym_variable_name] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [sym_file_descriptor] = ACTIONS(1683), + [anon_sym_AMP_GT] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [1146] = { - [aux_sym_concatenation_repeat1] = STATE(1146), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(886), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_BQUOTE] = ACTIONS(886), - [anon_sym_GT_LPAREN] = ACTIONS(886), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(886), - [anon_sym_DQUOTE] = ACTIONS(886), - [sym__concat] = ACTIONS(2863), - [sym_word] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(886), - [anon_sym_LT_LPAREN] = ACTIONS(886), - [sym_ansii_c_string] = ACTIONS(886), - [sym__special_character] = ACTIONS(886), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [sym_variable_name] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [sym_file_descriptor] = ACTIONS(1687), + [anon_sym_AMP_GT] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [1147] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(909), - [sym__concat] = ACTIONS(909), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [sym_variable_name] = ACTIONS(1870), + [anon_sym_RPAREN] = ACTIONS(1868), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [sym_file_descriptor] = ACTIONS(1870), + [anon_sym_AMP_GT] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [1148] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(961), - [sym__concat] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [sym_variable_name] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1874), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [anon_sym_AMP_GT] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [1149] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(1067), - [anon_sym_BQUOTE] = ACTIONS(1067), - [anon_sym_GT_LPAREN] = ACTIONS(1067), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), - [anon_sym_DQUOTE] = ACTIONS(1067), - [sym__concat] = ACTIONS(1067), - [sym_word] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), - [anon_sym_LT_LPAREN] = ACTIONS(1067), - [sym_ansii_c_string] = ACTIONS(1067), - [sym__special_character] = ACTIONS(1067), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1878), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [anon_sym_AMP_GT] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [1150] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(878), - [sym__concat] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [sym_variable_name] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1884), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [1151] = { - [sym_string] = STATE(1105), - [anon_sym__] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_0] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2868), - [aux_sym__simple_variable_name_token1] = ACTIONS(2866), - [anon_sym_DOLLAR] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(2868), - [sym_raw_string] = ACTIONS(2872), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [sym_variable_name] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1957), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [sym_file_descriptor] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [1152] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1237), - [sym__concat] = ACTIONS(1237), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [sym_variable_name] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1961), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1963), + [anon_sym_AMP_GT] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [1153] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(287), + [sym__concat] = ACTIONS(1422), + [sym__special_character] = ACTIONS(285), + [sym_comment] = ACTIONS(53), }, [1154] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1306), - [sym__concat] = ACTIONS(1306), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(441), + [sym__concat] = ACTIONS(441), }, [1155] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1402), - [anon_sym_BQUOTE] = ACTIONS(1402), - [anon_sym_GT_LPAREN] = ACTIONS(1402), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1402), - [sym__concat] = ACTIONS(1402), - [sym_word] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1402), - [anon_sym_LT_LPAREN] = ACTIONS(1402), - [sym_ansii_c_string] = ACTIONS(1402), - [sym__special_character] = ACTIONS(1402), + [aux_sym_concatenation_repeat1] = STATE(1167), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(479), + [sym__concat] = ACTIONS(2974), }, [1156] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1460), - [sym__concat] = ACTIONS(1460), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym_file_descriptor] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_AMP_GT] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_esac] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [1157] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1472), - [sym__concat] = ACTIONS(1472), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [sym_file_descriptor] = ACTIONS(511), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(509), + [anon_sym_esac] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [1158] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1482), - [sym__concat] = ACTIONS(1482), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(515), + [sym__concat] = ACTIONS(515), }, [1159] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1486), - [sym__concat] = ACTIONS(1486), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(287), + [sym__special_character] = ACTIONS(285), }, [1160] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1694), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(813), + [sym__special_character] = ACTIONS(2976), }, [1161] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1700), - [sym__concat] = ACTIONS(1700), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(933), + [sym__concat] = ACTIONS(933), }, [1162] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [sym_file_descriptor] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(967), + [anon_sym_esac] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [1163] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1710), - [sym__concat] = ACTIONS(1710), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1164] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1825), - [sym__concat] = ACTIONS(1825), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(977), + [sym__concat] = ACTIONS(977), }, [1165] = { - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1829), - [sym__concat] = ACTIONS(1829), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(981), + [sym__concat] = ACTIONS(981), }, [1166] = { - [aux_sym_concatenation_repeat1] = STATE(1138), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym__concat] = ACTIONS(1368), - [sym_word] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [sym_ansii_c_string] = ACTIONS(213), - [sym__special_character] = ACTIONS(213), + [sym_expansion] = STATE(1165), + [sym_string_expansion] = STATE(1165), + [sym_simple_expansion] = STATE(1165), + [sym_string] = STATE(1165), + [sym_command_substitution] = STATE(1165), + [sym_process_substitution] = STATE(1165), + [sym_arithmetic_expansion] = STATE(1165), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(2979), + [sym__special_character] = ACTIONS(2981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(2981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [sym_word] = ACTIONS(2979), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(2983), + [sym_ansii_c_string] = ACTIONS(2981), }, [1167] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_RPAREN] = ACTIONS(411), - [anon_sym_BQUOTE] = ACTIONS(411), - [anon_sym_GT_LPAREN] = ACTIONS(411), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(411), - [sym__concat] = ACTIONS(411), - [sym_word] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [anon_sym_LT_LPAREN] = ACTIONS(411), - [sym_ansii_c_string] = ACTIONS(411), - [sym__special_character] = ACTIONS(411), + [aux_sym_concatenation_repeat1] = STATE(1167), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(981), + [sym__concat] = ACTIONS(2985), }, [1168] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [sym__concat] = ACTIONS(415), - [sym_word] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [sym__special_character] = ACTIONS(415), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1032), + [anon_sym_esac] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [1169] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [sym_word] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [sym_file_descriptor] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_AMP_GT] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1086), + [anon_sym_esac] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [1170] = { - [aux_sym_concatenation_repeat1] = STATE(1178), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(429), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [sym__concat] = ACTIONS(2874), - [sym_word] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(429), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1171] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(595), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [sym_word] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(595), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), }, [1172] = { - [anon_sym_DOLLAR_LBRACE] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(213), - [sym_word] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(213), - [sym_ansii_c_string] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [sym__special_character] = ACTIONS(213), - [sym_number] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_string] = STATE(1158), + [anon_sym_POUND] = ACTIONS(2988), + [anon_sym_0] = ACTIONS(2990), + [anon_sym_QMARK] = ACTIONS(2992), + [aux_sym__simple_variable_name_token1] = ACTIONS(2990), + [anon_sym__] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(2992), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(2988), + [sym_raw_string] = ACTIONS(2994), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_AT] = ACTIONS(2992), }, [1173] = { - [aux_sym__literal_repeat1] = STATE(1173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(652), - [anon_sym_DQUOTE] = ACTIONS(652), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(652), - [sym_word] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_RPAREN] = ACTIONS(652), - [sym_ansii_c_string] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(652), - [anon_sym_LT_LPAREN] = ACTIONS(652), - [sym__special_character] = ACTIONS(2876), - [sym_number] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(652), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_esac] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [1174] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [sym__concat] = ACTIONS(878), - [sym_word] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [sym_file_descriptor] = ACTIONS(1412), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_AMP_GT] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1410), + [anon_sym_esac] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [1175] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(880), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [sym_word] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_esac] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [1176] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(884), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [sym_word] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1659), + [sym_file_descriptor] = ACTIONS(1661), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_AMP_GT] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1659), + [anon_sym_esac] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [1177] = { - [sym_command_substitution] = STATE(1176), - [sym_simple_expansion] = STATE(1176), - [sym_string_expansion] = STATE(1176), - [sym_string] = STATE(1176), - [sym_process_substitution] = STATE(1176), - [sym_expansion] = STATE(1176), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2879), - [sym_word] = ACTIONS(2881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_DOLLAR] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(1114), - [sym_ansii_c_string] = ACTIONS(2879), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_GT_LPAREN] = ACTIONS(1114), - [sym__special_character] = ACTIONS(2879), - [sym_number] = ACTIONS(2881), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [1178] = { - [aux_sym_concatenation_repeat1] = STATE(1178), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(884), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [sym__concat] = ACTIONS(2885), - [sym_word] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [sym_file_descriptor] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1681), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [1179] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_BQUOTE] = ACTIONS(909), - [anon_sym_GT_LPAREN] = ACTIONS(909), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym__concat] = ACTIONS(909), - [sym_word] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(909), - [anon_sym_LT_LPAREN] = ACTIONS(909), - [sym_ansii_c_string] = ACTIONS(909), - [sym__special_character] = ACTIONS(909), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [sym_file_descriptor] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [1180] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_BQUOTE] = ACTIONS(961), - [anon_sym_GT_LPAREN] = ACTIONS(961), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__concat] = ACTIONS(961), - [sym_word] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), - [anon_sym_LT_LPAREN] = ACTIONS(961), - [sym_ansii_c_string] = ACTIONS(961), - [sym__special_character] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_RPAREN] = ACTIONS(1868), + [sym_file_descriptor] = ACTIONS(1870), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_AMP_GT] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [anon_sym_esac] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [1181] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1065), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [sym_word] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1874), + [anon_sym_esac] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [1182] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(878), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_GT_LPAREN] = ACTIONS(878), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [sym__concat] = ACTIONS(878), - [sym_word] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(878), - [sym_ansii_c_string] = ACTIONS(878), - [sym__special_character] = ACTIONS(878), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [1183] = { - [sym_string] = STATE(1137), - [anon_sym__] = ACTIONS(2888), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2890), - [sym_raw_string] = ACTIONS(2892), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_RPAREN] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2888), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_GT_LPAREN] = ACTIONS(1231), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1015), - [anon_sym_0] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2888), - [sym_word] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), - [aux_sym__simple_variable_name_token1] = ACTIONS(2888), - [anon_sym_LT_LPAREN] = ACTIONS(1231), - [sym_ansii_c_string] = ACTIONS(1231), - [sym__special_character] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [1184] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_BQUOTE] = ACTIONS(1237), - [anon_sym_GT_LPAREN] = ACTIONS(1237), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym__concat] = ACTIONS(1237), - [sym_word] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [anon_sym_LT_LPAREN] = ACTIONS(1237), - [sym_ansii_c_string] = ACTIONS(1237), - [sym__special_character] = ACTIONS(1237), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_RPAREN] = ACTIONS(1957), + [sym_file_descriptor] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_AMP_GT] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1957), + [anon_sym_esac] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [1185] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [sym_word] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1963), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1961), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [1186] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_BQUOTE] = ACTIONS(1306), - [anon_sym_GT_LPAREN] = ACTIONS(1306), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__concat] = ACTIONS(1306), - [sym_word] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1306), - [anon_sym_LT_LPAREN] = ACTIONS(1306), - [sym_ansii_c_string] = ACTIONS(1306), - [sym__special_character] = ACTIONS(1306), + [aux_sym_concatenation_repeat1] = STATE(1188), + [anon_sym_GT_LPAREN] = ACTIONS(287), + [sym_number] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(287), + [sym_ansii_c_string] = ACTIONS(287), + [sym__special_character] = ACTIONS(287), + [sym__concat] = ACTIONS(1446), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(287), + [sym_raw_string] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(285), }, [1187] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1400), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [sym_word] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(441), + [sym_number] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(441), + [sym_ansii_c_string] = ACTIONS(441), + [sym__special_character] = ACTIONS(441), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(441), + [sym_raw_string] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(439), }, [1188] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1460), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_BQUOTE] = ACTIONS(1460), - [anon_sym_GT_LPAREN] = ACTIONS(1460), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym__concat] = ACTIONS(1460), - [sym_word] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), - [anon_sym_LT_LPAREN] = ACTIONS(1460), - [sym_ansii_c_string] = ACTIONS(1460), - [sym__special_character] = ACTIONS(1460), + [aux_sym_concatenation_repeat1] = STATE(1200), + [anon_sym_GT_LPAREN] = ACTIONS(479), + [sym_number] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(479), + [anon_sym_DQUOTE] = ACTIONS(479), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(479), + [anon_sym_RPAREN] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(479), + [sym_ansii_c_string] = ACTIONS(479), + [sym__special_character] = ACTIONS(479), + [sym__concat] = ACTIONS(2996), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(479), + [sym_raw_string] = ACTIONS(479), + [anon_sym_DOLLAR] = ACTIONS(475), }, [1189] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_BQUOTE] = ACTIONS(1472), - [anon_sym_GT_LPAREN] = ACTIONS(1472), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__concat] = ACTIONS(1472), - [sym_word] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1472), - [anon_sym_LT_LPAREN] = ACTIONS(1472), - [sym_ansii_c_string] = ACTIONS(1472), - [sym__special_character] = ACTIONS(1472), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(507), + [sym__concat] = ACTIONS(507), }, [1190] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_BQUOTE] = ACTIONS(1482), - [anon_sym_GT_LPAREN] = ACTIONS(1482), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym__concat] = ACTIONS(1482), - [sym_word] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), - [anon_sym_LT_LPAREN] = ACTIONS(1482), - [sym_ansii_c_string] = ACTIONS(1482), - [sym__special_character] = ACTIONS(1482), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(511), + [sym__concat] = ACTIONS(511), }, [1191] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_BQUOTE] = ACTIONS(1486), - [anon_sym_GT_LPAREN] = ACTIONS(1486), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__concat] = ACTIONS(1486), - [sym_word] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), - [anon_sym_LT_LPAREN] = ACTIONS(1486), - [sym_ansii_c_string] = ACTIONS(1486), - [sym__special_character] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(515), + [sym_number] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(515), + [sym_ansii_c_string] = ACTIONS(515), + [sym__special_character] = ACTIONS(515), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(515), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(515), + [sym_raw_string] = ACTIONS(515), + [anon_sym_DOLLAR] = ACTIONS(513), }, [1192] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_RPAREN] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_GT_LPAREN] = ACTIONS(1694), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [sym__concat] = ACTIONS(1694), - [sym_word] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1694), - [sym_ansii_c_string] = ACTIONS(1694), - [sym__special_character] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(287), + [sym_number] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(287), + [sym_ansii_c_string] = ACTIONS(287), + [sym__special_character] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(287), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(287), + [sym_raw_string] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(285), }, [1193] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1700), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1700), - [anon_sym_BQUOTE] = ACTIONS(1700), - [anon_sym_GT_LPAREN] = ACTIONS(1700), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [sym__concat] = ACTIONS(1700), - [sym_word] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), - [anon_sym_LT_LPAREN] = ACTIONS(1700), - [sym_ansii_c_string] = ACTIONS(1700), - [sym__special_character] = ACTIONS(1700), + [aux_sym__literal_repeat1] = STATE(1193), + [anon_sym_GT_LPAREN] = ACTIONS(813), + [sym_number] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), + [anon_sym_DQUOTE] = ACTIONS(813), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(813), + [sym_word] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(813), + [sym_ansii_c_string] = ACTIONS(813), + [sym__special_character] = ACTIONS(2998), + [anon_sym_PIPE] = ACTIONS(813), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(813), + [sym_raw_string] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(811), }, [1194] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1704), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_RPAREN] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [anon_sym_GT_LPAREN] = ACTIONS(1704), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [sym__concat] = ACTIONS(1704), - [sym_word] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [anon_sym_LT_LPAREN] = ACTIONS(1704), - [sym_ansii_c_string] = ACTIONS(1704), - [sym__special_character] = ACTIONS(1704), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [sym_number] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(931), }, [1195] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1710), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_GT_LPAREN] = ACTIONS(1710), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1710), - [anon_sym_DQUOTE] = ACTIONS(1710), - [sym__concat] = ACTIONS(1710), - [sym_word] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1710), - [anon_sym_LT_LPAREN] = ACTIONS(1710), - [sym_ansii_c_string] = ACTIONS(1710), - [sym__special_character] = ACTIONS(1710), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(969), + [sym__concat] = ACTIONS(969), }, [1196] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1825), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1825), - [anon_sym_BQUOTE] = ACTIONS(1825), - [anon_sym_GT_LPAREN] = ACTIONS(1825), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [sym__concat] = ACTIONS(1825), - [sym_word] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1825), - [anon_sym_LT_LPAREN] = ACTIONS(1825), - [sym_ansii_c_string] = ACTIONS(1825), - [sym__special_character] = ACTIONS(1825), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(973), + [sym__concat] = ACTIONS(973), }, [1197] = { - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1829), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_BQUOTE] = ACTIONS(1829), - [anon_sym_GT_LPAREN] = ACTIONS(1829), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym__concat] = ACTIONS(1829), - [sym_word] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1829), - [anon_sym_LT_LPAREN] = ACTIONS(1829), - [sym_ansii_c_string] = ACTIONS(1829), - [sym__special_character] = ACTIONS(1829), + [anon_sym_GT_LPAREN] = ACTIONS(977), + [sym_number] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(977), + [sym_ansii_c_string] = ACTIONS(977), + [sym__special_character] = ACTIONS(977), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(977), + [sym_raw_string] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), }, [1198] = { - [aux_sym_concatenation_repeat1] = STATE(1170), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(211), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [sym__concat] = ACTIONS(2188), - [sym_word] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(981), + [sym_number] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [sym_ansii_c_string] = ACTIONS(981), + [sym__special_character] = ACTIONS(981), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_raw_string] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), }, [1199] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(409), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [sym_word] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(409), + [sym_expansion] = STATE(1198), + [sym_string_expansion] = STATE(1198), + [sym_simple_expansion] = STATE(1198), + [sym_string] = STATE(1198), + [sym_command_substitution] = STATE(1198), + [sym_process_substitution] = STATE(1198), + [sym_arithmetic_expansion] = STATE(1198), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(3001), + [sym__special_character] = ACTIONS(3003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(3003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [sym_word] = ACTIONS(3001), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(3005), + [sym_ansii_c_string] = ACTIONS(3003), }, [1200] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(413), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [sym_word] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(413), + [aux_sym_concatenation_repeat1] = STATE(1200), + [anon_sym_GT_LPAREN] = ACTIONS(981), + [sym_number] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [sym_ansii_c_string] = ACTIONS(981), + [sym__special_character] = ACTIONS(981), + [sym__concat] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_raw_string] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), }, [1201] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_EQ_TILDE] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1034), + [sym__concat] = ACTIONS(1034), }, [1202] = { - [aux_sym_concatenation_repeat1] = STATE(1210), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2896), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_EQ_TILDE] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_EQ_EQ] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [anon_sym_esac] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1088), + [sym__concat] = ACTIONS(1088), }, [1203] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_EQ_TILDE] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [anon_sym_esac] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(973), + [sym__concat] = ACTIONS(973), }, [1204] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(211), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(1298), + [sym_number] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1298), + [sym_ansii_c_string] = ACTIONS(1298), + [sym__special_character] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1298), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1298), + [sym_raw_string] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1296), }, [1205] = { - [aux_sym__literal_repeat1] = STATE(1205), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(647), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [sym__special_character] = ACTIONS(2898), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(647), + [sym_string] = STATE(1191), + [anon_sym_0] = ACTIONS(3010), + [anon_sym_GT_LPAREN] = ACTIONS(1312), + [sym_number] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LT_LPAREN] = ACTIONS(1312), + [sym_ansii_c_string] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_POUND] = ACTIONS(3014), + [sym__special_character] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(3010), + [aux_sym__simple_variable_name_token1] = ACTIONS(3010), + [anon_sym__] = ACTIONS(3010), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1312), + [sym_raw_string] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_AT] = ACTIONS(3010), }, [1206] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(876), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [sym_word] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1358), + [sym__concat] = ACTIONS(1358), }, [1207] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_EQ_TILDE] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_esac] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1412), + [sym__concat] = ACTIONS(1412), }, [1208] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_esac] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1430), + [sym__concat] = ACTIONS(1430), }, [1209] = { - [sym_command_substitution] = STATE(1208), - [sym_simple_expansion] = STATE(1208), - [sym_string_expansion] = STATE(1208), - [sym_string] = STATE(1208), - [sym_process_substitution] = STATE(1208), - [sym_expansion] = STATE(1208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1758), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2901), - [sym_word] = ACTIONS(2903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(2905), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [sym_ansii_c_string] = ACTIONS(2901), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym__special_character] = ACTIONS(2901), - [sym_number] = ACTIONS(2903), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1661), + [sym__concat] = ACTIONS(1661), }, [1210] = { - [aux_sym_concatenation_repeat1] = STATE(1210), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_esac] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1673), + [sym__concat] = ACTIONS(1673), }, [1211] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(907), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [sym_word] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), }, [1212] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [sym_word] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1687), + [sym__concat] = ACTIONS(1687), }, [1213] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [anon_sym_EQ_TILDE] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_EQ_EQ] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_esac] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1870), + [sym__concat] = ACTIONS(1870), }, [1214] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(876), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [sym_word] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1876), + [sym__concat] = ACTIONS(1876), }, [1215] = { - [sym_string] = STATE(1169), - [anon_sym__] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2910), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2912), - [sym_raw_string] = ACTIONS(2914), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_AT] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1418), - [anon_sym_0] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [sym_word] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2910), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1880), + [sym__concat] = ACTIONS(1880), }, [1216] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1235), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [sym_word] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), }, [1217] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [sym_word] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), }, [1218] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1304), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [sym_word] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(1963), + [sym__concat] = ACTIONS(1963), }, [1219] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [anon_sym_esac] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [aux_sym_concatenation_repeat1] = STATE(1221), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [sym_word] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [sym__concat] = ACTIONS(2282), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), }, [1220] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1458), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [sym_word] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [sym_word] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), }, [1221] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1470), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [sym_word] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), + [aux_sym_concatenation_repeat1] = STATE(1233), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [sym_word] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [sym__concat] = ACTIONS(3018), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), }, [1222] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1480), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [sym_word] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_GT_LPAREN] = ACTIONS(507), + [sym_number] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(507), + [sym_ansii_c_string] = ACTIONS(507), + [sym__special_character] = ACTIONS(507), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_raw_string] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(505), }, [1223] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1484), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [sym_word] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_GT_LPAREN] = ACTIONS(511), + [sym_number] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), + [anon_sym_RPAREN] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [sym_ansii_c_string] = ACTIONS(511), + [sym__special_character] = ACTIONS(511), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(511), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(511), + [sym_raw_string] = ACTIONS(511), + [anon_sym_DOLLAR] = ACTIONS(509), }, [1224] = { + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [sym_word] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [sym__concat] = ACTIONS(515), [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1692), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [sym_word] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), }, [1225] = { + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [sym_word] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1698), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [sym_word] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), }, [1226] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1702), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [sym_word] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), + [aux_sym__literal_repeat1] = STATE(1226), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [sym_word] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [sym__special_character] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), }, [1227] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1708), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [sym_word] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [sym_word] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), }, [1228] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [sym_word] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_GT_LPAREN] = ACTIONS(969), + [sym_number] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(969), + [sym_ansii_c_string] = ACTIONS(969), + [sym__special_character] = ACTIONS(969), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(969), + [sym_raw_string] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), }, [1229] = { - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1827), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [sym_word] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_GT_LPAREN] = ACTIONS(973), + [sym_number] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(973), + [sym_ansii_c_string] = ACTIONS(973), + [sym__special_character] = ACTIONS(973), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_raw_string] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), }, [1230] = { - [aux_sym_concatenation_repeat1] = STATE(1202), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [sym_word] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), }, [1231] = { - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(411), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(411), - [sym__heredoc_body_end] = ACTIONS(411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(411), - [sym__heredoc_body_middle] = ACTIONS(411), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [sym_word] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), }, [1232] = { - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(415), - [sym__heredoc_body_end] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [sym__heredoc_body_middle] = ACTIONS(415), + [sym_expansion] = STATE(1231), + [sym_string_expansion] = STATE(1231), + [sym_simple_expansion] = STATE(1231), + [sym_string] = STATE(1231), + [sym_command_substitution] = STATE(1231), + [sym_process_substitution] = STATE(1231), + [sym_arithmetic_expansion] = STATE(1231), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [sym_number] = ACTIONS(3023), + [sym__special_character] = ACTIONS(3025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1168), + [sym_raw_string] = ACTIONS(3025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), + [sym_word] = ACTIONS(3023), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(3027), + [sym_ansii_c_string] = ACTIONS(3025), }, [1233] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_variable_name] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [aux_sym__simple_variable_name_token1] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [aux_sym_concatenation_repeat1] = STATE(1233), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [sym_word] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [sym__concat] = ACTIONS(3029), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), }, [1234] = { - [aux_sym_concatenation_repeat1] = STATE(1242), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2916), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [sym_variable_name] = ACTIONS(433), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [anon_sym_esac] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [aux_sym__simple_variable_name_token1] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(1034), + [sym_number] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1034), + [sym_ansii_c_string] = ACTIONS(1034), + [sym__special_character] = ACTIONS(1034), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1034), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1034), + [sym_raw_string] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1032), }, [1235] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [sym_variable_name] = ACTIONS(597), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [anon_sym_esac] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [aux_sym__simple_variable_name_token1] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(1088), + [sym_number] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1088), + [anon_sym_RPAREN] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1088), + [sym_ansii_c_string] = ACTIONS(1088), + [sym__special_character] = ACTIONS(1088), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1088), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1088), + [sym_raw_string] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1086), }, [1236] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [anon_sym_EQ_TILDE] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(973), + [sym_number] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(973), + [sym_ansii_c_string] = ACTIONS(973), + [sym__special_character] = ACTIONS(973), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_raw_string] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), }, [1237] = { - [aux_sym__literal_repeat1] = STATE(1237), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_EQ_TILDE] = ACTIONS(647), - [sym__special_character] = ACTIONS(2918), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_EQ_EQ] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [anon_sym_esac] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [sym_word] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), }, [1238] = { - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(878), - [sym__heredoc_body_end] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [sym__heredoc_body_middle] = ACTIONS(878), + [sym_string] = STATE(1224), + [anon_sym_0] = ACTIONS(3032), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(3034), + [sym_word] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(3032), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(3034), + [sym__special_character] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(3032), + [aux_sym__simple_variable_name_token1] = ACTIONS(3032), + [anon_sym__] = ACTIONS(3032), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(3034), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(3032), }, [1239] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [sym_variable_name] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_esac] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [aux_sym__simple_variable_name_token1] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [sym_number] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1356), }, [1240] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_esac] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(1412), + [sym_number] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1412), + [sym_ansii_c_string] = ACTIONS(1412), + [sym__special_character] = ACTIONS(1412), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1412), + [sym_raw_string] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1410), }, [1241] = { - [sym_command_substitution] = STATE(1240), - [sym_simple_expansion] = STATE(1240), - [sym_string_expansion] = STATE(1240), - [sym_string] = STATE(1240), - [sym_process_substitution] = STATE(1240), - [sym_expansion] = STATE(1240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2925), - [sym_word] = ACTIONS(2927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2929), - [anon_sym_DOLLAR] = ACTIONS(2931), - [anon_sym_LT_LPAREN] = ACTIONS(2933), - [sym_ansii_c_string] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2935), - [anon_sym_GT_LPAREN] = ACTIONS(2933), - [sym__special_character] = ACTIONS(2925), - [sym_number] = ACTIONS(2927), + [anon_sym_GT_LPAREN] = ACTIONS(1430), + [sym_number] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1430), + [sym_ansii_c_string] = ACTIONS(1430), + [sym__special_character] = ACTIONS(1430), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_raw_string] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(1428), }, [1242] = { - [aux_sym_concatenation_repeat1] = STATE(1242), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_esac] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(1661), + [sym_number] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1661), + [sym_ansii_c_string] = ACTIONS(1661), + [sym__special_character] = ACTIONS(1661), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1661), + [sym_raw_string] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), }, [1243] = { - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(909), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(909), - [sym__heredoc_body_end] = ACTIONS(909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(909), - [sym__heredoc_body_middle] = ACTIONS(909), + [anon_sym_GT_LPAREN] = ACTIONS(1673), + [sym_number] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1673), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1673), + [sym_ansii_c_string] = ACTIONS(1673), + [sym__special_character] = ACTIONS(1673), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1671), }, [1244] = { - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym__heredoc_body_end] = ACTIONS(961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), - [sym__heredoc_body_middle] = ACTIONS(961), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_number] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [sym_ansii_c_string] = ACTIONS(1683), + [sym__special_character] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1683), + [sym_raw_string] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), }, [1245] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(1067), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_esac] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [aux_sym__simple_variable_name_token1] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1687), + [sym_number] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1687), + [sym_ansii_c_string] = ACTIONS(1687), + [sym__special_character] = ACTIONS(1687), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_raw_string] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1685), }, [1246] = { - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(878), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(878), - [sym__heredoc_body_end] = ACTIONS(878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(878), - [sym__heredoc_body_middle] = ACTIONS(878), + [anon_sym_GT_LPAREN] = ACTIONS(1870), + [sym_number] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1870), + [anon_sym_RPAREN] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1870), + [sym_ansii_c_string] = ACTIONS(1870), + [sym__special_character] = ACTIONS(1870), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1870), + [sym_raw_string] = ACTIONS(1870), + [anon_sym_DOLLAR] = ACTIONS(1868), }, [1247] = { - [sym_string] = STATE(738), - [anon_sym__] = ACTIONS(2572), - [anon_sym_QMARK] = ACTIONS(2572), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2574), - [sym_raw_string] = ACTIONS(2576), - [anon_sym_DOLLAR] = ACTIONS(2574), - [anon_sym_AT] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2578), - [anon_sym_0] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2572), - [aux_sym__simple_variable_name_token1] = ACTIONS(2572), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1876), + [sym_number] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), + [anon_sym_DQUOTE] = ACTIONS(1876), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1876), + [sym_ansii_c_string] = ACTIONS(1876), + [sym__special_character] = ACTIONS(1876), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1876), + [sym_raw_string] = ACTIONS(1876), + [anon_sym_DOLLAR] = ACTIONS(1874), }, [1248] = { - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1237), - [sym__heredoc_body_end] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [sym__heredoc_body_middle] = ACTIONS(1237), + [anon_sym_GT_LPAREN] = ACTIONS(1880), + [sym_number] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1880), + [anon_sym_DQUOTE] = ACTIONS(1880), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1880), + [sym_ansii_c_string] = ACTIONS(1880), + [sym__special_character] = ACTIONS(1880), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1880), + [anon_sym_DOLLAR] = ACTIONS(1878), }, [1249] = { - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym__heredoc_body_end] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [sym__heredoc_body_middle] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1886), + [sym_number] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1886), + [sym_ansii_c_string] = ACTIONS(1886), + [sym__special_character] = ACTIONS(1886), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1886), + [sym_raw_string] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1884), }, [1250] = { - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1306), - [sym__heredoc_body_end] = ACTIONS(1306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1306), - [sym__heredoc_body_middle] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_number] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [sym_ansii_c_string] = ACTIONS(1959), + [sym__special_character] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1959), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1957), }, [1251] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [sym_variable_name] = ACTIONS(1402), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [anon_sym_esac] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [aux_sym__simple_variable_name_token1] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1963), + [sym_number] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1963), + [sym_ansii_c_string] = ACTIONS(1963), + [sym__special_character] = ACTIONS(1963), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1963), + [sym_raw_string] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1961), }, [1252] = { - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1460), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1460), - [sym__heredoc_body_end] = ACTIONS(1460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), - [sym__heredoc_body_middle] = ACTIONS(1460), + [aux_sym_concatenation_repeat1] = STATE(1254), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_esac] = ACTIONS(285), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1253] = { - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1472), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1472), - [sym__heredoc_body_end] = ACTIONS(1472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1472), - [sym__heredoc_body_middle] = ACTIONS(1472), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_EQ_TILDE] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(439), + [anon_sym_EQ_EQ] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [anon_sym_esac] = ACTIONS(439), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [1254] = { - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1482), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1482), - [sym__heredoc_body_end] = ACTIONS(1482), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), - [sym__heredoc_body_middle] = ACTIONS(1482), + [aux_sym_concatenation_repeat1] = STATE(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_EQ_TILDE] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [anon_sym_EQ_EQ] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [anon_sym_esac] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [1255] = { - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1486), - [sym__heredoc_body_end] = ACTIONS(1486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), - [sym__heredoc_body_middle] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [sym_word] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), }, [1256] = { - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1694), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1694), - [sym__heredoc_body_end] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1694), - [sym__heredoc_body_middle] = ACTIONS(1694), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [sym_word] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), }, [1257] = { - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1700), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1700), - [sym__heredoc_body_end] = ACTIONS(1700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), - [sym__heredoc_body_middle] = ACTIONS(1700), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_AMP_GT] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [anon_sym_esac] = ACTIONS(513), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [1258] = { - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1704), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1704), - [sym__heredoc_body_end] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1704), - [sym__heredoc_body_middle] = ACTIONS(1704), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_esac] = ACTIONS(285), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1259] = { - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1710), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1710), - [sym__heredoc_body_end] = ACTIONS(1710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1710), - [sym__heredoc_body_middle] = ACTIONS(1710), + [aux_sym__literal_repeat1] = STATE(1259), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_EQ_TILDE] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(813), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [sym__special_character] = ACTIONS(3040), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [anon_sym_esac] = ACTIONS(811), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [1260] = { - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1825), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym__heredoc_body_end] = ACTIONS(1825), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1825), - [sym__heredoc_body_middle] = ACTIONS(1825), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_EQ_TILDE] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [sym_file_descriptor] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(931), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [1261] = { - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1829), - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(1829), - [sym__heredoc_body_end] = ACTIONS(1829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1829), - [sym__heredoc_body_middle] = ACTIONS(1829), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [sym_word] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), }, [1262] = { - [aux_sym_concatenation_repeat1] = STATE(1234), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [sym_word] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), }, [1263] = { - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_EQ_TILDE] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_EQ_EQ] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_esac] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_EQ_TILDE] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [anon_sym_esac] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [1264] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_EQ_TILDE] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_esac] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_EQ_TILDE] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_esac] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1265] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [aux_sym__simple_variable_name_token1] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [sym_expansion] = STATE(1264), + [sym_string_expansion] = STATE(1264), + [sym_simple_expansion] = STATE(1264), + [sym_string] = STATE(1264), + [sym_command_substitution] = STATE(1264), + [sym_process_substitution] = STATE(1264), + [sym_arithmetic_expansion] = STATE(1264), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_number] = ACTIONS(3043), + [sym__special_character] = ACTIONS(3045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [anon_sym_BQUOTE] = ACTIONS(1820), + [sym_raw_string] = ACTIONS(3045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [sym_word] = ACTIONS(3043), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_ansii_c_string] = ACTIONS(3045), }, [1266] = { - [aux_sym_concatenation_repeat1] = STATE(1274), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2940), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [anon_sym_esac] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [aux_sym__simple_variable_name_token1] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [aux_sym_concatenation_repeat1] = STATE(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_EQ_TILDE] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_esac] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1267] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [anon_sym_esac] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [aux_sym__simple_variable_name_token1] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [sym_word] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), }, [1268] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [sym_word] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), }, [1269] = { - [aux_sym__literal_repeat1] = STATE(1269), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [sym__special_character] = ACTIONS(2942), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [sym_variable_name] = ACTIONS(652), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [anon_sym_esac] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [aux_sym__simple_variable_name_token1] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [sym_word] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), }, [1270] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_esac] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_esac] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [1271] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_esac] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [aux_sym__simple_variable_name_token1] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [sym_string] = STATE(1191), + [anon_sym_0] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_RPAREN] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_POUND] = ACTIONS(3014), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(1312), + [aux_sym__simple_variable_name_token1] = ACTIONS(3010), + [anon_sym__] = ACTIONS(3010), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(3014), + [anon_sym_AT] = ACTIONS(3052), }, [1272] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_esac] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [sym_word] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), }, [1273] = { - [sym_command_substitution] = STATE(1272), - [sym_simple_expansion] = STATE(1272), - [sym_string_expansion] = STATE(1272), - [sym_string] = STATE(1272), - [sym_process_substitution] = STATE(1272), - [sym_expansion] = STATE(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2949), - [sym_word] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2953), - [anon_sym_DOLLAR] = ACTIONS(2955), - [anon_sym_LT_LPAREN] = ACTIONS(2957), - [sym_ansii_c_string] = ACTIONS(2949), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2957), - [sym__special_character] = ACTIONS(2949), - [sym_number] = ACTIONS(2951), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [sym_word] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), }, [1274] = { - [aux_sym_concatenation_repeat1] = STATE(1274), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_esac] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [aux_sym__simple_variable_name_token1] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [sym_word] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), }, [1275] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_esac] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [sym_word] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), }, [1276] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_esac] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [sym_word] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), }, [1277] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_esac] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [aux_sym__simple_variable_name_token1] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [sym_word] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), }, [1278] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_esac] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), }, [1279] = { - [sym_string] = STATE(1201), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym__] = ACTIONS(2964), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2964), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2964), - [anon_sym_EQ_TILDE] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2966), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_raw_string] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(2966), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2964), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_esac] = ACTIONS(1227), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [sym_word] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), }, [1280] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [anon_sym_EQ_TILDE] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_esac] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [sym_word] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), }, [1281] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [sym_word] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_esac] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), }, [1282] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [sym_word] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_esac] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), }, [1283] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [anon_sym_esac] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [aux_sym__simple_variable_name_token1] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [sym_word] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), }, [1284] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [anon_sym_EQ_TILDE] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [anon_sym_esac] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [sym_word] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), }, [1285] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [anon_sym_EQ_TILDE] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_EQ_EQ] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [anon_sym_esac] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [aux_sym_concatenation_repeat1] = STATE(1287), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_esac] = ACTIONS(285), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1286] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [anon_sym_EQ_TILDE] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_EQ_EQ] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [anon_sym_esac] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [aux_sym__simple_variable_name_token1] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_variable_name] = ACTIONS(441), + [sym_file_descriptor] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [anon_sym_esac] = ACTIONS(439), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [1287] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [anon_sym_EQ_TILDE] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_EQ_EQ] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [anon_sym_esac] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [aux_sym_concatenation_repeat1] = STATE(1299), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(475), + [aux_sym__simple_variable_name_token1] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [sym_variable_name] = ACTIONS(479), + [sym_file_descriptor] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [anon_sym_esac] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [1288] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [anon_sym_EQ_TILDE] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_EQ_EQ] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [anon_sym_esac] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(507), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(507), + [sym__heredoc_body_end] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), + [sym__heredoc_body_middle] = ACTIONS(507), }, [1289] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [anon_sym_EQ_TILDE] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [anon_sym_esac] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(511), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(511), + [sym__heredoc_body_end] = ACTIONS(511), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(511), + [sym__heredoc_body_middle] = ACTIONS(511), }, [1290] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [anon_sym_EQ_TILDE] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [anon_sym_esac] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [aux_sym__simple_variable_name_token1] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_file_descriptor] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_AMP_GT] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [anon_sym_esac] = ACTIONS(513), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [1291] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_EQ_TILDE] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_esac] = ACTIONS(285), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_esac] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1292] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_esac] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [aux_sym__literal_repeat1] = STATE(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [aux_sym__simple_variable_name_token1] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [sym_variable_name] = ACTIONS(813), + [sym_file_descriptor] = ACTIONS(813), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(3056), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [anon_sym_esac] = ACTIONS(811), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [1293] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [anon_sym_esac] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [aux_sym__simple_variable_name_token1] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [sym_variable_name] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(931), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [1294] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_EQ_TILDE] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [sym_file_descriptor] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [anon_sym_esac] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [1295] = { - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_variable_name] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_esac] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [aux_sym__simple_variable_name_token1] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), + [sym__heredoc_body_end] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), + [sym__heredoc_body_middle] = ACTIONS(973), }, [1296] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_variable_name] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_esac] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [aux_sym__simple_variable_name_token1] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [aux_sym__simple_variable_name_token1] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [sym_variable_name] = ACTIONS(977), + [sym_file_descriptor] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [anon_sym_esac] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [1297] = { - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(417), - [anon_sym_GT_LPAREN] = ACTIONS(417), - [sym_number] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [sym__concat] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [sym__special_character] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [sym_raw_string] = ACTIONS(417), - [sym_variable_name] = ACTIONS(419), - [sym_file_descriptor] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [anon_sym_LT_LT_LT] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(417), - [anon_sym_LT_LPAREN] = ACTIONS(417), - [sym_ansii_c_string] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_esac] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1298] = { - [aux_sym_concatenation_repeat1] = STATE(1306), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_number] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [sym__concat] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(429), - [sym_word] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [sym__special_character] = ACTIONS(429), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [sym_raw_string] = ACTIONS(429), - [sym_variable_name] = ACTIONS(433), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [anon_sym_esac] = ACTIONS(429), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [sym_ansii_c_string] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), + [sym_expansion] = STATE(1297), + [sym_string_expansion] = STATE(1297), + [sym_simple_expansion] = STATE(1297), + [sym_string] = STATE(1297), + [sym_command_substitution] = STATE(1297), + [sym_process_substitution] = STATE(1297), + [sym_arithmetic_expansion] = STATE(1297), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(3059), + [sym_number] = ACTIONS(3061), + [sym__special_character] = ACTIONS(3063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(3063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2542), + [sym_word] = ACTIONS(3061), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [anon_sym_DOLLAR] = ACTIONS(3073), + [sym_ansii_c_string] = ACTIONS(3063), }, [1299] = { - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_AMP_GT_GT] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(595), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym__concat] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [sym_word] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_LT_AMP] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [sym__special_character] = ACTIONS(595), - [anon_sym_LT_LT_DASH] = ACTIONS(595), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [sym_raw_string] = ACTIONS(595), - [sym_variable_name] = ACTIONS(597), - [sym_file_descriptor] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_AMP_GT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(595), - [anon_sym_LT_LT_LT] = ACTIONS(595), - [anon_sym_GT_AMP] = ACTIONS(595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(595), - [anon_sym_esac] = ACTIONS(595), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), + [aux_sym_concatenation_repeat1] = STATE(1299), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(3075), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_esac] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1300] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [aux_sym__simple_variable_name_token1] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(1034), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1034), + [sym__heredoc_body_end] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), + [sym__heredoc_body_middle] = ACTIONS(1034), }, [1301] = { - [aux_sym__literal_repeat1] = STATE(1301), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [sym__special_character] = ACTIONS(2972), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [anon_sym_esac] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [aux_sym__simple_variable_name_token1] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_BQUOTE] = ACTIONS(1088), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1088), + [sym__heredoc_body_end] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1088), + [sym__heredoc_body_middle] = ACTIONS(1088), }, [1302] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_esac] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), + [sym__heredoc_body_end] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), + [sym__heredoc_body_middle] = ACTIONS(973), }, [1303] = { - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_AMP_GT_GT] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_BQUOTE] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [sym__concat] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(880), - [sym_word] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_AMP] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [sym__special_character] = ACTIONS(880), - [anon_sym_LT_LT_DASH] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [sym_raw_string] = ACTIONS(880), - [sym_variable_name] = ACTIONS(882), - [sym_file_descriptor] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_AMP_GT] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_LT_LT_LT] = ACTIONS(880), - [anon_sym_GT_AMP] = ACTIONS(880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(880), - [anon_sym_esac] = ACTIONS(880), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [sym_ansii_c_string] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_SEMI_SEMI] = ACTIONS(880), - [anon_sym_PIPE_AMP] = ACTIONS(880), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [aux_sym__simple_variable_name_token1] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym_variable_name] = ACTIONS(1298), + [sym_file_descriptor] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_esac] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [1304] = { - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_esac] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [sym_string] = STATE(785), + [anon_sym_0] = ACTIONS(2710), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_QMARK] = ACTIONS(2710), + [aux_sym__simple_variable_name_token1] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2716), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(2710), }, [1305] = { - [sym_command_substitution] = STATE(1304), - [sym_simple_expansion] = STATE(1304), - [sym_string_expansion] = STATE(1304), - [sym_string] = STATE(1304), - [sym_process_substitution] = STATE(1304), - [sym_expansion] = STATE(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2979), - [sym_word] = ACTIONS(2981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2983), - [anon_sym_DOLLAR] = ACTIONS(2985), - [anon_sym_LT_LPAREN] = ACTIONS(2987), - [sym_ansii_c_string] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2989), - [anon_sym_GT_LPAREN] = ACTIONS(2987), - [sym__special_character] = ACTIONS(2979), - [sym_number] = ACTIONS(2981), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [sym__heredoc_body_end] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [sym__heredoc_body_middle] = ACTIONS(1358), }, [1306] = { - [aux_sym_concatenation_repeat1] = STATE(1306), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_AMP_GT_GT] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_BQUOTE] = ACTIONS(884), - [anon_sym_GT_LPAREN] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [sym__concat] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(884), - [sym_word] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_AMP] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [sym__special_character] = ACTIONS(884), - [anon_sym_LT_LT_DASH] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [sym_raw_string] = ACTIONS(884), - [sym_variable_name] = ACTIONS(886), - [sym_file_descriptor] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_AMP_GT] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_LT_LT_LT] = ACTIONS(884), - [anon_sym_GT_AMP] = ACTIONS(884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(884), - [anon_sym_esac] = ACTIONS(884), - [anon_sym_LT_LPAREN] = ACTIONS(884), - [sym_ansii_c_string] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_SEMI_SEMI] = ACTIONS(884), - [anon_sym_PIPE_AMP] = ACTIONS(884), + [anon_sym_BQUOTE] = ACTIONS(1412), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1412), + [sym__heredoc_body_end] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), + [sym__heredoc_body_middle] = ACTIONS(1412), }, [1307] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [sym_variable_name] = ACTIONS(909), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_esac] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [aux_sym__simple_variable_name_token1] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1430), + [sym__heredoc_body_end] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1430), + [sym__heredoc_body_middle] = ACTIONS(1430), }, [1308] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [sym_variable_name] = ACTIONS(961), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_esac] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [aux_sym__simple_variable_name_token1] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(1661), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1661), + [sym__heredoc_body_end] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1661), + [sym__heredoc_body_middle] = ACTIONS(1661), }, [1309] = { - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_AMP_GT_GT] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1065), - [anon_sym_BQUOTE] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_number] = ACTIONS(1065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), - [anon_sym_PIPE_PIPE] = ACTIONS(1065), - [sym__concat] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1065), - [sym_word] = ACTIONS(1065), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_LT_AMP] = ACTIONS(1065), - [anon_sym_GT_GT] = ACTIONS(1065), - [sym__special_character] = ACTIONS(1065), - [anon_sym_LT_LT_DASH] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(1067), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_AMP_GT] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_LT_LT_LT] = ACTIONS(1065), - [anon_sym_GT_AMP] = ACTIONS(1065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), - [anon_sym_esac] = ACTIONS(1065), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [sym_ansii_c_string] = ACTIONS(1065), - [anon_sym_AMP_AMP] = ACTIONS(1065), - [anon_sym_SEMI_SEMI] = ACTIONS(1065), - [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1673), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1673), + [sym__heredoc_body_end] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1673), + [sym__heredoc_body_middle] = ACTIONS(1673), }, [1310] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_esac] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(1683), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), + [sym__heredoc_body_end] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [sym__heredoc_body_middle] = ACTIONS(1683), }, [1311] = { - [sym_string] = STATE(1233), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym__] = ACTIONS(2994), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2994), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2994), - [sym__special_character] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2996), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_raw_string] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2996), - [sym_variable_name] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(2446), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_esac] = ACTIONS(1227), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1687), + [sym__heredoc_body_end] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), + [sym__heredoc_body_middle] = ACTIONS(1687), }, [1312] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [sym_variable_name] = ACTIONS(1237), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_esac] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [aux_sym__simple_variable_name_token1] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1870), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1870), + [sym__heredoc_body_end] = ACTIONS(1870), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1870), + [sym__heredoc_body_middle] = ACTIONS(1870), }, [1313] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_variable_name] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_esac] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [aux_sym__simple_variable_name_token1] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1876), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), + [sym__heredoc_body_end] = ACTIONS(1876), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), + [sym__heredoc_body_middle] = ACTIONS(1876), }, [1314] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_variable_name] = ACTIONS(1306), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_esac] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [aux_sym__simple_variable_name_token1] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1880), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1880), + [sym__heredoc_body_end] = ACTIONS(1880), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1880), + [sym__heredoc_body_middle] = ACTIONS(1880), }, [1315] = { - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_AMP_GT_GT] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [sym__concat] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1400), - [sym_word] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_AMP] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1400), - [anon_sym_LT_LT_DASH] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_raw_string] = ACTIONS(1400), - [sym_variable_name] = ACTIONS(1402), - [sym_file_descriptor] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_AMP_GT] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_GT_AMP] = ACTIONS(1400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1400), - [anon_sym_esac] = ACTIONS(1400), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [sym_ansii_c_string] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_SEMI_SEMI] = ACTIONS(1400), - [anon_sym_PIPE_AMP] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1886), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), + [sym__heredoc_body_end] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), + [sym__heredoc_body_middle] = ACTIONS(1886), }, [1316] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [sym_variable_name] = ACTIONS(1460), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [anon_sym_esac] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [aux_sym__simple_variable_name_token1] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1959), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [sym__heredoc_body_end] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [sym__heredoc_body_middle] = ACTIONS(1959), }, [1317] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [sym_variable_name] = ACTIONS(1472), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [anon_sym_esac] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [aux_sym__simple_variable_name_token1] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1963), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1963), + [sym__heredoc_body_end] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1963), + [sym__heredoc_body_middle] = ACTIONS(1963), }, [1318] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [sym_variable_name] = ACTIONS(1482), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [anon_sym_esac] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [aux_sym__simple_variable_name_token1] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [aux_sym_concatenation_repeat1] = STATE(1320), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_esac] = ACTIONS(285), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1319] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [sym_variable_name] = ACTIONS(1486), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [anon_sym_esac] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [aux_sym__simple_variable_name_token1] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [aux_sym__simple_variable_name_token1] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [anon_sym_esac] = ACTIONS(439), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [1320] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [sym_variable_name] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [anon_sym_esac] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [aux_sym__simple_variable_name_token1] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [aux_sym_concatenation_repeat1] = STATE(1332), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(475), + [aux_sym__simple_variable_name_token1] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [anon_sym_esac] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [1321] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [sym_variable_name] = ACTIONS(1700), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [anon_sym_esac] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [aux_sym__simple_variable_name_token1] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_EQ_TILDE] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [sym_file_descriptor] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_AMP_GT] = ACTIONS(505), + [anon_sym_EQ_EQ] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [anon_sym_esac] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [1322] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [sym_variable_name] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [anon_sym_esac] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [aux_sym__simple_variable_name_token1] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_EQ_TILDE] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [sym_file_descriptor] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_esac] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [1323] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [sym_variable_name] = ACTIONS(1710), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_esac] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [aux_sym__simple_variable_name_token1] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [aux_sym__simple_variable_name_token1] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [sym_file_descriptor] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_AMP_GT] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [anon_sym_esac] = ACTIONS(513), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [1324] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [sym_variable_name] = ACTIONS(1825), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_esac] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [aux_sym__simple_variable_name_token1] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_esac] = ACTIONS(285), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1325] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [sym_variable_name] = ACTIONS(1829), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [anon_sym_esac] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [aux_sym__simple_variable_name_token1] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [aux_sym__literal_repeat1] = STATE(1325), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [aux_sym__simple_variable_name_token1] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [sym_file_descriptor] = ACTIONS(813), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(3080), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [anon_sym_esac] = ACTIONS(811), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [1326] = { - [aux_sym_concatenation_repeat1] = STATE(1298), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [sym__concat] = ACTIONS(2594), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [aux_sym__simple_variable_name_token1] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [sym_file_descriptor] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(931), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [1327] = { - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_esac] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [aux_sym__simple_variable_name_token1] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [aux_sym__simple_variable_name_token1] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [sym_variable_name] = ACTIONS(969), + [sym_file_descriptor] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [anon_sym_esac] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [1328] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_esac] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [aux_sym__simple_variable_name_token1] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_EQ_TILDE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1329] = { - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [anon_sym_DOLLAR] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_number] = ACTIONS(211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [sym_word] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [sym_raw_string] = ACTIONS(211), - [sym_variable_name] = ACTIONS(213), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [sym_ansii_c_string] = ACTIONS(211), - [anon_sym_AMP_AMP] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [aux_sym__simple_variable_name_token1] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [anon_sym_esac] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [1330] = { - [aux_sym__literal_repeat1] = STATE(1330), - [anon_sym_AMP] = ACTIONS(647), - [anon_sym_AMP_GT_GT] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(647), - [anon_sym_GT_LPAREN] = ACTIONS(647), - [sym_number] = ACTIONS(647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [sym_word] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_LT_AMP] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(647), - [sym__special_character] = ACTIONS(3000), - [anon_sym_LT_LT_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(647), - [sym_raw_string] = ACTIONS(647), - [sym_variable_name] = ACTIONS(652), - [sym_file_descriptor] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_AMP_GT] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(647), - [anon_sym_LT_LT_LT] = ACTIONS(647), - [anon_sym_GT_AMP] = ACTIONS(647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(647), - [anon_sym_esac] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(647), - [sym_ansii_c_string] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_SEMI_SEMI] = ACTIONS(647), - [anon_sym_PIPE_AMP] = ACTIONS(647), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_esac] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1331] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_esac] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [sym_expansion] = STATE(1330), + [sym_string_expansion] = STATE(1330), + [sym_simple_expansion] = STATE(1330), + [sym_string] = STATE(1330), + [sym_command_substitution] = STATE(1330), + [sym_process_substitution] = STATE(1330), + [sym_arithmetic_expansion] = STATE(1330), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(3083), + [sym_number] = ACTIONS(3085), + [sym__special_character] = ACTIONS(3087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(3087), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [sym_word] = ACTIONS(3085), + [anon_sym_LT_LPAREN] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3097), + [sym_ansii_c_string] = ACTIONS(3087), }, [1332] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_esac] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [aux_sym__simple_variable_name_token1] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [aux_sym_concatenation_repeat1] = STATE(1332), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(979), + [aux_sym__simple_variable_name_token1] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_esac] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1333] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_esac] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [aux_sym__simple_variable_name_token1] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_EQ_TILDE] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [anon_sym_esac] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [1334] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_esac] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [aux_sym__simple_variable_name_token1] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_EQ_TILDE] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [sym_file_descriptor] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_AMP_GT] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [anon_sym_esac] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [1335] = { - [sym_string] = STATE(1265), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym__] = ACTIONS(3003), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_DOLLAR] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(3003), - [sym__special_character] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_raw_string] = ACTIONS(3007), - [anon_sym_BANG] = ACTIONS(3005), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(3003), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_esac] = ACTIONS(1227), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_EQ_TILDE] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1336] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_esac] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [aux_sym__simple_variable_name_token1] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [aux_sym__simple_variable_name_token1] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym_file_descriptor] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_esac] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [1337] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_esac] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [aux_sym__simple_variable_name_token1] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [sym_string] = STATE(1257), + [anon_sym_0] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2582), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym__] = ACTIONS(3102), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(3104), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(3104), + [sym_file_descriptor] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_esac] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(3106), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [1338] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_esac] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_esac] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [aux_sym__simple_variable_name_token1] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [1339] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [anon_sym_esac] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [aux_sym__simple_variable_name_token1] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_EQ_TILDE] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [sym_file_descriptor] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_AMP_GT] = ACTIONS(1410), + [anon_sym_EQ_EQ] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [anon_sym_esac] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [1340] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [anon_sym_esac] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [aux_sym__simple_variable_name_token1] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_EQ_TILDE] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [anon_sym_EQ_EQ] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [anon_sym_esac] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [1341] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [anon_sym_esac] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [aux_sym__simple_variable_name_token1] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_EQ_TILDE] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [sym_file_descriptor] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_AMP_GT] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [anon_sym_esac] = ACTIONS(1659), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [1342] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [anon_sym_esac] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [aux_sym__simple_variable_name_token1] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [1343] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [anon_sym_esac] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [aux_sym__simple_variable_name_token1] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_EQ_TILDE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [sym_file_descriptor] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [anon_sym_EQ_EQ] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [1344] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [anon_sym_esac] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [aux_sym__simple_variable_name_token1] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_EQ_TILDE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [sym_file_descriptor] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [1345] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [anon_sym_esac] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [aux_sym__simple_variable_name_token1] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [sym_file_descriptor] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_AMP_GT] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [anon_sym_esac] = ACTIONS(1868), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [1346] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_esac] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [aux_sym__simple_variable_name_token1] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_EQ_TILDE] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [anon_sym_esac] = ACTIONS(1874), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [1347] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_esac] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [aux_sym__simple_variable_name_token1] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_EQ_TILDE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [1348] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [anon_sym_esac] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [aux_sym__simple_variable_name_token1] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [1349] = { - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_variable_name] = ACTIONS(411), - [sym_file_descriptor] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_esac] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_EQ_TILDE] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [sym_file_descriptor] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_AMP_GT] = ACTIONS(1957), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [anon_sym_esac] = ACTIONS(1957), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [1350] = { - [anon_sym_AMP] = ACTIONS(413), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_DOLLAR] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(413), - [anon_sym_BQUOTE] = ACTIONS(413), - [anon_sym_GT_LPAREN] = ACTIONS(413), - [sym_number] = ACTIONS(413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [sym__concat] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(413), - [sym_word] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(413), - [anon_sym_GT_GT] = ACTIONS(413), - [sym__special_character] = ACTIONS(413), - [anon_sym_LT_LT_DASH] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [sym_raw_string] = ACTIONS(413), - [sym_variable_name] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(413), - [anon_sym_DQUOTE] = ACTIONS(413), - [anon_sym_LT_LT_LT] = ACTIONS(413), - [anon_sym_GT_AMP] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), - [anon_sym_esac] = ACTIONS(413), - [anon_sym_LT_LPAREN] = ACTIONS(413), - [sym_ansii_c_string] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [anon_sym_PIPE_AMP] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_EQ_TILDE] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_EQ_EQ] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1961), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [1351] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_esac] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [aux_sym_concatenation_repeat1] = STATE(1353), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__concat] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_esac] = ACTIONS(285), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1352] = { - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_AMP_GT_GT] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [anon_sym_GT_LPAREN] = ACTIONS(907), - [sym_number] = ACTIONS(907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [sym__concat] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(907), - [sym_word] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_LT_AMP] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [sym__special_character] = ACTIONS(907), - [anon_sym_LT_LT_DASH] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [sym_raw_string] = ACTIONS(907), - [sym_variable_name] = ACTIONS(909), - [sym_file_descriptor] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_AMP_GT] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [anon_sym_LT_LT_LT] = ACTIONS(907), - [anon_sym_GT_AMP] = ACTIONS(907), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(907), - [anon_sym_esac] = ACTIONS(907), - [anon_sym_LT_LPAREN] = ACTIONS(907), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [sym__concat] = ACTIONS(441), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [sym_number] = ACTIONS(439), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_variable_name] = ACTIONS(441), + [sym_file_descriptor] = ACTIONS(441), + [sym_word] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_LT_LT_LT] = ACTIONS(439), + [anon_sym_GT_AMP] = ACTIONS(439), + [anon_sym_esac] = ACTIONS(439), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PIPE_AMP] = ACTIONS(439), }, [1353] = { - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_AMP_GT_GT] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_BQUOTE] = ACTIONS(959), - [anon_sym_GT_LPAREN] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [sym__concat] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(959), - [sym_word] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_AMP] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [sym__special_character] = ACTIONS(959), - [anon_sym_LT_LT_DASH] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [sym_raw_string] = ACTIONS(959), - [sym_variable_name] = ACTIONS(961), - [sym_file_descriptor] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_AMP_GT] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_LT_LT_LT] = ACTIONS(959), - [anon_sym_GT_AMP] = ACTIONS(959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(959), - [anon_sym_esac] = ACTIONS(959), - [anon_sym_LT_LPAREN] = ACTIONS(959), - [sym_ansii_c_string] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_PIPE_AMP] = ACTIONS(959), + [aux_sym_concatenation_repeat1] = STATE(1365), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(475), + [sym_ansii_c_string] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [sym__concat] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_GT_LPAREN] = ACTIONS(475), + [sym_number] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), + [sym_variable_name] = ACTIONS(479), + [sym_file_descriptor] = ACTIONS(479), + [sym_word] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [sym__special_character] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [anon_sym_esac] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(475), + [sym_raw_string] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, [1354] = { - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(876), - [anon_sym_GT_LPAREN] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [sym__concat] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(876), - [sym_word] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [sym__special_character] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [sym_raw_string] = ACTIONS(876), - [sym_variable_name] = ACTIONS(878), - [sym_file_descriptor] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_LT_LT_LT] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_esac] = ACTIONS(876), - [anon_sym_LT_LPAREN] = ACTIONS(876), - [sym_ansii_c_string] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_SEMI_SEMI] = ACTIONS(876), - [anon_sym_PIPE_AMP] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [aux_sym__simple_variable_name_token1] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [sym_variable_name] = ACTIONS(507), + [sym_file_descriptor] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_AMP_GT] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [anon_sym_esac] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [1355] = { - [sym_string] = STATE(1297), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym__] = ACTIONS(3009), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), - [sym_number] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(1227), - [sym_word] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(3009), - [sym__special_character] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_raw_string] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3011), - [sym_variable_name] = ACTIONS(1231), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(3015), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_esac] = ACTIONS(1227), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [sym_ansii_c_string] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [aux_sym__simple_variable_name_token1] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [sym_variable_name] = ACTIONS(511), + [sym_file_descriptor] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_esac] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [1356] = { - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_number] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__concat] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1235), - [sym_word] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [sym__special_character] = ACTIONS(1235), - [anon_sym_LT_LT_DASH] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1235), - [sym_variable_name] = ACTIONS(1237), - [sym_file_descriptor] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_esac] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [sym_ansii_c_string] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(513), + [sym_ansii_c_string] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [sym__concat] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(513), + [anon_sym_LT_AMP] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(513), + [anon_sym_GT_LPAREN] = ACTIONS(513), + [sym_number] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_file_descriptor] = ACTIONS(515), + [sym_word] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_AMP_GT] = ACTIONS(513), + [sym__special_character] = ACTIONS(513), + [anon_sym_LT_LT_LT] = ACTIONS(513), + [anon_sym_GT_AMP] = ACTIONS(513), + [anon_sym_esac] = ACTIONS(513), + [anon_sym_BQUOTE] = ACTIONS(513), + [sym_raw_string] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PIPE_AMP] = ACTIONS(513), }, [1357] = { - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_number] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [sym__concat] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [sym_word] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(285), + [sym_ansii_c_string] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_GT_LPAREN] = ACTIONS(285), + [sym_number] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [sym_variable_name] = ACTIONS(287), + [sym_file_descriptor] = ACTIONS(287), + [sym_word] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_esac] = ACTIONS(285), + [anon_sym_BQUOTE] = ACTIONS(285), + [sym_raw_string] = ACTIONS(285), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_variable_name] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_esac] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [sym_ansii_c_string] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), }, [1358] = { - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_number] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [sym__concat] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [sym_word] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [aux_sym__literal_repeat1] = STATE(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), + [anon_sym_LT_LPAREN] = ACTIONS(811), + [sym_ansii_c_string] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_AMP] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(811), + [anon_sym_GT_LPAREN] = ACTIONS(811), + [sym_number] = ACTIONS(811), + [anon_sym_LF] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), + [sym_variable_name] = ACTIONS(813), + [sym_file_descriptor] = ACTIONS(813), + [sym_word] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(811), + [sym__special_character] = ACTIONS(3110), + [anon_sym_LT_LT_LT] = ACTIONS(811), + [anon_sym_GT_AMP] = ACTIONS(811), + [anon_sym_esac] = ACTIONS(811), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_raw_string] = ACTIONS(811), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_variable_name] = ACTIONS(1306), - [sym_file_descriptor] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_esac] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [sym_ansii_c_string] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_PIPE_AMP] = ACTIONS(811), }, [1359] = { - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_AMP_GT_GT] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_GT_LPAREN] = ACTIONS(1458), - [sym_number] = ACTIONS(1458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [sym__concat] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1458), - [sym_word] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_AMP] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym__special_character] = ACTIONS(1458), - [anon_sym_LT_LT_DASH] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [sym_raw_string] = ACTIONS(1458), - [sym_variable_name] = ACTIONS(1460), - [sym_file_descriptor] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_AMP_GT] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_GT_AMP] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), - [anon_sym_esac] = ACTIONS(1458), - [anon_sym_LT_LPAREN] = ACTIONS(1458), - [sym_ansii_c_string] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI_SEMI] = ACTIONS(1458), - [anon_sym_PIPE_AMP] = ACTIONS(1458), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(931), + [sym_ansii_c_string] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [sym__concat] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(931), + [anon_sym_GT_LPAREN] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), + [sym_variable_name] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(933), + [sym_word] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(931), + [sym__special_character] = ACTIONS(931), + [anon_sym_LT_LT_LT] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(931), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_raw_string] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_PIPE_AMP] = ACTIONS(931), }, [1360] = { - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_AMP_GT_GT] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_GT_LPAREN] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [sym__concat] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [sym_word] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_AMP] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1470), - [sym__special_character] = ACTIONS(1470), - [anon_sym_LT_LT_DASH] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [sym_raw_string] = ACTIONS(1470), - [sym_variable_name] = ACTIONS(1472), - [sym_file_descriptor] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_AMP_GT] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_GT_AMP] = ACTIONS(1470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), - [anon_sym_esac] = ACTIONS(1470), - [anon_sym_LT_LPAREN] = ACTIONS(1470), - [sym_ansii_c_string] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_SEMI_SEMI] = ACTIONS(1470), - [anon_sym_PIPE_AMP] = ACTIONS(1470), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [aux_sym__simple_variable_name_token1] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [sym_file_descriptor] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [anon_sym_esac] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [1361] = { - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_AMP_GT_GT] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [anon_sym_GT_LPAREN] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [sym__concat] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1480), - [sym_word] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_AMP] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1480), - [sym__special_character] = ACTIONS(1480), - [anon_sym_LT_LT_DASH] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [sym_raw_string] = ACTIONS(1480), - [sym_variable_name] = ACTIONS(1482), - [sym_file_descriptor] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_AMP_GT] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_GT_AMP] = ACTIONS(1480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), - [anon_sym_esac] = ACTIONS(1480), - [anon_sym_LT_LPAREN] = ACTIONS(1480), - [sym_ansii_c_string] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_SEMI_SEMI] = ACTIONS(1480), - [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1362] = { - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_AMP_GT_GT] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1484), - [sym_number] = ACTIONS(1484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [sym__concat] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1484), - [sym_word] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_AMP] = ACTIONS(1484), - [anon_sym_GT_GT] = ACTIONS(1484), - [sym__special_character] = ACTIONS(1484), - [anon_sym_LT_LT_DASH] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_raw_string] = ACTIONS(1484), - [sym_variable_name] = ACTIONS(1486), - [sym_file_descriptor] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_AMP_GT] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_GT_AMP] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), - [anon_sym_esac] = ACTIONS(1484), - [anon_sym_LT_LPAREN] = ACTIONS(1484), - [sym_ansii_c_string] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_SEMI_SEMI] = ACTIONS(1484), - [anon_sym_PIPE_AMP] = ACTIONS(1484), + [anon_sym_AMP_GT_GT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(975), + [sym_ansii_c_string] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [sym__concat] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_LT_AMP] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(975), + [anon_sym_GT_LPAREN] = ACTIONS(975), + [sym_number] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), + [sym_variable_name] = ACTIONS(977), + [sym_file_descriptor] = ACTIONS(977), + [sym_word] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_AMP_GT] = ACTIONS(975), + [sym__special_character] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_GT_AMP] = ACTIONS(975), + [anon_sym_esac] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_raw_string] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_PIPE_AMP] = ACTIONS(975), }, [1363] = { - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_AMP_GT_GT] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [anon_sym_GT_LPAREN] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1692), - [anon_sym_PIPE_PIPE] = ACTIONS(1692), - [sym__concat] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1692), - [sym_word] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_AMP] = ACTIONS(1692), - [anon_sym_GT_GT] = ACTIONS(1692), - [sym__special_character] = ACTIONS(1692), - [anon_sym_LT_LT_DASH] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [sym_raw_string] = ACTIONS(1692), - [sym_variable_name] = ACTIONS(1694), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_AMP_GT] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_LT_LT_LT] = ACTIONS(1692), - [anon_sym_GT_AMP] = ACTIONS(1692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), - [anon_sym_esac] = ACTIONS(1692), - [anon_sym_LT_LPAREN] = ACTIONS(1692), - [sym_ansii_c_string] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_SEMI_SEMI] = ACTIONS(1692), - [anon_sym_PIPE_AMP] = ACTIONS(1692), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_esac] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1364] = { - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_AMP_GT_GT] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_GT_LPAREN] = ACTIONS(1698), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [sym__concat] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1698), - [sym_word] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_LT_AMP] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1698), - [sym__special_character] = ACTIONS(1698), - [anon_sym_LT_LT_DASH] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [sym_raw_string] = ACTIONS(1698), - [sym_variable_name] = ACTIONS(1700), - [sym_file_descriptor] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_AMP_GT] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_LT_LT_LT] = ACTIONS(1698), - [anon_sym_GT_AMP] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1698), - [anon_sym_esac] = ACTIONS(1698), - [anon_sym_LT_LPAREN] = ACTIONS(1698), - [sym_ansii_c_string] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_SEMI_SEMI] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), + [sym_expansion] = STATE(1363), + [sym_string_expansion] = STATE(1363), + [sym_simple_expansion] = STATE(1363), + [sym_string] = STATE(1363), + [sym_command_substitution] = STATE(1363), + [sym_process_substitution] = STATE(1363), + [sym_arithmetic_expansion] = STATE(1363), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(3113), + [sym_number] = ACTIONS(3115), + [sym__special_character] = ACTIONS(3117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3123), + [anon_sym_BQUOTE] = ACTIONS(3125), + [sym_raw_string] = ACTIONS(3117), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3127), + [sym_word] = ACTIONS(3115), + [anon_sym_LT_LPAREN] = ACTIONS(3113), + [anon_sym_DOLLAR] = ACTIONS(3129), + [sym_ansii_c_string] = ACTIONS(3117), }, [1365] = { - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_GT_LPAREN] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [sym__concat] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1702), - [sym_word] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1702), - [sym__special_character] = ACTIONS(1702), - [anon_sym_LT_LT_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [sym_raw_string] = ACTIONS(1702), - [sym_variable_name] = ACTIONS(1704), - [sym_file_descriptor] = ACTIONS(1704), - [anon_sym_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_LT_LT_LT] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1702), - [anon_sym_esac] = ACTIONS(1702), - [anon_sym_LT_LPAREN] = ACTIONS(1702), - [sym_ansii_c_string] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_SEMI_SEMI] = ACTIONS(1702), - [anon_sym_PIPE_AMP] = ACTIONS(1702), + [aux_sym_concatenation_repeat1] = STATE(1365), + [anon_sym_AMP_GT_GT] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(979), + [sym_ansii_c_string] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [sym__concat] = ACTIONS(3131), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_LT_AMP] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(979), + [anon_sym_GT_LPAREN] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), + [sym_variable_name] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym_word] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_AMP_GT] = ACTIONS(979), + [sym__special_character] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_GT_AMP] = ACTIONS(979), + [anon_sym_esac] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_PIPE_AMP] = ACTIONS(979), }, [1366] = { - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_AMP_GT_GT] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_GT_LPAREN] = ACTIONS(1708), - [sym_number] = ACTIONS(1708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1708), - [sym__concat] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1708), - [sym_word] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_AMP] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [sym__special_character] = ACTIONS(1708), - [anon_sym_LT_LT_DASH] = ACTIONS(1708), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [sym_raw_string] = ACTIONS(1708), - [sym_variable_name] = ACTIONS(1710), - [sym_file_descriptor] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_AMP_GT] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_LT_LT_LT] = ACTIONS(1708), - [anon_sym_GT_AMP] = ACTIONS(1708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1708), - [anon_sym_esac] = ACTIONS(1708), - [anon_sym_LT_LPAREN] = ACTIONS(1708), - [sym_ansii_c_string] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_SEMI_SEMI] = ACTIONS(1708), - [anon_sym_PIPE_AMP] = ACTIONS(1708), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [aux_sym__simple_variable_name_token1] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [sym_variable_name] = ACTIONS(1034), + [sym_file_descriptor] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [anon_sym_esac] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [1367] = { - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__concat] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [sym__special_character] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [sym_variable_name] = ACTIONS(1825), - [sym_file_descriptor] = ACTIONS(1825), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_esac] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [sym_ansii_c_string] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [aux_sym__simple_variable_name_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [sym_variable_name] = ACTIONS(1088), + [sym_file_descriptor] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_AMP_GT] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [anon_sym_esac] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [1368] = { - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_AMP_GT_GT] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1827), - [anon_sym_GT_LPAREN] = ACTIONS(1827), - [sym_number] = ACTIONS(1827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [sym__concat] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [sym_word] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_AMP] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [sym__special_character] = ACTIONS(1827), - [anon_sym_LT_LT_DASH] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_raw_string] = ACTIONS(1827), - [sym_variable_name] = ACTIONS(1829), - [sym_file_descriptor] = ACTIONS(1829), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_AMP_GT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_AMP] = ACTIONS(1827), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [anon_sym_esac] = ACTIONS(1827), - [anon_sym_LT_LPAREN] = ACTIONS(1827), - [sym_ansii_c_string] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_SEMI_SEMI] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(1827), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1369] = { - [sym_string] = STATE(1073), - [anon_sym__] = ACTIONS(2844), - [anon_sym_PIPE_AMP] = ACTIONS(1227), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_0] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(2846), - [sym_raw_string] = ACTIONS(2848), - [sym_file_descriptor] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_esac] = ACTIONS(1227), - [aux_sym__simple_variable_name_token1] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [sym_ansii_c_string] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [sym__concat] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_number] = ACTIONS(1296), + [anon_sym_LF] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [sym_variable_name] = ACTIONS(1298), + [sym_file_descriptor] = ACTIONS(1298), + [sym_word] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_esac] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [sym_raw_string] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1296), }, [1370] = { - [sym_command_substitution] = STATE(394), - [aux_sym__literal_repeat1] = STATE(395), - [sym_string] = STATE(394), - [sym_process_substitution] = STATE(394), - [sym_simple_expansion] = STATE(394), - [sym_string_expansion] = STATE(394), - [sym_concatenation] = STATE(396), - [sym_expansion] = STATE(394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(668), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3017), - [sym_word] = ACTIONS(3019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(674), - [anon_sym_DOLLAR] = ACTIONS(676), - [sym_ansii_c_string] = ACTIONS(3017), - [anon_sym_LT_LPAREN] = ACTIONS(678), - [anon_sym_BQUOTE] = ACTIONS(680), - [sym__special_character] = ACTIONS(682), - [sym_number] = ACTIONS(3019), - [anon_sym_GT_LPAREN] = ACTIONS(678), + [sym_string] = STATE(1290), + [anon_sym_0] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3134), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(3136), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(3134), + [anon_sym_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym__] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(3136), + [sym_variable_name] = ACTIONS(1312), + [sym_file_descriptor] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_AMP_GT] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_esac] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [1371] = { - [sym_string] = STATE(405), - [anon_sym__] = ACTIONS(2182), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3021), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_AT] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_0] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(3025), - [aux_sym__simple_variable_name_token1] = ACTIONS(2182), - [anon_sym_QMARK] = ACTIONS(3025), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [aux_sym__simple_variable_name_token1] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [sym_variable_name] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_esac] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [1372] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_negated_command] = STATE(61), - [sym_test_command] = STATE(61), - [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(1383), - [sym_redirected_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_compound_statement] = STATE(61), - [sym_subshell] = STATE(61), - [sym_declaration_command] = STATE(61), - [sym_unset_command] = STATE(61), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_pipeline] = STATE(61), - [sym_list] = STATE(61), - [sym_command] = STATE(61), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [aux_sym__simple_variable_name_token1] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [sym_variable_name] = ACTIONS(1412), + [sym_file_descriptor] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_AMP_GT] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [anon_sym_esac] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), + }, [1373] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1388), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3031), - [anon_sym_BQUOTE] = ACTIONS(273), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [aux_sym__simple_variable_name_token1] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_variable_name] = ACTIONS(1430), + [sym_file_descriptor] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [anon_sym_esac] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [1374] = { - [anon_sym_RPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [aux_sym__simple_variable_name_token1] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [sym_variable_name] = ACTIONS(1661), + [sym_file_descriptor] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_AMP_GT] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [anon_sym_esac] = ACTIONS(1659), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [1375] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3035), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [aux_sym__simple_variable_name_token1] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1673), + [sym_file_descriptor] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [1376] = { - [anon_sym_RPAREN] = ACTIONS(3037), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [aux_sym__simple_variable_name_token1] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [sym_variable_name] = ACTIONS(1683), + [sym_file_descriptor] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [1377] = { - [sym_command_substitution] = STATE(433), - [sym_string] = STATE(433), - [sym_process_substitution] = STATE(433), - [sym_simple_expansion] = STATE(433), - [sym_string_expansion] = STATE(433), - [sym_expansion] = STATE(433), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(2122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_word] = ACTIONS(2122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [sym_ansii_c_string] = ACTIONS(2118), - [sym__special_character] = ACTIONS(2118), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [aux_sym__simple_variable_name_token1] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [sym_variable_name] = ACTIONS(1687), + [sym_file_descriptor] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [1378] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1397), - [sym_concatenation] = STATE(1397), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3039), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3039), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3041), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [aux_sym__simple_variable_name_token1] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [sym_variable_name] = ACTIONS(1870), + [sym_file_descriptor] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_AMP_GT] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [anon_sym_esac] = ACTIONS(1868), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [1379] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1402), - [sym_concatenation] = STATE(1402), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3047), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3047), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3049), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_EQ] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [aux_sym__simple_variable_name_token1] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [sym_variable_name] = ACTIONS(1876), + [sym_file_descriptor] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [anon_sym_esac] = ACTIONS(1874), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [1380] = { - [sym_compound_statement] = STATE(438), - [anon_sym_LPAREN] = ACTIONS(3055), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [aux_sym__simple_variable_name_token1] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1880), + [sym_file_descriptor] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [1381] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [aux_sym__simple_variable_name_token1] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [sym_variable_name] = ACTIONS(1886), + [sym_file_descriptor] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [1382] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_PIPE_AMP] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(491), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [sym__special_character] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(331), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3059), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_LT_LPAREN] = ACTIONS(331), - [sym_ansii_c_string] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [aux_sym__simple_variable_name_token1] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [sym_variable_name] = ACTIONS(1959), + [sym_file_descriptor] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_AMP_GT] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [anon_sym_esac] = ACTIONS(1957), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [1383] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_negated_command] = STATE(61), - [sym_test_command] = STATE(61), - [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(422), - [sym_redirected_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_compound_statement] = STATE(61), - [sym_subshell] = STATE(61), - [sym_declaration_command] = STATE(61), - [sym_unset_command] = STATE(61), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_case_statement] = STATE(61), - [sym_pipeline] = STATE(61), - [sym_list] = STATE(61), - [sym_command] = STATE(61), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [aux_sym__simple_variable_name_token1] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [sym_variable_name] = ACTIONS(1963), + [sym_file_descriptor] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_AMP_GT] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1961), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [1384] = { - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3063), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [sym_test_operator] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [aux_sym__simple_variable_name_token1] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [sym_file_descriptor] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_AMP_GT] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [anon_sym_esac] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [1385] = { - [sym_command_substitution] = STATE(448), - [aux_sym__literal_repeat1] = STATE(449), - [sym_string] = STATE(448), - [sym_array] = STATE(447), - [sym_process_substitution] = STATE(448), - [sym_simple_expansion] = STATE(448), - [sym_string_expansion] = STATE(448), - [sym_concatenation] = STATE(447), - [sym_expansion] = STATE(448), - [anon_sym_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3067), - [anon_sym_DOLLAR] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(2775), - [anon_sym_GT_LPAREN] = ACTIONS(2777), - [sym_number] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_word] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2785), - [anon_sym_LT_LPAREN] = ACTIONS(2777), - [sym_ansii_c_string] = ACTIONS(3067), - [sym__special_character] = ACTIONS(3073), - [sym__empty_value] = ACTIONS(3075), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [aux_sym__simple_variable_name_token1] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [sym_file_descriptor] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_esac] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [1386] = { - [sym_command_substitution] = STATE(450), - [aux_sym__literal_repeat1] = STATE(451), - [sym_string] = STATE(450), - [sym_process_substitution] = STATE(450), - [sym_simple_expansion] = STATE(450), - [sym_string_expansion] = STATE(450), - [sym_concatenation] = STATE(452), - [sym_expansion] = STATE(450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(668), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3077), - [sym_word] = ACTIONS(3079), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(674), - [anon_sym_DOLLAR] = ACTIONS(676), - [sym_ansii_c_string] = ACTIONS(3077), - [anon_sym_LT_LPAREN] = ACTIONS(678), - [anon_sym_BQUOTE] = ACTIONS(680), - [sym__special_character] = ACTIONS(682), - [sym_number] = ACTIONS(3079), - [anon_sym_GT_LPAREN] = ACTIONS(678), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(967), + [sym_ansii_c_string] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [sym__concat] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(967), + [anon_sym_GT_LPAREN] = ACTIONS(967), + [sym_number] = ACTIONS(967), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), + [sym_variable_name] = ACTIONS(969), + [sym_file_descriptor] = ACTIONS(969), + [sym_word] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_AMP_GT] = ACTIONS(967), + [sym__special_character] = ACTIONS(967), + [anon_sym_LT_LT_LT] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [anon_sym_esac] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(967), + [sym_raw_string] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_PIPE_AMP] = ACTIONS(967), }, [1387] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3081), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1388] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_BQUOTE] = ACTIONS(273), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [aux_sym__simple_variable_name_token1] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [anon_sym_esac] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [1389] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [aux_sym__simple_variable_name_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [sym_file_descriptor] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_AMP_GT] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [anon_sym_esac] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [1390] = { - [anon_sym_RPAREN] = ACTIONS(3085), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [aux_sym__simple_variable_name_token1] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1391] = { - [sym_do_group] = STATE(455), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(3087), + [sym_string] = STATE(1323), + [anon_sym_0] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2560), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym__] = ACTIONS(3140), + [anon_sym_DOLLAR] = ACTIONS(3142), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(3142), + [sym_file_descriptor] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_AMP_GT] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_esac] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(3144), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [1392] = { - [anon_sym_PLUS_EQ] = ACTIONS(639), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_EQ_TILDE] = ACTIONS(645), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_DASH_EQ] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACK] = ACTIONS(3063), - [sym_test_operator] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(645), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_AMP_AMP] = ACTIONS(639), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [aux_sym__simple_variable_name_token1] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [sym_file_descriptor] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_esac] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [1393] = { - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [sym_test_operator] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [aux_sym__simple_variable_name_token1] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [sym_file_descriptor] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_AMP_GT] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [anon_sym_esac] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [1394] = { - [sym_heredoc_start] = ACTIONS(3089), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [aux_sym__simple_variable_name_token1] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [anon_sym_esac] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [1395] = { - [sym_command_substitution] = STATE(463), - [aux_sym__literal_repeat1] = STATE(464), - [sym_string] = STATE(463), - [sym_process_substitution] = STATE(463), - [sym_simple_expansion] = STATE(463), - [sym_string_expansion] = STATE(463), - [sym_concatenation] = STATE(465), - [sym_expansion] = STATE(463), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3091), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(2807), - [anon_sym_GT_LPAREN] = ACTIONS(2809), - [sym_number] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_word] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), - [anon_sym_LT_LPAREN] = ACTIONS(2809), - [sym_ansii_c_string] = ACTIONS(3091), - [sym__special_character] = ACTIONS(3097), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [aux_sym__simple_variable_name_token1] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [sym_file_descriptor] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_AMP_GT] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [anon_sym_esac] = ACTIONS(1659), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [1396] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1415), - [sym_concatenation] = STATE(1415), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3099), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3099), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3099), - [sym_regex] = ACTIONS(3105), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [aux_sym__simple_variable_name_token1] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [1397] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [aux_sym__simple_variable_name_token1] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [sym_file_descriptor] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [1398] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1415), - [sym_concatenation] = STATE(1415), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3099), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3099), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [aux_sym__simple_variable_name_token1] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [sym_file_descriptor] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [1399] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1419), - [sym_concatenation] = STATE(1419), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3109), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3109), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [aux_sym__simple_variable_name_token1] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [sym_file_descriptor] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_AMP_GT] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [anon_sym_esac] = ACTIONS(1868), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [1400] = { - [sym_command_substitution] = STATE(1420), - [aux_sym__literal_repeat1] = STATE(1421), - [sym_string] = STATE(1420), - [sym_process_substitution] = STATE(1420), - [sym_simple_expansion] = STATE(1420), - [sym_string_expansion] = STATE(1420), - [sym_concatenation] = STATE(1422), - [sym_expansion] = STATE(1420), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3117), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(3119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(3119), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(3117), - [sym__special_character] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [aux_sym__simple_variable_name_token1] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [anon_sym_esac] = ACTIONS(1874), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [1401] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1424), - [sym_concatenation] = STATE(1424), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3121), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3123), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3121), - [sym_regex] = ACTIONS(3127), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [aux_sym__simple_variable_name_token1] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [1402] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [aux_sym__simple_variable_name_token1] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [1403] = { - [sym_compound_statement] = STATE(478), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [aux_sym__simple_variable_name_token1] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [sym_file_descriptor] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_AMP_GT] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [anon_sym_esac] = ACTIONS(1957), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [1404] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_elif_clause] = STATE(1428), - [sym_else_clause] = STATE(1427), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_if_statement_repeat1] = STATE(1428), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(1429), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_elif] = ACTIONS(981), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_fi] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(979), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [aux_sym__simple_variable_name_token1] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_AMP_GT] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1961), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [1405] = { - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [sym_test_operator] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(505), + [sym_ansii_c_string] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [sym__concat] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_LT_AMP] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(505), + [anon_sym_GT_LPAREN] = ACTIONS(505), + [sym_number] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), + [sym_variable_name] = ACTIONS(507), + [sym_file_descriptor] = ACTIONS(507), + [sym_word] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_AMP_GT] = ACTIONS(505), + [sym__special_character] = ACTIONS(505), + [anon_sym_LT_LT_LT] = ACTIONS(505), + [anon_sym_GT_AMP] = ACTIONS(505), + [anon_sym_esac] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_raw_string] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), }, [1406] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(1432), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(1432), - [sym_expansion] = STATE(222), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(3133), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_GT_LPAREN] = ACTIONS(1025), - [sym_number] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [sym_ansii_c_string] = ACTIONS(1017), - [sym__special_character] = ACTIONS(1031), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(509), + [sym_ansii_c_string] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [sym__concat] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(509), + [anon_sym_GT_LPAREN] = ACTIONS(509), + [sym_number] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), + [sym_variable_name] = ACTIONS(511), + [sym_file_descriptor] = ACTIONS(511), + [sym_word] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(509), + [sym__special_character] = ACTIONS(509), + [anon_sym_LT_LT_LT] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_esac] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(509), + [sym_raw_string] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_PIPE_AMP] = ACTIONS(509), }, [1407] = { - [aux_sym_concatenation_repeat1] = STATE(2444), - [anon_sym_RBRACK] = ACTIONS(3135), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(3137), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1408] = { - [aux_sym__literal_repeat1] = STATE(981), - [anon_sym_RBRACK] = ACTIONS(3139), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(3141), - [sym__special_character] = ACTIONS(1053), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [sym__concat] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_number] = ACTIONS(1032), + [anon_sym_LF] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [sym_variable_name] = ACTIONS(1034), + [sym_file_descriptor] = ACTIONS(1034), + [sym_word] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [anon_sym_esac] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), }, [1409] = { - [anon_sym_RBRACK] = ACTIONS(3135), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(3143), + [anon_sym_AMP_GT_GT] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), + [anon_sym_LT_LPAREN] = ACTIONS(1086), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [sym__concat] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LT_AMP] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_LT_LT_DASH] = ACTIONS(1086), + [anon_sym_GT_LPAREN] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [sym_variable_name] = ACTIONS(1088), + [sym_file_descriptor] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_AMP_GT] = ACTIONS(1086), + [sym__special_character] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_GT_AMP] = ACTIONS(1086), + [anon_sym_esac] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_PIPE_AMP] = ACTIONS(1086), }, [1410] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3145), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_AMP_GT_GT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(971), + [sym_ansii_c_string] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [sym__concat] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_LT_AMP] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(971), + [anon_sym_GT_LPAREN] = ACTIONS(971), + [sym_number] = ACTIONS(971), + [anon_sym_LF] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), + [sym_variable_name] = ACTIONS(973), + [sym_file_descriptor] = ACTIONS(973), + [sym_word] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_AMP_GT] = ACTIONS(971), + [sym__special_character] = ACTIONS(971), + [anon_sym_LT_LT_LT] = ACTIONS(971), + [anon_sym_GT_AMP] = ACTIONS(971), + [anon_sym_esac] = ACTIONS(971), + [anon_sym_BQUOTE] = ACTIONS(971), + [sym_raw_string] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(971), }, [1411] = { - [sym_do_group] = STATE(489), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(3087), + [sym_string] = STATE(1356), + [anon_sym_0] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [sym_ansii_c_string] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(3150), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(3146), + [anon_sym_PIPE] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym__] = ACTIONS(3146), + [anon_sym_DOLLAR] = ACTIONS(3150), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(3150), + [sym_variable_name] = ACTIONS(1312), + [sym_file_descriptor] = ACTIONS(1312), + [sym_word] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_AMP_GT] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_esac] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(3152), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [1412] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(1436), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_done] = ACTIONS(3147), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [sym_ansii_c_string] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [sym__concat] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [sym_variable_name] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1358), + [sym_word] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_esac] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), }, [1413] = { - [sym_command_substitution] = STATE(1437), - [sym_simple_expansion] = STATE(1437), - [sym_expansion] = STATE(1437), - [aux_sym_heredoc_body_repeat1] = STATE(1437), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), - [sym_comment] = ACTIONS(41), - [sym__heredoc_body_end] = ACTIONS(3149), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1142), - [anon_sym_DOLLAR] = ACTIONS(1134), - [anon_sym_BQUOTE] = ACTIONS(1138), - [sym__heredoc_body_middle] = ACTIONS(3151), + [anon_sym_AMP_GT_GT] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1410), + [sym_ansii_c_string] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [sym__concat] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_LT_AMP] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(1410), + [anon_sym_GT_LPAREN] = ACTIONS(1410), + [sym_number] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), + [sym_variable_name] = ACTIONS(1412), + [sym_file_descriptor] = ACTIONS(1412), + [sym_word] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_AMP_GT] = ACTIONS(1410), + [sym__special_character] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_GT_AMP] = ACTIONS(1410), + [anon_sym_esac] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), }, [1414] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1438), - [sym_concatenation] = STATE(1438), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3153), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3155), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [sym_number] = ACTIONS(1428), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_variable_name] = ACTIONS(1430), + [sym_file_descriptor] = ACTIONS(1430), + [sym_word] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_GT_AMP] = ACTIONS(1428), + [anon_sym_esac] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_PIPE_AMP] = ACTIONS(1428), }, [1415] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1659), + [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1659), + [anon_sym_GT_LPAREN] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [anon_sym_LF] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [sym_variable_name] = ACTIONS(1661), + [sym_file_descriptor] = ACTIONS(1661), + [sym_word] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_AMP_GT] = ACTIONS(1659), + [sym__special_character] = ACTIONS(1659), + [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_GT_AMP] = ACTIONS(1659), + [anon_sym_esac] = ACTIONS(1659), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_raw_string] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_PIPE_AMP] = ACTIONS(1659), }, [1416] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1438), - [sym_concatenation] = STATE(1438), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3153), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3155), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3153), - [sym_regex] = ACTIONS(3159), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [sym_ansii_c_string] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__concat] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1673), + [sym_file_descriptor] = ACTIONS(1673), + [sym_word] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1671), + [sym__special_character] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_raw_string] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), }, [1417] = { - [sym_command_substitution] = STATE(1440), - [aux_sym__literal_repeat1] = STATE(1441), - [sym_string] = STATE(1440), - [sym_process_substitution] = STATE(1440), - [sym_simple_expansion] = STATE(1440), - [sym_string_expansion] = STATE(1440), - [sym_concatenation] = STATE(1442), - [sym_expansion] = STATE(1440), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(3163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(3163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(3161), - [sym__special_character] = ACTIONS(949), + [anon_sym_AMP_GT_GT] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LT] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1681), + [sym_ansii_c_string] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_AMP] = ACTIONS(1681), + [anon_sym_GT_GT] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1681), + [anon_sym_GT_LPAREN] = ACTIONS(1681), + [sym_number] = ACTIONS(1681), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [sym_variable_name] = ACTIONS(1683), + [sym_file_descriptor] = ACTIONS(1683), + [sym_word] = ACTIONS(1681), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_AMP_GT] = ACTIONS(1681), + [sym__special_character] = ACTIONS(1681), + [anon_sym_LT_LT_LT] = ACTIONS(1681), + [anon_sym_GT_AMP] = ACTIONS(1681), + [anon_sym_esac] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_raw_string] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), }, [1418] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1444), - [sym_concatenation] = STATE(1444), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3165), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3167), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_EQ] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3165), - [sym_regex] = ACTIONS(3171), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [sym_ansii_c_string] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__concat] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_number] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [sym_variable_name] = ACTIONS(1687), + [sym_file_descriptor] = ACTIONS(1687), + [sym_word] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [sym__special_character] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), }, [1419] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1868), + [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LT_DASH] = ACTIONS(1868), + [anon_sym_GT_LPAREN] = ACTIONS(1868), + [sym_number] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [sym_variable_name] = ACTIONS(1870), + [sym_file_descriptor] = ACTIONS(1870), + [sym_word] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1868), + [anon_sym_AMP_GT] = ACTIONS(1868), + [sym__special_character] = ACTIONS(1868), + [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_GT_AMP] = ACTIONS(1868), + [anon_sym_esac] = ACTIONS(1868), + [anon_sym_BQUOTE] = ACTIONS(1868), + [sym_raw_string] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_PIPE_AMP] = ACTIONS(1868), }, [1420] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3157), - [sym__concat] = ACTIONS(1298), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1874), + [sym_ansii_c_string] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [sym__concat] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_GT_LPAREN] = ACTIONS(1874), + [sym_number] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), + [sym_variable_name] = ACTIONS(1876), + [sym_file_descriptor] = ACTIONS(1876), + [sym_word] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [sym__special_character] = ACTIONS(1874), + [anon_sym_LT_LT_LT] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [anon_sym_esac] = ACTIONS(1874), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), }, [1421] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(3173), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__concat] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [anon_sym_LF] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1880), + [sym_file_descriptor] = ACTIONS(1880), + [sym_word] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1878), + [sym__special_character] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_raw_string] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), }, [1422] = { - [anon_sym_RBRACE] = ACTIONS(3157), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1884), + [sym_ansii_c_string] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [sym__concat] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_AMP] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1884), + [anon_sym_GT_LPAREN] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [sym_variable_name] = ACTIONS(1886), + [sym_file_descriptor] = ACTIONS(1886), + [sym_word] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_AMP_GT] = ACTIONS(1884), + [sym__special_character] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_AMP] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), }, [1423] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1445), - [sym_concatenation] = STATE(1445), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3175), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3175), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3175), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3177), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_AMP_GT_GT] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1957), + [sym_ansii_c_string] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_AMP] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1957), + [anon_sym_GT_LPAREN] = ACTIONS(1957), + [sym_number] = ACTIONS(1957), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), + [sym_variable_name] = ACTIONS(1959), + [sym_file_descriptor] = ACTIONS(1959), + [sym_word] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1957), + [anon_sym_AMP_GT] = ACTIONS(1957), + [sym__special_character] = ACTIONS(1957), + [anon_sym_LT_LT_LT] = ACTIONS(1957), + [anon_sym_GT_AMP] = ACTIONS(1957), + [anon_sym_esac] = ACTIONS(1957), + [anon_sym_BQUOTE] = ACTIONS(1957), + [sym_raw_string] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_PIPE_AMP] = ACTIONS(1957), }, [1424] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_AMP_GT_GT] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1961), + [sym_ansii_c_string] = ACTIONS(1961), + [anon_sym_PIPE_PIPE] = ACTIONS(1961), + [sym__concat] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_LT_AMP] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1961), + [anon_sym_GT_LPAREN] = ACTIONS(1961), + [sym_number] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), + [sym_variable_name] = ACTIONS(1963), + [sym_file_descriptor] = ACTIONS(1963), + [sym_word] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_AMP_GT] = ACTIONS(1961), + [sym__special_character] = ACTIONS(1961), + [anon_sym_LT_LT_LT] = ACTIONS(1961), + [anon_sym_GT_AMP] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1961), + [anon_sym_BQUOTE] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_PIPE_AMP] = ACTIONS(1961), }, [1425] = { - [sym_compound_statement] = STATE(498), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(41), + [sym_string] = STATE(1125), + [anon_sym_0] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_POUND] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym__] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [aux_sym__simple_variable_name_token1] = ACTIONS(2966), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(2970), + [sym_file_descriptor] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_esac] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2972), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), }, [1426] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_SEMI_SEMI] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3183), + [sym_expansion] = STATE(397), + [sym_concatenation] = STATE(398), + [sym_string] = STATE(397), + [sym_command_substitution] = STATE(397), + [sym_process_substitution] = STATE(397), + [aux_sym__literal_repeat1] = STATE(399), + [sym_simple_expansion] = STATE(397), + [sym_arithmetic_expansion] = STATE(397), + [sym_string_expansion] = STATE(397), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym__special_character] = ACTIONS(701), + [sym_number] = ACTIONS(3154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [sym_raw_string] = ACTIONS(3156), + [sym_word] = ACTIONS(3154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_ansii_c_string] = ACTIONS(3156), + [anon_sym_LT_LPAREN] = ACTIONS(699), }, [1427] = { - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(3185), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1432), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3160), }, [1428] = { - [aux_sym_if_statement_repeat1] = STATE(265), - [sym_elif_clause] = STATE(265), - [sym_else_clause] = STATE(1446), - [anon_sym_elif] = ACTIONS(1334), - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(1336), - }, - [1429] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_elif_clause] = STATE(1447), - [sym_else_clause] = STATE(1446), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_if_statement_repeat1] = STATE(1447), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(268), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_if_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_negated_command] = STATE(64), + [sym_test_command] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(1441), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_compound_statement] = STATE(64), + [sym_subshell] = STATE(64), + [sym_declaration_command] = STATE(64), + [sym_unset_command] = STATE(64), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_pipeline] = STATE(64), + [sym_list] = STATE(64), + [sym_command] = STATE(64), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_elif] = ACTIONS(981), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_fi] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(979), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [1429] = { + [sym_string] = STATE(414), + [anon_sym_0] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_POUND] = ACTIONS(3164), + [anon_sym_QMARK] = ACTIONS(3166), + [aux_sym__simple_variable_name_token1] = ACTIONS(2276), + [anon_sym__] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(3168), + [anon_sym_DOLLAR] = ACTIONS(3164), + [anon_sym_AT] = ACTIONS(3166), }, [1430] = { - [aux_sym__literal_repeat1] = STATE(272), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(1449), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_case_item] = STATE(2434), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(2434), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(239), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(3189), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(255), + [anon_sym_RPAREN] = ACTIONS(3170), + [sym_comment] = ACTIONS(53), }, [1431] = { - [aux_sym__literal_repeat1] = STATE(272), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(1451), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_case_item] = STATE(2435), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(2435), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(239), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(3191), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(255), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1432] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(281), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(281), - [sym_expansion] = STATE(222), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(3193), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_GT_LPAREN] = ACTIONS(1025), - [sym_number] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [sym_ansii_c_string] = ACTIONS(1017), - [sym__special_character] = ACTIONS(1031), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3174), }, [1433] = { - [sym_command_substitution] = STATE(819), - [sym_simple_expansion] = STATE(819), - [sym_string_expansion] = STATE(819), - [sym_string] = STATE(819), - [sym_process_substitution] = STATE(819), - [sym_expansion] = STATE(819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1386), - [sym_word] = ACTIONS(1388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(289), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym__special_character] = ACTIONS(1388), - [sym_number] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3176), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1434] = { - [anon_sym_RBRACK] = ACTIONS(3197), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(3178), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), }, [1435] = { - [anon_sym_RBRACK] = ACTIONS(3195), - [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(3178), + [sym_comment] = ACTIONS(53), }, [1436] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_negated_command] = STATE(210), - [sym_test_command] = STATE(210), - [sym_variable_assignment] = STATE(211), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_compound_statement] = STATE(210), - [sym_subshell] = STATE(210), - [sym_declaration_command] = STATE(210), - [sym_unset_command] = STATE(210), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [aux_sym__statements2] = STATE(268), - [sym_c_style_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_pipeline] = STATE(210), - [sym_list] = STATE(210), - [sym_command] = STATE(210), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_done] = ACTIONS(3199), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(3180), + [sym_comment] = ACTIONS(53), }, [1437] = { - [sym_command_substitution] = STATE(293), - [sym_simple_expansion] = STATE(293), - [sym_expansion] = STATE(293), - [aux_sym_heredoc_body_repeat1] = STATE(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1136), - [sym_comment] = ACTIONS(41), - [sym__heredoc_body_end] = ACTIONS(3201), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1142), - [anon_sym_DOLLAR] = ACTIONS(1134), - [anon_sym_BQUOTE] = ACTIONS(1138), - [sym__heredoc_body_middle] = ACTIONS(1446), + [sym_expansion] = STATE(442), + [sym_string] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_arithmetic_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [sym_number] = ACTIONS(2211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [sym_word] = ACTIONS(2211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(2213), + [sym__special_character] = ACTIONS(2213), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(85), }, [1438] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_compound_statement] = STATE(445), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(83), + [sym_comment] = ACTIONS(53), }, [1439] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1454), - [sym_concatenation] = STATE(1454), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3205), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3205), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3207), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_EQ] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3205), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_PIPE_AMP] = ACTIONS(487), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LF] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_SEMI_SEMI] = ACTIONS(3186), + [anon_sym_LT_LT_DASH] = ACTIONS(497), }, [1440] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3203), - [sym__concat] = ACTIONS(1298), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_GT_LPAREN] = ACTIONS(343), + [sym_number] = ACTIONS(343), + [anon_sym_LF] = ACTIONS(3184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(3186), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(343), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(343), + [sym_raw_string] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_SEMI_SEMI] = ACTIONS(3186), + [anon_sym_PIPE_AMP] = ACTIONS(487), }, [1441] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(3209), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_if_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_negated_command] = STATE(64), + [sym_test_command] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(423), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_compound_statement] = STATE(64), + [sym_subshell] = STATE(64), + [sym_declaration_command] = STATE(64), + [sym_unset_command] = STATE(64), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_pipeline] = STATE(64), + [sym_list] = STATE(64), + [sym_command] = STATE(64), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [1442] = { - [anon_sym_RBRACE] = ACTIONS(3203), - [sym_comment] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3190), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1443] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1455), - [sym_concatenation] = STATE(1455), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3211), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3213), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_EQ] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3211), + [sym_concatenation] = STATE(1457), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1457), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3192), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3192), + [anon_sym_POUND] = ACTIONS(3194), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3192), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3192), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3198), }, [1444] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(1462), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1462), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3200), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3200), + [anon_sym_POUND] = ACTIONS(3202), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3200), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3200), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3200), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3206), }, [1445] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(453), + [sym_string] = STATE(452), + [sym_command_substitution] = STATE(452), + [sym_process_substitution] = STATE(452), + [sym_arithmetic_expansion] = STATE(452), + [sym_string_expansion] = STATE(452), + [sym_expansion] = STATE(452), + [aux_sym__literal_repeat1] = STATE(454), + [sym_array] = STATE(453), + [sym_simple_expansion] = STATE(452), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_GT_LPAREN] = ACTIONS(2911), + [sym_number] = ACTIONS(3210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2917), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2919), + [sym_word] = ACTIONS(3210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_LT_LPAREN] = ACTIONS(2911), + [sym_ansii_c_string] = ACTIONS(3212), + [sym__special_character] = ACTIONS(3214), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2925), + [sym_raw_string] = ACTIONS(3212), + [anon_sym_DOLLAR] = ACTIONS(3216), + [sym__empty_value] = ACTIONS(3218), }, [1446] = { - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(3219), + [sym_expansion] = STATE(455), + [sym_concatenation] = STATE(456), + [sym_string] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym__literal_repeat1] = STATE(457), + [sym_simple_expansion] = STATE(455), + [sym_arithmetic_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym__special_character] = ACTIONS(701), + [sym_number] = ACTIONS(3220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [sym_raw_string] = ACTIONS(3222), + [sym_word] = ACTIONS(3220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_ansii_c_string] = ACTIONS(3222), + [anon_sym_LT_LPAREN] = ACTIONS(699), }, [1447] = { - [aux_sym_if_statement_repeat1] = STATE(265), - [sym_elif_clause] = STATE(265), - [sym_else_clause] = STATE(1456), - [anon_sym_elif] = ACTIONS(1334), - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_comment] = ACTIONS(53), }, [1448] = { - [aux_sym__literal_repeat1] = STATE(272), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(1457), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_case_item] = STATE(2438), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(2438), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(239), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(3221), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(255), + [sym_do_group] = STATE(459), + [sym_comment] = ACTIONS(53), + [anon_sym_do] = ACTIONS(3226), }, [1449] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3223), + [anon_sym_PLUS_EQ] = ACTIONS(679), + [anon_sym_PLUS_PLUS] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_EQ_TILDE] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(679), + [anon_sym_DASH_EQ] = ACTIONS(679), + [anon_sym_BANG_EQ] = ACTIONS(679), + [anon_sym_RBRACK] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_GT_EQ] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(683), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(679), + [sym_test_operator] = ACTIONS(679), }, [1450] = { - [aux_sym__literal_repeat1] = STATE(272), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(1458), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_case_item] = STATE(2439), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(2439), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(239), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_esac] = ACTIONS(3225), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1451] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3227), + [sym_heredoc_start] = ACTIONS(3228), + [sym_comment] = ACTIONS(53), }, [1452] = { - [sym_do_group] = STATE(521), - [sym_compound_statement] = STATE(521), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3087), + [sym_expansion] = STATE(467), + [sym_concatenation] = STATE(468), + [sym_string] = STATE(467), + [sym_command_substitution] = STATE(467), + [sym_process_substitution] = STATE(467), + [aux_sym__literal_repeat1] = STATE(469), + [sym_simple_expansion] = STATE(467), + [sym_arithmetic_expansion] = STATE(467), + [sym_string_expansion] = STATE(467), + [anon_sym_GT_LPAREN] = ACTIONS(2945), + [sym_number] = ACTIONS(3230), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), + [sym_word] = ACTIONS(3230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [anon_sym_LT_LPAREN] = ACTIONS(2945), + [sym_ansii_c_string] = ACTIONS(3232), + [sym__special_character] = ACTIONS(3234), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2959), + [sym_raw_string] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3236), }, [1453] = { - [sym_do_group] = STATE(522), - [sym_comment] = ACTIONS(41), - [anon_sym_do] = ACTIONS(3087), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1454] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1455] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_elif_clause] = STATE(1475), + [sym_else_clause] = STATE(1473), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(1474), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [aux_sym_if_statement_repeat1] = STATE(1475), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_elif] = ACTIONS(1006), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(3242), + [anon_sym_else] = ACTIONS(1004), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [1456] = { - [sym_comment] = ACTIONS(41), - [anon_sym_fi] = ACTIONS(3235), + [sym_concatenation] = STATE(1479), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1479), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3244), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3244), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3244), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(3250), }, [1457] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3237), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1458] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3239), + [sym_concatenation] = STATE(1479), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1479), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3244), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3244), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3244), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3252), }, [1459] = { - [sym_do_group] = STATE(528), - [sym_compound_statement] = STATE(528), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_do] = ACTIONS(3087), + [sym_concatenation] = STATE(1483), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1483), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3254), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3254), + [anon_sym_POUND] = ACTIONS(3256), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3254), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_EQ] = ACTIONS(3254), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3254), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3260), }, [1460] = { - [sym_do_group] = STATE(528), - [sym_compound_statement] = STATE(528), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3087), + [sym_expansion] = STATE(1484), + [sym_concatenation] = STATE(1485), + [sym_string] = STATE(1484), + [sym_command_substitution] = STATE(1484), + [sym_process_substitution] = STATE(1484), + [aux_sym__literal_repeat1] = STATE(1486), + [sym_simple_expansion] = STATE(1484), + [sym_arithmetic_expansion] = STATE(1484), + [sym_string_expansion] = STATE(1484), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(3262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3248), + [sym_word] = ACTIONS(3262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(3264), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1461] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3243), + [sym_concatenation] = STATE(1488), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1488), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3266), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3266), + [anon_sym_POUND] = ACTIONS(3268), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3266), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3266), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(3272), }, [1462] = { - [sym_comment] = ACTIONS(41), - [anon_sym_esac] = ACTIONS(3245), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1463] = { - [sym_do_group] = STATE(531), - [sym_compound_statement] = STATE(531), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_do] = ACTIONS(3087), + [sym_concatenation] = STATE(1489), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym_for_statement_repeat1] = STATE(1489), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [sym_simple_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(3274), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1464] = { - [sym_do_group] = STATE(531), - [sym_compound_statement] = STATE(531), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3087), + [aux_sym_concatenation_repeat1] = STATE(990), + [anon_sym_RBRACK] = ACTIONS(3276), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3278), }, [1465] = { - [sym_do_group] = STATE(532), - [sym_compound_statement] = STATE(532), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_do] = ACTIONS(3087), + [anon_sym_RBRACK] = ACTIONS(3276), + [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3280), }, [1466] = { - [sym_do_group] = STATE(532), - [sym_compound_statement] = STATE(532), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3087), + [aux_sym__literal_repeat1] = STATE(995), + [anon_sym_RBRACK] = ACTIONS(3282), + [sym__special_character] = ACTIONS(1140), + [sym__concat] = ACTIONS(3284), + [sym_comment] = ACTIONS(53), }, [1467] = { - [sym_do_group] = STATE(533), - [sym_compound_statement] = STATE(533), - [sym_comment] = ACTIONS(41), + [sym_compound_statement] = STATE(492), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_do] = ACTIONS(3087), + [sym_comment] = ACTIONS(53), }, [1468] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [sym_test_command] = STATE(411), - [aux_sym_command_repeat1] = STATE(1471), - [sym_subscript] = STATE(2467), - [sym_variable_assignment] = STATE(1471), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_command] = STATE(411), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [sym_subshell] = STATE(411), - [sym_file_redirect] = STATE(1471), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(257), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_AMP_GT] = ACTIONS(29), - [sym_number] = ACTIONS(75), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_word] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - [sym__special_character] = ACTIONS(85), + [sym_do_group] = STATE(493), + [sym_comment] = ACTIONS(53), + [anon_sym_do] = ACTIONS(3226), }, [1469] = { - [sym_heredoc_redirect] = STATE(419), - [aux_sym_redirected_statement_repeat1] = STATE(419), - [sym_herestring_redirect] = STATE(419), - [sym_file_redirect] = STATE(419), - [anon_sym_PIPE_AMP] = ACTIONS(2270), - [anon_sym_SEMI_SEMI] = ACTIONS(2266), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2266), - [sym_file_descriptor] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(2010), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_LT_LT_LT] = ACTIONS(503), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(2266), - }, - [1470] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(704), - [sym_function_definition] = STATE(704), - [sym_negated_command] = STATE(704), - [sym_test_command] = STATE(704), - [sym_variable_assignment] = STATE(705), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(101), - [sym_redirected_statement] = STATE(704), - [sym_for_statement] = STATE(704), - [sym_compound_statement] = STATE(704), - [sym_subshell] = STATE(704), - [sym_declaration_command] = STATE(704), - [sym_unset_command] = STATE(704), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(704), - [sym_while_statement] = STATE(704), - [sym_case_statement] = STATE(704), - [sym_pipeline] = STATE(704), - [sym_list] = STATE(704), - [sym_command] = STATE(704), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(1493), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_done] = ACTIONS(3286), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [1470] = { + [sym_expansion] = STATE(1494), + [aux_sym_heredoc_body_repeat1] = STATE(1494), + [sym_simple_expansion] = STATE(1494), + [sym_command_substitution] = STATE(1494), + [sym__heredoc_body_end] = ACTIONS(3288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), + [anon_sym_DOLLAR] = ACTIONS(1204), + [sym__heredoc_body_middle] = ACTIONS(3290), }, [1471] = { - [sym_command_substitution] = STATE(383), - [aux_sym__literal_repeat1] = STATE(387), - [sym_expansion] = STATE(383), - [sym_string] = STATE(383), - [sym_command_name] = STATE(572), - [sym_process_substitution] = STATE(383), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [sym_subscript] = STATE(2467), - [sym_variable_assignment] = STATE(103), - [aux_sym_command_repeat1] = STATE(103), - [sym_concatenation] = STATE(390), - [sym_file_redirect] = STATE(103), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(93), - [sym_variable_name] = ACTIONS(257), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_AMP_GT] = ACTIONS(29), - [sym_number] = ACTIONS(75), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_word] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [sym__special_character] = ACTIONS(2012), + [sym_compound_statement] = STATE(498), + [anon_sym_LBRACE] = ACTIONS(83), + [sym_comment] = ACTIONS(53), }, [1472] = { - [sym_heredoc_body] = STATE(669), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), - [anon_sym_SEMI_SEMI] = ACTIONS(658), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3294), + [anon_sym_SEMI_SEMI] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3294), }, [1473] = { - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2133), - [anon_sym_LF] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym_SEMI_SEMI] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3253), + [sym_comment] = ACTIONS(53), + [anon_sym_fi] = ACTIONS(3296), }, [1474] = { - [sym_heredoc_body] = STATE(682), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(656), - [anon_sym_local] = ACTIONS(654), - [anon_sym_typeset] = ACTIONS(654), - [anon_sym_unsetenv] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), - [anon_sym_function] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_LT_AMP] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_export] = ACTIONS(654), - [sym_word] = ACTIONS(654), - [sym__simple_heredoc_body] = ACTIONS(969), - [sym__special_character] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_case] = ACTIONS(654), - [anon_sym_LPAREN_LPAREN] = ACTIONS(656), - [sym_raw_string] = ACTIONS(656), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_declare] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [sym_file_descriptor] = ACTIONS(656), - [sym__heredoc_body_beginning] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(654), - [anon_sym_unset] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_GT_AMP] = ACTIONS(656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_for] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(654), - [sym_ansii_c_string] = ACTIONS(656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(656), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_elif_clause] = STATE(1496), + [sym_else_clause] = STATE(1495), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(257), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [aux_sym_if_statement_repeat1] = STATE(1496), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_elif] = ACTIONS(1006), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(1004), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [1475] = { - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2200), - [anon_sym_LF] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_SEMI_SEMI] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3257), + [sym_elif_clause] = STATE(259), + [sym_else_clause] = STATE(1495), + [aux_sym_if_statement_repeat1] = STATE(259), + [anon_sym_elif] = ACTIONS(1334), + [anon_sym_fi] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(1336), + [sym_comment] = ACTIONS(53), }, [1476] = { - [sym_command_substitution] = STATE(745), - [sym_simple_expansion] = STATE(745), - [sym_string_expansion] = STATE(745), - [sym_string] = STATE(745), - [sym_process_substitution] = STATE(745), - [sym_expansion] = STATE(745), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2563), - [sym_word] = ACTIONS(2565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), - [anon_sym_DOLLAR] = ACTIONS(3259), - [anon_sym_LT_LPAREN] = ACTIONS(227), - [sym_ansii_c_string] = ACTIONS(2563), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(227), - [sym__special_character] = ACTIONS(2563), - [sym_number] = ACTIONS(2565), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [sym_last_case_item] = STATE(1498), + [sym_arithmetic_expansion] = STATE(262), + [sym_string_expansion] = STATE(262), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(2555), + [aux_sym__literal_repeat1] = STATE(265), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(2555), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1344), + [sym__special_character] = ACTIONS(1346), + [anon_sym_esac] = ACTIONS(3300), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1344), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1477] = { - [sym_command_substitution] = STATE(819), - [sym_simple_expansion] = STATE(819), - [sym_string_expansion] = STATE(819), - [sym_string] = STATE(819), - [sym_process_substitution] = STATE(819), - [sym_expansion] = STATE(819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1386), - [sym_word] = ACTIONS(1388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(3261), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym__special_character] = ACTIONS(1386), - [sym_number] = ACTIONS(1388), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [sym_last_case_item] = STATE(1500), + [sym_arithmetic_expansion] = STATE(262), + [sym_string_expansion] = STATE(262), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(2556), + [aux_sym__literal_repeat1] = STATE(265), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(2556), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1344), + [sym__special_character] = ACTIONS(1346), + [anon_sym_esac] = ACTIONS(3302), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1344), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1478] = { - [sym_command_substitution] = STATE(1080), - [sym_simple_expansion] = STATE(1080), - [sym_string_expansion] = STATE(1080), - [sym_string] = STATE(1080), - [sym_process_substitution] = STATE(1080), - [sym_expansion] = STATE(1080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2803), - [sym_word] = ACTIONS(2811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(3263), - [anon_sym_LT_LPAREN] = ACTIONS(2809), - [sym_ansii_c_string] = ACTIONS(2803), - [anon_sym_BQUOTE] = ACTIONS(2807), - [anon_sym_GT_LPAREN] = ACTIONS(2809), - [sym__special_character] = ACTIONS(2803), - [sym_number] = ACTIONS(2811), + [sym_concatenation] = STATE(1501), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1501), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_POUND] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3304), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3304), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1479] = { - [sym_command_substitution] = STATE(547), - [aux_sym__literal_repeat1] = STATE(548), - [sym_string] = STATE(547), - [sym_process_substitution] = STATE(547), - [sym_simple_expansion] = STATE(547), - [sym_string_expansion] = STATE(547), - [sym_concatenation] = STATE(549), - [sym_expansion] = STATE(547), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3265), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(2807), - [anon_sym_GT_LPAREN] = ACTIONS(2809), - [sym_number] = ACTIONS(3267), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_word] = ACTIONS(3267), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), - [anon_sym_LT_LPAREN] = ACTIONS(2809), - [sym_ansii_c_string] = ACTIONS(3265), - [sym__special_character] = ACTIONS(3097), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1480] = { - [sym_string] = STATE(558), - [anon_sym__] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2424), - [sym_raw_string] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_DOLLAR] = ACTIONS(2424), - [anon_sym_AT] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(123), - [anon_sym_0] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(3269), - [aux_sym__simple_variable_name_token1] = ACTIONS(2420), - [anon_sym_QMARK] = ACTIONS(3269), + [sym_concatenation] = STATE(1501), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1501), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_POUND] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3304), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3304), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(3310), }, [1481] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1490), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3271), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3273), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_expansion] = STATE(1503), + [sym_concatenation] = STATE(1504), + [sym_string] = STATE(1503), + [sym_command_substitution] = STATE(1503), + [sym_process_substitution] = STATE(1503), + [aux_sym__literal_repeat1] = STATE(1505), + [sym_simple_expansion] = STATE(1503), + [sym_arithmetic_expansion] = STATE(1503), + [sym_string_expansion] = STATE(1503), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(3312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3308), + [sym_word] = ACTIONS(3312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(3314), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(3314), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1482] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_concatenation] = STATE(1507), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1507), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3316), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3316), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3316), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_EQ] = ACTIONS(3316), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3316), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(3322), }, [1483] = { - [anon_sym_RPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1484] = { - [sym_command_substitution] = STATE(581), - [sym_string] = STATE(581), - [sym_process_substitution] = STATE(581), - [sym_simple_expansion] = STATE(581), - [sym_string_expansion] = STATE(581), - [sym_expansion] = STATE(581), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2378), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_BQUOTE] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(117), - [sym_number] = ACTIONS(2382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_word] = ACTIONS(2382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(117), - [sym_ansii_c_string] = ACTIONS(2378), - [sym__special_character] = ACTIONS(2378), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(3308), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1485] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1494), - [sym_concatenation] = STATE(1494), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3279), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3279), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3281), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_EQ] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3308), + [sym_comment] = ACTIONS(53), }, [1486] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1499), - [sym_concatenation] = STATE(1499), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3287), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3287), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3287), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3289), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_EQ] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3287), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(3324), + [sym_comment] = ACTIONS(53), }, [1487] = { - [sym_command_substitution] = STATE(591), - [aux_sym__literal_repeat1] = STATE(592), - [sym_string] = STATE(591), - [sym_array] = STATE(590), - [sym_process_substitution] = STATE(591), - [sym_simple_expansion] = STATE(591), - [sym_string_expansion] = STATE(591), - [sym_concatenation] = STATE(590), - [sym_expansion] = STATE(591), - [anon_sym_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BQUOTE] = ACTIONS(2513), - [anon_sym_GT_LPAREN] = ACTIONS(2511), - [sym_number] = ACTIONS(3299), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_word] = ACTIONS(3299), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2507), - [anon_sym_LT_LPAREN] = ACTIONS(2511), - [sym_ansii_c_string] = ACTIONS(3297), - [sym__special_character] = ACTIONS(3301), - [sym__empty_value] = ACTIONS(3303), + [sym_concatenation] = STATE(1508), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1508), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3326), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3326), + [anon_sym_POUND] = ACTIONS(3328), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3326), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_EQ] = ACTIONS(3326), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1488] = { - [sym_command_substitution] = STATE(593), - [aux_sym__literal_repeat1] = STATE(594), - [sym_string] = STATE(593), - [sym_process_substitution] = STATE(593), - [sym_simple_expansion] = STATE(593), - [sym_string_expansion] = STATE(593), - [sym_concatenation] = STATE(595), - [sym_expansion] = STATE(593), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3305), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(2807), - [anon_sym_GT_LPAREN] = ACTIONS(2809), - [sym_number] = ACTIONS(3307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_word] = ACTIONS(3307), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), - [anon_sym_LT_LPAREN] = ACTIONS(2809), - [sym_ansii_c_string] = ACTIONS(3305), - [sym__special_character] = ACTIONS(3097), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1489] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_concatenation] = STATE(284), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym_for_statement_repeat1] = STATE(284), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [sym_simple_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(3332), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1490] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3311), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_expansion] = STATE(1000), + [sym_string_expansion] = STATE(1000), + [sym_simple_expansion] = STATE(1000), + [sym_string] = STATE(1000), + [sym_command_substitution] = STATE(1000), + [sym_process_substitution] = STATE(1000), + [sym_arithmetic_expansion] = STATE(1000), + [anon_sym_GT_LPAREN] = ACTIONS(617), + [sym_number] = ACTIONS(1460), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(3334), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), + [sym_word] = ACTIONS(1460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [anon_sym_LT_LPAREN] = ACTIONS(617), + [sym_ansii_c_string] = ACTIONS(1464), + [sym__special_character] = ACTIONS(1460), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(633), + [sym_raw_string] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(635), }, [1491] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3313), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(3334), + [sym_comment] = ACTIONS(53), }, [1492] = { - [anon_sym_RPAREN] = ACTIONS(3313), - [sym_comment] = ACTIONS(41), + [anon_sym_RBRACK] = ACTIONS(3336), + [sym_comment] = ACTIONS(53), }, [1493] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1504), - [sym_concatenation] = STATE(1504), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3315), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3315), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3317), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_EQ] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3315), - [sym_regex] = ACTIONS(3321), + [sym_if_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_negated_command] = STATE(203), + [sym_test_command] = STATE(203), + [sym_variable_assignment] = STATE(204), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_compound_statement] = STATE(203), + [sym_subshell] = STATE(203), + [sym_declaration_command] = STATE(203), + [sym_unset_command] = STATE(203), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [aux_sym__statements2] = STATE(257), + [sym_c_style_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_done] = ACTIONS(3338), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(89), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [1494] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(296), + [aux_sym_heredoc_body_repeat1] = STATE(296), + [sym_simple_expansion] = STATE(296), + [sym_command_substitution] = STATE(296), + [sym__heredoc_body_end] = ACTIONS(3340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), + [anon_sym_DOLLAR] = ACTIONS(1204), + [sym__heredoc_body_middle] = ACTIONS(1518), }, [1495] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1504), - [sym_concatenation] = STATE(1504), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3315), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3315), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3317), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_EQ] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3315), + [sym_comment] = ACTIONS(53), + [anon_sym_fi] = ACTIONS(3342), }, [1496] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1508), - [sym_concatenation] = STATE(1508), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3325), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3327), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_EQ] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3325), + [sym_elif_clause] = STATE(259), + [sym_else_clause] = STATE(1511), + [aux_sym_if_statement_repeat1] = STATE(259), + [anon_sym_elif] = ACTIONS(1334), + [anon_sym_fi] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(1336), + [sym_comment] = ACTIONS(53), }, [1497] = { - [sym_command_substitution] = STATE(1509), - [aux_sym__literal_repeat1] = STATE(1510), - [sym_string] = STATE(1509), - [sym_process_substitution] = STATE(1509), - [sym_simple_expansion] = STATE(1509), - [sym_string_expansion] = STATE(1509), - [sym_concatenation] = STATE(1511), - [sym_expansion] = STATE(1509), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(3335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(3335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(3333), - [sym__special_character] = ACTIONS(949), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [sym_last_case_item] = STATE(1512), + [sym_arithmetic_expansion] = STATE(262), + [sym_string_expansion] = STATE(262), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(2559), + [aux_sym__literal_repeat1] = STATE(265), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(2559), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1344), + [sym__special_character] = ACTIONS(1346), + [anon_sym_esac] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1344), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1498] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1513), - [sym_concatenation] = STATE(1513), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3337), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3337), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3337), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3339), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_EQ] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3337), - [sym_regex] = ACTIONS(3343), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(3346), }, [1499] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [sym_last_case_item] = STATE(1513), + [sym_arithmetic_expansion] = STATE(262), + [sym_string_expansion] = STATE(262), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(2560), + [aux_sym__literal_repeat1] = STATE(265), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(2560), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1344), + [sym__special_character] = ACTIONS(1346), + [anon_sym_esac] = ACTIONS(3348), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1344), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1500] = { - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [sym_test_operator] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(3350), }, [1501] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(1514), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(1514), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(3347), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1502] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_concatenation] = STATE(1514), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1514), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3354), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3356), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3354), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(3354), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3354), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1503] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1515), - [sym_concatenation] = STATE(1515), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3351), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3353), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3351), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(3352), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1504] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(3352), + [sym_comment] = ACTIONS(53), }, [1505] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1515), - [sym_concatenation] = STATE(1515), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3351), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3351), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3353), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3351), - [sym_regex] = ACTIONS(3357), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(3358), + [sym_comment] = ACTIONS(53), }, [1506] = { - [sym_command_substitution] = STATE(1517), - [aux_sym__literal_repeat1] = STATE(1518), - [sym_string] = STATE(1517), - [sym_process_substitution] = STATE(1517), - [sym_simple_expansion] = STATE(1517), - [sym_string_expansion] = STATE(1517), - [sym_concatenation] = STATE(1519), - [sym_expansion] = STATE(1517), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(3361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(3361), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(3359), - [sym__special_character] = ACTIONS(949), + [sym_concatenation] = STATE(1515), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1515), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3360), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3360), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_EQ] = ACTIONS(3360), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3360), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1507] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1521), - [sym_concatenation] = STATE(1521), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3363), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3363), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3365), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3363), - [sym_regex] = ACTIONS(3369), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1508] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1509] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3355), - [sym__concat] = ACTIONS(1298), + [sym_do_group] = STATE(525), + [sym_comment] = ACTIONS(53), + [anon_sym_do] = ACTIONS(3226), }, [1510] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(3371), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_do_group] = STATE(526), + [sym_compound_statement] = STATE(526), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3226), }, [1511] = { - [anon_sym_RBRACE] = ACTIONS(3355), - [sym_comment] = ACTIONS(41), + [sym_comment] = ACTIONS(53), + [anon_sym_fi] = ACTIONS(3370), }, [1512] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1522), - [sym_concatenation] = STATE(1522), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3373), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3373), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3375), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3373), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(3372), }, [1513] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(3374), }, [1514] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(281), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(281), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(3379), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1515] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1516] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1523), - [sym_concatenation] = STATE(1523), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3383), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3383), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3385), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_EQ] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3383), + [sym_do_group] = STATE(532), + [sym_compound_statement] = STATE(532), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(83), + [sym_comment] = ACTIONS(53), }, [1517] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3381), - [sym__concat] = ACTIONS(1298), + [sym_do_group] = STATE(532), + [sym_compound_statement] = STATE(532), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3226), }, [1518] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(3387), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(3382), }, [1519] = { - [anon_sym_RBRACE] = ACTIONS(3381), - [sym_comment] = ACTIONS(41), + [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(3384), }, [1520] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1524), - [sym_concatenation] = STATE(1524), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3389), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3389), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3389), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3391), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3389), + [sym_do_group] = STATE(535), + [sym_compound_statement] = STATE(535), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(83), + [sym_comment] = ACTIONS(53), }, [1521] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_do_group] = STATE(535), + [sym_compound_statement] = STATE(535), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3226), }, [1522] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_do_group] = STATE(536), + [sym_compound_statement] = STATE(536), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(83), + [sym_comment] = ACTIONS(53), }, [1523] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_do_group] = STATE(536), + [sym_compound_statement] = STATE(536), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_do] = ACTIONS(3226), }, [1524] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_do_group] = STATE(537), + [sym_compound_statement] = STATE(537), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(83), + [sym_comment] = ACTIONS(53), }, [1525] = { - [sym_string] = STATE(643), - [anon_sym__] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_0] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(3401), - [aux_sym__simple_variable_name_token1] = ACTIONS(2518), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3401), - [sym_raw_string] = ACTIONS(3405), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3403), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [sym_test_command] = STATE(415), + [sym_variable_assignment] = STATE(1528), + [aux_sym_command_repeat1] = STATE(1528), + [sym_subscript] = STATE(2585), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [sym_command] = STATE(415), + [sym_command_name] = STATE(550), + [aux_sym__literal_repeat1] = STATE(393), + [sym_simple_expansion] = STATE(386), + [sym_subshell] = STATE(415), + [sym_file_redirect] = STATE(1528), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_variable_name] = ACTIONS(273), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_AMP_GT] = ACTIONS(27), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [sym_raw_string] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(85), }, [1526] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1534), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(3407), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_heredoc_redirect] = STATE(420), + [sym_file_redirect] = STATE(420), + [sym_herestring_redirect] = STATE(420), + [aux_sym_redirected_statement_repeat1] = STATE(420), + [anon_sym_SEMI_SEMI] = ACTIONS(2367), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LF] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2367), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(2361), + [anon_sym_LT_LT_LT] = ACTIONS(501), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_BQUOTE] = ACTIONS(2093), + [anon_sym_GT_GT] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_PIPE_AMP] = ACTIONS(2363), }, [1527] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3411), + [sym_if_statement] = STATE(708), + [sym_function_definition] = STATE(708), + [sym_negated_command] = STATE(708), + [sym_test_command] = STATE(708), + [sym_variable_assignment] = STATE(709), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(101), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(708), + [sym_for_statement] = STATE(708), + [sym_compound_statement] = STATE(708), + [sym_subshell] = STATE(708), + [sym_declaration_command] = STATE(708), + [sym_unset_command] = STATE(708), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(708), + [sym_while_statement] = STATE(708), + [sym_case_statement] = STATE(708), + [sym_pipeline] = STATE(708), + [sym_list] = STATE(708), + [sym_command] = STATE(708), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, [1528] = { - [anon_sym_RPAREN] = ACTIONS(3413), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [sym_command_name] = STATE(576), + [sym_variable_assignment] = STATE(105), + [sym_simple_expansion] = STATE(386), + [sym_subscript] = STATE(2585), + [aux_sym_command_repeat1] = STATE(105), + [sym_arithmetic_expansion] = STATE(386), + [sym_file_redirect] = STATE(105), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [sym_variable_name] = ACTIONS(273), + [sym_word] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(27), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [sym__special_character] = ACTIONS(2097), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [sym_raw_string] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(105), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(85), }, [1529] = { - [sym_command_substitution] = STATE(658), - [sym_simple_expansion] = STATE(658), - [sym_string_expansion] = STATE(658), - [sym_string] = STATE(658), - [sym_process_substitution] = STATE(658), - [sym_expansion] = STATE(658), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2503), - [sym_word] = ACTIONS(2505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2507), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_LT_LPAREN] = ACTIONS(2511), - [sym_ansii_c_string] = ACTIONS(2503), - [anon_sym_BQUOTE] = ACTIONS(2513), - [anon_sym_GT_LPAREN] = ACTIONS(2511), - [sym__special_character] = ACTIONS(2503), - [sym_number] = ACTIONS(2505), + [sym_heredoc_body] = STATE(675), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(695), }, [1530] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1538), - [sym_concatenation] = STATE(1538), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3415), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3417), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3421), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3415), - [sym__special_character] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(2224), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3390), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_SEMI_SEMI] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3392), }, [1531] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1543), - [sym_concatenation] = STATE(1543), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3423), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3425), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3429), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3423), - [sym__special_character] = ACTIONS(459), + [sym_heredoc_body] = STATE(688), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_local] = ACTIONS(687), + [anon_sym_typeset] = ACTIONS(687), + [anon_sym_unsetenv] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(689), + [sym_ansii_c_string] = ACTIONS(689), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_export] = ACTIONS(687), + [sym__simple_heredoc_body] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_case] = ACTIONS(687), + [anon_sym_LPAREN_LPAREN] = ACTIONS(689), + [sym_number] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(689), + [sym_file_descriptor] = ACTIONS(689), + [sym_word] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [sym_variable_name] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(687), + [anon_sym_readonly] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(687), + [sym__special_character] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(689), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_for] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(687), + [sym_raw_string] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(1210), }, [1532] = { - [sym_command_substitution] = STATE(664), - [aux_sym__literal_repeat1] = STATE(665), - [sym_string] = STATE(664), - [sym_array] = STATE(663), - [sym_process_substitution] = STATE(664), - [sym_simple_expansion] = STATE(664), - [sym_string_expansion] = STATE(664), - [sym_concatenation] = STATE(663), - [sym_expansion] = STATE(664), - [anon_sym_LPAREN] = ACTIONS(3431), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3433), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_BQUOTE] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(117), - [sym_number] = ACTIONS(3435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_word] = ACTIONS(3435), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(117), - [sym_ansii_c_string] = ACTIONS(3433), - [sym__special_character] = ACTIONS(127), - [sym__empty_value] = ACTIONS(3437), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3396), + [anon_sym_SEMI_SEMI] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3396), }, [1533] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(792), + [sym_string_expansion] = STATE(792), + [sym_simple_expansion] = STATE(792), + [sym_string] = STATE(792), + [sym_command_substitution] = STATE(792), + [sym_process_substitution] = STATE(792), + [sym_arithmetic_expansion] = STATE(792), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_number] = ACTIONS(2697), + [sym__special_character] = ACTIONS(2699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(259), + [sym_raw_string] = ACTIONS(2699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym_word] = ACTIONS(2697), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [anon_sym_DOLLAR] = ACTIONS(3398), + [sym_ansii_c_string] = ACTIONS(2699), }, [1534] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(1132), + [sym_string_expansion] = STATE(1132), + [sym_simple_expansion] = STATE(1132), + [sym_string] = STATE(1132), + [sym_command_substitution] = STATE(1132), + [sym_process_substitution] = STATE(1132), + [sym_arithmetic_expansion] = STATE(1132), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(2945), + [sym_number] = ACTIONS(2947), + [sym__special_character] = ACTIONS(2957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), + [anon_sym_BQUOTE] = ACTIONS(2959), + [sym_raw_string] = ACTIONS(2957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [sym_word] = ACTIONS(2947), + [anon_sym_LT_LPAREN] = ACTIONS(2945), + [anon_sym_DOLLAR] = ACTIONS(3400), + [sym_ansii_c_string] = ACTIONS(2957), }, [1535] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_expansion] = STATE(1198), + [sym_string_expansion] = STATE(1198), + [sym_simple_expansion] = STATE(1198), + [sym_string] = STATE(1198), + [sym_command_substitution] = STATE(1198), + [sym_process_substitution] = STATE(1198), + [sym_arithmetic_expansion] = STATE(1198), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(3001), + [sym__special_character] = ACTIONS(3003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(3003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [sym_word] = ACTIONS(3001), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(3402), + [sym_ansii_c_string] = ACTIONS(3003), }, [1536] = { - [anon_sym_RPAREN] = ACTIONS(3443), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(551), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(551), + [sym_command_substitution] = STATE(551), + [sym_process_substitution] = STATE(551), + [aux_sym__literal_repeat1] = STATE(553), + [sym_simple_expansion] = STATE(551), + [sym_arithmetic_expansion] = STATE(551), + [sym_string_expansion] = STATE(551), + [anon_sym_GT_LPAREN] = ACTIONS(2945), + [sym_number] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), + [sym_word] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [anon_sym_LT_LPAREN] = ACTIONS(2945), + [sym_ansii_c_string] = ACTIONS(3406), + [sym__special_character] = ACTIONS(3234), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2959), + [sym_raw_string] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3236), }, [1537] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1547), - [sym_concatenation] = STATE(1547), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3447), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_COLON_DASH] = ACTIONS(3445), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3445), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3451), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1540), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3408), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3410), }, [1538] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_string] = STATE(567), + [anon_sym_0] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_DQUOTE] = ACTIONS(121), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(2530), + [anon_sym_POUND] = ACTIONS(2530), + [anon_sym_QMARK] = ACTIONS(3412), + [aux_sym__simple_variable_name_token1] = ACTIONS(2526), + [anon_sym__] = ACTIONS(2526), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2532), + [anon_sym_DOLLAR] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(3412), }, [1539] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1547), - [sym_concatenation] = STATE(1547), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3447), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3449), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3445), - [sym__special_character] = ACTIONS(459), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1540] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1551), - [sym_concatenation] = STATE(1551), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3455), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3457), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3455), - [anon_sym_EQ] = ACTIONS(3455), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3461), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3455), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3414), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3416), }, [1541] = { - [sym_command_substitution] = STATE(1552), - [aux_sym__literal_repeat1] = STATE(1553), - [sym_string] = STATE(1552), - [sym_process_substitution] = STATE(1552), - [sym_simple_expansion] = STATE(1552), - [sym_string_expansion] = STATE(1552), - [sym_concatenation] = STATE(1554), - [sym_expansion] = STATE(1552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3463), - [sym_word] = ACTIONS(3465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3463), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(3449), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(3465), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3418), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1542] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1556), - [sym_concatenation] = STATE(1556), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3467), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3469), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3467), - [anon_sym_COLON_DASH] = ACTIONS(3467), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3467), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3467), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3473), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), }, [1543] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(3420), + [sym_comment] = ACTIONS(53), }, [1544] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(1557), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(1557), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(3475), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(53), }, [1545] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(591), + [sym_string] = STATE(591), + [sym_command_substitution] = STATE(591), + [sym_process_substitution] = STATE(591), + [sym_simple_expansion] = STATE(591), + [sym_arithmetic_expansion] = STATE(591), + [sym_string_expansion] = STATE(591), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_number] = ACTIONS(2483), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(123), + [sym_word] = ACTIONS(2483), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [sym_ansii_c_string] = ACTIONS(2485), + [sym__special_character] = ACTIONS(2485), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(131), + [sym_raw_string] = ACTIONS(2485), + [anon_sym_DOLLAR] = ACTIONS(133), }, [1546] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1558), - [sym_concatenation] = STATE(1558), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3479), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3481), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3479), - [anon_sym_COLON_DASH] = ACTIONS(3479), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3479), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3479), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1554), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1554), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3424), + [anon_sym_POUND] = ACTIONS(3426), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_EQ] = ACTIONS(3424), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3424), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3430), }, [1547] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1559), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1559), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3432), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3432), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_POUND] = ACTIONS(3434), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3432), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_EQ] = ACTIONS(3432), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3432), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3438), }, [1548] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1558), - [sym_concatenation] = STATE(1558), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3479), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3481), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3479), - [anon_sym_COLON_DASH] = ACTIONS(3479), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3479), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3479), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3485), + [sym_expansion] = STATE(596), + [sym_concatenation] = STATE(597), + [sym_string] = STATE(596), + [sym_command_substitution] = STATE(596), + [sym_process_substitution] = STATE(596), + [aux_sym__literal_repeat1] = STATE(598), + [sym_array] = STATE(597), + [sym_simple_expansion] = STATE(596), + [sym_arithmetic_expansion] = STATE(596), + [sym_string_expansion] = STATE(596), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_GT_LPAREN] = ACTIONS(2609), + [sym_number] = ACTIONS(3442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2619), + [sym_word] = ACTIONS(3442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), + [anon_sym_LT_LPAREN] = ACTIONS(2609), + [sym_ansii_c_string] = ACTIONS(3444), + [sym__special_character] = ACTIONS(3446), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2621), + [sym_raw_string] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(149), + [sym__empty_value] = ACTIONS(3448), }, [1549] = { - [sym_command_substitution] = STATE(1560), - [aux_sym__literal_repeat1] = STATE(1561), - [sym_string] = STATE(1560), - [sym_process_substitution] = STATE(1560), - [sym_simple_expansion] = STATE(1560), - [sym_string_expansion] = STATE(1560), - [sym_concatenation] = STATE(1562), - [sym_expansion] = STATE(1560), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3487), - [sym_word] = ACTIONS(3489), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3487), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(3483), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(3489), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(599), + [sym_concatenation] = STATE(600), + [sym_string] = STATE(599), + [sym_command_substitution] = STATE(599), + [sym_process_substitution] = STATE(599), + [aux_sym__literal_repeat1] = STATE(601), + [sym_simple_expansion] = STATE(599), + [sym_arithmetic_expansion] = STATE(599), + [sym_string_expansion] = STATE(599), + [anon_sym_GT_LPAREN] = ACTIONS(2945), + [sym_number] = ACTIONS(3450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), + [sym_word] = ACTIONS(3450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [anon_sym_LT_LPAREN] = ACTIONS(2945), + [sym_ansii_c_string] = ACTIONS(3452), + [sym__special_character] = ACTIONS(3234), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2959), + [sym_raw_string] = ACTIONS(3452), + [anon_sym_DOLLAR] = ACTIONS(3236), }, [1550] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1564), - [sym_concatenation] = STATE(1564), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3491), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3493), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_COLON_DASH] = ACTIONS(3491), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3491), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3491), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3497), + [anon_sym_BQUOTE] = ACTIONS(3454), + [sym_comment] = ACTIONS(53), }, [1551] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1552] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3483), - [sym__concat] = ACTIONS(1298), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(3458), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1553] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(3499), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1562), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1562), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3460), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3460), + [anon_sym_POUND] = ACTIONS(3462), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3460), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_EQ] = ACTIONS(3460), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(3466), }, [1554] = { - [anon_sym_RBRACE] = ACTIONS(3483), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1555] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1565), - [sym_concatenation] = STATE(1565), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3501), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3503), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_COLON_DASH] = ACTIONS(3501), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3501), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3501), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1562), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1562), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3460), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3460), + [anon_sym_POUND] = ACTIONS(3462), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3460), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_EQ] = ACTIONS(3460), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3468), }, [1556] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1566), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1566), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3470), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3470), + [anon_sym_POUND] = ACTIONS(3472), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3470), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3474), + [anon_sym_EQ] = ACTIONS(3470), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3470), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3476), }, [1557] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(281), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(281), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(3507), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_expansion] = STATE(1567), + [sym_concatenation] = STATE(1568), + [sym_string] = STATE(1567), + [sym_command_substitution] = STATE(1567), + [sym_process_substitution] = STATE(1567), + [aux_sym__literal_repeat1] = STATE(1569), + [sym_simple_expansion] = STATE(1567), + [sym_arithmetic_expansion] = STATE(1567), + [sym_string_expansion] = STATE(1567), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(3478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3464), + [sym_word] = ACTIONS(3478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(3480), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(3480), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1558] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1571), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1571), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3482), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3482), + [anon_sym_POUND] = ACTIONS(3484), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3482), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym_EQ] = ACTIONS(3482), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3482), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(3488), }, [1559] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1566), - [sym_concatenation] = STATE(1566), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3511), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3513), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_COLON_DASH] = ACTIONS(3511), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3511), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3511), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1560] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3509), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(1572), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(1572), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(3490), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1561] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(3515), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1573), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1573), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3492), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3492), + [anon_sym_POUND] = ACTIONS(3494), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3492), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_EQ] = ACTIONS(3492), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3492), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1562] = { - [anon_sym_RBRACE] = ACTIONS(3509), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1563] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1567), - [sym_concatenation] = STATE(1567), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3517), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3519), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_COLON_DASH] = ACTIONS(3517), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3517), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3517), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3517), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1573), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1573), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3492), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3492), + [anon_sym_POUND] = ACTIONS(3494), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3492), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_EQ] = ACTIONS(3492), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3492), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(3498), }, [1564] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(1575), + [sym_concatenation] = STATE(1576), + [sym_string] = STATE(1575), + [sym_command_substitution] = STATE(1575), + [sym_process_substitution] = STATE(1575), + [aux_sym__literal_repeat1] = STATE(1577), + [sym_simple_expansion] = STATE(1575), + [sym_arithmetic_expansion] = STATE(1575), + [sym_string_expansion] = STATE(1575), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(3500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3496), + [sym_word] = ACTIONS(3500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(3502), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(3502), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1565] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3523), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1579), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1579), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3504), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3504), + [anon_sym_POUND] = ACTIONS(3506), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3504), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3508), + [anon_sym_EQ] = ACTIONS(3504), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3504), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(3510), }, [1566] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3508), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1567] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3527), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(3496), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1568] = { - [sym_string] = STATE(699), - [anon_sym__] = ACTIONS(2552), - [anon_sym_DQUOTE] = ACTIONS(2535), - [anon_sym_POUND] = ACTIONS(3529), - [anon_sym_STAR] = ACTIONS(3531), - [anon_sym_0] = ACTIONS(2552), - [anon_sym_BANG] = ACTIONS(3529), - [aux_sym__simple_variable_name_token1] = ACTIONS(2552), - [anon_sym_DOLLAR] = ACTIONS(3529), - [anon_sym_AT] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3529), - [sym_raw_string] = ACTIONS(3533), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(3531), + [anon_sym_RBRACE] = ACTIONS(3496), + [sym_comment] = ACTIONS(53), }, [1569] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1577), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(3535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3537), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(3512), + [sym_comment] = ACTIONS(53), }, [1570] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3539), + [sym_concatenation] = STATE(1580), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1580), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3514), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3514), + [anon_sym_POUND] = ACTIONS(3516), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3514), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_EQ] = ACTIONS(3514), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3514), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1571] = { - [anon_sym_RPAREN] = ACTIONS(3541), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1572] = { - [sym_command_substitution] = STATE(708), - [sym_simple_expansion] = STATE(708), - [sym_string_expansion] = STATE(708), - [sym_string] = STATE(708), - [sym_process_substitution] = STATE(708), - [sym_expansion] = STATE(708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2533), - [anon_sym_DQUOTE] = ACTIONS(2535), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2537), - [sym_word] = ACTIONS(2539), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2541), - [anon_sym_DOLLAR] = ACTIONS(155), - [anon_sym_LT_LPAREN] = ACTIONS(2545), - [sym_ansii_c_string] = ACTIONS(2537), - [anon_sym_BQUOTE] = ACTIONS(2547), - [anon_sym_GT_LPAREN] = ACTIONS(2545), - [sym__special_character] = ACTIONS(2537), - [sym_number] = ACTIONS(2539), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(284), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(284), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(3520), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1573] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1581), - [sym_concatenation] = STATE(1581), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3543), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3545), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3543), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3549), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3543), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1574] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1586), - [sym_concatenation] = STATE(1586), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3551), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3553), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3555), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3551), - [anon_sym_EQ] = ACTIONS(3551), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3551), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3557), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3551), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1581), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1581), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3524), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3524), + [anon_sym_POUND] = ACTIONS(3526), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3524), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_EQ] = ACTIONS(3524), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3524), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1575] = { - [sym_command_substitution] = STATE(714), - [aux_sym__literal_repeat1] = STATE(715), - [sym_string] = STATE(714), - [sym_array] = STATE(713), - [sym_process_substitution] = STATE(714), - [sym_simple_expansion] = STATE(714), - [sym_string_expansion] = STATE(714), - [sym_concatenation] = STATE(713), - [sym_expansion] = STATE(714), - [anon_sym_LPAREN] = ACTIONS(3559), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3561), - [anon_sym_DOLLAR] = ACTIONS(1962), - [anon_sym_BQUOTE] = ACTIONS(2637), - [anon_sym_GT_LPAREN] = ACTIONS(2639), - [sym_number] = ACTIONS(3563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_word] = ACTIONS(3563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2647), - [anon_sym_LT_LPAREN] = ACTIONS(2639), - [sym_ansii_c_string] = ACTIONS(3561), - [sym__special_character] = ACTIONS(3565), - [sym__empty_value] = ACTIONS(3567), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(3522), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1576] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(3522), + [sym_comment] = ACTIONS(53), }, [1577] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(3571), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(3528), + [sym_comment] = ACTIONS(53), }, [1578] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_concatenation] = STATE(1582), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1582), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3530), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3530), + [anon_sym_POUND] = ACTIONS(3532), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3530), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_EQ] = ACTIONS(3530), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3530), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1579] = { - [anon_sym_RPAREN] = ACTIONS(3573), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1580] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1590), - [sym_concatenation] = STATE(1590), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3577), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(3575), - [anon_sym_COLON_DASH] = ACTIONS(3575), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3575), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3575), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3581), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1581] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3579), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1582] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1590), - [sym_concatenation] = STATE(1590), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3577), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3583), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3575), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3575), - [anon_sym_EQ] = ACTIONS(3575), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3575), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3579), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3575), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1583] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1594), - [sym_concatenation] = STATE(1594), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3585), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3587), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3585), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3585), - [anon_sym_EQ] = ACTIONS(3585), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3585), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3591), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3585), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1586), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3544), }, [1584] = { - [sym_command_substitution] = STATE(1595), - [aux_sym__literal_repeat1] = STATE(1596), - [sym_string] = STATE(1595), - [sym_process_substitution] = STATE(1595), - [sym_simple_expansion] = STATE(1595), - [sym_string_expansion] = STATE(1595), - [sym_concatenation] = STATE(1597), - [sym_expansion] = STATE(1595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3593), - [sym_word] = ACTIONS(3595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3593), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(3579), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(3595), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_string] = STATE(650), + [anon_sym_POUND] = ACTIONS(3546), + [anon_sym_0] = ACTIONS(2628), + [anon_sym_QMARK] = ACTIONS(3548), + [aux_sym__simple_variable_name_token1] = ACTIONS(2628), + [anon_sym__] = ACTIONS(2628), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3546), + [sym_raw_string] = ACTIONS(3550), + [anon_sym_DOLLAR] = ACTIONS(3546), + [anon_sym_AT] = ACTIONS(3548), }, [1585] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1599), - [sym_concatenation] = STATE(1599), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3597), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3599), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym_DASH] = ACTIONS(3597), - [anon_sym_COLON_DASH] = ACTIONS(3597), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3597), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3597), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3597), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1586] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3554), }, [1587] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(1600), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(1600), - [sym_expansion] = STATE(222), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(3605), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_GT_LPAREN] = ACTIONS(1025), - [sym_number] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [sym_ansii_c_string] = ACTIONS(1017), - [sym__special_character] = ACTIONS(1031), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3556), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1588] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(3607), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(3558), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [1589] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1601), - [sym_concatenation] = STATE(1601), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3609), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3611), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3613), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_COLON_DASH] = ACTIONS(3609), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3609), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3609), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(3558), + [sym_comment] = ACTIONS(53), }, [1590] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3613), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(3560), + [sym_comment] = ACTIONS(53), }, [1591] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1601), - [sym_concatenation] = STATE(1601), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3609), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3611), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3613), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_COLON_DASH] = ACTIONS(3609), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3609), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3609), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3609), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3615), + [sym_expansion] = STATE(665), + [sym_string_expansion] = STATE(665), + [sym_simple_expansion] = STATE(665), + [sym_string] = STATE(665), + [sym_command_substitution] = STATE(665), + [sym_process_substitution] = STATE(665), + [sym_arithmetic_expansion] = STATE(665), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(2609), + [sym_number] = ACTIONS(2611), + [sym__special_character] = ACTIONS(2613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2619), + [anon_sym_BQUOTE] = ACTIONS(2621), + [sym_raw_string] = ACTIONS(2613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), + [sym_word] = ACTIONS(2611), + [anon_sym_LT_LPAREN] = ACTIONS(2609), + [anon_sym_DOLLAR] = ACTIONS(149), + [sym_ansii_c_string] = ACTIONS(2613), }, [1592] = { - [sym_command_substitution] = STATE(1603), - [aux_sym__literal_repeat1] = STATE(1604), - [sym_string] = STATE(1603), - [sym_process_substitution] = STATE(1603), - [sym_simple_expansion] = STATE(1603), - [sym_string_expansion] = STATE(1603), - [sym_concatenation] = STATE(1605), - [sym_expansion] = STATE(1603), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3617), - [sym_word] = ACTIONS(3619), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3617), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(3613), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(3619), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1598), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1598), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3562), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3562), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3562), + [anon_sym_POUND] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3562), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3562), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_PERCENT] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3568), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1593] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1607), - [sym_concatenation] = STATE(1607), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3621), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3623), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_COLON_DASH] = ACTIONS(3621), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3621), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3621), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3627), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1603), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1603), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3570), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3570), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3570), + [anon_sym_POUND] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3570), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_PERCENT] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1594] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(670), + [sym_concatenation] = STATE(671), + [sym_string] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__literal_repeat1] = STATE(672), + [sym_array] = STATE(671), + [sym_simple_expansion] = STATE(670), + [sym_arithmetic_expansion] = STATE(670), + [sym_string_expansion] = STATE(670), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [sym_number] = ACTIONS(3580), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(123), + [sym_word] = ACTIONS(3580), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [sym_ansii_c_string] = ACTIONS(3582), + [sym__special_character] = ACTIONS(129), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(131), + [sym_raw_string] = ACTIONS(3582), + [anon_sym_DOLLAR] = ACTIONS(133), + [sym__empty_value] = ACTIONS(3584), }, [1595] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3613), - [sym__concat] = ACTIONS(1298), + [anon_sym_BQUOTE] = ACTIONS(3586), + [sym_comment] = ACTIONS(53), }, [1596] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(3629), - [sym_comment] = ACTIONS(41), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1597] = { - [anon_sym_RBRACE] = ACTIONS(3613), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1606), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1606), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3590), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3590), + [anon_sym_POUND] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3590), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_PERCENT] = ACTIONS(3590), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3596), }, [1598] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1608), - [sym_concatenation] = STATE(1608), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3631), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3633), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_COLON_DASH] = ACTIONS(3631), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3631), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3631), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1599] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1606), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1606), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3590), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3590), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3590), + [anon_sym_POUND] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3590), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_PERCENT] = ACTIONS(3590), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3598), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1600] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(281), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(281), - [sym_expansion] = STATE(222), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(3637), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_GT_LPAREN] = ACTIONS(1025), - [sym_number] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [sym_ansii_c_string] = ACTIONS(1017), - [sym__special_character] = ACTIONS(1031), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1610), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1610), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3600), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3600), + [anon_sym_POUND] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_PERCENT] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1601] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(1611), + [sym_concatenation] = STATE(1612), + [sym_string] = STATE(1611), + [sym_command_substitution] = STATE(1611), + [sym_process_substitution] = STATE(1611), + [aux_sym__literal_repeat1] = STATE(1613), + [sym_simple_expansion] = STATE(1611), + [sym_arithmetic_expansion] = STATE(1611), + [sym_string_expansion] = STATE(1611), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(3608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3594), + [sym_word] = ACTIONS(3608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(3610), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1602] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1609), - [sym_concatenation] = STATE(1609), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3643), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3641), - [anon_sym_COLON_DASH] = ACTIONS(3641), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3641), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3641), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1615), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1615), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3612), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3612), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_POUND] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3612), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3612), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3618), }, [1603] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3639), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1604] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(3645), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(1616), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(1616), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(3620), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1605] = { - [anon_sym_RBRACE] = ACTIONS(3639), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1617), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3622), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3622), + [anon_sym_POUND] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_PERCENT] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1606] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1610), - [sym_concatenation] = STATE(1610), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3647), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3649), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(3647), - [anon_sym_COLON_DASH] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3647), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3647), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1607] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1617), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3622), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3622), + [anon_sym_POUND] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_PERCENT] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3628), }, [1608] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(1619), + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(1619), + [sym_command_substitution] = STATE(1619), + [sym_process_substitution] = STATE(1619), + [aux_sym__literal_repeat1] = STATE(1621), + [sym_simple_expansion] = STATE(1619), + [sym_arithmetic_expansion] = STATE(1619), + [sym_string_expansion] = STATE(1619), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(3630), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3626), + [sym_word] = ACTIONS(3630), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(3632), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1609] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3655), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1623), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3634), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3634), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3634), + [anon_sym_POUND] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3634), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3634), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3634), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3640), }, [1610] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3657), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1611] = { - [sym_string] = STATE(738), - [anon_sym__] = ACTIONS(2572), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3659), - [sym_raw_string] = ACTIONS(3661), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_DOLLAR] = ACTIONS(3659), - [anon_sym_AT] = ACTIONS(3663), - [anon_sym_DASH] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_0] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(3663), - [aux_sym__simple_variable_name_token1] = ACTIONS(2572), - [anon_sym_QMARK] = ACTIONS(3663), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3626), + [sym__concat] = ACTIONS(1422), }, [1612] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1620), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3665), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3667), - [anon_sym_BQUOTE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(3626), + [sym_comment] = ACTIONS(53), }, [1613] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3669), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(3642), }, [1614] = { - [anon_sym_RPAREN] = ACTIONS(3671), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1624), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1624), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3644), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_POUND] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_PERCENT] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1615] = { - [sym_command_substitution] = STATE(745), - [sym_string] = STATE(745), - [sym_process_substitution] = STATE(745), - [sym_simple_expansion] = STATE(745), - [sym_string_expansion] = STATE(745), - [sym_expansion] = STATE(745), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2563), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(227), - [sym_number] = ACTIONS(2565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym_word] = ACTIONS(2565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(227), - [sym_ansii_c_string] = ACTIONS(2563), - [sym__special_character] = ACTIONS(2563), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1616] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1624), - [sym_concatenation] = STATE(1624), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3673), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3673), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3673), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3675), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3673), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3673), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(284), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(284), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(3650), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1617] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1629), - [sym_concatenation] = STATE(1629), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3681), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3681), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3683), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_RBRACE] = ACTIONS(3687), - [anon_sym_EQ] = ACTIONS(3681), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3681), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1618] = { - [sym_command_substitution] = STATE(751), - [aux_sym__literal_repeat1] = STATE(752), - [sym_string] = STATE(751), - [sym_array] = STATE(750), - [sym_process_substitution] = STATE(751), - [sym_simple_expansion] = STATE(751), - [sym_string_expansion] = STATE(751), - [sym_concatenation] = STATE(750), - [sym_expansion] = STATE(751), - [anon_sym_LPAREN] = ACTIONS(3689), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3691), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(227), - [sym_number] = ACTIONS(3693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym_word] = ACTIONS(3693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(227), - [sym_ansii_c_string] = ACTIONS(3691), - [sym__special_character] = ACTIONS(3695), - [sym__empty_value] = ACTIONS(3697), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1625), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1625), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3654), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3654), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3654), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_PERCENT] = ACTIONS(3654), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1619] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3699), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3652), + [sym__concat] = ACTIONS(1422), }, [1620] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3699), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3701), - [anon_sym_BQUOTE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(3652), + [sym_comment] = ACTIONS(53), }, [1621] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3703), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(3658), }, [1622] = { - [anon_sym_RPAREN] = ACTIONS(3703), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1626), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1626), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3660), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3660), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_POUND] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_PERCENT] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1623] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1633), - [sym_concatenation] = STATE(1633), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3705), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3705), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3707), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3709), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3705), - [sym_regex] = ACTIONS(3711), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1624] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3709), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1625] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1633), - [sym_concatenation] = STATE(1633), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3705), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3705), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3707), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3713), - [anon_sym_RBRACE] = ACTIONS(3709), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3705), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1626] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1637), - [sym_concatenation] = STATE(1637), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3715), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3715), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3715), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3717), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_EQ] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3715), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1627] = { - [sym_command_substitution] = STATE(1638), - [aux_sym__literal_repeat1] = STATE(1639), - [sym_string] = STATE(1638), - [sym_process_substitution] = STATE(1638), - [sym_simple_expansion] = STATE(1638), - [sym_string_expansion] = STATE(1638), - [sym_concatenation] = STATE(1640), - [sym_expansion] = STATE(1638), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3723), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(3709), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(3725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(3725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(3723), - [sym__special_character] = ACTIONS(949), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1630), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3672), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3674), }, [1628] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1642), - [sym_concatenation] = STATE(1642), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3727), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3727), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3727), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3729), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(3727), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3727), - [sym_regex] = ACTIONS(3733), + [sym_string] = STATE(707), + [anon_sym_POUND] = ACTIONS(3676), + [anon_sym_0] = ACTIONS(2662), + [anon_sym_QMARK] = ACTIONS(3678), + [aux_sym__simple_variable_name_token1] = ACTIONS(2662), + [anon_sym__] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(2651), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3676), + [sym_raw_string] = ACTIONS(3680), + [anon_sym_DOLLAR] = ACTIONS(3676), + [anon_sym_AT] = ACTIONS(3678), }, [1629] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1630] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(1643), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(1643), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(3735), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3684), }, [1631] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3737), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1632] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1644), - [sym_concatenation] = STATE(1644), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3739), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3739), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3739), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3739), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3741), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym_EQ] = ACTIONS(3739), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3739), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(3688), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [1633] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(3688), + [sym_comment] = ACTIONS(53), }, [1634] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1644), - [sym_concatenation] = STATE(1644), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3739), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3739), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3739), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3739), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3741), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym_EQ] = ACTIONS(3739), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3739), - [sym_regex] = ACTIONS(3745), + [anon_sym_RPAREN] = ACTIONS(3690), + [sym_comment] = ACTIONS(53), }, [1635] = { - [sym_command_substitution] = STATE(1646), - [aux_sym__literal_repeat1] = STATE(1647), - [sym_string] = STATE(1646), - [sym_process_substitution] = STATE(1646), - [sym_simple_expansion] = STATE(1646), - [sym_string_expansion] = STATE(1646), - [sym_concatenation] = STATE(1648), - [sym_expansion] = STATE(1646), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3747), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(3749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(3749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(3747), - [sym__special_character] = ACTIONS(949), + [sym_expansion] = STATE(716), + [sym_string_expansion] = STATE(716), + [sym_simple_expansion] = STATE(716), + [sym_string] = STATE(716), + [sym_command_substitution] = STATE(716), + [sym_process_substitution] = STATE(716), + [sym_arithmetic_expansion] = STATE(716), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(2643), + [sym_number] = ACTIONS(2645), + [sym__special_character] = ACTIONS(2647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2653), + [anon_sym_BQUOTE] = ACTIONS(2655), + [sym_raw_string] = ACTIONS(2647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), + [sym_word] = ACTIONS(2645), + [anon_sym_LT_LPAREN] = ACTIONS(2643), + [anon_sym_DOLLAR] = ACTIONS(175), + [sym_ansii_c_string] = ACTIONS(2647), }, [1636] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1650), - [sym_concatenation] = STATE(1650), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3751), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3751), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3751), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3753), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_EQ] = ACTIONS(3751), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3751), - [sym_regex] = ACTIONS(3757), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1642), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1642), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3692), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3692), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3692), + [anon_sym_POUND] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3692), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3692), + [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1637] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3755), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1647), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1647), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3700), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3700), + [anon_sym_POUND] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3700), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3706), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1638] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3743), - [sym__concat] = ACTIONS(1298), + [sym_concatenation] = STATE(722), + [sym_string] = STATE(721), + [sym_command_substitution] = STATE(721), + [sym_process_substitution] = STATE(721), + [sym_arithmetic_expansion] = STATE(721), + [sym_string_expansion] = STATE(721), + [sym_expansion] = STATE(721), + [aux_sym__literal_repeat1] = STATE(723), + [sym_array] = STATE(722), + [sym_simple_expansion] = STATE(721), + [anon_sym_LPAREN] = ACTIONS(3708), + [anon_sym_GT_LPAREN] = ACTIONS(2747), + [sym_number] = ACTIONS(3710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2753), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2755), + [sym_word] = ACTIONS(3710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), + [anon_sym_LT_LPAREN] = ACTIONS(2747), + [sym_ansii_c_string] = ACTIONS(3712), + [sym__special_character] = ACTIONS(3714), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2759), + [sym_raw_string] = ACTIONS(3712), + [anon_sym_DOLLAR] = ACTIONS(2055), + [sym__empty_value] = ACTIONS(3716), }, [1639] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(3759), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(3718), + [sym_comment] = ACTIONS(53), }, [1640] = { - [anon_sym_RBRACE] = ACTIONS(3743), - [sym_comment] = ACTIONS(41), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(3720), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1641] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1651), - [sym_concatenation] = STATE(1651), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3761), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3761), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3761), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3761), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3763), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3765), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3761), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1650), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1650), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3722), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3722), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_POUND] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3722), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3722), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3728), }, [1642] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3765), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1643] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(281), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(281), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(3767), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1650), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1650), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3722), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3722), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_POUND] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3722), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3722), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3730), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1644] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1654), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1654), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3732), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3732), + [anon_sym_POUND] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3732), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3732), + [anon_sym_RBRACE] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3732), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3738), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1645] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1652), - [sym_concatenation] = STATE(1652), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3771), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3771), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3771), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3773), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3769), - [anon_sym_EQ] = ACTIONS(3771), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3771), + [sym_expansion] = STATE(1655), + [sym_concatenation] = STATE(1656), + [sym_string] = STATE(1655), + [sym_command_substitution] = STATE(1655), + [sym_process_substitution] = STATE(1655), + [aux_sym__literal_repeat1] = STATE(1657), + [sym_simple_expansion] = STATE(1655), + [sym_arithmetic_expansion] = STATE(1655), + [sym_string_expansion] = STATE(1655), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3726), + [sym_word] = ACTIONS(3740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(3742), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1646] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3769), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1659), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3744), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3744), + [anon_sym_POUND] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3744), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3744), + [anon_sym_RBRACE] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3744), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3750), }, [1647] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(3775), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1648] = { - [anon_sym_RBRACE] = ACTIONS(3769), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1660), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym_for_statement_repeat1] = STATE(1660), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [sym_simple_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(3752), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1649] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1653), - [sym_concatenation] = STATE(1653), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3777), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3777), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3777), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3779), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3781), - [anon_sym_EQ] = ACTIONS(3777), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3777), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1661), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1661), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3754), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3754), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3754), + [anon_sym_POUND] = ACTIONS(3756), + [anon_sym_DASH] = ACTIONS(3754), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3754), + [anon_sym_RBRACE] = ACTIONS(3758), + [anon_sym_PERCENT] = ACTIONS(3754), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1650] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3781), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3758), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1651] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3783), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1661), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1661), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3754), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3754), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3754), + [anon_sym_POUND] = ACTIONS(3756), + [anon_sym_DASH] = ACTIONS(3754), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3754), + [anon_sym_RBRACE] = ACTIONS(3758), + [anon_sym_PERCENT] = ACTIONS(3754), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3760), }, [1652] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3785), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(1663), + [sym_concatenation] = STATE(1664), + [sym_string] = STATE(1663), + [sym_command_substitution] = STATE(1663), + [sym_process_substitution] = STATE(1663), + [aux_sym__literal_repeat1] = STATE(1665), + [sym_simple_expansion] = STATE(1663), + [sym_arithmetic_expansion] = STATE(1663), + [sym_string_expansion] = STATE(1663), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(3762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3758), + [sym_word] = ACTIONS(3762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(3764), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1653] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3787), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1667), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1667), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3766), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3766), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_POUND] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3766), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_RBRACE] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3766), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3772), }, [1654] = { - [sym_string] = STATE(775), - [anon_sym__] = ACTIONS(2598), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2600), - [sym_raw_string] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_DOLLAR] = ACTIONS(2600), - [anon_sym_AT] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_0] = ACTIONS(2598), - [anon_sym_STAR] = ACTIONS(2604), - [aux_sym__simple_variable_name_token1] = ACTIONS(2598), - [anon_sym_QMARK] = ACTIONS(2604), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1655] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1663), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3789), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3791), - [anon_sym_BQUOTE] = ACTIONS(273), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3758), + [sym__concat] = ACTIONS(1422), }, [1656] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3793), + [anon_sym_RBRACE] = ACTIONS(3758), + [sym_comment] = ACTIONS(53), }, [1657] = { - [anon_sym_RPAREN] = ACTIONS(3795), - [sym_comment] = ACTIONS(41), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(3774), }, [1658] = { - [sym_command_substitution] = STATE(782), - [sym_string] = STATE(782), - [sym_process_substitution] = STATE(782), - [sym_simple_expansion] = STATE(782), - [sym_string_expansion] = STATE(782), - [sym_expansion] = STATE(782), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(239), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(2589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(2589), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(2585), - [sym__special_character] = ACTIONS(2585), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1668), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1668), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3776), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3776), + [anon_sym_POUND] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3776), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3776), + [anon_sym_RBRACE] = ACTIONS(3780), + [anon_sym_PERCENT] = ACTIONS(3776), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1659] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1667), - [sym_concatenation] = STATE(1667), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3797), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3797), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3797), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3797), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3799), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3801), - [anon_sym_RBRACE] = ACTIONS(3803), - [anon_sym_EQ] = ACTIONS(3797), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3797), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3780), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1660] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1672), - [sym_concatenation] = STATE(1672), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3805), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3805), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3805), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3805), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3807), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3809), - [anon_sym_RBRACE] = ACTIONS(3811), - [anon_sym_EQ] = ACTIONS(3805), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3805), + [sym_concatenation] = STATE(284), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym_for_statement_repeat1] = STATE(284), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [sym_expansion] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [sym_simple_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(3782), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1661] = { - [sym_command_substitution] = STATE(788), - [aux_sym__literal_repeat1] = STATE(789), - [sym_string] = STATE(788), - [sym_array] = STATE(787), - [sym_process_substitution] = STATE(788), - [sym_simple_expansion] = STATE(788), - [sym_string_expansion] = STATE(788), - [sym_concatenation] = STATE(787), - [sym_expansion] = STATE(788), - [anon_sym_LPAREN] = ACTIONS(3813), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3815), - [anon_sym_DOLLAR] = ACTIONS(3817), - [anon_sym_BQUOTE] = ACTIONS(2989), - [anon_sym_GT_LPAREN] = ACTIONS(2987), - [sym_number] = ACTIONS(3819), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym_word] = ACTIONS(3819), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2983), - [anon_sym_LT_LPAREN] = ACTIONS(2987), - [sym_ansii_c_string] = ACTIONS(3815), - [sym__special_character] = ACTIONS(3821), - [sym__empty_value] = ACTIONS(3823), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3784), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1662] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3825), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1669), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1669), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3786), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3786), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_POUND] = ACTIONS(3788), + [anon_sym_DASH] = ACTIONS(3786), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_RBRACE] = ACTIONS(3784), + [anon_sym_PERCENT] = ACTIONS(3786), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1663] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3825), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3827), - [anon_sym_BQUOTE] = ACTIONS(273), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3784), + [sym__concat] = ACTIONS(1422), }, [1664] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3784), + [sym_comment] = ACTIONS(53), }, [1665] = { - [anon_sym_RPAREN] = ACTIONS(3829), - [sym_comment] = ACTIONS(41), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(3790), }, [1666] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1676), - [sym_concatenation] = STATE(1676), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3831), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3831), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3831), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3833), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3835), - [anon_sym_EQ] = ACTIONS(3831), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3831), - [sym_regex] = ACTIONS(3837), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1670), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1670), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3792), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3792), + [anon_sym_POUND] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3792), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3792), + [anon_sym_RBRACE] = ACTIONS(3796), + [anon_sym_PERCENT] = ACTIONS(3792), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1667] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3835), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3796), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1668] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1676), - [sym_concatenation] = STATE(1676), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3831), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3831), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3831), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3833), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3839), - [anon_sym_RBRACE] = ACTIONS(3835), - [anon_sym_EQ] = ACTIONS(3831), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3831), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1669] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1680), - [sym_concatenation] = STATE(1680), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3841), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3841), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3841), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3843), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3845), - [anon_sym_RBRACE] = ACTIONS(3847), - [anon_sym_EQ] = ACTIONS(3841), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3841), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3800), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1670] = { - [sym_command_substitution] = STATE(1681), - [aux_sym__literal_repeat1] = STATE(1682), - [sym_string] = STATE(1681), - [sym_process_substitution] = STATE(1681), - [sym_simple_expansion] = STATE(1681), - [sym_string_expansion] = STATE(1681), - [sym_concatenation] = STATE(1683), - [sym_expansion] = STATE(1681), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3849), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(3835), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(3851), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(3851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(3849), - [sym__special_character] = ACTIONS(949), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1671] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1685), - [sym_concatenation] = STATE(1685), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3853), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3853), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3853), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3855), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3857), - [anon_sym_EQ] = ACTIONS(3853), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3853), - [sym_regex] = ACTIONS(3859), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1674), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3806), }, [1672] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3857), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_string] = STATE(747), + [anon_sym_0] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_STAR] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_POUND] = ACTIONS(2686), + [anon_sym_QMARK] = ACTIONS(2688), + [aux_sym__simple_variable_name_token1] = ACTIONS(2682), + [anon_sym__] = ACTIONS(2682), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(2690), + [anon_sym_DOLLAR] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2688), }, [1673] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(1686), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(1686), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(3861), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(3808), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1674] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3863), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3808), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3810), }, [1675] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1687), - [sym_concatenation] = STATE(1687), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3865), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3865), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3865), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3867), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(3865), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3865), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3812), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1676] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(3814), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [1677] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1687), - [sym_concatenation] = STATE(1687), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3865), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3865), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3865), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3867), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(3865), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3865), - [sym_regex] = ACTIONS(3871), + [anon_sym_RPAREN] = ACTIONS(3814), + [sym_comment] = ACTIONS(53), }, [1678] = { - [sym_command_substitution] = STATE(1689), - [aux_sym__literal_repeat1] = STATE(1690), - [sym_string] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [sym_simple_expansion] = STATE(1689), - [sym_string_expansion] = STATE(1689), - [sym_concatenation] = STATE(1691), - [sym_expansion] = STATE(1689), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3873), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(3869), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(3875), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(3875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(3873), - [sym__special_character] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(3816), + [sym_comment] = ACTIONS(53), }, [1679] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1693), - [sym_concatenation] = STATE(1693), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3877), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3877), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3877), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3879), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3881), - [anon_sym_EQ] = ACTIONS(3877), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3877), - [sym_regex] = ACTIONS(3883), + [sym_expansion] = STATE(754), + [sym_string] = STATE(754), + [sym_command_substitution] = STATE(754), + [sym_process_substitution] = STATE(754), + [sym_simple_expansion] = STATE(754), + [sym_arithmetic_expansion] = STATE(754), + [sym_string_expansion] = STATE(754), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(2673), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(2673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(2675), + [sym__special_character] = ACTIONS(2675), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(2675), + [anon_sym_DOLLAR] = ACTIONS(221), }, [1680] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3881), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1686), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1686), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3818), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3818), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_POUND] = ACTIONS(3820), + [anon_sym_DASH] = ACTIONS(3818), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_RBRACE] = ACTIONS(3822), + [anon_sym_PERCENT] = ACTIONS(3818), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3824), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1681] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3869), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1691), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1691), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3826), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3826), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3826), + [anon_sym_POUND] = ACTIONS(3828), + [anon_sym_DASH] = ACTIONS(3826), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3826), + [anon_sym_RBRACE] = ACTIONS(3830), + [anon_sym_PERCENT] = ACTIONS(3826), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3832), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1682] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(3885), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_expansion] = STATE(759), + [sym_concatenation] = STATE(760), + [sym_string] = STATE(759), + [sym_command_substitution] = STATE(759), + [sym_process_substitution] = STATE(759), + [aux_sym__literal_repeat1] = STATE(761), + [sym_array] = STATE(760), + [sym_simple_expansion] = STATE(759), + [sym_arithmetic_expansion] = STATE(759), + [sym_string_expansion] = STATE(759), + [anon_sym_LPAREN] = ACTIONS(3834), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_number] = ACTIONS(3836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), + [sym_word] = ACTIONS(3836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [sym_ansii_c_string] = ACTIONS(3838), + [sym__special_character] = ACTIONS(3840), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(259), + [sym_raw_string] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(261), + [sym__empty_value] = ACTIONS(3842), }, [1683] = { - [anon_sym_RBRACE] = ACTIONS(3869), - [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(3844), + [sym_comment] = ACTIONS(53), }, [1684] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1694), - [sym_concatenation] = STATE(1694), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3887), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3887), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3887), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3887), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3889), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3891), - [anon_sym_EQ] = ACTIONS(3887), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3887), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(3846), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1685] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3891), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1694), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1694), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3848), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3848), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3848), + [anon_sym_POUND] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3848), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3848), + [anon_sym_RBRACE] = ACTIONS(3852), + [anon_sym_PERCENT] = ACTIONS(3848), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3854), }, [1686] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(281), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(281), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(3893), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3852), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1687] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3895), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1694), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1694), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3848), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3848), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3848), + [anon_sym_POUND] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3848), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3848), + [anon_sym_RBRACE] = ACTIONS(3852), + [anon_sym_PERCENT] = ACTIONS(3848), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3856), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1688] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1695), - [sym_concatenation] = STATE(1695), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3897), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3897), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3897), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3899), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3895), - [anon_sym_EQ] = ACTIONS(3897), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3897), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1698), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1698), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3858), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3858), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3858), + [anon_sym_POUND] = ACTIONS(3860), + [anon_sym_DASH] = ACTIONS(3858), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3858), + [anon_sym_RBRACE] = ACTIONS(3862), + [anon_sym_PERCENT] = ACTIONS(3858), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3864), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1689] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3895), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(1699), + [sym_concatenation] = STATE(1700), + [sym_string] = STATE(1699), + [sym_command_substitution] = STATE(1699), + [sym_process_substitution] = STATE(1699), + [aux_sym__literal_repeat1] = STATE(1701), + [sym_simple_expansion] = STATE(1699), + [sym_arithmetic_expansion] = STATE(1699), + [sym_string_expansion] = STATE(1699), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(3866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3852), + [sym_word] = ACTIONS(3866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(3868), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(3868), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1690] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(3901), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1703), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1703), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3870), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3870), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3870), + [anon_sym_POUND] = ACTIONS(3872), + [anon_sym_DASH] = ACTIONS(3870), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3870), + [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_PERCENT] = ACTIONS(3870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3876), }, [1691] = { - [anon_sym_RBRACE] = ACTIONS(3895), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1692] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1696), - [sym_concatenation] = STATE(1696), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3903), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(3903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(3903), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3905), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3907), - [anon_sym_EQ] = ACTIONS(3903), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3903), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(1704), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(1704), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(3878), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1693] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3907), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1705), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1705), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3880), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3880), + [anon_sym_POUND] = ACTIONS(3882), + [anon_sym_DASH] = ACTIONS(3880), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1694] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3909), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1695] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3911), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1705), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1705), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3880), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3880), + [anon_sym_POUND] = ACTIONS(3882), + [anon_sym_DASH] = ACTIONS(3880), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3880), + [anon_sym_RBRACE] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3886), }, [1696] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(1707), + [sym_concatenation] = STATE(1708), + [sym_string] = STATE(1707), + [sym_command_substitution] = STATE(1707), + [sym_process_substitution] = STATE(1707), + [aux_sym__literal_repeat1] = STATE(1709), + [sym_simple_expansion] = STATE(1707), + [sym_arithmetic_expansion] = STATE(1707), + [sym_string_expansion] = STATE(1707), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(3888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3884), + [sym_word] = ACTIONS(3888), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(3890), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1697] = { - [sym_string] = STATE(812), - [anon_sym__] = ACTIONS(2618), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(2620), - [sym_raw_string] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2620), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(301), - [anon_sym_0] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2624), - [aux_sym__simple_variable_name_token1] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2624), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1711), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1711), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3892), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3892), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3892), + [anon_sym_POUND] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3892), + [anon_sym_RBRACE] = ACTIONS(3896), + [anon_sym_PERCENT] = ACTIONS(3892), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(3898), }, [1698] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1706), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3915), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3917), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3896), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1699] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(3919), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3884), + [sym__concat] = ACTIONS(1422), }, [1700] = { - [anon_sym_RPAREN] = ACTIONS(3921), - [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3884), + [sym_comment] = ACTIONS(53), }, [1701] = { - [sym_command_substitution] = STATE(819), - [sym_string] = STATE(819), - [sym_process_substitution] = STATE(819), - [sym_simple_expansion] = STATE(819), - [sym_string_expansion] = STATE(819), - [sym_expansion] = STATE(819), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(289), - [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym_number] = ACTIONS(1388), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_word] = ACTIONS(1388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(1386), - [sym__special_character] = ACTIONS(1386), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(3900), }, [1702] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1710), - [sym_concatenation] = STATE(1710), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3923), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3925), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3927), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3923), - [anon_sym_EQ] = ACTIONS(3923), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3923), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3929), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3923), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1712), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1712), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3902), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3902), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3902), + [anon_sym_POUND] = ACTIONS(3904), + [anon_sym_DASH] = ACTIONS(3902), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3902), + [anon_sym_RBRACE] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3902), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1703] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1715), - [sym_concatenation] = STATE(1715), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3931), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3933), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3935), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3931), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3931), - [anon_sym_EQ] = ACTIONS(3931), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3931), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3937), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3931), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1704] = { - [sym_command_substitution] = STATE(825), - [aux_sym__literal_repeat1] = STATE(826), - [sym_string] = STATE(825), - [sym_array] = STATE(824), - [sym_process_substitution] = STATE(825), - [sym_simple_expansion] = STATE(825), - [sym_string_expansion] = STATE(825), - [sym_concatenation] = STATE(824), - [sym_expansion] = STATE(825), - [anon_sym_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(2432), - [anon_sym_BQUOTE] = ACTIONS(2935), - [anon_sym_GT_LPAREN] = ACTIONS(2933), - [sym_number] = ACTIONS(3943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_word] = ACTIONS(3943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2929), - [anon_sym_LT_LPAREN] = ACTIONS(2933), - [sym_ansii_c_string] = ACTIONS(3941), - [sym__special_character] = ACTIONS(3945), - [sym__empty_value] = ACTIONS(3947), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(284), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(284), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(3908), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1705] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3949), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1706] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(3949), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(3951), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1713), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1713), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3912), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3912), + [anon_sym_POUND] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3912), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3912), + [anon_sym_RBRACE] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1707] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3910), + [sym__concat] = ACTIONS(1422), }, [1708] = { - [anon_sym_RPAREN] = ACTIONS(3953), - [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(3910), + [sym_comment] = ACTIONS(53), }, [1709] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1719), - [sym_concatenation] = STATE(1719), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3955), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_COLON_DASH] = ACTIONS(3955), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3955), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3955), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3955), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3961), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(3916), }, [1710] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1714), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1714), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(3918), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(3918), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3918), + [anon_sym_POUND] = ACTIONS(3920), + [anon_sym_DASH] = ACTIONS(3918), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(3918), + [anon_sym_RBRACE] = ACTIONS(3922), + [anon_sym_PERCENT] = ACTIONS(3918), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1711] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1719), - [sym_concatenation] = STATE(1719), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3955), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3955), - [anon_sym_EQ] = ACTIONS(3955), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3959), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3955), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3922), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1712] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1723), - [sym_concatenation] = STATE(1723), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3965), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3967), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(3965), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(3965), - [anon_sym_EQ] = ACTIONS(3965), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(3965), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(3971), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3965), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3924), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1713] = { - [sym_command_substitution] = STATE(1724), - [aux_sym__literal_repeat1] = STATE(1725), - [sym_string] = STATE(1724), - [sym_process_substitution] = STATE(1724), - [sym_simple_expansion] = STATE(1724), - [sym_string_expansion] = STATE(1724), - [sym_concatenation] = STATE(1726), - [sym_expansion] = STATE(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3973), - [sym_word] = ACTIONS(3975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3973), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(3959), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(3975), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3926), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1714] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1728), - [sym_concatenation] = STATE(1728), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3977), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3979), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3981), - [anon_sym_DASH] = ACTIONS(3977), - [anon_sym_COLON_DASH] = ACTIONS(3977), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3977), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3977), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3977), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3983), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(3928), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1715] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3981), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1718), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3930), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3932), }, [1716] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(1729), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(1729), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(3985), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_string] = STATE(785), + [anon_sym_0] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_POUND] = ACTIONS(3934), + [anon_sym_QMARK] = ACTIONS(3936), + [aux_sym__simple_variable_name_token1] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3934), + [anon_sym_AT] = ACTIONS(3936), }, [1717] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(3987), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(3940), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1718] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1730), - [sym_concatenation] = STATE(1730), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3991), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3989), - [anon_sym_COLON_DASH] = ACTIONS(3989), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3989), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3989), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(3940), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(3942), }, [1719] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3944), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1720] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1730), - [sym_concatenation] = STATE(1730), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(3991), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_DASH] = ACTIONS(3989), - [anon_sym_COLON_DASH] = ACTIONS(3989), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(3989), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(3989), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(3995), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(3946), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), }, [1721] = { - [sym_command_substitution] = STATE(1732), - [aux_sym__literal_repeat1] = STATE(1733), - [sym_string] = STATE(1732), - [sym_process_substitution] = STATE(1732), - [sym_simple_expansion] = STATE(1732), - [sym_string_expansion] = STATE(1732), - [sym_concatenation] = STATE(1734), - [sym_expansion] = STATE(1732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3997), - [sym_word] = ACTIONS(3999), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(3997), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(3993), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(3999), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(3946), + [sym_comment] = ACTIONS(53), }, [1722] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1736), - [sym_concatenation] = STATE(1736), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4001), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4003), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4001), - [anon_sym_COLON_DASH] = ACTIONS(4001), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4001), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4001), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4001), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4007), + [anon_sym_RPAREN] = ACTIONS(3948), + [sym_comment] = ACTIONS(53), }, [1723] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(792), + [sym_string] = STATE(792), + [sym_command_substitution] = STATE(792), + [sym_process_substitution] = STATE(792), + [sym_simple_expansion] = STATE(792), + [sym_arithmetic_expansion] = STATE(792), + [sym_string_expansion] = STATE(792), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_number] = ACTIONS(2697), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), + [sym_word] = ACTIONS(2697), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [sym_ansii_c_string] = ACTIONS(2699), + [sym__special_character] = ACTIONS(2699), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(259), + [sym_raw_string] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(261), }, [1724] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(3993), - [sym__concat] = ACTIONS(1298), + [sym_concatenation] = STATE(1730), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1730), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3950), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3950), + [anon_sym_POUND] = ACTIONS(3952), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3950), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3954), + [anon_sym_EQ] = ACTIONS(3950), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3956), }, [1725] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(4009), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1735), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1735), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3958), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3958), + [anon_sym_POUND] = ACTIONS(3960), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3958), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3962), + [anon_sym_EQ] = ACTIONS(3958), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3964), }, [1726] = { - [anon_sym_RBRACE] = ACTIONS(3993), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(797), + [sym_concatenation] = STATE(798), + [sym_string] = STATE(797), + [sym_command_substitution] = STATE(797), + [sym_process_substitution] = STATE(797), + [aux_sym__literal_repeat1] = STATE(799), + [sym_array] = STATE(798), + [sym_simple_expansion] = STATE(797), + [sym_arithmetic_expansion] = STATE(797), + [sym_string_expansion] = STATE(797), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_GT_LPAREN] = ACTIONS(3113), + [sym_number] = ACTIONS(3968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3123), + [sym_word] = ACTIONS(3968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3127), + [anon_sym_LT_LPAREN] = ACTIONS(3113), + [sym_ansii_c_string] = ACTIONS(3970), + [sym__special_character] = ACTIONS(3972), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(3125), + [sym_raw_string] = ACTIONS(3970), + [anon_sym_DOLLAR] = ACTIONS(3974), + [sym__empty_value] = ACTIONS(3976), }, [1727] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1737), - [sym_concatenation] = STATE(1737), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4011), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4013), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_COLON_DASH] = ACTIONS(4011), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4011), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4011), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4011), - [sym__special_character] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(3978), + [sym_comment] = ACTIONS(53), }, [1728] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1729] = { - [sym_command_substitution] = STATE(222), - [aux_sym__literal_repeat1] = STATE(224), - [sym_string] = STATE(222), - [sym_process_substitution] = STATE(222), - [aux_sym_for_statement_repeat1] = STATE(281), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_concatenation] = STATE(281), - [sym_expansion] = STATE(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1017), - [sym_word] = ACTIONS(1019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [sym_ansii_c_string] = ACTIONS(1017), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(4017), - [sym__special_character] = ACTIONS(1031), - [sym_number] = ACTIONS(1019), - [anon_sym_GT_LPAREN] = ACTIONS(1025), + [sym_concatenation] = STATE(1738), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1738), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3982), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_POUND] = ACTIONS(3984), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3982), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3982), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3982), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(3988), }, [1730] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1731] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1738), [sym_concatenation] = STATE(1738), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4021), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4023), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4021), - [anon_sym_COLON_DASH] = ACTIONS(4021), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4021), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4021), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4021), - [sym__special_character] = ACTIONS(459), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1738), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3982), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3982), + [anon_sym_POUND] = ACTIONS(3984), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3982), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(3982), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3982), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3990), }, [1732] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4019), - [sym__concat] = ACTIONS(1298), + [sym_concatenation] = STATE(1742), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1742), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(3992), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(3992), + [anon_sym_POUND] = ACTIONS(3994), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(3992), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(3996), + [anon_sym_EQ] = ACTIONS(3992), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(3992), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(3998), }, [1733] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(4025), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(1743), + [sym_concatenation] = STATE(1744), + [sym_string] = STATE(1743), + [sym_command_substitution] = STATE(1743), + [sym_process_substitution] = STATE(1743), + [aux_sym__literal_repeat1] = STATE(1745), + [sym_simple_expansion] = STATE(1743), + [sym_arithmetic_expansion] = STATE(1743), + [sym_string_expansion] = STATE(1743), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(3986), + [sym_word] = ACTIONS(4000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4002), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1734] = { - [anon_sym_RBRACE] = ACTIONS(4019), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1747), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1747), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4004), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4004), + [anon_sym_POUND] = ACTIONS(4006), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4004), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4004), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4004), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4010), }, [1735] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1739), - [sym_concatenation] = STATE(1739), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4027), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4029), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4027), - [anon_sym_COLON_DASH] = ACTIONS(4027), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4027), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4027), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4027), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1736] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(1748), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(1748), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(4012), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1737] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1749), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4014), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4014), + [anon_sym_POUND] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4014), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(4014), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4014), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1738] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1739] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4037), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1749), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4014), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4014), + [anon_sym_POUND] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4014), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(4014), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4014), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4020), }, [1740] = { - [sym_string] = STATE(849), - [anon_sym__] = ACTIONS(2652), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4039), - [sym_raw_string] = ACTIONS(4041), - [anon_sym_BANG] = ACTIONS(4039), - [anon_sym_DOLLAR] = ACTIONS(4039), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4039), - [anon_sym_DQUOTE] = ACTIONS(2645), - [anon_sym_0] = ACTIONS(2652), - [anon_sym_STAR] = ACTIONS(4043), - [aux_sym__simple_variable_name_token1] = ACTIONS(2652), - [anon_sym_QMARK] = ACTIONS(4043), + [sym_expansion] = STATE(1751), + [sym_concatenation] = STATE(1752), + [sym_string] = STATE(1751), + [sym_command_substitution] = STATE(1751), + [sym_process_substitution] = STATE(1751), + [aux_sym__literal_repeat1] = STATE(1753), + [sym_simple_expansion] = STATE(1751), + [sym_arithmetic_expansion] = STATE(1751), + [sym_string_expansion] = STATE(1751), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4018), + [sym_word] = ACTIONS(4022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4024), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4024), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1741] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1748), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4045), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4047), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_concatenation] = STATE(1755), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1755), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4026), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4026), + [anon_sym_POUND] = ACTIONS(4028), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4026), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4026), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4032), }, [1742] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4049), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1743] = { - [anon_sym_RPAREN] = ACTIONS(4051), - [sym_comment] = ACTIONS(41), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(4018), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1744] = { - [sym_command_substitution] = STATE(856), - [sym_string] = STATE(856), - [sym_process_substitution] = STATE(856), - [sym_simple_expansion] = STATE(856), - [sym_string_expansion] = STATE(856), - [sym_expansion] = STATE(856), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2633), - [anon_sym_DOLLAR] = ACTIONS(1962), - [anon_sym_BQUOTE] = ACTIONS(2637), - [anon_sym_GT_LPAREN] = ACTIONS(2639), - [sym_number] = ACTIONS(2641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_word] = ACTIONS(2641), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2647), - [anon_sym_LT_LPAREN] = ACTIONS(2639), - [sym_ansii_c_string] = ACTIONS(2633), - [sym__special_character] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(4018), + [sym_comment] = ACTIONS(53), }, [1745] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1752), - [sym_concatenation] = STATE(1752), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4053), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4053), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4053), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4055), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4057), - [anon_sym_RBRACE] = ACTIONS(4059), - [anon_sym_EQ] = ACTIONS(4053), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4053), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4034), + [sym_comment] = ACTIONS(53), }, [1746] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1757), - [sym_concatenation] = STATE(1757), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4061), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4061), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4063), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4065), - [anon_sym_RBRACE] = ACTIONS(4067), - [anon_sym_EQ] = ACTIONS(4061), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4061), + [sym_concatenation] = STATE(1756), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1756), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4036), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4036), + [anon_sym_POUND] = ACTIONS(4038), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4036), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(4036), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4036), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1747] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4069), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1748] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4069), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4071), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(284), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(284), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(4042), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1749] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4073), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1750] = { - [anon_sym_RPAREN] = ACTIONS(4073), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1757), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1757), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4046), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4046), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4046), + [anon_sym_POUND] = ACTIONS(4048), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4046), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(4046), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4046), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1751] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1760), - [sym_concatenation] = STATE(1760), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4075), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4075), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4075), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4077), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4079), - [anon_sym_EQ] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4075), - [sym_regex] = ACTIONS(4081), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(4044), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1752] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4079), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(4044), + [sym_comment] = ACTIONS(53), }, [1753] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1760), - [sym_concatenation] = STATE(1760), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4075), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4075), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4075), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4077), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4083), - [anon_sym_RBRACE] = ACTIONS(4079), - [anon_sym_EQ] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4075), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4050), + [sym_comment] = ACTIONS(53), }, [1754] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1764), - [sym_concatenation] = STATE(1764), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4085), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4085), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4085), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4087), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4089), - [anon_sym_RBRACE] = ACTIONS(4091), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4085), + [sym_concatenation] = STATE(1758), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1758), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4052), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4052), + [anon_sym_POUND] = ACTIONS(4054), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4052), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4056), + [anon_sym_EQ] = ACTIONS(4052), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4052), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1755] = { - [sym_command_substitution] = STATE(1765), - [aux_sym__literal_repeat1] = STATE(1766), - [sym_string] = STATE(1765), - [sym_process_substitution] = STATE(1765), - [sym_simple_expansion] = STATE(1765), - [sym_string_expansion] = STATE(1765), - [sym_concatenation] = STATE(1767), - [sym_expansion] = STATE(1765), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4093), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(4079), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(4095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(4095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(4093), - [sym__special_character] = ACTIONS(949), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4056), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1756] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1769), - [sym_concatenation] = STATE(1769), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4097), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4097), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4097), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4097), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4099), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(4097), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4097), - [sym_regex] = ACTIONS(4103), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4058), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1757] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1758] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4105), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4062), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1759] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1770), - [sym_concatenation] = STATE(1770), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4107), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4107), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4109), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4111), - [anon_sym_EQ] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4107), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1762), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4066), }, [1760] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4111), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_string] = STATE(823), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_0] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2738), + [aux_sym__simple_variable_name_token1] = ACTIONS(2732), + [anon_sym__] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(309), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2736), + [sym_raw_string] = ACTIONS(2740), + [anon_sym_DOLLAR] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2738), }, [1761] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1770), - [sym_concatenation] = STATE(1770), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4107), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4107), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4107), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4109), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4111), - [anon_sym_EQ] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4107), - [sym_regex] = ACTIONS(4113), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1762] = { - [sym_command_substitution] = STATE(1772), - [aux_sym__literal_repeat1] = STATE(1773), - [sym_string] = STATE(1772), - [sym_process_substitution] = STATE(1772), - [sym_simple_expansion] = STATE(1772), - [sym_string_expansion] = STATE(1772), - [sym_concatenation] = STATE(1774), - [sym_expansion] = STATE(1772), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4115), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(4111), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(4117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(4117), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(4115), - [sym__special_character] = ACTIONS(949), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4070), }, [1763] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1776), - [sym_concatenation] = STATE(1776), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4119), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4119), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4121), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4123), - [anon_sym_EQ] = ACTIONS(4119), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4119), - [sym_regex] = ACTIONS(4125), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1764] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4123), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), }, [1765] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4111), - [sym__concat] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), }, [1766] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(4127), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(4076), + [sym_comment] = ACTIONS(53), }, [1767] = { - [anon_sym_RBRACE] = ACTIONS(4111), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(830), + [sym_string_expansion] = STATE(830), + [sym_simple_expansion] = STATE(830), + [sym_string] = STATE(830), + [sym_command_substitution] = STATE(830), + [sym_process_substitution] = STATE(830), + [sym_arithmetic_expansion] = STATE(830), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_number] = ACTIONS(2723), + [sym__special_character] = ACTIONS(2725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), + [anon_sym_BQUOTE] = ACTIONS(319), + [sym_raw_string] = ACTIONS(2725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [sym_word] = ACTIONS(2723), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_ansii_c_string] = ACTIONS(2725), }, [1768] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1777), - [sym_concatenation] = STATE(1777), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4129), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4129), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4129), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4131), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4129), + [sym_concatenation] = STATE(1774), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1774), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4078), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4078), + [anon_sym_POUND] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4078), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4078), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4084), }, [1769] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(1779), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1779), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4086), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(4088), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4086), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_EQ] = ACTIONS(4086), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4086), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4092), }, [1770] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(835), + [sym_concatenation] = STATE(836), + [sym_string] = STATE(835), + [sym_command_substitution] = STATE(835), + [sym_process_substitution] = STATE(835), + [aux_sym__literal_repeat1] = STATE(837), + [sym_array] = STATE(836), + [sym_simple_expansion] = STATE(835), + [sym_arithmetic_expansion] = STATE(835), + [sym_string_expansion] = STATE(835), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_GT_LPAREN] = ACTIONS(3059), + [sym_number] = ACTIONS(4096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3069), + [sym_word] = ACTIONS(4096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2542), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [sym_ansii_c_string] = ACTIONS(4098), + [sym__special_character] = ACTIONS(4100), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(2550), + [sym__empty_value] = ACTIONS(4102), }, [1771] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1778), - [sym_concatenation] = STATE(1778), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4137), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4137), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4137), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4139), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_EQ] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4137), + [anon_sym_BQUOTE] = ACTIONS(4104), + [sym_comment] = ACTIONS(53), }, [1772] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4135), - [sym__concat] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1773] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(4141), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_concatenation] = STATE(1782), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1782), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4108), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4108), + [anon_sym_POUND] = ACTIONS(4110), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4108), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_EQ] = ACTIONS(4108), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4114), }, [1774] = { - [anon_sym_RBRACE] = ACTIONS(4135), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1775] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1779), - [sym_concatenation] = STATE(1779), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4143), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4143), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4143), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4145), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4147), - [anon_sym_EQ] = ACTIONS(4143), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4143), + [sym_concatenation] = STATE(1782), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1782), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4108), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4108), + [anon_sym_POUND] = ACTIONS(4110), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4108), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_EQ] = ACTIONS(4108), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4116), }, [1776] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4147), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(1786), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1786), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4118), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4118), + [anon_sym_POUND] = ACTIONS(4120), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4118), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_EQ] = ACTIONS(4118), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4124), }, [1777] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(1787), + [sym_concatenation] = STATE(1788), + [sym_string] = STATE(1787), + [sym_command_substitution] = STATE(1787), + [sym_process_substitution] = STATE(1787), + [aux_sym__literal_repeat1] = STATE(1789), + [sym_simple_expansion] = STATE(1787), + [sym_arithmetic_expansion] = STATE(1787), + [sym_string_expansion] = STATE(1787), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4112), + [sym_word] = ACTIONS(4126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4128), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4128), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1778] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4151), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(1791), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1791), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4130), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4130), + [anon_sym_POUND] = ACTIONS(4132), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4130), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4130), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4130), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4136), }, [1779] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4153), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1780] = { - [sym_string] = STATE(881), - [anon_sym__] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4155), - [sym_raw_string] = ACTIONS(4157), - [anon_sym_BANG] = ACTIONS(4155), - [anon_sym_DOLLAR] = ACTIONS(4155), - [anon_sym_AT] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(2675), - [anon_sym_0] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(4159), - [aux_sym__simple_variable_name_token1] = ACTIONS(2682), - [anon_sym_QMARK] = ACTIONS(4159), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(1792), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(1792), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(4138), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1781] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1788), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4161), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4163), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_concatenation] = STATE(1793), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1793), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4140), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4140), + [anon_sym_POUND] = ACTIONS(4142), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4140), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_EQ] = ACTIONS(4140), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4140), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1782] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4165), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1783] = { - [anon_sym_RPAREN] = ACTIONS(4167), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1793), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1793), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4140), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4140), + [anon_sym_POUND] = ACTIONS(4142), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4140), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_EQ] = ACTIONS(4140), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4140), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4146), }, [1784] = { - [sym_command_substitution] = STATE(888), - [sym_string] = STATE(888), - [sym_process_substitution] = STATE(888), - [sym_simple_expansion] = STATE(888), - [sym_string_expansion] = STATE(888), - [sym_expansion] = STATE(888), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_BQUOTE] = ACTIONS(2667), - [anon_sym_GT_LPAREN] = ACTIONS(2669), - [sym_number] = ACTIONS(2671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2673), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_word] = ACTIONS(2671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2677), - [anon_sym_LT_LPAREN] = ACTIONS(2669), - [sym_ansii_c_string] = ACTIONS(2663), - [sym__special_character] = ACTIONS(2663), + [sym_expansion] = STATE(1795), + [sym_concatenation] = STATE(1796), + [sym_string] = STATE(1795), + [sym_command_substitution] = STATE(1795), + [sym_process_substitution] = STATE(1795), + [aux_sym__literal_repeat1] = STATE(1797), + [sym_simple_expansion] = STATE(1795), + [sym_arithmetic_expansion] = STATE(1795), + [sym_string_expansion] = STATE(1795), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4144), + [sym_word] = ACTIONS(4148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4150), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4150), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1785] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1792), - [sym_concatenation] = STATE(1792), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4169), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4169), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4169), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4171), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4173), - [anon_sym_RBRACE] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4169), + [sym_concatenation] = STATE(1799), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1799), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4152), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_POUND] = ACTIONS(4154), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4152), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4152), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4158), }, [1786] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1797), - [sym_concatenation] = STATE(1797), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4177), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4177), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4177), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4179), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_RBRACE] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(4177), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4177), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1787] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4185), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(4144), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1788] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4185), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4187), - [anon_sym_BQUOTE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(4144), + [sym_comment] = ACTIONS(53), }, [1789] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4160), + [sym_comment] = ACTIONS(53), }, [1790] = { - [anon_sym_RPAREN] = ACTIONS(4189), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1800), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1800), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4162), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4162), + [anon_sym_POUND] = ACTIONS(4164), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4162), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4162), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4162), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1791] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1800), - [sym_concatenation] = STATE(1800), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4191), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4191), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4191), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4193), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4195), - [anon_sym_EQ] = ACTIONS(4191), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4191), - [sym_regex] = ACTIONS(4197), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1792] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4195), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(228), + [sym_concatenation] = STATE(284), + [sym_string] = STATE(228), + [sym_command_substitution] = STATE(228), + [sym_process_substitution] = STATE(228), + [aux_sym__literal_repeat1] = STATE(229), + [aux_sym_for_statement_repeat1] = STATE(284), + [sym_simple_expansion] = STATE(228), + [sym_arithmetic_expansion] = STATE(228), + [sym_string_expansion] = STATE(228), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(4168), + [sym_word] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(1112), + [sym__special_character] = ACTIONS(1114), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [1793] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1800), - [sym_concatenation] = STATE(1800), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4191), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4191), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4191), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4193), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4199), - [anon_sym_RBRACE] = ACTIONS(4195), - [anon_sym_EQ] = ACTIONS(4191), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4191), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1794] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1804), - [sym_concatenation] = STATE(1804), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4201), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4201), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4201), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4203), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4205), - [anon_sym_RBRACE] = ACTIONS(4207), - [anon_sym_EQ] = ACTIONS(4201), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4201), + [sym_concatenation] = STATE(1801), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1801), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4172), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4172), + [anon_sym_POUND] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4172), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(4172), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1795] = { - [sym_command_substitution] = STATE(1805), - [aux_sym__literal_repeat1] = STATE(1806), - [sym_string] = STATE(1805), - [sym_process_substitution] = STATE(1805), - [sym_simple_expansion] = STATE(1805), - [sym_string_expansion] = STATE(1805), - [sym_concatenation] = STATE(1807), - [sym_expansion] = STATE(1805), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4209), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(4195), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(4211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(4211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(4209), - [sym__special_character] = ACTIONS(949), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(4170), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1796] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1809), - [sym_concatenation] = STATE(1809), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4213), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4213), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4213), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4215), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4213), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4213), - [sym_regex] = ACTIONS(4219), + [anon_sym_RBRACE] = ACTIONS(4170), + [sym_comment] = ACTIONS(53), }, [1797] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4176), + [sym_comment] = ACTIONS(53), }, [1798] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4221), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_concatenation] = STATE(1802), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1802), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4178), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4178), + [anon_sym_POUND] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4178), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4178), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4178), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1799] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1810), - [sym_concatenation] = STATE(1810), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4223), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4223), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4225), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_EQ] = ACTIONS(4223), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4223), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1800] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1801] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1810), - [sym_concatenation] = STATE(1810), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4223), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4223), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4225), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_EQ] = ACTIONS(4223), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4223), - [sym_regex] = ACTIONS(4229), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1802] = { - [sym_command_substitution] = STATE(1812), - [aux_sym__literal_repeat1] = STATE(1813), - [sym_string] = STATE(1812), - [sym_process_substitution] = STATE(1812), - [sym_simple_expansion] = STATE(1812), - [sym_string_expansion] = STATE(1812), - [sym_concatenation] = STATE(1814), - [sym_expansion] = STATE(1812), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4231), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(4233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(4233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(4231), - [sym__special_character] = ACTIONS(949), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1803] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1816), - [sym_concatenation] = STATE(1816), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4235), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4235), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4235), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4237), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_EQ] = ACTIONS(4235), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4235), - [sym_regex] = ACTIONS(4241), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1806), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4190), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4192), }, [1804] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4239), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_string] = STATE(861), + [anon_sym_0] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_DQUOTE] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_POUND] = ACTIONS(4194), + [anon_sym_QMARK] = ACTIONS(4196), + [aux_sym__simple_variable_name_token1] = ACTIONS(2766), + [anon_sym__] = ACTIONS(2766), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(4198), + [anon_sym_DOLLAR] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), }, [1805] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4227), - [sym__concat] = ACTIONS(1298), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1806] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(4243), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4200), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4202), }, [1807] = { - [anon_sym_RBRACE] = ACTIONS(4227), - [sym_comment] = ACTIONS(41), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1808] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1817), - [sym_concatenation] = STATE(1817), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4245), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4245), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4245), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4245), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4247), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4245), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4245), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(4206), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [1809] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(4206), + [sym_comment] = ACTIONS(53), }, [1810] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4251), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(4208), + [sym_comment] = ACTIONS(53), }, [1811] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1818), - [sym_concatenation] = STATE(1818), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4253), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4253), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4253), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4255), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4251), - [anon_sym_EQ] = ACTIONS(4253), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4253), + [sym_expansion] = STATE(868), + [sym_string] = STATE(868), + [sym_command_substitution] = STATE(868), + [sym_process_substitution] = STATE(868), + [sym_simple_expansion] = STATE(868), + [sym_arithmetic_expansion] = STATE(868), + [sym_string_expansion] = STATE(868), + [anon_sym_GT_LPAREN] = ACTIONS(2747), + [sym_number] = ACTIONS(2749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2753), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2755), + [sym_word] = ACTIONS(2749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), + [anon_sym_LT_LPAREN] = ACTIONS(2747), + [sym_ansii_c_string] = ACTIONS(2757), + [sym__special_character] = ACTIONS(2757), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2759), + [sym_raw_string] = ACTIONS(2757), + [anon_sym_DOLLAR] = ACTIONS(2055), }, [1812] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4251), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1817), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1817), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4210), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4212), + [anon_sym_DASH] = ACTIONS(4210), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4210), + [anon_sym_RBRACE] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4210), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4216), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1813] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(4257), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1822), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1822), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4218), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4218), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4218), + [anon_sym_POUND] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4218), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4218), + [anon_sym_RBRACE] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4218), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4224), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1814] = { - [anon_sym_RBRACE] = ACTIONS(4251), - [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(4226), + [sym_comment] = ACTIONS(53), }, [1815] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1819), - [sym_concatenation] = STATE(1819), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4259), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4259), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4261), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4259), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1816] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1824), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1824), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4230), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4230), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4230), + [anon_sym_POUND] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4230), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4230), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4236), }, [1817] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4265), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1818] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1824), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1824), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4230), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4230), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4230), + [anon_sym_POUND] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4230), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4230), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1819] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1828), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1828), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4240), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4240), + [anon_sym_POUND] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4240), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4240), + [anon_sym_RBRACE] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4246), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1820] = { - [sym_string] = STATE(913), - [anon_sym__] = ACTIONS(2702), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(4271), - [anon_sym_0] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(2704), - [aux_sym__simple_variable_name_token1] = ACTIONS(2702), - [anon_sym_DOLLAR] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(2704), - [sym_raw_string] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4271), + [sym_expansion] = STATE(1829), + [sym_concatenation] = STATE(1830), + [sym_string] = STATE(1829), + [sym_command_substitution] = STATE(1829), + [sym_process_substitution] = STATE(1829), + [aux_sym__literal_repeat1] = STATE(1831), + [sym_simple_expansion] = STATE(1829), + [sym_arithmetic_expansion] = STATE(1829), + [sym_string_expansion] = STATE(1829), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4234), + [sym_word] = ACTIONS(4248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4250), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4250), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1821] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1828), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1833), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1833), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4252), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4252), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4252), + [anon_sym_POUND] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4252), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4252), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_PERCENT] = ACTIONS(4252), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4258), }, [1822] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4277), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1823] = { - [anon_sym_RPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1834), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1834), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4260), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4260), + [anon_sym_POUND] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4260), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4260), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_PERCENT] = ACTIONS(4260), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1824] = { - [sym_command_substitution] = STATE(920), - [sym_simple_expansion] = STATE(920), - [sym_string_expansion] = STATE(920), - [sym_string] = STATE(920), - [sym_process_substitution] = STATE(920), - [sym_expansion] = STATE(920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2693), - [sym_word] = ACTIONS(2695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(2693), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym__special_character] = ACTIONS(2693), - [sym_number] = ACTIONS(2695), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1825] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1832), - [sym_concatenation] = STATE(1832), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4281), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4281), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4281), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4283), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4285), - [anon_sym_RBRACE] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4281), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1834), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1834), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4260), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4260), + [anon_sym_POUND] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4260), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4260), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_PERCENT] = ACTIONS(4260), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4266), }, [1826] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1837), + [sym_expansion] = STATE(1836), [sym_concatenation] = STATE(1837), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4289), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4289), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4291), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_EQ] = ACTIONS(4289), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4289), + [sym_string] = STATE(1836), + [sym_command_substitution] = STATE(1836), + [sym_process_substitution] = STATE(1836), + [aux_sym__literal_repeat1] = STATE(1838), + [sym_simple_expansion] = STATE(1836), + [sym_arithmetic_expansion] = STATE(1836), + [sym_string_expansion] = STATE(1836), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4264), + [sym_word] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4270), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4270), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1827] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1840), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1840), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4272), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4272), + [anon_sym_POUND] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4272), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4272), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_PERCENT] = ACTIONS(4272), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4278), }, [1828] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4299), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1829] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4264), + [sym__concat] = ACTIONS(1422), }, [1830] = { - [anon_sym_RPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(4264), + [sym_comment] = ACTIONS(53), }, [1831] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1840), - [sym_concatenation] = STATE(1840), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4303), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4303), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4305), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4307), - [anon_sym_EQ] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4303), - [sym_regex] = ACTIONS(4309), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4280), }, [1832] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4307), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1841), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1841), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4282), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4282), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4282), + [anon_sym_POUND] = ACTIONS(4284), + [anon_sym_DASH] = ACTIONS(4282), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(4282), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1833] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1840), - [sym_concatenation] = STATE(1840), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4303), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4303), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4305), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_RBRACE] = ACTIONS(4307), - [anon_sym_EQ] = ACTIONS(4303), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4303), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4286), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1834] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1844), - [sym_concatenation] = STATE(1844), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4313), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4313), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4313), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4315), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_EQ] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4313), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1835] = { - [sym_command_substitution] = STATE(1845), - [aux_sym__literal_repeat1] = STATE(1846), - [sym_string] = STATE(1845), - [sym_process_substitution] = STATE(1845), - [sym_simple_expansion] = STATE(1845), - [sym_string_expansion] = STATE(1845), - [sym_concatenation] = STATE(1847), - [sym_expansion] = STATE(1845), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4321), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(4307), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(4323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(4323), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(4321), - [sym__special_character] = ACTIONS(949), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1842), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1842), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4290), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4290), + [anon_sym_POUND] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4290), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_PERCENT] = ACTIONS(4290), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1836] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1849), - [sym_concatenation] = STATE(1849), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4325), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4325), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4327), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(4325), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4325), - [sym_regex] = ACTIONS(4331), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4288), + [sym__concat] = ACTIONS(1422), }, [1837] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(4288), + [sym_comment] = ACTIONS(53), }, [1838] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4333), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4294), }, [1839] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1850), - [sym_concatenation] = STATE(1850), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4335), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4335), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4337), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4335), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1843), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1843), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4296), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4296), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4296), + [anon_sym_POUND] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4296), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4300), + [anon_sym_PERCENT] = ACTIONS(4296), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1840] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4300), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1841] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1850), - [sym_concatenation] = STATE(1850), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4335), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4335), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4337), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4335), - [sym_regex] = ACTIONS(4341), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4302), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1842] = { - [sym_command_substitution] = STATE(1852), - [aux_sym__literal_repeat1] = STATE(1853), - [sym_string] = STATE(1852), - [sym_process_substitution] = STATE(1852), - [sym_simple_expansion] = STATE(1852), - [sym_string_expansion] = STATE(1852), - [sym_concatenation] = STATE(1854), - [sym_expansion] = STATE(1852), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4343), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(4339), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(4345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(4345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(4343), - [sym__special_character] = ACTIONS(949), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1843] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1856), - [sym_concatenation] = STATE(1856), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4347), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4347), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4349), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4347), - [sym_regex] = ACTIONS(4353), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4306), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1844] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1847), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4310), }, [1845] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4339), - [sym__concat] = ACTIONS(1298), + [sym_string] = STATE(894), + [anon_sym_0] = ACTIONS(2796), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_DQUOTE] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_POUND] = ACTIONS(4312), + [anon_sym_QMARK] = ACTIONS(4314), + [aux_sym__simple_variable_name_token1] = ACTIONS(2796), + [anon_sym__] = ACTIONS(2796), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(4316), + [anon_sym_DOLLAR] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4314), }, [1846] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(4355), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1847] = { - [anon_sym_RBRACE] = ACTIONS(4339), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4318), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4320), }, [1848] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1857), - [sym_concatenation] = STATE(1857), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4357), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4357), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4357), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4359), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4361), - [anon_sym_EQ] = ACTIONS(4357), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4357), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4322), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1849] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4361), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(4324), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), }, [1850] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(4324), + [sym_comment] = ACTIONS(53), }, [1851] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1858), - [sym_concatenation] = STATE(1858), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4365), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4365), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4365), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4367), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_EQ] = ACTIONS(4365), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4365), + [anon_sym_RPAREN] = ACTIONS(4326), + [sym_comment] = ACTIONS(53), }, [1852] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4363), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(901), + [sym_string] = STATE(901), + [sym_command_substitution] = STATE(901), + [sym_process_substitution] = STATE(901), + [sym_simple_expansion] = STATE(901), + [sym_arithmetic_expansion] = STATE(901), + [sym_string_expansion] = STATE(901), + [anon_sym_GT_LPAREN] = ACTIONS(2777), + [sym_number] = ACTIONS(2779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2781), + [anon_sym_DQUOTE] = ACTIONS(2783), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2785), + [sym_word] = ACTIONS(2779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), + [anon_sym_LT_LPAREN] = ACTIONS(2777), + [sym_ansii_c_string] = ACTIONS(2787), + [sym__special_character] = ACTIONS(2787), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2789), + [sym_raw_string] = ACTIONS(2787), + [anon_sym_DOLLAR] = ACTIONS(2077), }, [1853] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(4369), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_concatenation] = STATE(1858), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1858), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4328), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4328), + [anon_sym_POUND] = ACTIONS(4330), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4328), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4332), + [anon_sym_EQ] = ACTIONS(4328), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4328), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4334), }, [1854] = { - [anon_sym_RBRACE] = ACTIONS(4363), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1863), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1863), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4336), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4336), + [anon_sym_POUND] = ACTIONS(4338), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4336), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4340), + [anon_sym_EQ] = ACTIONS(4336), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4336), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4342), }, [1855] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1859), - [sym_concatenation] = STATE(1859), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4371), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4371), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4373), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_EQ] = ACTIONS(4371), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4371), + [anon_sym_BQUOTE] = ACTIONS(4344), + [sym_comment] = ACTIONS(53), }, [1856] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(4346), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1857] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(1865), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1865), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4348), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4348), + [anon_sym_POUND] = ACTIONS(4350), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4348), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4352), + [anon_sym_EQ] = ACTIONS(4348), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4348), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4354), }, [1858] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4352), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1859] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_concatenation] = STATE(1865), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1865), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4348), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4348), + [anon_sym_POUND] = ACTIONS(4350), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4348), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4352), + [anon_sym_EQ] = ACTIONS(4348), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4348), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4356), }, [1860] = { - [sym_string] = STATE(945), - [anon_sym__] = ACTIONS(2724), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_POUND] = ACTIONS(4383), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_0] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(4383), - [aux_sym__simple_variable_name_token1] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(4383), - [anon_sym_AT] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4383), - [sym_raw_string] = ACTIONS(4387), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4385), + [sym_concatenation] = STATE(1869), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1869), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4358), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4358), + [anon_sym_POUND] = ACTIONS(4360), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4358), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4358), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4358), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4364), }, [1861] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1868), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4389), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4391), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(1870), + [sym_concatenation] = STATE(1871), + [sym_string] = STATE(1870), + [sym_command_substitution] = STATE(1870), + [sym_process_substitution] = STATE(1870), + [aux_sym__literal_repeat1] = STATE(1872), + [sym_simple_expansion] = STATE(1870), + [sym_arithmetic_expansion] = STATE(1870), + [sym_string_expansion] = STATE(1870), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4352), + [sym_word] = ACTIONS(4366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4368), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4368), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1862] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4393), + [sym_concatenation] = STATE(1874), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1874), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4370), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4370), + [anon_sym_POUND] = ACTIONS(4372), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4370), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4374), + [anon_sym_EQ] = ACTIONS(4370), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4370), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4376), }, [1863] = { - [anon_sym_RPAREN] = ACTIONS(4395), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4374), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1864] = { - [sym_command_substitution] = STATE(952), - [sym_simple_expansion] = STATE(952), - [sym_string_expansion] = STATE(952), - [sym_string] = STATE(952), - [sym_process_substitution] = STATE(952), - [sym_expansion] = STATE(952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2715), - [sym_word] = ACTIONS(2717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(559), - [anon_sym_LT_LPAREN] = ACTIONS(563), - [sym_ansii_c_string] = ACTIONS(2715), - [anon_sym_BQUOTE] = ACTIONS(561), - [anon_sym_GT_LPAREN] = ACTIONS(563), - [sym__special_character] = ACTIONS(2715), - [sym_number] = ACTIONS(2717), + [sym_concatenation] = STATE(1875), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1875), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4378), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4378), + [anon_sym_POUND] = ACTIONS(4380), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4378), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4378), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4378), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1865] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1872), - [sym_concatenation] = STATE(1872), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4397), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4399), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4401), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4397), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4397), - [anon_sym_EQ] = ACTIONS(4397), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4397), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4403), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4397), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1866] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1877), - [sym_concatenation] = STATE(1877), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4405), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4407), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4409), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4405), - [anon_sym_EQ] = ACTIONS(4405), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4405), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4411), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4405), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1875), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1875), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4378), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4378), + [anon_sym_POUND] = ACTIONS(4380), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4378), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4378), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4378), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4384), }, [1867] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(1877), + [sym_concatenation] = STATE(1878), + [sym_string] = STATE(1877), + [sym_command_substitution] = STATE(1877), + [sym_process_substitution] = STATE(1877), + [aux_sym__literal_repeat1] = STATE(1879), + [sym_simple_expansion] = STATE(1877), + [sym_arithmetic_expansion] = STATE(1877), + [sym_string_expansion] = STATE(1877), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4386), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4382), + [sym_word] = ACTIONS(4386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4388), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4388), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1868] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_concatenation] = STATE(1881), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1881), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4390), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4390), + [anon_sym_POUND] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4390), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4390), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4390), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4396), }, [1869] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1870] = { - [anon_sym_RPAREN] = ACTIONS(4417), - [sym_comment] = ACTIONS(41), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(4382), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1871] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1880), - [sym_concatenation] = STATE(1880), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4419), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4421), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_COLON_DASH] = ACTIONS(4419), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4419), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4425), + [anon_sym_RBRACE] = ACTIONS(4382), + [sym_comment] = ACTIONS(53), }, [1872] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4398), + [sym_comment] = ACTIONS(53), }, [1873] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1880), - [sym_concatenation] = STATE(1880), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4419), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4421), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4423), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4419), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1882), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1882), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4400), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4400), + [anon_sym_POUND] = ACTIONS(4402), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4400), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_EQ] = ACTIONS(4400), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4400), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1874] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1884), - [sym_concatenation] = STATE(1884), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4429), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4431), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4429), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4429), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4404), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1875] = { - [sym_command_substitution] = STATE(1885), - [aux_sym__literal_repeat1] = STATE(1886), - [sym_string] = STATE(1885), - [sym_process_substitution] = STATE(1885), - [sym_simple_expansion] = STATE(1885), - [sym_string_expansion] = STATE(1885), - [sym_concatenation] = STATE(1887), - [sym_expansion] = STATE(1885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4437), - [sym_word] = ACTIONS(4439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4437), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(4423), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(4439), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4406), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1876] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1889), - [sym_concatenation] = STATE(1889), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4441), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4443), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_COLON_DASH] = ACTIONS(4441), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4441), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4441), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4441), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4447), + [sym_concatenation] = STATE(1883), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1883), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4408), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4408), + [anon_sym_POUND] = ACTIONS(4410), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4408), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4406), + [anon_sym_EQ] = ACTIONS(4408), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4408), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1877] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(4406), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1878] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4449), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(4406), + [sym_comment] = ACTIONS(53), }, [1879] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1890), - [sym_concatenation] = STATE(1890), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4451), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4453), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_COLON_DASH] = ACTIONS(4451), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4451), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4451), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4451), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4412), + [sym_comment] = ACTIONS(53), }, [1880] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1884), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1884), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4414), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4414), + [anon_sym_POUND] = ACTIONS(4416), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4414), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_EQ] = ACTIONS(4414), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4414), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1881] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1890), - [sym_concatenation] = STATE(1890), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4451), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4453), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_COLON_DASH] = ACTIONS(4451), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4451), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4451), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4451), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4457), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1882] = { - [sym_command_substitution] = STATE(1892), - [aux_sym__literal_repeat1] = STATE(1893), - [sym_string] = STATE(1892), - [sym_process_substitution] = STATE(1892), - [sym_simple_expansion] = STATE(1892), - [sym_string_expansion] = STATE(1892), - [sym_concatenation] = STATE(1894), - [sym_expansion] = STATE(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4459), - [sym_word] = ACTIONS(4461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4459), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(4455), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(4461), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1883] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1896), - [sym_concatenation] = STATE(1896), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4463), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4465), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_COLON_DASH] = ACTIONS(4463), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4463), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4463), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4463), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4469), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4422), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1884] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1885] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4455), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1888), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4428), }, [1886] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(4471), - [sym_comment] = ACTIONS(41), + [sym_string] = STATE(927), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_0] = ACTIONS(2816), + [anon_sym_QMARK] = ACTIONS(4430), + [aux_sym__simple_variable_name_token1] = ACTIONS(2816), + [anon_sym__] = ACTIONS(2816), + [anon_sym_BANG] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(2820), + [sym_raw_string] = ACTIONS(2822), + [anon_sym_DOLLAR] = ACTIONS(2820), + [anon_sym_AT] = ACTIONS(4430), }, [1887] = { - [anon_sym_RBRACE] = ACTIONS(4455), - [sym_comment] = ACTIONS(41), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1888] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1897), - [sym_concatenation] = STATE(1897), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4473), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4475), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(4473), - [anon_sym_COLON_DASH] = ACTIONS(4473), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4473), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4473), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4473), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4434), }, [1889] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4436), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1890] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(4438), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), }, [1891] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1898), - [sym_concatenation] = STATE(1898), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4481), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4483), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4481), - [anon_sym_COLON_DASH] = ACTIONS(4481), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4481), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4481), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(4438), + [sym_comment] = ACTIONS(53), }, [1892] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4479), - [sym__concat] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(4440), + [sym_comment] = ACTIONS(53), }, [1893] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(4485), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(934), + [sym_string_expansion] = STATE(934), + [sym_simple_expansion] = STATE(934), + [sym_string] = STATE(934), + [sym_command_substitution] = STATE(934), + [sym_process_substitution] = STATE(934), + [sym_arithmetic_expansion] = STATE(934), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(2807), + [sym__special_character] = ACTIONS(2809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(2809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [sym_word] = ACTIONS(2807), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_ansii_c_string] = ACTIONS(2809), }, [1894] = { - [anon_sym_RBRACE] = ACTIONS(4479), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1899), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1899), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4442), + [anon_sym_POUND] = ACTIONS(4444), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4442), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(4442), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4442), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4448), }, [1895] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1899), - [sym_concatenation] = STATE(1899), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4487), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4489), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4491), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_COLON_DASH] = ACTIONS(4487), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4487), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4487), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1904), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1904), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4450), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4450), + [anon_sym_POUND] = ACTIONS(4452), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4450), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_EQ] = ACTIONS(4450), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4450), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4456), }, [1896] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4491), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(4458), + [sym_comment] = ACTIONS(53), }, [1897] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4460), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1898] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1906), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1906), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4462), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4462), + [anon_sym_POUND] = ACTIONS(4464), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4462), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4462), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4462), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4468), }, [1899] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1900] = { - [sym_string] = STATE(977), - [anon_sym__] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(4499), - [anon_sym_STAR] = ACTIONS(4501), - [anon_sym_0] = ACTIONS(2760), - [anon_sym_BANG] = ACTIONS(4499), - [aux_sym__simple_variable_name_token1] = ACTIONS(2760), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_AT] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4499), - [sym_raw_string] = ACTIONS(4503), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4501), + [sym_concatenation] = STATE(1906), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1906), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4462), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4462), + [anon_sym_POUND] = ACTIONS(4464), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4462), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4462), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4462), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4470), }, [1901] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1908), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4507), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_concatenation] = STATE(1910), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1910), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4472), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4472), + [anon_sym_POUND] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4472), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4472), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4478), }, [1902] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4509), + [sym_expansion] = STATE(1911), + [sym_concatenation] = STATE(1912), + [sym_string] = STATE(1911), + [sym_command_substitution] = STATE(1911), + [sym_process_substitution] = STATE(1911), + [aux_sym__literal_repeat1] = STATE(1913), + [sym_simple_expansion] = STATE(1911), + [sym_arithmetic_expansion] = STATE(1911), + [sym_string_expansion] = STATE(1911), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4466), + [sym_word] = ACTIONS(4480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4482), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4482), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1903] = { - [anon_sym_RPAREN] = ACTIONS(4511), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(1915), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1915), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4484), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4484), + [anon_sym_POUND] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_EQ] = ACTIONS(4484), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4490), }, [1904] = { - [sym_command_substitution] = STATE(984), - [sym_simple_expansion] = STATE(984), - [sym_string_expansion] = STATE(984), - [sym_string] = STATE(984), - [sym_process_substitution] = STATE(984), - [sym_expansion] = STATE(984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2737), - [sym_word] = ACTIONS(2739), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2302), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_LT_LPAREN] = ACTIONS(2296), - [sym_ansii_c_string] = ACTIONS(2737), - [anon_sym_BQUOTE] = ACTIONS(2294), - [anon_sym_GT_LPAREN] = ACTIONS(2296), - [sym__special_character] = ACTIONS(2737), - [sym_number] = ACTIONS(2739), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4488), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1905] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1912), - [sym_concatenation] = STATE(1912), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4513), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4515), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4517), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4513), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4513), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4519), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4513), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1916), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1916), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4492), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4492), + [anon_sym_POUND] = ACTIONS(4494), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4492), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_EQ] = ACTIONS(4492), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4492), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1906] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1917), - [sym_concatenation] = STATE(1917), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4521), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4523), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4525), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4521), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4521), - [anon_sym_EQ] = ACTIONS(4521), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4521), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4527), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4521), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1907] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4529), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_concatenation] = STATE(1916), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1916), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4492), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4492), + [anon_sym_POUND] = ACTIONS(4494), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4492), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_EQ] = ACTIONS(4492), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4492), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4498), }, [1908] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(1918), + [sym_concatenation] = STATE(1919), + [sym_string] = STATE(1918), + [sym_command_substitution] = STATE(1918), + [sym_process_substitution] = STATE(1918), + [aux_sym__literal_repeat1] = STATE(1920), + [sym_simple_expansion] = STATE(1918), + [sym_arithmetic_expansion] = STATE(1918), + [sym_string_expansion] = STATE(1918), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4496), + [sym_word] = ACTIONS(4500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4502), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4502), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1909] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4533), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_concatenation] = STATE(1922), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1922), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4504), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4504), + [anon_sym_POUND] = ACTIONS(4506), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4504), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_EQ] = ACTIONS(4504), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4504), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(4510), }, [1910] = { - [anon_sym_RPAREN] = ACTIONS(4533), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1911] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1920), - [sym_concatenation] = STATE(1920), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4535), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4537), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_COLON_DASH] = ACTIONS(4535), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4535), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4535), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4535), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4541), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(4496), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1912] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(4496), + [sym_comment] = ACTIONS(53), }, [1913] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1920), - [sym_concatenation] = STATE(1920), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4535), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4537), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4543), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4535), - [anon_sym_EQ] = ACTIONS(4535), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4535), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4539), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4535), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(53), }, [1914] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1924), - [sym_concatenation] = STATE(1924), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4545), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4547), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4549), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4545), - [anon_sym_EQ] = ACTIONS(4545), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4545), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4551), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4545), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1923), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1923), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4514), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4514), + [anon_sym_POUND] = ACTIONS(4516), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4514), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4518), + [anon_sym_EQ] = ACTIONS(4514), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4514), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1915] = { - [sym_command_substitution] = STATE(1925), - [aux_sym__literal_repeat1] = STATE(1926), - [sym_string] = STATE(1925), - [sym_process_substitution] = STATE(1925), - [sym_simple_expansion] = STATE(1925), - [sym_string_expansion] = STATE(1925), - [sym_concatenation] = STATE(1927), - [sym_expansion] = STATE(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4553), - [sym_word] = ACTIONS(4555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4553), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(4539), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(4555), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4518), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1916] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4557), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4559), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4557), - [anon_sym_COLON_DASH] = ACTIONS(4557), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4557), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4557), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4557), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4563), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1917] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(1924), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1924), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4522), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4522), + [anon_sym_POUND] = ACTIONS(4524), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4522), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_EQ] = ACTIONS(4522), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4522), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1918] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4565), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(4520), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [1919] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1930), - [sym_concatenation] = STATE(1930), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4567), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4569), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4571), - [anon_sym_DASH] = ACTIONS(4567), - [anon_sym_COLON_DASH] = ACTIONS(4567), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4567), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4567), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(4520), + [sym_comment] = ACTIONS(53), }, [1920] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4571), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4526), + [sym_comment] = ACTIONS(53), }, [1921] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1930), - [sym_concatenation] = STATE(1930), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4567), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4569), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4571), - [anon_sym_DASH] = ACTIONS(4567), - [anon_sym_COLON_DASH] = ACTIONS(4567), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4567), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4567), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4573), + [sym_concatenation] = STATE(1925), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1925), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(4528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(4528), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4528), + [anon_sym_POUND] = ACTIONS(4530), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4528), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4532), + [anon_sym_EQ] = ACTIONS(4528), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(4528), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1922] = { - [sym_command_substitution] = STATE(1932), - [aux_sym__literal_repeat1] = STATE(1933), - [sym_string] = STATE(1932), - [sym_process_substitution] = STATE(1932), - [sym_simple_expansion] = STATE(1932), - [sym_string_expansion] = STATE(1932), - [sym_concatenation] = STATE(1934), - [sym_expansion] = STATE(1932), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4575), - [sym_word] = ACTIONS(4577), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4575), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(4571), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(4577), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4532), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1923] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1936), - [sym_concatenation] = STATE(1936), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4579), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4581), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4583), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_COLON_DASH] = ACTIONS(4579), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4579), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4579), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4579), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4585), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1924] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4583), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4536), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1925] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4571), - [sym__concat] = ACTIONS(1298), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [1926] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(4587), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1929), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4542), }, [1927] = { - [anon_sym_RBRACE] = ACTIONS(4571), - [sym_comment] = ACTIONS(41), + [sym_string] = STATE(960), + [anon_sym_POUND] = ACTIONS(4544), + [anon_sym_0] = ACTIONS(2838), + [anon_sym_QMARK] = ACTIONS(4546), + [aux_sym__simple_variable_name_token1] = ACTIONS(2838), + [anon_sym__] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(4544), + [anon_sym_DQUOTE] = ACTIONS(601), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4544), + [sym_raw_string] = ACTIONS(4548), + [anon_sym_DOLLAR] = ACTIONS(4544), + [anon_sym_AT] = ACTIONS(4546), }, [1928] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1937), - [sym_concatenation] = STATE(1937), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4589), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4591), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_COLON_DASH] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4589), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4589), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4589), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1929] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4550), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4552), }, [1930] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4554), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1931] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1938), - [sym_concatenation] = STATE(1938), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4597), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4599), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_COLON_DASH] = ACTIONS(4597), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4597), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4597), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4597), - [sym__special_character] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(4556), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [1932] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4595), - [sym__concat] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(4556), + [sym_comment] = ACTIONS(53), }, [1933] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(4601), - [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(4558), + [sym_comment] = ACTIONS(53), }, [1934] = { - [anon_sym_RBRACE] = ACTIONS(4595), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(967), + [sym_string_expansion] = STATE(967), + [sym_simple_expansion] = STATE(967), + [sym_string] = STATE(967), + [sym_command_substitution] = STATE(967), + [sym_process_substitution] = STATE(967), + [sym_arithmetic_expansion] = STATE(967), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [sym_number] = ACTIONS(2829), + [sym__special_character] = ACTIONS(2831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(611), + [sym_raw_string] = ACTIONS(2831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(605), + [sym_word] = ACTIONS(2829), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(613), + [sym_ansii_c_string] = ACTIONS(2831), }, [1935] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1939), - [sym_concatenation] = STATE(1939), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4603), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4605), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4607), - [anon_sym_DASH] = ACTIONS(4603), - [anon_sym_COLON_DASH] = ACTIONS(4603), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4603), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4603), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4603), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1940), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1940), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4560), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4560), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4560), + [anon_sym_POUND] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4560), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4560), + [anon_sym_RBRACE] = ACTIONS(4564), + [anon_sym_PERCENT] = ACTIONS(4560), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1936] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4607), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1945), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1945), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4568), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4568), + [anon_sym_POUND] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4568), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4568), + [anon_sym_RBRACE] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4568), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4574), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1937] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(4576), + [sym_comment] = ACTIONS(53), }, [1938] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4578), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1939] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1947), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1947), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4580), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4580), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4580), + [anon_sym_POUND] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4580), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4580), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4586), }, [1940] = { - [sym_string] = STATE(1009), - [anon_sym__] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(668), - [anon_sym_POUND] = ACTIONS(4615), - [anon_sym_STAR] = ACTIONS(4617), - [anon_sym_0] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(4615), - [aux_sym__simple_variable_name_token1] = ACTIONS(2790), - [anon_sym_DOLLAR] = ACTIONS(4615), - [anon_sym_AT] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(4615), - [sym_raw_string] = ACTIONS(4619), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(4617), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1941] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1948), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4623), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1947), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1947), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4580), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4580), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4580), + [anon_sym_POUND] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4580), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4580), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4588), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1942] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4625), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1951), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1951), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4590), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4590), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4590), + [anon_sym_POUND] = ACTIONS(4592), + [anon_sym_DASH] = ACTIONS(4590), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4590), + [anon_sym_RBRACE] = ACTIONS(4594), + [anon_sym_PERCENT] = ACTIONS(4590), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4596), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1943] = { - [anon_sym_RPAREN] = ACTIONS(4627), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(1952), + [sym_concatenation] = STATE(1953), + [sym_string] = STATE(1952), + [sym_command_substitution] = STATE(1952), + [sym_process_substitution] = STATE(1952), + [aux_sym__literal_repeat1] = STATE(1954), + [sym_simple_expansion] = STATE(1952), + [sym_arithmetic_expansion] = STATE(1952), + [sym_string_expansion] = STATE(1952), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4598), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4584), + [sym_word] = ACTIONS(4598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4600), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4600), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1944] = { - [sym_command_substitution] = STATE(1016), - [sym_simple_expansion] = STATE(1016), - [sym_string_expansion] = STATE(1016), - [sym_string] = STATE(1016), - [sym_process_substitution] = STATE(1016), - [sym_expansion] = STATE(1016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(668), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2751), - [sym_word] = ACTIONS(2753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(674), - [anon_sym_DOLLAR] = ACTIONS(676), - [anon_sym_LT_LPAREN] = ACTIONS(678), - [sym_ansii_c_string] = ACTIONS(2751), - [anon_sym_BQUOTE] = ACTIONS(680), - [anon_sym_GT_LPAREN] = ACTIONS(678), - [sym__special_character] = ACTIONS(2751), - [sym_number] = ACTIONS(2753), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1956), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1956), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4602), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4602), + [anon_sym_POUND] = ACTIONS(4604), + [anon_sym_DASH] = ACTIONS(4602), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4602), + [anon_sym_RBRACE] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4602), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4608), }, [1945] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1952), - [sym_concatenation] = STATE(1952), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4629), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4631), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4633), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4629), - [anon_sym_EQ] = ACTIONS(4629), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4629), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4635), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4629), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1946] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1957), + [sym_expansion] = STATE(141), [sym_concatenation] = STATE(1957), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4637), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4639), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4643), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4637), - [sym__special_character] = ACTIONS(459), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1957), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4610), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4612), + [anon_sym_DASH] = ACTIONS(4610), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4610), + [anon_sym_RBRACE] = ACTIONS(4614), + [anon_sym_PERCENT] = ACTIONS(4610), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1947] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4645), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4614), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1948] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4645), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1957), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1957), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4610), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4610), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_POUND] = ACTIONS(4612), + [anon_sym_DASH] = ACTIONS(4610), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4610), + [anon_sym_RBRACE] = ACTIONS(4614), + [anon_sym_PERCENT] = ACTIONS(4610), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4616), }, [1949] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4649), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_expansion] = STATE(1959), + [sym_concatenation] = STATE(1960), + [sym_string] = STATE(1959), + [sym_command_substitution] = STATE(1959), + [sym_process_substitution] = STATE(1959), + [aux_sym__literal_repeat1] = STATE(1961), + [sym_simple_expansion] = STATE(1959), + [sym_arithmetic_expansion] = STATE(1959), + [sym_string_expansion] = STATE(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4614), + [sym_word] = ACTIONS(4618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4620), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4620), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1950] = { - [anon_sym_RPAREN] = ACTIONS(4649), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1963), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1963), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4622), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4622), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4622), + [anon_sym_POUND] = ACTIONS(4624), + [anon_sym_DASH] = ACTIONS(4622), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4622), + [anon_sym_RBRACE] = ACTIONS(4626), + [anon_sym_PERCENT] = ACTIONS(4622), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4628), }, [1951] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1960), - [sym_concatenation] = STATE(1960), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4651), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4653), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_DASH] = ACTIONS(4651), - [anon_sym_COLON_DASH] = ACTIONS(4651), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4651), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4651), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4657), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4626), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1952] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4655), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4614), + [sym__concat] = ACTIONS(1422), }, [1953] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1960), - [sym_concatenation] = STATE(1960), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4651), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4653), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4659), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4651), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4651), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4651), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4655), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4651), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(4614), + [sym_comment] = ACTIONS(53), }, [1954] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1964), - [sym_concatenation] = STATE(1964), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4661), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4663), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4667), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4661), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4630), }, [1955] = { - [sym_command_substitution] = STATE(1965), - [aux_sym__literal_repeat1] = STATE(1966), - [sym_string] = STATE(1965), - [sym_process_substitution] = STATE(1965), - [sym_simple_expansion] = STATE(1965), - [sym_string_expansion] = STATE(1965), - [sym_concatenation] = STATE(1967), - [sym_expansion] = STATE(1965), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4669), - [sym_word] = ACTIONS(4671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4669), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(4655), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(4671), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1964), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1964), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4632), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4632), + [anon_sym_POUND] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4632), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4632), + [anon_sym_RBRACE] = ACTIONS(4636), + [anon_sym_PERCENT] = ACTIONS(4632), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1956] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1969), - [sym_concatenation] = STATE(1969), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4673), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4675), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_COLON_DASH] = ACTIONS(4673), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4673), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4673), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4679), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4636), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1957] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1958] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1965), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1965), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4640), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4640), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4640), + [anon_sym_POUND] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4640), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4640), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_PERCENT] = ACTIONS(4640), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1959] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1970), - [sym_concatenation] = STATE(1970), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4683), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4685), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_COLON_DASH] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4683), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4683), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4683), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4638), + [sym__concat] = ACTIONS(1422), }, [1960] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(4638), + [sym_comment] = ACTIONS(53), }, [1961] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1970), - [sym_concatenation] = STATE(1970), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4683), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4685), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_COLON_DASH] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4683), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4683), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4683), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4689), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4644), }, [1962] = { - [sym_command_substitution] = STATE(1972), - [aux_sym__literal_repeat1] = STATE(1973), - [sym_string] = STATE(1972), - [sym_process_substitution] = STATE(1972), - [sym_simple_expansion] = STATE(1972), - [sym_string_expansion] = STATE(1972), - [sym_concatenation] = STATE(1974), - [sym_expansion] = STATE(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4691), - [sym_word] = ACTIONS(4693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4691), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(4687), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(4693), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1966), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1966), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4646), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4646), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4646), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_PERCENT] = ACTIONS(4646), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1963] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1976), - [sym_concatenation] = STATE(1976), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4695), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4697), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_COLON_DASH] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4695), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4695), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4701), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1964] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1965] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4687), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1966] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(4703), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4656), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1967] = { - [anon_sym_RBRACE] = ACTIONS(4687), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(1970), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4658), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4660), }, [1968] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1977), - [sym_concatenation] = STATE(1977), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4705), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4707), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4709), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_COLON_DASH] = ACTIONS(4705), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4705), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4705), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4705), - [sym__special_character] = ACTIONS(459), + [sym_string] = STATE(993), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_0] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2860), + [aux_sym__simple_variable_name_token1] = ACTIONS(2856), + [anon_sym__] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(625), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2858), + [sym_raw_string] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2860), }, [1969] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4709), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4662), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1970] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4662), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4664), }, [1971] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1978), - [sym_concatenation] = STATE(1978), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4713), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4715), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4713), - [anon_sym_COLON_DASH] = ACTIONS(4713), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4713), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4713), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4713), - [sym__special_character] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4666), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [1972] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4711), - [sym__concat] = ACTIONS(1298), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(4668), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [1973] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(4717), - [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(4668), + [sym_comment] = ACTIONS(53), }, [1974] = { - [anon_sym_RBRACE] = ACTIONS(4711), - [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(4670), + [sym_comment] = ACTIONS(53), }, [1975] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1979), - [sym_concatenation] = STATE(1979), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4719), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4721), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_DASH] = ACTIONS(4719), - [anon_sym_COLON_DASH] = ACTIONS(4719), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4719), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4719), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4719), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(1000), + [sym_string_expansion] = STATE(1000), + [sym_simple_expansion] = STATE(1000), + [sym_string] = STATE(1000), + [sym_command_substitution] = STATE(1000), + [sym_process_substitution] = STATE(1000), + [sym_arithmetic_expansion] = STATE(1000), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(617), + [sym_number] = ACTIONS(1460), + [sym__special_character] = ACTIONS(1464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), + [anon_sym_BQUOTE] = ACTIONS(633), + [sym_raw_string] = ACTIONS(1464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [sym_word] = ACTIONS(1460), + [anon_sym_LT_LPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_ansii_c_string] = ACTIONS(1464), }, [1976] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1981), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1981), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4672), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4672), + [anon_sym_POUND] = ACTIONS(4674), + [anon_sym_DASH] = ACTIONS(4672), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4672), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1977] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1986), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1986), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4680), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4680), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4680), + [anon_sym_POUND] = ACTIONS(4682), + [anon_sym_DASH] = ACTIONS(4680), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4680), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4680), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4686), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1978] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4727), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(4688), + [sym_comment] = ACTIONS(53), }, [1979] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4729), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [1980] = { - [sym_string] = STATE(1041), - [anon_sym__] = ACTIONS(2822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4731), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_BANG] = ACTIONS(4731), - [anon_sym_DOLLAR] = ACTIONS(4731), - [anon_sym_AT] = ACTIONS(4735), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_DQUOTE] = ACTIONS(2783), - [anon_sym_0] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(4735), - [aux_sym__simple_variable_name_token1] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(4735), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1988), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1988), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4692), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4692), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4692), + [anon_sym_POUND] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4692), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4692), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4698), }, [1981] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(1988), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4739), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1982] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4741), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1988), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1988), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4692), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4692), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4692), + [anon_sym_POUND] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4692), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4692), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4700), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1983] = { - [anon_sym_RPAREN] = ACTIONS(4743), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1992), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1992), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4702), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4702), + [anon_sym_POUND] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4702), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4702), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4702), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4708), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1984] = { - [sym_command_substitution] = STATE(1048), - [sym_string] = STATE(1048), - [sym_process_substitution] = STATE(1048), - [sym_simple_expansion] = STATE(1048), - [sym_string_expansion] = STATE(1048), - [sym_expansion] = STATE(1048), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2771), - [anon_sym_DOLLAR] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(2775), - [anon_sym_GT_LPAREN] = ACTIONS(2777), - [sym_number] = ACTIONS(2779), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_word] = ACTIONS(2779), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2785), - [anon_sym_LT_LPAREN] = ACTIONS(2777), - [sym_ansii_c_string] = ACTIONS(2771), - [sym__special_character] = ACTIONS(2771), + [sym_expansion] = STATE(1993), + [sym_concatenation] = STATE(1994), + [sym_string] = STATE(1993), + [sym_command_substitution] = STATE(1993), + [sym_process_substitution] = STATE(1993), + [aux_sym__literal_repeat1] = STATE(1995), + [sym_simple_expansion] = STATE(1993), + [sym_arithmetic_expansion] = STATE(1993), + [sym_string_expansion] = STATE(1993), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4696), + [sym_word] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4712), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4712), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1985] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1992), - [sym_concatenation] = STATE(1992), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4745), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4747), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4745), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4745), - [anon_sym_EQ] = ACTIONS(4745), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4751), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4745), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1997), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1997), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4714), + [anon_sym_POUND] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4714), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4714), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4714), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4720), }, [1986] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(1997), - [sym_concatenation] = STATE(1997), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4753), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4755), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4757), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4753), - [anon_sym_EQ] = ACTIONS(4753), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4753), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4759), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4753), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1987] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4761), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1998), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1998), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4722), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4722), + [anon_sym_POUND] = ACTIONS(4724), + [anon_sym_DASH] = ACTIONS(4722), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4722), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4722), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1988] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4761), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4763), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1989] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4765), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(1998), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(1998), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4722), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4722), + [anon_sym_POUND] = ACTIONS(4724), + [anon_sym_DASH] = ACTIONS(4722), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4722), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4722), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4728), }, [1990] = { - [anon_sym_RPAREN] = ACTIONS(4765), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(2000), + [sym_concatenation] = STATE(2001), + [sym_string] = STATE(2000), + [sym_command_substitution] = STATE(2000), + [sym_process_substitution] = STATE(2000), + [aux_sym__literal_repeat1] = STATE(2002), + [sym_simple_expansion] = STATE(2000), + [sym_arithmetic_expansion] = STATE(2000), + [sym_string_expansion] = STATE(2000), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4726), + [sym_word] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4732), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4732), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [1991] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2000), - [sym_concatenation] = STATE(2000), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4767), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4769), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4771), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_COLON_DASH] = ACTIONS(4767), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4767), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4767), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4773), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2004), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2004), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4734), + [anon_sym_POUND] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4734), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_PERCENT] = ACTIONS(4734), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4740), }, [1992] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4771), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1993] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2000), - [sym_concatenation] = STATE(2000), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4767), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4769), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4775), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4767), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4771), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4767), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4726), + [sym__concat] = ACTIONS(1422), }, [1994] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2004), - [sym_concatenation] = STATE(2004), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4777), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4779), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4781), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4777), - [anon_sym_EQ] = ACTIONS(4777), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(4777), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(4783), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4777), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(4726), + [sym_comment] = ACTIONS(53), }, [1995] = { - [sym_command_substitution] = STATE(2005), - [aux_sym__literal_repeat1] = STATE(2006), - [sym_string] = STATE(2005), - [sym_process_substitution] = STATE(2005), - [sym_simple_expansion] = STATE(2005), - [sym_string_expansion] = STATE(2005), - [sym_concatenation] = STATE(2007), - [sym_expansion] = STATE(2005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4785), - [sym_word] = ACTIONS(4787), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4785), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(4771), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(4787), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4742), }, [1996] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2009), - [sym_concatenation] = STATE(2009), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4789), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4791), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_DASH] = ACTIONS(4789), - [anon_sym_COLON_DASH] = ACTIONS(4789), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4789), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4789), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4789), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4795), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2005), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2005), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4744), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4744), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4744), + [anon_sym_POUND] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4744), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4744), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_PERCENT] = ACTIONS(4744), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1997] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1998] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [1999] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2010), - [sym_concatenation] = STATE(2010), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4799), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4801), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_COLON_DASH] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4799), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4799), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4799), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2006), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2006), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4752), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4752), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4752), + [anon_sym_POUND] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4752), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4752), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2000] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4750), + [sym__concat] = ACTIONS(1422), }, [2001] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2010), - [sym_concatenation] = STATE(2010), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4799), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4801), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_COLON_DASH] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4799), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4799), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4799), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4805), + [anon_sym_RBRACE] = ACTIONS(4750), + [sym_comment] = ACTIONS(53), }, [2002] = { - [sym_command_substitution] = STATE(2012), - [aux_sym__literal_repeat1] = STATE(2013), - [sym_string] = STATE(2012), - [sym_process_substitution] = STATE(2012), - [sym_simple_expansion] = STATE(2012), - [sym_string_expansion] = STATE(2012), - [sym_concatenation] = STATE(2014), - [sym_expansion] = STATE(2012), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4807), - [sym_word] = ACTIONS(4809), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(4807), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(4803), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(4809), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4756), }, [2003] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2016), - [sym_concatenation] = STATE(2016), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4811), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4813), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4811), - [anon_sym_COLON_DASH] = ACTIONS(4811), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4811), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4811), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4811), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(4817), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2007), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2007), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4758), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4758), + [anon_sym_POUND] = ACTIONS(4760), + [anon_sym_DASH] = ACTIONS(4758), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4758), + [anon_sym_RBRACE] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4758), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2004] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2005] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4803), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2006] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(4819), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2007] = { - [anon_sym_RBRACE] = ACTIONS(4803), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2008] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2017), - [sym_concatenation] = STATE(2017), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4821), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4823), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_COLON_DASH] = ACTIONS(4821), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4821), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4821), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2011), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4770), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4772), }, [2009] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_string] = STATE(1026), + [anon_sym_POUND] = ACTIONS(4774), + [anon_sym_0] = ACTIONS(2878), + [anon_sym_QMARK] = ACTIONS(4776), + [aux_sym__simple_variable_name_token1] = ACTIONS(2878), + [anon_sym__] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(4774), + [anon_sym_DQUOTE] = ACTIONS(2389), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(4776), + [anon_sym_DASH] = ACTIONS(4774), + [sym_raw_string] = ACTIONS(4778), + [anon_sym_DOLLAR] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), }, [2010] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2011] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2018), - [sym_concatenation] = STATE(2018), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4829), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4831), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_COLON_DASH] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4829), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4829), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4829), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4780), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4782), }, [2012] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4827), - [sym__concat] = ACTIONS(1298), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [2013] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(4833), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(4786), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [2014] = { - [anon_sym_RBRACE] = ACTIONS(4827), - [sym_comment] = ACTIONS(41), + [anon_sym_RPAREN] = ACTIONS(4786), + [sym_comment] = ACTIONS(53), }, [2015] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2019), - [sym_concatenation] = STATE(2019), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(4835), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4837), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_DASH] = ACTIONS(4835), - [anon_sym_COLON_DASH] = ACTIONS(4835), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(4835), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4835), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(4788), + [sym_comment] = ACTIONS(53), }, [2016] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(1033), + [sym_string_expansion] = STATE(1033), + [sym_simple_expansion] = STATE(1033), + [sym_string] = STATE(1033), + [sym_command_substitution] = STATE(1033), + [sym_process_substitution] = STATE(1033), + [sym_arithmetic_expansion] = STATE(1033), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(2385), + [sym_number] = ACTIONS(2869), + [sym__special_character] = ACTIONS(2871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2389), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2391), + [anon_sym_BQUOTE] = ACTIONS(2397), + [sym_raw_string] = ACTIONS(2871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(675), + [sym_ansii_c_string] = ACTIONS(2871), }, [2017] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2022), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2022), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4790), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4790), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4790), + [anon_sym_POUND] = ACTIONS(4792), + [anon_sym_DASH] = ACTIONS(4790), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4790), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2018] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4843), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2027), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2027), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4798), + [anon_sym_POUND] = ACTIONS(4800), + [anon_sym_DASH] = ACTIONS(4798), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_PERCENT] = ACTIONS(4798), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2019] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(4806), + [sym_comment] = ACTIONS(53), }, [2020] = { - [sym_string] = STATE(1073), - [anon_sym__] = ACTIONS(2844), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4847), - [sym_raw_string] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4847), - [anon_sym_DOLLAR] = ACTIONS(4847), - [anon_sym_AT] = ACTIONS(4851), - [anon_sym_DASH] = ACTIONS(4847), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_0] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(4851), - [aux_sym__simple_variable_name_token1] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2021] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2028), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4853), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4855), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2029), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2029), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4810), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4810), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4810), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4810), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4816), }, [2022] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4857), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2023] = { - [anon_sym_RPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2029), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2029), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4810), + [anon_sym_POUND] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4810), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4810), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4810), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4818), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2024] = { - [sym_command_substitution] = STATE(1080), - [sym_string] = STATE(1080), - [sym_process_substitution] = STATE(1080), - [sym_simple_expansion] = STATE(1080), - [sym_string_expansion] = STATE(1080), - [sym_expansion] = STATE(1080), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2803), - [anon_sym_DOLLAR] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(2807), - [anon_sym_GT_LPAREN] = ACTIONS(2809), - [sym_number] = ACTIONS(2811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_word] = ACTIONS(2811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), - [anon_sym_LT_LPAREN] = ACTIONS(2809), - [sym_ansii_c_string] = ACTIONS(2803), - [sym__special_character] = ACTIONS(2803), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2033), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2033), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4820), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4820), + [anon_sym_POUND] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4820), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4820), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2025] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2032), - [sym_concatenation] = STATE(2032), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4863), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4865), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4861), + [sym_expansion] = STATE(2034), + [sym_concatenation] = STATE(2035), + [sym_string] = STATE(2034), + [sym_command_substitution] = STATE(2034), + [sym_process_substitution] = STATE(2034), + [aux_sym__literal_repeat1] = STATE(2036), + [sym_simple_expansion] = STATE(2034), + [sym_arithmetic_expansion] = STATE(2034), + [sym_string_expansion] = STATE(2034), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4814), + [sym_word] = ACTIONS(4828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4830), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2026] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2037), - [sym_concatenation] = STATE(2037), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4869), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4869), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4869), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4869), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4871), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4873), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_EQ] = ACTIONS(4869), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4869), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2038), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2038), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4832), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(4834), + [anon_sym_DASH] = ACTIONS(4832), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4832), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4832), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4838), }, [2027] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2028] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4877), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(273), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2039), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2039), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4840), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4840), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4840), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2029] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4881), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2030] = { - [anon_sym_RPAREN] = ACTIONS(4881), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2039), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2039), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4840), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4840), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4840), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4840), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4846), }, [2031] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2040), - [sym_concatenation] = STATE(2040), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4883), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4885), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4887), - [anon_sym_EQ] = ACTIONS(4883), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4883), - [sym_regex] = ACTIONS(4889), + [sym_expansion] = STATE(2041), + [sym_concatenation] = STATE(2042), + [sym_string] = STATE(2041), + [sym_command_substitution] = STATE(2041), + [sym_process_substitution] = STATE(2041), + [aux_sym__literal_repeat1] = STATE(2043), + [sym_simple_expansion] = STATE(2041), + [sym_arithmetic_expansion] = STATE(2041), + [sym_string_expansion] = STATE(2041), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4844), + [sym_word] = ACTIONS(4848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4850), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4850), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2032] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4887), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2045), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2045), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4852), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4852), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4852), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4858), }, [2033] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2040), - [sym_concatenation] = STATE(2040), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4883), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4885), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4891), - [anon_sym_RBRACE] = ACTIONS(4887), - [anon_sym_EQ] = ACTIONS(4883), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4883), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2034] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2044), - [sym_concatenation] = STATE(2044), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4893), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4893), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4893), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4895), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4897), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4893), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4844), + [sym__concat] = ACTIONS(1422), }, [2035] = { - [sym_command_substitution] = STATE(2045), - [aux_sym__literal_repeat1] = STATE(2046), - [sym_string] = STATE(2045), - [sym_process_substitution] = STATE(2045), - [sym_simple_expansion] = STATE(2045), - [sym_string_expansion] = STATE(2045), - [sym_concatenation] = STATE(2047), - [sym_expansion] = STATE(2045), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(4887), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(4901), - [sym__special_character] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(4844), + [sym_comment] = ACTIONS(53), }, [2036] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2049), - [sym_concatenation] = STATE(2049), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4905), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4905), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4907), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4909), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4905), - [sym_regex] = ACTIONS(4911), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4860), }, [2037] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4909), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2046), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2046), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4862), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4862), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4862), + [anon_sym_POUND] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4862), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4862), + [anon_sym_RBRACE] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(4862), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2038] = { - [anon_sym__] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(4913), - [anon_sym_0] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4866), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2039] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2050), - [sym_concatenation] = STATE(2050), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4917), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4915), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2040] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2047), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2047), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4870), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4870), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4870), + [anon_sym_POUND] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4870), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4870), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2041] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2050), - [sym_concatenation] = STATE(2050), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4915), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4915), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4915), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4917), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(4915), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4915), - [sym_regex] = ACTIONS(4921), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4868), + [sym__concat] = ACTIONS(1422), }, [2042] = { - [sym_command_substitution] = STATE(2052), - [aux_sym__literal_repeat1] = STATE(2053), - [sym_string] = STATE(2052), - [sym_process_substitution] = STATE(2052), - [sym_simple_expansion] = STATE(2052), - [sym_string_expansion] = STATE(2052), - [sym_concatenation] = STATE(2054), - [sym_expansion] = STATE(2052), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4923), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(4925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(4925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(4923), - [sym__special_character] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(4868), + [sym_comment] = ACTIONS(53), }, [2043] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2056), - [sym_concatenation] = STATE(2056), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4927), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4927), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4927), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4929), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4927), - [sym_regex] = ACTIONS(4933), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4874), }, [2044] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2048), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2048), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4876), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(4878), + [anon_sym_DASH] = ACTIONS(4876), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4876), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2045] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4919), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2046] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(4935), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2047] = { - [anon_sym_RBRACE] = ACTIONS(4919), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2048] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2057), - [sym_concatenation] = STATE(2057), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4937), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4937), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4937), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4937), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4939), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4937), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2049] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2052), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4888), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4890), }, [2050] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_string] = STATE(1059), + [anon_sym_POUND] = ACTIONS(4892), + [anon_sym_0] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(4894), + [aux_sym__simple_variable_name_token1] = ACTIONS(2898), + [anon_sym__] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(4894), + [anon_sym_DASH] = ACTIONS(4892), + [sym_raw_string] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), }, [2051] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2058), - [sym_concatenation] = STATE(2058), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4945), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4945), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4945), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4947), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4945), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4945), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2052] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(4943), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(4898), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(4900), }, [2053] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(4949), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4902), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [2054] = { - [anon_sym_RBRACE] = ACTIONS(4943), - [sym_comment] = ACTIONS(41), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [2055] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2059), - [sym_concatenation] = STATE(2059), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4951), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4951), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4951), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4951), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4953), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4951), + [anon_sym_RPAREN] = ACTIONS(4904), + [sym_comment] = ACTIONS(53), }, [2056] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(4906), + [sym_comment] = ACTIONS(53), }, [2057] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(1066), + [sym_string_expansion] = STATE(1066), + [sym_simple_expansion] = STATE(1066), + [sym_string] = STATE(1066), + [sym_command_substitution] = STATE(1066), + [sym_process_substitution] = STATE(1066), + [sym_arithmetic_expansion] = STATE(1066), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_number] = ACTIONS(2889), + [sym__special_character] = ACTIONS(2891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_raw_string] = ACTIONS(2891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), + [sym_word] = ACTIONS(2889), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_ansii_c_string] = ACTIONS(2891), }, [2058] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2063), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2063), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4908), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(4910), + [anon_sym_DASH] = ACTIONS(4908), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4908), + [anon_sym_RBRACE] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4908), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4914), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2059] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2068), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2068), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4916), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(4918), + [anon_sym_DASH] = ACTIONS(4916), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4916), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4916), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2060] = { - [sym_string] = STATE(1105), - [anon_sym__] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_0] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2868), - [aux_sym__simple_variable_name_token1] = ACTIONS(2866), - [anon_sym_DOLLAR] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2868), - [sym_raw_string] = ACTIONS(2872), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BQUOTE] = ACTIONS(4924), + [sym_comment] = ACTIONS(53), }, [2061] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2068), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2062] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(4967), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2070), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2070), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4928), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4930), + [anon_sym_DASH] = ACTIONS(4928), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4928), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4934), }, [2063] = { - [anon_sym_RPAREN] = ACTIONS(4969), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2064] = { - [sym_command_substitution] = STATE(1112), - [sym_simple_expansion] = STATE(1112), - [sym_string_expansion] = STATE(1112), - [sym_string] = STATE(1112), - [sym_process_substitution] = STATE(1112), - [sym_expansion] = STATE(1112), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2835), - [sym_word] = ACTIONS(2837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(2835), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym__special_character] = ACTIONS(2835), - [sym_number] = ACTIONS(2837), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2070), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2070), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4928), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(4930), + [anon_sym_DASH] = ACTIONS(4928), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4928), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2065] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2072), - [sym_concatenation] = STATE(2072), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4971), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4971), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4973), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4971), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2074), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2074), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4938), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4938), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4938), + [anon_sym_POUND] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4938), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4938), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2066] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2077), - [sym_concatenation] = STATE(2077), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4979), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4979), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4981), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4979), + [sym_expansion] = STATE(2075), + [sym_concatenation] = STATE(2076), + [sym_string] = STATE(2075), + [sym_command_substitution] = STATE(2075), + [sym_process_substitution] = STATE(2075), + [aux_sym__literal_repeat1] = STATE(2077), + [sym_simple_expansion] = STATE(2075), + [sym_arithmetic_expansion] = STATE(2075), + [sym_string_expansion] = STATE(2075), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4932), + [sym_word] = ACTIONS(4946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4948), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4948), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2067] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2079), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2079), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4950), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4950), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4950), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(4950), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4956), }, [2068] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(4989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2069] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [sym_number] = ACTIONS(331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2080), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2080), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4958), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4958), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4958), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2070] = { - [anon_sym_RPAREN] = ACTIONS(4991), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2071] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2080), + [sym_expansion] = STATE(141), [sym_concatenation] = STATE(2080), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4993), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4993), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4995), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4993), - [sym_regex] = ACTIONS(4999), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2080), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4958), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4958), + [anon_sym_POUND] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4958), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_PERCENT] = ACTIONS(4958), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4964), }, [2072] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(2082), + [sym_concatenation] = STATE(2083), + [sym_string] = STATE(2082), + [sym_command_substitution] = STATE(2082), + [sym_process_substitution] = STATE(2082), + [aux_sym__literal_repeat1] = STATE(2084), + [sym_simple_expansion] = STATE(2082), + [sym_arithmetic_expansion] = STATE(2082), + [sym_string_expansion] = STATE(2082), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(4966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(4962), + [sym_word] = ACTIONS(4966), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(4968), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2073] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2080), - [sym_concatenation] = STATE(2080), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(4993), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(4993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(4993), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(4995), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(4993), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2086), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2086), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4970), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4970), + [anon_sym_POUND] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4970), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(4970), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(4976), }, [2074] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2084), - [sym_concatenation] = STATE(2084), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5003), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5003), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5005), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_RBRACE] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5003), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2075] = { - [sym_command_substitution] = STATE(2085), - [aux_sym__literal_repeat1] = STATE(2086), - [sym_string] = STATE(2085), - [sym_process_substitution] = STATE(2085), - [sym_simple_expansion] = STATE(2085), - [sym_string_expansion] = STATE(2085), - [sym_concatenation] = STATE(2087), - [sym_expansion] = STATE(2085), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(5013), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(5013), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(5011), - [sym__special_character] = ACTIONS(949), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4962), + [sym__concat] = ACTIONS(1422), }, [2076] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2089), - [sym_concatenation] = STATE(2089), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5015), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5015), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5015), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5017), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5015), - [sym_regex] = ACTIONS(5021), + [anon_sym_RBRACE] = ACTIONS(4962), + [sym_comment] = ACTIONS(53), }, [2077] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4978), }, [2078] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2087), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2087), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4980), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4980), + [anon_sym_POUND] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4980), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4980), + [anon_sym_RBRACE] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4980), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2079] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2090), - [sym_concatenation] = STATE(2090), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5025), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5025), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2080] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2081] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2090), - [sym_concatenation] = STATE(2090), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5025), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(5025), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5025), - [sym_regex] = ACTIONS(5031), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2088), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2088), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4988), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_POUND] = ACTIONS(4990), + [anon_sym_DASH] = ACTIONS(4988), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4988), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_PERCENT] = ACTIONS(4988), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2082] = { - [sym_command_substitution] = STATE(2092), - [aux_sym__literal_repeat1] = STATE(2093), - [sym_string] = STATE(2092), - [sym_process_substitution] = STATE(2092), - [sym_simple_expansion] = STATE(2092), - [sym_string_expansion] = STATE(2092), - [sym_concatenation] = STATE(2094), - [sym_expansion] = STATE(2092), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5033), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_GT_LPAREN] = ACTIONS(945), - [sym_number] = ACTIONS(5035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_word] = ACTIONS(5035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [sym_ansii_c_string] = ACTIONS(5033), - [sym__special_character] = ACTIONS(949), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4986), + [sym__concat] = ACTIONS(1422), }, [2083] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2096), - [sym_concatenation] = STATE(2096), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5037), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5037), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5039), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(5037), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5037), - [sym_regex] = ACTIONS(5043), + [anon_sym_RBRACE] = ACTIONS(4986), + [sym_comment] = ACTIONS(53), }, [2084] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5041), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(4992), }, [2085] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5029), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2089), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2089), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(4994), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(4994), + [anon_sym_POUND] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4994), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4994), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2086] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(5045), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2087] = { - [anon_sym_RBRACE] = ACTIONS(5029), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2088] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2097), - [sym_concatenation] = STATE(2097), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5047), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5047), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5049), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5047), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2089] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2090] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5053), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2093), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5006), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5008), }, [2091] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2098), - [sym_concatenation] = STATE(2098), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5055), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5055), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5057), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5053), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5055), + [sym_string] = STATE(1092), + [anon_sym_0] = ACTIONS(2932), + [anon_sym_BANG] = ACTIONS(5010), + [anon_sym_DQUOTE] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_POUND] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5012), + [aux_sym__simple_variable_name_token1] = ACTIONS(2932), + [anon_sym__] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(5014), + [anon_sym_DOLLAR] = ACTIONS(5010), + [anon_sym_AT] = ACTIONS(5012), }, [2092] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5053), - [sym__concat] = ACTIONS(1298), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2093] = { - [aux_sym__literal_repeat1] = STATE(1141), - [anon_sym_RBRACE] = ACTIONS(5059), - [sym_comment] = ACTIONS(41), - [sym__special_character] = ACTIONS(1300), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5016), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5018), }, [2094] = { - [anon_sym_RBRACE] = ACTIONS(5053), - [sym_comment] = ACTIONS(41), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [2095] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2099), - [sym_concatenation] = STATE(2099), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5061), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(5061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(5061), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5063), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5065), - [anon_sym_EQ] = ACTIONS(5061), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5061), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(5022), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [2096] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5065), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(5022), + [sym_comment] = ACTIONS(53), }, [2097] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym_comment] = ACTIONS(53), }, [2098] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(1099), + [sym_string] = STATE(1099), + [sym_command_substitution] = STATE(1099), + [sym_process_substitution] = STATE(1099), + [sym_simple_expansion] = STATE(1099), + [sym_arithmetic_expansion] = STATE(1099), + [sym_string_expansion] = STATE(1099), + [anon_sym_GT_LPAREN] = ACTIONS(2911), + [sym_number] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2917), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2919), + [sym_word] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), + [anon_sym_LT_LPAREN] = ACTIONS(2911), + [sym_ansii_c_string] = ACTIONS(2923), + [sym__special_character] = ACTIONS(2923), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2925), + [sym_raw_string] = ACTIONS(2923), + [anon_sym_DOLLAR] = ACTIONS(3216), }, [2099] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_word] = ACTIONS(449), - [sym__special_character] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2104), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2104), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5026), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5026), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5026), + [anon_sym_POUND] = ACTIONS(5028), + [anon_sym_DASH] = ACTIONS(5026), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_PERCENT] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2100] = { - [sym_string] = STATE(1137), - [anon_sym__] = ACTIONS(2888), - [anon_sym_DQUOTE] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_0] = ACTIONS(2888), - [anon_sym_BANG] = ACTIONS(2890), - [aux_sym__simple_variable_name_token1] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(2890), - [sym_raw_string] = ACTIONS(2892), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5073), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2109), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2109), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5034), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5034), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_POUND] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5034), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5034), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_PERCENT] = ACTIONS(5034), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5040), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2101] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2108), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(5042), + [sym_comment] = ACTIONS(53), }, [2102] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5079), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2103] = { - [anon_sym_RPAREN] = ACTIONS(5081), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2111), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2111), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5046), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5046), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5046), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5052), }, [2104] = { - [sym_command_substitution] = STATE(1144), - [sym_simple_expansion] = STATE(1144), - [sym_string_expansion] = STATE(1144), - [sym_string] = STATE(1144), - [sym_process_substitution] = STATE(1144), - [sym_expansion] = STATE(1144), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2857), - [sym_word] = ACTIONS(2859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_LT_LPAREN] = ACTIONS(1025), - [sym_ansii_c_string] = ACTIONS(2857), - [anon_sym_BQUOTE] = ACTIONS(1027), - [anon_sym_GT_LPAREN] = ACTIONS(1025), - [sym__special_character] = ACTIONS(2857), - [sym_number] = ACTIONS(2859), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2105] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2112), - [sym_concatenation] = STATE(2112), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5083), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5085), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5089), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5083), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2111), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2111), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5046), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5046), + [anon_sym_POUND] = ACTIONS(5048), + [anon_sym_DASH] = ACTIONS(5046), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2106] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2117), - [sym_concatenation] = STATE(2117), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5091), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5093), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5091), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5097), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5091), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2115), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2115), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5056), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5056), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_POUND] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5056), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5060), + [anon_sym_PERCENT] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2107] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(2116), + [sym_concatenation] = STATE(2117), + [sym_string] = STATE(2116), + [sym_command_substitution] = STATE(2116), + [sym_process_substitution] = STATE(2116), + [aux_sym__literal_repeat1] = STATE(2118), + [sym_simple_expansion] = STATE(2116), + [sym_arithmetic_expansion] = STATE(2116), + [sym_string_expansion] = STATE(2116), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5050), + [sym_word] = ACTIONS(5064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5066), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5066), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2108] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2120), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2120), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5068), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5068), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_POUND] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5068), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_PERCENT] = ACTIONS(5068), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5074), }, [2109] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2110] = { - [anon_sym_RPAREN] = ACTIONS(5103), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2121), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2121), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5076), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5076), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5076), + [anon_sym_POUND] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5076), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_PERCENT] = ACTIONS(5076), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2111] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2120), - [sym_concatenation] = STATE(2120), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5105), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5107), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_COLON_DASH] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5105), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5105), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5105), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5111), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2112] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2121), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2121), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5076), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5076), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5076), + [anon_sym_POUND] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5076), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_PERCENT] = ACTIONS(5076), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5082), }, [2113] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2120), - [sym_concatenation] = STATE(2120), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5105), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5107), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5105), - [anon_sym_EQ] = ACTIONS(5105), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5105), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5109), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5105), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(2123), + [sym_concatenation] = STATE(2124), + [sym_string] = STATE(2123), + [sym_command_substitution] = STATE(2123), + [sym_process_substitution] = STATE(2123), + [aux_sym__literal_repeat1] = STATE(2125), + [sym_simple_expansion] = STATE(2123), + [sym_arithmetic_expansion] = STATE(2123), + [sym_string_expansion] = STATE(2123), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5080), + [sym_word] = ACTIONS(5084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5086), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5086), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2114] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2124), - [sym_concatenation] = STATE(2124), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5115), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5117), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5121), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5115), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2127), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2127), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5088), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5088), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_POUND] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5088), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_PERCENT] = ACTIONS(5088), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5094), }, [2115] = { - [sym_command_substitution] = STATE(2125), - [aux_sym__literal_repeat1] = STATE(2126), - [sym_string] = STATE(2125), - [sym_process_substitution] = STATE(2125), - [sym_simple_expansion] = STATE(2125), - [sym_string_expansion] = STATE(2125), - [sym_concatenation] = STATE(2127), - [sym_expansion] = STATE(2125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5123), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5109), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5125), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2116] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2129), - [sym_concatenation] = STATE(2129), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5127), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5129), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5127), - [anon_sym_COLON_DASH] = ACTIONS(5127), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5127), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5127), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5133), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5080), + [sym__concat] = ACTIONS(1422), }, [2117] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(5080), + [sym_comment] = ACTIONS(53), }, [2118] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5096), }, [2119] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2130), - [sym_concatenation] = STATE(2130), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5137), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5139), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5141), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_COLON_DASH] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5137), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5137), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2128), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2128), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5098), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5098), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5098), + [anon_sym_POUND] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5098), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5098), + [anon_sym_RBRACE] = ACTIONS(5102), + [anon_sym_PERCENT] = ACTIONS(5098), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2120] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5141), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5102), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2121] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2130), - [sym_concatenation] = STATE(2130), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5137), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5139), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5141), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_COLON_DASH] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5137), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5137), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5143), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2122] = { - [sym_command_substitution] = STATE(2132), - [aux_sym__literal_repeat1] = STATE(2133), - [sym_string] = STATE(2132), - [sym_process_substitution] = STATE(2132), - [sym_simple_expansion] = STATE(2132), - [sym_string_expansion] = STATE(2132), - [sym_concatenation] = STATE(2134), - [sym_expansion] = STATE(2132), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5145), - [sym_word] = ACTIONS(5147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5145), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5141), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5147), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2129), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2129), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5106), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5106), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5106), + [anon_sym_POUND] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5106), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5106), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5106), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2123] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2136), - [sym_concatenation] = STATE(2136), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5149), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5151), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_COLON_DASH] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5149), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5149), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5155), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5104), + [sym__concat] = ACTIONS(1422), }, [2124] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(5104), + [sym_comment] = ACTIONS(53), }, [2125] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5141), - [sym__concat] = ACTIONS(1298), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5110), }, [2126] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5157), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2130), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2130), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5112), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5112), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_POUND] = ACTIONS(5114), + [anon_sym_DASH] = ACTIONS(5112), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_PERCENT] = ACTIONS(5112), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2127] = { - [anon_sym_RBRACE] = ACTIONS(5141), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2128] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2137), - [sym_concatenation] = STATE(2137), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5159), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5161), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_COLON_DASH] = ACTIONS(5159), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5159), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5159), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2129] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2130] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2131] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2138), - [sym_concatenation] = STATE(2138), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5167), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5169), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_COLON_DASH] = ACTIONS(5167), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5167), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5167), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2134), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5124), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5126), }, [2132] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5165), - [sym__concat] = ACTIONS(1298), + [sym_string] = STATE(1125), + [anon_sym_0] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_DASH] = ACTIONS(5128), + [anon_sym_POUND] = ACTIONS(5128), + [anon_sym_QMARK] = ACTIONS(5130), + [aux_sym__simple_variable_name_token1] = ACTIONS(2966), + [anon_sym__] = ACTIONS(2966), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(5132), + [anon_sym_DOLLAR] = ACTIONS(5128), + [anon_sym_AT] = ACTIONS(5130), }, [2133] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5171), - [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(5134), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2134] = { - [anon_sym_RBRACE] = ACTIONS(5165), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5134), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5136), }, [2135] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2139), - [sym_concatenation] = STATE(2139), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5173), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5175), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_COLON_DASH] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5173), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5173), - [sym__special_character] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5138), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [2136] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(5140), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), }, [2137] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(5140), + [sym_comment] = ACTIONS(53), }, [2138] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(5142), + [sym_comment] = ACTIONS(53), }, [2139] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5183), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(1132), + [sym_string] = STATE(1132), + [sym_command_substitution] = STATE(1132), + [sym_process_substitution] = STATE(1132), + [sym_simple_expansion] = STATE(1132), + [sym_arithmetic_expansion] = STATE(1132), + [sym_string_expansion] = STATE(1132), + [anon_sym_GT_LPAREN] = ACTIONS(2945), + [sym_number] = ACTIONS(2947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), + [sym_word] = ACTIONS(2947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [anon_sym_LT_LPAREN] = ACTIONS(2945), + [sym_ansii_c_string] = ACTIONS(2957), + [sym__special_character] = ACTIONS(2957), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(2959), + [sym_raw_string] = ACTIONS(2957), + [anon_sym_DOLLAR] = ACTIONS(3236), }, [2140] = { - [sym_string] = STATE(1169), - [anon_sym__] = ACTIONS(2910), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_POUND] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5187), - [anon_sym_0] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(5185), - [aux_sym__simple_variable_name_token1] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_AT] = ACTIONS(5187), - [anon_sym_DASH] = ACTIONS(5185), - [sym_raw_string] = ACTIONS(5189), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5187), + [sym_concatenation] = STATE(2145), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2145), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5144), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_POUND] = ACTIONS(5146), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5144), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_EQ] = ACTIONS(5144), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5144), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5150), }, [2141] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2148), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5193), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_concatenation] = STATE(2150), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2150), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5152), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_POUND] = ACTIONS(5154), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5152), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_EQ] = ACTIONS(5152), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5152), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5158), }, [2142] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5195), + [anon_sym_BQUOTE] = ACTIONS(5160), + [sym_comment] = ACTIONS(53), }, [2143] = { - [anon_sym_RPAREN] = ACTIONS(5197), - [sym_comment] = ACTIONS(41), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(5162), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2144] = { - [sym_command_substitution] = STATE(1176), - [sym_simple_expansion] = STATE(1176), - [sym_string_expansion] = STATE(1176), - [sym_string] = STATE(1176), - [sym_process_substitution] = STATE(1176), - [sym_expansion] = STATE(1176), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2879), - [sym_word] = ACTIONS(2881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_DOLLAR] = ACTIONS(1112), - [anon_sym_LT_LPAREN] = ACTIONS(1114), - [sym_ansii_c_string] = ACTIONS(2879), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_GT_LPAREN] = ACTIONS(1114), - [sym__special_character] = ACTIONS(2879), - [sym_number] = ACTIONS(2881), + [sym_concatenation] = STATE(2152), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2152), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5164), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_POUND] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5164), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(5164), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5170), }, [2145] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2152), - [sym_concatenation] = STATE(2152), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5199), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5201), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5199), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5199), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5205), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5199), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2146] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2157), - [sym_concatenation] = STATE(2157), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5207), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5209), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5207), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5207), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5213), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5207), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2152), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2152), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5164), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_POUND] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5164), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(5164), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5164), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5172), }, [2147] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5215), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_concatenation] = STATE(2156), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2156), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5174), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5174), + [anon_sym_POUND] = ACTIONS(5176), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5174), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5174), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5174), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5180), }, [2148] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5215), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(2157), + [sym_concatenation] = STATE(2158), + [sym_string] = STATE(2157), + [sym_command_substitution] = STATE(2157), + [sym_process_substitution] = STATE(2157), + [aux_sym__literal_repeat1] = STATE(2159), + [sym_simple_expansion] = STATE(2157), + [sym_arithmetic_expansion] = STATE(2157), + [sym_string_expansion] = STATE(2157), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5168), + [sym_word] = ACTIONS(5182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5184), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2149] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_concatenation] = STATE(2161), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2161), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5186), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5186), + [anon_sym_POUND] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5186), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_EQ] = ACTIONS(5186), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5186), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5192), }, [2150] = { - [anon_sym_RPAREN] = ACTIONS(5219), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2151] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2160), - [sym_concatenation] = STATE(2160), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5221), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5223), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_COLON_DASH] = ACTIONS(5221), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5221), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5221), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5221), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5227), + [sym_concatenation] = STATE(2162), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2162), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5194), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_POUND] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5194), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_EQ] = ACTIONS(5194), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2152] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2153] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2160), - [sym_concatenation] = STATE(2160), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5221), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5223), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5221), - [anon_sym_EQ] = ACTIONS(5221), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5221), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5225), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5221), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2162), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2162), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5194), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_POUND] = ACTIONS(5196), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5194), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_EQ] = ACTIONS(5194), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5200), }, [2154] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2164), - [sym_concatenation] = STATE(2164), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5231), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5233), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5231), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5237), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5231), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(2164), + [sym_concatenation] = STATE(2165), + [sym_string] = STATE(2164), + [sym_command_substitution] = STATE(2164), + [sym_process_substitution] = STATE(2164), + [aux_sym__literal_repeat1] = STATE(2166), + [sym_simple_expansion] = STATE(2164), + [sym_arithmetic_expansion] = STATE(2164), + [sym_string_expansion] = STATE(2164), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5198), + [sym_word] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5204), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2155] = { - [sym_command_substitution] = STATE(2165), - [aux_sym__literal_repeat1] = STATE(2166), - [sym_string] = STATE(2165), - [sym_process_substitution] = STATE(2165), - [sym_simple_expansion] = STATE(2165), - [sym_string_expansion] = STATE(2165), - [sym_concatenation] = STATE(2167), - [sym_expansion] = STATE(2165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5239), - [sym_word] = ACTIONS(5241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5239), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5225), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5241), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_concatenation] = STATE(2168), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2168), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_POUND] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(5206), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5212), }, [2156] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2169), - [sym_concatenation] = STATE(2169), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5243), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5245), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_COLON_DASH] = ACTIONS(5243), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5243), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5243), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5243), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5249), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2157] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(5198), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [2158] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5251), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(5198), + [sym_comment] = ACTIONS(53), }, [2159] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2170), - [sym_concatenation] = STATE(2170), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5253), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5255), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5257), - [anon_sym_DASH] = ACTIONS(5253), - [anon_sym_COLON_DASH] = ACTIONS(5253), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5253), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5253), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5214), + [sym_comment] = ACTIONS(53), }, [2160] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5257), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2169), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2169), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5216), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5216), + [anon_sym_POUND] = ACTIONS(5218), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5216), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5216), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5216), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2161] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2170), - [sym_concatenation] = STATE(2170), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5253), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5255), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5257), - [anon_sym_DASH] = ACTIONS(5253), - [anon_sym_COLON_DASH] = ACTIONS(5253), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5253), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5253), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5259), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2162] = { - [sym_command_substitution] = STATE(2172), - [aux_sym__literal_repeat1] = STATE(2173), - [sym_string] = STATE(2172), - [sym_process_substitution] = STATE(2172), - [sym_simple_expansion] = STATE(2172), - [sym_string_expansion] = STATE(2172), - [sym_concatenation] = STATE(2174), - [sym_expansion] = STATE(2172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5261), - [sym_word] = ACTIONS(5263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5261), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5257), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5263), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2163] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2176), - [sym_concatenation] = STATE(2176), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5265), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5267), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(5265), - [anon_sym_COLON_DASH] = ACTIONS(5265), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5265), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5265), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5271), + [sym_concatenation] = STATE(2170), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2170), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5224), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_POUND] = ACTIONS(5226), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5224), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5224), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5224), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2164] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5269), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(5222), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [2165] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5257), - [sym__concat] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(5222), + [sym_comment] = ACTIONS(53), }, [2166] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5273), - [sym_comment] = ACTIONS(41), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5228), + [sym_comment] = ACTIONS(53), }, [2167] = { - [anon_sym_RBRACE] = ACTIONS(5257), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(2171), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2171), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5230), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5230), + [anon_sym_POUND] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5230), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5230), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5230), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2168] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2177), - [sym_concatenation] = STATE(2177), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5275), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5277), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(5275), - [anon_sym_COLON_DASH] = ACTIONS(5275), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5275), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5275), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5275), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2169] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2170] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2171] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2178), - [sym_concatenation] = STATE(2178), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5283), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5285), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5281), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_COLON_DASH] = ACTIONS(5283), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5283), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5283), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5283), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5240), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2172] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5281), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2175), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5242), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5244), }, [2173] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5287), - [sym_comment] = ACTIONS(41), + [sym_string] = STATE(1158), + [anon_sym_POUND] = ACTIONS(2988), + [anon_sym_0] = ACTIONS(2990), + [anon_sym_QMARK] = ACTIONS(2992), + [aux_sym__simple_variable_name_token1] = ACTIONS(2990), + [anon_sym__] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2988), + [sym_raw_string] = ACTIONS(2994), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_AT] = ACTIONS(2992), }, [2174] = { - [anon_sym_RBRACE] = ACTIONS(5281), - [sym_comment] = ACTIONS(41), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2175] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2179), - [sym_concatenation] = STATE(2179), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5289), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5291), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5293), - [anon_sym_DASH] = ACTIONS(5289), - [anon_sym_COLON_DASH] = ACTIONS(5289), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5289), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5289), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5248), }, [2176] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5293), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5250), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [2177] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(5252), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), }, [2178] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5297), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(5252), + [sym_comment] = ACTIONS(53), }, [2179] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(5254), + [sym_comment] = ACTIONS(53), }, [2180] = { - [sym_string] = STATE(1201), - [anon_sym__] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(5301), - [anon_sym_STAR] = ACTIONS(5303), - [anon_sym_0] = ACTIONS(2964), - [anon_sym_BANG] = ACTIONS(5301), - [aux_sym__simple_variable_name_token1] = ACTIONS(2964), - [anon_sym_DOLLAR] = ACTIONS(5301), - [anon_sym_AT] = ACTIONS(5303), - [anon_sym_DASH] = ACTIONS(5301), - [sym_raw_string] = ACTIONS(5305), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5303), + [sym_expansion] = STATE(1165), + [sym_string_expansion] = STATE(1165), + [sym_simple_expansion] = STATE(1165), + [sym_string] = STATE(1165), + [sym_command_substitution] = STATE(1165), + [sym_process_substitution] = STATE(1165), + [sym_arithmetic_expansion] = STATE(1165), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(2979), + [sym__special_character] = ACTIONS(2981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(2981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [sym_word] = ACTIONS(2979), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_ansii_c_string] = ACTIONS(2981), }, [2181] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2188), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5309), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_concatenation] = STATE(2186), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2186), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5256), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_POUND] = ACTIONS(5258), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5256), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5260), + [anon_sym_EQ] = ACTIONS(5256), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5256), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5262), }, [2182] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5311), + [sym_concatenation] = STATE(2191), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2191), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5264), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_POUND] = ACTIONS(5266), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5264), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(5264), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5264), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5270), }, [2183] = { - [anon_sym_RPAREN] = ACTIONS(5313), - [sym_comment] = ACTIONS(41), + [anon_sym_BQUOTE] = ACTIONS(5272), + [sym_comment] = ACTIONS(53), }, [2184] = { - [sym_command_substitution] = STATE(1208), - [sym_simple_expansion] = STATE(1208), - [sym_string_expansion] = STATE(1208), - [sym_string] = STATE(1208), - [sym_process_substitution] = STATE(1208), - [sym_expansion] = STATE(1208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1758), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2901), - [sym_word] = ACTIONS(2903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_LT_LPAREN] = ACTIONS(1742), - [sym_ansii_c_string] = ACTIONS(2901), - [anon_sym_BQUOTE] = ACTIONS(1740), - [anon_sym_GT_LPAREN] = ACTIONS(1742), - [sym__special_character] = ACTIONS(2901), - [sym_number] = ACTIONS(2903), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5274), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2185] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2192), - [sym_concatenation] = STATE(2192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5315), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5317), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5319), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5315), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5315), - [anon_sym_EQ] = ACTIONS(5315), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5315), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5321), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5315), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2193), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2193), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5276), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_POUND] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5276), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5280), + [anon_sym_EQ] = ACTIONS(5276), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5276), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5282), }, [2186] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2197), - [sym_concatenation] = STATE(2197), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5323), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5325), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5327), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5323), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5323), - [anon_sym_EQ] = ACTIONS(5323), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5323), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5329), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5323), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5280), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2187] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5331), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_concatenation] = STATE(2193), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2193), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5276), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_POUND] = ACTIONS(5278), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5276), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5280), + [anon_sym_EQ] = ACTIONS(5276), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5276), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5284), }, [2188] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5331), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_concatenation] = STATE(2197), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2197), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5286), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5286), + [anon_sym_POUND] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5286), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5286), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5286), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5292), }, [2189] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_expansion] = STATE(2198), + [sym_concatenation] = STATE(2199), + [sym_string] = STATE(2198), + [sym_command_substitution] = STATE(2198), + [sym_process_substitution] = STATE(2198), + [aux_sym__literal_repeat1] = STATE(2200), + [sym_simple_expansion] = STATE(2198), + [sym_arithmetic_expansion] = STATE(2198), + [sym_string_expansion] = STATE(2198), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5280), + [sym_word] = ACTIONS(5294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5296), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5296), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2190] = { - [anon_sym_RPAREN] = ACTIONS(5335), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(2202), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2202), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5298), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5298), + [anon_sym_POUND] = ACTIONS(5300), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5298), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5302), + [anon_sym_EQ] = ACTIONS(5298), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5298), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5304), }, [2191] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2200), - [sym_concatenation] = STATE(2200), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5337), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5339), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_COLON_DASH] = ACTIONS(5337), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5337), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5337), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5337), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5343), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5302), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2192] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2203), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2203), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5306), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5306), + [anon_sym_POUND] = ACTIONS(5308), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5306), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5306), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5306), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2193] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2200), - [sym_concatenation] = STATE(2200), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5337), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5339), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5337), - [anon_sym_EQ] = ACTIONS(5337), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5337), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5341), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5337), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2194] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2204), - [sym_concatenation] = STATE(2204), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5347), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5349), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5347), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5347), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5353), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5347), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2203), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2203), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5306), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5306), + [anon_sym_POUND] = ACTIONS(5308), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5306), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5306), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5306), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5312), }, [2195] = { - [sym_command_substitution] = STATE(2205), - [aux_sym__literal_repeat1] = STATE(2206), + [sym_expansion] = STATE(2205), + [sym_concatenation] = STATE(2206), [sym_string] = STATE(2205), + [sym_command_substitution] = STATE(2205), [sym_process_substitution] = STATE(2205), + [aux_sym__literal_repeat1] = STATE(2207), [sym_simple_expansion] = STATE(2205), + [sym_arithmetic_expansion] = STATE(2205), [sym_string_expansion] = STATE(2205), - [sym_concatenation] = STATE(2207), - [sym_expansion] = STATE(2205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5355), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5341), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5357), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5310), + [sym_word] = ACTIONS(5314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5316), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2196] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2209), [sym_concatenation] = STATE(2209), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5359), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5361), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5363), - [anon_sym_DASH] = ACTIONS(5359), - [anon_sym_COLON_DASH] = ACTIONS(5359), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5359), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5359), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5365), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2209), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5318), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5318), + [anon_sym_POUND] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5318), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5318), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5318), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5324), }, [2197] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5363), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2198] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5367), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(5310), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [2199] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2210), - [sym_concatenation] = STATE(2210), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5369), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5371), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5373), - [anon_sym_DASH] = ACTIONS(5369), - [anon_sym_COLON_DASH] = ACTIONS(5369), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5369), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5369), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(5310), + [sym_comment] = ACTIONS(53), }, [2200] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5373), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5326), + [sym_comment] = ACTIONS(53), }, [2201] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2210), [sym_concatenation] = STATE(2210), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5369), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5371), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5373), - [anon_sym_DASH] = ACTIONS(5369), - [anon_sym_COLON_DASH] = ACTIONS(5369), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5369), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5369), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5375), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2210), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5328), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_POUND] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5328), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_EQ] = ACTIONS(5328), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5328), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2202] = { - [sym_command_substitution] = STATE(2212), - [aux_sym__literal_repeat1] = STATE(2213), - [sym_string] = STATE(2212), - [sym_process_substitution] = STATE(2212), - [sym_simple_expansion] = STATE(2212), - [sym_string_expansion] = STATE(2212), - [sym_concatenation] = STATE(2214), - [sym_expansion] = STATE(2212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5377), - [sym_word] = ACTIONS(5379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5377), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5373), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5379), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2203] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2216), - [sym_concatenation] = STATE(2216), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5381), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5383), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_COLON_DASH] = ACTIONS(5381), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5381), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5381), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5381), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5387), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2204] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2211), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2211), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5336), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_POUND] = ACTIONS(5338), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5336), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5336), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5336), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2205] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5373), - [sym__concat] = ACTIONS(1298), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(5334), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [2206] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5389), - [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5334), + [sym_comment] = ACTIONS(53), }, [2207] = { - [anon_sym_RBRACE] = ACTIONS(5373), - [sym_comment] = ACTIONS(41), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5340), + [sym_comment] = ACTIONS(53), }, [2208] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2217), - [sym_concatenation] = STATE(2217), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5391), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5393), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(5391), - [anon_sym_COLON_DASH] = ACTIONS(5391), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5391), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5391), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5391), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2212), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2212), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5342), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5342), + [anon_sym_POUND] = ACTIONS(5344), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5342), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5342), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5342), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2209] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5395), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2210] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5397), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2211] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2218), - [sym_concatenation] = STATE(2218), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5399), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5401), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5397), - [anon_sym_DASH] = ACTIONS(5399), - [anon_sym_COLON_DASH] = ACTIONS(5399), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5399), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5399), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5399), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2212] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5397), - [sym__concat] = ACTIONS(1298), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2213] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5403), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2216), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5354), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5356), }, [2214] = { - [anon_sym_RBRACE] = ACTIONS(5397), - [sym_comment] = ACTIONS(41), + [sym_string] = STATE(1191), + [anon_sym_0] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_POUND] = ACTIONS(3014), + [anon_sym_QMARK] = ACTIONS(3052), + [aux_sym__simple_variable_name_token1] = ACTIONS(3010), + [anon_sym__] = ACTIONS(3010), + [sym_comment] = ACTIONS(3), + [sym_raw_string] = ACTIONS(3016), + [anon_sym_DOLLAR] = ACTIONS(3014), + [anon_sym_AT] = ACTIONS(3052), }, [2215] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2219), - [sym_concatenation] = STATE(2219), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5405), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5407), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5409), - [anon_sym_DASH] = ACTIONS(5405), - [anon_sym_COLON_DASH] = ACTIONS(5405), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5405), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5405), - [sym__special_character] = ACTIONS(459), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(5358), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2216] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5409), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_command_substitution] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5360), }, [2217] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5362), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [2218] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5413), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(5364), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [2219] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5415), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(5364), + [sym_comment] = ACTIONS(53), }, [2220] = { - [sym_string] = STATE(1233), - [anon_sym__] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(5417), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_0] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(5417), - [aux_sym__simple_variable_name_token1] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(5417), - [anon_sym_AT] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5417), - [sym_raw_string] = ACTIONS(5421), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5366), + [sym_comment] = ACTIONS(53), }, [2221] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2228), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5425), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(1198), + [sym_string] = STATE(1198), + [sym_command_substitution] = STATE(1198), + [sym_process_substitution] = STATE(1198), + [sym_simple_expansion] = STATE(1198), + [sym_arithmetic_expansion] = STATE(1198), + [sym_string_expansion] = STATE(1198), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(3001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(3001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_ansii_c_string] = ACTIONS(3003), + [sym__special_character] = ACTIONS(3003), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(1118), }, [2222] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5427), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2227), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2227), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5368), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5368), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_POUND] = ACTIONS(5370), + [anon_sym_DASH] = ACTIONS(5368), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5368), + [anon_sym_RBRACE] = ACTIONS(5372), + [anon_sym_PERCENT] = ACTIONS(5368), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2223] = { - [anon_sym_RPAREN] = ACTIONS(5429), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2232), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2232), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5376), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5376), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5376), + [anon_sym_POUND] = ACTIONS(5378), + [anon_sym_DASH] = ACTIONS(5376), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5376), + [anon_sym_RBRACE] = ACTIONS(5380), + [anon_sym_PERCENT] = ACTIONS(5376), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2224] = { - [sym_command_substitution] = STATE(1240), - [sym_simple_expansion] = STATE(1240), - [sym_string_expansion] = STATE(1240), - [sym_string] = STATE(1240), - [sym_process_substitution] = STATE(1240), - [sym_expansion] = STATE(1240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2925), - [sym_word] = ACTIONS(2927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2929), - [anon_sym_DOLLAR] = ACTIONS(2432), - [anon_sym_LT_LPAREN] = ACTIONS(2933), - [sym_ansii_c_string] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2935), - [anon_sym_GT_LPAREN] = ACTIONS(2933), - [sym__special_character] = ACTIONS(2925), - [sym_number] = ACTIONS(2927), + [anon_sym_BQUOTE] = ACTIONS(5384), + [sym_comment] = ACTIONS(53), }, [2225] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2232), - [sym_concatenation] = STATE(2232), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5431), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5433), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5435), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5431), - [anon_sym_EQ] = ACTIONS(5431), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5431), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5437), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5431), - [sym__special_character] = ACTIONS(459), + [anon_sym_0] = ACTIONS(433), + [sym__string_content] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DQUOTE] = ACTIONS(5386), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2226] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2237), - [sym_concatenation] = STATE(2237), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5439), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5441), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5443), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5439), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5439), - [anon_sym_EQ] = ACTIONS(5439), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5439), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5445), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5439), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2234), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2234), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5388), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5388), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_POUND] = ACTIONS(5390), + [anon_sym_DASH] = ACTIONS(5388), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5392), + [anon_sym_PERCENT] = ACTIONS(5388), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5394), }, [2227] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5447), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5392), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2228] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5447), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2234), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2234), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5388), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5388), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_POUND] = ACTIONS(5390), + [anon_sym_DASH] = ACTIONS(5388), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5392), + [anon_sym_PERCENT] = ACTIONS(5388), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5396), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2229] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5451), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2238), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2238), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5398), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5398), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_POUND] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5398), + [anon_sym_RBRACE] = ACTIONS(5402), + [anon_sym_PERCENT] = ACTIONS(5398), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2230] = { - [anon_sym_RPAREN] = ACTIONS(5451), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(2239), + [sym_concatenation] = STATE(2240), + [sym_string] = STATE(2239), + [sym_command_substitution] = STATE(2239), + [sym_process_substitution] = STATE(2239), + [aux_sym__literal_repeat1] = STATE(2241), + [sym_simple_expansion] = STATE(2239), + [sym_arithmetic_expansion] = STATE(2239), + [sym_string_expansion] = STATE(2239), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5392), + [sym_word] = ACTIONS(5406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5408), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5408), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2231] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2240), - [sym_concatenation] = STATE(2240), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5453), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5455), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5457), - [anon_sym_DASH] = ACTIONS(5453), - [anon_sym_COLON_DASH] = ACTIONS(5453), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5453), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5453), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5453), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2243), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2243), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5410), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5410), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5410), + [anon_sym_POUND] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5410), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(5414), + [anon_sym_PERCENT] = ACTIONS(5410), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5416), }, [2232] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5457), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5414), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2233] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2240), - [sym_concatenation] = STATE(2240), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5453), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5455), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5461), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5453), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5453), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5453), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5457), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5453), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2244), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2244), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5418), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5418), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5418), + [anon_sym_POUND] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5418), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5418), + [anon_sym_RBRACE] = ACTIONS(5422), + [anon_sym_PERCENT] = ACTIONS(5418), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2234] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2244), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5422), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2235] = { + [sym_expansion] = STATE(141), [sym_concatenation] = STATE(2244), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5463), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5465), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5467), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5463), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5463), - [anon_sym_EQ] = ACTIONS(5463), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5463), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5469), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5463), - [sym__special_character] = ACTIONS(459), - }, - [2235] = { - [sym_command_substitution] = STATE(2245), - [aux_sym__literal_repeat1] = STATE(2246), - [sym_string] = STATE(2245), - [sym_process_substitution] = STATE(2245), - [sym_simple_expansion] = STATE(2245), - [sym_string_expansion] = STATE(2245), - [sym_concatenation] = STATE(2247), - [sym_expansion] = STATE(2245), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5471), - [sym_word] = ACTIONS(5473), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5471), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5457), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5473), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2244), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5418), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5418), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5418), + [anon_sym_POUND] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5418), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5418), + [anon_sym_RBRACE] = ACTIONS(5422), + [anon_sym_PERCENT] = ACTIONS(5418), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5424), }, [2236] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2249), - [sym_concatenation] = STATE(2249), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5475), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5477), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5475), - [anon_sym_COLON_DASH] = ACTIONS(5475), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5475), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5475), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5475), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5481), + [sym_expansion] = STATE(2246), + [sym_concatenation] = STATE(2247), + [sym_string] = STATE(2246), + [sym_command_substitution] = STATE(2246), + [sym_process_substitution] = STATE(2246), + [aux_sym__literal_repeat1] = STATE(2248), + [sym_simple_expansion] = STATE(2246), + [sym_arithmetic_expansion] = STATE(2246), + [sym_string_expansion] = STATE(2246), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5422), + [sym_word] = ACTIONS(5426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5428), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5428), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2237] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2250), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2250), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5430), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5430), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5430), + [anon_sym_POUND] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5430), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5430), + [anon_sym_RBRACE] = ACTIONS(5434), + [anon_sym_PERCENT] = ACTIONS(5430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5436), }, [2238] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5483), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5434), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2239] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2250), - [sym_concatenation] = STATE(2250), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5485), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5487), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5489), - [anon_sym_DASH] = ACTIONS(5485), - [anon_sym_COLON_DASH] = ACTIONS(5485), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5485), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5485), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5485), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5422), + [sym__concat] = ACTIONS(1422), }, [2240] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5489), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(5422), + [sym_comment] = ACTIONS(53), }, [2241] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2250), - [sym_concatenation] = STATE(2250), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5485), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5487), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5489), - [anon_sym_DASH] = ACTIONS(5485), - [anon_sym_COLON_DASH] = ACTIONS(5485), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5485), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5485), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5485), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5491), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5438), }, [2242] = { - [sym_command_substitution] = STATE(2252), - [aux_sym__literal_repeat1] = STATE(2253), - [sym_string] = STATE(2252), - [sym_process_substitution] = STATE(2252), - [sym_simple_expansion] = STATE(2252), - [sym_string_expansion] = STATE(2252), - [sym_concatenation] = STATE(2254), - [sym_expansion] = STATE(2252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5493), - [sym_word] = ACTIONS(5495), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5493), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5489), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5495), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2251), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2251), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5440), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5440), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5440), + [anon_sym_POUND] = ACTIONS(5442), + [anon_sym_DASH] = ACTIONS(5440), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5440), + [anon_sym_RBRACE] = ACTIONS(5444), + [anon_sym_PERCENT] = ACTIONS(5440), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2243] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2256), - [sym_concatenation] = STATE(2256), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5497), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5499), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5501), - [anon_sym_DASH] = ACTIONS(5497), - [anon_sym_COLON_DASH] = ACTIONS(5497), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5497), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5497), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5497), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5503), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5444), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2244] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5501), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5446), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2245] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5489), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2252), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2252), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5448), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5448), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5448), + [anon_sym_POUND] = ACTIONS(5450), + [anon_sym_DASH] = ACTIONS(5448), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5448), + [anon_sym_RBRACE] = ACTIONS(5446), + [anon_sym_PERCENT] = ACTIONS(5448), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2246] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5505), - [sym_comment] = ACTIONS(41), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5446), + [sym__concat] = ACTIONS(1422), }, [2247] = { - [anon_sym_RBRACE] = ACTIONS(5489), - [sym_comment] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(5446), + [sym_comment] = ACTIONS(53), }, [2248] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2257), - [sym_concatenation] = STATE(2257), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5507), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5509), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5511), - [anon_sym_DASH] = ACTIONS(5507), - [anon_sym_COLON_DASH] = ACTIONS(5507), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5507), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5507), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5507), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5452), }, [2249] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5511), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2253), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2253), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5454), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5454), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5454), + [anon_sym_POUND] = ACTIONS(5456), + [anon_sym_DASH] = ACTIONS(5454), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5454), + [anon_sym_RBRACE] = ACTIONS(5458), + [anon_sym_PERCENT] = ACTIONS(5454), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2250] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5458), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2251] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2258), - [sym_concatenation] = STATE(2258), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5515), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5517), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5513), - [anon_sym_DASH] = ACTIONS(5515), - [anon_sym_COLON_DASH] = ACTIONS(5515), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5515), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5515), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5515), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5460), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2252] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5513), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5462), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2253] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5519), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5464), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2254] = { - [anon_sym_RBRACE] = ACTIONS(5513), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2257), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5466), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5468), }, [2255] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2259), - [sym_concatenation] = STATE(2259), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5523), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5525), - [anon_sym_DASH] = ACTIONS(5521), - [anon_sym_COLON_DASH] = ACTIONS(5521), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5521), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5521), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5521), - [sym__special_character] = ACTIONS(459), + [sym_string] = STATE(1224), + [anon_sym_POUND] = ACTIONS(5470), + [anon_sym_0] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(5472), + [aux_sym__simple_variable_name_token1] = ACTIONS(3032), + [anon_sym__] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(5470), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(5472), + [anon_sym_DASH] = ACTIONS(5470), + [sym_raw_string] = ACTIONS(5474), + [anon_sym_DOLLAR] = ACTIONS(5470), + [anon_sym_AT] = ACTIONS(5472), }, [2256] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5525), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5476), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2257] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5527), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5476), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5478), }, [2258] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5480), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [2259] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5531), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(5482), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), }, [2260] = { - [sym_string] = STATE(1265), - [anon_sym__] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(5533), - [anon_sym_STAR] = ACTIONS(5535), - [anon_sym_0] = ACTIONS(3003), - [anon_sym_BANG] = ACTIONS(5533), - [aux_sym__simple_variable_name_token1] = ACTIONS(3003), - [anon_sym_DOLLAR] = ACTIONS(5533), - [anon_sym_AT] = ACTIONS(5535), - [anon_sym_DASH] = ACTIONS(5533), - [sym_raw_string] = ACTIONS(5537), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5535), + [anon_sym_RPAREN] = ACTIONS(5482), + [sym_comment] = ACTIONS(53), }, [2261] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2268), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5539), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(5484), + [sym_comment] = ACTIONS(53), }, [2262] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5543), + [sym_expansion] = STATE(1231), + [sym_string_expansion] = STATE(1231), + [sym_simple_expansion] = STATE(1231), + [sym_string] = STATE(1231), + [sym_command_substitution] = STATE(1231), + [sym_process_substitution] = STATE(1231), + [sym_arithmetic_expansion] = STATE(1231), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [sym_number] = ACTIONS(3023), + [sym__special_character] = ACTIONS(3025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1168), + [sym_raw_string] = ACTIONS(3025), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), + [sym_word] = ACTIONS(3023), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1170), + [sym_ansii_c_string] = ACTIONS(3025), }, [2263] = { - [anon_sym_RPAREN] = ACTIONS(5545), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(2268), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2268), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5486), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5486), + [anon_sym_POUND] = ACTIONS(5488), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5486), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5490), + [anon_sym_EQ] = ACTIONS(5486), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5486), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5492), }, [2264] = { - [sym_command_substitution] = STATE(1272), - [sym_simple_expansion] = STATE(1272), - [sym_string_expansion] = STATE(1272), - [sym_string] = STATE(1272), - [sym_process_substitution] = STATE(1272), - [sym_expansion] = STATE(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2949), - [sym_word] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2953), - [anon_sym_DOLLAR] = ACTIONS(2452), - [anon_sym_LT_LPAREN] = ACTIONS(2957), - [sym_ansii_c_string] = ACTIONS(2949), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2957), - [sym__special_character] = ACTIONS(2949), - [sym_number] = ACTIONS(2951), + [sym_concatenation] = STATE(2273), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2273), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5494), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5494), + [anon_sym_POUND] = ACTIONS(5496), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5494), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5498), + [anon_sym_EQ] = ACTIONS(5494), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5494), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5500), }, [2265] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2272), - [sym_concatenation] = STATE(2272), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5547), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5549), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5551), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5547), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5547), - [anon_sym_EQ] = ACTIONS(5547), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5547), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5553), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5547), - [sym__special_character] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(5502), + [sym_comment] = ACTIONS(53), }, [2266] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2277), - [sym_concatenation] = STATE(2277), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5555), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5557), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5559), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5555), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5555), - [anon_sym_EQ] = ACTIONS(5555), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5561), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5555), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5504), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2267] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5563), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_concatenation] = STATE(2275), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2275), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5506), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5506), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5506), + [anon_sym_POUND] = ACTIONS(5508), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5506), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_EQ] = ACTIONS(5506), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5506), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5512), }, [2268] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5563), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2269] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5567), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_concatenation] = STATE(2275), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2275), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5506), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5506), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5506), + [anon_sym_POUND] = ACTIONS(5508), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5506), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5510), + [anon_sym_EQ] = ACTIONS(5506), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5506), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5514), }, [2270] = { - [anon_sym_RPAREN] = ACTIONS(5567), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(2279), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2279), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5516), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5516), + [anon_sym_POUND] = ACTIONS(5518), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5516), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5520), + [anon_sym_EQ] = ACTIONS(5516), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5516), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5522), }, [2271] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2280), - [sym_concatenation] = STATE(2280), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5569), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5571), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5573), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_COLON_DASH] = ACTIONS(5569), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5569), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5569), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5575), + [sym_expansion] = STATE(2280), + [sym_concatenation] = STATE(2281), + [sym_string] = STATE(2280), + [sym_command_substitution] = STATE(2280), + [sym_process_substitution] = STATE(2280), + [aux_sym__literal_repeat1] = STATE(2282), + [sym_simple_expansion] = STATE(2280), + [sym_arithmetic_expansion] = STATE(2280), + [sym_string_expansion] = STATE(2280), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5510), + [sym_word] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5526), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5526), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2272] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5573), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2284), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2284), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5528), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5528), + [anon_sym_POUND] = ACTIONS(5530), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5528), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5532), + [anon_sym_EQ] = ACTIONS(5528), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5528), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5534), }, [2273] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2280), - [sym_concatenation] = STATE(2280), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5569), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5571), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5577), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5569), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5569), - [anon_sym_EQ] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5569), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5573), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5569), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5532), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2274] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2284), - [sym_concatenation] = STATE(2284), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5579), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5581), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5583), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5579), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5579), - [anon_sym_EQ] = ACTIONS(5579), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5579), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5585), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5579), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2285), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2285), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5536), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5536), + [anon_sym_POUND] = ACTIONS(5538), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5536), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(5536), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5536), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2275] = { - [sym_command_substitution] = STATE(2285), - [aux_sym__literal_repeat1] = STATE(2286), - [sym_string] = STATE(2285), - [sym_process_substitution] = STATE(2285), - [sym_simple_expansion] = STATE(2285), - [sym_string_expansion] = STATE(2285), - [sym_concatenation] = STATE(2287), - [sym_expansion] = STATE(2285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5587), - [sym_word] = ACTIONS(5589), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5587), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5573), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5589), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2276] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2289), - [sym_concatenation] = STATE(2289), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5591), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5593), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5595), - [anon_sym_DASH] = ACTIONS(5591), - [anon_sym_COLON_DASH] = ACTIONS(5591), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5591), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5591), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5591), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5597), + [sym_concatenation] = STATE(2285), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2285), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5536), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5536), + [anon_sym_POUND] = ACTIONS(5538), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5536), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(5536), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5536), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5542), }, [2277] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5595), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(2287), + [sym_concatenation] = STATE(2288), + [sym_string] = STATE(2287), + [sym_command_substitution] = STATE(2287), + [sym_process_substitution] = STATE(2287), + [aux_sym__literal_repeat1] = STATE(2289), + [sym_simple_expansion] = STATE(2287), + [sym_arithmetic_expansion] = STATE(2287), + [sym_string_expansion] = STATE(2287), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5540), + [sym_word] = ACTIONS(5544), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5546), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5546), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2278] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5599), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_concatenation] = STATE(2291), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2291), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5548), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5548), + [anon_sym_POUND] = ACTIONS(5550), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5548), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5552), + [anon_sym_EQ] = ACTIONS(5548), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5548), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [sym_regex] = ACTIONS(5554), }, [2279] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2290), - [sym_concatenation] = STATE(2290), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5601), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5603), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5605), - [anon_sym_DASH] = ACTIONS(5601), - [anon_sym_COLON_DASH] = ACTIONS(5601), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5601), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5601), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5601), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5552), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2280] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5605), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(5540), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [2281] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2290), - [sym_concatenation] = STATE(2290), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5601), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5603), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5605), - [anon_sym_DASH] = ACTIONS(5601), - [anon_sym_COLON_DASH] = ACTIONS(5601), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5601), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5601), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5601), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5607), + [anon_sym_RBRACE] = ACTIONS(5540), + [sym_comment] = ACTIONS(53), }, [2282] = { - [sym_command_substitution] = STATE(2292), - [aux_sym__literal_repeat1] = STATE(2293), - [sym_string] = STATE(2292), - [sym_process_substitution] = STATE(2292), - [sym_simple_expansion] = STATE(2292), - [sym_string_expansion] = STATE(2292), - [sym_concatenation] = STATE(2294), - [sym_expansion] = STATE(2292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5609), - [sym_word] = ACTIONS(5611), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5609), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5605), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5611), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5556), + [sym_comment] = ACTIONS(53), }, [2283] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2296), - [sym_concatenation] = STATE(2296), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5613), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5615), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5617), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_COLON_DASH] = ACTIONS(5613), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5613), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5613), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5613), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5619), + [sym_concatenation] = STATE(2292), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2292), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5558), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5558), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5560), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5558), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5558), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5558), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2284] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5617), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2285] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5605), - [sym__concat] = ACTIONS(1298), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2286] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5621), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(2293), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2293), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5566), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5566), + [anon_sym_POUND] = ACTIONS(5568), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5566), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(5566), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5566), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2287] = { - [anon_sym_RBRACE] = ACTIONS(5605), - [sym_comment] = ACTIONS(41), + [aux_sym_concatenation_repeat1] = STATE(1155), + [anon_sym_RBRACE] = ACTIONS(5564), + [sym__concat] = ACTIONS(1422), + [sym_comment] = ACTIONS(53), }, [2288] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2297), - [sym_concatenation] = STATE(2297), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5625), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5627), - [anon_sym_DASH] = ACTIONS(5623), - [anon_sym_COLON_DASH] = ACTIONS(5623), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5623), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5623), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5623), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(5564), + [sym_comment] = ACTIONS(53), }, [2289] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5627), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5570), + [sym_comment] = ACTIONS(53), }, [2290] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5629), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(2294), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2294), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(5572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(5572), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5572), + [anon_sym_POUND] = ACTIONS(5574), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(5572), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5576), + [anon_sym_EQ] = ACTIONS(5572), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(5572), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2291] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2298), - [sym_concatenation] = STATE(2298), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5631), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5633), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5629), - [anon_sym_DASH] = ACTIONS(5631), - [anon_sym_COLON_DASH] = ACTIONS(5631), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5631), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5631), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5631), - [sym__special_character] = ACTIONS(459), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5576), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2292] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5629), - [sym__concat] = ACTIONS(1298), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5578), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2293] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5635), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5580), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2294] = { - [anon_sym_RBRACE] = ACTIONS(5629), - [sym_comment] = ACTIONS(41), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [sym_expansion] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [sym_word] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(5582), + [anon_sym_EQ] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), }, [2295] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2299), - [sym_concatenation] = STATE(2299), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5637), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5639), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5641), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_COLON_DASH] = ACTIONS(5637), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5637), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5637), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5637), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2298), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5584), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5586), }, [2296] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5641), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_string] = STATE(1257), + [anon_sym_POUND] = ACTIONS(5588), + [anon_sym_0] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(5590), + [aux_sym__simple_variable_name_token1] = ACTIONS(3102), + [anon_sym__] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(5588), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(5590), + [anon_sym_DASH] = ACTIONS(5588), + [sym_raw_string] = ACTIONS(5592), + [anon_sym_DOLLAR] = ACTIONS(5588), + [anon_sym_AT] = ACTIONS(5590), }, [2297] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5594), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2298] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5645), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5594), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5596), }, [2299] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5647), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5598), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [2300] = { - [sym_string] = STATE(1297), - [anon_sym__] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_POUND] = ACTIONS(5649), - [anon_sym_STAR] = ACTIONS(5651), - [anon_sym_0] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(5649), - [aux_sym__simple_variable_name_token1] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(5649), - [anon_sym_AT] = ACTIONS(5651), - [anon_sym_DASH] = ACTIONS(5649), - [sym_raw_string] = ACTIONS(5653), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(5651), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(5600), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [2301] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(2308), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5655), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5657), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(5600), + [sym_comment] = ACTIONS(53), }, [2302] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5659), + [anon_sym_RPAREN] = ACTIONS(5602), + [sym_comment] = ACTIONS(53), }, [2303] = { - [anon_sym_RPAREN] = ACTIONS(5661), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(1264), + [sym_string_expansion] = STATE(1264), + [sym_simple_expansion] = STATE(1264), + [sym_string] = STATE(1264), + [sym_command_substitution] = STATE(1264), + [sym_process_substitution] = STATE(1264), + [sym_arithmetic_expansion] = STATE(1264), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_number] = ACTIONS(3043), + [sym__special_character] = ACTIONS(3045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), + [anon_sym_BQUOTE] = ACTIONS(1820), + [sym_raw_string] = ACTIONS(3045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [sym_word] = ACTIONS(3043), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1804), + [sym_ansii_c_string] = ACTIONS(3045), }, [2304] = { - [sym_command_substitution] = STATE(1304), - [sym_simple_expansion] = STATE(1304), - [sym_string_expansion] = STATE(1304), - [sym_string] = STATE(1304), - [sym_process_substitution] = STATE(1304), - [sym_expansion] = STATE(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2979), - [sym_word] = ACTIONS(2981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2983), - [anon_sym_DOLLAR] = ACTIONS(3817), - [anon_sym_LT_LPAREN] = ACTIONS(2987), - [sym_ansii_c_string] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2989), - [anon_sym_GT_LPAREN] = ACTIONS(2987), - [sym__special_character] = ACTIONS(2979), - [sym_number] = ACTIONS(2981), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2309), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2309), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5604), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5604), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5604), + [anon_sym_POUND] = ACTIONS(5606), + [anon_sym_DASH] = ACTIONS(5604), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5604), + [anon_sym_RBRACE] = ACTIONS(5608), + [anon_sym_PERCENT] = ACTIONS(5604), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5610), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2305] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2312), - [sym_concatenation] = STATE(2312), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5663), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5665), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5667), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5663), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5663), - [anon_sym_EQ] = ACTIONS(5663), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5663), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5669), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5663), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2314), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2314), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5612), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5612), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5612), + [anon_sym_POUND] = ACTIONS(5614), + [anon_sym_DASH] = ACTIONS(5612), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5612), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_PERCENT] = ACTIONS(5612), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2306] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2317), - [sym_concatenation] = STATE(2317), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5671), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5673), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5675), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5671), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5671), - [anon_sym_EQ] = ACTIONS(5671), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5671), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5677), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5671), - [sym__special_character] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(5620), + [sym_comment] = ACTIONS(53), }, [2307] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5679), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5622), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2308] = { - [sym_command_substitution] = STATE(81), - [sym_simple_expansion] = STATE(81), - [aux_sym_string_repeat1] = STATE(160), - [sym_expansion] = STATE(81), - [anon_sym_DOLLAR] = ACTIONS(5681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(5679), - [anon_sym_BQUOTE] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [sym__string_content] = ACTIONS(277), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2316), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2316), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5624), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_POUND] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5624), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5624), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_PERCENT] = ACTIONS(5624), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5630), }, [2309] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5683), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2310] = { - [anon_sym_RPAREN] = ACTIONS(5683), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2316), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2316), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5624), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_POUND] = ACTIONS(5626), + [anon_sym_DASH] = ACTIONS(5624), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5624), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_PERCENT] = ACTIONS(5624), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5632), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2311] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2320), + [sym_expansion] = STATE(141), [sym_concatenation] = STATE(2320), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5685), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5687), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5689), - [anon_sym_DASH] = ACTIONS(5685), - [anon_sym_COLON_DASH] = ACTIONS(5685), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5685), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5685), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5685), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5691), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2320), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5634), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5634), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5634), + [anon_sym_POUND] = ACTIONS(5636), + [anon_sym_DASH] = ACTIONS(5634), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5634), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_PERCENT] = ACTIONS(5634), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5640), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2312] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5689), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(2321), + [sym_concatenation] = STATE(2322), + [sym_string] = STATE(2321), + [sym_command_substitution] = STATE(2321), + [sym_process_substitution] = STATE(2321), + [aux_sym__literal_repeat1] = STATE(2323), + [sym_simple_expansion] = STATE(2321), + [sym_arithmetic_expansion] = STATE(2321), + [sym_string_expansion] = STATE(2321), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5628), + [sym_word] = ACTIONS(5642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5644), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5644), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2313] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2320), - [sym_concatenation] = STATE(2320), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5685), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5687), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5685), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5685), - [anon_sym_EQ] = ACTIONS(5685), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5685), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5689), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5685), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2325), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2325), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5646), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5646), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5646), + [anon_sym_POUND] = ACTIONS(5648), + [anon_sym_DASH] = ACTIONS(5646), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5646), + [anon_sym_RBRACE] = ACTIONS(5650), + [anon_sym_PERCENT] = ACTIONS(5646), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5652), }, [2314] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2324), - [sym_concatenation] = STATE(2324), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5695), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5697), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5695), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5695), - [anon_sym_EQ] = ACTIONS(5695), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5695), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5701), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5695), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5650), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2315] = { - [sym_command_substitution] = STATE(2325), - [aux_sym__literal_repeat1] = STATE(2326), - [sym_string] = STATE(2325), - [sym_process_substitution] = STATE(2325), - [sym_simple_expansion] = STATE(2325), - [sym_string_expansion] = STATE(2325), - [sym_concatenation] = STATE(2327), - [sym_expansion] = STATE(2325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5703), - [sym_word] = ACTIONS(5705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5703), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5689), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5705), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2326), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2326), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5654), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5654), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5654), + [anon_sym_POUND] = ACTIONS(5656), + [anon_sym_DASH] = ACTIONS(5654), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5654), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_PERCENT] = ACTIONS(5654), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2316] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2329), - [sym_concatenation] = STATE(2329), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5707), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5709), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5711), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_COLON_DASH] = ACTIONS(5707), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5707), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5707), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5707), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5713), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2317] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5711), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2326), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2326), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5654), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5654), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5654), + [anon_sym_POUND] = ACTIONS(5656), + [anon_sym_DASH] = ACTIONS(5654), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5654), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_PERCENT] = ACTIONS(5654), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5660), }, [2318] = { - [anon_sym__] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(5715), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_0] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(591), - [aux_sym__simple_variable_name_token1] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(591), - [sym__string_content] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(587), + [sym_expansion] = STATE(2328), + [sym_concatenation] = STATE(2329), + [sym_string] = STATE(2328), + [sym_command_substitution] = STATE(2328), + [sym_process_substitution] = STATE(2328), + [aux_sym__literal_repeat1] = STATE(2330), + [sym_simple_expansion] = STATE(2328), + [sym_arithmetic_expansion] = STATE(2328), + [sym_string_expansion] = STATE(2328), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5662), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5658), + [sym_word] = ACTIONS(5662), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5664), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5664), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2319] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2330), - [sym_concatenation] = STATE(2330), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5717), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5719), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5721), - [anon_sym_DASH] = ACTIONS(5717), - [anon_sym_COLON_DASH] = ACTIONS(5717), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5717), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5717), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5717), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2332), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2332), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5666), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5666), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5666), + [anon_sym_POUND] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5666), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5666), + [anon_sym_RBRACE] = ACTIONS(5670), + [anon_sym_PERCENT] = ACTIONS(5666), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5672), }, [2320] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5721), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5670), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2321] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2330), - [sym_concatenation] = STATE(2330), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5717), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5719), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5721), - [anon_sym_DASH] = ACTIONS(5717), - [anon_sym_COLON_DASH] = ACTIONS(5717), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5717), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5717), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5717), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5723), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5658), + [sym__concat] = ACTIONS(1422), }, [2322] = { - [sym_command_substitution] = STATE(2332), - [aux_sym__literal_repeat1] = STATE(2333), - [sym_string] = STATE(2332), - [sym_process_substitution] = STATE(2332), - [sym_simple_expansion] = STATE(2332), - [sym_string_expansion] = STATE(2332), - [sym_concatenation] = STATE(2334), - [sym_expansion] = STATE(2332), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5725), - [sym_word] = ACTIONS(5727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5725), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5721), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5727), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(5658), + [sym_comment] = ACTIONS(53), }, [2323] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2336), - [sym_concatenation] = STATE(2336), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5729), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5731), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5733), - [anon_sym_DASH] = ACTIONS(5729), - [anon_sym_COLON_DASH] = ACTIONS(5729), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5729), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5729), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5729), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5735), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5674), }, [2324] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5733), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2333), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2333), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5676), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5676), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5676), + [anon_sym_POUND] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5676), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5676), + [anon_sym_RBRACE] = ACTIONS(5680), + [anon_sym_PERCENT] = ACTIONS(5676), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2325] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5721), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5680), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2326] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5737), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2327] = { - [anon_sym_RBRACE] = ACTIONS(5721), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2334), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2334), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5684), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5684), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5684), + [anon_sym_POUND] = ACTIONS(5686), + [anon_sym_DASH] = ACTIONS(5684), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5684), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_PERCENT] = ACTIONS(5684), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2328] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2337), - [sym_concatenation] = STATE(2337), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5739), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5741), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5743), - [anon_sym_DASH] = ACTIONS(5739), - [anon_sym_COLON_DASH] = ACTIONS(5739), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5739), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5739), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5739), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5682), + [sym__concat] = ACTIONS(1422), }, [2329] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5743), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(5682), + [sym_comment] = ACTIONS(53), }, [2330] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5688), }, [2331] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2338), - [sym_concatenation] = STATE(2338), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5747), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5749), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(5747), - [anon_sym_COLON_DASH] = ACTIONS(5747), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5747), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5747), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5747), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2335), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2335), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5690), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5690), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5690), + [anon_sym_POUND] = ACTIONS(5692), + [anon_sym_DASH] = ACTIONS(5690), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5690), + [anon_sym_RBRACE] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2332] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5745), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2333] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5751), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5696), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2334] = { - [anon_sym_RBRACE] = ACTIONS(5745), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2335] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2339), - [sym_concatenation] = STATE(2339), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5753), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5755), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5757), - [anon_sym_DASH] = ACTIONS(5753), - [anon_sym_COLON_DASH] = ACTIONS(5753), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5753), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5753), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5753), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5700), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2336] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5757), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2339), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5702), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5704), }, [2337] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5759), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_string] = STATE(1290), + [anon_sym_POUND] = ACTIONS(5706), + [anon_sym_0] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(5708), + [aux_sym__simple_variable_name_token1] = ACTIONS(3134), + [anon_sym__] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(3067), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(5708), + [anon_sym_DASH] = ACTIONS(5706), + [sym_raw_string] = ACTIONS(5710), + [anon_sym_DOLLAR] = ACTIONS(5706), + [anon_sym_AT] = ACTIONS(5708), }, [2338] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5761), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2339] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5763), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5712), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5714), }, [2340] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5765), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5716), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, [2341] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2346), - [sym_concatenation] = STATE(2346), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5767), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5769), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5771), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5767), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5767), - [anon_sym_EQ] = ACTIONS(5767), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5767), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5773), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5767), - [sym__special_character] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(5718), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, [2342] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2351), - [sym_concatenation] = STATE(2351), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5775), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5777), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5779), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5775), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5775), - [anon_sym_EQ] = ACTIONS(5775), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5775), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5781), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5775), - [sym__special_character] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(5718), + [sym_comment] = ACTIONS(53), }, [2343] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5783), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(5720), + [sym_comment] = ACTIONS(53), }, [2344] = { - [anon_sym_RPAREN] = ACTIONS(5783), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(1297), + [sym_string_expansion] = STATE(1297), + [sym_simple_expansion] = STATE(1297), + [sym_string] = STATE(1297), + [sym_command_substitution] = STATE(1297), + [sym_process_substitution] = STATE(1297), + [sym_arithmetic_expansion] = STATE(1297), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(3059), + [sym_number] = ACTIONS(3061), + [sym__special_character] = ACTIONS(3063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3069), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(3063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2542), + [sym_word] = ACTIONS(3061), + [anon_sym_LT_LPAREN] = ACTIONS(3059), + [anon_sym_DOLLAR] = ACTIONS(2550), + [sym_ansii_c_string] = ACTIONS(3063), }, [2345] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2353), - [sym_concatenation] = STATE(2353), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5785), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5787), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5789), - [anon_sym_DASH] = ACTIONS(5785), - [anon_sym_COLON_DASH] = ACTIONS(5785), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5785), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5785), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5785), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5791), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2350), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2350), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5722), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5722), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5722), + [anon_sym_POUND] = ACTIONS(5724), + [anon_sym_DASH] = ACTIONS(5722), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5722), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_PERCENT] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5728), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2346] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5789), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2355), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2355), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5730), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5730), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5730), + [anon_sym_POUND] = ACTIONS(5732), + [anon_sym_DASH] = ACTIONS(5730), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_PERCENT] = ACTIONS(5730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5736), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2347] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2353), - [sym_concatenation] = STATE(2353), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5785), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5787), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5793), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5785), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5785), - [anon_sym_EQ] = ACTIONS(5785), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5785), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5789), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5785), - [sym__special_character] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(5738), + [sym_comment] = ACTIONS(53), }, [2348] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2357), - [sym_concatenation] = STATE(2357), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5795), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5797), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5799), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5795), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5795), - [anon_sym_EQ] = ACTIONS(5795), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5795), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5801), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5795), - [sym__special_character] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5740), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), }, [2349] = { - [sym_command_substitution] = STATE(2358), - [aux_sym__literal_repeat1] = STATE(2359), - [sym_string] = STATE(2358), - [sym_process_substitution] = STATE(2358), - [sym_simple_expansion] = STATE(2358), - [sym_string_expansion] = STATE(2358), - [sym_concatenation] = STATE(2360), - [sym_expansion] = STATE(2358), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5803), - [sym_word] = ACTIONS(5805), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5803), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5789), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5805), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2357), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2357), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5742), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5742), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5742), + [anon_sym_POUND] = ACTIONS(5744), + [anon_sym_DASH] = ACTIONS(5742), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5742), + [anon_sym_RBRACE] = ACTIONS(5746), + [anon_sym_PERCENT] = ACTIONS(5742), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5748), }, [2350] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2362), - [sym_concatenation] = STATE(2362), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5807), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5809), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5811), - [anon_sym_DASH] = ACTIONS(5807), - [anon_sym_COLON_DASH] = ACTIONS(5807), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5807), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5807), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5807), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5813), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5746), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2351] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5811), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2357), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2357), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5742), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5742), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5742), + [anon_sym_POUND] = ACTIONS(5744), + [anon_sym_DASH] = ACTIONS(5742), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5742), + [anon_sym_RBRACE] = ACTIONS(5746), + [anon_sym_PERCENT] = ACTIONS(5742), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5750), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2352] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2363), - [sym_concatenation] = STATE(2363), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5817), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5819), - [anon_sym_DASH] = ACTIONS(5815), - [anon_sym_COLON_DASH] = ACTIONS(5815), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5815), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5815), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5815), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2361), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2361), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5752), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5752), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5752), + [anon_sym_POUND] = ACTIONS(5754), + [anon_sym_DASH] = ACTIONS(5752), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5752), + [anon_sym_RBRACE] = ACTIONS(5756), + [anon_sym_PERCENT] = ACTIONS(5752), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5758), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2353] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5819), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(2362), + [sym_concatenation] = STATE(2363), + [sym_string] = STATE(2362), + [sym_command_substitution] = STATE(2362), + [sym_process_substitution] = STATE(2362), + [aux_sym__literal_repeat1] = STATE(2364), + [sym_simple_expansion] = STATE(2362), + [sym_arithmetic_expansion] = STATE(2362), + [sym_string_expansion] = STATE(2362), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5746), + [sym_word] = ACTIONS(5760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5762), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5762), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2354] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2363), - [sym_concatenation] = STATE(2363), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5815), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5817), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5819), - [anon_sym_DASH] = ACTIONS(5815), - [anon_sym_COLON_DASH] = ACTIONS(5815), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5815), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5815), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5815), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5821), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2366), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2366), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5764), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5764), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5764), + [anon_sym_POUND] = ACTIONS(5766), + [anon_sym_DASH] = ACTIONS(5764), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5764), + [anon_sym_RBRACE] = ACTIONS(5768), + [anon_sym_PERCENT] = ACTIONS(5764), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5770), }, [2355] = { - [sym_command_substitution] = STATE(2365), - [aux_sym__literal_repeat1] = STATE(2366), - [sym_string] = STATE(2365), - [sym_process_substitution] = STATE(2365), - [sym_simple_expansion] = STATE(2365), - [sym_string_expansion] = STATE(2365), - [sym_concatenation] = STATE(2367), - [sym_expansion] = STATE(2365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5823), - [sym_word] = ACTIONS(5825), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5823), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5819), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5825), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5768), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2356] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2369), - [sym_concatenation] = STATE(2369), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5827), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5829), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(5827), - [anon_sym_COLON_DASH] = ACTIONS(5827), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5827), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5827), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5827), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5833), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2367), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2367), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5772), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5772), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5772), + [anon_sym_POUND] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5772), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5772), + [anon_sym_RBRACE] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5772), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2357] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5831), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2358] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5819), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2367), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2367), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5772), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5772), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5772), + [anon_sym_POUND] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5772), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5772), + [anon_sym_RBRACE] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5772), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5778), }, [2359] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5835), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(2369), + [sym_concatenation] = STATE(2370), + [sym_string] = STATE(2369), + [sym_command_substitution] = STATE(2369), + [sym_process_substitution] = STATE(2369), + [aux_sym__literal_repeat1] = STATE(2371), + [sym_simple_expansion] = STATE(2369), + [sym_arithmetic_expansion] = STATE(2369), + [sym_string_expansion] = STATE(2369), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5776), + [sym_word] = ACTIONS(5780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5782), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5782), + [anon_sym_DOLLAR] = ACTIONS(1084), }, [2360] = { - [anon_sym_RBRACE] = ACTIONS(5819), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2373), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2373), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5784), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5784), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5784), + [anon_sym_POUND] = ACTIONS(5786), + [anon_sym_DASH] = ACTIONS(5784), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5784), + [anon_sym_RBRACE] = ACTIONS(5788), + [anon_sym_PERCENT] = ACTIONS(5784), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5790), }, [2361] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2370), - [sym_concatenation] = STATE(2370), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5837), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5839), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5841), - [anon_sym_DASH] = ACTIONS(5837), - [anon_sym_COLON_DASH] = ACTIONS(5837), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5837), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5837), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5837), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5788), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2362] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5841), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5776), + [sym__concat] = ACTIONS(1422), }, [2363] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5843), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(5776), + [sym_comment] = ACTIONS(53), }, [2364] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2371), - [sym_concatenation] = STATE(2371), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5845), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5847), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5843), - [anon_sym_DASH] = ACTIONS(5845), - [anon_sym_COLON_DASH] = ACTIONS(5845), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5845), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5845), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5845), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5792), }, [2365] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5843), - [sym__concat] = ACTIONS(1298), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2374), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2374), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5794), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5794), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5794), + [anon_sym_POUND] = ACTIONS(5796), + [anon_sym_DASH] = ACTIONS(5794), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5794), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_PERCENT] = ACTIONS(5794), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2366] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5849), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2367] = { - [anon_sym_RBRACE] = ACTIONS(5843), - [sym_comment] = ACTIONS(41), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5800), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2368] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2372), - [sym_concatenation] = STATE(2372), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5851), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5853), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5855), - [anon_sym_DASH] = ACTIONS(5851), - [anon_sym_COLON_DASH] = ACTIONS(5851), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5851), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5851), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5851), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2375), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2375), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5802), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5802), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5802), + [anon_sym_POUND] = ACTIONS(5804), + [anon_sym_DASH] = ACTIONS(5802), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5802), + [anon_sym_RBRACE] = ACTIONS(5800), + [anon_sym_PERCENT] = ACTIONS(5802), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, [2369] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5855), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5800), + [sym__concat] = ACTIONS(1422), }, [2370] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5857), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(5800), + [sym_comment] = ACTIONS(53), }, [2371] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5859), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5806), }, [2372] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5861), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2376), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2376), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5808), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5808), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5808), + [anon_sym_POUND] = ACTIONS(5810), + [anon_sym_DASH] = ACTIONS(5808), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5808), + [anon_sym_RBRACE] = ACTIONS(5812), + [anon_sym_PERCENT] = ACTIONS(5808), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2373] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5812), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2374] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5814), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2375] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5816), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2376] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5818), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2377] = { + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2380), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5820), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5822), + }, + [2378] = { + [sym_string] = STATE(1323), + [anon_sym_POUND] = ACTIONS(5824), + [anon_sym_0] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(5826), + [aux_sym__simple_variable_name_token1] = ACTIONS(3140), + [anon_sym__] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(5824), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(5826), + [anon_sym_DASH] = ACTIONS(5824), + [sym_raw_string] = ACTIONS(5828), + [anon_sym_DOLLAR] = ACTIONS(5824), + [anon_sym_AT] = ACTIONS(5826), + }, + [2379] = { + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5830), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + }, + [2380] = { + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5830), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5832), + }, + [2381] = { + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5834), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), + }, + [2382] = { + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(5836), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), + }, + [2383] = { + [anon_sym_RPAREN] = ACTIONS(5836), + [sym_comment] = ACTIONS(53), + }, + [2384] = { + [anon_sym_RPAREN] = ACTIONS(5838), + [sym_comment] = ACTIONS(53), + }, + [2385] = { + [sym_expansion] = STATE(1330), + [sym_string_expansion] = STATE(1330), + [sym_simple_expansion] = STATE(1330), + [sym_string] = STATE(1330), + [sym_command_substitution] = STATE(1330), + [sym_process_substitution] = STATE(1330), + [sym_arithmetic_expansion] = STATE(1330), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(3083), + [sym_number] = ACTIONS(3085), + [sym__special_character] = ACTIONS(3087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3095), + [sym_raw_string] = ACTIONS(3087), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), + [sym_word] = ACTIONS(3085), + [anon_sym_LT_LPAREN] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(2572), + [sym_ansii_c_string] = ACTIONS(3087), + }, + [2386] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2391), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2391), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5840), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5840), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5840), + [anon_sym_POUND] = ACTIONS(5842), + [anon_sym_DASH] = ACTIONS(5840), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5840), + [anon_sym_RBRACE] = ACTIONS(5844), + [anon_sym_PERCENT] = ACTIONS(5840), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5846), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2387] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2396), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2396), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5848), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5848), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5848), + [anon_sym_POUND] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5848), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5848), + [anon_sym_RBRACE] = ACTIONS(5852), + [anon_sym_PERCENT] = ACTIONS(5848), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5854), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2388] = { + [anon_sym_BQUOTE] = ACTIONS(5856), + [sym_comment] = ACTIONS(53), + }, + [2389] = { + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5858), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + }, + [2390] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2398), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2398), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5860), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5860), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5860), + [anon_sym_POUND] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(5860), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5860), + [anon_sym_RBRACE] = ACTIONS(5864), + [anon_sym_PERCENT] = ACTIONS(5860), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5866), + }, + [2391] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5864), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2392] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2398), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2398), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5860), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5860), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5860), + [anon_sym_POUND] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(5860), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5860), + [anon_sym_RBRACE] = ACTIONS(5864), + [anon_sym_PERCENT] = ACTIONS(5860), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5868), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2393] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2402), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2402), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5870), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5870), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5870), + [anon_sym_POUND] = ACTIONS(5872), + [anon_sym_DASH] = ACTIONS(5870), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5870), + [anon_sym_RBRACE] = ACTIONS(5874), + [anon_sym_PERCENT] = ACTIONS(5870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2394] = { + [sym_expansion] = STATE(2403), + [sym_concatenation] = STATE(2404), + [sym_string] = STATE(2403), + [sym_command_substitution] = STATE(2403), + [sym_process_substitution] = STATE(2403), + [aux_sym__literal_repeat1] = STATE(2405), + [sym_simple_expansion] = STATE(2403), + [sym_arithmetic_expansion] = STATE(2403), + [sym_string_expansion] = STATE(2403), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5864), + [sym_word] = ACTIONS(5878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5880), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5880), + [anon_sym_DOLLAR] = ACTIONS(1084), + }, + [2395] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2407), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2407), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5882), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5882), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5882), + [anon_sym_POUND] = ACTIONS(5884), + [anon_sym_DASH] = ACTIONS(5882), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5882), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym_PERCENT] = ACTIONS(5882), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5888), + }, + [2396] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2397] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2408), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2408), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5890), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5890), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5890), + [anon_sym_POUND] = ACTIONS(5892), + [anon_sym_DASH] = ACTIONS(5890), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5890), + [anon_sym_RBRACE] = ACTIONS(5894), + [anon_sym_PERCENT] = ACTIONS(5890), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2398] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5894), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2399] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2408), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2408), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5890), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5890), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5890), + [anon_sym_POUND] = ACTIONS(5892), + [anon_sym_DASH] = ACTIONS(5890), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5890), + [anon_sym_RBRACE] = ACTIONS(5894), + [anon_sym_PERCENT] = ACTIONS(5890), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5896), + }, + [2400] = { + [sym_expansion] = STATE(2410), + [sym_concatenation] = STATE(2411), + [sym_string] = STATE(2410), + [sym_command_substitution] = STATE(2410), + [sym_process_substitution] = STATE(2410), + [aux_sym__literal_repeat1] = STATE(2412), + [sym_simple_expansion] = STATE(2410), + [sym_arithmetic_expansion] = STATE(2410), + [sym_string_expansion] = STATE(2410), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5898), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5894), + [sym_word] = ACTIONS(5898), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5900), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5900), + [anon_sym_DOLLAR] = ACTIONS(1084), + }, + [2401] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2414), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2414), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5902), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5902), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5902), + [anon_sym_POUND] = ACTIONS(5904), + [anon_sym_DASH] = ACTIONS(5902), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5902), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_PERCENT] = ACTIONS(5902), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5908), + }, + [2402] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2403] = { + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5894), + [sym__concat] = ACTIONS(1422), + }, + [2404] = { + [anon_sym_RBRACE] = ACTIONS(5894), + [sym_comment] = ACTIONS(53), + }, + [2405] = { + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5910), + }, + [2406] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2415), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2415), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5912), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5912), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5912), + [anon_sym_POUND] = ACTIONS(5914), + [anon_sym_DASH] = ACTIONS(5912), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5912), + [anon_sym_RBRACE] = ACTIONS(5916), + [anon_sym_PERCENT] = ACTIONS(5912), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2407] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5916), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2408] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5918), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2409] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2416), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2416), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5920), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5920), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5920), + [anon_sym_POUND] = ACTIONS(5922), + [anon_sym_DASH] = ACTIONS(5920), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5920), + [anon_sym_RBRACE] = ACTIONS(5918), + [anon_sym_PERCENT] = ACTIONS(5920), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2410] = { + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5918), + [sym__concat] = ACTIONS(1422), + }, + [2411] = { + [anon_sym_RBRACE] = ACTIONS(5918), + [sym_comment] = ACTIONS(53), + }, + [2412] = { + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(5924), + }, + [2413] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2417), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2417), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5926), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5926), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5926), + [anon_sym_POUND] = ACTIONS(5928), + [anon_sym_DASH] = ACTIONS(5926), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5926), + [anon_sym_RBRACE] = ACTIONS(5930), + [anon_sym_PERCENT] = ACTIONS(5926), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2414] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5930), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2415] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5932), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2416] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5934), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2417] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5936), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2418] = { + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(2421), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5938), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5940), + }, + [2419] = { + [sym_string] = STATE(1356), + [anon_sym_POUND] = ACTIONS(5942), + [anon_sym_0] = ACTIONS(3146), + [anon_sym_QMARK] = ACTIONS(5944), + [aux_sym__simple_variable_name_token1] = ACTIONS(3146), + [anon_sym__] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(5942), + [anon_sym_DQUOTE] = ACTIONS(3121), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(5944), + [anon_sym_DASH] = ACTIONS(5942), + [sym_raw_string] = ACTIONS(5946), + [anon_sym_DOLLAR] = ACTIONS(5942), + [anon_sym_AT] = ACTIONS(5944), + }, + [2420] = { + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5948), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + }, + [2421] = { + [sym_expansion] = STATE(48), + [sym_simple_expansion] = STATE(48), + [aux_sym_string_repeat1] = STATE(117), + [sym_command_substitution] = STATE(48), + [sym_arithmetic_expansion] = STATE(48), + [sym__string_content] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(5948), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(5950), + }, + [2422] = { + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5952), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), + }, + [2423] = { + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(5954), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), + }, + [2424] = { + [anon_sym_RPAREN] = ACTIONS(5954), + [sym_comment] = ACTIONS(53), + }, + [2425] = { + [anon_sym_RPAREN] = ACTIONS(5956), + [sym_comment] = ACTIONS(53), + }, + [2426] = { + [sym_expansion] = STATE(1363), + [sym_string_expansion] = STATE(1363), + [sym_simple_expansion] = STATE(1363), + [sym_string] = STATE(1363), + [sym_command_substitution] = STATE(1363), + [sym_process_substitution] = STATE(1363), + [sym_arithmetic_expansion] = STATE(1363), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(3113), + [sym_number] = ACTIONS(3115), + [sym__special_character] = ACTIONS(3117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3123), + [anon_sym_BQUOTE] = ACTIONS(3125), + [sym_raw_string] = ACTIONS(3117), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3127), + [sym_word] = ACTIONS(3115), + [anon_sym_LT_LPAREN] = ACTIONS(3113), + [anon_sym_DOLLAR] = ACTIONS(3974), + [sym_ansii_c_string] = ACTIONS(3117), + }, + [2427] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2432), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2432), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5958), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5958), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5958), + [anon_sym_POUND] = ACTIONS(5960), + [anon_sym_DASH] = ACTIONS(5958), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5958), + [anon_sym_RBRACE] = ACTIONS(5962), + [anon_sym_PERCENT] = ACTIONS(5958), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5964), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2428] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2437), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2437), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5966), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5966), + [anon_sym_POUND] = ACTIONS(5968), + [anon_sym_DASH] = ACTIONS(5966), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5966), + [anon_sym_RBRACE] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5966), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5972), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2429] = { + [anon_sym_BQUOTE] = ACTIONS(5974), + [sym_comment] = ACTIONS(53), + }, + [2430] = { + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_0] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [aux_sym__simple_variable_name_token1] = ACTIONS(433), + [anon_sym__] = ACTIONS(433), + [anon_sym_BANG] = ACTIONS(431), + [sym__string_content] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(5976), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + }, + [2431] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2439), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2439), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5978), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5978), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5978), + [anon_sym_POUND] = ACTIONS(5980), + [anon_sym_DASH] = ACTIONS(5978), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5978), + [anon_sym_RBRACE] = ACTIONS(5982), + [anon_sym_PERCENT] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(5984), + }, + [2432] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(5982), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2433] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2439), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2439), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5978), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5978), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5978), + [anon_sym_POUND] = ACTIONS(5980), + [anon_sym_DASH] = ACTIONS(5978), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5978), + [anon_sym_RBRACE] = ACTIONS(5982), + [anon_sym_PERCENT] = ACTIONS(5978), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5986), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2434] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2443), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2443), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(5988), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(5988), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(5988), + [anon_sym_POUND] = ACTIONS(5990), + [anon_sym_DASH] = ACTIONS(5988), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(5988), + [anon_sym_RBRACE] = ACTIONS(5992), + [anon_sym_PERCENT] = ACTIONS(5988), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(5994), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2435] = { + [sym_expansion] = STATE(2444), + [sym_concatenation] = STATE(2445), + [sym_string] = STATE(2444), + [sym_command_substitution] = STATE(2444), + [sym_process_substitution] = STATE(2444), + [aux_sym__literal_repeat1] = STATE(2446), + [sym_simple_expansion] = STATE(2444), + [sym_arithmetic_expansion] = STATE(2444), + [sym_string_expansion] = STATE(2444), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(5996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(5982), + [sym_word] = ACTIONS(5996), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(5998), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(5998), + [anon_sym_DOLLAR] = ACTIONS(1084), + }, + [2436] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2448), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2448), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6000), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6000), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6000), + [anon_sym_POUND] = ACTIONS(6002), + [anon_sym_DASH] = ACTIONS(6000), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6000), + [anon_sym_RBRACE] = ACTIONS(6004), + [anon_sym_PERCENT] = ACTIONS(6000), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6006), + }, + [2437] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6004), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2438] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2449), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2449), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6008), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6008), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6008), + [anon_sym_POUND] = ACTIONS(6010), + [anon_sym_DASH] = ACTIONS(6008), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6008), + [anon_sym_RBRACE] = ACTIONS(6012), + [anon_sym_PERCENT] = ACTIONS(6008), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2439] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6012), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2440] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2449), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2449), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6008), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6008), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6008), + [anon_sym_POUND] = ACTIONS(6010), + [anon_sym_DASH] = ACTIONS(6008), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6008), + [anon_sym_RBRACE] = ACTIONS(6012), + [anon_sym_PERCENT] = ACTIONS(6008), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6014), + }, + [2441] = { + [sym_expansion] = STATE(2451), + [sym_concatenation] = STATE(2452), + [sym_string] = STATE(2451), + [sym_command_substitution] = STATE(2451), + [sym_process_substitution] = STATE(2451), + [aux_sym__literal_repeat1] = STATE(2453), + [sym_simple_expansion] = STATE(2451), + [sym_arithmetic_expansion] = STATE(2451), + [sym_string_expansion] = STATE(2451), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(6016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(6012), + [sym_word] = ACTIONS(6016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(6018), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(6018), + [anon_sym_DOLLAR] = ACTIONS(1084), + }, + [2442] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2455), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2455), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6020), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6020), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6020), + [anon_sym_POUND] = ACTIONS(6022), + [anon_sym_DASH] = ACTIONS(6020), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6020), + [anon_sym_RBRACE] = ACTIONS(6024), + [anon_sym_PERCENT] = ACTIONS(6020), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6026), + }, + [2443] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6024), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2444] = { + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(6012), + [sym__concat] = ACTIONS(1422), + }, + [2445] = { + [anon_sym_RBRACE] = ACTIONS(6012), + [sym_comment] = ACTIONS(53), + }, + [2446] = { + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(6028), + }, + [2447] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2456), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2456), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6030), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6030), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6030), + [anon_sym_POUND] = ACTIONS(6032), + [anon_sym_DASH] = ACTIONS(6030), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6030), + [anon_sym_RBRACE] = ACTIONS(6034), + [anon_sym_PERCENT] = ACTIONS(6030), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2448] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6034), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2449] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6036), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2450] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2457), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2457), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6038), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6038), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6038), + [anon_sym_POUND] = ACTIONS(6040), + [anon_sym_DASH] = ACTIONS(6038), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6038), + [anon_sym_RBRACE] = ACTIONS(6036), + [anon_sym_PERCENT] = ACTIONS(6038), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2451] = { + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(6036), + [sym__concat] = ACTIONS(1422), + }, + [2452] = { + [anon_sym_RBRACE] = ACTIONS(6036), + [sym_comment] = ACTIONS(53), + }, + [2453] = { + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(6042), + }, + [2454] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2458), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2458), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6044), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6044), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6044), + [anon_sym_POUND] = ACTIONS(6046), + [anon_sym_DASH] = ACTIONS(6044), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6044), + [anon_sym_RBRACE] = ACTIONS(6048), + [anon_sym_PERCENT] = ACTIONS(6044), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2455] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6048), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2456] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6050), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2457] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6052), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2458] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2459] = { + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6056), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), + }, + [2460] = { + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(6058), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), + }, + [2461] = { + [anon_sym_RPAREN] = ACTIONS(6058), + [sym_comment] = ACTIONS(53), + }, + [2462] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2466), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2466), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6060), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6060), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6060), + [anon_sym_POUND] = ACTIONS(6062), + [anon_sym_DASH] = ACTIONS(6060), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6060), + [anon_sym_RBRACE] = ACTIONS(6064), + [anon_sym_PERCENT] = ACTIONS(6060), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(6066), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2463] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2471), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2471), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6068), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6068), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6068), + [anon_sym_POUND] = ACTIONS(6070), + [anon_sym_DASH] = ACTIONS(6068), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6068), + [anon_sym_RBRACE] = ACTIONS(6072), + [anon_sym_PERCENT] = ACTIONS(6068), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(6074), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2464] = { + [anon_sym_BQUOTE] = ACTIONS(6076), + [sym_comment] = ACTIONS(53), + }, + [2465] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2473), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2473), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6078), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6078), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6078), + [anon_sym_POUND] = ACTIONS(6080), + [anon_sym_DASH] = ACTIONS(6078), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6078), + [anon_sym_RBRACE] = ACTIONS(6082), + [anon_sym_PERCENT] = ACTIONS(6078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6084), + }, + [2466] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6082), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2467] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2473), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2473), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6078), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6078), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6078), + [anon_sym_POUND] = ACTIONS(6080), + [anon_sym_DASH] = ACTIONS(6078), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6078), + [anon_sym_RBRACE] = ACTIONS(6082), + [anon_sym_PERCENT] = ACTIONS(6078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(6086), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2468] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2477), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2477), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6088), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6088), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6088), + [anon_sym_POUND] = ACTIONS(6090), + [anon_sym_DASH] = ACTIONS(6088), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6088), + [anon_sym_RBRACE] = ACTIONS(6092), + [anon_sym_PERCENT] = ACTIONS(6088), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(6094), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2469] = { + [sym_expansion] = STATE(2478), + [sym_concatenation] = STATE(2479), + [sym_string] = STATE(2478), + [sym_command_substitution] = STATE(2478), + [sym_process_substitution] = STATE(2478), + [aux_sym__literal_repeat1] = STATE(2480), + [sym_simple_expansion] = STATE(2478), + [sym_arithmetic_expansion] = STATE(2478), + [sym_string_expansion] = STATE(2478), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(6096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(6082), + [sym_word] = ACTIONS(6096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(6098), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(6098), + [anon_sym_DOLLAR] = ACTIONS(1084), + }, + [2470] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2482), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2482), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6100), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6100), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6100), + [anon_sym_POUND] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(6100), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6100), + [anon_sym_RBRACE] = ACTIONS(6104), + [anon_sym_PERCENT] = ACTIONS(6100), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6106), + }, + [2471] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6104), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2472] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2483), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2483), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6108), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6108), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6108), + [anon_sym_POUND] = ACTIONS(6110), + [anon_sym_DASH] = ACTIONS(6108), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6108), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym_PERCENT] = ACTIONS(6108), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2473] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2474] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2483), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2483), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6108), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6108), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6108), + [anon_sym_POUND] = ACTIONS(6110), + [anon_sym_DASH] = ACTIONS(6108), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6108), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym_PERCENT] = ACTIONS(6108), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6114), + }, + [2475] = { + [sym_expansion] = STATE(2485), + [sym_concatenation] = STATE(2486), + [sym_string] = STATE(2485), + [sym_command_substitution] = STATE(2485), + [sym_process_substitution] = STATE(2485), + [aux_sym__literal_repeat1] = STATE(2487), + [sym_simple_expansion] = STATE(2485), + [sym_arithmetic_expansion] = STATE(2485), + [sym_string_expansion] = STATE(2485), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(6116), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(6112), + [sym_word] = ACTIONS(6116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(6118), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(6118), + [anon_sym_DOLLAR] = ACTIONS(1084), + }, + [2476] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2489), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2489), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6120), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6120), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6120), + [anon_sym_POUND] = ACTIONS(6122), + [anon_sym_DASH] = ACTIONS(6120), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6120), + [anon_sym_RBRACE] = ACTIONS(6124), + [anon_sym_PERCENT] = ACTIONS(6120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6126), + }, + [2477] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6124), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2478] = { + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(6112), + [sym__concat] = ACTIONS(1422), + }, + [2479] = { + [anon_sym_RBRACE] = ACTIONS(6112), + [sym_comment] = ACTIONS(53), + }, + [2480] = { + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(6128), + }, + [2481] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2490), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2490), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6130), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6130), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6130), + [anon_sym_POUND] = ACTIONS(6132), + [anon_sym_DASH] = ACTIONS(6130), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6130), + [anon_sym_RBRACE] = ACTIONS(6134), + [anon_sym_PERCENT] = ACTIONS(6130), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2482] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6134), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2483] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6136), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2484] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2491), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2491), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6138), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6138), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6138), + [anon_sym_POUND] = ACTIONS(6140), + [anon_sym_DASH] = ACTIONS(6138), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6138), + [anon_sym_RBRACE] = ACTIONS(6136), + [anon_sym_PERCENT] = ACTIONS(6138), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2485] = { + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(6136), + [sym__concat] = ACTIONS(1422), + }, + [2486] = { + [anon_sym_RBRACE] = ACTIONS(6136), + [sym_comment] = ACTIONS(53), + }, + [2487] = { + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(6142), + }, + [2488] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2492), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2492), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6144), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6144), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6144), + [anon_sym_POUND] = ACTIONS(6146), + [anon_sym_DASH] = ACTIONS(6144), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6144), + [anon_sym_RBRACE] = ACTIONS(6148), + [anon_sym_PERCENT] = ACTIONS(6144), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2489] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6148), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2490] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6150), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2491] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6152), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2373] = { - [sym_comment] = ACTIONS(41), - [anon_sym_BQUOTE] = ACTIONS(5863), + [2492] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6154), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2374] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2379), - [sym_concatenation] = STATE(2379), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5865), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5867), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5869), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5865), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5865), - [anon_sym_EQ] = ACTIONS(5865), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5865), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5871), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5865), - [sym__special_character] = ACTIONS(459), + [2493] = { + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [sym_number] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(345), + [sym_word] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(343), + [sym_ansii_c_string] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(345), + [sym_variable_name] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(6156), + [sym__special_character] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [sym_raw_string] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(345), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(343), }, - [2375] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2384), - [sym_concatenation] = STATE(2384), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5873), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5875), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5877), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5873), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5873), - [anon_sym_EQ] = ACTIONS(5873), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5873), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5879), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5873), - [sym__special_character] = ACTIONS(459), + [2494] = { + [anon_sym_RPAREN] = ACTIONS(6156), + [sym_comment] = ACTIONS(53), }, - [2376] = { - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(333), - [anon_sym_DOLLAR] = ACTIONS(331), - [sym_file_descriptor] = ACTIONS(333), - [sym_variable_name] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(331), - [sym_number] = ACTIONS(331), - [anon_sym_GT_LPAREN] = ACTIONS(333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(333), - [anon_sym_RPAREN] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [sym_word] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [sym_ansii_c_string] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(333), - [sym__special_character] = ACTIONS(333), + [2495] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2499), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2499), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6158), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6158), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6158), + [anon_sym_POUND] = ACTIONS(6160), + [anon_sym_DASH] = ACTIONS(6158), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6158), + [anon_sym_RBRACE] = ACTIONS(6162), + [anon_sym_PERCENT] = ACTIONS(6158), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(6164), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2377] = { - [anon_sym_RPAREN] = ACTIONS(5881), - [sym_comment] = ACTIONS(41), + [2496] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2504), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2504), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6166), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6166), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6166), + [anon_sym_POUND] = ACTIONS(6168), + [anon_sym_DASH] = ACTIONS(6166), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6166), + [anon_sym_RBRACE] = ACTIONS(6170), + [anon_sym_PERCENT] = ACTIONS(6166), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(6172), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2378] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2386), - [sym_concatenation] = STATE(2386), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5883), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5887), - [anon_sym_DASH] = ACTIONS(5883), - [anon_sym_COLON_DASH] = ACTIONS(5883), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5883), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5883), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5883), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5889), + [2497] = { + [anon_sym_BQUOTE] = ACTIONS(6174), + [sym_comment] = ACTIONS(53), }, - [2379] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5887), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [2498] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2506), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2506), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6176), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6176), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6176), + [anon_sym_POUND] = ACTIONS(6178), + [anon_sym_DASH] = ACTIONS(6176), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6176), + [anon_sym_RBRACE] = ACTIONS(6180), + [anon_sym_PERCENT] = ACTIONS(6176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6182), }, - [2380] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2386), - [sym_concatenation] = STATE(2386), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5883), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5891), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5883), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5883), - [anon_sym_EQ] = ACTIONS(5883), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5883), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5887), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5883), - [sym__special_character] = ACTIONS(459), + [2499] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6180), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2381] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2390), - [sym_concatenation] = STATE(2390), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5893), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5895), - [sym_raw_string] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(5893), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_COLON_DASH] = ACTIONS(5893), - [anon_sym_EQ] = ACTIONS(5893), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [anon_sym_COLON_QMARK] = ACTIONS(5893), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(5899), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5893), - [sym__special_character] = ACTIONS(459), + [2500] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2506), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2506), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6176), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6176), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6176), + [anon_sym_POUND] = ACTIONS(6178), + [anon_sym_DASH] = ACTIONS(6176), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6176), + [anon_sym_RBRACE] = ACTIONS(6180), + [anon_sym_PERCENT] = ACTIONS(6176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(6184), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2382] = { - [sym_command_substitution] = STATE(2391), - [aux_sym__literal_repeat1] = STATE(2392), - [sym_string] = STATE(2391), - [sym_process_substitution] = STATE(2391), - [sym_simple_expansion] = STATE(2391), - [sym_string_expansion] = STATE(2391), - [sym_concatenation] = STATE(2393), - [sym_expansion] = STATE(2391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5901), - [sym_word] = ACTIONS(5903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5901), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5887), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5903), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [2501] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2510), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2510), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6186), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6186), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6186), + [anon_sym_POUND] = ACTIONS(6188), + [anon_sym_DASH] = ACTIONS(6186), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6186), + [anon_sym_RBRACE] = ACTIONS(6190), + [anon_sym_PERCENT] = ACTIONS(6186), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(6192), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2383] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2395), - [sym_concatenation] = STATE(2395), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5905), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5907), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5909), - [anon_sym_DASH] = ACTIONS(5905), - [anon_sym_COLON_DASH] = ACTIONS(5905), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5905), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5905), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5905), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5911), + [2502] = { + [sym_expansion] = STATE(2511), + [sym_concatenation] = STATE(2512), + [sym_string] = STATE(2511), + [sym_command_substitution] = STATE(2511), + [sym_process_substitution] = STATE(2511), + [aux_sym__literal_repeat1] = STATE(2513), + [sym_simple_expansion] = STATE(2511), + [sym_arithmetic_expansion] = STATE(2511), + [sym_string_expansion] = STATE(2511), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(6194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(6180), + [sym_word] = ACTIONS(6194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(6196), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(6196), + [anon_sym_DOLLAR] = ACTIONS(1084), }, - [2384] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5909), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [2503] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2515), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2515), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6198), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6198), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6198), + [anon_sym_POUND] = ACTIONS(6200), + [anon_sym_DASH] = ACTIONS(6198), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6198), + [anon_sym_RBRACE] = ACTIONS(6202), + [anon_sym_PERCENT] = ACTIONS(6198), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6204), }, - [2385] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2396), - [sym_concatenation] = STATE(2396), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5913), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5915), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(5913), - [anon_sym_COLON_DASH] = ACTIONS(5913), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5913), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5913), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5913), - [sym__special_character] = ACTIONS(459), + [2504] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6202), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2386] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [2505] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2516), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2516), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6206), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6206), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_POUND] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6206), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6206), + [anon_sym_RBRACE] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2387] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2396), - [sym_concatenation] = STATE(2396), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5913), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5915), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(5913), - [anon_sym_COLON_DASH] = ACTIONS(5913), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5913), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5913), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5913), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5919), + [2506] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2388] = { - [sym_command_substitution] = STATE(2398), - [aux_sym__literal_repeat1] = STATE(2399), - [sym_string] = STATE(2398), - [sym_process_substitution] = STATE(2398), - [sym_simple_expansion] = STATE(2398), - [sym_string_expansion] = STATE(2398), - [sym_concatenation] = STATE(2400), - [sym_expansion] = STATE(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5921), - [sym_word] = ACTIONS(5923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(943), - [sym_ansii_c_string] = ACTIONS(5921), - [anon_sym_LT_LPAREN] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(5917), - [sym__special_character] = ACTIONS(949), - [sym_number] = ACTIONS(5923), - [anon_sym_GT_LPAREN] = ACTIONS(945), + [2507] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2516), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2516), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6206), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6206), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_POUND] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6206), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6206), + [anon_sym_RBRACE] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6206), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6212), }, - [2389] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2402), - [sym_concatenation] = STATE(2402), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5925), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5927), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5929), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_COLON_DASH] = ACTIONS(5925), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5925), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5925), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5925), - [sym__special_character] = ACTIONS(459), - [sym_regex] = ACTIONS(5931), + [2508] = { + [sym_expansion] = STATE(2518), + [sym_concatenation] = STATE(2519), + [sym_string] = STATE(2518), + [sym_command_substitution] = STATE(2518), + [sym_process_substitution] = STATE(2518), + [aux_sym__literal_repeat1] = STATE(2520), + [sym_simple_expansion] = STATE(2518), + [sym_arithmetic_expansion] = STATE(2518), + [sym_string_expansion] = STATE(2518), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_number] = ACTIONS(6214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(6210), + [sym_word] = ACTIONS(6214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [sym_ansii_c_string] = ACTIONS(6216), + [sym__special_character] = ACTIONS(1080), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(6216), + [anon_sym_DOLLAR] = ACTIONS(1084), }, - [2390] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5929), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [2509] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2522), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2522), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6218), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6218), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6218), + [anon_sym_POUND] = ACTIONS(6220), + [anon_sym_DASH] = ACTIONS(6218), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6218), + [anon_sym_RBRACE] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6218), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym_regex] = ACTIONS(6224), }, - [2391] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5917), - [sym__concat] = ACTIONS(1298), + [2510] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2392] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5933), - [sym_comment] = ACTIONS(41), + [2511] = { + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(6210), + [sym__concat] = ACTIONS(1422), }, - [2393] = { - [anon_sym_RBRACE] = ACTIONS(5917), - [sym_comment] = ACTIONS(41), + [2512] = { + [anon_sym_RBRACE] = ACTIONS(6210), + [sym_comment] = ACTIONS(53), }, - [2394] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2403), - [sym_concatenation] = STATE(2403), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5935), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5937), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5939), - [anon_sym_DASH] = ACTIONS(5935), - [anon_sym_COLON_DASH] = ACTIONS(5935), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5935), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5935), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5935), - [sym__special_character] = ACTIONS(459), + [2513] = { + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(6226), }, - [2395] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5939), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [2514] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2523), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2523), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6228), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6228), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6228), + [anon_sym_POUND] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6228), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6228), + [anon_sym_RBRACE] = ACTIONS(6232), + [anon_sym_PERCENT] = ACTIONS(6228), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2396] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5941), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [2515] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6232), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2397] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2404), - [sym_concatenation] = STATE(2404), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5943), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5945), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5941), - [anon_sym_DASH] = ACTIONS(5943), - [anon_sym_COLON_DASH] = ACTIONS(5943), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5943), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5943), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5943), - [sym__special_character] = ACTIONS(459), + [2516] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6234), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2398] = { - [aux_sym_concatenation_repeat1] = STATE(1106), - [sym_comment] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(5941), - [sym__concat] = ACTIONS(1298), + [2517] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2524), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2524), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6236), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6236), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6236), + [anon_sym_POUND] = ACTIONS(6238), + [anon_sym_DASH] = ACTIONS(6236), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6236), + [anon_sym_RBRACE] = ACTIONS(6234), + [anon_sym_PERCENT] = ACTIONS(6236), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2399] = { - [aux_sym__literal_repeat1] = STATE(1141), - [sym__special_character] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(5947), - [sym_comment] = ACTIONS(41), + [2518] = { + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(6234), + [sym__concat] = ACTIONS(1422), }, - [2400] = { - [anon_sym_RBRACE] = ACTIONS(5941), - [sym_comment] = ACTIONS(41), + [2519] = { + [anon_sym_RBRACE] = ACTIONS(6234), + [sym_comment] = ACTIONS(53), }, - [2401] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(2405), - [sym_concatenation] = STATE(2405), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(5949), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5951), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5953), - [anon_sym_DASH] = ACTIONS(5949), - [anon_sym_COLON_DASH] = ACTIONS(5949), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(5949), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(5949), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(5949), - [sym__special_character] = ACTIONS(459), + [2520] = { + [aux_sym__literal_repeat1] = STATE(1160), + [sym_comment] = ACTIONS(53), + [sym__special_character] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(6240), }, - [2402] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5953), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [2521] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(2525), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(2525), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(6242), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_POUND] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(6242), + [anon_sym_RBRACE] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6242), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2403] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5955), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [2522] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2404] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5957), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [2523] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6248), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2405] = { - [sym_command_substitution] = STATE(116), - [aux_sym__literal_repeat1] = STATE(119), - [sym_string] = STATE(116), - [sym_process_substitution] = STATE(116), - [sym_simple_expansion] = STATE(116), - [sym_string_expansion] = STATE(116), - [aux_sym_expansion_repeat1] = STATE(192), - [sym_concatenation] = STATE(192), - [sym_expansion] = STATE(116), - [anon_sym_PERCENT] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(919), - [sym_raw_string] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(5959), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_COLON_DASH] = ACTIONS(917), - [anon_sym_BQUOTE] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_GT_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(451), - [sym_number] = ACTIONS(449), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [sym_word] = ACTIONS(449), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(457), - [anon_sym_LT_LPAREN] = ACTIONS(447), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_COLON] = ACTIONS(917), - [sym__special_character] = ACTIONS(459), + [2524] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), }, - [2406] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1374), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2525] = { + [sym_expansion] = STATE(141), + [sym_concatenation] = STATE(215), + [sym_string] = STATE(141), + [sym_command_substitution] = STATE(141), + [sym_process_substitution] = STATE(141), + [aux_sym__literal_repeat1] = STATE(144), + [sym_simple_expansion] = STATE(141), + [aux_sym_expansion_repeat1] = STATE(215), + [sym_arithmetic_expansion] = STATE(141), + [sym_string_expansion] = STATE(141), + [anon_sym_COLON_DASH] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(543), + [sym_number] = ACTIONS(545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), + [sym_word] = ACTIONS(545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(543), + [sym_ansii_c_string] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [sym__special_character] = ACTIONS(559), + [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(6252), + [anon_sym_PERCENT] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(563), + [sym_raw_string] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(567), + }, + [2526] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1430), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2407] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1375), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2527] = { + [sym_unary_expression] = STATE(1433), + [sym_postfix_expression] = STATE(1433), + [sym_concatenation] = STATE(1433), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(1433), + [sym_binary_expression] = STATE(1433), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(1433), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2528] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1434), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1435), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(187), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2408] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1376), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2529] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1436), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2409] = { - [sym_subscript] = STATE(1378), - [anon_sym__] = ACTIONS(5961), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5963), - [anon_sym_BANG] = ACTIONS(5963), - [sym_variable_name] = ACTIONS(5965), - [anon_sym_DOLLAR] = ACTIONS(5967), - [anon_sym_DASH] = ACTIONS(5967), - [anon_sym_AT] = ACTIONS(5969), - [anon_sym_0] = ACTIONS(5961), - [anon_sym_STAR] = ACTIONS(5969), - [aux_sym__simple_variable_name_token1] = ACTIONS(5961), - [anon_sym_QMARK] = ACTIONS(5969), + [2530] = { + [sym_word] = ACTIONS(6254), + [sym_comment] = ACTIONS(53), }, - [2410] = { - [sym_word] = ACTIONS(5971), - [sym_comment] = ACTIONS(41), + [2531] = { + [sym_unary_expression] = STATE(1442), + [sym_postfix_expression] = STATE(1442), + [sym_concatenation] = STATE(1442), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(1442), + [sym_binary_expression] = STATE(1442), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(1442), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, - [2411] = { - [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(1384), - [sym_postfix_expression] = STATE(1384), - [sym_string] = STATE(71), - [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(1384), - [sym_binary_expression] = STATE(1384), - [sym_concatenation] = STATE(1384), - [sym_expansion] = STATE(71), - [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(1384), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [2532] = { + [sym_subscript] = STATE(1443), + [anon_sym_0] = ACTIONS(6256), + [anon_sym_BANG] = ACTIONS(6258), + [sym_variable_name] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_DASH] = ACTIONS(6264), + [anon_sym_POUND] = ACTIONS(6258), + [anon_sym_QMARK] = ACTIONS(6262), + [aux_sym__simple_variable_name_token1] = ACTIONS(6256), + [anon_sym__] = ACTIONS(6256), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(6264), + [anon_sym_AT] = ACTIONS(6262), }, - [2412] = { - [anon_sym_PLUS_EQ] = ACTIONS(5973), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(5973), + [2533] = { + [anon_sym_PLUS_EQ] = ACTIONS(6266), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(6266), + [sym_comment] = ACTIONS(53), }, - [2413] = { - [anon_sym_AMP_GT_GT] = ACTIONS(5975), - [sym_comment] = ACTIONS(41), - [anon_sym_GT_AMP] = ACTIONS(5975), - [anon_sym_LT] = ACTIONS(5977), - [anon_sym_LT_AMP] = ACTIONS(5975), - [anon_sym_GT_GT] = ACTIONS(5975), - [anon_sym_GT] = ACTIONS(5977), - [anon_sym_AMP_GT] = ACTIONS(5977), + [2534] = { + [anon_sym_AMP_GT_GT] = ACTIONS(6268), + [anon_sym_GT_AMP] = ACTIONS(6268), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_AMP] = ACTIONS(6268), + [anon_sym_GT_GT] = ACTIONS(6268), + [sym_comment] = ACTIONS(53), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_AMP_GT] = ACTIONS(6270), }, - [2414] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1389), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1390), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2535] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1447), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2415] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym__terminated_statement] = STATE(1391), - [sym_if_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_negated_command] = STATE(65), - [sym_test_command] = STATE(65), - [sym_variable_assignment] = STATE(66), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_compound_statement] = STATE(65), - [sym_subshell] = STATE(65), - [sym_declaration_command] = STATE(65), - [sym_unset_command] = STATE(65), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_case_statement] = STATE(65), - [sym_pipeline] = STATE(65), - [sym_list] = STATE(65), - [sym_command] = STATE(65), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2536] = { + [sym__terminated_statement] = STATE(1448), + [sym_if_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_negated_command] = STATE(71), + [sym_test_command] = STATE(71), + [sym_variable_assignment] = STATE(72), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_compound_statement] = STATE(71), + [sym_subshell] = STATE(71), + [sym_declaration_command] = STATE(71), + [sym_unset_command] = STATE(71), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_pipeline] = STATE(71), + [sym_list] = STATE(71), + [sym_command] = STATE(71), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2416] = { - [aux_sym__literal_repeat1] = STATE(410), - [sym_unary_expression] = STATE(1392), - [sym_postfix_expression] = STATE(1392), - [sym_string] = STATE(408), - [sym_process_substitution] = STATE(408), - [sym__expression] = STATE(1392), - [sym_binary_expression] = STATE(1392), - [sym_concatenation] = STATE(1392), - [sym_expansion] = STATE(408), - [sym_command_substitution] = STATE(408), - [sym_parenthesized_expression] = STATE(1392), - [sym_simple_expansion] = STATE(408), - [sym_string_expansion] = STATE(408), - [anon_sym_LPAREN] = ACTIONS(283), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(285), - [anon_sym_BANG] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_test_operator] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(293), - [anon_sym_GT_LPAREN] = ACTIONS(295), - [sym_number] = ACTIONS(297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_word] = ACTIONS(297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [sym_ansii_c_string] = ACTIONS(285), - [sym__special_character] = ACTIONS(305), + [2537] = { + [sym_unary_expression] = STATE(1449), + [sym_postfix_expression] = STATE(1449), + [sym_concatenation] = STATE(1449), + [sym_string] = STATE(407), + [sym_command_substitution] = STATE(407), + [sym_process_substitution] = STATE(407), + [sym__expression] = STATE(1449), + [sym_binary_expression] = STATE(1449), + [sym_arithmetic_expansion] = STATE(407), + [sym_string_expansion] = STATE(407), + [sym_expansion] = STATE(407), + [aux_sym__literal_repeat1] = STATE(409), + [sym_parenthesized_expression] = STATE(1449), + [sym_simple_expansion] = STATE(407), + [anon_sym_LPAREN] = ACTIONS(299), + [anon_sym_GT_LPAREN] = ACTIONS(301), + [sym_number] = ACTIONS(303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), + [anon_sym_BANG] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), + [sym_word] = ACTIONS(303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [anon_sym_LT_LPAREN] = ACTIONS(301), + [sym_ansii_c_string] = ACTIONS(315), + [sym__special_character] = ACTIONS(317), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(319), + [sym_raw_string] = ACTIONS(315), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_test_operator] = ACTIONS(323), }, - [2417] = { - [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(1393), - [sym_postfix_expression] = STATE(1393), - [sym_string] = STATE(71), - [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(1393), - [sym_binary_expression] = STATE(1393), - [sym_concatenation] = STATE(1393), - [sym_expansion] = STATE(71), - [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(1393), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [2538] = { + [sym_unary_expression] = STATE(1450), + [sym_postfix_expression] = STATE(1450), + [sym_concatenation] = STATE(1450), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(1450), + [sym_binary_expression] = STATE(1450), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(1450), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, - [2418] = { - [anon_sym_PLUS_EQ] = ACTIONS(5973), - [sym_comment] = ACTIONS(41), - [anon_sym_EQ] = ACTIONS(5973), + [2539] = { + [anon_sym_PLUS_EQ] = ACTIONS(6266), + [anon_sym_EQ] = ACTIONS(6266), + [sym_comment] = ACTIONS(53), }, - [2419] = { - [sym_subscript] = STATE(1398), - [anon_sym__] = ACTIONS(5979), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(5981), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_DASH] = ACTIONS(5983), - [anon_sym_AT] = ACTIONS(5985), - [anon_sym_0] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5985), - [aux_sym__simple_variable_name_token1] = ACTIONS(5979), - [anon_sym_QMARK] = ACTIONS(5985), + [2540] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(1454), + [sym_postfix_expression] = STATE(1454), + [sym_concatenation] = STATE(1454), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(1454), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(1454), + [sym_binary_expression] = STATE(1454), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, - [2420] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(5987), + [2541] = { + [anon_sym_then] = ACTIONS(6272), + [sym_comment] = ACTIONS(53), }, - [2421] = { - [anon_sym_RPAREN] = ACTIONS(5989), - [sym_comment] = ACTIONS(41), + [2542] = { + [sym_subscript] = STATE(1458), + [anon_sym_0] = ACTIONS(6274), + [sym_variable_name] = ACTIONS(6276), + [anon_sym_STAR] = ACTIONS(6278), + [anon_sym_DASH] = ACTIONS(6280), + [anon_sym_QMARK] = ACTIONS(6278), + [aux_sym__simple_variable_name_token1] = ACTIONS(6274), + [anon_sym__] = ACTIONS(6274), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(6280), + [anon_sym_AT] = ACTIONS(6278), }, - [2422] = { - [anon_sym_then] = ACTIONS(5991), - [sym_comment] = ACTIONS(41), + [2543] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6282), + [sym_comment] = ACTIONS(53), }, - [2423] = { - [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(1405), - [sym_postfix_expression] = STATE(1405), - [sym_string] = STATE(71), - [aux_sym__literal_repeat1] = STATE(73), - [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(1405), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(1405), - [sym_binary_expression] = STATE(1405), - [sym_concatenation] = STATE(1405), - [sym_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [2544] = { + [sym_expansion] = STATE(1464), + [sym_concatenation] = STATE(1465), + [sym_string] = STATE(1464), + [sym_command_substitution] = STATE(1464), + [sym_process_substitution] = STATE(1464), + [aux_sym__literal_repeat1] = STATE(1466), + [sym_simple_expansion] = STATE(1464), + [sym_arithmetic_expansion] = STATE(1464), + [sym_string_expansion] = STATE(1464), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(617), + [sym__special_character] = ACTIONS(619), + [sym_number] = ACTIONS(6284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), + [sym_raw_string] = ACTIONS(6286), + [sym_word] = ACTIONS(6284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [anon_sym_BQUOTE] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_ansii_c_string] = ACTIONS(6286), + [anon_sym_LT_LPAREN] = ACTIONS(617), }, - [2424] = { - [sym_command_substitution] = STATE(1407), - [aux_sym__literal_repeat1] = STATE(1408), - [sym_string] = STATE(1407), - [sym_process_substitution] = STATE(1407), - [sym_simple_expansion] = STATE(1407), - [sym_string_expansion] = STATE(1407), - [sym_concatenation] = STATE(1409), - [sym_expansion] = STATE(1407), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(301), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(5993), - [sym_word] = ACTIONS(5995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(303), - [anon_sym_DOLLAR] = ACTIONS(289), - [sym_ansii_c_string] = ACTIONS(5993), - [anon_sym_LT_LPAREN] = ACTIONS(295), - [anon_sym_BQUOTE] = ACTIONS(293), - [sym__special_character] = ACTIONS(581), - [sym_number] = ACTIONS(5995), - [anon_sym_GT_LPAREN] = ACTIONS(295), + [2545] = { + [anon_sym_RPAREN] = ACTIONS(6288), + [sym_comment] = ACTIONS(53), }, - [2425] = { - [anon_sym_SEMI_SEMI] = ACTIONS(5997), + [2546] = { + [anon_sym_LF] = ACTIONS(6290), + [anon_sym_SEMI] = ACTIONS(6292), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(5999), - [anon_sym_SEMI] = ACTIONS(5997), - [anon_sym_in] = ACTIONS(6001), - [anon_sym_AMP] = ACTIONS(5997), - }, - [2426] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6003), + [anon_sym_AMP] = ACTIONS(6292), + [anon_sym_in] = ACTIONS(6294), + [anon_sym_SEMI_SEMI] = ACTIONS(6292), }, - [2427] = { - [anon_sym_RPAREN] = ACTIONS(6005), - [sym_comment] = ACTIONS(41), + [2547] = { + [anon_sym_RPAREN] = ACTIONS(6296), + [sym_comment] = ACTIONS(53), }, - [2428] = { + [2548] = { + [anon_sym_LF] = ACTIONS(6298), + [anon_sym_SEMI] = ACTIONS(6300), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6007), - [anon_sym_SEMI] = ACTIONS(6009), - [anon_sym_SEMI_SEMI] = ACTIONS(6009), - [anon_sym_AMP] = ACTIONS(6009), + [anon_sym_AMP] = ACTIONS(6300), + [anon_sym_SEMI_SEMI] = ACTIONS(6300), }, - [2429] = { + [2549] = { + [anon_sym_LF] = ACTIONS(6302), + [anon_sym_SEMI] = ACTIONS(6304), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6011), - [anon_sym_SEMI] = ACTIONS(6013), - [anon_sym_SEMI_SEMI] = ACTIONS(6013), - [anon_sym_AMP] = ACTIONS(6013), + [anon_sym_AMP] = ACTIONS(6304), + [anon_sym_SEMI_SEMI] = ACTIONS(6304), }, - [2430] = { + [2550] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6306), + [sym_comment] = ACTIONS(53), + }, + [2551] = { + [anon_sym_LF] = ACTIONS(6308), + [anon_sym_SEMI] = ACTIONS(6310), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6015), - [anon_sym_SEMI] = ACTIONS(6017), - [anon_sym_SEMI_SEMI] = ACTIONS(6017), - [anon_sym_AMP] = ACTIONS(6017), + [anon_sym_AMP] = ACTIONS(6310), + [anon_sym_SEMI_SEMI] = ACTIONS(6310), }, - [2431] = { + [2552] = { + [anon_sym_LF] = ACTIONS(6312), + [anon_sym_SEMI] = ACTIONS(6314), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6019), - [anon_sym_SEMI] = ACTIONS(6021), - [anon_sym_SEMI_SEMI] = ACTIONS(6021), - [anon_sym_AMP] = ACTIONS(6021), + [anon_sym_AMP] = ACTIONS(6314), + [anon_sym_SEMI_SEMI] = ACTIONS(6314), }, - [2432] = { - [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(2436), - [sym_postfix_expression] = STATE(2436), - [sym_string] = STATE(71), - [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(2436), - [sym_binary_expression] = STATE(2436), - [sym_concatenation] = STATE(2436), - [sym_expansion] = STATE(71), - [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(2436), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6023), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [2553] = { + [sym_concatenation] = STATE(508), + [sym_string] = STATE(488), + [sym_command_substitution] = STATE(488), + [sym_process_substitution] = STATE(488), + [aux_sym_for_statement_repeat1] = STATE(508), + [sym_arithmetic_expansion] = STATE(488), + [sym_string_expansion] = STATE(488), + [sym_expansion] = STATE(488), + [aux_sym__literal_repeat1] = STATE(489), + [sym_simple_expansion] = STATE(488), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [sym_number] = ACTIONS(1156), + [anon_sym_LF] = ACTIONS(6316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(6318), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [sym_word] = ACTIONS(1156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1156), + [sym__special_character] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1490), + [sym_raw_string] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(6318), + [anon_sym_DOLLAR] = ACTIONS(1170), + [anon_sym_SEMI_SEMI] = ACTIONS(6318), }, - [2433] = { - [sym_command_substitution] = STATE(483), - [aux_sym__literal_repeat1] = STATE(485), - [sym_string] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_for_statement_repeat1] = STATE(504), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_concatenation] = STATE(504), - [sym_expansion] = STATE(483), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(6025), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1412), - [anon_sym_GT_LPAREN] = ACTIONS(1414), - [sym_number] = ACTIONS(1108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_word] = ACTIONS(1108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1420), - [anon_sym_LT_LPAREN] = ACTIONS(1414), - [sym_ansii_c_string] = ACTIONS(1108), - [sym__special_character] = ACTIONS(1422), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [2554] = { + [sym_unary_expression] = STATE(2557), + [sym_postfix_expression] = STATE(2557), + [sym_concatenation] = STATE(2557), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(2557), + [sym_binary_expression] = STATE(2557), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(2557), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6320), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, - [2434] = { - [aux_sym__literal_repeat1] = STATE(272), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(1457), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_case_item] = STATE(313), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(313), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(239), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), + [2555] = { + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [sym_last_case_item] = STATE(1512), + [sym_arithmetic_expansion] = STATE(262), + [sym_string_expansion] = STATE(262), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(308), + [aux_sym__literal_repeat1] = STATE(265), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(308), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(255), - }, - [2435] = { - [aux_sym__literal_repeat1] = STATE(272), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(1458), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_case_item] = STATE(313), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(313), - [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1346), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(239), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_DOLLAR] = ACTIONS(1118), + }, + [2556] = { + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [sym_last_case_item] = STATE(1513), + [sym_arithmetic_expansion] = STATE(262), + [sym_string_expansion] = STATE(262), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(308), + [aux_sym__literal_repeat1] = STATE(265), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(308), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(255), + [sym__special_character] = ACTIONS(1346), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(1118), }, - [2436] = { - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [sym_test_operator] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(541), + [2557] = { + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6322), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, - [2437] = { - [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(2440), - [sym_postfix_expression] = STATE(2440), - [sym_string] = STATE(71), - [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(2440), - [sym_binary_expression] = STATE(2440), - [sym_concatenation] = STATE(2440), - [sym_expansion] = STATE(71), - [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(2440), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6029), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [2558] = { + [sym_unary_expression] = STATE(2561), + [sym_postfix_expression] = STATE(2561), + [sym_concatenation] = STATE(2561), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(2561), + [sym_binary_expression] = STATE(2561), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(2561), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6322), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, - [2438] = { - [aux_sym__literal_repeat1] = STATE(272), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(1461), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_case_item] = STATE(313), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(313), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(239), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), + [2559] = { + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [sym_last_case_item] = STATE(1518), + [sym_arithmetic_expansion] = STATE(262), + [sym_string_expansion] = STATE(262), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(308), + [aux_sym__literal_repeat1] = STATE(265), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(308), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(255), - }, - [2439] = { - [aux_sym__literal_repeat1] = STATE(272), - [sym_string] = STATE(270), - [sym_process_substitution] = STATE(270), - [sym_last_case_item] = STATE(1462), - [sym_concatenation] = STATE(275), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_case_item] = STATE(313), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [aux_sym_case_statement_repeat1] = STATE(313), - [sym_comment] = ACTIONS(41), + [sym__special_character] = ACTIONS(1346), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(239), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_DOLLAR] = ACTIONS(1118), + }, + [2560] = { + [sym_concatenation] = STATE(264), + [sym_string] = STATE(262), + [sym_command_substitution] = STATE(262), + [sym_process_substitution] = STATE(262), + [sym_last_case_item] = STATE(1519), + [sym_arithmetic_expansion] = STATE(262), + [sym_string_expansion] = STATE(262), + [sym_expansion] = STATE(262), + [sym_case_item] = STATE(308), + [aux_sym__literal_repeat1] = STATE(265), + [sym_simple_expansion] = STATE(262), + [aux_sym_case_statement_repeat1] = STATE(308), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_number] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), + [sym_word] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), + [anon_sym_LT_LPAREN] = ACTIONS(1098), [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(255), + [sym__special_character] = ACTIONS(1346), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(1118), }, - [2440] = { - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [sym_test_operator] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(541), + [2561] = { + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6324), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, - [2441] = { - [aux_sym__literal_repeat1] = STATE(73), - [sym_unary_expression] = STATE(2442), - [sym_postfix_expression] = STATE(2442), - [sym_string] = STATE(71), - [sym_process_substitution] = STATE(71), - [sym__expression] = STATE(2442), - [sym_binary_expression] = STATE(2442), - [sym_concatenation] = STATE(2442), - [sym_expansion] = STATE(71), - [sym_command_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(2442), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [2562] = { + [sym_unary_expression] = STATE(2563), + [sym_postfix_expression] = STATE(2563), + [sym_concatenation] = STATE(2563), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(2563), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6324), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, - [2442] = { - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(545), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_EQ_TILDE] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [sym_comment] = ACTIONS(41), - [sym_test_operator] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(541), + [2563] = { + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6326), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_EQ_TILDE] = ACTIONS(463), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(461), + [sym_comment] = ACTIONS(53), + [anon_sym_AMP_AMP] = ACTIONS(457), + [sym_test_operator] = ACTIONS(457), }, - [2443] = { - [aux_sym_concatenation_repeat1] = STATE(747), + [2564] = { + [aux_sym_concatenation_repeat1] = STATE(794), [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(429), - }, - [2444] = { - [aux_sym_concatenation_repeat1] = STATE(821), - [anon_sym_RBRACK] = ACTIONS(433), - [sym_comment] = ACTIONS(41), - [sym__concat] = ACTIONS(6037), - }, - [2445] = { - [aux_sym_concatenation_repeat1] = STATE(1082), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_AMP_GT_GT] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(429), - [sym_file_descriptor] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_AMP_GT] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [anon_sym_LT_LT_LT] = ACTIONS(429), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_GT_AMP] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_esac] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_LT_AMP] = ACTIONS(429), - [sym__concat] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_SEMI_SEMI] = ACTIONS(429), - [anon_sym_PIPE_AMP] = ACTIONS(429), - }, - [2446] = { - [aux_sym_concatenation_repeat1] = STATE(2445), - [anon_sym_LT_LT_DASH] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_AMP_GT_GT] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(211), - [sym_file_descriptor] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_AMP_GT] = ACTIONS(211), - [anon_sym_PIPE_PIPE] = ACTIONS(211), - [anon_sym_LT_LT_LT] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(211), - [anon_sym_GT_AMP] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_esac] = ACTIONS(211), - [anon_sym_GT_GT] = ACTIONS(211), - [anon_sym_LT_AMP] = ACTIONS(211), - [sym__concat] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE_AMP] = ACTIONS(211), + [sym__concat] = ACTIONS(6328), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), }, - [2447] = { - [sym_command_substitution] = STATE(2638), - [aux_sym__literal_repeat1] = STATE(464), - [sym_string] = STATE(2638), - [sym_process_substitution] = STATE(2638), - [sym_simple_expansion] = STATE(2638), - [sym_string_expansion] = STATE(2638), - [sym_concatenation] = STATE(465), - [sym_expansion] = STATE(2638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6041), - [sym_word] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(3093), - [sym_ansii_c_string] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(2809), - [anon_sym_BQUOTE] = ACTIONS(2807), - [sym__special_character] = ACTIONS(6045), - [sym_number] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(2809), + [2565] = { + [aux_sym_concatenation_repeat1] = STATE(1134), + [anon_sym_LT_LT_DASH] = ACTIONS(475), + [anon_sym_AMP_GT_GT] = ACTIONS(475), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(475), + [sym_file_descriptor] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_AMP_GT] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [anon_sym_LT_LT_LT] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_GT_AMP] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_esac] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_LT_AMP] = ACTIONS(475), + [sym__concat] = ACTIONS(6330), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PIPE_AMP] = ACTIONS(475), }, - [2448] = { - [sym_command_substitution] = STATE(2640), - [aux_sym__literal_repeat1] = STATE(548), - [sym_string] = STATE(2640), - [sym_process_substitution] = STATE(2640), - [sym_simple_expansion] = STATE(2640), - [sym_string_expansion] = STATE(2640), - [sym_concatenation] = STATE(549), - [sym_expansion] = STATE(2640), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6047), - [sym_word] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(3093), - [sym_ansii_c_string] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(2809), - [anon_sym_BQUOTE] = ACTIONS(2807), - [sym__special_character] = ACTIONS(6045), - [sym_number] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(2809), + [2566] = { + [aux_sym_concatenation_repeat1] = STATE(1200), + [anon_sym_RPAREN] = ACTIONS(479), + [sym__concat] = ACTIONS(6332), + [anon_sym_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(53), }, - [2449] = { - [sym_command_substitution] = STATE(2641), - [aux_sym__literal_repeat1] = STATE(594), - [sym_string] = STATE(2641), - [sym_process_substitution] = STATE(2641), - [sym_simple_expansion] = STATE(2641), - [sym_string_expansion] = STATE(2641), - [sym_concatenation] = STATE(595), - [sym_expansion] = STATE(2641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6051), - [sym_word] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(3093), - [sym_ansii_c_string] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(2809), - [anon_sym_BQUOTE] = ACTIONS(2807), - [sym__special_character] = ACTIONS(6045), - [sym_number] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(2809), + [2567] = { + [sym_unary_expression] = STATE(1541), + [sym_postfix_expression] = STATE(1541), + [sym_concatenation] = STATE(1541), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(1541), + [sym_binary_expression] = STATE(1541), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(1541), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, - [2450] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1482), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2568] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1542), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1543), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(187), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2451] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1483), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2569] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1544), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2452] = { - [sym_subscript] = STATE(1485), - [anon_sym__] = ACTIONS(6055), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6061), - [anon_sym_DASH] = ACTIONS(6061), - [anon_sym_AT] = ACTIONS(6063), - [anon_sym_0] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6063), - [aux_sym__simple_variable_name_token1] = ACTIONS(6055), - [anon_sym_QMARK] = ACTIONS(6063), + [2570] = { + [sym_subscript] = STATE(1546), + [anon_sym_0] = ACTIONS(6334), + [anon_sym_BANG] = ACTIONS(6336), + [sym_variable_name] = ACTIONS(6338), + [anon_sym_STAR] = ACTIONS(6340), + [anon_sym_DASH] = ACTIONS(6342), + [anon_sym_POUND] = ACTIONS(6336), + [anon_sym_QMARK] = ACTIONS(6340), + [aux_sym__simple_variable_name_token1] = ACTIONS(6334), + [anon_sym__] = ACTIONS(6334), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(6342), + [anon_sym_AT] = ACTIONS(6340), }, - [2453] = { - [anon_sym_PLUS_EQ] = ACTIONS(6065), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6065), + [2571] = { + [anon_sym_PLUS_EQ] = ACTIONS(6344), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(6344), + [sym_comment] = ACTIONS(53), }, - [2454] = { - [anon_sym_AMP_GT_GT] = ACTIONS(6067), - [sym_comment] = ACTIONS(41), - [anon_sym_GT_AMP] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6069), - [anon_sym_LT_AMP] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6067), - [anon_sym_GT] = ACTIONS(6069), - [anon_sym_AMP_GT] = ACTIONS(6069), + [2572] = { + [anon_sym_AMP_GT_GT] = ACTIONS(6346), + [anon_sym_GT_AMP] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(6348), + [anon_sym_LT_AMP] = ACTIONS(6346), + [anon_sym_GT_GT] = ACTIONS(6346), + [sym_comment] = ACTIONS(53), + [anon_sym_GT] = ACTIONS(6348), + [anon_sym_AMP_GT] = ACTIONS(6348), }, - [2455] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1491), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1492), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2573] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1550), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2456] = { - [anon_sym_EQ] = ACTIONS(6065), - [anon_sym_PLUS_EQ] = ACTIONS(6065), - [sym_comment] = ACTIONS(41), + [2574] = { + [anon_sym_EQ] = ACTIONS(6344), + [anon_sym_PLUS_EQ] = ACTIONS(6344), + [sym_comment] = ACTIONS(53), }, - [2457] = { - [sym_subscript] = STATE(1495), - [anon_sym__] = ACTIONS(6071), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6075), - [anon_sym_DASH] = ACTIONS(6075), - [anon_sym_AT] = ACTIONS(6077), - [anon_sym_0] = ACTIONS(6071), - [anon_sym_STAR] = ACTIONS(6077), - [aux_sym__simple_variable_name_token1] = ACTIONS(6071), - [anon_sym_QMARK] = ACTIONS(6077), + [2575] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(1552), + [sym_postfix_expression] = STATE(1552), + [sym_concatenation] = STATE(1552), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(1552), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(1552), + [sym_binary_expression] = STATE(1552), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, - [2458] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6079), + [2576] = { + [sym_subscript] = STATE(1555), + [anon_sym_0] = ACTIONS(6350), + [sym_variable_name] = ACTIONS(6352), + [anon_sym_STAR] = ACTIONS(6354), + [anon_sym_DASH] = ACTIONS(6356), + [anon_sym_QMARK] = ACTIONS(6354), + [aux_sym__simple_variable_name_token1] = ACTIONS(6350), + [anon_sym__] = ACTIONS(6350), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(6356), + [anon_sym_AT] = ACTIONS(6354), }, - [2459] = { - [sym_command_substitution] = STATE(71), - [sym_unary_expression] = STATE(1500), - [sym_postfix_expression] = STATE(1500), - [sym_string] = STATE(71), - [aux_sym__literal_repeat1] = STATE(73), - [sym_process_substitution] = STATE(71), - [sym_parenthesized_expression] = STATE(1500), - [sym_simple_expansion] = STATE(71), - [sym_string_expansion] = STATE(71), - [sym__expression] = STATE(1500), - [sym_binary_expression] = STATE(1500), - [sym_concatenation] = STATE(1500), - [sym_expansion] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(237), - [anon_sym_DOLLAR] = ACTIONS(239), - [sym_test_operator] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_word] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [sym_ansii_c_string] = ACTIONS(235), - [sym__special_character] = ACTIONS(255), + [2577] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6358), + [sym_comment] = ACTIONS(53), }, - [2460] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6081), + [2578] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6360), + [sym_comment] = ACTIONS(53), }, - [2461] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1527), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [2579] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(1587), + [sym_postfix_expression] = STATE(1587), + [sym_concatenation] = STATE(1587), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(1587), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(1587), + [sym_binary_expression] = STATE(1587), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2580] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1588), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1589), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2462] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1528), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [2581] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1590), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2463] = { - [sym_subscript] = STATE(1530), - [anon_sym__] = ACTIONS(6083), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6083), - [anon_sym_STAR] = ACTIONS(6085), - [anon_sym_POUND] = ACTIONS(6087), - [anon_sym_BANG] = ACTIONS(6087), - [aux_sym__simple_variable_name_token1] = ACTIONS(6083), - [sym_variable_name] = ACTIONS(6089), - [anon_sym_DOLLAR] = ACTIONS(6091), - [anon_sym_DASH] = ACTIONS(6091), - [anon_sym_AT] = ACTIONS(6085), - [anon_sym_QMARK] = ACTIONS(6085), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2464] = { - [anon_sym_PLUS_EQ] = ACTIONS(6093), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6093), + [2582] = { + [sym_subscript] = STATE(1592), + [anon_sym_0] = ACTIONS(6362), + [anon_sym_POUND] = ACTIONS(6364), + [anon_sym_QMARK] = ACTIONS(6366), + [aux_sym__simple_variable_name_token1] = ACTIONS(6362), + [anon_sym__] = ACTIONS(6362), + [anon_sym_BANG] = ACTIONS(6364), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6368), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_DASH] = ACTIONS(6370), + [anon_sym_DOLLAR] = ACTIONS(6370), + [anon_sym_AT] = ACTIONS(6366), }, - [2465] = { - [anon_sym_AMP_GT_GT] = ACTIONS(6095), - [sym_comment] = ACTIONS(41), - [anon_sym_GT_AMP] = ACTIONS(6095), - [anon_sym_LT] = ACTIONS(6097), - [anon_sym_LT_AMP] = ACTIONS(6095), - [anon_sym_GT_GT] = ACTIONS(6095), - [anon_sym_GT] = ACTIONS(6097), - [anon_sym_AMP_GT] = ACTIONS(6097), + [2583] = { + [anon_sym_PLUS_EQ] = ACTIONS(6372), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(6372), + [sym_comment] = ACTIONS(53), }, - [2466] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1535), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1536), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [2584] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1595), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2467] = { - [anon_sym_EQ] = ACTIONS(6093), - [anon_sym_PLUS_EQ] = ACTIONS(6093), - [sym_comment] = ACTIONS(41), + [2585] = { + [anon_sym_EQ] = ACTIONS(6372), + [anon_sym_PLUS_EQ] = ACTIONS(6372), + [sym_comment] = ACTIONS(53), }, - [2468] = { - [sym_subscript] = STATE(1539), - [anon_sym__] = ACTIONS(6099), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6099), - [anon_sym_STAR] = ACTIONS(6101), - [aux_sym__simple_variable_name_token1] = ACTIONS(6099), - [sym_variable_name] = ACTIONS(6103), - [anon_sym_DOLLAR] = ACTIONS(6105), - [anon_sym_DASH] = ACTIONS(6105), - [anon_sym_AT] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(6101), + [2586] = { + [sym_subscript] = STATE(1599), + [anon_sym_0] = ACTIONS(6374), + [anon_sym_QMARK] = ACTIONS(6376), + [aux_sym__simple_variable_name_token1] = ACTIONS(6374), + [anon_sym__] = ACTIONS(6374), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6378), + [anon_sym_STAR] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6380), + [anon_sym_DOLLAR] = ACTIONS(6380), + [anon_sym_AT] = ACTIONS(6376), }, - [2469] = { - [anon_sym_EQ] = ACTIONS(6107), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), + [2587] = { + [anon_sym_EQ] = ACTIONS(6382), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), }, - [2470] = { - [anon_sym_EQ] = ACTIONS(6109), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), + [2588] = { + [anon_sym_EQ] = ACTIONS(6384), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), }, - [2471] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1570), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [2589] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(1631), + [sym_postfix_expression] = STATE(1631), + [sym_concatenation] = STATE(1631), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(1631), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(1631), + [sym_binary_expression] = STATE(1631), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2590] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1632), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1633), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2472] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1571), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [2591] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1634), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2592] = { + [sym_subscript] = STATE(1636), + [anon_sym_0] = ACTIONS(6386), + [anon_sym_POUND] = ACTIONS(6388), + [anon_sym_QMARK] = ACTIONS(6390), + [aux_sym__simple_variable_name_token1] = ACTIONS(6386), + [anon_sym__] = ACTIONS(6386), + [anon_sym_BANG] = ACTIONS(6388), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6392), + [anon_sym_STAR] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_DOLLAR] = ACTIONS(6394), + [anon_sym_AT] = ACTIONS(6390), + }, + [2593] = { + [anon_sym_PLUS_EQ] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(6396), + [sym_comment] = ACTIONS(53), + }, + [2594] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1639), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2473] = { - [sym_subscript] = STATE(1573), - [anon_sym__] = ACTIONS(6111), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_POUND] = ACTIONS(6115), - [anon_sym_BANG] = ACTIONS(6115), - [aux_sym__simple_variable_name_token1] = ACTIONS(6111), - [sym_variable_name] = ACTIONS(6117), - [anon_sym_DOLLAR] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_AT] = ACTIONS(6113), - [anon_sym_QMARK] = ACTIONS(6113), + [2595] = { + [anon_sym_PLUS_EQ] = ACTIONS(6396), + [anon_sym_EQ] = ACTIONS(6396), + [sym_comment] = ACTIONS(53), }, - [2474] = { - [anon_sym_PLUS_EQ] = ACTIONS(6121), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6121), + [2596] = { + [sym_subscript] = STATE(1643), + [anon_sym_0] = ACTIONS(6398), + [anon_sym_QMARK] = ACTIONS(6400), + [aux_sym__simple_variable_name_token1] = ACTIONS(6398), + [anon_sym__] = ACTIONS(6398), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6402), + [anon_sym_STAR] = ACTIONS(6400), + [anon_sym_DASH] = ACTIONS(6404), + [anon_sym_DOLLAR] = ACTIONS(6404), + [anon_sym_AT] = ACTIONS(6400), }, - [2475] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1578), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1579), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [2597] = { + [anon_sym_EQ] = ACTIONS(6406), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2598] = { + [anon_sym_EQ] = ACTIONS(6408), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2599] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(1675), + [sym_postfix_expression] = STATE(1675), + [sym_concatenation] = STATE(1675), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(1675), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2600] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1676), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1677), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_case] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2601] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1678), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_case] = ACTIONS(89), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2602] = { + [sym_subscript] = STATE(1680), + [anon_sym_0] = ACTIONS(6410), + [anon_sym_POUND] = ACTIONS(6412), + [anon_sym_QMARK] = ACTIONS(6414), + [aux_sym__simple_variable_name_token1] = ACTIONS(6410), + [anon_sym__] = ACTIONS(6410), + [anon_sym_BANG] = ACTIONS(6412), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6416), + [anon_sym_STAR] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6418), + [anon_sym_DOLLAR] = ACTIONS(6418), + [anon_sym_AT] = ACTIONS(6414), + }, + [2603] = { + [anon_sym_PLUS_EQ] = ACTIONS(6420), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(6420), + [sym_comment] = ACTIONS(53), + }, + [2604] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1683), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2476] = { - [anon_sym_PLUS_EQ] = ACTIONS(6121), - [sym_comment] = ACTIONS(41), - [anon_sym_EQ] = ACTIONS(6121), + [2605] = { + [anon_sym_EQ] = ACTIONS(6420), + [anon_sym_PLUS_EQ] = ACTIONS(6420), + [sym_comment] = ACTIONS(53), }, - [2477] = { - [sym_subscript] = STATE(1582), - [anon_sym__] = ACTIONS(6123), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6125), - [aux_sym__simple_variable_name_token1] = ACTIONS(6123), - [sym_variable_name] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_DASH] = ACTIONS(6129), - [anon_sym_AT] = ACTIONS(6125), - [anon_sym_QMARK] = ACTIONS(6125), + [2606] = { + [sym_subscript] = STATE(1687), + [anon_sym_0] = ACTIONS(6422), + [anon_sym_QMARK] = ACTIONS(6424), + [aux_sym__simple_variable_name_token1] = ACTIONS(6422), + [anon_sym__] = ACTIONS(6422), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6426), + [anon_sym_STAR] = ACTIONS(6424), + [anon_sym_DASH] = ACTIONS(6428), + [anon_sym_DOLLAR] = ACTIONS(6428), + [anon_sym_AT] = ACTIONS(6424), }, - [2478] = { - [anon_sym_EQ] = ACTIONS(6131), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), + [2607] = { + [anon_sym_EQ] = ACTIONS(6430), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), }, - [2479] = { - [anon_sym_EQ] = ACTIONS(6133), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), + [2608] = { + [anon_sym_EQ] = ACTIONS(6432), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), }, - [2480] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1613), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2609] = { + [sym_unary_expression] = STATE(1719), + [sym_postfix_expression] = STATE(1719), + [sym_concatenation] = STATE(1719), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(1719), + [sym_binary_expression] = STATE(1719), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(1719), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2610] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1720), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1721), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(187), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2481] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1614), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2611] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1722), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2482] = { - [sym_subscript] = STATE(1616), - [anon_sym__] = ACTIONS(6135), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [sym_variable_name] = ACTIONS(6139), - [anon_sym_DOLLAR] = ACTIONS(6141), - [anon_sym_DASH] = ACTIONS(6141), - [anon_sym_AT] = ACTIONS(6143), - [anon_sym_0] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6143), - [aux_sym__simple_variable_name_token1] = ACTIONS(6135), - [anon_sym_QMARK] = ACTIONS(6143), + [2612] = { + [sym_subscript] = STATE(1724), + [anon_sym_0] = ACTIONS(6434), + [anon_sym_BANG] = ACTIONS(6436), + [sym_variable_name] = ACTIONS(6438), + [anon_sym_STAR] = ACTIONS(6440), + [anon_sym_DASH] = ACTIONS(6442), + [anon_sym_POUND] = ACTIONS(6436), + [anon_sym_QMARK] = ACTIONS(6440), + [aux_sym__simple_variable_name_token1] = ACTIONS(6434), + [anon_sym__] = ACTIONS(6434), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(6442), + [anon_sym_AT] = ACTIONS(6440), }, - [2483] = { - [anon_sym_PLUS_EQ] = ACTIONS(6145), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6145), + [2613] = { + [anon_sym_PLUS_EQ] = ACTIONS(6444), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(6444), + [sym_comment] = ACTIONS(53), }, - [2484] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1621), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1622), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2614] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1727), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2485] = { - [anon_sym_EQ] = ACTIONS(6145), - [anon_sym_PLUS_EQ] = ACTIONS(6145), - [sym_comment] = ACTIONS(41), + [2615] = { + [anon_sym_EQ] = ACTIONS(6444), + [anon_sym_PLUS_EQ] = ACTIONS(6444), + [sym_comment] = ACTIONS(53), }, - [2486] = { - [sym_subscript] = STATE(1625), - [anon_sym__] = ACTIONS(6147), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6149), - [anon_sym_DOLLAR] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_AT] = ACTIONS(6153), - [anon_sym_0] = ACTIONS(6147), - [anon_sym_STAR] = ACTIONS(6153), - [aux_sym__simple_variable_name_token1] = ACTIONS(6147), - [anon_sym_QMARK] = ACTIONS(6153), + [2616] = { + [sym_subscript] = STATE(1731), + [anon_sym_0] = ACTIONS(6446), + [sym_variable_name] = ACTIONS(6448), + [anon_sym_STAR] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_QMARK] = ACTIONS(6450), + [aux_sym__simple_variable_name_token1] = ACTIONS(6446), + [anon_sym__] = ACTIONS(6446), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(6452), + [anon_sym_AT] = ACTIONS(6450), }, - [2487] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6155), + [2617] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6454), + [sym_comment] = ACTIONS(53), }, - [2488] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6157), + [2618] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6456), + [sym_comment] = ACTIONS(53), }, - [2489] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1656), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2619] = { + [sym_unary_expression] = STATE(1763), + [sym_postfix_expression] = STATE(1763), + [sym_concatenation] = STATE(1763), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(1763), + [sym_binary_expression] = STATE(1763), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(1763), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2620] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1764), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1765), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(187), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2490] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1657), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2621] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1766), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2491] = { - [sym_subscript] = STATE(1659), - [anon_sym__] = ACTIONS(6159), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [sym_variable_name] = ACTIONS(6163), - [anon_sym_DOLLAR] = ACTIONS(6165), - [anon_sym_DASH] = ACTIONS(6165), - [anon_sym_AT] = ACTIONS(6167), - [anon_sym_0] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6167), - [aux_sym__simple_variable_name_token1] = ACTIONS(6159), - [anon_sym_QMARK] = ACTIONS(6167), + [2622] = { + [sym_subscript] = STATE(1768), + [anon_sym_0] = ACTIONS(6458), + [anon_sym_BANG] = ACTIONS(6460), + [sym_variable_name] = ACTIONS(6462), + [anon_sym_STAR] = ACTIONS(6464), + [anon_sym_DASH] = ACTIONS(6466), + [anon_sym_POUND] = ACTIONS(6460), + [anon_sym_QMARK] = ACTIONS(6464), + [aux_sym__simple_variable_name_token1] = ACTIONS(6458), + [anon_sym__] = ACTIONS(6458), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(6466), + [anon_sym_AT] = ACTIONS(6464), }, - [2492] = { - [anon_sym_PLUS_EQ] = ACTIONS(6169), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6169), + [2623] = { + [anon_sym_PLUS_EQ] = ACTIONS(6468), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(6468), + [sym_comment] = ACTIONS(53), }, - [2493] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1664), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1665), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2624] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1771), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2494] = { - [anon_sym_EQ] = ACTIONS(6169), - [anon_sym_PLUS_EQ] = ACTIONS(6169), - [sym_comment] = ACTIONS(41), + [2625] = { + [anon_sym_EQ] = ACTIONS(6468), + [anon_sym_PLUS_EQ] = ACTIONS(6468), + [sym_comment] = ACTIONS(53), }, - [2495] = { - [sym_subscript] = STATE(1668), - [anon_sym__] = ACTIONS(6171), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6173), - [anon_sym_DOLLAR] = ACTIONS(6175), - [anon_sym_DASH] = ACTIONS(6175), - [anon_sym_AT] = ACTIONS(6177), - [anon_sym_0] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6177), - [aux_sym__simple_variable_name_token1] = ACTIONS(6171), - [anon_sym_QMARK] = ACTIONS(6177), + [2626] = { + [sym_subscript] = STATE(1775), + [anon_sym_0] = ACTIONS(6470), + [sym_variable_name] = ACTIONS(6472), + [anon_sym_STAR] = ACTIONS(6474), + [anon_sym_DASH] = ACTIONS(6476), + [anon_sym_QMARK] = ACTIONS(6474), + [aux_sym__simple_variable_name_token1] = ACTIONS(6470), + [anon_sym__] = ACTIONS(6470), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(6476), + [anon_sym_AT] = ACTIONS(6474), }, - [2496] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6179), + [2627] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6478), + [sym_comment] = ACTIONS(53), }, - [2497] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6181), + [2628] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6480), + [sym_comment] = ACTIONS(53), }, - [2498] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1699), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [2629] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(1807), + [sym_postfix_expression] = STATE(1807), + [sym_concatenation] = STATE(1807), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(1807), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(1807), + [sym_binary_expression] = STATE(1807), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2630] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1808), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1809), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2499] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1700), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2631] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1810), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2500] = { - [sym_subscript] = STATE(1702), - [anon_sym__] = ACTIONS(6183), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6185), - [anon_sym_POUND] = ACTIONS(6187), - [anon_sym_BANG] = ACTIONS(6187), - [aux_sym__simple_variable_name_token1] = ACTIONS(6183), - [sym_variable_name] = ACTIONS(6189), - [anon_sym_DOLLAR] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_AT] = ACTIONS(6185), - [anon_sym_QMARK] = ACTIONS(6185), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2501] = { - [anon_sym_PLUS_EQ] = ACTIONS(6193), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_EQ] = ACTIONS(6193), + [2632] = { + [sym_subscript] = STATE(1812), + [anon_sym_0] = ACTIONS(6482), + [anon_sym_POUND] = ACTIONS(6484), + [anon_sym_QMARK] = ACTIONS(6486), + [aux_sym__simple_variable_name_token1] = ACTIONS(6482), + [anon_sym__] = ACTIONS(6482), + [anon_sym_BANG] = ACTIONS(6484), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6488), + [anon_sym_STAR] = ACTIONS(6486), + [anon_sym_DASH] = ACTIONS(6490), + [anon_sym_DOLLAR] = ACTIONS(6490), + [anon_sym_AT] = ACTIONS(6486), }, - [2502] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1707), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1708), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [2633] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1814), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2503] = { - [anon_sym_EQ] = ACTIONS(6193), - [anon_sym_PLUS_EQ] = ACTIONS(6193), - [sym_comment] = ACTIONS(41), + [2634] = { + [sym_subscript] = STATE(1818), + [anon_sym_0] = ACTIONS(6492), + [anon_sym_QMARK] = ACTIONS(6494), + [aux_sym__simple_variable_name_token1] = ACTIONS(6492), + [anon_sym__] = ACTIONS(6492), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6496), + [anon_sym_STAR] = ACTIONS(6494), + [anon_sym_DASH] = ACTIONS(6498), + [anon_sym_DOLLAR] = ACTIONS(6498), + [anon_sym_AT] = ACTIONS(6494), }, - [2504] = { - [sym_subscript] = STATE(1711), - [anon_sym__] = ACTIONS(6195), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6195), - [anon_sym_STAR] = ACTIONS(6197), - [aux_sym__simple_variable_name_token1] = ACTIONS(6195), - [sym_variable_name] = ACTIONS(6199), - [anon_sym_DOLLAR] = ACTIONS(6201), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_AT] = ACTIONS(6197), - [anon_sym_QMARK] = ACTIONS(6197), + [2635] = { + [anon_sym_EQ] = ACTIONS(6500), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), }, - [2505] = { - [anon_sym_EQ] = ACTIONS(6203), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), + [2636] = { + [anon_sym_EQ] = ACTIONS(6502), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), }, - [2506] = { - [anon_sym_EQ] = ACTIONS(6205), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), + [2637] = { + [sym_unary_expression] = STATE(1848), + [sym_postfix_expression] = STATE(1848), + [sym_concatenation] = STATE(1848), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(1848), + [sym_binary_expression] = STATE(1848), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(1848), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), }, - [2507] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1742), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2638] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1849), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1850), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(187), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2508] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1743), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2639] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1851), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2509] = { - [sym_subscript] = STATE(1745), - [anon_sym__] = ACTIONS(6207), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [sym_variable_name] = ACTIONS(6211), - [anon_sym_DOLLAR] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_AT] = ACTIONS(6215), - [anon_sym_0] = ACTIONS(6207), - [anon_sym_STAR] = ACTIONS(6215), - [aux_sym__simple_variable_name_token1] = ACTIONS(6207), - [anon_sym_QMARK] = ACTIONS(6215), + [2640] = { + [sym_subscript] = STATE(1853), + [anon_sym_0] = ACTIONS(6504), + [anon_sym_BANG] = ACTIONS(6506), + [sym_variable_name] = ACTIONS(6508), + [anon_sym_STAR] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6512), + [anon_sym_POUND] = ACTIONS(6506), + [anon_sym_QMARK] = ACTIONS(6510), + [aux_sym__simple_variable_name_token1] = ACTIONS(6504), + [anon_sym__] = ACTIONS(6504), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(6512), + [anon_sym_AT] = ACTIONS(6510), }, - [2510] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1749), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1750), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2641] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1855), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), }, - [2511] = { - [sym_subscript] = STATE(1753), - [anon_sym__] = ACTIONS(6217), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6219), - [anon_sym_DOLLAR] = ACTIONS(6221), - [anon_sym_DASH] = ACTIONS(6221), - [anon_sym_AT] = ACTIONS(6223), - [anon_sym_0] = ACTIONS(6217), - [anon_sym_STAR] = ACTIONS(6223), - [aux_sym__simple_variable_name_token1] = ACTIONS(6217), - [anon_sym_QMARK] = ACTIONS(6223), + [2642] = { + [sym_subscript] = STATE(1859), + [anon_sym_0] = ACTIONS(6514), + [sym_variable_name] = ACTIONS(6516), + [anon_sym_STAR] = ACTIONS(6518), + [anon_sym_DASH] = ACTIONS(6520), + [anon_sym_QMARK] = ACTIONS(6518), + [aux_sym__simple_variable_name_token1] = ACTIONS(6514), + [anon_sym__] = ACTIONS(6514), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(6520), + [anon_sym_AT] = ACTIONS(6518), }, - [2512] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6225), + [2643] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6522), + [sym_comment] = ACTIONS(53), }, - [2513] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6227), + [2644] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6524), + [sym_comment] = ACTIONS(53), }, - [2514] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1782), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [2645] = { + [sym_unary_expression] = STATE(1889), + [sym_postfix_expression] = STATE(1889), + [sym_concatenation] = STATE(1889), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(1889), + [sym_binary_expression] = STATE(1889), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(1889), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2646] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1890), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1891), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(187), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2515] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1783), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2647] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1892), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2516] = { - [sym_subscript] = STATE(1785), - [anon_sym__] = ACTIONS(6229), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6231), - [anon_sym_BANG] = ACTIONS(6231), - [sym_variable_name] = ACTIONS(6233), - [anon_sym_DOLLAR] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_AT] = ACTIONS(6237), - [anon_sym_0] = ACTIONS(6229), - [anon_sym_STAR] = ACTIONS(6237), - [aux_sym__simple_variable_name_token1] = ACTIONS(6229), - [anon_sym_QMARK] = ACTIONS(6237), - }, - [2517] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1789), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1790), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2648] = { + [sym_subscript] = STATE(1894), + [anon_sym_0] = ACTIONS(6526), + [anon_sym_BANG] = ACTIONS(6528), + [sym_variable_name] = ACTIONS(6530), + [anon_sym_STAR] = ACTIONS(6532), + [anon_sym_DASH] = ACTIONS(6534), + [anon_sym_POUND] = ACTIONS(6528), + [anon_sym_QMARK] = ACTIONS(6532), + [aux_sym__simple_variable_name_token1] = ACTIONS(6526), + [anon_sym__] = ACTIONS(6526), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(6534), + [anon_sym_AT] = ACTIONS(6532), + }, + [2649] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1896), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2518] = { - [sym_subscript] = STATE(1793), - [anon_sym__] = ACTIONS(6239), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6241), - [anon_sym_DOLLAR] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_AT] = ACTIONS(6245), - [anon_sym_0] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6245), - [aux_sym__simple_variable_name_token1] = ACTIONS(6239), - [anon_sym_QMARK] = ACTIONS(6245), - }, - [2519] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6247), - }, - [2520] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6249), - }, - [2521] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1822), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2650] = { + [sym_subscript] = STATE(1900), + [anon_sym_0] = ACTIONS(6536), + [sym_variable_name] = ACTIONS(6538), + [anon_sym_STAR] = ACTIONS(6540), + [anon_sym_DASH] = ACTIONS(6542), + [anon_sym_QMARK] = ACTIONS(6540), + [aux_sym__simple_variable_name_token1] = ACTIONS(6536), + [anon_sym__] = ACTIONS(6536), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(6542), + [anon_sym_AT] = ACTIONS(6540), + }, + [2651] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6544), + [sym_comment] = ACTIONS(53), + }, + [2652] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6546), + [sym_comment] = ACTIONS(53), + }, + [2653] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(1930), + [sym_postfix_expression] = STATE(1930), + [sym_concatenation] = STATE(1930), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(1930), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(1930), + [sym_binary_expression] = STATE(1930), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2654] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1931), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1932), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(187), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2522] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1823), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2655] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1933), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2523] = { - [sym_subscript] = STATE(1825), - [anon_sym__] = ACTIONS(6251), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6253), - [anon_sym_BANG] = ACTIONS(6253), - [sym_variable_name] = ACTIONS(6255), - [anon_sym_DOLLAR] = ACTIONS(6257), - [anon_sym_DASH] = ACTIONS(6257), - [anon_sym_AT] = ACTIONS(6259), - [anon_sym_0] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6259), - [aux_sym__simple_variable_name_token1] = ACTIONS(6251), - [anon_sym_QMARK] = ACTIONS(6259), - }, - [2524] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1829), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1830), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2656] = { + [sym_subscript] = STATE(1935), + [anon_sym_0] = ACTIONS(6548), + [anon_sym_POUND] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6552), + [aux_sym__simple_variable_name_token1] = ACTIONS(6548), + [anon_sym__] = ACTIONS(6548), + [anon_sym_BANG] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6554), + [anon_sym_STAR] = ACTIONS(6552), + [anon_sym_DASH] = ACTIONS(6556), + [anon_sym_DOLLAR] = ACTIONS(6556), + [anon_sym_AT] = ACTIONS(6552), + }, + [2657] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1937), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2525] = { - [sym_subscript] = STATE(1833), - [anon_sym__] = ACTIONS(6261), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6263), - [anon_sym_DOLLAR] = ACTIONS(6265), - [anon_sym_DASH] = ACTIONS(6265), - [anon_sym_AT] = ACTIONS(6267), - [anon_sym_0] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6267), - [aux_sym__simple_variable_name_token1] = ACTIONS(6261), - [anon_sym_QMARK] = ACTIONS(6267), - }, - [2526] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6269), - }, - [2527] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6271), - }, - [2528] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1862), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2658] = { + [sym_subscript] = STATE(1941), + [anon_sym_0] = ACTIONS(6558), + [anon_sym_QMARK] = ACTIONS(6560), + [aux_sym__simple_variable_name_token1] = ACTIONS(6558), + [anon_sym__] = ACTIONS(6558), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6562), + [anon_sym_STAR] = ACTIONS(6560), + [anon_sym_DASH] = ACTIONS(6564), + [anon_sym_DOLLAR] = ACTIONS(6564), + [anon_sym_AT] = ACTIONS(6560), + }, + [2659] = { + [anon_sym_EQ] = ACTIONS(6566), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2660] = { + [anon_sym_EQ] = ACTIONS(6568), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2661] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(1971), + [sym_postfix_expression] = STATE(1971), + [sym_concatenation] = STATE(1971), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(1971), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(1971), + [sym_binary_expression] = STATE(1971), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2662] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(1972), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1973), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2529] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1863), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2663] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(1974), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2530] = { - [sym_subscript] = STATE(1865), - [anon_sym__] = ACTIONS(6273), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6273), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_POUND] = ACTIONS(6277), - [anon_sym_BANG] = ACTIONS(6277), - [aux_sym__simple_variable_name_token1] = ACTIONS(6273), - [sym_variable_name] = ACTIONS(6279), - [anon_sym_DOLLAR] = ACTIONS(6281), - [anon_sym_DASH] = ACTIONS(6281), - [anon_sym_AT] = ACTIONS(6275), - [anon_sym_QMARK] = ACTIONS(6275), - }, - [2531] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1869), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1870), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2664] = { + [sym_subscript] = STATE(1976), + [anon_sym_0] = ACTIONS(6570), + [anon_sym_POUND] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6574), + [aux_sym__simple_variable_name_token1] = ACTIONS(6570), + [anon_sym__] = ACTIONS(6570), + [anon_sym_BANG] = ACTIONS(6572), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(6574), + [anon_sym_DASH] = ACTIONS(6578), + [anon_sym_DOLLAR] = ACTIONS(6578), + [anon_sym_AT] = ACTIONS(6574), + }, + [2665] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(1978), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2532] = { - [sym_subscript] = STATE(1873), - [anon_sym__] = ACTIONS(6283), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6285), - [aux_sym__simple_variable_name_token1] = ACTIONS(6283), - [sym_variable_name] = ACTIONS(6287), - [anon_sym_DOLLAR] = ACTIONS(6289), - [anon_sym_DASH] = ACTIONS(6289), - [anon_sym_AT] = ACTIONS(6285), - [anon_sym_QMARK] = ACTIONS(6285), - }, - [2533] = { - [anon_sym_EQ] = ACTIONS(6291), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2534] = { - [anon_sym_EQ] = ACTIONS(6293), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2535] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1902), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2666] = { + [sym_subscript] = STATE(1982), + [anon_sym_0] = ACTIONS(6580), + [anon_sym_QMARK] = ACTIONS(6582), + [aux_sym__simple_variable_name_token1] = ACTIONS(6580), + [anon_sym__] = ACTIONS(6580), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6584), + [anon_sym_STAR] = ACTIONS(6582), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_DOLLAR] = ACTIONS(6586), + [anon_sym_AT] = ACTIONS(6582), + }, + [2667] = { + [anon_sym_EQ] = ACTIONS(6588), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2668] = { + [anon_sym_EQ] = ACTIONS(6590), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2669] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(2012), + [sym_postfix_expression] = STATE(2012), + [sym_concatenation] = STATE(2012), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(2012), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(2012), + [sym_binary_expression] = STATE(2012), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2670] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2013), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2014), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2536] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1903), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2671] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2015), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2537] = { - [sym_subscript] = STATE(1905), - [anon_sym__] = ACTIONS(6295), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6297), - [anon_sym_POUND] = ACTIONS(6299), - [anon_sym_BANG] = ACTIONS(6299), - [aux_sym__simple_variable_name_token1] = ACTIONS(6295), - [sym_variable_name] = ACTIONS(6301), - [anon_sym_DOLLAR] = ACTIONS(6303), - [anon_sym_DASH] = ACTIONS(6303), - [anon_sym_AT] = ACTIONS(6297), - [anon_sym_QMARK] = ACTIONS(6297), - }, - [2538] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1909), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1910), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2672] = { + [sym_subscript] = STATE(2017), + [anon_sym_0] = ACTIONS(6592), + [anon_sym_POUND] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6596), + [aux_sym__simple_variable_name_token1] = ACTIONS(6592), + [anon_sym__] = ACTIONS(6592), + [anon_sym_BANG] = ACTIONS(6594), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6598), + [anon_sym_STAR] = ACTIONS(6596), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_DOLLAR] = ACTIONS(6600), + [anon_sym_AT] = ACTIONS(6596), + }, + [2673] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2019), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2539] = { - [sym_subscript] = STATE(1913), - [anon_sym__] = ACTIONS(6305), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6305), - [anon_sym_STAR] = ACTIONS(6307), - [aux_sym__simple_variable_name_token1] = ACTIONS(6305), - [sym_variable_name] = ACTIONS(6309), - [anon_sym_DOLLAR] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_AT] = ACTIONS(6307), - [anon_sym_QMARK] = ACTIONS(6307), - }, - [2540] = { - [anon_sym_EQ] = ACTIONS(6313), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2541] = { - [anon_sym_EQ] = ACTIONS(6315), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2542] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1942), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2674] = { + [sym_subscript] = STATE(2023), + [anon_sym_0] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6604), + [aux_sym__simple_variable_name_token1] = ACTIONS(6602), + [anon_sym__] = ACTIONS(6602), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_DOLLAR] = ACTIONS(6608), + [anon_sym_AT] = ACTIONS(6604), + }, + [2675] = { + [anon_sym_EQ] = ACTIONS(6610), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2676] = { + [anon_sym_EQ] = ACTIONS(6612), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2677] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(2053), + [sym_postfix_expression] = STATE(2053), + [sym_concatenation] = STATE(2053), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(2053), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(2053), + [sym_binary_expression] = STATE(2053), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2678] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2054), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2055), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2543] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1943), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2679] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2056), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2544] = { - [sym_subscript] = STATE(1945), - [anon_sym__] = ACTIONS(6317), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6317), - [anon_sym_STAR] = ACTIONS(6319), - [anon_sym_POUND] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [aux_sym__simple_variable_name_token1] = ACTIONS(6317), - [sym_variable_name] = ACTIONS(6323), - [anon_sym_DOLLAR] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_AT] = ACTIONS(6319), - [anon_sym_QMARK] = ACTIONS(6319), - }, - [2545] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1949), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1950), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2680] = { + [sym_subscript] = STATE(2058), + [anon_sym_0] = ACTIONS(6614), + [anon_sym_POUND] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6618), + [aux_sym__simple_variable_name_token1] = ACTIONS(6614), + [anon_sym__] = ACTIONS(6614), + [anon_sym_BANG] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6622), + [anon_sym_DOLLAR] = ACTIONS(6622), + [anon_sym_AT] = ACTIONS(6618), + }, + [2681] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2060), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2546] = { - [sym_subscript] = STATE(1953), - [anon_sym__] = ACTIONS(6327), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6329), - [aux_sym__simple_variable_name_token1] = ACTIONS(6327), - [sym_variable_name] = ACTIONS(6331), - [anon_sym_DOLLAR] = ACTIONS(6333), - [anon_sym_DASH] = ACTIONS(6333), - [anon_sym_AT] = ACTIONS(6329), - [anon_sym_QMARK] = ACTIONS(6329), - }, - [2547] = { - [anon_sym_EQ] = ACTIONS(6335), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2548] = { - [anon_sym_EQ] = ACTIONS(6337), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2549] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(1982), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2682] = { + [sym_subscript] = STATE(2064), + [anon_sym_0] = ACTIONS(6624), + [anon_sym_QMARK] = ACTIONS(6626), + [aux_sym__simple_variable_name_token1] = ACTIONS(6624), + [anon_sym__] = ACTIONS(6624), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6630), + [anon_sym_DOLLAR] = ACTIONS(6630), + [anon_sym_AT] = ACTIONS(6626), + }, + [2683] = { + [anon_sym_EQ] = ACTIONS(6632), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2684] = { + [anon_sym_EQ] = ACTIONS(6634), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2685] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(2094), + [sym_postfix_expression] = STATE(2094), + [sym_concatenation] = STATE(2094), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(2094), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(2094), + [sym_binary_expression] = STATE(2094), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2686] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2095), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2096), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2550] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1983), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2687] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2097), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2551] = { - [sym_subscript] = STATE(1985), - [anon_sym__] = ACTIONS(6339), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6341), - [anon_sym_POUND] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(6343), - [aux_sym__simple_variable_name_token1] = ACTIONS(6339), - [sym_variable_name] = ACTIONS(6345), - [anon_sym_DOLLAR] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_AT] = ACTIONS(6341), - [anon_sym_QMARK] = ACTIONS(6341), - }, - [2552] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(1989), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(1990), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2688] = { + [sym_subscript] = STATE(2099), + [anon_sym_0] = ACTIONS(6636), + [anon_sym_POUND] = ACTIONS(6638), + [anon_sym_QMARK] = ACTIONS(6640), + [aux_sym__simple_variable_name_token1] = ACTIONS(6636), + [anon_sym__] = ACTIONS(6636), + [anon_sym_BANG] = ACTIONS(6638), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6642), + [anon_sym_STAR] = ACTIONS(6640), + [anon_sym_DASH] = ACTIONS(6644), + [anon_sym_DOLLAR] = ACTIONS(6644), + [anon_sym_AT] = ACTIONS(6640), + }, + [2689] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2101), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2553] = { - [sym_subscript] = STATE(1993), - [anon_sym__] = ACTIONS(6349), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6349), - [anon_sym_STAR] = ACTIONS(6351), - [aux_sym__simple_variable_name_token1] = ACTIONS(6349), - [sym_variable_name] = ACTIONS(6353), - [anon_sym_DOLLAR] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_AT] = ACTIONS(6351), - [anon_sym_QMARK] = ACTIONS(6351), - }, - [2554] = { - [anon_sym_EQ] = ACTIONS(6357), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2555] = { - [anon_sym_EQ] = ACTIONS(6359), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2556] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(2022), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2690] = { + [sym_subscript] = STATE(2105), + [anon_sym_0] = ACTIONS(6646), + [anon_sym_QMARK] = ACTIONS(6648), + [aux_sym__simple_variable_name_token1] = ACTIONS(6646), + [anon_sym__] = ACTIONS(6646), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6650), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6652), + [anon_sym_DOLLAR] = ACTIONS(6652), + [anon_sym_AT] = ACTIONS(6648), + }, + [2691] = { + [anon_sym_EQ] = ACTIONS(6654), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2692] = { + [anon_sym_EQ] = ACTIONS(6656), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2693] = { + [sym_unary_expression] = STATE(2135), + [sym_postfix_expression] = STATE(2135), + [sym_concatenation] = STATE(2135), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(2135), + [sym_binary_expression] = STATE(2135), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(2135), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2694] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2136), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2137), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(187), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2557] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2023), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2695] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2138), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2558] = { - [sym_subscript] = STATE(2025), - [anon_sym__] = ACTIONS(6361), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6363), - [anon_sym_BANG] = ACTIONS(6363), - [sym_variable_name] = ACTIONS(6365), - [anon_sym_DOLLAR] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_AT] = ACTIONS(6369), - [anon_sym_0] = ACTIONS(6361), - [anon_sym_STAR] = ACTIONS(6369), - [aux_sym__simple_variable_name_token1] = ACTIONS(6361), - [anon_sym_QMARK] = ACTIONS(6369), - }, - [2559] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(2029), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2030), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2696] = { + [sym_subscript] = STATE(2140), + [anon_sym_0] = ACTIONS(6658), + [anon_sym_BANG] = ACTIONS(6660), + [sym_variable_name] = ACTIONS(6662), + [anon_sym_STAR] = ACTIONS(6664), + [anon_sym_DASH] = ACTIONS(6666), + [anon_sym_POUND] = ACTIONS(6660), + [anon_sym_QMARK] = ACTIONS(6664), + [aux_sym__simple_variable_name_token1] = ACTIONS(6658), + [anon_sym__] = ACTIONS(6658), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(6666), + [anon_sym_AT] = ACTIONS(6664), + }, + [2697] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2142), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2560] = { - [sym_subscript] = STATE(2033), - [anon_sym__] = ACTIONS(6371), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6373), - [anon_sym_DOLLAR] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_AT] = ACTIONS(6377), - [anon_sym_0] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6377), - [aux_sym__simple_variable_name_token1] = ACTIONS(6371), - [anon_sym_QMARK] = ACTIONS(6377), - }, - [2561] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6379), - }, - [2562] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6381), - }, - [2563] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(2062), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2698] = { + [sym_subscript] = STATE(2146), + [anon_sym_0] = ACTIONS(6668), + [sym_variable_name] = ACTIONS(6670), + [anon_sym_STAR] = ACTIONS(6672), + [anon_sym_DASH] = ACTIONS(6674), + [anon_sym_QMARK] = ACTIONS(6672), + [aux_sym__simple_variable_name_token1] = ACTIONS(6668), + [anon_sym__] = ACTIONS(6668), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(6674), + [anon_sym_AT] = ACTIONS(6672), + }, + [2699] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6676), + [sym_comment] = ACTIONS(53), + }, + [2700] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6678), + [sym_comment] = ACTIONS(53), + }, + [2701] = { + [sym_unary_expression] = STATE(2176), + [sym_postfix_expression] = STATE(2176), + [sym_concatenation] = STATE(2176), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(2176), + [sym_binary_expression] = STATE(2176), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(2176), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2702] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2177), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2178), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(187), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2564] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2063), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2703] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2179), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2565] = { - [sym_subscript] = STATE(2065), - [anon_sym__] = ACTIONS(6383), - [sym_comment] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [sym_variable_name] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_DASH] = ACTIONS(6389), - [anon_sym_AT] = ACTIONS(6391), - [anon_sym_0] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6391), - [aux_sym__simple_variable_name_token1] = ACTIONS(6383), - [anon_sym_QMARK] = ACTIONS(6391), - }, - [2566] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(2069), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2070), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2704] = { + [sym_subscript] = STATE(2181), + [anon_sym_0] = ACTIONS(6680), + [anon_sym_BANG] = ACTIONS(6682), + [sym_variable_name] = ACTIONS(6684), + [anon_sym_STAR] = ACTIONS(6686), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_POUND] = ACTIONS(6682), + [anon_sym_QMARK] = ACTIONS(6686), + [aux_sym__simple_variable_name_token1] = ACTIONS(6680), + [anon_sym__] = ACTIONS(6680), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(6688), + [anon_sym_AT] = ACTIONS(6686), + }, + [2705] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2183), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2567] = { - [sym_subscript] = STATE(2073), - [anon_sym__] = ACTIONS(6393), - [sym_comment] = ACTIONS(41), - [sym_variable_name] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_DASH] = ACTIONS(6397), - [anon_sym_AT] = ACTIONS(6399), - [anon_sym_0] = ACTIONS(6393), - [anon_sym_STAR] = ACTIONS(6399), - [aux_sym__simple_variable_name_token1] = ACTIONS(6393), - [anon_sym_QMARK] = ACTIONS(6399), - }, - [2568] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6401), - }, - [2569] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(6403), - }, - [2570] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(2102), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2571] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2103), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2706] = { + [sym_subscript] = STATE(2187), + [anon_sym_0] = ACTIONS(6690), + [sym_variable_name] = ACTIONS(6692), + [anon_sym_STAR] = ACTIONS(6694), + [anon_sym_DASH] = ACTIONS(6696), + [anon_sym_QMARK] = ACTIONS(6694), + [aux_sym__simple_variable_name_token1] = ACTIONS(6690), + [anon_sym__] = ACTIONS(6690), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(6696), + [anon_sym_AT] = ACTIONS(6694), + }, + [2707] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6698), + [sym_comment] = ACTIONS(53), + }, + [2708] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6700), + [sym_comment] = ACTIONS(53), + }, + [2709] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(2217), + [sym_postfix_expression] = STATE(2217), + [sym_concatenation] = STATE(2217), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(2217), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(2217), + [sym_binary_expression] = STATE(2217), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2710] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2218), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2219), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2572] = { - [sym_subscript] = STATE(2105), - [anon_sym__] = ACTIONS(6405), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6405), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_POUND] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [aux_sym__simple_variable_name_token1] = ACTIONS(6405), - [sym_variable_name] = ACTIONS(6411), - [anon_sym_DOLLAR] = ACTIONS(6413), - [anon_sym_DASH] = ACTIONS(6413), - [anon_sym_AT] = ACTIONS(6407), - [anon_sym_QMARK] = ACTIONS(6407), - }, - [2573] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(2109), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2110), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2574] = { - [sym_subscript] = STATE(2113), - [anon_sym__] = ACTIONS(6415), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6417), - [aux_sym__simple_variable_name_token1] = ACTIONS(6415), - [sym_variable_name] = ACTIONS(6419), - [anon_sym_DOLLAR] = ACTIONS(6421), - [anon_sym_DASH] = ACTIONS(6421), - [anon_sym_AT] = ACTIONS(6417), - [anon_sym_QMARK] = ACTIONS(6417), - }, - [2575] = { - [anon_sym_EQ] = ACTIONS(6423), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2576] = { - [anon_sym_EQ] = ACTIONS(6425), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2577] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(2142), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2711] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2220), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2578] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2143), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_case] = ACTIONS(89), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2712] = { + [sym_subscript] = STATE(2222), + [anon_sym_0] = ACTIONS(6702), + [anon_sym_POUND] = ACTIONS(6704), + [anon_sym_QMARK] = ACTIONS(6706), + [aux_sym__simple_variable_name_token1] = ACTIONS(6702), + [anon_sym__] = ACTIONS(6702), + [anon_sym_BANG] = ACTIONS(6704), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6708), + [anon_sym_STAR] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6710), + [anon_sym_DOLLAR] = ACTIONS(6710), + [anon_sym_AT] = ACTIONS(6706), + }, + [2713] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2224), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2579] = { - [sym_subscript] = STATE(2145), - [anon_sym__] = ACTIONS(6427), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6429), - [anon_sym_POUND] = ACTIONS(6431), - [anon_sym_BANG] = ACTIONS(6431), - [aux_sym__simple_variable_name_token1] = ACTIONS(6427), - [sym_variable_name] = ACTIONS(6433), - [anon_sym_DOLLAR] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_AT] = ACTIONS(6429), - [anon_sym_QMARK] = ACTIONS(6429), - }, - [2580] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(2149), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2150), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2714] = { + [sym_subscript] = STATE(2228), + [anon_sym_0] = ACTIONS(6712), + [anon_sym_QMARK] = ACTIONS(6714), + [aux_sym__simple_variable_name_token1] = ACTIONS(6712), + [anon_sym__] = ACTIONS(6712), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6714), + [anon_sym_DASH] = ACTIONS(6718), + [anon_sym_DOLLAR] = ACTIONS(6718), + [anon_sym_AT] = ACTIONS(6714), + }, + [2715] = { + [anon_sym_EQ] = ACTIONS(6720), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2716] = { + [anon_sym_EQ] = ACTIONS(6722), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2717] = { + [sym_unary_expression] = STATE(2258), + [sym_postfix_expression] = STATE(2258), + [sym_concatenation] = STATE(2258), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym__expression] = STATE(2258), + [sym_binary_expression] = STATE(2258), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [sym_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(55), + [sym_parenthesized_expression] = STATE(2258), + [sym_simple_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2718] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2259), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2260), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_case] = ACTIONS(89), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2719] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2261), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2581] = { - [sym_subscript] = STATE(2153), - [anon_sym__] = ACTIONS(6437), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6437), - [anon_sym_STAR] = ACTIONS(6439), - [aux_sym__simple_variable_name_token1] = ACTIONS(6437), - [sym_variable_name] = ACTIONS(6441), - [anon_sym_DOLLAR] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_AT] = ACTIONS(6439), - [anon_sym_QMARK] = ACTIONS(6439), - }, - [2582] = { - [anon_sym_EQ] = ACTIONS(6445), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2583] = { - [anon_sym_EQ] = ACTIONS(6447), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2584] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(2182), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2720] = { + [sym_subscript] = STATE(2263), + [anon_sym_0] = ACTIONS(6724), + [anon_sym_BANG] = ACTIONS(6726), + [sym_variable_name] = ACTIONS(6728), + [anon_sym_STAR] = ACTIONS(6730), + [anon_sym_DASH] = ACTIONS(6732), + [anon_sym_POUND] = ACTIONS(6726), + [anon_sym_QMARK] = ACTIONS(6730), + [aux_sym__simple_variable_name_token1] = ACTIONS(6724), + [anon_sym__] = ACTIONS(6724), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(6732), + [anon_sym_AT] = ACTIONS(6730), + }, + [2721] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2265), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_if] = ACTIONS(87), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_case] = ACTIONS(89), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2722] = { + [sym_subscript] = STATE(2269), + [anon_sym_0] = ACTIONS(6734), + [sym_variable_name] = ACTIONS(6736), + [anon_sym_STAR] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6740), + [anon_sym_QMARK] = ACTIONS(6738), + [aux_sym__simple_variable_name_token1] = ACTIONS(6734), + [anon_sym__] = ACTIONS(6734), + [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(6740), + [anon_sym_AT] = ACTIONS(6738), + }, + [2723] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6742), + [sym_comment] = ACTIONS(53), + }, + [2724] = { + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(6744), + [sym_comment] = ACTIONS(53), + }, + [2725] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(2299), + [sym_postfix_expression] = STATE(2299), + [sym_concatenation] = STATE(2299), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(2299), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2726] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2300), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2301), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2585] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2183), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2727] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2302), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2586] = { - [sym_subscript] = STATE(2185), - [anon_sym__] = ACTIONS(6449), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6449), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_POUND] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [aux_sym__simple_variable_name_token1] = ACTIONS(6449), - [sym_variable_name] = ACTIONS(6455), - [anon_sym_DOLLAR] = ACTIONS(6457), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_AT] = ACTIONS(6451), - [anon_sym_QMARK] = ACTIONS(6451), - }, - [2587] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(2189), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2190), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2728] = { + [sym_subscript] = STATE(2304), + [anon_sym_0] = ACTIONS(6746), + [anon_sym_POUND] = ACTIONS(6748), + [anon_sym_QMARK] = ACTIONS(6750), + [aux_sym__simple_variable_name_token1] = ACTIONS(6746), + [anon_sym__] = ACTIONS(6746), + [anon_sym_BANG] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6750), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym_DOLLAR] = ACTIONS(6754), + [anon_sym_AT] = ACTIONS(6750), + }, + [2729] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2306), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2588] = { - [sym_subscript] = STATE(2193), - [anon_sym__] = ACTIONS(6459), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6461), - [aux_sym__simple_variable_name_token1] = ACTIONS(6459), - [sym_variable_name] = ACTIONS(6463), - [anon_sym_DOLLAR] = ACTIONS(6465), - [anon_sym_DASH] = ACTIONS(6465), - [anon_sym_AT] = ACTIONS(6461), - [anon_sym_QMARK] = ACTIONS(6461), - }, - [2589] = { - [anon_sym_EQ] = ACTIONS(6467), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2590] = { - [anon_sym_EQ] = ACTIONS(6469), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2591] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(2222), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2730] = { + [sym_subscript] = STATE(2310), + [anon_sym_0] = ACTIONS(6756), + [anon_sym_QMARK] = ACTIONS(6758), + [aux_sym__simple_variable_name_token1] = ACTIONS(6756), + [anon_sym__] = ACTIONS(6756), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6760), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_DASH] = ACTIONS(6762), + [anon_sym_DOLLAR] = ACTIONS(6762), + [anon_sym_AT] = ACTIONS(6758), + }, + [2731] = { + [anon_sym_EQ] = ACTIONS(6764), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2732] = { + [anon_sym_EQ] = ACTIONS(6766), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2733] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(2340), + [sym_postfix_expression] = STATE(2340), + [sym_concatenation] = STATE(2340), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(2340), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(2340), + [sym_binary_expression] = STATE(2340), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2734] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2341), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2342), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2592] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2223), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2735] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2343), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2593] = { - [sym_subscript] = STATE(2225), - [anon_sym__] = ACTIONS(6471), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6473), - [anon_sym_POUND] = ACTIONS(6475), - [anon_sym_BANG] = ACTIONS(6475), - [aux_sym__simple_variable_name_token1] = ACTIONS(6471), - [sym_variable_name] = ACTIONS(6477), - [anon_sym_DOLLAR] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_AT] = ACTIONS(6473), - [anon_sym_QMARK] = ACTIONS(6473), - }, - [2594] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(2229), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2230), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2736] = { + [sym_subscript] = STATE(2345), + [anon_sym_0] = ACTIONS(6768), + [anon_sym_POUND] = ACTIONS(6770), + [anon_sym_QMARK] = ACTIONS(6772), + [aux_sym__simple_variable_name_token1] = ACTIONS(6768), + [anon_sym__] = ACTIONS(6768), + [anon_sym_BANG] = ACTIONS(6770), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6774), + [anon_sym_STAR] = ACTIONS(6772), + [anon_sym_DASH] = ACTIONS(6776), + [anon_sym_DOLLAR] = ACTIONS(6776), + [anon_sym_AT] = ACTIONS(6772), + }, + [2737] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2347), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2595] = { - [sym_subscript] = STATE(2233), - [anon_sym__] = ACTIONS(6481), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6481), - [anon_sym_STAR] = ACTIONS(6483), - [aux_sym__simple_variable_name_token1] = ACTIONS(6481), - [sym_variable_name] = ACTIONS(6485), - [anon_sym_DOLLAR] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_AT] = ACTIONS(6483), - [anon_sym_QMARK] = ACTIONS(6483), - }, - [2596] = { - [anon_sym_EQ] = ACTIONS(6489), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2597] = { - [anon_sym_EQ] = ACTIONS(6491), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2598] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(2262), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2738] = { + [sym_subscript] = STATE(2351), + [anon_sym_0] = ACTIONS(6778), + [anon_sym_QMARK] = ACTIONS(6780), + [aux_sym__simple_variable_name_token1] = ACTIONS(6778), + [anon_sym__] = ACTIONS(6778), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6782), + [anon_sym_STAR] = ACTIONS(6780), + [anon_sym_DASH] = ACTIONS(6784), + [anon_sym_DOLLAR] = ACTIONS(6784), + [anon_sym_AT] = ACTIONS(6780), + }, + [2739] = { + [anon_sym_EQ] = ACTIONS(6786), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2740] = { + [anon_sym_EQ] = ACTIONS(6788), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2741] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(2381), + [sym_postfix_expression] = STATE(2381), + [sym_concatenation] = STATE(2381), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(2381), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(2381), + [sym_binary_expression] = STATE(2381), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2742] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2382), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2383), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2599] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2263), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2743] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2384), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2600] = { - [sym_subscript] = STATE(2265), - [anon_sym__] = ACTIONS(6493), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6493), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_POUND] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [aux_sym__simple_variable_name_token1] = ACTIONS(6493), - [sym_variable_name] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_DASH] = ACTIONS(6501), - [anon_sym_AT] = ACTIONS(6495), - [anon_sym_QMARK] = ACTIONS(6495), - }, - [2601] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(2269), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2270), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2744] = { + [sym_subscript] = STATE(2386), + [anon_sym_0] = ACTIONS(6790), + [anon_sym_POUND] = ACTIONS(6792), + [anon_sym_QMARK] = ACTIONS(6794), + [aux_sym__simple_variable_name_token1] = ACTIONS(6790), + [anon_sym__] = ACTIONS(6790), + [anon_sym_BANG] = ACTIONS(6792), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6796), + [anon_sym_STAR] = ACTIONS(6794), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_DOLLAR] = ACTIONS(6798), + [anon_sym_AT] = ACTIONS(6794), + }, + [2745] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2388), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2602] = { - [sym_subscript] = STATE(2273), - [anon_sym__] = ACTIONS(6503), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6505), - [aux_sym__simple_variable_name_token1] = ACTIONS(6503), - [sym_variable_name] = ACTIONS(6507), - [anon_sym_DOLLAR] = ACTIONS(6509), - [anon_sym_DASH] = ACTIONS(6509), - [anon_sym_AT] = ACTIONS(6505), - [anon_sym_QMARK] = ACTIONS(6505), - }, - [2603] = { - [anon_sym_EQ] = ACTIONS(6511), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2604] = { - [anon_sym_EQ] = ACTIONS(6513), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2605] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(2302), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2746] = { + [sym_subscript] = STATE(2392), + [anon_sym_0] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6802), + [aux_sym__simple_variable_name_token1] = ACTIONS(6800), + [anon_sym__] = ACTIONS(6800), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6804), + [anon_sym_STAR] = ACTIONS(6802), + [anon_sym_DASH] = ACTIONS(6806), + [anon_sym_DOLLAR] = ACTIONS(6806), + [anon_sym_AT] = ACTIONS(6802), + }, + [2747] = { + [anon_sym_EQ] = ACTIONS(6808), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2748] = { + [anon_sym_EQ] = ACTIONS(6810), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2749] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(2422), + [sym_postfix_expression] = STATE(2422), + [sym_concatenation] = STATE(2422), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(2422), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(2422), + [sym_binary_expression] = STATE(2422), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2750] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2423), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2424), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2606] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2303), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2751] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2425), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2607] = { - [sym_subscript] = STATE(2305), - [anon_sym__] = ACTIONS(6515), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6517), - [anon_sym_POUND] = ACTIONS(6519), - [anon_sym_BANG] = ACTIONS(6519), - [aux_sym__simple_variable_name_token1] = ACTIONS(6515), - [sym_variable_name] = ACTIONS(6521), - [anon_sym_DOLLAR] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_AT] = ACTIONS(6517), - [anon_sym_QMARK] = ACTIONS(6517), - }, - [2608] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(2309), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2310), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2752] = { + [sym_subscript] = STATE(2427), + [anon_sym_0] = ACTIONS(6812), + [anon_sym_POUND] = ACTIONS(6814), + [anon_sym_QMARK] = ACTIONS(6816), + [aux_sym__simple_variable_name_token1] = ACTIONS(6812), + [anon_sym__] = ACTIONS(6812), + [anon_sym_BANG] = ACTIONS(6814), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6818), + [anon_sym_STAR] = ACTIONS(6816), + [anon_sym_DASH] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(6820), + [anon_sym_AT] = ACTIONS(6816), + }, + [2753] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2429), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2609] = { - [sym_subscript] = STATE(2313), - [anon_sym__] = ACTIONS(6525), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6527), - [aux_sym__simple_variable_name_token1] = ACTIONS(6525), - [sym_variable_name] = ACTIONS(6529), - [anon_sym_DOLLAR] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_AT] = ACTIONS(6527), - [anon_sym_QMARK] = ACTIONS(6527), - }, - [2610] = { - [anon_sym_EQ] = ACTIONS(6533), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2611] = { - [anon_sym_EQ] = ACTIONS(6535), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2612] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(2340), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2754] = { + [sym_subscript] = STATE(2433), + [anon_sym_0] = ACTIONS(6822), + [anon_sym_QMARK] = ACTIONS(6824), + [aux_sym__simple_variable_name_token1] = ACTIONS(6822), + [anon_sym__] = ACTIONS(6822), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6824), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_DOLLAR] = ACTIONS(6828), + [anon_sym_AT] = ACTIONS(6824), + }, + [2755] = { + [anon_sym_EQ] = ACTIONS(6830), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2756] = { + [anon_sym_EQ] = ACTIONS(6832), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2757] = { + [sym_expansion] = STATE(53), + [sym_unary_expression] = STATE(2459), + [sym_postfix_expression] = STATE(2459), + [sym_concatenation] = STATE(2459), + [sym_string] = STATE(53), + [sym_command_substitution] = STATE(53), + [sym_process_substitution] = STATE(53), + [sym_parenthesized_expression] = STATE(2459), + [aux_sym__literal_repeat1] = STATE(55), + [sym_simple_expansion] = STATE(53), + [sym__expression] = STATE(2459), + [sym_binary_expression] = STATE(2459), + [sym_arithmetic_expansion] = STATE(53), + [sym_string_expansion] = STATE(53), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_DQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), + [sym_word] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [sym_ansii_c_string] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR] = ACTIONS(221), + [sym_test_operator] = ACTIONS(223), + }, + [2758] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2460), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2461), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2613] = { - [sym_subscript] = STATE(2341), - [anon_sym__] = ACTIONS(6537), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6537), - [anon_sym_STAR] = ACTIONS(6539), - [anon_sym_POUND] = ACTIONS(6541), - [anon_sym_BANG] = ACTIONS(6541), - [aux_sym__simple_variable_name_token1] = ACTIONS(6537), - [sym_variable_name] = ACTIONS(6543), - [anon_sym_DOLLAR] = ACTIONS(6545), - [anon_sym_DASH] = ACTIONS(6545), - [anon_sym_AT] = ACTIONS(6539), - [anon_sym_QMARK] = ACTIONS(6539), - }, - [2614] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(2343), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2344), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2759] = { + [sym_subscript] = STATE(2462), + [anon_sym_0] = ACTIONS(6834), + [anon_sym_POUND] = ACTIONS(6836), + [anon_sym_QMARK] = ACTIONS(6838), + [aux_sym__simple_variable_name_token1] = ACTIONS(6834), + [anon_sym__] = ACTIONS(6834), + [anon_sym_BANG] = ACTIONS(6836), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6840), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_DASH] = ACTIONS(6842), + [anon_sym_DOLLAR] = ACTIONS(6842), + [anon_sym_AT] = ACTIONS(6838), + }, + [2760] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2464), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2615] = { - [sym_subscript] = STATE(2347), - [anon_sym__] = ACTIONS(6547), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6547), - [anon_sym_STAR] = ACTIONS(6549), - [aux_sym__simple_variable_name_token1] = ACTIONS(6547), - [sym_variable_name] = ACTIONS(6551), - [anon_sym_DOLLAR] = ACTIONS(6553), - [anon_sym_DASH] = ACTIONS(6553), - [anon_sym_AT] = ACTIONS(6549), - [anon_sym_QMARK] = ACTIONS(6549), - }, - [2616] = { - [anon_sym_EQ] = ACTIONS(6555), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2617] = { - [anon_sym_EQ] = ACTIONS(6557), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2618] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_negated_command] = STATE(1469), - [sym_test_command] = STATE(1469), - [sym_variable_assignment] = STATE(542), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(544), - [sym_redirected_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), - [sym_file_redirect] = STATE(1471), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(1471), - [sym__statements] = STATE(2373), - [sym_c_style_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), - [sym_command_name] = STATE(546), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2761] = { + [sym_subscript] = STATE(2467), + [anon_sym_0] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6846), + [aux_sym__simple_variable_name_token1] = ACTIONS(6844), + [anon_sym__] = ACTIONS(6844), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6848), + [anon_sym_STAR] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_DOLLAR] = ACTIONS(6850), + [anon_sym_AT] = ACTIONS(6846), + }, + [2762] = { + [anon_sym_EQ] = ACTIONS(6852), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2763] = { + [anon_sym_EQ] = ACTIONS(6854), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2764] = { + [sym_if_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_file_redirect] = STATE(2493), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym__statements] = STATE(2494), + [sym_c_style_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(183), - [anon_sym_typeset] = ACTIONS(183), - [anon_sym_unsetenv] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(183), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(183), - [anon_sym_unset] = ACTIONS(185), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2619] = { - [sym_subscript] = STATE(2374), - [anon_sym__] = ACTIONS(6559), - [sym_comment] = ACTIONS(3), - [anon_sym_0] = ACTIONS(6559), - [anon_sym_STAR] = ACTIONS(6561), - [anon_sym_POUND] = ACTIONS(6563), - [anon_sym_BANG] = ACTIONS(6563), - [aux_sym__simple_variable_name_token1] = ACTIONS(6559), - [sym_variable_name] = ACTIONS(6565), - [anon_sym_DOLLAR] = ACTIONS(6567), - [anon_sym_DASH] = ACTIONS(6567), - [anon_sym_AT] = ACTIONS(6561), - [anon_sym_QMARK] = ACTIONS(6561), - }, - [2620] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym_if_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_negated_command] = STATE(388), - [sym_test_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [aux_sym__statements_repeat1] = STATE(391), - [sym_redirected_statement] = STATE(388), - [sym_for_statement] = STATE(388), - [sym_compound_statement] = STATE(388), - [sym_subshell] = STATE(388), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_file_redirect] = STATE(2376), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym__statements] = STATE(2377), - [sym_c_style_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(63), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2765] = { + [sym_subscript] = STATE(2495), + [anon_sym_0] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6860), + [aux_sym__simple_variable_name_token1] = ACTIONS(6856), + [anon_sym__] = ACTIONS(6856), + [anon_sym_BANG] = ACTIONS(6858), + [sym_comment] = ACTIONS(3), + [sym_variable_name] = ACTIONS(6862), + [anon_sym_STAR] = ACTIONS(6860), + [anon_sym_DASH] = ACTIONS(6864), + [anon_sym_DOLLAR] = ACTIONS(6864), + [anon_sym_AT] = ACTIONS(6860), + }, + [2766] = { + [sym_if_statement] = STATE(1526), + [sym_function_definition] = STATE(1526), + [sym_negated_command] = STATE(1526), + [sym_test_command] = STATE(1526), + [sym_variable_assignment] = STATE(545), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__statements_repeat1] = STATE(546), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_subshell] = STATE(1526), + [sym_declaration_command] = STATE(1526), + [sym_unset_command] = STATE(1526), + [sym_file_redirect] = STATE(1528), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(1528), + [sym__statements] = STATE(2497), + [sym_c_style_for_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_pipeline] = STATE(1526), + [sym_list] = STATE(1526), + [sym_command] = STATE(1526), + [sym_command_name] = STATE(550), + [sym_simple_expansion] = STATE(386), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(65), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [sym_word] = ACTIONS(81), + [anon_sym_local] = ACTIONS(289), + [anon_sym_typeset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), - [sym__special_character] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), [anon_sym_case] = ACTIONS(89), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [sym_comment] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(289), + [sym_variable_name] = ACTIONS(99), + [sym_file_descriptor] = ACTIONS(45), + [sym_word] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_unset] = ACTIONS(291), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(107), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2621] = { - [sym_subscript] = STATE(2380), - [anon_sym__] = ACTIONS(6569), - [sym_comment] = ACTIONS(41), - [anon_sym_0] = ACTIONS(6569), - [anon_sym_STAR] = ACTIONS(6571), - [aux_sym__simple_variable_name_token1] = ACTIONS(6569), - [sym_variable_name] = ACTIONS(6573), - [anon_sym_DOLLAR] = ACTIONS(6575), - [anon_sym_DASH] = ACTIONS(6575), - [anon_sym_AT] = ACTIONS(6571), - [anon_sym_QMARK] = ACTIONS(6571), - }, - [2622] = { - [anon_sym_EQ] = ACTIONS(6577), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2623] = { - [anon_sym_EQ] = ACTIONS(6579), - [sym_comment] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(471), - }, - [2624] = { - [aux_sym__literal_repeat1] = STATE(387), - [sym__terminated_statement] = STATE(2422), - [sym_if_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_negated_command] = STATE(65), - [sym_test_command] = STATE(65), - [sym_variable_assignment] = STATE(66), - [sym_subscript] = STATE(2418), - [sym_concatenation] = STATE(390), - [sym_expansion] = STATE(383), - [sym_command_substitution] = STATE(383), - [sym_redirected_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_compound_statement] = STATE(65), - [sym_subshell] = STATE(65), - [sym_declaration_command] = STATE(65), - [sym_unset_command] = STATE(65), - [sym_file_redirect] = STATE(392), - [sym_string] = STATE(383), - [sym_process_substitution] = STATE(383), - [aux_sym_command_repeat1] = STATE(392), - [sym_c_style_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_case_statement] = STATE(65), - [sym_pipeline] = STATE(65), - [sym_list] = STATE(65), - [sym_command] = STATE(65), - [sym_command_name] = STATE(393), - [sym_simple_expansion] = STATE(383), - [sym_string_expansion] = STATE(383), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_raw_string] = ACTIONS(79), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2767] = { + [sym_subscript] = STATE(2500), + [anon_sym_0] = ACTIONS(6866), + [anon_sym_QMARK] = ACTIONS(6868), + [aux_sym__simple_variable_name_token1] = ACTIONS(6866), + [anon_sym__] = ACTIONS(6866), + [sym_comment] = ACTIONS(53), + [sym_variable_name] = ACTIONS(6870), + [anon_sym_STAR] = ACTIONS(6868), + [anon_sym_DASH] = ACTIONS(6872), + [anon_sym_DOLLAR] = ACTIONS(6872), + [anon_sym_AT] = ACTIONS(6868), + }, + [2768] = { + [anon_sym_EQ] = ACTIONS(6874), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2769] = { + [anon_sym_EQ] = ACTIONS(6876), + [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(579), + }, + [2770] = { + [sym__terminated_statement] = STATE(2541), + [sym_if_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_negated_command] = STATE(71), + [sym_test_command] = STATE(71), + [sym_variable_assignment] = STATE(72), + [sym_subscript] = STATE(2539), + [sym_arithmetic_expansion] = STATE(386), + [sym_string_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [aux_sym__literal_repeat1] = STATE(393), + [sym_redirected_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_compound_statement] = STATE(71), + [sym_subshell] = STATE(71), + [sym_declaration_command] = STATE(71), + [sym_unset_command] = STATE(71), + [sym_file_redirect] = STATE(395), + [sym_concatenation] = STATE(394), + [sym_string] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [aux_sym_command_repeat1] = STATE(395), + [sym_c_style_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_pipeline] = STATE(71), + [sym_list] = STATE(71), + [sym_command] = STATE(71), + [sym_command_name] = STATE(396), + [sym_simple_expansion] = STATE(386), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(65), - [anon_sym_DOLLAR] = ACTIONS(69), - [anon_sym_BQUOTE] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(81), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(65), - [sym__special_character] = ACTIONS(85), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR] = ACTIONS(85), [anon_sym_if] = ACTIONS(87), - [sym_comment] = ACTIONS(41), + [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_raw_string] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(65), - [sym_variable_name] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(65), - [anon_sym_unset] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(99), + [sym_word] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [sym__special_character] = ACTIONS(103), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_ansii_c_string] = ACTIONS(93), - [anon_sym_while] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_local] = ACTIONS(65), - [anon_sym_unsetenv] = ACTIONS(67), - [sym_number] = ACTIONS(75), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(53), + [sym_raw_string] = ACTIONS(79), + [anon_sym_while] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_ansii_c_string] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_case] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(95), - [sym_file_descriptor] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(29), - [anon_sym_AMP_GT] = ACTIONS(29), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_LT_LPAREN] = ACTIONS(73), - [anon_sym_for] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACK_LBRACK] = ACTIONS(109), - }, - [2625] = { - [sym_comment] = ACTIONS(41), - [anon_sym_LPAREN_LPAREN] = ACTIONS(6581), - [aux_sym__simple_variable_name_token1] = ACTIONS(6583), - }, - [2626] = { - [aux_sym_concatenation_repeat1] = STATE(739), - [anon_sym_AMP] = ACTIONS(6585), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(515), - [anon_sym_LF] = ACTIONS(6587), - [anon_sym_SEMI] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(6585), - [anon_sym_in] = ACTIONS(6589), - }, - [2627] = { - [aux_sym__literal_repeat1] = STATE(742), - [anon_sym_AMP] = ACTIONS(6591), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6593), - [anon_sym_SEMI] = ACTIONS(6591), - [sym__special_character] = ACTIONS(527), - [anon_sym_in] = ACTIONS(6595), - [anon_sym_SEMI_SEMI] = ACTIONS(6591), - }, - [2628] = { - [anon_sym_AMP] = ACTIONS(6585), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6587), - [anon_sym_SEMI] = ACTIONS(6585), - [anon_sym_SEMI_SEMI] = ACTIONS(6585), - [anon_sym_in] = ACTIONS(6589), - }, - [2629] = { - [anon_sym_in] = ACTIONS(6597), - [sym_comment] = ACTIONS(41), - }, - [2630] = { - [anon_sym_in] = ACTIONS(6599), - [sym_comment] = ACTIONS(41), - }, - [2631] = { - [aux_sym__literal_repeat1] = STATE(562), - [sym_unary_expression] = STATE(2633), - [sym_postfix_expression] = STATE(2633), - [sym_string] = STATE(560), - [sym_process_substitution] = STATE(560), - [sym__expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_concatenation] = STATE(2633), - [sym_expansion] = STATE(560), - [sym_command_substitution] = STATE(560), - [sym_parenthesized_expression] = STATE(2633), - [sym_simple_expansion] = STATE(560), - [sym_string_expansion] = STATE(560), - [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_GT_LPAREN] = ACTIONS(621), - [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [sym_word] = ACTIONS(609), - [sym__special_character] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(6601), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(6601), - [sym_test_operator] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), - [anon_sym_LT_LPAREN] = ACTIONS(621), - [sym_ansii_c_string] = ACTIONS(609), - [anon_sym_SEMI_SEMI] = ACTIONS(6601), - [anon_sym_AMP] = ACTIONS(6601), - }, - [2632] = { - [sym_command_substitution] = STATE(483), - [aux_sym__literal_repeat1] = STATE(485), - [sym_string] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_for_statement_repeat1] = STATE(2433), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_concatenation] = STATE(2433), - [sym_expansion] = STATE(483), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_GT_LPAREN] = ACTIONS(1114), - [sym_number] = ACTIONS(1108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_word] = ACTIONS(1108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1114), - [sym_ansii_c_string] = ACTIONS(1106), - [sym__special_character] = ACTIONS(1118), - }, - [2633] = { - [anon_sym_PLUS_EQ] = ACTIONS(1096), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PIPE_PIPE] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_EQ_TILDE] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1096), - [anon_sym_DASH_EQ] = ACTIONS(1096), - [anon_sym_BANG_EQ] = ACTIONS(1096), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6603), - [anon_sym_SEMI] = ACTIONS(6603), - [sym_test_operator] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_EQ] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_GT_EQ] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_AMP_AMP] = ACTIONS(1096), - [anon_sym_SEMI_SEMI] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6603), - }, - [2634] = { - [aux_sym__literal_repeat1] = STATE(562), - [sym_unary_expression] = STATE(2635), - [sym_postfix_expression] = STATE(2635), - [sym_string] = STATE(560), - [sym_process_substitution] = STATE(560), - [sym__expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_concatenation] = STATE(2635), - [sym_expansion] = STATE(560), - [sym_command_substitution] = STATE(560), - [sym_parenthesized_expression] = STATE(2635), - [sym_simple_expansion] = STATE(560), - [sym_string_expansion] = STATE(560), - [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_GT_LPAREN] = ACTIONS(621), - [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [sym_word] = ACTIONS(609), - [sym__special_character] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(6603), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(6603), - [sym_test_operator] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), - [anon_sym_LT_LPAREN] = ACTIONS(621), - [sym_ansii_c_string] = ACTIONS(609), - [anon_sym_SEMI_SEMI] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6603), - }, - [2635] = { - [anon_sym_PLUS_EQ] = ACTIONS(1096), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PIPE_PIPE] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_EQ_TILDE] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1096), - [anon_sym_DASH_EQ] = ACTIONS(1096), - [anon_sym_BANG_EQ] = ACTIONS(1096), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6605), - [anon_sym_SEMI] = ACTIONS(6605), - [sym_test_operator] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_EQ] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_GT_EQ] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_AMP_AMP] = ACTIONS(1096), - [anon_sym_SEMI_SEMI] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6605), - }, - [2636] = { - [sym_heredoc_redirect] = STATE(2639), - [aux_sym_redirected_statement_repeat1] = STATE(2639), - [sym_herestring_redirect] = STATE(2639), - [sym_file_redirect] = STATE(2639), - [anon_sym_LT_LT_DASH] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(684), - [anon_sym_AMP_GT_GT] = ACTIONS(2254), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(686), - [anon_sym_SEMI] = ACTIONS(684), - [anon_sym_LT_LT] = ACTIONS(489), - [sym_file_descriptor] = ACTIONS(2260), - [anon_sym_GT] = ACTIONS(2254), - [anon_sym_AMP_GT] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(684), - [anon_sym_LT_LT_LT] = ACTIONS(2264), - [anon_sym_PIPE] = ACTIONS(684), - [anon_sym_GT_AMP] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_esac] = ACTIONS(684), - [anon_sym_GT_GT] = ACTIONS(2254), - [anon_sym_LT_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(684), - [anon_sym_SEMI_SEMI] = ACTIONS(684), - [anon_sym_PIPE_AMP] = ACTIONS(684), - }, - [2637] = { - [sym_heredoc_redirect] = STATE(2636), - [aux_sym_redirected_statement_repeat1] = STATE(2636), - [sym_herestring_redirect] = STATE(2636), - [sym_file_redirect] = STATE(2636), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [sym_file_descriptor] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_esac] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), - }, - [2638] = { - [aux_sym_concatenation_repeat1] = STATE(2445), - [anon_sym_LT_LT_DASH] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_AMP_GT_GT] = ACTIONS(1160), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym_LT_LT] = ACTIONS(1160), - [sym_file_descriptor] = ACTIONS(1162), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_AMP_GT] = ACTIONS(1160), - [anon_sym_PIPE_PIPE] = ACTIONS(1160), - [anon_sym_LT_LT_LT] = ACTIONS(1160), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_GT_AMP] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_esac] = ACTIONS(1160), - [anon_sym_GT_GT] = ACTIONS(1160), - [anon_sym_LT_AMP] = ACTIONS(1160), - [sym__concat] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(1160), - [anon_sym_SEMI_SEMI] = ACTIONS(1160), - [anon_sym_PIPE_AMP] = ACTIONS(1160), - }, - [2639] = { - [sym_heredoc_redirect] = STATE(2639), - [aux_sym_redirected_statement_repeat1] = STATE(2639), - [sym_herestring_redirect] = STATE(2639), - [sym_file_redirect] = STATE(2639), - [anon_sym_LT_LT_DASH] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_AMP_GT_GT] = ACTIONS(6607), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_LT_LT] = ACTIONS(2146), - [sym_file_descriptor] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6607), - [anon_sym_AMP_GT] = ACTIONS(6607), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [anon_sym_LT_LT_LT] = ACTIONS(6613), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_GT_AMP] = ACTIONS(6607), - [anon_sym_LT] = ACTIONS(6607), - [anon_sym_esac] = ACTIONS(1175), - [anon_sym_GT_GT] = ACTIONS(6607), - [anon_sym_LT_AMP] = ACTIONS(6607), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_SEMI_SEMI] = ACTIONS(1175), - [anon_sym_PIPE_AMP] = ACTIONS(1175), - }, - [2640] = { - [aux_sym_concatenation_repeat1] = STATE(2445), - [anon_sym_LT_LT_DASH] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_AMP_GT_GT] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(361), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(363), - [sym_file_descriptor] = ACTIONS(361), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_AMP_GT] = ACTIONS(363), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_LT_LT_LT] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_GT_AMP] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_esac] = ACTIONS(363), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_LT_AMP] = ACTIONS(363), - [sym__concat] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_SEMI_SEMI] = ACTIONS(363), - [anon_sym_PIPE_AMP] = ACTIONS(363), - }, - [2641] = { - [aux_sym_concatenation_repeat1] = STATE(2445), - [anon_sym_LT_LT_DASH] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_LT_LT] = ACTIONS(1059), - [sym_file_descriptor] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_PIPE_PIPE] = ACTIONS(1059), - [anon_sym_LT_LT_LT] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_GT_AMP] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_esac] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1059), - [anon_sym_LT_AMP] = ACTIONS(1059), - [sym__concat] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1059), - [anon_sym_PIPE_AMP] = ACTIONS(1059), - }, - [2642] = { - [aux_sym_concatenation_repeat1] = STATE(2443), - [anon_sym_AMP] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(515), - [anon_sym_LF] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [sym__special_character] = ACTIONS(211), - }, - [2643] = { - [sym_command_substitution] = STATE(2626), - [aux_sym__literal_repeat1] = STATE(2627), - [sym_string] = STATE(2626), - [sym_process_substitution] = STATE(2626), - [sym_simple_expansion] = STATE(2626), - [sym_string_expansion] = STATE(2626), - [sym_concatenation] = STATE(2628), - [sym_expansion] = STATE(2626), - [sym_comment] = ACTIONS(41), - [sym_raw_string] = ACTIONS(6616), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(229), - [anon_sym_GT_LPAREN] = ACTIONS(227), - [sym_number] = ACTIONS(6618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym_word] = ACTIONS(6618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(227), - [sym_ansii_c_string] = ACTIONS(6616), - [sym__special_character] = ACTIONS(231), - }, - [2644] = { - [aux_sym__literal_repeat1] = STATE(562), - [sym_unary_expression] = STATE(2646), - [sym_postfix_expression] = STATE(2646), - [sym_string] = STATE(560), - [sym_process_substitution] = STATE(560), - [sym_variable_assignment] = STATE(2645), - [sym_subscript] = STATE(2485), - [sym__expression] = STATE(2646), - [sym_binary_expression] = STATE(2646), - [sym_concatenation] = STATE(2646), - [sym_expansion] = STATE(560), - [sym_command_substitution] = STATE(560), - [sym_parenthesized_expression] = STATE(2646), - [sym_simple_expansion] = STATE(560), - [sym_string_expansion] = STATE(560), - [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_GT_LPAREN] = ACTIONS(621), - [sym_number] = ACTIONS(609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [sym_word] = ACTIONS(609), - [sym__special_character] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(6620), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(6620), - [sym_variable_name] = ACTIONS(615), - [sym_test_operator] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), - [anon_sym_LT_LPAREN] = ACTIONS(621), - [sym_ansii_c_string] = ACTIONS(609), - [anon_sym_SEMI_SEMI] = ACTIONS(6620), - [anon_sym_AMP] = ACTIONS(6620), - }, - [2645] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6622), - [anon_sym_SEMI] = ACTIONS(6624), - [anon_sym_SEMI_SEMI] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), + [sym_number] = ACTIONS(93), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(97), + [sym_file_descriptor] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + }, + [2771] = { + [anon_sym_LPAREN_LPAREN] = ACTIONS(6878), + [aux_sym__simple_variable_name_token1] = ACTIONS(6880), + [sym_comment] = ACTIONS(53), + }, + [2772] = { + [aux_sym_concatenation_repeat1] = STATE(782), + [sym__concat] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(6882), + [anon_sym_SEMI] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6884), + [anon_sym_SEMI_SEMI] = ACTIONS(6884), + [anon_sym_in] = ACTIONS(6886), + }, + [2773] = { + [anon_sym_LF] = ACTIONS(6882), + [anon_sym_SEMI] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6884), + [anon_sym_SEMI_SEMI] = ACTIONS(6884), + [anon_sym_in] = ACTIONS(6886), + }, + [2774] = { + [aux_sym__literal_repeat1] = STATE(787), + [sym__special_character] = ACTIONS(533), + [anon_sym_LF] = ACTIONS(6888), + [anon_sym_SEMI] = ACTIONS(6890), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6890), + [anon_sym_SEMI_SEMI] = ACTIONS(6890), + [anon_sym_in] = ACTIONS(6892), + }, + [2775] = { + [anon_sym_in] = ACTIONS(6894), + [sym_comment] = ACTIONS(53), + }, + [2776] = { + [anon_sym_in] = ACTIONS(6896), + [sym_comment] = ACTIONS(53), + }, + [2777] = { + [sym_concatenation] = STATE(2553), + [sym_string] = STATE(488), + [sym_command_substitution] = STATE(488), + [sym_process_substitution] = STATE(488), + [aux_sym_for_statement_repeat1] = STATE(2553), + [sym_arithmetic_expansion] = STATE(488), + [sym_string_expansion] = STATE(488), + [sym_expansion] = STATE(488), + [aux_sym__literal_repeat1] = STATE(489), + [sym_simple_expansion] = STATE(488), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [sym_number] = ACTIONS(1156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1162), + [sym_word] = ACTIONS(1156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1164), + [sym__special_character] = ACTIONS(1154), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(1168), + [sym_raw_string] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1170), + }, + [2778] = { + [sym_unary_expression] = STATE(2779), + [sym_postfix_expression] = STATE(2779), + [sym_concatenation] = STATE(2779), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [sym__expression] = STATE(2779), + [sym_binary_expression] = STATE(2779), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [sym_expansion] = STATE(561), + [aux_sym__literal_repeat1] = STATE(563), + [sym_parenthesized_expression] = STATE(2779), + [sym_simple_expansion] = STATE(561), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(653), + [sym_ansii_c_string] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_GT_LPAREN] = ACTIONS(653), + [sym_number] = ACTIONS(655), + [anon_sym_LF] = ACTIONS(6898), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(6898), + [sym_word] = ACTIONS(655), + [sym__special_character] = ACTIONS(671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(673), + [sym_raw_string] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(6898), + [anon_sym_SEMI_SEMI] = ACTIONS(6898), + [sym_test_operator] = ACTIONS(661), + }, + [2779] = { + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_GT_GT] = ACTIONS(1178), + [anon_sym_EQ_TILDE] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_LT_EQ] = ACTIONS(1178), + [anon_sym_DASH_EQ] = ACTIONS(1178), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_LF] = ACTIONS(6900), + [anon_sym_SEMI] = ACTIONS(6900), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6900), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_SEMI_SEMI] = ACTIONS(6900), + [sym_test_operator] = ACTIONS(1178), + }, + [2780] = { + [sym_unary_expression] = STATE(2781), + [sym_postfix_expression] = STATE(2781), + [sym_concatenation] = STATE(2781), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [sym__expression] = STATE(2781), + [sym_binary_expression] = STATE(2781), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [sym_expansion] = STATE(561), + [aux_sym__literal_repeat1] = STATE(563), + [sym_parenthesized_expression] = STATE(2781), + [sym_simple_expansion] = STATE(561), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(653), + [sym_ansii_c_string] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_GT_LPAREN] = ACTIONS(653), + [sym_number] = ACTIONS(655), + [anon_sym_LF] = ACTIONS(6900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(6900), + [sym_word] = ACTIONS(655), + [sym__special_character] = ACTIONS(671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(673), + [sym_raw_string] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(6900), + [anon_sym_SEMI_SEMI] = ACTIONS(6900), + [sym_test_operator] = ACTIONS(661), + }, + [2781] = { + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_GT_GT] = ACTIONS(1178), + [anon_sym_EQ_TILDE] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_LT_EQ] = ACTIONS(1178), + [anon_sym_DASH_EQ] = ACTIONS(1178), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_LF] = ACTIONS(6902), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6902), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_SEMI_SEMI] = ACTIONS(6902), + [sym_test_operator] = ACTIONS(1178), + }, + [2782] = { + [aux_sym_concatenation_repeat1] = STATE(2565), + [anon_sym_LT_LT_DASH] = ACTIONS(1224), + [anon_sym_AMP_GT_GT] = ACTIONS(1224), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1224), + [sym_file_descriptor] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1224), + [anon_sym_AMP_GT] = ACTIONS(1224), + [anon_sym_PIPE_PIPE] = ACTIONS(1224), + [anon_sym_LT_LT_LT] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_GT_AMP] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_esac] = ACTIONS(1224), + [anon_sym_GT_GT] = ACTIONS(1224), + [anon_sym_LT_AMP] = ACTIONS(1224), + [sym__concat] = ACTIONS(2230), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_SEMI_SEMI] = ACTIONS(1224), + [anon_sym_PIPE_AMP] = ACTIONS(1224), + }, + [2783] = { + [aux_sym_concatenation_repeat1] = STATE(2565), + [anon_sym_LT_LT_DASH] = ACTIONS(381), + [anon_sym_AMP_GT_GT] = ACTIONS(381), + [anon_sym_LF] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(381), + [sym_file_descriptor] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_AMP_GT] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT_LT] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_GT_AMP] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_esac] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_LT_AMP] = ACTIONS(381), + [sym__concat] = ACTIONS(2230), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_SEMI_SEMI] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(381), + }, + [2784] = { + [aux_sym_concatenation_repeat1] = STATE(2565), + [anon_sym_LT_LT_DASH] = ACTIONS(1146), + [anon_sym_AMP_GT_GT] = ACTIONS(1146), + [anon_sym_LF] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(1146), + [sym_file_descriptor] = ACTIONS(1144), + [anon_sym_GT] = ACTIONS(1146), + [anon_sym_AMP_GT] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_GT_AMP] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_esac] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1146), + [anon_sym_LT_AMP] = ACTIONS(1146), + [sym__concat] = ACTIONS(2230), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_SEMI_SEMI] = ACTIONS(1146), + [anon_sym_PIPE_AMP] = ACTIONS(1146), + }, + [2785] = { + [aux_sym_concatenation_repeat1] = STATE(2564), + [sym_comment] = ACTIONS(3), + [sym__special_character] = ACTIONS(285), + [sym__concat] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + }, + [2786] = { + [aux_sym_concatenation_repeat1] = STATE(2565), + [anon_sym_LT_LT_DASH] = ACTIONS(285), + [anon_sym_AMP_GT_GT] = ACTIONS(285), + [anon_sym_LF] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(285), + [sym_file_descriptor] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_AMP_GT] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [sym__special_character] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_GT_AMP] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_esac] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_LT_AMP] = ACTIONS(285), + [sym__concat] = ACTIONS(2230), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PIPE_AMP] = ACTIONS(285), + }, + [2787] = { + [aux_sym_concatenation_repeat1] = STATE(2566), + [anon_sym_RPAREN] = ACTIONS(287), + [sym__special_character] = ACTIONS(287), + [sym__concat] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(287), + [sym_comment] = ACTIONS(53), + }, + [2788] = { + [sym_expansion] = STATE(2782), + [sym_concatenation] = STATE(468), + [sym_string] = STATE(2782), + [sym_command_substitution] = STATE(2782), + [sym_process_substitution] = STATE(2782), + [aux_sym__literal_repeat1] = STATE(469), + [sym_simple_expansion] = STATE(2782), + [sym_arithmetic_expansion] = STATE(2782), + [sym_string_expansion] = STATE(2782), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(2945), + [sym__special_character] = ACTIONS(6904), + [sym_number] = ACTIONS(6906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), + [sym_raw_string] = ACTIONS(6908), + [sym_word] = ACTIONS(6906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(3236), + [sym_ansii_c_string] = ACTIONS(6908), + [anon_sym_LT_LPAREN] = ACTIONS(2945), }, - [2646] = { - [anon_sym_PLUS_EQ] = ACTIONS(1096), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PIPE_PIPE] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_EQ_TILDE] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1096), - [anon_sym_DASH_EQ] = ACTIONS(1096), - [anon_sym_BANG_EQ] = ACTIONS(1096), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(6624), - [anon_sym_SEMI] = ACTIONS(6624), - [sym_test_operator] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_EQ] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1100), - [anon_sym_GT_EQ] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_AMP_AMP] = ACTIONS(1096), - [anon_sym_SEMI_SEMI] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), + [2789] = { + [sym_expansion] = STATE(2783), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(2783), + [sym_command_substitution] = STATE(2783), + [sym_process_substitution] = STATE(2783), + [aux_sym__literal_repeat1] = STATE(553), + [sym_simple_expansion] = STATE(2783), + [sym_arithmetic_expansion] = STATE(2783), + [sym_string_expansion] = STATE(2783), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(2945), + [sym__special_character] = ACTIONS(6904), + [sym_number] = ACTIONS(6910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), + [sym_raw_string] = ACTIONS(6912), + [sym_word] = ACTIONS(6910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(3236), + [sym_ansii_c_string] = ACTIONS(6912), + [anon_sym_LT_LPAREN] = ACTIONS(2945), + }, + [2790] = { + [sym_expansion] = STATE(2784), + [sym_concatenation] = STATE(600), + [sym_string] = STATE(2784), + [sym_command_substitution] = STATE(2784), + [sym_process_substitution] = STATE(2784), + [aux_sym__literal_repeat1] = STATE(601), + [sym_simple_expansion] = STATE(2784), + [sym_arithmetic_expansion] = STATE(2784), + [sym_string_expansion] = STATE(2784), + [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(2945), + [sym__special_character] = ACTIONS(6904), + [sym_number] = ACTIONS(6914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), + [sym_raw_string] = ACTIONS(6916), + [sym_word] = ACTIONS(6914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(3236), + [sym_ansii_c_string] = ACTIONS(6916), + [anon_sym_LT_LPAREN] = ACTIONS(2945), + }, + [2791] = { + [anon_sym_AMP_GT_GT] = ACTIONS(6918), + [anon_sym_GT_AMP] = ACTIONS(6918), + [anon_sym_LT] = ACTIONS(6920), + [anon_sym_LT_AMP] = ACTIONS(6918), + [anon_sym_GT_GT] = ACTIONS(6918), + [sym_comment] = ACTIONS(53), + [anon_sym_GT] = ACTIONS(6920), + [anon_sym_AMP_GT] = ACTIONS(6920), + }, + [2792] = { + [sym_expansion] = STATE(2772), + [sym_concatenation] = STATE(2773), + [sym_string] = STATE(2772), + [sym_command_substitution] = STATE(2772), + [sym_process_substitution] = STATE(2772), + [aux_sym__literal_repeat1] = STATE(2774), + [sym_simple_expansion] = STATE(2772), + [sym_arithmetic_expansion] = STATE(2772), + [sym_string_expansion] = STATE(2772), + [anon_sym_GT_LPAREN] = ACTIONS(243), + [sym_number] = ACTIONS(6922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), + [sym_word] = ACTIONS(6922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [anon_sym_LT_LPAREN] = ACTIONS(243), + [sym_ansii_c_string] = ACTIONS(6924), + [sym__special_character] = ACTIONS(245), + [sym_comment] = ACTIONS(53), + [anon_sym_BQUOTE] = ACTIONS(259), + [sym_raw_string] = ACTIONS(6924), + [anon_sym_DOLLAR] = ACTIONS(261), + }, + [2793] = { + [sym_unary_expression] = STATE(2795), + [sym_postfix_expression] = STATE(2795), + [sym_concatenation] = STATE(2795), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [sym_variable_assignment] = STATE(2794), + [sym_subscript] = STATE(2605), + [sym__expression] = STATE(2795), + [sym_binary_expression] = STATE(2795), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [sym_expansion] = STATE(561), + [aux_sym__literal_repeat1] = STATE(563), + [sym_parenthesized_expression] = STATE(2795), + [sym_simple_expansion] = STATE(561), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(653), + [sym_ansii_c_string] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_GT_LPAREN] = ACTIONS(653), + [sym_number] = ACTIONS(655), + [anon_sym_LF] = ACTIONS(6926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(6926), + [sym_variable_name] = ACTIONS(665), + [sym_word] = ACTIONS(655), + [sym__special_character] = ACTIONS(671), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(673), + [sym_raw_string] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(6926), + [anon_sym_SEMI_SEMI] = ACTIONS(6926), + [sym_test_operator] = ACTIONS(661), + }, + [2794] = { + [anon_sym_LF] = ACTIONS(6928), + [anon_sym_SEMI] = ACTIONS(6930), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6930), + [anon_sym_SEMI_SEMI] = ACTIONS(6930), + }, + [2795] = { + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_GT_GT] = ACTIONS(1178), + [anon_sym_EQ_TILDE] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_LT_EQ] = ACTIONS(1178), + [anon_sym_DASH_EQ] = ACTIONS(1178), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_LF] = ACTIONS(6930), + [anon_sym_SEMI] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(6930), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_SEMI_SEMI] = ACTIONS(6930), + [sym_test_operator] = ACTIONS(1178), + }, + [2796] = { + [sym_heredoc_redirect] = STATE(2798), + [sym_file_redirect] = STATE(2798), + [sym_herestring_redirect] = STATE(2798), + [aux_sym_redirected_statement_repeat1] = STATE(2798), + [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_AMP_GT_GT] = ACTIONS(2347), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LT_LT] = ACTIONS(497), + [sym_file_descriptor] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(2347), + [anon_sym_AMP_GT] = ACTIONS(2347), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_LT_LT_LT] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(2347), + [anon_sym_LT] = ACTIONS(2347), + [anon_sym_esac] = ACTIONS(721), + [anon_sym_GT_GT] = ACTIONS(2347), + [anon_sym_LT_AMP] = ACTIONS(2347), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + }, + [2797] = { + [sym_heredoc_redirect] = STATE(2796), + [sym_file_redirect] = STATE(2796), + [sym_herestring_redirect] = STATE(2796), + [aux_sym_redirected_statement_repeat1] = STATE(2796), + [anon_sym_LT_LT_DASH] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1190), + [anon_sym_LF] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1190), + [anon_sym_LT_LT] = ACTIONS(1190), + [sym_file_descriptor] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_PIPE_PIPE] = ACTIONS(1190), + [anon_sym_LT_LT_LT] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_GT_AMP] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_esac] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_LT_AMP] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_SEMI_SEMI] = ACTIONS(1190), + [anon_sym_PIPE_AMP] = ACTIONS(1190), + }, + [2798] = { + [sym_heredoc_redirect] = STATE(2798), + [sym_file_redirect] = STATE(2798), + [sym_herestring_redirect] = STATE(2798), + [aux_sym_redirected_statement_repeat1] = STATE(2798), + [anon_sym_LT_LT_DASH] = ACTIONS(2237), + [anon_sym_AMP_GT_GT] = ACTIONS(6932), + [anon_sym_LF] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_LT_LT] = ACTIONS(2237), + [sym_file_descriptor] = ACTIONS(6935), + [anon_sym_GT] = ACTIONS(6932), + [anon_sym_AMP_GT] = ACTIONS(6932), + [anon_sym_PIPE_PIPE] = ACTIONS(1244), + [anon_sym_LT_LT_LT] = ACTIONS(6938), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_GT_AMP] = ACTIONS(6932), + [anon_sym_LT] = ACTIONS(6932), + [anon_sym_esac] = ACTIONS(1244), + [anon_sym_GT_GT] = ACTIONS(6932), + [anon_sym_LT_AMP] = ACTIONS(6932), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_SEMI_SEMI] = ACTIONS(1244), + [anon_sym_PIPE_AMP] = ACTIONS(1244), }, }; @@ -77846,3188 +84502,3337 @@ static TSParseActionEntry ts_parse_actions[] = { [7] = {.count = 1, .reusable = true}, SHIFT(3), [9] = {.count = 1, .reusable = false}, SHIFT(4), [11] = {.count = 1, .reusable = false}, SHIFT(5), - [13] = {.count = 1, .reusable = false}, SHIFT(6), + [13] = {.count = 1, .reusable = true}, SHIFT(6), [15] = {.count = 1, .reusable = true}, SHIFT(7), - [17] = {.count = 1, .reusable = true}, SHIFT(8), - [19] = {.count = 1, .reusable = false}, SHIFT(9), + [17] = {.count = 1, .reusable = false}, SHIFT(8), + [19] = {.count = 1, .reusable = true}, SHIFT(9), [21] = {.count = 1, .reusable = true}, SHIFT(10), [23] = {.count = 1, .reusable = false}, SHIFT(11), - [25] = {.count = 1, .reusable = false}, SHIFT(12), - [27] = {.count = 1, .reusable = true}, SHIFT(13), - [29] = {.count = 1, .reusable = false}, SHIFT(3), + [25] = {.count = 1, .reusable = true}, SHIFT(12), + [27] = {.count = 1, .reusable = false}, SHIFT(3), + [29] = {.count = 1, .reusable = false}, SHIFT(13), [31] = {.count = 1, .reusable = false}, SHIFT(14), [33] = {.count = 1, .reusable = false}, SHIFT(15), - [35] = {.count = 1, .reusable = false}, SHIFT(16), - [37] = {.count = 1, .reusable = true}, SHIFT(17), - [39] = {.count = 1, .reusable = true}, SHIFT(9), - [41] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [43] = {.count = 1, .reusable = false}, SHIFT(18), - [45] = {.count = 1, .reusable = true}, SHIFT(19), - [47] = {.count = 1, .reusable = true}, SHIFT(20), + [35] = {.count = 1, .reusable = true}, SHIFT(16), + [37] = {.count = 1, .reusable = false}, SHIFT(10), + [39] = {.count = 1, .reusable = true}, SHIFT(17), + [41] = {.count = 1, .reusable = false}, SHIFT(18), + [43] = {.count = 1, .reusable = true}, SHIFT(19), + [45] = {.count = 1, .reusable = true}, SHIFT(20), + [47] = {.count = 1, .reusable = false}, SHIFT(21), [49] = {.count = 1, .reusable = true}, REDUCE(sym_program, 0), - [51] = {.count = 1, .reusable = true}, SHIFT(21), - [53] = {.count = 1, .reusable = true}, SHIFT(22), - [55] = {.count = 1, .reusable = false}, SHIFT(23), + [51] = {.count = 1, .reusable = false}, SHIFT(22), + [53] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), + [55] = {.count = 1, .reusable = true}, SHIFT(23), [57] = {.count = 1, .reusable = false}, SHIFT(24), [59] = {.count = 1, .reusable = false}, SHIFT(25), - [61] = {.count = 1, .reusable = true}, SHIFT(26), - [63] = {.count = 1, .reusable = false}, SHIFT(2406), - [65] = {.count = 1, .reusable = false}, SHIFT(381), - [67] = {.count = 1, .reusable = false}, SHIFT(382), - [69] = {.count = 1, .reusable = false}, SHIFT(1371), - [71] = {.count = 1, .reusable = true}, SHIFT(2407), - [73] = {.count = 1, .reusable = true}, SHIFT(2408), - [75] = {.count = 1, .reusable = false}, SHIFT(383), - [77] = {.count = 1, .reusable = true}, SHIFT(2409), - [79] = {.count = 1, .reusable = false}, SHIFT(2410), - [81] = {.count = 1, .reusable = false}, SHIFT(384), - [83] = {.count = 1, .reusable = true}, SHIFT(1372), - [85] = {.count = 1, .reusable = false}, SHIFT(385), - [87] = {.count = 1, .reusable = false}, SHIFT(2624), - [89] = {.count = 1, .reusable = false}, SHIFT(2643), - [91] = {.count = 1, .reusable = true}, SHIFT(2411), - [93] = {.count = 1, .reusable = true}, SHIFT(383), - [95] = {.count = 1, .reusable = false}, SHIFT(386), - [97] = {.count = 1, .reusable = true}, SHIFT(2412), - [99] = {.count = 1, .reusable = true}, SHIFT(1373), - [101] = {.count = 1, .reusable = true}, SHIFT(2414), - [103] = {.count = 1, .reusable = false}, SHIFT(2625), - [105] = {.count = 1, .reusable = false}, SHIFT(2415), - [107] = {.count = 1, .reusable = false}, SHIFT(2416), - [109] = {.count = 1, .reusable = true}, SHIFT(2417), - [111] = {.count = 1, .reusable = true}, SHIFT(38), - [113] = {.count = 1, .reusable = false}, SHIFT(1480), - [115] = {.count = 1, .reusable = true}, SHIFT(2450), - [117] = {.count = 1, .reusable = true}, SHIFT(2451), - [119] = {.count = 1, .reusable = false}, SHIFT(38), - [121] = {.count = 1, .reusable = true}, SHIFT(2452), - [123] = {.count = 1, .reusable = true}, SHIFT(1481), - [125] = {.count = 1, .reusable = true}, SHIFT(2455), - [127] = {.count = 1, .reusable = true}, SHIFT(538), - [129] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), - [131] = {.count = 1, .reusable = false}, SHIFT(1525), - [133] = {.count = 1, .reusable = false}, SHIFT(2461), - [135] = {.count = 1, .reusable = false}, SHIFT(2462), - [137] = {.count = 1, .reusable = false}, SHIFT(41), - [139] = {.count = 1, .reusable = false}, SHIFT(2463), - [141] = {.count = 1, .reusable = false}, SHIFT(634), - [143] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), - [145] = {.count = 1, .reusable = true}, SHIFT(2453), - [147] = {.count = 1, .reusable = false}, SHIFT(1526), - [149] = {.count = 1, .reusable = false}, SHIFT(2466), - [151] = {.count = 1, .reusable = false}, SHIFT(43), - [153] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), - [155] = {.count = 1, .reusable = false}, SHIFT(1568), - [157] = {.count = 1, .reusable = false}, SHIFT(2471), - [159] = {.count = 1, .reusable = false}, SHIFT(2472), - [161] = {.count = 1, .reusable = false}, SHIFT(44), - [163] = {.count = 1, .reusable = false}, SHIFT(2473), - [165] = {.count = 1, .reusable = false}, SHIFT(695), - [167] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), - [169] = {.count = 1, .reusable = false}, SHIFT(1569), - [171] = {.count = 1, .reusable = false}, SHIFT(2475), - [173] = {.count = 1, .reusable = false}, SHIFT(46), - [175] = {.count = 1, .reusable = false}, SHIFT(47), - [177] = {.count = 1, .reusable = true}, SHIFT(48), - [179] = {.count = 1, .reusable = true}, SHIFT(47), - [181] = {.count = 1, .reusable = true}, SHIFT(49), - [183] = {.count = 1, .reusable = false}, SHIFT(534), - [185] = {.count = 1, .reusable = false}, SHIFT(535), - [187] = {.count = 1, .reusable = false}, SHIFT(1468), - [189] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), - [191] = {.count = 1, .reusable = true}, SHIFT(52), - [193] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), - [195] = {.count = 1, .reusable = false}, SHIFT(54), - [197] = {.count = 1, .reusable = true}, SHIFT(54), - [199] = {.count = 1, .reusable = true}, SHIFT(55), - [201] = {.count = 1, .reusable = true}, SHIFT(56), - [203] = {.count = 1, .reusable = true}, SHIFT(57), - [205] = {.count = 1, .reusable = true}, SHIFT(58), - [207] = {.count = 1, .reusable = false}, SHIFT(59), - [209] = {.count = 1, .reusable = true}, SHIFT(60), - [211] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 1), - [213] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 1), - [215] = {.count = 1, .reusable = true}, SHIFT(2482), - [217] = {.count = 1, .reusable = true}, SHIFT(1612), - [219] = {.count = 1, .reusable = true}, SHIFT(67), - [221] = {.count = 1, .reusable = false}, SHIFT(67), - [223] = {.count = 1, .reusable = true}, SHIFT(2484), - [225] = {.count = 1, .reusable = false}, SHIFT(1611), - [227] = {.count = 1, .reusable = true}, SHIFT(2481), - [229] = {.count = 1, .reusable = true}, SHIFT(2480), - [231] = {.count = 1, .reusable = true}, SHIFT(735), - [233] = {.count = 1, .reusable = true}, SHIFT(70), - [235] = {.count = 1, .reusable = true}, SHIFT(71), - [237] = {.count = 1, .reusable = false}, SHIFT(72), - [239] = {.count = 1, .reusable = false}, SHIFT(1654), - [241] = {.count = 1, .reusable = true}, SHIFT(72), - [243] = {.count = 1, .reusable = true}, SHIFT(2489), - [245] = {.count = 1, .reusable = true}, SHIFT(2490), - [247] = {.count = 1, .reusable = false}, SHIFT(71), - [249] = {.count = 1, .reusable = true}, SHIFT(2491), - [251] = {.count = 1, .reusable = true}, SHIFT(1655), - [253] = {.count = 1, .reusable = true}, SHIFT(2493), - [255] = {.count = 1, .reusable = true}, SHIFT(772), - [257] = {.count = 1, .reusable = true}, SHIFT(2464), - [259] = {.count = 1, .reusable = true}, SHIFT(76), - [261] = {.count = 1, .reusable = true}, SHIFT(77), - [263] = {.count = 1, .reusable = true}, SHIFT(78), - [265] = {.count = 1, .reusable = false}, SHIFT(78), - [267] = {.count = 1, .reusable = false}, SHIFT(79), - [269] = {.count = 1, .reusable = false}, SHIFT(2500), - [271] = {.count = 1, .reusable = false}, SHIFT(80), - [273] = {.count = 1, .reusable = false}, SHIFT(2498), - [275] = {.count = 1, .reusable = false}, SHIFT(2502), - [277] = {.count = 1, .reusable = false}, SHIFT(81), - [279] = {.count = 1, .reusable = true}, SHIFT(86), - [281] = {.count = 1, .reusable = true}, SHIFT(85), - [283] = {.count = 1, .reusable = true}, SHIFT(2423), - [285] = {.count = 1, .reusable = true}, SHIFT(408), - [287] = {.count = 1, .reusable = false}, SHIFT(409), - [289] = {.count = 1, .reusable = false}, SHIFT(1697), - [291] = {.count = 1, .reusable = true}, SHIFT(409), - [293] = {.count = 1, .reusable = true}, SHIFT(2507), - [295] = {.count = 1, .reusable = true}, SHIFT(2499), - [297] = {.count = 1, .reusable = false}, SHIFT(408), - [299] = {.count = 1, .reusable = true}, SHIFT(2509), - [301] = {.count = 1, .reusable = true}, SHIFT(1698), - [303] = {.count = 1, .reusable = true}, SHIFT(2510), - [305] = {.count = 1, .reusable = true}, SHIFT(809), - [307] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .production_id = 1), - [309] = {.count = 1, .reusable = false}, SHIFT(90), - [311] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .production_id = 1), - [313] = {.count = 1, .reusable = false}, SHIFT(92), - [315] = {.count = 1, .reusable = false}, SHIFT(1370), - [317] = {.count = 1, .reusable = true}, SHIFT(94), - [319] = {.count = 1, .reusable = true}, SHIFT(2413), - [321] = {.count = 1, .reusable = false}, SHIFT(95), - [323] = {.count = 1, .reusable = false}, SHIFT(96), - [325] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 1), - [327] = {.count = 1, .reusable = false}, SHIFT(97), - [329] = {.count = 1, .reusable = false}, SHIFT(93), - [331] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), - [333] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), - [335] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [337] = {.count = 1, .reusable = true}, SHIFT(14), - [339] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), - [341] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), - [343] = {.count = 1, .reusable = false}, SHIFT(7), - [345] = {.count = 1, .reusable = false}, SHIFT(8), - [347] = {.count = 1, .reusable = false}, SHIFT(105), - [349] = {.count = 1, .reusable = false}, SHIFT(10), - [351] = {.count = 1, .reusable = false}, SHIFT(104), - [353] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), - [355] = {.count = 1, .reusable = false}, SHIFT(21), - [357] = {.count = 1, .reusable = false}, SHIFT(22), - [359] = {.count = 1, .reusable = true}, SHIFT(108), - [361] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), - [363] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), - [365] = {.count = 1, .reusable = true}, SHIFT(1484), - [367] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .production_id = 2), - [369] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .production_id = 2), - [371] = {.count = 1, .reusable = true}, SHIFT(564), - [373] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [375] = {.count = 1, .reusable = true}, SHIFT(1529), - [377] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [379] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [381] = {.count = 1, .reusable = false}, SHIFT(646), - [383] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [385] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), - [387] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), - [389] = {.count = 1, .reusable = false}, SHIFT(109), - [391] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [393] = {.count = 1, .reusable = true}, SHIFT(1572), - [395] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [397] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [399] = {.count = 1, .reusable = false}, SHIFT(702), - [401] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [403] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), - [405] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), - [407] = {.count = 1, .reusable = false}, SHIFT(110), - [409] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), - [411] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), - [413] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .production_id = 3), - [415] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .production_id = 3), - [417] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), - [419] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), - [421] = {.count = 1, .reusable = true}, SHIFT(111), - [423] = {.count = 1, .reusable = true}, SHIFT(112), - [425] = {.count = 1, .reusable = true}, SHIFT(113), - [427] = {.count = 1, .reusable = false}, SHIFT(113), - [429] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), - [431] = {.count = 1, .reusable = true}, SHIFT(114), - [433] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), - [435] = {.count = 1, .reusable = false}, SHIFT(120), - [437] = {.count = 1, .reusable = true}, SHIFT(120), - [439] = {.count = 1, .reusable = true}, SHIFT(116), - [441] = {.count = 1, .reusable = true}, SHIFT(117), - [443] = {.count = 1, .reusable = false}, SHIFT(1820), - [445] = {.count = 1, .reusable = true}, SHIFT(2528), - [447] = {.count = 1, .reusable = true}, SHIFT(2522), - [449] = {.count = 1, .reusable = false}, SHIFT(116), - [451] = {.count = 1, .reusable = true}, SHIFT(2530), - [453] = {.count = 1, .reusable = true}, SHIFT(1821), - [455] = {.count = 1, .reusable = true}, SHIFT(118), - [457] = {.count = 1, .reusable = true}, SHIFT(2531), - [459] = {.count = 1, .reusable = false}, SHIFT(910), - [461] = {.count = 1, .reusable = false}, SHIFT(121), - [463] = {.count = 1, .reusable = true}, SHIFT(121), - [465] = {.count = 1, .reusable = true}, SHIFT(122), - [467] = {.count = 1, .reusable = true}, SHIFT(123), - [469] = {.count = 1, .reusable = true}, SHIFT(124), - [471] = {.count = 1, .reusable = true}, SHIFT(2424), - [473] = {.count = 1, .reusable = false}, SHIFT(127), - [475] = {.count = 1, .reusable = true}, SHIFT(127), - [477] = {.count = 1, .reusable = true}, SHIFT(125), - [479] = {.count = 1, .reusable = true}, SHIFT(126), - [481] = {.count = 1, .reusable = true}, SHIFT(128), - [483] = {.count = 1, .reusable = true}, SHIFT(130), - [485] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [487] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [489] = {.count = 1, .reusable = false}, SHIFT(1394), - [491] = {.count = 1, .reusable = false}, SHIFT(416), - [493] = {.count = 1, .reusable = false}, SHIFT(1479), - [495] = {.count = 1, .reusable = true}, SHIFT(132), - [497] = {.count = 1, .reusable = false}, SHIFT(131), - [499] = {.count = 1, .reusable = true}, SHIFT(2454), - [501] = {.count = 1, .reusable = false}, SHIFT(418), - [503] = {.count = 1, .reusable = false}, SHIFT(1395), - [505] = {.count = 1, .reusable = true}, SHIFT(133), - [507] = {.count = 1, .reusable = true}, SHIFT(134), - [509] = {.count = 1, .reusable = true}, SHIFT(135), - [511] = {.count = 1, .reusable = false}, SHIFT(135), - [513] = {.count = 1, .reusable = false}, SHIFT(136), - [515] = {.count = 1, .reusable = true}, SHIFT(1615), - [517] = {.count = 1, .reusable = true}, SHIFT(136), - [519] = {.count = 1, .reusable = false}, SHIFT(137), - [521] = {.count = 1, .reusable = false}, SHIFT(139), - [523] = {.count = 1, .reusable = false}, SHIFT(138), - [525] = {.count = 1, .reusable = true}, SHIFT(138), - [527] = {.count = 1, .reusable = false}, SHIFT(741), - [529] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [531] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [533] = {.count = 1, .reusable = true}, SHIFT(1658), - [535] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .production_id = 1), - [537] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .production_id = 1), - [539] = {.count = 1, .reusable = false}, SHIFT(778), - [541] = {.count = 1, .reusable = true}, SHIFT(142), - [543] = {.count = 1, .reusable = true}, SHIFT(143), - [545] = {.count = 1, .reusable = false}, SHIFT(142), - [547] = {.count = 1, .reusable = true}, SHIFT(144), - [549] = {.count = 1, .reusable = true}, SHIFT(145), - [551] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), - [553] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), - [555] = {.count = 1, .reusable = true}, SHIFT(146), - [557] = {.count = 1, .reusable = true}, SHIFT(148), - [559] = {.count = 1, .reusable = false}, SHIFT(1860), - [561] = {.count = 1, .reusable = true}, SHIFT(2535), - [563] = {.count = 1, .reusable = true}, SHIFT(2529), - [565] = {.count = 1, .reusable = false}, SHIFT(148), - [567] = {.count = 1, .reusable = true}, SHIFT(2537), - [569] = {.count = 1, .reusable = true}, SHIFT(1861), - [571] = {.count = 1, .reusable = true}, SHIFT(2538), - [573] = {.count = 1, .reusable = true}, SHIFT(942), - [575] = {.count = 1, .reusable = true}, SHIFT(147), - [577] = {.count = 1, .reusable = true}, SHIFT(150), - [579] = {.count = 1, .reusable = false}, SHIFT(150), - [581] = {.count = 1, .reusable = true}, SHIFT(974), - [583] = {.count = 1, .reusable = true}, SHIFT(153), - [585] = {.count = 1, .reusable = false}, SHIFT(153), - [587] = {.count = 1, .reusable = false}, SHIFT(810), - [589] = {.count = 1, .reusable = false}, SHIFT(156), - [591] = {.count = 1, .reusable = false}, SHIFT(811), - [593] = {.count = 1, .reusable = false}, SHIFT(157), - [595] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), - [597] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), - [599] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), - [601] = {.count = 1, .reusable = true}, SHIFT(158), - [603] = {.count = 1, .reusable = false}, SHIFT(159), - [605] = {.count = 1, .reusable = true}, SHIFT(161), - [607] = {.count = 1, .reusable = false}, SHIFT(2459), - [609] = {.count = 1, .reusable = false}, SHIFT(560), - [611] = {.count = 1, .reusable = false}, SHIFT(162), - [613] = {.count = 1, .reusable = false}, SHIFT(561), - [615] = {.count = 1, .reusable = true}, SHIFT(2483), - [617] = {.count = 1, .reusable = false}, SHIFT(1900), - [619] = {.count = 1, .reusable = false}, SHIFT(2542), - [621] = {.count = 1, .reusable = false}, SHIFT(2536), - [623] = {.count = 1, .reusable = false}, SHIFT(2544), - [625] = {.count = 1, .reusable = false}, SHIFT(1901), - [627] = {.count = 1, .reusable = false}, SHIFT(2545), - [629] = {.count = 1, .reusable = false}, SHIFT(1006), - [631] = {.count = 1, .reusable = false}, SHIFT(166), - [633] = {.count = 1, .reusable = true}, SHIFT(166), - [635] = {.count = 1, .reusable = false}, SHIFT(165), - [637] = {.count = 1, .reusable = true}, SHIFT(167), - [639] = {.count = 1, .reusable = true}, SHIFT(443), - [641] = {.count = 1, .reusable = true}, SHIFT(444), - [643] = {.count = 1, .reusable = false}, SHIFT(443), - [645] = {.count = 1, .reusable = true}, SHIFT(445), - [647] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), - [649] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(90), - [652] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), - [654] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), - [656] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), - [658] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 2), - [660] = {.count = 1, .reusable = true}, SHIFT(171), - [662] = {.count = 1, .reusable = true}, SHIFT(172), - [664] = {.count = 1, .reusable = true}, SHIFT(174), - [666] = {.count = 1, .reusable = true}, SHIFT(2551), - [668] = {.count = 1, .reusable = true}, SHIFT(1941), - [670] = {.count = 1, .reusable = true}, SHIFT(177), - [672] = {.count = 1, .reusable = false}, SHIFT(177), - [674] = {.count = 1, .reusable = true}, SHIFT(2552), - [676] = {.count = 1, .reusable = false}, SHIFT(1940), - [678] = {.count = 1, .reusable = true}, SHIFT(2543), - [680] = {.count = 1, .reusable = true}, SHIFT(2549), - [682] = {.count = 1, .reusable = true}, SHIFT(1038), - [684] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), - [686] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), - [688] = {.count = 1, .reusable = true}, SHIFT(182), - [690] = {.count = 1, .reusable = false}, SHIFT(181), - [692] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2406), - [695] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), - [698] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(381), - [701] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(382), - [704] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1371), - [707] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2407), - [710] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2408), - [713] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(383), - [716] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2409), - [719] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2410), - [722] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1372), - [725] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), - [728] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(384), - [731] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(385), - [734] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2624), - [737] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2643), - [740] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2411), - [743] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(383), - [746] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(386), - [749] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2412), - [752] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(20), - [755] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1373), - [758] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2414), - [761] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2625), - [764] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2415), - [767] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2416), - [770] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2417), - [773] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), - [775] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), - [777] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), - [780] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), - [782] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), - [784] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(20), - [787] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2464), - [790] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), - [793] = {.count = 1, .reusable = true}, SHIFT(185), - [795] = {.count = 1, .reusable = false}, SHIFT(185), - [797] = {.count = 1, .reusable = true}, SHIFT(184), - [799] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), - [801] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), - [803] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), - [805] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), - [807] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), - [809] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), - [811] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [813] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1525), - [816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2461), - [819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2462), - [822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(41), - [825] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2463), - [828] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(634), - [831] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [833] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2453), - [836] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1526), - [839] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2466), - [842] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(109), - [845] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [847] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1568), - [850] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2471), - [853] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2472), - [856] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(44), - [859] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2473), - [862] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(695), - [865] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1569), - [870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2475), - [873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), - [876] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), - [878] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), - [880] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), - [882] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), - [884] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [886] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [888] = {.count = 1, .reusable = false}, SHIFT(188), - [890] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(52), - [893] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [895] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [897] = {.count = 1, .reusable = true}, SHIFT(1824), - [899] = {.count = 1, .reusable = false}, SHIFT(191), - [901] = {.count = 1, .reusable = true}, SHIFT(191), - [903] = {.count = 1, .reusable = true}, SHIFT(189), - [905] = {.count = 1, .reusable = true}, SHIFT(190), - [907] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), - [909] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), - [911] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), - [913] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), - [915] = {.count = 1, .reusable = false}, SHIFT(916), - [917] = {.count = 1, .reusable = false}, SHIFT(192), - [919] = {.count = 1, .reusable = true}, SHIFT(192), - [921] = {.count = 1, .reusable = true}, SHIFT(193), - [923] = {.count = 1, .reusable = true}, SHIFT(194), - [925] = {.count = 1, .reusable = false}, SHIFT(197), - [927] = {.count = 1, .reusable = true}, SHIFT(197), - [929] = {.count = 1, .reusable = true}, SHIFT(195), - [931] = {.count = 1, .reusable = true}, SHIFT(196), - [933] = {.count = 1, .reusable = true}, SHIFT(2572), - [935] = {.count = 1, .reusable = true}, SHIFT(2061), - [937] = {.count = 1, .reusable = true}, SHIFT(198), - [939] = {.count = 1, .reusable = false}, SHIFT(198), - [941] = {.count = 1, .reusable = true}, SHIFT(2573), - [943] = {.count = 1, .reusable = false}, SHIFT(2060), - [945] = {.count = 1, .reusable = true}, SHIFT(2564), - [947] = {.count = 1, .reusable = true}, SHIFT(2570), - [949] = {.count = 1, .reusable = false}, SHIFT(1134), - [951] = {.count = 1, .reusable = false}, SHIFT(203), - [953] = {.count = 1, .reusable = true}, SHIFT(203), - [955] = {.count = 1, .reusable = true}, SHIFT(201), - [957] = {.count = 1, .reusable = true}, SHIFT(202), - [959] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .production_id = 3), - [961] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .production_id = 3), - [963] = {.count = 1, .reusable = true}, SHIFT(204), - [965] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [967] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [969] = {.count = 1, .reusable = true}, SHIFT(458), - [971] = {.count = 1, .reusable = true}, SHIFT(1413), - [973] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [975] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [977] = {.count = 1, .reusable = false}, SHIFT(207), - [979] = {.count = 1, .reusable = false}, SHIFT(208), - [981] = {.count = 1, .reusable = false}, SHIFT(209), - [983] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), - [985] = {.count = 1, .reusable = true}, SHIFT(215), - [987] = {.count = 1, .reusable = true}, SHIFT(216), - [989] = {.count = 1, .reusable = false}, SHIFT(216), - [991] = {.count = 1, .reusable = true}, SHIFT(217), - [993] = {.count = 1, .reusable = true}, SHIFT(218), - [995] = {.count = 1, .reusable = false}, SHIFT(218), - [997] = {.count = 1, .reusable = true}, SHIFT(219), - [999] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), - [1001] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), - [1003] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), - [1005] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), - [1007] = {.count = 1, .reusable = true}, SHIFT(221), - [1009] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), - [1011] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), - [1013] = {.count = 1, .reusable = true}, SHIFT(2579), - [1015] = {.count = 1, .reusable = true}, SHIFT(2101), - [1017] = {.count = 1, .reusable = true}, SHIFT(222), - [1019] = {.count = 1, .reusable = false}, SHIFT(222), - [1021] = {.count = 1, .reusable = true}, SHIFT(2580), - [1023] = {.count = 1, .reusable = false}, SHIFT(2100), - [1025] = {.count = 1, .reusable = true}, SHIFT(2571), - [1027] = {.count = 1, .reusable = true}, SHIFT(2577), - [1029] = {.count = 1, .reusable = true}, SHIFT(223), - [1031] = {.count = 1, .reusable = true}, SHIFT(1166), - [1033] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), - [1035] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), - [1037] = {.count = 1, .reusable = true}, SHIFT(1864), - [1039] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .production_id = 4), - [1041] = {.count = 1, .reusable = false}, SHIFT(948), - [1043] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .production_id = 4), - [1045] = {.count = 1, .reusable = true}, SHIFT(226), - [1047] = {.count = 1, .reusable = true}, SHIFT(227), - [1049] = {.count = 1, .reusable = true}, SHIFT(228), - [1051] = {.count = 1, .reusable = true}, SHIFT(229), - [1053] = {.count = 1, .reusable = false}, SHIFT(980), - [1055] = {.count = 1, .reusable = true}, SHIFT(230), - [1057] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), - [1059] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), - [1061] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .production_id = 4), - [1063] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .production_id = 4), - [1065] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), - [1067] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), - [1069] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), - [1071] = {.count = 1, .reusable = true}, SHIFT(231), - [1073] = {.count = 1, .reusable = false}, SHIFT(232), - [1075] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(233), - [1078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2500), - [1081] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2498), - [1084] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2502), - [1087] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(81), - [1090] = {.count = 1, .reusable = false}, SHIFT(234), - [1092] = {.count = 1, .reusable = true}, SHIFT(236), - [1094] = {.count = 1, .reusable = false}, SHIFT(236), - [1096] = {.count = 1, .reusable = false}, SHIFT(587), - [1098] = {.count = 1, .reusable = false}, SHIFT(588), - [1100] = {.count = 1, .reusable = false}, SHIFT(589), - [1102] = {.count = 1, .reusable = true}, SHIFT(2586), - [1104] = {.count = 1, .reusable = true}, SHIFT(2141), - [1106] = {.count = 1, .reusable = true}, SHIFT(483), - [1108] = {.count = 1, .reusable = false}, SHIFT(483), - [1110] = {.count = 1, .reusable = true}, SHIFT(2587), - [1112] = {.count = 1, .reusable = false}, SHIFT(2140), - [1114] = {.count = 1, .reusable = true}, SHIFT(2578), - [1116] = {.count = 1, .reusable = true}, SHIFT(2584), - [1118] = {.count = 1, .reusable = true}, SHIFT(1198), - [1120] = {.count = 1, .reusable = false}, SHIFT(239), - [1122] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1124] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1126] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), - [1128] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), - [1130] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), - [1132] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), - [1134] = {.count = 1, .reusable = false}, SHIFT(241), - [1136] = {.count = 1, .reusable = true}, SHIFT(2593), - [1138] = {.count = 1, .reusable = true}, SHIFT(2591), - [1140] = {.count = 1, .reusable = true}, SHIFT(242), - [1142] = {.count = 1, .reusable = true}, SHIFT(2594), - [1144] = {.count = 1, .reusable = true}, SHIFT(243), - [1146] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 3), - [1148] = {.count = 1, .reusable = true}, SHIFT(244), - [1150] = {.count = 1, .reusable = false}, SHIFT(244), - [1152] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), - [1154] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), - [1156] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), - [1158] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), - [1160] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), - [1162] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), - [1164] = {.count = 1, .reusable = true}, SHIFT(1944), - [1166] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), - [1168] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), - [1170] = {.count = 1, .reusable = false}, SHIFT(1044), - [1172] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(95), - [1175] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [1177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1370), - [1180] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [1182] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2413), - [1185] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(97), - [1188] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), - [1190] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), - [1192] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), - [1194] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), - [1196] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), - [1198] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), - [1200] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(6), - [1203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(7), - [1206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(8), - [1209] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(105), - [1212] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(10), - [1215] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(104), - [1218] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(14), - [1221] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), - [1224] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [1227] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 4), - [1229] = {.count = 1, .reusable = false}, SHIFT(48), - [1231] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 4), - [1233] = {.count = 1, .reusable = false}, SHIFT(49), - [1235] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), - [1237] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), - [1239] = {.count = 1, .reusable = false}, SHIFT(247), - [1241] = {.count = 1, .reusable = true}, SHIFT(247), - [1243] = {.count = 1, .reusable = true}, SHIFT(246), - [1245] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(192), - [1248] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(192), - [1251] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(116), - [1254] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1820), - [1257] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [1259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(116), - [1262] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2530), - [1265] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2528), - [1268] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1821), - [1271] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2522), - [1274] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2531), - [1277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(910), - [1280] = {.count = 1, .reusable = true}, SHIFT(248), - [1282] = {.count = 1, .reusable = true}, SHIFT(249), - [1284] = {.count = 1, .reusable = false}, SHIFT(249), - [1286] = {.count = 1, .reusable = false}, SHIFT(254), - [1288] = {.count = 1, .reusable = true}, SHIFT(254), - [1290] = {.count = 1, .reusable = true}, SHIFT(252), - [1292] = {.count = 1, .reusable = true}, SHIFT(253), - [1294] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 5), - [1296] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 5), - [1298] = {.count = 1, .reusable = true}, SHIFT(2064), - [1300] = {.count = 1, .reusable = false}, SHIFT(1140), - [1302] = {.count = 1, .reusable = true}, SHIFT(255), - [1304] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 3), - [1306] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 3), - [1308] = {.count = 1, .reusable = false}, SHIFT(257), - [1310] = {.count = 1, .reusable = true}, SHIFT(257), - [1312] = {.count = 1, .reusable = true}, SHIFT(256), - [1314] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), - [1316] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [1318] = {.count = 1, .reusable = true}, SHIFT(259), - [1320] = {.count = 1, .reusable = false}, SHIFT(259), - [1322] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), - [1324] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), - [1326] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), - [1328] = {.count = 1, .reusable = true}, SHIFT(263), - [1330] = {.count = 1, .reusable = false}, SHIFT(262), - [1332] = {.count = 1, .reusable = true}, SHIFT(264), - [1334] = {.count = 1, .reusable = true}, SHIFT(209), - [1336] = {.count = 1, .reusable = true}, SHIFT(208), - [1338] = {.count = 1, .reusable = false}, SHIFT(264), - [1340] = {.count = 1, .reusable = true}, SHIFT(269), - [1342] = {.count = 1, .reusable = false}, SHIFT(269), - [1344] = {.count = 1, .reusable = true}, SHIFT(270), - [1346] = {.count = 1, .reusable = false}, SHIFT(270), - [1348] = {.count = 1, .reusable = false}, SHIFT(271), - [1350] = {.count = 1, .reusable = true}, SHIFT(276), - [1352] = {.count = 1, .reusable = false}, SHIFT(276), - [1354] = {.count = 1, .reusable = false}, SHIFT(277), - [1356] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [1358] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [1360] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), - [1362] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), - [1364] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1366] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1368] = {.count = 1, .reusable = true}, SHIFT(2104), - [1370] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), - [1372] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), - [1374] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [1376] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [1378] = {.count = 1, .reusable = true}, SHIFT(1172), - [1380] = {.count = 1, .reusable = true}, SHIFT(280), - [1382] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), - [1384] = {.count = 1, .reusable = true}, SHIFT(282), - [1386] = {.count = 1, .reusable = true}, SHIFT(819), - [1388] = {.count = 1, .reusable = false}, SHIFT(819), - [1390] = {.count = 1, .reusable = true}, SHIFT(283), - [1392] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .production_id = 4), - [1394] = {.count = 1, .reusable = true}, SHIFT(284), - [1396] = {.count = 1, .reusable = true}, SHIFT(285), - [1398] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), - [1400] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), - [1402] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), - [1404] = {.count = 1, .reusable = true}, SHIFT(286), - [1406] = {.count = 1, .reusable = false}, SHIFT(288), - [1408] = {.count = 1, .reusable = true}, SHIFT(290), - [1410] = {.count = 1, .reusable = false}, SHIFT(290), - [1412] = {.count = 1, .reusable = false}, SHIFT(2584), - [1414] = {.count = 1, .reusable = false}, SHIFT(2578), - [1416] = {.count = 1, .reusable = false}, SHIFT(2586), - [1418] = {.count = 1, .reusable = false}, SHIFT(2141), - [1420] = {.count = 1, .reusable = false}, SHIFT(2587), - [1422] = {.count = 1, .reusable = false}, SHIFT(1198), - [1424] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), - [1426] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), - [1428] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), - [1430] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), - [1432] = {.count = 1, .reusable = false}, SHIFT(291), - [1434] = {.count = 1, .reusable = false}, SHIFT(1231), - [1436] = {.count = 1, .reusable = true}, SHIFT(1232), - [1438] = {.count = 1, .reusable = true}, SHIFT(1231), - [1440] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), - [1442] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), - [1444] = {.count = 1, .reusable = true}, SHIFT(292), - [1446] = {.count = 1, .reusable = true}, SHIFT(293), - [1448] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 4), - [1450] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 4), - [1452] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 4), - [1454] = {.count = 1, .reusable = true}, SHIFT(294), - [1456] = {.count = 1, .reusable = false}, SHIFT(294), - [1458] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), - [1460] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), - [1462] = {.count = 1, .reusable = true}, SHIFT(295), - [1464] = {.count = 1, .reusable = false}, SHIFT(296), - [1466] = {.count = 1, .reusable = true}, SHIFT(296), - [1468] = {.count = 1, .reusable = true}, SHIFT(297), - [1470] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 5), - [1472] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 5), - [1474] = {.count = 1, .reusable = false}, SHIFT(299), - [1476] = {.count = 1, .reusable = true}, SHIFT(299), - [1478] = {.count = 1, .reusable = true}, SHIFT(298), - [1480] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 6), - [1482] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 6), - [1484] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 3), - [1486] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 3), - [1488] = {.count = 1, .reusable = true}, SHIFT(300), - [1490] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), - [1492] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), - [1494] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), - [1496] = {.count = 1, .reusable = true}, SHIFT(301), - [1498] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 2), - [1500] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 2), - [1502] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [1504] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [1506] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(209), - [1509] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1511] = {.count = 1, .reusable = true}, SHIFT(303), - [1513] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), - [1516] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(381), - [1519] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1371), - [1522] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2407), - [1525] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2408), - [1528] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(384), - [1531] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(385), - [1534] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2624), - [1537] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2411), - [1540] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(383), - [1543] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2412), - [1546] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(382), - [1549] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1373), - [1552] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2415), - [1555] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2406), - [1558] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(383), - [1561] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2409), - [1564] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2410), - [1567] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1372), - [1570] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), - [1573] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2643), - [1576] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(386), - [1579] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(20), - [1582] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2414), - [1585] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2625), - [1588] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2416), - [1591] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2417), - [1594] = {.count = 1, .reusable = false}, SHIFT(305), - [1596] = {.count = 1, .reusable = true}, SHIFT(309), - [1598] = {.count = 1, .reusable = true}, SHIFT(308), - [1600] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), - [1602] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), - [1604] = {.count = 1, .reusable = true}, SHIFT(311), - [1606] = {.count = 1, .reusable = true}, SHIFT(778), - [1608] = {.count = 1, .reusable = true}, SHIFT(305), - [1610] = {.count = 1, .reusable = false}, SHIFT(314), - [1612] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .production_id = 2), - [1614] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .production_id = 2), - [1616] = {.count = 1, .reusable = true}, SHIFT(314), - [1618] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), - [1620] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), - [1622] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2579), - [1625] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2101), - [1628] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(222), - [1631] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(222), - [1634] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2580), - [1637] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2100), - [1640] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1642] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2577), - [1645] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2571), - [1648] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1166), - [1651] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), - [1653] = {.count = 1, .reusable = true}, SHIFT(317), - [1655] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .production_id = 4), - [1657] = {.count = 1, .reusable = true}, SHIFT(318), - [1659] = {.count = 1, .reusable = true}, SHIFT(319), - [1661] = {.count = 1, .reusable = true}, SHIFT(321), - [1663] = {.count = 1, .reusable = false}, SHIFT(323), - [1665] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), - [1667] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), - [1669] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), - [1671] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), - [1673] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(241), - [1676] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2593), - [1679] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2591), - [1682] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [1684] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2594), - [1687] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(293), - [1690] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 5), - [1692] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [1694] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [1696] = {.count = 1, .reusable = true}, SHIFT(325), - [1698] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 7), - [1700] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 7), - [1702] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 5), - [1704] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 5), - [1706] = {.count = 1, .reusable = true}, SHIFT(326), - [1708] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 3), - [1710] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 3), - [1712] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), - [1714] = {.count = 1, .reusable = true}, SHIFT(328), - [1716] = {.count = 1, .reusable = false}, SHIFT(328), - [1718] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [1720] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [1722] = {.count = 1, .reusable = true}, SHIFT(329), - [1724] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), - [1726] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), - [1728] = {.count = 1, .reusable = true}, SHIFT(330), - [1730] = {.count = 1, .reusable = true}, SHIFT(332), - [1732] = {.count = 1, .reusable = false}, SHIFT(332), - [1734] = {.count = 1, .reusable = false}, SHIFT(632), - [1736] = {.count = 1, .reusable = false}, SHIFT(633), - [1738] = {.count = 1, .reusable = false}, SHIFT(2180), - [1740] = {.count = 1, .reusable = true}, SHIFT(2598), - [1742] = {.count = 1, .reusable = true}, SHIFT(2585), - [1744] = {.count = 1, .reusable = false}, SHIFT(536), - [1746] = {.count = 1, .reusable = true}, SHIFT(2600), - [1748] = {.count = 1, .reusable = false}, SHIFT(537), - [1750] = {.count = 1, .reusable = false}, SHIFT(1230), - [1752] = {.count = 1, .reusable = true}, SHIFT(536), - [1754] = {.count = 1, .reusable = false}, SHIFT(539), - [1756] = {.count = 1, .reusable = true}, SHIFT(2492), - [1758] = {.count = 1, .reusable = true}, SHIFT(2181), - [1760] = {.count = 1, .reusable = true}, SHIFT(2601), - [1762] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), - [1764] = {.count = 1, .reusable = true}, SHIFT(335), - [1766] = {.count = 1, .reusable = true}, SHIFT(337), - [1768] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .production_id = 1), - [1770] = {.count = 1, .reusable = true}, SHIFT(339), - [1772] = {.count = 1, .reusable = true}, SHIFT(341), - [1774] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2491), - [1777] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1655), - [1780] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(342), - [1783] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(342), - [1786] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2493), - [1789] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1654), - [1792] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2490), - [1795] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2489), - [1798] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(772), - [1801] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .production_id = 2), - [1803] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .production_id = 2), - [1805] = {.count = 1, .reusable = true}, SHIFT(345), - [1807] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), - [1809] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .production_id = 4), - [1811] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), - [1813] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), - [1815] = {.count = 1, .reusable = true}, SHIFT(348), - [1817] = {.count = 1, .reusable = true}, SHIFT(349), - [1819] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [1821] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [1823] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), - [1825] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), - [1827] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .production_id = 5), - [1829] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .production_id = 5), - [1831] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), - [1833] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 4), - [1835] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 4), - [1837] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [1839] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [1841] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), - [1843] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), - [1845] = {.count = 1, .reusable = true}, SHIFT(351), - [1847] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), - [1849] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 2), - [1851] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), - [1853] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), - [1855] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), - [1857] = {.count = 1, .reusable = true}, SHIFT(352), - [1859] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), - [1861] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(308), - [1864] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .production_id = 1), - [1866] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .production_id = 1), - [1868] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .production_id = 1), - [1870] = {.count = 1, .reusable = true}, SHIFT(354), - [1872] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .production_id = 1), - [1874] = {.count = 1, .reusable = true}, SHIFT(356), - [1876] = {.count = 1, .reusable = true}, SHIFT(358), - [1878] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .production_id = 2), - [1880] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .production_id = 2), - [1882] = {.count = 1, .reusable = true}, SHIFT(360), - [1884] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), - [1886] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), - [1888] = {.count = 1, .reusable = true}, SHIFT(362), - [1890] = {.count = 1, .reusable = true}, SHIFT(363), - [1892] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), - [1894] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), - [1896] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), - [1898] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), - [1900] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), - [1902] = {.count = 1, .reusable = true}, SHIFT(364), - [1904] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), - [1906] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .production_id = 1), - [1908] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .production_id = 1), - [1910] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .production_id = 1), - [1912] = {.count = 1, .reusable = true}, SHIFT(365), - [1914] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .production_id = 1), - [1916] = {.count = 1, .reusable = true}, SHIFT(366), - [1918] = {.count = 1, .reusable = true}, SHIFT(368), - [1920] = {.count = 1, .reusable = true}, SHIFT(369), - [1922] = {.count = 1, .reusable = true}, SHIFT(371), - [1924] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .production_id = 2), - [1926] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .production_id = 2), - [1928] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), - [1930] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), - [1932] = {.count = 1, .reusable = true}, SHIFT(373), - [1934] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), - [1936] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), - [1938] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), - [1940] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .production_id = 1), - [1942] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .production_id = 1), - [1944] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .production_id = 1), - [1946] = {.count = 1, .reusable = true}, SHIFT(374), - [1948] = {.count = 1, .reusable = true}, SHIFT(376), - [1950] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), - [1952] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), - [1954] = {.count = 1, .reusable = true}, SHIFT(379), - [1956] = {.count = 1, .reusable = true}, SHIFT(380), - [1958] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), - [1960] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), - [1962] = {.count = 1, .reusable = false}, SHIFT(1740), - [1964] = {.count = 1, .reusable = false}, SHIFT(2514), - [1966] = {.count = 1, .reusable = false}, SHIFT(2508), - [1968] = {.count = 1, .reusable = false}, SHIFT(397), - [1970] = {.count = 1, .reusable = false}, SHIFT(2516), - [1972] = {.count = 1, .reusable = false}, SHIFT(846), - [1974] = {.count = 1, .reusable = true}, SHIFT(2474), - [1976] = {.count = 1, .reusable = false}, SHIFT(1741), - [1978] = {.count = 1, .reusable = false}, SHIFT(2517), - [1980] = {.count = 1, .reusable = false}, SHIFT(399), - [1982] = {.count = 1, .reusable = false}, SHIFT(1780), - [1984] = {.count = 1, .reusable = false}, SHIFT(2521), - [1986] = {.count = 1, .reusable = false}, SHIFT(2515), - [1988] = {.count = 1, .reusable = false}, SHIFT(400), - [1990] = {.count = 1, .reusable = false}, SHIFT(2523), - [1992] = {.count = 1, .reusable = false}, SHIFT(878), - [1994] = {.count = 1, .reusable = false}, SHIFT(1781), - [1996] = {.count = 1, .reusable = false}, SHIFT(2524), - [1998] = {.count = 1, .reusable = false}, SHIFT(402), - [2000] = {.count = 1, .reusable = true}, SHIFT(1377), - [2002] = {.count = 1, .reusable = false}, SHIFT(2421), - [2004] = {.count = 1, .reusable = false}, SHIFT(413), - [2006] = {.count = 1, .reusable = false}, SHIFT(415), - [2008] = {.count = 1, .reusable = true}, SHIFT(417), - [2010] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 1), - [2012] = {.count = 1, .reusable = true}, SHIFT(385), - [2014] = {.count = 1, .reusable = false}, SHIFT(2407), - [2016] = {.count = 1, .reusable = false}, SHIFT(2408), - [2018] = {.count = 1, .reusable = false}, SHIFT(425), - [2020] = {.count = 1, .reusable = false}, SHIFT(2409), - [2022] = {.count = 1, .reusable = false}, SHIFT(424), - [2024] = {.count = 1, .reusable = false}, SHIFT(1373), - [2026] = {.count = 1, .reusable = false}, SHIFT(2414), - [2028] = {.count = 1, .reusable = true}, SHIFT(1744), - [2030] = {.count = 1, .reusable = false}, SHIFT(852), - [2032] = {.count = 1, .reusable = false}, SHIFT(429), - [2034] = {.count = 1, .reusable = true}, SHIFT(1784), - [2036] = {.count = 1, .reusable = false}, SHIFT(884), - [2038] = {.count = 1, .reusable = false}, SHIFT(430), - [2040] = {.count = 1, .reusable = true}, SHIFT(434), - [2042] = {.count = 1, .reusable = true}, SHIFT(1701), - [2044] = {.count = 1, .reusable = false}, SHIFT(815), - [2046] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(413), - [2049] = {.count = 1, .reusable = true}, SHIFT(468), - [2051] = {.count = 1, .reusable = false}, SHIFT(467), - [2053] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 2), - [2055] = {.count = 1, .reusable = true}, SHIFT(471), - [2057] = {.count = 1, .reusable = false}, SHIFT(471), - [2059] = {.count = 1, .reusable = true}, SHIFT(470), - [2061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1740), - [2064] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2514), - [2067] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2508), - [2070] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(397), - [2073] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2516), - [2076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(846), - [2079] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2474), - [2082] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1741), - [2085] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2517), - [2088] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(429), - [2091] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1780), - [2094] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2521), - [2097] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2515), - [2100] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(400), - [2103] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2523), - [2106] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(878), - [2109] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1781), - [2112] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2524), - [2115] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(430), - [2118] = {.count = 1, .reusable = true}, SHIFT(433), - [2120] = {.count = 1, .reusable = false}, SHIFT(474), - [2122] = {.count = 1, .reusable = false}, SHIFT(433), - [2124] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1377), - [2127] = {.count = 1, .reusable = true}, SHIFT(482), - [2129] = {.count = 1, .reusable = true}, SHIFT(1984), - [2131] = {.count = 1, .reusable = false}, SHIFT(1076), - [2133] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 3), - [2135] = {.count = 1, .reusable = true}, SHIFT(492), - [2137] = {.count = 1, .reusable = false}, SHIFT(492), - [2139] = {.count = 1, .reusable = true}, SHIFT(2024), - [2141] = {.count = 1, .reusable = false}, SHIFT(1108), - [2143] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1479), - [2146] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1394), - [2149] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2454), - [2152] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1395), - [2155] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1371), - [2158] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2407), - [2161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2408), - [2164] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(425), - [2167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2409), - [2170] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(424), - [2173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(385), - [2176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1373), - [2179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2414), - [2182] = {.count = 1, .reusable = false}, SHIFT(403), - [2184] = {.count = 1, .reusable = false}, SHIFT(404), - [2186] = {.count = 1, .reusable = false}, SHIFT(405), - [2188] = {.count = 1, .reusable = true}, SHIFT(2144), - [2190] = {.count = 1, .reusable = false}, SHIFT(1204), - [2192] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), - [2194] = {.count = 1, .reusable = true}, SHIFT(505), - [2196] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .production_id = 4), - [2198] = {.count = 1, .reusable = true}, SHIFT(507), - [2200] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 4), - [2202] = {.count = 1, .reusable = true}, SHIFT(511), - [2204] = {.count = 1, .reusable = false}, SHIFT(511), - [2206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(483), - [2209] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2211] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2140), - [2214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2584), - [2217] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2578), - [2220] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2586), - [2223] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2141), - [2226] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2587), - [2229] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1198), - [2232] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), - [2234] = {.count = 1, .reusable = true}, SHIFT(519), - [2236] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .production_id = 4), - [2238] = {.count = 1, .reusable = true}, SHIFT(520), - [2240] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), - [2242] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .production_id = 4), - [2244] = {.count = 1, .reusable = false}, SHIFT(552), - [2246] = {.count = 1, .reusable = false}, SHIFT(555), - [2248] = {.count = 1, .reusable = true}, SHIFT(2184), - [2250] = {.count = 1, .reusable = false}, SHIFT(1236), - [2252] = {.count = 1, .reusable = false}, SHIFT(649), - [2254] = {.count = 1, .reusable = false}, SHIFT(2448), - [2256] = {.count = 1, .reusable = true}, SHIFT(650), - [2258] = {.count = 1, .reusable = false}, SHIFT(648), - [2260] = {.count = 1, .reusable = true}, SHIFT(2465), - [2262] = {.count = 1, .reusable = false}, SHIFT(651), - [2264] = {.count = 1, .reusable = false}, SHIFT(2447), - [2266] = {.count = 1, .reusable = false}, SHIFT(566), - [2268] = {.count = 1, .reusable = false}, SHIFT(569), - [2270] = {.count = 1, .reusable = false}, SHIFT(567), - [2272] = {.count = 1, .reusable = true}, SHIFT(568), - [2274] = {.count = 1, .reusable = true}, SHIFT(1230), - [2276] = {.count = 1, .reusable = true}, SHIFT(2224), - [2278] = {.count = 1, .reusable = false}, SHIFT(1268), - [2280] = {.count = 1, .reusable = true}, SHIFT(2264), - [2282] = {.count = 1, .reusable = false}, SHIFT(1300), - [2284] = {.count = 1, .reusable = true}, SHIFT(582), - [2286] = {.count = 1, .reusable = true}, SHIFT(1904), - [2288] = {.count = 1, .reusable = true}, SHIFT(2459), - [2290] = {.count = 1, .reusable = true}, SHIFT(560), - [2292] = {.count = 1, .reusable = true}, SHIFT(561), - [2294] = {.count = 1, .reusable = true}, SHIFT(2542), - [2296] = {.count = 1, .reusable = true}, SHIFT(2536), - [2298] = {.count = 1, .reusable = true}, SHIFT(2544), - [2300] = {.count = 1, .reusable = true}, SHIFT(1901), - [2302] = {.count = 1, .reusable = true}, SHIFT(2545), - [2304] = {.count = 1, .reusable = true}, SHIFT(1006), - [2306] = {.count = 1, .reusable = false}, SHIFT(1012), - [2308] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(564), - [2311] = {.count = 1, .reusable = true}, SHIFT(603), - [2313] = {.count = 1, .reusable = false}, SHIFT(602), - [2315] = {.count = 1, .reusable = true}, SHIFT(606), - [2317] = {.count = 1, .reusable = false}, SHIFT(606), - [2319] = {.count = 1, .reusable = true}, SHIFT(605), - [2321] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2220), - [2324] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2605), - [2327] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2592), - [2330] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(550), - [2333] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2607), - [2336] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1262), - [2339] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2501), - [2342] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2221), - [2345] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2608), - [2348] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(577), - [2351] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2260), - [2354] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2612), - [2357] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2599), - [2360] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(553), - [2363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2613), - [2366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1294), - [2369] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2261), - [2372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2614), - [2375] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(578), - [2378] = {.count = 1, .reusable = true}, SHIFT(581), - [2380] = {.count = 1, .reusable = false}, SHIFT(609), - [2382] = {.count = 1, .reusable = false}, SHIFT(581), - [2384] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1484), - [2387] = {.count = 1, .reusable = true}, SHIFT(615), - [2389] = {.count = 1, .reusable = false}, SHIFT(681), - [2391] = {.count = 1, .reusable = true}, SHIFT(681), - [2393] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2180), - [2396] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2598), - [2399] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2585), - [2402] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(574), - [2405] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2600), - [2408] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(573), - [2411] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1230), - [2414] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2181), - [2417] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2601), - [2420] = {.count = 1, .reusable = false}, SHIFT(556), - [2422] = {.count = 1, .reusable = false}, SHIFT(557), - [2424] = {.count = 1, .reusable = true}, SHIFT(557), - [2426] = {.count = 1, .reusable = true}, SHIFT(558), - [2428] = {.count = 1, .reusable = false}, SHIFT(688), - [2430] = {.count = 1, .reusable = true}, SHIFT(688), - [2432] = {.count = 1, .reusable = false}, SHIFT(2220), - [2434] = {.count = 1, .reusable = false}, SHIFT(2605), - [2436] = {.count = 1, .reusable = false}, SHIFT(2592), - [2438] = {.count = 1, .reusable = false}, SHIFT(550), - [2440] = {.count = 1, .reusable = false}, SHIFT(2607), - [2442] = {.count = 1, .reusable = false}, SHIFT(1262), - [2444] = {.count = 1, .reusable = true}, SHIFT(2501), - [2446] = {.count = 1, .reusable = false}, SHIFT(2221), - [2448] = {.count = 1, .reusable = false}, SHIFT(2608), - [2450] = {.count = 1, .reusable = false}, SHIFT(639), - [2452] = {.count = 1, .reusable = false}, SHIFT(2260), - [2454] = {.count = 1, .reusable = false}, SHIFT(2612), - [2456] = {.count = 1, .reusable = false}, SHIFT(2599), - [2458] = {.count = 1, .reusable = false}, SHIFT(553), - [2460] = {.count = 1, .reusable = false}, SHIFT(2613), - [2462] = {.count = 1, .reusable = false}, SHIFT(1294), - [2464] = {.count = 1, .reusable = false}, SHIFT(2261), - [2466] = {.count = 1, .reusable = false}, SHIFT(2614), - [2468] = {.count = 1, .reusable = false}, SHIFT(640), - [2470] = {.count = 1, .reusable = true}, SHIFT(1472), - [2472] = {.count = 1, .reusable = false}, SHIFT(2598), - [2474] = {.count = 1, .reusable = false}, SHIFT(2585), - [2476] = {.count = 1, .reusable = false}, SHIFT(574), - [2478] = {.count = 1, .reusable = false}, SHIFT(2600), - [2480] = {.count = 1, .reusable = false}, SHIFT(573), - [2482] = {.count = 1, .reusable = false}, SHIFT(2181), - [2484] = {.count = 1, .reusable = false}, SHIFT(2601), - [2486] = {.count = 1, .reusable = false}, SHIFT(577), - [2488] = {.count = 1, .reusable = false}, SHIFT(578), - [2490] = {.count = 1, .reusable = true}, SHIFT(659), - [2492] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(646), - [2495] = {.count = 1, .reusable = true}, SHIFT(673), - [2497] = {.count = 1, .reusable = false}, SHIFT(672), - [2499] = {.count = 1, .reusable = true}, SHIFT(2463), - [2501] = {.count = 1, .reusable = true}, SHIFT(1526), - [2503] = {.count = 1, .reusable = true}, SHIFT(658), - [2505] = {.count = 1, .reusable = false}, SHIFT(658), - [2507] = {.count = 1, .reusable = true}, SHIFT(2466), - [2509] = {.count = 1, .reusable = false}, SHIFT(675), - [2511] = {.count = 1, .reusable = true}, SHIFT(2462), - [2513] = {.count = 1, .reusable = true}, SHIFT(2461), - [2515] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1529), - [2518] = {.count = 1, .reusable = false}, SHIFT(641), - [2520] = {.count = 1, .reusable = false}, SHIFT(642), - [2522] = {.count = 1, .reusable = false}, SHIFT(643), - [2524] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 5), - [2526] = {.count = 1, .reusable = true}, SHIFT(709), - [2528] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(702), - [2531] = {.count = 1, .reusable = true}, SHIFT(1474), - [2533] = {.count = 1, .reusable = true}, SHIFT(2473), - [2535] = {.count = 1, .reusable = true}, SHIFT(1569), - [2537] = {.count = 1, .reusable = true}, SHIFT(708), - [2539] = {.count = 1, .reusable = false}, SHIFT(708), - [2541] = {.count = 1, .reusable = true}, SHIFT(2475), - [2543] = {.count = 1, .reusable = false}, SHIFT(718), - [2545] = {.count = 1, .reusable = true}, SHIFT(2472), - [2547] = {.count = 1, .reusable = true}, SHIFT(2471), - [2549] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1572), - [2552] = {.count = 1, .reusable = false}, SHIFT(697), - [2554] = {.count = 1, .reusable = false}, SHIFT(698), - [2556] = {.count = 1, .reusable = false}, SHIFT(699), - [2558] = {.count = 1, .reusable = true}, SHIFT(746), - [2560] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(741), - [2563] = {.count = 1, .reusable = true}, SHIFT(745), - [2565] = {.count = 1, .reusable = false}, SHIFT(745), - [2567] = {.count = 1, .reusable = false}, SHIFT(755), - [2569] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1615), - [2572] = {.count = 1, .reusable = false}, SHIFT(736), - [2574] = {.count = 1, .reusable = false}, SHIFT(737), - [2576] = {.count = 1, .reusable = false}, SHIFT(738), - [2578] = {.count = 1, .reusable = false}, SHIFT(1612), - [2580] = {.count = 1, .reusable = true}, SHIFT(783), - [2582] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(778), - [2585] = {.count = 1, .reusable = true}, SHIFT(782), - [2587] = {.count = 1, .reusable = false}, SHIFT(792), - [2589] = {.count = 1, .reusable = false}, SHIFT(782), - [2591] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1658), - [2594] = {.count = 1, .reusable = true}, SHIFT(2304), - [2596] = {.count = 1, .reusable = false}, SHIFT(1329), - [2598] = {.count = 1, .reusable = false}, SHIFT(773), - [2600] = {.count = 1, .reusable = true}, SHIFT(774), - [2602] = {.count = 1, .reusable = false}, SHIFT(774), - [2604] = {.count = 1, .reusable = true}, SHIFT(773), - [2606] = {.count = 1, .reusable = true}, SHIFT(775), - [2608] = {.count = 1, .reusable = true}, SHIFT(820), - [2610] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(815), - [2613] = {.count = 1, .reusable = false}, SHIFT(829), - [2615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1701), - [2618] = {.count = 1, .reusable = false}, SHIFT(847), - [2620] = {.count = 1, .reusable = true}, SHIFT(848), - [2622] = {.count = 1, .reusable = false}, SHIFT(848), - [2624] = {.count = 1, .reusable = true}, SHIFT(847), - [2626] = {.count = 1, .reusable = true}, SHIFT(812), - [2628] = {.count = 1, .reusable = true}, SHIFT(857), - [2630] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(852), - [2633] = {.count = 1, .reusable = true}, SHIFT(856), - [2635] = {.count = 1, .reusable = false}, SHIFT(863), - [2637] = {.count = 1, .reusable = true}, SHIFT(2514), - [2639] = {.count = 1, .reusable = true}, SHIFT(2508), - [2641] = {.count = 1, .reusable = false}, SHIFT(856), - [2643] = {.count = 1, .reusable = true}, SHIFT(2516), - [2645] = {.count = 1, .reusable = true}, SHIFT(1741), - [2647] = {.count = 1, .reusable = true}, SHIFT(2517), - [2649] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1744), - [2652] = {.count = 1, .reusable = false}, SHIFT(879), - [2654] = {.count = 1, .reusable = false}, SHIFT(880), - [2656] = {.count = 1, .reusable = false}, SHIFT(849), - [2658] = {.count = 1, .reusable = true}, SHIFT(889), - [2660] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(884), - [2663] = {.count = 1, .reusable = true}, SHIFT(888), - [2665] = {.count = 1, .reusable = false}, SHIFT(895), - [2667] = {.count = 1, .reusable = true}, SHIFT(2521), - [2669] = {.count = 1, .reusable = true}, SHIFT(2515), - [2671] = {.count = 1, .reusable = false}, SHIFT(888), - [2673] = {.count = 1, .reusable = true}, SHIFT(2523), - [2675] = {.count = 1, .reusable = true}, SHIFT(1781), - [2677] = {.count = 1, .reusable = true}, SHIFT(2524), - [2679] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1784), - [2682] = {.count = 1, .reusable = false}, SHIFT(911), - [2684] = {.count = 1, .reusable = false}, SHIFT(912), - [2686] = {.count = 1, .reusable = false}, SHIFT(881), - [2688] = {.count = 1, .reusable = true}, SHIFT(921), - [2690] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(916), - [2693] = {.count = 1, .reusable = true}, SHIFT(920), - [2695] = {.count = 1, .reusable = false}, SHIFT(920), - [2697] = {.count = 1, .reusable = false}, SHIFT(927), - [2699] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1824), - [2702] = {.count = 1, .reusable = false}, SHIFT(943), - [2704] = {.count = 1, .reusable = true}, SHIFT(944), - [2706] = {.count = 1, .reusable = true}, SHIFT(913), - [2708] = {.count = 1, .reusable = false}, SHIFT(944), - [2710] = {.count = 1, .reusable = true}, SHIFT(953), - [2712] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(948), - [2715] = {.count = 1, .reusable = true}, SHIFT(952), - [2717] = {.count = 1, .reusable = false}, SHIFT(952), - [2719] = {.count = 1, .reusable = false}, SHIFT(959), - [2721] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1864), - [2724] = {.count = 1, .reusable = false}, SHIFT(975), - [2726] = {.count = 1, .reusable = false}, SHIFT(976), - [2728] = {.count = 1, .reusable = false}, SHIFT(945), - [2730] = {.count = 1, .reusable = false}, SHIFT(1861), - [2732] = {.count = 1, .reusable = true}, SHIFT(985), - [2734] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(980), - [2737] = {.count = 1, .reusable = true}, SHIFT(984), - [2739] = {.count = 1, .reusable = false}, SHIFT(984), - [2741] = {.count = 1, .reusable = false}, SHIFT(1023), - [2743] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1904), - [2746] = {.count = 1, .reusable = true}, SHIFT(1017), - [2748] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1012), - [2751] = {.count = 1, .reusable = true}, SHIFT(1016), - [2753] = {.count = 1, .reusable = false}, SHIFT(1016), - [2755] = {.count = 1, .reusable = false}, SHIFT(1055), - [2757] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1944), - [2760] = {.count = 1, .reusable = false}, SHIFT(1007), - [2762] = {.count = 1, .reusable = false}, SHIFT(1008), - [2764] = {.count = 1, .reusable = false}, SHIFT(977), - [2766] = {.count = 1, .reusable = true}, SHIFT(1049), - [2768] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1044), - [2771] = {.count = 1, .reusable = true}, SHIFT(1048), - [2773] = {.count = 1, .reusable = false}, SHIFT(1087), - [2775] = {.count = 1, .reusable = true}, SHIFT(2556), - [2777] = {.count = 1, .reusable = true}, SHIFT(2550), - [2779] = {.count = 1, .reusable = false}, SHIFT(1048), - [2781] = {.count = 1, .reusable = true}, SHIFT(2558), - [2783] = {.count = 1, .reusable = true}, SHIFT(1981), - [2785] = {.count = 1, .reusable = true}, SHIFT(2559), - [2787] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1984), - [2790] = {.count = 1, .reusable = false}, SHIFT(1039), - [2792] = {.count = 1, .reusable = false}, SHIFT(1040), - [2794] = {.count = 1, .reusable = false}, SHIFT(1009), - [2796] = {.count = 1, .reusable = false}, SHIFT(1941), - [2798] = {.count = 1, .reusable = true}, SHIFT(1081), - [2800] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1076), - [2803] = {.count = 1, .reusable = true}, SHIFT(1080), - [2805] = {.count = 1, .reusable = false}, SHIFT(1119), - [2807] = {.count = 1, .reusable = true}, SHIFT(2563), - [2809] = {.count = 1, .reusable = true}, SHIFT(2557), - [2811] = {.count = 1, .reusable = false}, SHIFT(1080), - [2813] = {.count = 1, .reusable = true}, SHIFT(2565), - [2815] = {.count = 1, .reusable = true}, SHIFT(2021), - [2817] = {.count = 1, .reusable = true}, SHIFT(2566), - [2819] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2024), - [2822] = {.count = 1, .reusable = false}, SHIFT(1071), - [2824] = {.count = 1, .reusable = false}, SHIFT(1072), - [2826] = {.count = 1, .reusable = false}, SHIFT(1041), - [2828] = {.count = 1, .reusable = false}, SHIFT(1981), - [2830] = {.count = 1, .reusable = true}, SHIFT(1113), - [2832] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1108), - [2835] = {.count = 1, .reusable = true}, SHIFT(1112), - [2837] = {.count = 1, .reusable = false}, SHIFT(1112), - [2839] = {.count = 1, .reusable = false}, SHIFT(1151), - [2841] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2064), - [2844] = {.count = 1, .reusable = false}, SHIFT(1103), - [2846] = {.count = 1, .reusable = false}, SHIFT(1104), - [2848] = {.count = 1, .reusable = false}, SHIFT(1073), - [2850] = {.count = 1, .reusable = false}, SHIFT(2021), - [2852] = {.count = 1, .reusable = true}, SHIFT(1145), - [2854] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1140), - [2857] = {.count = 1, .reusable = true}, SHIFT(1144), - [2859] = {.count = 1, .reusable = false}, SHIFT(1144), - [2861] = {.count = 1, .reusable = false}, SHIFT(1183), - [2863] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2104), - [2866] = {.count = 1, .reusable = false}, SHIFT(1135), - [2868] = {.count = 1, .reusable = true}, SHIFT(1136), - [2870] = {.count = 1, .reusable = true}, SHIFT(1135), - [2872] = {.count = 1, .reusable = true}, SHIFT(1105), - [2874] = {.count = 1, .reusable = true}, SHIFT(1177), - [2876] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1172), - [2879] = {.count = 1, .reusable = true}, SHIFT(1176), - [2881] = {.count = 1, .reusable = false}, SHIFT(1176), - [2883] = {.count = 1, .reusable = false}, SHIFT(1215), - [2885] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2144), - [2888] = {.count = 1, .reusable = false}, SHIFT(1167), - [2890] = {.count = 1, .reusable = true}, SHIFT(1168), - [2892] = {.count = 1, .reusable = true}, SHIFT(1137), - [2894] = {.count = 1, .reusable = false}, SHIFT(1168), - [2896] = {.count = 1, .reusable = true}, SHIFT(1209), - [2898] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1204), - [2901] = {.count = 1, .reusable = true}, SHIFT(1208), - [2903] = {.count = 1, .reusable = false}, SHIFT(1208), - [2905] = {.count = 1, .reusable = false}, SHIFT(1279), - [2907] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2184), - [2910] = {.count = 1, .reusable = false}, SHIFT(1199), - [2912] = {.count = 1, .reusable = false}, SHIFT(1200), - [2914] = {.count = 1, .reusable = false}, SHIFT(1169), - [2916] = {.count = 1, .reusable = true}, SHIFT(1241), - [2918] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1236), - [2921] = {.count = 1, .reusable = true}, SHIFT(2607), - [2923] = {.count = 1, .reusable = true}, SHIFT(2221), - [2925] = {.count = 1, .reusable = true}, SHIFT(1240), - [2927] = {.count = 1, .reusable = false}, SHIFT(1240), - [2929] = {.count = 1, .reusable = true}, SHIFT(2608), - [2931] = {.count = 1, .reusable = false}, SHIFT(1311), - [2933] = {.count = 1, .reusable = true}, SHIFT(2592), - [2935] = {.count = 1, .reusable = true}, SHIFT(2605), - [2937] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2224), - [2940] = {.count = 1, .reusable = true}, SHIFT(1273), - [2942] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1268), - [2945] = {.count = 1, .reusable = true}, SHIFT(2613), - [2947] = {.count = 1, .reusable = true}, SHIFT(2261), - [2949] = {.count = 1, .reusable = true}, SHIFT(1272), - [2951] = {.count = 1, .reusable = false}, SHIFT(1272), - [2953] = {.count = 1, .reusable = true}, SHIFT(2614), - [2955] = {.count = 1, .reusable = false}, SHIFT(1335), - [2957] = {.count = 1, .reusable = true}, SHIFT(2599), - [2959] = {.count = 1, .reusable = true}, SHIFT(2612), - [2961] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2264), - [2964] = {.count = 1, .reusable = false}, SHIFT(1263), - [2966] = {.count = 1, .reusable = false}, SHIFT(1264), - [2968] = {.count = 1, .reusable = false}, SHIFT(1201), - [2970] = {.count = 1, .reusable = true}, SHIFT(1305), - [2972] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1300), - [2975] = {.count = 1, .reusable = true}, SHIFT(2619), - [2977] = {.count = 1, .reusable = true}, SHIFT(2301), - [2979] = {.count = 1, .reusable = true}, SHIFT(1304), - [2981] = {.count = 1, .reusable = false}, SHIFT(1304), - [2983] = {.count = 1, .reusable = true}, SHIFT(2620), - [2985] = {.count = 1, .reusable = false}, SHIFT(1355), - [2987] = {.count = 1, .reusable = true}, SHIFT(2606), - [2989] = {.count = 1, .reusable = true}, SHIFT(2618), - [2991] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2304), - [2994] = {.count = 1, .reusable = false}, SHIFT(1295), - [2996] = {.count = 1, .reusable = false}, SHIFT(1296), - [2998] = {.count = 1, .reusable = false}, SHIFT(1233), - [3000] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1329), - [3003] = {.count = 1, .reusable = false}, SHIFT(1327), - [3005] = {.count = 1, .reusable = false}, SHIFT(1328), - [3007] = {.count = 1, .reusable = false}, SHIFT(1265), - [3009] = {.count = 1, .reusable = false}, SHIFT(1349), - [3011] = {.count = 1, .reusable = false}, SHIFT(1350), - [3013] = {.count = 1, .reusable = false}, SHIFT(1297), - [3015] = {.count = 1, .reusable = false}, SHIFT(2301), - [3017] = {.count = 1, .reusable = true}, SHIFT(394), - [3019] = {.count = 1, .reusable = false}, SHIFT(394), - [3021] = {.count = 1, .reusable = true}, SHIFT(404), - [3023] = {.count = 1, .reusable = true}, SHIFT(405), - [3025] = {.count = 1, .reusable = true}, SHIFT(403), - [3027] = {.count = 1, .reusable = true}, SHIFT(407), - [3029] = {.count = 1, .reusable = false}, SHIFT(412), - [3031] = {.count = 1, .reusable = false}, SHIFT(1387), - [3033] = {.count = 1, .reusable = true}, SHIFT(428), - [3035] = {.count = 1, .reusable = true}, SHIFT(431), - [3037] = {.count = 1, .reusable = true}, SHIFT(432), - [3039] = {.count = 1, .reusable = false}, SHIFT(1397), - [3041] = {.count = 1, .reusable = true}, SHIFT(1397), - [3043] = {.count = 1, .reusable = true}, SHIFT(1396), - [3045] = {.count = 1, .reusable = true}, SHIFT(436), - [3047] = {.count = 1, .reusable = false}, SHIFT(1402), - [3049] = {.count = 1, .reusable = true}, SHIFT(1402), - [3051] = {.count = 1, .reusable = true}, SHIFT(1401), - [3053] = {.count = 1, .reusable = true}, SHIFT(437), - [3055] = {.count = 1, .reusable = true}, SHIFT(2427), - [3057] = {.count = 1, .reusable = true}, SHIFT(440), - [3059] = {.count = 1, .reusable = false}, SHIFT(439), - [3061] = {.count = 1, .reusable = true}, SHIFT(441), - [3063] = {.count = 1, .reusable = true}, SHIFT(446), - [3065] = {.count = 1, .reusable = true}, SHIFT(1406), - [3067] = {.count = 1, .reusable = true}, SHIFT(448), - [3069] = {.count = 1, .reusable = false}, SHIFT(1980), - [3071] = {.count = 1, .reusable = false}, SHIFT(448), - [3073] = {.count = 1, .reusable = true}, SHIFT(1070), - [3075] = {.count = 1, .reusable = true}, SHIFT(447), - [3077] = {.count = 1, .reusable = true}, SHIFT(450), - [3079] = {.count = 1, .reusable = false}, SHIFT(450), - [3081] = {.count = 1, .reusable = false}, SHIFT(453), - [3083] = {.count = 1, .reusable = false}, SHIFT(1410), - [3085] = {.count = 1, .reusable = true}, SHIFT(454), - [3087] = {.count = 1, .reusable = true}, SHIFT(1412), - [3089] = {.count = 1, .reusable = true}, SHIFT(460), - [3091] = {.count = 1, .reusable = true}, SHIFT(463), - [3093] = {.count = 1, .reusable = false}, SHIFT(2020), - [3095] = {.count = 1, .reusable = false}, SHIFT(463), - [3097] = {.count = 1, .reusable = true}, SHIFT(1102), - [3099] = {.count = 1, .reusable = false}, SHIFT(1415), - [3101] = {.count = 1, .reusable = true}, SHIFT(1415), - [3103] = {.count = 1, .reusable = true}, SHIFT(475), - [3105] = {.count = 1, .reusable = true}, SHIFT(1414), - [3107] = {.count = 1, .reusable = true}, SHIFT(1416), - [3109] = {.count = 1, .reusable = false}, SHIFT(1419), - [3111] = {.count = 1, .reusable = true}, SHIFT(1419), - [3113] = {.count = 1, .reusable = true}, SHIFT(1418), - [3115] = {.count = 1, .reusable = true}, SHIFT(476), - [3117] = {.count = 1, .reusable = true}, SHIFT(1420), - [3119] = {.count = 1, .reusable = false}, SHIFT(1420), - [3121] = {.count = 1, .reusable = false}, SHIFT(1424), - [3123] = {.count = 1, .reusable = true}, SHIFT(1424), - [3125] = {.count = 1, .reusable = true}, SHIFT(477), - [3127] = {.count = 1, .reusable = true}, SHIFT(1423), - [3129] = {.count = 1, .reusable = false}, SHIFT(479), - [3131] = {.count = 1, .reusable = true}, SHIFT(480), - [3133] = {.count = 1, .reusable = true}, SHIFT(484), - [3135] = {.count = 1, .reusable = true}, SHIFT(486), - [3137] = {.count = 1, .reusable = true}, SHIFT(1433), - [3139] = {.count = 1, .reusable = true}, SHIFT(487), - [3141] = {.count = 1, .reusable = true}, SHIFT(1434), - [3143] = {.count = 1, .reusable = true}, SHIFT(1435), - [3145] = {.count = 1, .reusable = false}, SHIFT(488), - [3147] = {.count = 1, .reusable = false}, SHIFT(490), - [3149] = {.count = 1, .reusable = true}, SHIFT(491), - [3151] = {.count = 1, .reusable = true}, SHIFT(1437), - [3153] = {.count = 1, .reusable = false}, SHIFT(1438), - [3155] = {.count = 1, .reusable = true}, SHIFT(1438), - [3157] = {.count = 1, .reusable = true}, SHIFT(494), - [3159] = {.count = 1, .reusable = true}, SHIFT(1439), - [3161] = {.count = 1, .reusable = true}, SHIFT(1440), - [3163] = {.count = 1, .reusable = false}, SHIFT(1440), - [3165] = {.count = 1, .reusable = false}, SHIFT(1444), - [3167] = {.count = 1, .reusable = true}, SHIFT(1444), - [3169] = {.count = 1, .reusable = true}, SHIFT(495), - [3171] = {.count = 1, .reusable = true}, SHIFT(1443), - [3173] = {.count = 1, .reusable = true}, SHIFT(496), - [3175] = {.count = 1, .reusable = false}, SHIFT(1445), - [3177] = {.count = 1, .reusable = true}, SHIFT(1445), - [3179] = {.count = 1, .reusable = true}, SHIFT(497), - [3181] = {.count = 1, .reusable = true}, SHIFT(499), - [3183] = {.count = 1, .reusable = false}, SHIFT(499), - [3185] = {.count = 1, .reusable = true}, SHIFT(500), - [3187] = {.count = 1, .reusable = false}, SHIFT(500), - [3189] = {.count = 1, .reusable = false}, SHIFT(501), - [3191] = {.count = 1, .reusable = false}, SHIFT(502), - [3193] = {.count = 1, .reusable = true}, SHIFT(503), - [3195] = {.count = 1, .reusable = true}, SHIFT(506), - [3197] = {.count = 1, .reusable = true}, SHIFT(508), - [3199] = {.count = 1, .reusable = false}, SHIFT(509), - [3201] = {.count = 1, .reusable = true}, SHIFT(510), - [3203] = {.count = 1, .reusable = true}, SHIFT(512), - [3205] = {.count = 1, .reusable = false}, SHIFT(1454), - [3207] = {.count = 1, .reusable = true}, SHIFT(1454), - [3209] = {.count = 1, .reusable = true}, SHIFT(513), - [3211] = {.count = 1, .reusable = false}, SHIFT(1455), - [3213] = {.count = 1, .reusable = true}, SHIFT(1455), - [3215] = {.count = 1, .reusable = true}, SHIFT(514), - [3217] = {.count = 1, .reusable = true}, SHIFT(515), - [3219] = {.count = 1, .reusable = true}, SHIFT(516), - [3221] = {.count = 1, .reusable = false}, SHIFT(517), - [3223] = {.count = 1, .reusable = true}, SHIFT(517), - [3225] = {.count = 1, .reusable = false}, SHIFT(518), - [3227] = {.count = 1, .reusable = true}, SHIFT(518), - [3229] = {.count = 1, .reusable = true}, SHIFT(1459), - [3231] = {.count = 1, .reusable = true}, SHIFT(523), - [3233] = {.count = 1, .reusable = true}, SHIFT(524), - [3235] = {.count = 1, .reusable = true}, SHIFT(525), - [3237] = {.count = 1, .reusable = true}, SHIFT(526), - [3239] = {.count = 1, .reusable = true}, SHIFT(527), - [3241] = {.count = 1, .reusable = true}, SHIFT(1463), - [3243] = {.count = 1, .reusable = true}, SHIFT(529), - [3245] = {.count = 1, .reusable = true}, SHIFT(530), - [3247] = {.count = 1, .reusable = true}, SHIFT(1465), - [3249] = {.count = 1, .reusable = true}, SHIFT(1467), - [3251] = {.count = 1, .reusable = true}, SHIFT(618), - [3253] = {.count = 1, .reusable = false}, SHIFT(618), - [3255] = {.count = 1, .reusable = true}, SHIFT(625), - [3257] = {.count = 1, .reusable = false}, SHIFT(625), - [3259] = {.count = 1, .reusable = false}, SHIFT(1247), - [3261] = {.count = 1, .reusable = false}, SHIFT(991), - [3263] = {.count = 1, .reusable = false}, SHIFT(1369), - [3265] = {.count = 1, .reusable = true}, SHIFT(547), - [3267] = {.count = 1, .reusable = false}, SHIFT(547), - [3269] = {.count = 1, .reusable = true}, SHIFT(556), - [3271] = {.count = 1, .reusable = false}, SHIFT(563), - [3273] = {.count = 1, .reusable = false}, SHIFT(1489), - [3275] = {.count = 1, .reusable = true}, SHIFT(579), - [3277] = {.count = 1, .reusable = true}, SHIFT(580), - [3279] = {.count = 1, .reusable = false}, SHIFT(1494), - [3281] = {.count = 1, .reusable = true}, SHIFT(1494), - [3283] = {.count = 1, .reusable = true}, SHIFT(1493), - [3285] = {.count = 1, .reusable = true}, SHIFT(584), - [3287] = {.count = 1, .reusable = false}, SHIFT(1499), - [3289] = {.count = 1, .reusable = true}, SHIFT(1499), - [3291] = {.count = 1, .reusable = true}, SHIFT(1498), - [3293] = {.count = 1, .reusable = true}, SHIFT(585), - [3295] = {.count = 1, .reusable = true}, SHIFT(1501), - [3297] = {.count = 1, .reusable = true}, SHIFT(591), - [3299] = {.count = 1, .reusable = false}, SHIFT(591), - [3301] = {.count = 1, .reusable = true}, SHIFT(634), - [3303] = {.count = 1, .reusable = true}, SHIFT(590), - [3305] = {.count = 1, .reusable = true}, SHIFT(593), - [3307] = {.count = 1, .reusable = false}, SHIFT(593), - [3309] = {.count = 1, .reusable = false}, SHIFT(596), - [3311] = {.count = 1, .reusable = false}, SHIFT(1502), - [3313] = {.count = 1, .reusable = true}, SHIFT(597), - [3315] = {.count = 1, .reusable = false}, SHIFT(1504), - [3317] = {.count = 1, .reusable = true}, SHIFT(1504), - [3319] = {.count = 1, .reusable = true}, SHIFT(610), - [3321] = {.count = 1, .reusable = true}, SHIFT(1503), - [3323] = {.count = 1, .reusable = true}, SHIFT(1505), - [3325] = {.count = 1, .reusable = false}, SHIFT(1508), - [3327] = {.count = 1, .reusable = true}, SHIFT(1508), - [3329] = {.count = 1, .reusable = true}, SHIFT(1507), - [3331] = {.count = 1, .reusable = true}, SHIFT(611), - [3333] = {.count = 1, .reusable = true}, SHIFT(1509), - [3335] = {.count = 1, .reusable = false}, SHIFT(1509), - [3337] = {.count = 1, .reusable = false}, SHIFT(1513), - [3339] = {.count = 1, .reusable = true}, SHIFT(1513), - [3341] = {.count = 1, .reusable = true}, SHIFT(612), - [3343] = {.count = 1, .reusable = true}, SHIFT(1512), - [3345] = {.count = 1, .reusable = true}, SHIFT(613), - [3347] = {.count = 1, .reusable = true}, SHIFT(616), - [3349] = {.count = 1, .reusable = false}, SHIFT(617), - [3351] = {.count = 1, .reusable = false}, SHIFT(1515), - [3353] = {.count = 1, .reusable = true}, SHIFT(1515), - [3355] = {.count = 1, .reusable = true}, SHIFT(620), - [3357] = {.count = 1, .reusable = true}, SHIFT(1516), - [3359] = {.count = 1, .reusable = true}, SHIFT(1517), - [3361] = {.count = 1, .reusable = false}, SHIFT(1517), - [3363] = {.count = 1, .reusable = false}, SHIFT(1521), - [3365] = {.count = 1, .reusable = true}, SHIFT(1521), - [3367] = {.count = 1, .reusable = true}, SHIFT(621), - [3369] = {.count = 1, .reusable = true}, SHIFT(1520), - [3371] = {.count = 1, .reusable = true}, SHIFT(622), - [3373] = {.count = 1, .reusable = false}, SHIFT(1522), - [3375] = {.count = 1, .reusable = true}, SHIFT(1522), - [3377] = {.count = 1, .reusable = true}, SHIFT(623), - [3379] = {.count = 1, .reusable = true}, SHIFT(624), - [3381] = {.count = 1, .reusable = true}, SHIFT(626), - [3383] = {.count = 1, .reusable = false}, SHIFT(1523), - [3385] = {.count = 1, .reusable = true}, SHIFT(1523), - [3387] = {.count = 1, .reusable = true}, SHIFT(627), - [3389] = {.count = 1, .reusable = false}, SHIFT(1524), - [3391] = {.count = 1, .reusable = true}, SHIFT(1524), - [3393] = {.count = 1, .reusable = true}, SHIFT(628), - [3395] = {.count = 1, .reusable = true}, SHIFT(629), - [3397] = {.count = 1, .reusable = true}, SHIFT(630), - [3399] = {.count = 1, .reusable = true}, SHIFT(631), - [3401] = {.count = 1, .reusable = true}, SHIFT(642), - [3403] = {.count = 1, .reusable = true}, SHIFT(641), - [3405] = {.count = 1, .reusable = true}, SHIFT(643), - [3407] = {.count = 1, .reusable = false}, SHIFT(1533), - [3409] = {.count = 1, .reusable = false}, SHIFT(645), - [3411] = {.count = 1, .reusable = true}, SHIFT(656), - [3413] = {.count = 1, .reusable = true}, SHIFT(657), - [3415] = {.count = 1, .reusable = false}, SHIFT(1538), - [3417] = {.count = 1, .reusable = true}, SHIFT(1538), - [3419] = {.count = 1, .reusable = true}, SHIFT(1537), - [3421] = {.count = 1, .reusable = true}, SHIFT(661), - [3423] = {.count = 1, .reusable = false}, SHIFT(1543), - [3425] = {.count = 1, .reusable = true}, SHIFT(1543), - [3427] = {.count = 1, .reusable = true}, SHIFT(1542), - [3429] = {.count = 1, .reusable = true}, SHIFT(662), - [3431] = {.count = 1, .reusable = true}, SHIFT(1544), - [3433] = {.count = 1, .reusable = true}, SHIFT(664), - [3435] = {.count = 1, .reusable = false}, SHIFT(664), - [3437] = {.count = 1, .reusable = true}, SHIFT(663), - [3439] = {.count = 1, .reusable = false}, SHIFT(666), - [3441] = {.count = 1, .reusable = false}, SHIFT(1545), - [3443] = {.count = 1, .reusable = true}, SHIFT(667), - [3445] = {.count = 1, .reusable = false}, SHIFT(1547), - [3447] = {.count = 1, .reusable = true}, SHIFT(1547), - [3449] = {.count = 1, .reusable = true}, SHIFT(676), - [3451] = {.count = 1, .reusable = true}, SHIFT(1546), - [3453] = {.count = 1, .reusable = true}, SHIFT(1548), - [3455] = {.count = 1, .reusable = false}, SHIFT(1551), - [3457] = {.count = 1, .reusable = true}, SHIFT(1551), - [3459] = {.count = 1, .reusable = true}, SHIFT(1550), - [3461] = {.count = 1, .reusable = true}, SHIFT(677), - [3463] = {.count = 1, .reusable = true}, SHIFT(1552), - [3465] = {.count = 1, .reusable = false}, SHIFT(1552), - [3467] = {.count = 1, .reusable = false}, SHIFT(1556), - [3469] = {.count = 1, .reusable = true}, SHIFT(1556), - [3471] = {.count = 1, .reusable = true}, SHIFT(678), - [3473] = {.count = 1, .reusable = true}, SHIFT(1555), - [3475] = {.count = 1, .reusable = true}, SHIFT(679), - [3477] = {.count = 1, .reusable = false}, SHIFT(680), - [3479] = {.count = 1, .reusable = false}, SHIFT(1558), - [3481] = {.count = 1, .reusable = true}, SHIFT(1558), - [3483] = {.count = 1, .reusable = true}, SHIFT(683), - [3485] = {.count = 1, .reusable = true}, SHIFT(1559), - [3487] = {.count = 1, .reusable = true}, SHIFT(1560), - [3489] = {.count = 1, .reusable = false}, SHIFT(1560), - [3491] = {.count = 1, .reusable = false}, SHIFT(1564), - [3493] = {.count = 1, .reusable = true}, SHIFT(1564), - [3495] = {.count = 1, .reusable = true}, SHIFT(684), - [3497] = {.count = 1, .reusable = true}, SHIFT(1563), - [3499] = {.count = 1, .reusable = true}, SHIFT(685), - [3501] = {.count = 1, .reusable = false}, SHIFT(1565), - [3503] = {.count = 1, .reusable = true}, SHIFT(1565), - [3505] = {.count = 1, .reusable = true}, SHIFT(686), - [3507] = {.count = 1, .reusable = true}, SHIFT(687), - [3509] = {.count = 1, .reusable = true}, SHIFT(689), - [3511] = {.count = 1, .reusable = false}, SHIFT(1566), - [3513] = {.count = 1, .reusable = true}, SHIFT(1566), - [3515] = {.count = 1, .reusable = true}, SHIFT(690), - [3517] = {.count = 1, .reusable = false}, SHIFT(1567), - [3519] = {.count = 1, .reusable = true}, SHIFT(1567), - [3521] = {.count = 1, .reusable = true}, SHIFT(691), - [3523] = {.count = 1, .reusable = true}, SHIFT(692), - [3525] = {.count = 1, .reusable = true}, SHIFT(693), - [3527] = {.count = 1, .reusable = true}, SHIFT(694), - [3529] = {.count = 1, .reusable = true}, SHIFT(698), - [3531] = {.count = 1, .reusable = true}, SHIFT(697), - [3533] = {.count = 1, .reusable = true}, SHIFT(699), - [3535] = {.count = 1, .reusable = false}, SHIFT(1576), - [3537] = {.count = 1, .reusable = false}, SHIFT(701), - [3539] = {.count = 1, .reusable = true}, SHIFT(706), - [3541] = {.count = 1, .reusable = true}, SHIFT(707), - [3543] = {.count = 1, .reusable = false}, SHIFT(1581), - [3545] = {.count = 1, .reusable = true}, SHIFT(1581), - [3547] = {.count = 1, .reusable = true}, SHIFT(1580), - [3549] = {.count = 1, .reusable = true}, SHIFT(711), - [3551] = {.count = 1, .reusable = false}, SHIFT(1586), - [3553] = {.count = 1, .reusable = true}, SHIFT(1586), - [3555] = {.count = 1, .reusable = true}, SHIFT(1585), - [3557] = {.count = 1, .reusable = true}, SHIFT(712), - [3559] = {.count = 1, .reusable = true}, SHIFT(1587), - [3561] = {.count = 1, .reusable = true}, SHIFT(714), - [3563] = {.count = 1, .reusable = false}, SHIFT(714), - [3565] = {.count = 1, .reusable = true}, SHIFT(846), - [3567] = {.count = 1, .reusable = true}, SHIFT(713), - [3569] = {.count = 1, .reusable = false}, SHIFT(716), - [3571] = {.count = 1, .reusable = false}, SHIFT(1588), - [3573] = {.count = 1, .reusable = true}, SHIFT(717), - [3575] = {.count = 1, .reusable = false}, SHIFT(1590), - [3577] = {.count = 1, .reusable = true}, SHIFT(1590), - [3579] = {.count = 1, .reusable = true}, SHIFT(719), - [3581] = {.count = 1, .reusable = true}, SHIFT(1589), - [3583] = {.count = 1, .reusable = true}, SHIFT(1591), - [3585] = {.count = 1, .reusable = false}, SHIFT(1594), - [3587] = {.count = 1, .reusable = true}, SHIFT(1594), - [3589] = {.count = 1, .reusable = true}, SHIFT(1593), - [3591] = {.count = 1, .reusable = true}, SHIFT(720), - [3593] = {.count = 1, .reusable = true}, SHIFT(1595), - [3595] = {.count = 1, .reusable = false}, SHIFT(1595), - [3597] = {.count = 1, .reusable = false}, SHIFT(1599), - [3599] = {.count = 1, .reusable = true}, SHIFT(1599), - [3601] = {.count = 1, .reusable = true}, SHIFT(721), - [3603] = {.count = 1, .reusable = true}, SHIFT(1598), - [3605] = {.count = 1, .reusable = true}, SHIFT(722), - [3607] = {.count = 1, .reusable = false}, SHIFT(723), - [3609] = {.count = 1, .reusable = false}, SHIFT(1601), - [3611] = {.count = 1, .reusable = true}, SHIFT(1601), - [3613] = {.count = 1, .reusable = true}, SHIFT(724), - [3615] = {.count = 1, .reusable = true}, SHIFT(1602), - [3617] = {.count = 1, .reusable = true}, SHIFT(1603), - [3619] = {.count = 1, .reusable = false}, SHIFT(1603), - [3621] = {.count = 1, .reusable = false}, SHIFT(1607), - [3623] = {.count = 1, .reusable = true}, SHIFT(1607), - [3625] = {.count = 1, .reusable = true}, SHIFT(725), - [3627] = {.count = 1, .reusable = true}, SHIFT(1606), - [3629] = {.count = 1, .reusable = true}, SHIFT(726), - [3631] = {.count = 1, .reusable = false}, SHIFT(1608), - [3633] = {.count = 1, .reusable = true}, SHIFT(1608), - [3635] = {.count = 1, .reusable = true}, SHIFT(727), - [3637] = {.count = 1, .reusable = true}, SHIFT(728), - [3639] = {.count = 1, .reusable = true}, SHIFT(729), - [3641] = {.count = 1, .reusable = false}, SHIFT(1609), - [3643] = {.count = 1, .reusable = true}, SHIFT(1609), - [3645] = {.count = 1, .reusable = true}, SHIFT(730), - [3647] = {.count = 1, .reusable = false}, SHIFT(1610), - [3649] = {.count = 1, .reusable = true}, SHIFT(1610), - [3651] = {.count = 1, .reusable = true}, SHIFT(731), - [3653] = {.count = 1, .reusable = true}, SHIFT(732), - [3655] = {.count = 1, .reusable = true}, SHIFT(733), - [3657] = {.count = 1, .reusable = true}, SHIFT(734), - [3659] = {.count = 1, .reusable = true}, SHIFT(737), - [3661] = {.count = 1, .reusable = true}, SHIFT(738), - [3663] = {.count = 1, .reusable = true}, SHIFT(736), - [3665] = {.count = 1, .reusable = false}, SHIFT(740), - [3667] = {.count = 1, .reusable = false}, SHIFT(1619), - [3669] = {.count = 1, .reusable = true}, SHIFT(743), - [3671] = {.count = 1, .reusable = true}, SHIFT(744), - [3673] = {.count = 1, .reusable = false}, SHIFT(1624), - [3675] = {.count = 1, .reusable = true}, SHIFT(1624), - [3677] = {.count = 1, .reusable = true}, SHIFT(1623), - [3679] = {.count = 1, .reusable = true}, SHIFT(748), - [3681] = {.count = 1, .reusable = false}, SHIFT(1629), - [3683] = {.count = 1, .reusable = true}, SHIFT(1629), - [3685] = {.count = 1, .reusable = true}, SHIFT(1628), - [3687] = {.count = 1, .reusable = true}, SHIFT(749), - [3689] = {.count = 1, .reusable = true}, SHIFT(1630), - [3691] = {.count = 1, .reusable = true}, SHIFT(751), - [3693] = {.count = 1, .reusable = false}, SHIFT(751), - [3695] = {.count = 1, .reusable = true}, SHIFT(2642), - [3697] = {.count = 1, .reusable = true}, SHIFT(750), - [3699] = {.count = 1, .reusable = false}, SHIFT(753), - [3701] = {.count = 1, .reusable = false}, SHIFT(1631), - [3703] = {.count = 1, .reusable = true}, SHIFT(754), - [3705] = {.count = 1, .reusable = false}, SHIFT(1633), - [3707] = {.count = 1, .reusable = true}, SHIFT(1633), - [3709] = {.count = 1, .reusable = true}, SHIFT(756), - [3711] = {.count = 1, .reusable = true}, SHIFT(1632), - [3713] = {.count = 1, .reusable = true}, SHIFT(1634), - [3715] = {.count = 1, .reusable = false}, SHIFT(1637), - [3717] = {.count = 1, .reusable = true}, SHIFT(1637), - [3719] = {.count = 1, .reusable = true}, SHIFT(1636), - [3721] = {.count = 1, .reusable = true}, SHIFT(757), - [3723] = {.count = 1, .reusable = true}, SHIFT(1638), - [3725] = {.count = 1, .reusable = false}, SHIFT(1638), - [3727] = {.count = 1, .reusable = false}, SHIFT(1642), - [3729] = {.count = 1, .reusable = true}, SHIFT(1642), - [3731] = {.count = 1, .reusable = true}, SHIFT(758), - [3733] = {.count = 1, .reusable = true}, SHIFT(1641), - [3735] = {.count = 1, .reusable = true}, SHIFT(759), - [3737] = {.count = 1, .reusable = false}, SHIFT(760), - [3739] = {.count = 1, .reusable = false}, SHIFT(1644), - [3741] = {.count = 1, .reusable = true}, SHIFT(1644), - [3743] = {.count = 1, .reusable = true}, SHIFT(761), - [3745] = {.count = 1, .reusable = true}, SHIFT(1645), - [3747] = {.count = 1, .reusable = true}, SHIFT(1646), - [3749] = {.count = 1, .reusable = false}, SHIFT(1646), - [3751] = {.count = 1, .reusable = false}, SHIFT(1650), - [3753] = {.count = 1, .reusable = true}, SHIFT(1650), - [3755] = {.count = 1, .reusable = true}, SHIFT(762), - [3757] = {.count = 1, .reusable = true}, SHIFT(1649), - [3759] = {.count = 1, .reusable = true}, SHIFT(763), - [3761] = {.count = 1, .reusable = false}, SHIFT(1651), - [3763] = {.count = 1, .reusable = true}, SHIFT(1651), - [3765] = {.count = 1, .reusable = true}, SHIFT(764), - [3767] = {.count = 1, .reusable = true}, SHIFT(765), - [3769] = {.count = 1, .reusable = true}, SHIFT(766), - [3771] = {.count = 1, .reusable = false}, SHIFT(1652), - [3773] = {.count = 1, .reusable = true}, SHIFT(1652), - [3775] = {.count = 1, .reusable = true}, SHIFT(767), - [3777] = {.count = 1, .reusable = false}, SHIFT(1653), - [3779] = {.count = 1, .reusable = true}, SHIFT(1653), - [3781] = {.count = 1, .reusable = true}, SHIFT(768), - [3783] = {.count = 1, .reusable = true}, SHIFT(769), - [3785] = {.count = 1, .reusable = true}, SHIFT(770), - [3787] = {.count = 1, .reusable = true}, SHIFT(771), - [3789] = {.count = 1, .reusable = false}, SHIFT(777), - [3791] = {.count = 1, .reusable = false}, SHIFT(1662), - [3793] = {.count = 1, .reusable = true}, SHIFT(780), - [3795] = {.count = 1, .reusable = true}, SHIFT(781), - [3797] = {.count = 1, .reusable = false}, SHIFT(1667), - [3799] = {.count = 1, .reusable = true}, SHIFT(1667), - [3801] = {.count = 1, .reusable = true}, SHIFT(1666), - [3803] = {.count = 1, .reusable = true}, SHIFT(785), - [3805] = {.count = 1, .reusable = false}, SHIFT(1672), - [3807] = {.count = 1, .reusable = true}, SHIFT(1672), - [3809] = {.count = 1, .reusable = true}, SHIFT(1671), - [3811] = {.count = 1, .reusable = true}, SHIFT(786), - [3813] = {.count = 1, .reusable = true}, SHIFT(1673), - [3815] = {.count = 1, .reusable = true}, SHIFT(788), - [3817] = {.count = 1, .reusable = false}, SHIFT(2300), - [3819] = {.count = 1, .reusable = false}, SHIFT(788), - [3821] = {.count = 1, .reusable = true}, SHIFT(1326), - [3823] = {.count = 1, .reusable = true}, SHIFT(787), - [3825] = {.count = 1, .reusable = false}, SHIFT(790), - [3827] = {.count = 1, .reusable = false}, SHIFT(1674), - [3829] = {.count = 1, .reusable = true}, SHIFT(791), - [3831] = {.count = 1, .reusable = false}, SHIFT(1676), - [3833] = {.count = 1, .reusable = true}, SHIFT(1676), - [3835] = {.count = 1, .reusable = true}, SHIFT(793), - [3837] = {.count = 1, .reusable = true}, SHIFT(1675), - [3839] = {.count = 1, .reusable = true}, SHIFT(1677), - [3841] = {.count = 1, .reusable = false}, SHIFT(1680), - [3843] = {.count = 1, .reusable = true}, SHIFT(1680), - [3845] = {.count = 1, .reusable = true}, SHIFT(1679), - [3847] = {.count = 1, .reusable = true}, SHIFT(794), - [3849] = {.count = 1, .reusable = true}, SHIFT(1681), - [3851] = {.count = 1, .reusable = false}, SHIFT(1681), - [3853] = {.count = 1, .reusable = false}, SHIFT(1685), - [3855] = {.count = 1, .reusable = true}, SHIFT(1685), - [3857] = {.count = 1, .reusable = true}, SHIFT(795), - [3859] = {.count = 1, .reusable = true}, SHIFT(1684), - [3861] = {.count = 1, .reusable = true}, SHIFT(796), - [3863] = {.count = 1, .reusable = false}, SHIFT(797), - [3865] = {.count = 1, .reusable = false}, SHIFT(1687), - [3867] = {.count = 1, .reusable = true}, SHIFT(1687), - [3869] = {.count = 1, .reusable = true}, SHIFT(798), - [3871] = {.count = 1, .reusable = true}, SHIFT(1688), - [3873] = {.count = 1, .reusable = true}, SHIFT(1689), - [3875] = {.count = 1, .reusable = false}, SHIFT(1689), - [3877] = {.count = 1, .reusable = false}, SHIFT(1693), - [3879] = {.count = 1, .reusable = true}, SHIFT(1693), - [3881] = {.count = 1, .reusable = true}, SHIFT(799), - [3883] = {.count = 1, .reusable = true}, SHIFT(1692), - [3885] = {.count = 1, .reusable = true}, SHIFT(800), - [3887] = {.count = 1, .reusable = false}, SHIFT(1694), - [3889] = {.count = 1, .reusable = true}, SHIFT(1694), - [3891] = {.count = 1, .reusable = true}, SHIFT(801), - [3893] = {.count = 1, .reusable = true}, SHIFT(802), - [3895] = {.count = 1, .reusable = true}, SHIFT(803), - [3897] = {.count = 1, .reusable = false}, SHIFT(1695), - [3899] = {.count = 1, .reusable = true}, SHIFT(1695), - [3901] = {.count = 1, .reusable = true}, SHIFT(804), - [3903] = {.count = 1, .reusable = false}, SHIFT(1696), - [3905] = {.count = 1, .reusable = true}, SHIFT(1696), - [3907] = {.count = 1, .reusable = true}, SHIFT(805), - [3909] = {.count = 1, .reusable = true}, SHIFT(806), - [3911] = {.count = 1, .reusable = true}, SHIFT(807), - [3913] = {.count = 1, .reusable = true}, SHIFT(808), - [3915] = {.count = 1, .reusable = false}, SHIFT(814), - [3917] = {.count = 1, .reusable = false}, SHIFT(1705), - [3919] = {.count = 1, .reusable = true}, SHIFT(817), - [3921] = {.count = 1, .reusable = true}, SHIFT(818), - [3923] = {.count = 1, .reusable = false}, SHIFT(1710), - [3925] = {.count = 1, .reusable = true}, SHIFT(1710), - [3927] = {.count = 1, .reusable = true}, SHIFT(1709), - [3929] = {.count = 1, .reusable = true}, SHIFT(822), - [3931] = {.count = 1, .reusable = false}, SHIFT(1715), - [3933] = {.count = 1, .reusable = true}, SHIFT(1715), - [3935] = {.count = 1, .reusable = true}, SHIFT(1714), - [3937] = {.count = 1, .reusable = true}, SHIFT(823), - [3939] = {.count = 1, .reusable = true}, SHIFT(1716), - [3941] = {.count = 1, .reusable = true}, SHIFT(825), - [3943] = {.count = 1, .reusable = false}, SHIFT(825), - [3945] = {.count = 1, .reusable = true}, SHIFT(1262), - [3947] = {.count = 1, .reusable = true}, SHIFT(824), - [3949] = {.count = 1, .reusable = false}, SHIFT(827), - [3951] = {.count = 1, .reusable = false}, SHIFT(1717), - [3953] = {.count = 1, .reusable = true}, SHIFT(828), - [3955] = {.count = 1, .reusable = false}, SHIFT(1719), - [3957] = {.count = 1, .reusable = true}, SHIFT(1719), - [3959] = {.count = 1, .reusable = true}, SHIFT(830), - [3961] = {.count = 1, .reusable = true}, SHIFT(1718), - [3963] = {.count = 1, .reusable = true}, SHIFT(1720), - [3965] = {.count = 1, .reusable = false}, SHIFT(1723), - [3967] = {.count = 1, .reusable = true}, SHIFT(1723), - [3969] = {.count = 1, .reusable = true}, SHIFT(1722), - [3971] = {.count = 1, .reusable = true}, SHIFT(831), - [3973] = {.count = 1, .reusable = true}, SHIFT(1724), - [3975] = {.count = 1, .reusable = false}, SHIFT(1724), - [3977] = {.count = 1, .reusable = false}, SHIFT(1728), - [3979] = {.count = 1, .reusable = true}, SHIFT(1728), - [3981] = {.count = 1, .reusable = true}, SHIFT(832), - [3983] = {.count = 1, .reusable = true}, SHIFT(1727), - [3985] = {.count = 1, .reusable = true}, SHIFT(833), - [3987] = {.count = 1, .reusable = false}, SHIFT(834), - [3989] = {.count = 1, .reusable = false}, SHIFT(1730), - [3991] = {.count = 1, .reusable = true}, SHIFT(1730), - [3993] = {.count = 1, .reusable = true}, SHIFT(835), - [3995] = {.count = 1, .reusable = true}, SHIFT(1731), - [3997] = {.count = 1, .reusable = true}, SHIFT(1732), - [3999] = {.count = 1, .reusable = false}, SHIFT(1732), - [4001] = {.count = 1, .reusable = false}, SHIFT(1736), - [4003] = {.count = 1, .reusable = true}, SHIFT(1736), - [4005] = {.count = 1, .reusable = true}, SHIFT(836), - [4007] = {.count = 1, .reusable = true}, SHIFT(1735), - [4009] = {.count = 1, .reusable = true}, SHIFT(837), - [4011] = {.count = 1, .reusable = false}, SHIFT(1737), - [4013] = {.count = 1, .reusable = true}, SHIFT(1737), - [4015] = {.count = 1, .reusable = true}, SHIFT(838), - [4017] = {.count = 1, .reusable = true}, SHIFT(839), - [4019] = {.count = 1, .reusable = true}, SHIFT(840), - [4021] = {.count = 1, .reusable = false}, SHIFT(1738), - [4023] = {.count = 1, .reusable = true}, SHIFT(1738), - [4025] = {.count = 1, .reusable = true}, SHIFT(841), - [4027] = {.count = 1, .reusable = false}, SHIFT(1739), - [4029] = {.count = 1, .reusable = true}, SHIFT(1739), - [4031] = {.count = 1, .reusable = true}, SHIFT(842), - [4033] = {.count = 1, .reusable = true}, SHIFT(843), - [4035] = {.count = 1, .reusable = true}, SHIFT(844), - [4037] = {.count = 1, .reusable = true}, SHIFT(845), - [4039] = {.count = 1, .reusable = true}, SHIFT(880), - [4041] = {.count = 1, .reusable = true}, SHIFT(849), - [4043] = {.count = 1, .reusable = true}, SHIFT(879), - [4045] = {.count = 1, .reusable = false}, SHIFT(851), - [4047] = {.count = 1, .reusable = false}, SHIFT(1747), - [4049] = {.count = 1, .reusable = true}, SHIFT(854), - [4051] = {.count = 1, .reusable = true}, SHIFT(855), - [4053] = {.count = 1, .reusable = false}, SHIFT(1752), - [4055] = {.count = 1, .reusable = true}, SHIFT(1752), - [4057] = {.count = 1, .reusable = true}, SHIFT(1751), - [4059] = {.count = 1, .reusable = true}, SHIFT(859), - [4061] = {.count = 1, .reusable = false}, SHIFT(1757), - [4063] = {.count = 1, .reusable = true}, SHIFT(1757), - [4065] = {.count = 1, .reusable = true}, SHIFT(1756), - [4067] = {.count = 1, .reusable = true}, SHIFT(860), - [4069] = {.count = 1, .reusable = false}, SHIFT(861), - [4071] = {.count = 1, .reusable = false}, SHIFT(1758), - [4073] = {.count = 1, .reusable = true}, SHIFT(862), - [4075] = {.count = 1, .reusable = false}, SHIFT(1760), - [4077] = {.count = 1, .reusable = true}, SHIFT(1760), - [4079] = {.count = 1, .reusable = true}, SHIFT(864), - [4081] = {.count = 1, .reusable = true}, SHIFT(1759), - [4083] = {.count = 1, .reusable = true}, SHIFT(1761), - [4085] = {.count = 1, .reusable = false}, SHIFT(1764), - [4087] = {.count = 1, .reusable = true}, SHIFT(1764), - [4089] = {.count = 1, .reusable = true}, SHIFT(1763), - [4091] = {.count = 1, .reusable = true}, SHIFT(865), - [4093] = {.count = 1, .reusable = true}, SHIFT(1765), - [4095] = {.count = 1, .reusable = false}, SHIFT(1765), - [4097] = {.count = 1, .reusable = false}, SHIFT(1769), - [4099] = {.count = 1, .reusable = true}, SHIFT(1769), - [4101] = {.count = 1, .reusable = true}, SHIFT(866), - [4103] = {.count = 1, .reusable = true}, SHIFT(1768), - [4105] = {.count = 1, .reusable = false}, SHIFT(867), - [4107] = {.count = 1, .reusable = false}, SHIFT(1770), - [4109] = {.count = 1, .reusable = true}, SHIFT(1770), - [4111] = {.count = 1, .reusable = true}, SHIFT(868), - [4113] = {.count = 1, .reusable = true}, SHIFT(1771), - [4115] = {.count = 1, .reusable = true}, SHIFT(1772), - [4117] = {.count = 1, .reusable = false}, SHIFT(1772), - [4119] = {.count = 1, .reusable = false}, SHIFT(1776), - [4121] = {.count = 1, .reusable = true}, SHIFT(1776), - [4123] = {.count = 1, .reusable = true}, SHIFT(869), - [4125] = {.count = 1, .reusable = true}, SHIFT(1775), - [4127] = {.count = 1, .reusable = true}, SHIFT(870), - [4129] = {.count = 1, .reusable = false}, SHIFT(1777), - [4131] = {.count = 1, .reusable = true}, SHIFT(1777), - [4133] = {.count = 1, .reusable = true}, SHIFT(871), - [4135] = {.count = 1, .reusable = true}, SHIFT(872), - [4137] = {.count = 1, .reusable = false}, SHIFT(1778), - [4139] = {.count = 1, .reusable = true}, SHIFT(1778), - [4141] = {.count = 1, .reusable = true}, SHIFT(873), - [4143] = {.count = 1, .reusable = false}, SHIFT(1779), - [4145] = {.count = 1, .reusable = true}, SHIFT(1779), - [4147] = {.count = 1, .reusable = true}, SHIFT(874), - [4149] = {.count = 1, .reusable = true}, SHIFT(875), - [4151] = {.count = 1, .reusable = true}, SHIFT(876), - [4153] = {.count = 1, .reusable = true}, SHIFT(877), - [4155] = {.count = 1, .reusable = true}, SHIFT(912), - [4157] = {.count = 1, .reusable = true}, SHIFT(881), - [4159] = {.count = 1, .reusable = true}, SHIFT(911), - [4161] = {.count = 1, .reusable = false}, SHIFT(883), - [4163] = {.count = 1, .reusable = false}, SHIFT(1787), - [4165] = {.count = 1, .reusable = true}, SHIFT(886), - [4167] = {.count = 1, .reusable = true}, SHIFT(887), - [4169] = {.count = 1, .reusable = false}, SHIFT(1792), - [4171] = {.count = 1, .reusable = true}, SHIFT(1792), - [4173] = {.count = 1, .reusable = true}, SHIFT(1791), - [4175] = {.count = 1, .reusable = true}, SHIFT(891), - [4177] = {.count = 1, .reusable = false}, SHIFT(1797), - [4179] = {.count = 1, .reusable = true}, SHIFT(1797), - [4181] = {.count = 1, .reusable = true}, SHIFT(1796), - [4183] = {.count = 1, .reusable = true}, SHIFT(892), - [4185] = {.count = 1, .reusable = false}, SHIFT(893), - [4187] = {.count = 1, .reusable = false}, SHIFT(1798), - [4189] = {.count = 1, .reusable = true}, SHIFT(894), - [4191] = {.count = 1, .reusable = false}, SHIFT(1800), - [4193] = {.count = 1, .reusable = true}, SHIFT(1800), - [4195] = {.count = 1, .reusable = true}, SHIFT(896), - [4197] = {.count = 1, .reusable = true}, SHIFT(1799), - [4199] = {.count = 1, .reusable = true}, SHIFT(1801), - [4201] = {.count = 1, .reusable = false}, SHIFT(1804), - [4203] = {.count = 1, .reusable = true}, SHIFT(1804), - [4205] = {.count = 1, .reusable = true}, SHIFT(1803), - [4207] = {.count = 1, .reusable = true}, SHIFT(897), - [4209] = {.count = 1, .reusable = true}, SHIFT(1805), - [4211] = {.count = 1, .reusable = false}, SHIFT(1805), - [4213] = {.count = 1, .reusable = false}, SHIFT(1809), - [4215] = {.count = 1, .reusable = true}, SHIFT(1809), - [4217] = {.count = 1, .reusable = true}, SHIFT(898), - [4219] = {.count = 1, .reusable = true}, SHIFT(1808), - [4221] = {.count = 1, .reusable = false}, SHIFT(899), - [4223] = {.count = 1, .reusable = false}, SHIFT(1810), - [4225] = {.count = 1, .reusable = true}, SHIFT(1810), - [4227] = {.count = 1, .reusable = true}, SHIFT(900), - [4229] = {.count = 1, .reusable = true}, SHIFT(1811), - [4231] = {.count = 1, .reusable = true}, SHIFT(1812), - [4233] = {.count = 1, .reusable = false}, SHIFT(1812), - [4235] = {.count = 1, .reusable = false}, SHIFT(1816), - [4237] = {.count = 1, .reusable = true}, SHIFT(1816), - [4239] = {.count = 1, .reusable = true}, SHIFT(901), - [4241] = {.count = 1, .reusable = true}, SHIFT(1815), - [4243] = {.count = 1, .reusable = true}, SHIFT(902), - [4245] = {.count = 1, .reusable = false}, SHIFT(1817), - [4247] = {.count = 1, .reusable = true}, SHIFT(1817), - [4249] = {.count = 1, .reusable = true}, SHIFT(903), - [4251] = {.count = 1, .reusable = true}, SHIFT(904), - [4253] = {.count = 1, .reusable = false}, SHIFT(1818), - [4255] = {.count = 1, .reusable = true}, SHIFT(1818), - [4257] = {.count = 1, .reusable = true}, SHIFT(905), - [4259] = {.count = 1, .reusable = false}, SHIFT(1819), - [4261] = {.count = 1, .reusable = true}, SHIFT(1819), - [4263] = {.count = 1, .reusable = true}, SHIFT(906), - [4265] = {.count = 1, .reusable = true}, SHIFT(907), - [4267] = {.count = 1, .reusable = true}, SHIFT(908), - [4269] = {.count = 1, .reusable = true}, SHIFT(909), - [4271] = {.count = 1, .reusable = true}, SHIFT(943), - [4273] = {.count = 1, .reusable = false}, SHIFT(1827), - [4275] = {.count = 1, .reusable = false}, SHIFT(915), - [4277] = {.count = 1, .reusable = true}, SHIFT(918), - [4279] = {.count = 1, .reusable = true}, SHIFT(919), - [4281] = {.count = 1, .reusable = false}, SHIFT(1832), - [4283] = {.count = 1, .reusable = true}, SHIFT(1832), - [4285] = {.count = 1, .reusable = true}, SHIFT(1831), - [4287] = {.count = 1, .reusable = true}, SHIFT(923), - [4289] = {.count = 1, .reusable = false}, SHIFT(1837), - [4291] = {.count = 1, .reusable = true}, SHIFT(1837), - [4293] = {.count = 1, .reusable = true}, SHIFT(1836), - [4295] = {.count = 1, .reusable = true}, SHIFT(924), - [4297] = {.count = 1, .reusable = false}, SHIFT(925), - [4299] = {.count = 1, .reusable = false}, SHIFT(1838), - [4301] = {.count = 1, .reusable = true}, SHIFT(926), - [4303] = {.count = 1, .reusable = false}, SHIFT(1840), - [4305] = {.count = 1, .reusable = true}, SHIFT(1840), - [4307] = {.count = 1, .reusable = true}, SHIFT(928), - [4309] = {.count = 1, .reusable = true}, SHIFT(1839), - [4311] = {.count = 1, .reusable = true}, SHIFT(1841), - [4313] = {.count = 1, .reusable = false}, SHIFT(1844), - [4315] = {.count = 1, .reusable = true}, SHIFT(1844), - [4317] = {.count = 1, .reusable = true}, SHIFT(1843), - [4319] = {.count = 1, .reusable = true}, SHIFT(929), - [4321] = {.count = 1, .reusable = true}, SHIFT(1845), - [4323] = {.count = 1, .reusable = false}, SHIFT(1845), - [4325] = {.count = 1, .reusable = false}, SHIFT(1849), - [4327] = {.count = 1, .reusable = true}, SHIFT(1849), - [4329] = {.count = 1, .reusable = true}, SHIFT(930), - [4331] = {.count = 1, .reusable = true}, SHIFT(1848), - [4333] = {.count = 1, .reusable = false}, SHIFT(931), - [4335] = {.count = 1, .reusable = false}, SHIFT(1850), - [4337] = {.count = 1, .reusable = true}, SHIFT(1850), - [4339] = {.count = 1, .reusable = true}, SHIFT(932), - [4341] = {.count = 1, .reusable = true}, SHIFT(1851), - [4343] = {.count = 1, .reusable = true}, SHIFT(1852), - [4345] = {.count = 1, .reusable = false}, SHIFT(1852), - [4347] = {.count = 1, .reusable = false}, SHIFT(1856), - [4349] = {.count = 1, .reusable = true}, SHIFT(1856), - [4351] = {.count = 1, .reusable = true}, SHIFT(933), - [4353] = {.count = 1, .reusable = true}, SHIFT(1855), - [4355] = {.count = 1, .reusable = true}, SHIFT(934), - [4357] = {.count = 1, .reusable = false}, SHIFT(1857), - [4359] = {.count = 1, .reusable = true}, SHIFT(1857), - [4361] = {.count = 1, .reusable = true}, SHIFT(935), - [4363] = {.count = 1, .reusable = true}, SHIFT(936), - [4365] = {.count = 1, .reusable = false}, SHIFT(1858), - [4367] = {.count = 1, .reusable = true}, SHIFT(1858), - [4369] = {.count = 1, .reusable = true}, SHIFT(937), - [4371] = {.count = 1, .reusable = false}, SHIFT(1859), - [4373] = {.count = 1, .reusable = true}, SHIFT(1859), - [4375] = {.count = 1, .reusable = true}, SHIFT(938), - [4377] = {.count = 1, .reusable = true}, SHIFT(939), - [4379] = {.count = 1, .reusable = true}, SHIFT(940), - [4381] = {.count = 1, .reusable = true}, SHIFT(941), - [4383] = {.count = 1, .reusable = true}, SHIFT(976), - [4385] = {.count = 1, .reusable = true}, SHIFT(975), - [4387] = {.count = 1, .reusable = true}, SHIFT(945), - [4389] = {.count = 1, .reusable = false}, SHIFT(1867), - [4391] = {.count = 1, .reusable = false}, SHIFT(947), - [4393] = {.count = 1, .reusable = true}, SHIFT(950), - [4395] = {.count = 1, .reusable = true}, SHIFT(951), - [4397] = {.count = 1, .reusable = false}, SHIFT(1872), - [4399] = {.count = 1, .reusable = true}, SHIFT(1872), - [4401] = {.count = 1, .reusable = true}, SHIFT(1871), - [4403] = {.count = 1, .reusable = true}, SHIFT(955), - [4405] = {.count = 1, .reusable = false}, SHIFT(1877), - [4407] = {.count = 1, .reusable = true}, SHIFT(1877), - [4409] = {.count = 1, .reusable = true}, SHIFT(1876), - [4411] = {.count = 1, .reusable = true}, SHIFT(956), - [4413] = {.count = 1, .reusable = false}, SHIFT(957), - [4415] = {.count = 1, .reusable = false}, SHIFT(1878), - [4417] = {.count = 1, .reusable = true}, SHIFT(958), - [4419] = {.count = 1, .reusable = false}, SHIFT(1880), - [4421] = {.count = 1, .reusable = true}, SHIFT(1880), - [4423] = {.count = 1, .reusable = true}, SHIFT(960), - [4425] = {.count = 1, .reusable = true}, SHIFT(1879), - [4427] = {.count = 1, .reusable = true}, SHIFT(1881), - [4429] = {.count = 1, .reusable = false}, SHIFT(1884), - [4431] = {.count = 1, .reusable = true}, SHIFT(1884), - [4433] = {.count = 1, .reusable = true}, SHIFT(1883), - [4435] = {.count = 1, .reusable = true}, SHIFT(961), - [4437] = {.count = 1, .reusable = true}, SHIFT(1885), - [4439] = {.count = 1, .reusable = false}, SHIFT(1885), - [4441] = {.count = 1, .reusable = false}, SHIFT(1889), - [4443] = {.count = 1, .reusable = true}, SHIFT(1889), - [4445] = {.count = 1, .reusable = true}, SHIFT(962), - [4447] = {.count = 1, .reusable = true}, SHIFT(1888), - [4449] = {.count = 1, .reusable = false}, SHIFT(963), - [4451] = {.count = 1, .reusable = false}, SHIFT(1890), - [4453] = {.count = 1, .reusable = true}, SHIFT(1890), - [4455] = {.count = 1, .reusable = true}, SHIFT(964), - [4457] = {.count = 1, .reusable = true}, SHIFT(1891), - [4459] = {.count = 1, .reusable = true}, SHIFT(1892), - [4461] = {.count = 1, .reusable = false}, SHIFT(1892), - [4463] = {.count = 1, .reusable = false}, SHIFT(1896), - [4465] = {.count = 1, .reusable = true}, SHIFT(1896), - [4467] = {.count = 1, .reusable = true}, SHIFT(965), - [4469] = {.count = 1, .reusable = true}, SHIFT(1895), - [4471] = {.count = 1, .reusable = true}, SHIFT(966), - [4473] = {.count = 1, .reusable = false}, SHIFT(1897), - [4475] = {.count = 1, .reusable = true}, SHIFT(1897), - [4477] = {.count = 1, .reusable = true}, SHIFT(967), - [4479] = {.count = 1, .reusable = true}, SHIFT(968), - [4481] = {.count = 1, .reusable = false}, SHIFT(1898), - [4483] = {.count = 1, .reusable = true}, SHIFT(1898), - [4485] = {.count = 1, .reusable = true}, SHIFT(969), - [4487] = {.count = 1, .reusable = false}, SHIFT(1899), - [4489] = {.count = 1, .reusable = true}, SHIFT(1899), - [4491] = {.count = 1, .reusable = true}, SHIFT(970), - [4493] = {.count = 1, .reusable = true}, SHIFT(971), - [4495] = {.count = 1, .reusable = true}, SHIFT(972), - [4497] = {.count = 1, .reusable = true}, SHIFT(973), - [4499] = {.count = 1, .reusable = true}, SHIFT(1008), - [4501] = {.count = 1, .reusable = true}, SHIFT(1007), - [4503] = {.count = 1, .reusable = true}, SHIFT(977), - [4505] = {.count = 1, .reusable = false}, SHIFT(1907), - [4507] = {.count = 1, .reusable = false}, SHIFT(979), - [4509] = {.count = 1, .reusable = true}, SHIFT(982), - [4511] = {.count = 1, .reusable = true}, SHIFT(983), - [4513] = {.count = 1, .reusable = false}, SHIFT(1912), - [4515] = {.count = 1, .reusable = true}, SHIFT(1912), - [4517] = {.count = 1, .reusable = true}, SHIFT(1911), - [4519] = {.count = 1, .reusable = true}, SHIFT(987), - [4521] = {.count = 1, .reusable = false}, SHIFT(1917), - [4523] = {.count = 1, .reusable = true}, SHIFT(1917), - [4525] = {.count = 1, .reusable = true}, SHIFT(1916), - [4527] = {.count = 1, .reusable = true}, SHIFT(988), - [4529] = {.count = 1, .reusable = false}, SHIFT(989), - [4531] = {.count = 1, .reusable = false}, SHIFT(1918), - [4533] = {.count = 1, .reusable = true}, SHIFT(990), - [4535] = {.count = 1, .reusable = false}, SHIFT(1920), - [4537] = {.count = 1, .reusable = true}, SHIFT(1920), - [4539] = {.count = 1, .reusable = true}, SHIFT(992), - [4541] = {.count = 1, .reusable = true}, SHIFT(1919), - [4543] = {.count = 1, .reusable = true}, SHIFT(1921), - [4545] = {.count = 1, .reusable = false}, SHIFT(1924), - [4547] = {.count = 1, .reusable = true}, SHIFT(1924), - [4549] = {.count = 1, .reusable = true}, SHIFT(1923), - [4551] = {.count = 1, .reusable = true}, SHIFT(993), - [4553] = {.count = 1, .reusable = true}, SHIFT(1925), - [4555] = {.count = 1, .reusable = false}, SHIFT(1925), - [4557] = {.count = 1, .reusable = false}, SHIFT(1929), - [4559] = {.count = 1, .reusable = true}, SHIFT(1929), - [4561] = {.count = 1, .reusable = true}, SHIFT(994), - [4563] = {.count = 1, .reusable = true}, SHIFT(1928), - [4565] = {.count = 1, .reusable = false}, SHIFT(995), - [4567] = {.count = 1, .reusable = false}, SHIFT(1930), - [4569] = {.count = 1, .reusable = true}, SHIFT(1930), - [4571] = {.count = 1, .reusable = true}, SHIFT(996), - [4573] = {.count = 1, .reusable = true}, SHIFT(1931), - [4575] = {.count = 1, .reusable = true}, SHIFT(1932), - [4577] = {.count = 1, .reusable = false}, SHIFT(1932), - [4579] = {.count = 1, .reusable = false}, SHIFT(1936), - [4581] = {.count = 1, .reusable = true}, SHIFT(1936), - [4583] = {.count = 1, .reusable = true}, SHIFT(997), - [4585] = {.count = 1, .reusable = true}, SHIFT(1935), - [4587] = {.count = 1, .reusable = true}, SHIFT(998), - [4589] = {.count = 1, .reusable = false}, SHIFT(1937), - [4591] = {.count = 1, .reusable = true}, SHIFT(1937), - [4593] = {.count = 1, .reusable = true}, SHIFT(999), - [4595] = {.count = 1, .reusable = true}, SHIFT(1000), - [4597] = {.count = 1, .reusable = false}, SHIFT(1938), - [4599] = {.count = 1, .reusable = true}, SHIFT(1938), - [4601] = {.count = 1, .reusable = true}, SHIFT(1001), - [4603] = {.count = 1, .reusable = false}, SHIFT(1939), - [4605] = {.count = 1, .reusable = true}, SHIFT(1939), - [4607] = {.count = 1, .reusable = true}, SHIFT(1002), - [4609] = {.count = 1, .reusable = true}, SHIFT(1003), - [4611] = {.count = 1, .reusable = true}, SHIFT(1004), - [4613] = {.count = 1, .reusable = true}, SHIFT(1005), - [4615] = {.count = 1, .reusable = true}, SHIFT(1040), - [4617] = {.count = 1, .reusable = true}, SHIFT(1039), - [4619] = {.count = 1, .reusable = true}, SHIFT(1009), - [4621] = {.count = 1, .reusable = false}, SHIFT(1947), - [4623] = {.count = 1, .reusable = false}, SHIFT(1011), - [4625] = {.count = 1, .reusable = true}, SHIFT(1014), - [4627] = {.count = 1, .reusable = true}, SHIFT(1015), - [4629] = {.count = 1, .reusable = false}, SHIFT(1952), - [4631] = {.count = 1, .reusable = true}, SHIFT(1952), - [4633] = {.count = 1, .reusable = true}, SHIFT(1951), - [4635] = {.count = 1, .reusable = true}, SHIFT(1019), - [4637] = {.count = 1, .reusable = false}, SHIFT(1957), - [4639] = {.count = 1, .reusable = true}, SHIFT(1957), - [4641] = {.count = 1, .reusable = true}, SHIFT(1956), - [4643] = {.count = 1, .reusable = true}, SHIFT(1020), - [4645] = {.count = 1, .reusable = false}, SHIFT(1021), - [4647] = {.count = 1, .reusable = false}, SHIFT(1958), - [4649] = {.count = 1, .reusable = true}, SHIFT(1022), - [4651] = {.count = 1, .reusable = false}, SHIFT(1960), - [4653] = {.count = 1, .reusable = true}, SHIFT(1960), - [4655] = {.count = 1, .reusable = true}, SHIFT(1024), - [4657] = {.count = 1, .reusable = true}, SHIFT(1959), - [4659] = {.count = 1, .reusable = true}, SHIFT(1961), - [4661] = {.count = 1, .reusable = false}, SHIFT(1964), - [4663] = {.count = 1, .reusable = true}, SHIFT(1964), - [4665] = {.count = 1, .reusable = true}, SHIFT(1963), - [4667] = {.count = 1, .reusable = true}, SHIFT(1025), - [4669] = {.count = 1, .reusable = true}, SHIFT(1965), - [4671] = {.count = 1, .reusable = false}, SHIFT(1965), - [4673] = {.count = 1, .reusable = false}, SHIFT(1969), - [4675] = {.count = 1, .reusable = true}, SHIFT(1969), - [4677] = {.count = 1, .reusable = true}, SHIFT(1026), - [4679] = {.count = 1, .reusable = true}, SHIFT(1968), - [4681] = {.count = 1, .reusable = false}, SHIFT(1027), - [4683] = {.count = 1, .reusable = false}, SHIFT(1970), - [4685] = {.count = 1, .reusable = true}, SHIFT(1970), - [4687] = {.count = 1, .reusable = true}, SHIFT(1028), - [4689] = {.count = 1, .reusable = true}, SHIFT(1971), - [4691] = {.count = 1, .reusable = true}, SHIFT(1972), - [4693] = {.count = 1, .reusable = false}, SHIFT(1972), - [4695] = {.count = 1, .reusable = false}, SHIFT(1976), - [4697] = {.count = 1, .reusable = true}, SHIFT(1976), - [4699] = {.count = 1, .reusable = true}, SHIFT(1029), - [4701] = {.count = 1, .reusable = true}, SHIFT(1975), - [4703] = {.count = 1, .reusable = true}, SHIFT(1030), - [4705] = {.count = 1, .reusable = false}, SHIFT(1977), - [4707] = {.count = 1, .reusable = true}, SHIFT(1977), - [4709] = {.count = 1, .reusable = true}, SHIFT(1031), - [4711] = {.count = 1, .reusable = true}, SHIFT(1032), - [4713] = {.count = 1, .reusable = false}, SHIFT(1978), - [4715] = {.count = 1, .reusable = true}, SHIFT(1978), - [4717] = {.count = 1, .reusable = true}, SHIFT(1033), - [4719] = {.count = 1, .reusable = false}, SHIFT(1979), - [4721] = {.count = 1, .reusable = true}, SHIFT(1979), - [4723] = {.count = 1, .reusable = true}, SHIFT(1034), - [4725] = {.count = 1, .reusable = true}, SHIFT(1035), - [4727] = {.count = 1, .reusable = true}, SHIFT(1036), - [4729] = {.count = 1, .reusable = true}, SHIFT(1037), - [4731] = {.count = 1, .reusable = true}, SHIFT(1072), - [4733] = {.count = 1, .reusable = true}, SHIFT(1041), - [4735] = {.count = 1, .reusable = true}, SHIFT(1071), - [4737] = {.count = 1, .reusable = false}, SHIFT(1043), - [4739] = {.count = 1, .reusable = false}, SHIFT(1987), - [4741] = {.count = 1, .reusable = true}, SHIFT(1046), - [4743] = {.count = 1, .reusable = true}, SHIFT(1047), - [4745] = {.count = 1, .reusable = false}, SHIFT(1992), - [4747] = {.count = 1, .reusable = true}, SHIFT(1992), - [4749] = {.count = 1, .reusable = true}, SHIFT(1991), - [4751] = {.count = 1, .reusable = true}, SHIFT(1051), - [4753] = {.count = 1, .reusable = false}, SHIFT(1997), - [4755] = {.count = 1, .reusable = true}, SHIFT(1997), - [4757] = {.count = 1, .reusable = true}, SHIFT(1996), - [4759] = {.count = 1, .reusable = true}, SHIFT(1052), - [4761] = {.count = 1, .reusable = false}, SHIFT(1053), - [4763] = {.count = 1, .reusable = false}, SHIFT(1998), - [4765] = {.count = 1, .reusable = true}, SHIFT(1054), - [4767] = {.count = 1, .reusable = false}, SHIFT(2000), - [4769] = {.count = 1, .reusable = true}, SHIFT(2000), - [4771] = {.count = 1, .reusable = true}, SHIFT(1056), - [4773] = {.count = 1, .reusable = true}, SHIFT(1999), - [4775] = {.count = 1, .reusable = true}, SHIFT(2001), - [4777] = {.count = 1, .reusable = false}, SHIFT(2004), - [4779] = {.count = 1, .reusable = true}, SHIFT(2004), - [4781] = {.count = 1, .reusable = true}, SHIFT(2003), - [4783] = {.count = 1, .reusable = true}, SHIFT(1057), - [4785] = {.count = 1, .reusable = true}, SHIFT(2005), - [4787] = {.count = 1, .reusable = false}, SHIFT(2005), - [4789] = {.count = 1, .reusable = false}, SHIFT(2009), - [4791] = {.count = 1, .reusable = true}, SHIFT(2009), - [4793] = {.count = 1, .reusable = true}, SHIFT(1058), - [4795] = {.count = 1, .reusable = true}, SHIFT(2008), - [4797] = {.count = 1, .reusable = false}, SHIFT(1059), - [4799] = {.count = 1, .reusable = false}, SHIFT(2010), - [4801] = {.count = 1, .reusable = true}, SHIFT(2010), - [4803] = {.count = 1, .reusable = true}, SHIFT(1060), - [4805] = {.count = 1, .reusable = true}, SHIFT(2011), - [4807] = {.count = 1, .reusable = true}, SHIFT(2012), - [4809] = {.count = 1, .reusable = false}, SHIFT(2012), - [4811] = {.count = 1, .reusable = false}, SHIFT(2016), - [4813] = {.count = 1, .reusable = true}, SHIFT(2016), - [4815] = {.count = 1, .reusable = true}, SHIFT(1061), - [4817] = {.count = 1, .reusable = true}, SHIFT(2015), - [4819] = {.count = 1, .reusable = true}, SHIFT(1062), - [4821] = {.count = 1, .reusable = false}, SHIFT(2017), - [4823] = {.count = 1, .reusable = true}, SHIFT(2017), - [4825] = {.count = 1, .reusable = true}, SHIFT(1063), - [4827] = {.count = 1, .reusable = true}, SHIFT(1064), - [4829] = {.count = 1, .reusable = false}, SHIFT(2018), - [4831] = {.count = 1, .reusable = true}, SHIFT(2018), - [4833] = {.count = 1, .reusable = true}, SHIFT(1065), - [4835] = {.count = 1, .reusable = false}, SHIFT(2019), - [4837] = {.count = 1, .reusable = true}, SHIFT(2019), - [4839] = {.count = 1, .reusable = true}, SHIFT(1066), - [4841] = {.count = 1, .reusable = true}, SHIFT(1067), - [4843] = {.count = 1, .reusable = true}, SHIFT(1068), - [4845] = {.count = 1, .reusable = true}, SHIFT(1069), - [4847] = {.count = 1, .reusable = true}, SHIFT(1104), - [4849] = {.count = 1, .reusable = true}, SHIFT(1073), - [4851] = {.count = 1, .reusable = true}, SHIFT(1103), - [4853] = {.count = 1, .reusable = false}, SHIFT(1075), - [4855] = {.count = 1, .reusable = false}, SHIFT(2027), - [4857] = {.count = 1, .reusable = true}, SHIFT(1078), - [4859] = {.count = 1, .reusable = true}, SHIFT(1079), - [4861] = {.count = 1, .reusable = false}, SHIFT(2032), - [4863] = {.count = 1, .reusable = true}, SHIFT(2032), - [4865] = {.count = 1, .reusable = true}, SHIFT(2031), - [4867] = {.count = 1, .reusable = true}, SHIFT(1083), - [4869] = {.count = 1, .reusable = false}, SHIFT(2037), - [4871] = {.count = 1, .reusable = true}, SHIFT(2037), - [4873] = {.count = 1, .reusable = true}, SHIFT(2036), - [4875] = {.count = 1, .reusable = true}, SHIFT(1084), - [4877] = {.count = 1, .reusable = false}, SHIFT(1085), - [4879] = {.count = 1, .reusable = false}, SHIFT(2038), - [4881] = {.count = 1, .reusable = true}, SHIFT(1086), - [4883] = {.count = 1, .reusable = false}, SHIFT(2040), - [4885] = {.count = 1, .reusable = true}, SHIFT(2040), - [4887] = {.count = 1, .reusable = true}, SHIFT(1088), - [4889] = {.count = 1, .reusable = true}, SHIFT(2039), - [4891] = {.count = 1, .reusable = true}, SHIFT(2041), - [4893] = {.count = 1, .reusable = false}, SHIFT(2044), - [4895] = {.count = 1, .reusable = true}, SHIFT(2044), - [4897] = {.count = 1, .reusable = true}, SHIFT(2043), - [4899] = {.count = 1, .reusable = true}, SHIFT(1089), - [4901] = {.count = 1, .reusable = true}, SHIFT(2045), - [4903] = {.count = 1, .reusable = false}, SHIFT(2045), - [4905] = {.count = 1, .reusable = false}, SHIFT(2049), - [4907] = {.count = 1, .reusable = true}, SHIFT(2049), - [4909] = {.count = 1, .reusable = true}, SHIFT(1090), - [4911] = {.count = 1, .reusable = true}, SHIFT(2048), - [4913] = {.count = 1, .reusable = false}, SHIFT(1091), - [4915] = {.count = 1, .reusable = false}, SHIFT(2050), - [4917] = {.count = 1, .reusable = true}, SHIFT(2050), - [4919] = {.count = 1, .reusable = true}, SHIFT(1092), - [4921] = {.count = 1, .reusable = true}, SHIFT(2051), - [4923] = {.count = 1, .reusable = true}, SHIFT(2052), - [4925] = {.count = 1, .reusable = false}, SHIFT(2052), - [4927] = {.count = 1, .reusable = false}, SHIFT(2056), - [4929] = {.count = 1, .reusable = true}, SHIFT(2056), - [4931] = {.count = 1, .reusable = true}, SHIFT(1093), - [4933] = {.count = 1, .reusable = true}, SHIFT(2055), - [4935] = {.count = 1, .reusable = true}, SHIFT(1094), - [4937] = {.count = 1, .reusable = false}, SHIFT(2057), - [4939] = {.count = 1, .reusable = true}, SHIFT(2057), - [4941] = {.count = 1, .reusable = true}, SHIFT(1095), - [4943] = {.count = 1, .reusable = true}, SHIFT(1096), - [4945] = {.count = 1, .reusable = false}, SHIFT(2058), - [4947] = {.count = 1, .reusable = true}, SHIFT(2058), - [4949] = {.count = 1, .reusable = true}, SHIFT(1097), - [4951] = {.count = 1, .reusable = false}, SHIFT(2059), - [4953] = {.count = 1, .reusable = true}, SHIFT(2059), - [4955] = {.count = 1, .reusable = true}, SHIFT(1098), - [4957] = {.count = 1, .reusable = true}, SHIFT(1099), - [4959] = {.count = 1, .reusable = true}, SHIFT(1100), - [4961] = {.count = 1, .reusable = true}, SHIFT(1101), - [4963] = {.count = 1, .reusable = false}, SHIFT(2067), - [4965] = {.count = 1, .reusable = false}, SHIFT(1107), - [4967] = {.count = 1, .reusable = true}, SHIFT(1110), - [4969] = {.count = 1, .reusable = true}, SHIFT(1111), - [4971] = {.count = 1, .reusable = false}, SHIFT(2072), - [4973] = {.count = 1, .reusable = true}, SHIFT(2072), - [4975] = {.count = 1, .reusable = true}, SHIFT(2071), - [4977] = {.count = 1, .reusable = true}, SHIFT(1115), - [4979] = {.count = 1, .reusable = false}, SHIFT(2077), - [4981] = {.count = 1, .reusable = true}, SHIFT(2077), - [4983] = {.count = 1, .reusable = true}, SHIFT(2076), - [4985] = {.count = 1, .reusable = true}, SHIFT(1116), - [4987] = {.count = 1, .reusable = false}, SHIFT(1117), - [4989] = {.count = 1, .reusable = false}, SHIFT(2078), - [4991] = {.count = 1, .reusable = true}, SHIFT(1118), - [4993] = {.count = 1, .reusable = false}, SHIFT(2080), - [4995] = {.count = 1, .reusable = true}, SHIFT(2080), - [4997] = {.count = 1, .reusable = true}, SHIFT(1120), - [4999] = {.count = 1, .reusable = true}, SHIFT(2079), - [5001] = {.count = 1, .reusable = true}, SHIFT(2081), - [5003] = {.count = 1, .reusable = false}, SHIFT(2084), - [5005] = {.count = 1, .reusable = true}, SHIFT(2084), - [5007] = {.count = 1, .reusable = true}, SHIFT(2083), - [5009] = {.count = 1, .reusable = true}, SHIFT(1121), - [5011] = {.count = 1, .reusable = true}, SHIFT(2085), - [5013] = {.count = 1, .reusable = false}, SHIFT(2085), - [5015] = {.count = 1, .reusable = false}, SHIFT(2089), - [5017] = {.count = 1, .reusable = true}, SHIFT(2089), - [5019] = {.count = 1, .reusable = true}, SHIFT(1122), - [5021] = {.count = 1, .reusable = true}, SHIFT(2088), - [5023] = {.count = 1, .reusable = false}, SHIFT(1123), - [5025] = {.count = 1, .reusable = false}, SHIFT(2090), - [5027] = {.count = 1, .reusable = true}, SHIFT(2090), - [5029] = {.count = 1, .reusable = true}, SHIFT(1124), - [5031] = {.count = 1, .reusable = true}, SHIFT(2091), - [5033] = {.count = 1, .reusable = true}, SHIFT(2092), - [5035] = {.count = 1, .reusable = false}, SHIFT(2092), - [5037] = {.count = 1, .reusable = false}, SHIFT(2096), - [5039] = {.count = 1, .reusable = true}, SHIFT(2096), - [5041] = {.count = 1, .reusable = true}, SHIFT(1125), - [5043] = {.count = 1, .reusable = true}, SHIFT(2095), - [5045] = {.count = 1, .reusable = true}, SHIFT(1126), - [5047] = {.count = 1, .reusable = false}, SHIFT(2097), - [5049] = {.count = 1, .reusable = true}, SHIFT(2097), - [5051] = {.count = 1, .reusable = true}, SHIFT(1127), - [5053] = {.count = 1, .reusable = true}, SHIFT(1128), - [5055] = {.count = 1, .reusable = false}, SHIFT(2098), - [5057] = {.count = 1, .reusable = true}, SHIFT(2098), - [5059] = {.count = 1, .reusable = true}, SHIFT(1129), - [5061] = {.count = 1, .reusable = false}, SHIFT(2099), - [5063] = {.count = 1, .reusable = true}, SHIFT(2099), - [5065] = {.count = 1, .reusable = true}, SHIFT(1130), - [5067] = {.count = 1, .reusable = true}, SHIFT(1131), - [5069] = {.count = 1, .reusable = true}, SHIFT(1132), - [5071] = {.count = 1, .reusable = true}, SHIFT(1133), - [5073] = {.count = 1, .reusable = true}, SHIFT(1167), - [5075] = {.count = 1, .reusable = false}, SHIFT(2107), - [5077] = {.count = 1, .reusable = false}, SHIFT(1139), - [5079] = {.count = 1, .reusable = true}, SHIFT(1142), - [5081] = {.count = 1, .reusable = true}, SHIFT(1143), - [5083] = {.count = 1, .reusable = false}, SHIFT(2112), - [5085] = {.count = 1, .reusable = true}, SHIFT(2112), - [5087] = {.count = 1, .reusable = true}, SHIFT(2111), - [5089] = {.count = 1, .reusable = true}, SHIFT(1147), - [5091] = {.count = 1, .reusable = false}, SHIFT(2117), - [5093] = {.count = 1, .reusable = true}, SHIFT(2117), - [5095] = {.count = 1, .reusable = true}, SHIFT(2116), - [5097] = {.count = 1, .reusable = true}, SHIFT(1148), - [5099] = {.count = 1, .reusable = false}, SHIFT(1149), - [5101] = {.count = 1, .reusable = false}, SHIFT(2118), - [5103] = {.count = 1, .reusable = true}, SHIFT(1150), - [5105] = {.count = 1, .reusable = false}, SHIFT(2120), - [5107] = {.count = 1, .reusable = true}, SHIFT(2120), - [5109] = {.count = 1, .reusable = true}, SHIFT(1152), - [5111] = {.count = 1, .reusable = true}, SHIFT(2119), - [5113] = {.count = 1, .reusable = true}, SHIFT(2121), - [5115] = {.count = 1, .reusable = false}, SHIFT(2124), - [5117] = {.count = 1, .reusable = true}, SHIFT(2124), - [5119] = {.count = 1, .reusable = true}, SHIFT(2123), - [5121] = {.count = 1, .reusable = true}, SHIFT(1153), - [5123] = {.count = 1, .reusable = true}, SHIFT(2125), - [5125] = {.count = 1, .reusable = false}, SHIFT(2125), - [5127] = {.count = 1, .reusable = false}, SHIFT(2129), - [5129] = {.count = 1, .reusable = true}, SHIFT(2129), - [5131] = {.count = 1, .reusable = true}, SHIFT(1154), - [5133] = {.count = 1, .reusable = true}, SHIFT(2128), - [5135] = {.count = 1, .reusable = false}, SHIFT(1155), - [5137] = {.count = 1, .reusable = false}, SHIFT(2130), - [5139] = {.count = 1, .reusable = true}, SHIFT(2130), - [5141] = {.count = 1, .reusable = true}, SHIFT(1156), - [5143] = {.count = 1, .reusable = true}, SHIFT(2131), - [5145] = {.count = 1, .reusable = true}, SHIFT(2132), - [5147] = {.count = 1, .reusable = false}, SHIFT(2132), - [5149] = {.count = 1, .reusable = false}, SHIFT(2136), - [5151] = {.count = 1, .reusable = true}, SHIFT(2136), - [5153] = {.count = 1, .reusable = true}, SHIFT(1157), - [5155] = {.count = 1, .reusable = true}, SHIFT(2135), - [5157] = {.count = 1, .reusable = true}, SHIFT(1158), - [5159] = {.count = 1, .reusable = false}, SHIFT(2137), - [5161] = {.count = 1, .reusable = true}, SHIFT(2137), - [5163] = {.count = 1, .reusable = true}, SHIFT(1159), - [5165] = {.count = 1, .reusable = true}, SHIFT(1160), - [5167] = {.count = 1, .reusable = false}, SHIFT(2138), - [5169] = {.count = 1, .reusable = true}, SHIFT(2138), - [5171] = {.count = 1, .reusable = true}, SHIFT(1161), - [5173] = {.count = 1, .reusable = false}, SHIFT(2139), - [5175] = {.count = 1, .reusable = true}, SHIFT(2139), - [5177] = {.count = 1, .reusable = true}, SHIFT(1162), - [5179] = {.count = 1, .reusable = true}, SHIFT(1163), - [5181] = {.count = 1, .reusable = true}, SHIFT(1164), - [5183] = {.count = 1, .reusable = true}, SHIFT(1165), - [5185] = {.count = 1, .reusable = true}, SHIFT(1200), - [5187] = {.count = 1, .reusable = true}, SHIFT(1199), - [5189] = {.count = 1, .reusable = true}, SHIFT(1169), - [5191] = {.count = 1, .reusable = false}, SHIFT(2147), - [5193] = {.count = 1, .reusable = false}, SHIFT(1171), - [5195] = {.count = 1, .reusable = true}, SHIFT(1174), - [5197] = {.count = 1, .reusable = true}, SHIFT(1175), - [5199] = {.count = 1, .reusable = false}, SHIFT(2152), - [5201] = {.count = 1, .reusable = true}, SHIFT(2152), - [5203] = {.count = 1, .reusable = true}, SHIFT(2151), - [5205] = {.count = 1, .reusable = true}, SHIFT(1179), - [5207] = {.count = 1, .reusable = false}, SHIFT(2157), - [5209] = {.count = 1, .reusable = true}, SHIFT(2157), - [5211] = {.count = 1, .reusable = true}, SHIFT(2156), - [5213] = {.count = 1, .reusable = true}, SHIFT(1180), - [5215] = {.count = 1, .reusable = false}, SHIFT(1181), - [5217] = {.count = 1, .reusable = false}, SHIFT(2158), - [5219] = {.count = 1, .reusable = true}, SHIFT(1182), - [5221] = {.count = 1, .reusable = false}, SHIFT(2160), - [5223] = {.count = 1, .reusable = true}, SHIFT(2160), - [5225] = {.count = 1, .reusable = true}, SHIFT(1184), - [5227] = {.count = 1, .reusable = true}, SHIFT(2159), - [5229] = {.count = 1, .reusable = true}, SHIFT(2161), - [5231] = {.count = 1, .reusable = false}, SHIFT(2164), - [5233] = {.count = 1, .reusable = true}, SHIFT(2164), - [5235] = {.count = 1, .reusable = true}, SHIFT(2163), - [5237] = {.count = 1, .reusable = true}, SHIFT(1185), - [5239] = {.count = 1, .reusable = true}, SHIFT(2165), - [5241] = {.count = 1, .reusable = false}, SHIFT(2165), - [5243] = {.count = 1, .reusable = false}, SHIFT(2169), - [5245] = {.count = 1, .reusable = true}, SHIFT(2169), - [5247] = {.count = 1, .reusable = true}, SHIFT(1186), - [5249] = {.count = 1, .reusable = true}, SHIFT(2168), - [5251] = {.count = 1, .reusable = false}, SHIFT(1187), - [5253] = {.count = 1, .reusable = false}, SHIFT(2170), - [5255] = {.count = 1, .reusable = true}, SHIFT(2170), - [5257] = {.count = 1, .reusable = true}, SHIFT(1188), - [5259] = {.count = 1, .reusable = true}, SHIFT(2171), - [5261] = {.count = 1, .reusable = true}, SHIFT(2172), - [5263] = {.count = 1, .reusable = false}, SHIFT(2172), - [5265] = {.count = 1, .reusable = false}, SHIFT(2176), - [5267] = {.count = 1, .reusable = true}, SHIFT(2176), - [5269] = {.count = 1, .reusable = true}, SHIFT(1189), - [5271] = {.count = 1, .reusable = true}, SHIFT(2175), - [5273] = {.count = 1, .reusable = true}, SHIFT(1190), - [5275] = {.count = 1, .reusable = false}, SHIFT(2177), - [5277] = {.count = 1, .reusable = true}, SHIFT(2177), - [5279] = {.count = 1, .reusable = true}, SHIFT(1191), - [5281] = {.count = 1, .reusable = true}, SHIFT(1192), - [5283] = {.count = 1, .reusable = false}, SHIFT(2178), - [5285] = {.count = 1, .reusable = true}, SHIFT(2178), - [5287] = {.count = 1, .reusable = true}, SHIFT(1193), - [5289] = {.count = 1, .reusable = false}, SHIFT(2179), - [5291] = {.count = 1, .reusable = true}, SHIFT(2179), - [5293] = {.count = 1, .reusable = true}, SHIFT(1194), - [5295] = {.count = 1, .reusable = true}, SHIFT(1195), - [5297] = {.count = 1, .reusable = true}, SHIFT(1196), - [5299] = {.count = 1, .reusable = true}, SHIFT(1197), - [5301] = {.count = 1, .reusable = true}, SHIFT(1264), - [5303] = {.count = 1, .reusable = true}, SHIFT(1263), - [5305] = {.count = 1, .reusable = true}, SHIFT(1201), - [5307] = {.count = 1, .reusable = false}, SHIFT(2187), - [5309] = {.count = 1, .reusable = false}, SHIFT(1203), - [5311] = {.count = 1, .reusable = true}, SHIFT(1206), - [5313] = {.count = 1, .reusable = true}, SHIFT(1207), - [5315] = {.count = 1, .reusable = false}, SHIFT(2192), - [5317] = {.count = 1, .reusable = true}, SHIFT(2192), - [5319] = {.count = 1, .reusable = true}, SHIFT(2191), - [5321] = {.count = 1, .reusable = true}, SHIFT(1211), - [5323] = {.count = 1, .reusable = false}, SHIFT(2197), - [5325] = {.count = 1, .reusable = true}, SHIFT(2197), - [5327] = {.count = 1, .reusable = true}, SHIFT(2196), - [5329] = {.count = 1, .reusable = true}, SHIFT(1212), - [5331] = {.count = 1, .reusable = false}, SHIFT(1213), - [5333] = {.count = 1, .reusable = false}, SHIFT(2198), - [5335] = {.count = 1, .reusable = true}, SHIFT(1214), - [5337] = {.count = 1, .reusable = false}, SHIFT(2200), - [5339] = {.count = 1, .reusable = true}, SHIFT(2200), - [5341] = {.count = 1, .reusable = true}, SHIFT(1216), - [5343] = {.count = 1, .reusable = true}, SHIFT(2199), - [5345] = {.count = 1, .reusable = true}, SHIFT(2201), - [5347] = {.count = 1, .reusable = false}, SHIFT(2204), - [5349] = {.count = 1, .reusable = true}, SHIFT(2204), - [5351] = {.count = 1, .reusable = true}, SHIFT(2203), - [5353] = {.count = 1, .reusable = true}, SHIFT(1217), - [5355] = {.count = 1, .reusable = true}, SHIFT(2205), - [5357] = {.count = 1, .reusable = false}, SHIFT(2205), - [5359] = {.count = 1, .reusable = false}, SHIFT(2209), - [5361] = {.count = 1, .reusable = true}, SHIFT(2209), - [5363] = {.count = 1, .reusable = true}, SHIFT(1218), - [5365] = {.count = 1, .reusable = true}, SHIFT(2208), - [5367] = {.count = 1, .reusable = false}, SHIFT(1219), - [5369] = {.count = 1, .reusable = false}, SHIFT(2210), - [5371] = {.count = 1, .reusable = true}, SHIFT(2210), - [5373] = {.count = 1, .reusable = true}, SHIFT(1220), - [5375] = {.count = 1, .reusable = true}, SHIFT(2211), - [5377] = {.count = 1, .reusable = true}, SHIFT(2212), - [5379] = {.count = 1, .reusable = false}, SHIFT(2212), - [5381] = {.count = 1, .reusable = false}, SHIFT(2216), - [5383] = {.count = 1, .reusable = true}, SHIFT(2216), - [5385] = {.count = 1, .reusable = true}, SHIFT(1221), - [5387] = {.count = 1, .reusable = true}, SHIFT(2215), - [5389] = {.count = 1, .reusable = true}, SHIFT(1222), - [5391] = {.count = 1, .reusable = false}, SHIFT(2217), - [5393] = {.count = 1, .reusable = true}, SHIFT(2217), - [5395] = {.count = 1, .reusable = true}, SHIFT(1223), - [5397] = {.count = 1, .reusable = true}, SHIFT(1224), - [5399] = {.count = 1, .reusable = false}, SHIFT(2218), - [5401] = {.count = 1, .reusable = true}, SHIFT(2218), - [5403] = {.count = 1, .reusable = true}, SHIFT(1225), - [5405] = {.count = 1, .reusable = false}, SHIFT(2219), - [5407] = {.count = 1, .reusable = true}, SHIFT(2219), - [5409] = {.count = 1, .reusable = true}, SHIFT(1226), - [5411] = {.count = 1, .reusable = true}, SHIFT(1227), - [5413] = {.count = 1, .reusable = true}, SHIFT(1228), - [5415] = {.count = 1, .reusable = true}, SHIFT(1229), - [5417] = {.count = 1, .reusable = true}, SHIFT(1296), - [5419] = {.count = 1, .reusable = true}, SHIFT(1295), - [5421] = {.count = 1, .reusable = true}, SHIFT(1233), - [5423] = {.count = 1, .reusable = false}, SHIFT(2227), - [5425] = {.count = 1, .reusable = false}, SHIFT(1235), - [5427] = {.count = 1, .reusable = true}, SHIFT(1238), - [5429] = {.count = 1, .reusable = true}, SHIFT(1239), - [5431] = {.count = 1, .reusable = false}, SHIFT(2232), - [5433] = {.count = 1, .reusable = true}, SHIFT(2232), - [5435] = {.count = 1, .reusable = true}, SHIFT(2231), - [5437] = {.count = 1, .reusable = true}, SHIFT(1243), - [5439] = {.count = 1, .reusable = false}, SHIFT(2237), - [5441] = {.count = 1, .reusable = true}, SHIFT(2237), - [5443] = {.count = 1, .reusable = true}, SHIFT(2236), - [5445] = {.count = 1, .reusable = true}, SHIFT(1244), - [5447] = {.count = 1, .reusable = false}, SHIFT(1245), - [5449] = {.count = 1, .reusable = false}, SHIFT(2238), - [5451] = {.count = 1, .reusable = true}, SHIFT(1246), - [5453] = {.count = 1, .reusable = false}, SHIFT(2240), - [5455] = {.count = 1, .reusable = true}, SHIFT(2240), - [5457] = {.count = 1, .reusable = true}, SHIFT(1248), - [5459] = {.count = 1, .reusable = true}, SHIFT(2239), - [5461] = {.count = 1, .reusable = true}, SHIFT(2241), - [5463] = {.count = 1, .reusable = false}, SHIFT(2244), - [5465] = {.count = 1, .reusable = true}, SHIFT(2244), - [5467] = {.count = 1, .reusable = true}, SHIFT(2243), - [5469] = {.count = 1, .reusable = true}, SHIFT(1249), - [5471] = {.count = 1, .reusable = true}, SHIFT(2245), - [5473] = {.count = 1, .reusable = false}, SHIFT(2245), - [5475] = {.count = 1, .reusable = false}, SHIFT(2249), - [5477] = {.count = 1, .reusable = true}, SHIFT(2249), - [5479] = {.count = 1, .reusable = true}, SHIFT(1250), - [5481] = {.count = 1, .reusable = true}, SHIFT(2248), - [5483] = {.count = 1, .reusable = false}, SHIFT(1251), - [5485] = {.count = 1, .reusable = false}, SHIFT(2250), - [5487] = {.count = 1, .reusable = true}, SHIFT(2250), - [5489] = {.count = 1, .reusable = true}, SHIFT(1252), - [5491] = {.count = 1, .reusable = true}, SHIFT(2251), - [5493] = {.count = 1, .reusable = true}, SHIFT(2252), - [5495] = {.count = 1, .reusable = false}, SHIFT(2252), - [5497] = {.count = 1, .reusable = false}, SHIFT(2256), - [5499] = {.count = 1, .reusable = true}, SHIFT(2256), - [5501] = {.count = 1, .reusable = true}, SHIFT(1253), - [5503] = {.count = 1, .reusable = true}, SHIFT(2255), - [5505] = {.count = 1, .reusable = true}, SHIFT(1254), - [5507] = {.count = 1, .reusable = false}, SHIFT(2257), - [5509] = {.count = 1, .reusable = true}, SHIFT(2257), - [5511] = {.count = 1, .reusable = true}, SHIFT(1255), - [5513] = {.count = 1, .reusable = true}, SHIFT(1256), - [5515] = {.count = 1, .reusable = false}, SHIFT(2258), - [5517] = {.count = 1, .reusable = true}, SHIFT(2258), - [5519] = {.count = 1, .reusable = true}, SHIFT(1257), - [5521] = {.count = 1, .reusable = false}, SHIFT(2259), - [5523] = {.count = 1, .reusable = true}, SHIFT(2259), - [5525] = {.count = 1, .reusable = true}, SHIFT(1258), - [5527] = {.count = 1, .reusable = true}, SHIFT(1259), - [5529] = {.count = 1, .reusable = true}, SHIFT(1260), - [5531] = {.count = 1, .reusable = true}, SHIFT(1261), - [5533] = {.count = 1, .reusable = true}, SHIFT(1328), - [5535] = {.count = 1, .reusable = true}, SHIFT(1327), - [5537] = {.count = 1, .reusable = true}, SHIFT(1265), - [5539] = {.count = 1, .reusable = false}, SHIFT(2267), - [5541] = {.count = 1, .reusable = false}, SHIFT(1267), - [5543] = {.count = 1, .reusable = true}, SHIFT(1270), - [5545] = {.count = 1, .reusable = true}, SHIFT(1271), - [5547] = {.count = 1, .reusable = false}, SHIFT(2272), - [5549] = {.count = 1, .reusable = true}, SHIFT(2272), - [5551] = {.count = 1, .reusable = true}, SHIFT(2271), - [5553] = {.count = 1, .reusable = true}, SHIFT(1275), - [5555] = {.count = 1, .reusable = false}, SHIFT(2277), - [5557] = {.count = 1, .reusable = true}, SHIFT(2277), - [5559] = {.count = 1, .reusable = true}, SHIFT(2276), - [5561] = {.count = 1, .reusable = true}, SHIFT(1276), - [5563] = {.count = 1, .reusable = false}, SHIFT(1277), - [5565] = {.count = 1, .reusable = false}, SHIFT(2278), - [5567] = {.count = 1, .reusable = true}, SHIFT(1278), - [5569] = {.count = 1, .reusable = false}, SHIFT(2280), - [5571] = {.count = 1, .reusable = true}, SHIFT(2280), - [5573] = {.count = 1, .reusable = true}, SHIFT(1280), - [5575] = {.count = 1, .reusable = true}, SHIFT(2279), - [5577] = {.count = 1, .reusable = true}, SHIFT(2281), - [5579] = {.count = 1, .reusable = false}, SHIFT(2284), - [5581] = {.count = 1, .reusable = true}, SHIFT(2284), - [5583] = {.count = 1, .reusable = true}, SHIFT(2283), - [5585] = {.count = 1, .reusable = true}, SHIFT(1281), - [5587] = {.count = 1, .reusable = true}, SHIFT(2285), - [5589] = {.count = 1, .reusable = false}, SHIFT(2285), - [5591] = {.count = 1, .reusable = false}, SHIFT(2289), - [5593] = {.count = 1, .reusable = true}, SHIFT(2289), - [5595] = {.count = 1, .reusable = true}, SHIFT(1282), - [5597] = {.count = 1, .reusable = true}, SHIFT(2288), - [5599] = {.count = 1, .reusable = false}, SHIFT(1283), - [5601] = {.count = 1, .reusable = false}, SHIFT(2290), - [5603] = {.count = 1, .reusable = true}, SHIFT(2290), - [5605] = {.count = 1, .reusable = true}, SHIFT(1284), - [5607] = {.count = 1, .reusable = true}, SHIFT(2291), - [5609] = {.count = 1, .reusable = true}, SHIFT(2292), - [5611] = {.count = 1, .reusable = false}, SHIFT(2292), - [5613] = {.count = 1, .reusable = false}, SHIFT(2296), - [5615] = {.count = 1, .reusable = true}, SHIFT(2296), - [5617] = {.count = 1, .reusable = true}, SHIFT(1285), - [5619] = {.count = 1, .reusable = true}, SHIFT(2295), - [5621] = {.count = 1, .reusable = true}, SHIFT(1286), - [5623] = {.count = 1, .reusable = false}, SHIFT(2297), - [5625] = {.count = 1, .reusable = true}, SHIFT(2297), - [5627] = {.count = 1, .reusable = true}, SHIFT(1287), - [5629] = {.count = 1, .reusable = true}, SHIFT(1288), - [5631] = {.count = 1, .reusable = false}, SHIFT(2298), - [5633] = {.count = 1, .reusable = true}, SHIFT(2298), - [5635] = {.count = 1, .reusable = true}, SHIFT(1289), - [5637] = {.count = 1, .reusable = false}, SHIFT(2299), - [5639] = {.count = 1, .reusable = true}, SHIFT(2299), - [5641] = {.count = 1, .reusable = true}, SHIFT(1290), - [5643] = {.count = 1, .reusable = true}, SHIFT(1291), - [5645] = {.count = 1, .reusable = true}, SHIFT(1292), - [5647] = {.count = 1, .reusable = true}, SHIFT(1293), - [5649] = {.count = 1, .reusable = true}, SHIFT(1350), - [5651] = {.count = 1, .reusable = true}, SHIFT(1349), - [5653] = {.count = 1, .reusable = true}, SHIFT(1297), - [5655] = {.count = 1, .reusable = false}, SHIFT(2307), - [5657] = {.count = 1, .reusable = false}, SHIFT(1299), - [5659] = {.count = 1, .reusable = true}, SHIFT(1302), - [5661] = {.count = 1, .reusable = true}, SHIFT(1303), - [5663] = {.count = 1, .reusable = false}, SHIFT(2312), - [5665] = {.count = 1, .reusable = true}, SHIFT(2312), - [5667] = {.count = 1, .reusable = true}, SHIFT(2311), - [5669] = {.count = 1, .reusable = true}, SHIFT(1307), - [5671] = {.count = 1, .reusable = false}, SHIFT(2317), - [5673] = {.count = 1, .reusable = true}, SHIFT(2317), - [5675] = {.count = 1, .reusable = true}, SHIFT(2316), - [5677] = {.count = 1, .reusable = true}, SHIFT(1308), - [5679] = {.count = 1, .reusable = false}, SHIFT(1309), - [5681] = {.count = 1, .reusable = false}, SHIFT(2318), - [5683] = {.count = 1, .reusable = true}, SHIFT(1310), - [5685] = {.count = 1, .reusable = false}, SHIFT(2320), - [5687] = {.count = 1, .reusable = true}, SHIFT(2320), - [5689] = {.count = 1, .reusable = true}, SHIFT(1312), - [5691] = {.count = 1, .reusable = true}, SHIFT(2319), - [5693] = {.count = 1, .reusable = true}, SHIFT(2321), - [5695] = {.count = 1, .reusable = false}, SHIFT(2324), - [5697] = {.count = 1, .reusable = true}, SHIFT(2324), - [5699] = {.count = 1, .reusable = true}, SHIFT(2323), - [5701] = {.count = 1, .reusable = true}, SHIFT(1313), - [5703] = {.count = 1, .reusable = true}, SHIFT(2325), - [5705] = {.count = 1, .reusable = false}, SHIFT(2325), - [5707] = {.count = 1, .reusable = false}, SHIFT(2329), - [5709] = {.count = 1, .reusable = true}, SHIFT(2329), - [5711] = {.count = 1, .reusable = true}, SHIFT(1314), - [5713] = {.count = 1, .reusable = true}, SHIFT(2328), - [5715] = {.count = 1, .reusable = false}, SHIFT(1315), - [5717] = {.count = 1, .reusable = false}, SHIFT(2330), - [5719] = {.count = 1, .reusable = true}, SHIFT(2330), - [5721] = {.count = 1, .reusable = true}, SHIFT(1316), - [5723] = {.count = 1, .reusable = true}, SHIFT(2331), - [5725] = {.count = 1, .reusable = true}, SHIFT(2332), - [5727] = {.count = 1, .reusable = false}, SHIFT(2332), - [5729] = {.count = 1, .reusable = false}, SHIFT(2336), - [5731] = {.count = 1, .reusable = true}, SHIFT(2336), - [5733] = {.count = 1, .reusable = true}, SHIFT(1317), - [5735] = {.count = 1, .reusable = true}, SHIFT(2335), - [5737] = {.count = 1, .reusable = true}, SHIFT(1318), - [5739] = {.count = 1, .reusable = false}, SHIFT(2337), - [5741] = {.count = 1, .reusable = true}, SHIFT(2337), - [5743] = {.count = 1, .reusable = true}, SHIFT(1319), - [5745] = {.count = 1, .reusable = true}, SHIFT(1320), - [5747] = {.count = 1, .reusable = false}, SHIFT(2338), - [5749] = {.count = 1, .reusable = true}, SHIFT(2338), - [5751] = {.count = 1, .reusable = true}, SHIFT(1321), - [5753] = {.count = 1, .reusable = false}, SHIFT(2339), - [5755] = {.count = 1, .reusable = true}, SHIFT(2339), - [5757] = {.count = 1, .reusable = true}, SHIFT(1322), - [5759] = {.count = 1, .reusable = true}, SHIFT(1323), - [5761] = {.count = 1, .reusable = true}, SHIFT(1324), - [5763] = {.count = 1, .reusable = true}, SHIFT(1325), - [5765] = {.count = 1, .reusable = true}, SHIFT(1331), - [5767] = {.count = 1, .reusable = false}, SHIFT(2346), - [5769] = {.count = 1, .reusable = true}, SHIFT(2346), - [5771] = {.count = 1, .reusable = true}, SHIFT(2345), - [5773] = {.count = 1, .reusable = true}, SHIFT(1332), - [5775] = {.count = 1, .reusable = false}, SHIFT(2351), - [5777] = {.count = 1, .reusable = true}, SHIFT(2351), - [5779] = {.count = 1, .reusable = true}, SHIFT(2350), - [5781] = {.count = 1, .reusable = true}, SHIFT(1333), - [5783] = {.count = 1, .reusable = true}, SHIFT(1334), - [5785] = {.count = 1, .reusable = false}, SHIFT(2353), - [5787] = {.count = 1, .reusable = true}, SHIFT(2353), - [5789] = {.count = 1, .reusable = true}, SHIFT(1336), - [5791] = {.count = 1, .reusable = true}, SHIFT(2352), - [5793] = {.count = 1, .reusable = true}, SHIFT(2354), - [5795] = {.count = 1, .reusable = false}, SHIFT(2357), - [5797] = {.count = 1, .reusable = true}, SHIFT(2357), - [5799] = {.count = 1, .reusable = true}, SHIFT(2356), - [5801] = {.count = 1, .reusable = true}, SHIFT(1337), - [5803] = {.count = 1, .reusable = true}, SHIFT(2358), - [5805] = {.count = 1, .reusable = false}, SHIFT(2358), - [5807] = {.count = 1, .reusable = false}, SHIFT(2362), - [5809] = {.count = 1, .reusable = true}, SHIFT(2362), - [5811] = {.count = 1, .reusable = true}, SHIFT(1338), - [5813] = {.count = 1, .reusable = true}, SHIFT(2361), - [5815] = {.count = 1, .reusable = false}, SHIFT(2363), - [5817] = {.count = 1, .reusable = true}, SHIFT(2363), - [5819] = {.count = 1, .reusable = true}, SHIFT(1339), - [5821] = {.count = 1, .reusable = true}, SHIFT(2364), - [5823] = {.count = 1, .reusable = true}, SHIFT(2365), - [5825] = {.count = 1, .reusable = false}, SHIFT(2365), - [5827] = {.count = 1, .reusable = false}, SHIFT(2369), - [5829] = {.count = 1, .reusable = true}, SHIFT(2369), - [5831] = {.count = 1, .reusable = true}, SHIFT(1340), - [5833] = {.count = 1, .reusable = true}, SHIFT(2368), - [5835] = {.count = 1, .reusable = true}, SHIFT(1341), - [5837] = {.count = 1, .reusable = false}, SHIFT(2370), - [5839] = {.count = 1, .reusable = true}, SHIFT(2370), - [5841] = {.count = 1, .reusable = true}, SHIFT(1342), - [5843] = {.count = 1, .reusable = true}, SHIFT(1343), - [5845] = {.count = 1, .reusable = false}, SHIFT(2371), - [5847] = {.count = 1, .reusable = true}, SHIFT(2371), - [5849] = {.count = 1, .reusable = true}, SHIFT(1344), - [5851] = {.count = 1, .reusable = false}, SHIFT(2372), - [5853] = {.count = 1, .reusable = true}, SHIFT(2372), - [5855] = {.count = 1, .reusable = true}, SHIFT(1345), - [5857] = {.count = 1, .reusable = true}, SHIFT(1346), - [5859] = {.count = 1, .reusable = true}, SHIFT(1347), - [5861] = {.count = 1, .reusable = true}, SHIFT(1348), - [5863] = {.count = 1, .reusable = true}, SHIFT(1351), - [5865] = {.count = 1, .reusable = false}, SHIFT(2379), - [5867] = {.count = 1, .reusable = true}, SHIFT(2379), - [5869] = {.count = 1, .reusable = true}, SHIFT(2378), - [5871] = {.count = 1, .reusable = true}, SHIFT(1352), - [5873] = {.count = 1, .reusable = false}, SHIFT(2384), - [5875] = {.count = 1, .reusable = true}, SHIFT(2384), - [5877] = {.count = 1, .reusable = true}, SHIFT(2383), - [5879] = {.count = 1, .reusable = true}, SHIFT(1353), - [5881] = {.count = 1, .reusable = true}, SHIFT(1354), - [5883] = {.count = 1, .reusable = false}, SHIFT(2386), - [5885] = {.count = 1, .reusable = true}, SHIFT(2386), - [5887] = {.count = 1, .reusable = true}, SHIFT(1356), - [5889] = {.count = 1, .reusable = true}, SHIFT(2385), - [5891] = {.count = 1, .reusable = true}, SHIFT(2387), - [5893] = {.count = 1, .reusable = false}, SHIFT(2390), - [5895] = {.count = 1, .reusable = true}, SHIFT(2390), - [5897] = {.count = 1, .reusable = true}, SHIFT(2389), - [5899] = {.count = 1, .reusable = true}, SHIFT(1357), - [5901] = {.count = 1, .reusable = true}, SHIFT(2391), - [5903] = {.count = 1, .reusable = false}, SHIFT(2391), - [5905] = {.count = 1, .reusable = false}, SHIFT(2395), - [5907] = {.count = 1, .reusable = true}, SHIFT(2395), - [5909] = {.count = 1, .reusable = true}, SHIFT(1358), - [5911] = {.count = 1, .reusable = true}, SHIFT(2394), - [5913] = {.count = 1, .reusable = false}, SHIFT(2396), - [5915] = {.count = 1, .reusable = true}, SHIFT(2396), - [5917] = {.count = 1, .reusable = true}, SHIFT(1359), - [5919] = {.count = 1, .reusable = true}, SHIFT(2397), - [5921] = {.count = 1, .reusable = true}, SHIFT(2398), - [5923] = {.count = 1, .reusable = false}, SHIFT(2398), - [5925] = {.count = 1, .reusable = false}, SHIFT(2402), - [5927] = {.count = 1, .reusable = true}, SHIFT(2402), - [5929] = {.count = 1, .reusable = true}, SHIFT(1360), - [5931] = {.count = 1, .reusable = true}, SHIFT(2401), - [5933] = {.count = 1, .reusable = true}, SHIFT(1361), - [5935] = {.count = 1, .reusable = false}, SHIFT(2403), - [5937] = {.count = 1, .reusable = true}, SHIFT(2403), - [5939] = {.count = 1, .reusable = true}, SHIFT(1362), - [5941] = {.count = 1, .reusable = true}, SHIFT(1363), - [5943] = {.count = 1, .reusable = false}, SHIFT(2404), - [5945] = {.count = 1, .reusable = true}, SHIFT(2404), - [5947] = {.count = 1, .reusable = true}, SHIFT(1364), - [5949] = {.count = 1, .reusable = false}, SHIFT(2405), - [5951] = {.count = 1, .reusable = true}, SHIFT(2405), - [5953] = {.count = 1, .reusable = true}, SHIFT(1365), - [5955] = {.count = 1, .reusable = true}, SHIFT(1366), - [5957] = {.count = 1, .reusable = true}, SHIFT(1367), - [5959] = {.count = 1, .reusable = true}, SHIFT(1368), - [5961] = {.count = 1, .reusable = false}, SHIFT(1378), - [5963] = {.count = 1, .reusable = true}, SHIFT(2419), - [5965] = {.count = 1, .reusable = true}, SHIFT(2420), - [5967] = {.count = 1, .reusable = true}, SHIFT(1379), - [5969] = {.count = 1, .reusable = true}, SHIFT(1378), - [5971] = {.count = 1, .reusable = true}, SHIFT(1380), - [5973] = {.count = 1, .reusable = true}, SHIFT(1385), - [5975] = {.count = 1, .reusable = true}, SHIFT(1386), - [5977] = {.count = 1, .reusable = false}, SHIFT(1386), - [5979] = {.count = 1, .reusable = false}, SHIFT(1398), - [5981] = {.count = 1, .reusable = true}, SHIFT(2426), - [5983] = {.count = 1, .reusable = true}, SHIFT(1399), - [5985] = {.count = 1, .reusable = true}, SHIFT(1398), - [5987] = {.count = 1, .reusable = true}, SHIFT(1400), - [5989] = {.count = 1, .reusable = true}, SHIFT(1403), - [5991] = {.count = 1, .reusable = true}, SHIFT(1404), - [5993] = {.count = 1, .reusable = true}, SHIFT(1407), - [5995] = {.count = 1, .reusable = false}, SHIFT(1407), - [5997] = {.count = 1, .reusable = false}, SHIFT(1411), - [5999] = {.count = 1, .reusable = true}, SHIFT(1411), - [6001] = {.count = 1, .reusable = false}, SHIFT(2632), - [6003] = {.count = 1, .reusable = true}, SHIFT(1417), - [6005] = {.count = 1, .reusable = true}, SHIFT(1425), - [6007] = {.count = 1, .reusable = true}, SHIFT(1430), - [6009] = {.count = 1, .reusable = false}, SHIFT(1430), - [6011] = {.count = 1, .reusable = true}, SHIFT(1431), - [6013] = {.count = 1, .reusable = false}, SHIFT(1431), - [6015] = {.count = 1, .reusable = true}, SHIFT(1448), - [6017] = {.count = 1, .reusable = false}, SHIFT(1448), - [6019] = {.count = 1, .reusable = true}, SHIFT(1450), - [6021] = {.count = 1, .reusable = false}, SHIFT(1450), - [6023] = {.count = 1, .reusable = true}, SHIFT(1452), - [6025] = {.count = 1, .reusable = true}, SHIFT(1453), - [6027] = {.count = 1, .reusable = false}, SHIFT(1453), - [6029] = {.count = 1, .reusable = true}, SHIFT(1460), - [6031] = {.count = 1, .reusable = true}, SHIFT(1464), - [6033] = {.count = 1, .reusable = true}, SHIFT(1466), - [6035] = {.count = 1, .reusable = true}, SHIFT(1476), - [6037] = {.count = 1, .reusable = true}, SHIFT(1477), - [6039] = {.count = 1, .reusable = true}, SHIFT(1478), - [6041] = {.count = 1, .reusable = true}, SHIFT(2638), - [6043] = {.count = 1, .reusable = false}, SHIFT(2638), - [6045] = {.count = 1, .reusable = true}, SHIFT(2446), - [6047] = {.count = 1, .reusable = true}, SHIFT(2640), - [6049] = {.count = 1, .reusable = false}, SHIFT(2640), - [6051] = {.count = 1, .reusable = true}, SHIFT(2641), - [6053] = {.count = 1, .reusable = false}, SHIFT(2641), - [6055] = {.count = 1, .reusable = false}, SHIFT(1485), - [6057] = {.count = 1, .reusable = true}, SHIFT(2457), - [6059] = {.count = 1, .reusable = true}, SHIFT(2458), - [6061] = {.count = 1, .reusable = true}, SHIFT(1486), - [6063] = {.count = 1, .reusable = true}, SHIFT(1485), - [6065] = {.count = 1, .reusable = true}, SHIFT(1487), - [6067] = {.count = 1, .reusable = true}, SHIFT(1488), - [6069] = {.count = 1, .reusable = false}, SHIFT(1488), - [6071] = {.count = 1, .reusable = false}, SHIFT(1495), - [6073] = {.count = 1, .reusable = true}, SHIFT(2460), - [6075] = {.count = 1, .reusable = true}, SHIFT(1496), - [6077] = {.count = 1, .reusable = true}, SHIFT(1495), - [6079] = {.count = 1, .reusable = true}, SHIFT(1497), - [6081] = {.count = 1, .reusable = true}, SHIFT(1506), - [6083] = {.count = 1, .reusable = false}, SHIFT(1530), - [6085] = {.count = 1, .reusable = true}, SHIFT(1530), - [6087] = {.count = 1, .reusable = true}, SHIFT(2468), - [6089] = {.count = 1, .reusable = true}, SHIFT(2469), - [6091] = {.count = 1, .reusable = true}, SHIFT(1531), - [6093] = {.count = 1, .reusable = true}, SHIFT(1532), - [6095] = {.count = 1, .reusable = true}, SHIFT(2449), - [6097] = {.count = 1, .reusable = false}, SHIFT(2449), - [6099] = {.count = 1, .reusable = false}, SHIFT(1539), - [6101] = {.count = 1, .reusable = true}, SHIFT(1539), - [6103] = {.count = 1, .reusable = true}, SHIFT(2470), - [6105] = {.count = 1, .reusable = true}, SHIFT(1540), - [6107] = {.count = 1, .reusable = true}, SHIFT(1541), - [6109] = {.count = 1, .reusable = true}, SHIFT(1549), - [6111] = {.count = 1, .reusable = false}, SHIFT(1573), - [6113] = {.count = 1, .reusable = true}, SHIFT(1573), - [6115] = {.count = 1, .reusable = true}, SHIFT(2477), - [6117] = {.count = 1, .reusable = true}, SHIFT(2478), - [6119] = {.count = 1, .reusable = true}, SHIFT(1574), - [6121] = {.count = 1, .reusable = true}, SHIFT(1575), - [6123] = {.count = 1, .reusable = false}, SHIFT(1582), - [6125] = {.count = 1, .reusable = true}, SHIFT(1582), - [6127] = {.count = 1, .reusable = true}, SHIFT(2479), - [6129] = {.count = 1, .reusable = true}, SHIFT(1583), - [6131] = {.count = 1, .reusable = true}, SHIFT(1584), - [6133] = {.count = 1, .reusable = true}, SHIFT(1592), - [6135] = {.count = 1, .reusable = false}, SHIFT(1616), - [6137] = {.count = 1, .reusable = true}, SHIFT(2486), - [6139] = {.count = 1, .reusable = true}, SHIFT(2487), - [6141] = {.count = 1, .reusable = true}, SHIFT(1617), - [6143] = {.count = 1, .reusable = true}, SHIFT(1616), - [6145] = {.count = 1, .reusable = true}, SHIFT(1618), - [6147] = {.count = 1, .reusable = false}, SHIFT(1625), - [6149] = {.count = 1, .reusable = true}, SHIFT(2488), - [6151] = {.count = 1, .reusable = true}, SHIFT(1626), - [6153] = {.count = 1, .reusable = true}, SHIFT(1625), - [6155] = {.count = 1, .reusable = true}, SHIFT(1627), - [6157] = {.count = 1, .reusable = true}, SHIFT(1635), - [6159] = {.count = 1, .reusable = false}, SHIFT(1659), - [6161] = {.count = 1, .reusable = true}, SHIFT(2495), - [6163] = {.count = 1, .reusable = true}, SHIFT(2496), - [6165] = {.count = 1, .reusable = true}, SHIFT(1660), - [6167] = {.count = 1, .reusable = true}, SHIFT(1659), - [6169] = {.count = 1, .reusable = true}, SHIFT(1661), - [6171] = {.count = 1, .reusable = false}, SHIFT(1668), - [6173] = {.count = 1, .reusable = true}, SHIFT(2497), - [6175] = {.count = 1, .reusable = true}, SHIFT(1669), - [6177] = {.count = 1, .reusable = true}, SHIFT(1668), - [6179] = {.count = 1, .reusable = true}, SHIFT(1670), - [6181] = {.count = 1, .reusable = true}, SHIFT(1678), - [6183] = {.count = 1, .reusable = false}, SHIFT(1702), - [6185] = {.count = 1, .reusable = true}, SHIFT(1702), - [6187] = {.count = 1, .reusable = true}, SHIFT(2504), - [6189] = {.count = 1, .reusable = true}, SHIFT(2505), - [6191] = {.count = 1, .reusable = true}, SHIFT(1703), - [6193] = {.count = 1, .reusable = true}, SHIFT(1704), - [6195] = {.count = 1, .reusable = false}, SHIFT(1711), - [6197] = {.count = 1, .reusable = true}, SHIFT(1711), - [6199] = {.count = 1, .reusable = true}, SHIFT(2506), - [6201] = {.count = 1, .reusable = true}, SHIFT(1712), - [6203] = {.count = 1, .reusable = true}, SHIFT(1713), - [6205] = {.count = 1, .reusable = true}, SHIFT(1721), - [6207] = {.count = 1, .reusable = false}, SHIFT(1745), - [6209] = {.count = 1, .reusable = true}, SHIFT(2511), - [6211] = {.count = 1, .reusable = true}, SHIFT(2512), - [6213] = {.count = 1, .reusable = true}, SHIFT(1746), - [6215] = {.count = 1, .reusable = true}, SHIFT(1745), - [6217] = {.count = 1, .reusable = false}, SHIFT(1753), - [6219] = {.count = 1, .reusable = true}, SHIFT(2513), - [6221] = {.count = 1, .reusable = true}, SHIFT(1754), - [6223] = {.count = 1, .reusable = true}, SHIFT(1753), - [6225] = {.count = 1, .reusable = true}, SHIFT(1755), - [6227] = {.count = 1, .reusable = true}, SHIFT(1762), - [6229] = {.count = 1, .reusable = false}, SHIFT(1785), - [6231] = {.count = 1, .reusable = true}, SHIFT(2518), - [6233] = {.count = 1, .reusable = true}, SHIFT(2519), - [6235] = {.count = 1, .reusable = true}, SHIFT(1786), - [6237] = {.count = 1, .reusable = true}, SHIFT(1785), - [6239] = {.count = 1, .reusable = false}, SHIFT(1793), - [6241] = {.count = 1, .reusable = true}, SHIFT(2520), - [6243] = {.count = 1, .reusable = true}, SHIFT(1794), - [6245] = {.count = 1, .reusable = true}, SHIFT(1793), - [6247] = {.count = 1, .reusable = true}, SHIFT(1795), - [6249] = {.count = 1, .reusable = true}, SHIFT(1802), - [6251] = {.count = 1, .reusable = false}, SHIFT(1825), - [6253] = {.count = 1, .reusable = true}, SHIFT(2525), - [6255] = {.count = 1, .reusable = true}, SHIFT(2526), - [6257] = {.count = 1, .reusable = true}, SHIFT(1826), - [6259] = {.count = 1, .reusable = true}, SHIFT(1825), - [6261] = {.count = 1, .reusable = false}, SHIFT(1833), - [6263] = {.count = 1, .reusable = true}, SHIFT(2527), - [6265] = {.count = 1, .reusable = true}, SHIFT(1834), - [6267] = {.count = 1, .reusable = true}, SHIFT(1833), - [6269] = {.count = 1, .reusable = true}, SHIFT(1835), - [6271] = {.count = 1, .reusable = true}, SHIFT(1842), - [6273] = {.count = 1, .reusable = false}, SHIFT(1865), - [6275] = {.count = 1, .reusable = true}, SHIFT(1865), - [6277] = {.count = 1, .reusable = true}, SHIFT(2532), - [6279] = {.count = 1, .reusable = true}, SHIFT(2533), - [6281] = {.count = 1, .reusable = true}, SHIFT(1866), - [6283] = {.count = 1, .reusable = false}, SHIFT(1873), - [6285] = {.count = 1, .reusable = true}, SHIFT(1873), - [6287] = {.count = 1, .reusable = true}, SHIFT(2534), - [6289] = {.count = 1, .reusable = true}, SHIFT(1874), - [6291] = {.count = 1, .reusable = true}, SHIFT(1875), - [6293] = {.count = 1, .reusable = true}, SHIFT(1882), - [6295] = {.count = 1, .reusable = false}, SHIFT(1905), - [6297] = {.count = 1, .reusable = true}, SHIFT(1905), - [6299] = {.count = 1, .reusable = true}, SHIFT(2539), - [6301] = {.count = 1, .reusable = true}, SHIFT(2540), - [6303] = {.count = 1, .reusable = true}, SHIFT(1906), - [6305] = {.count = 1, .reusable = false}, SHIFT(1913), - [6307] = {.count = 1, .reusable = true}, SHIFT(1913), - [6309] = {.count = 1, .reusable = true}, SHIFT(2541), - [6311] = {.count = 1, .reusable = true}, SHIFT(1914), - [6313] = {.count = 1, .reusable = true}, SHIFT(1915), - [6315] = {.count = 1, .reusable = true}, SHIFT(1922), - [6317] = {.count = 1, .reusable = false}, SHIFT(1945), - [6319] = {.count = 1, .reusable = true}, SHIFT(1945), - [6321] = {.count = 1, .reusable = true}, SHIFT(2546), - [6323] = {.count = 1, .reusable = true}, SHIFT(2547), - [6325] = {.count = 1, .reusable = true}, SHIFT(1946), - [6327] = {.count = 1, .reusable = false}, SHIFT(1953), - [6329] = {.count = 1, .reusable = true}, SHIFT(1953), - [6331] = {.count = 1, .reusable = true}, SHIFT(2548), - [6333] = {.count = 1, .reusable = true}, SHIFT(1954), - [6335] = {.count = 1, .reusable = true}, SHIFT(1955), - [6337] = {.count = 1, .reusable = true}, SHIFT(1962), - [6339] = {.count = 1, .reusable = false}, SHIFT(1985), - [6341] = {.count = 1, .reusable = true}, SHIFT(1985), - [6343] = {.count = 1, .reusable = true}, SHIFT(2553), - [6345] = {.count = 1, .reusable = true}, SHIFT(2554), - [6347] = {.count = 1, .reusable = true}, SHIFT(1986), - [6349] = {.count = 1, .reusable = false}, SHIFT(1993), - [6351] = {.count = 1, .reusable = true}, SHIFT(1993), - [6353] = {.count = 1, .reusable = true}, SHIFT(2555), - [6355] = {.count = 1, .reusable = true}, SHIFT(1994), - [6357] = {.count = 1, .reusable = true}, SHIFT(1995), - [6359] = {.count = 1, .reusable = true}, SHIFT(2002), - [6361] = {.count = 1, .reusable = false}, SHIFT(2025), - [6363] = {.count = 1, .reusable = true}, SHIFT(2560), - [6365] = {.count = 1, .reusable = true}, SHIFT(2561), - [6367] = {.count = 1, .reusable = true}, SHIFT(2026), - [6369] = {.count = 1, .reusable = true}, SHIFT(2025), - [6371] = {.count = 1, .reusable = false}, SHIFT(2033), - [6373] = {.count = 1, .reusable = true}, SHIFT(2562), - [6375] = {.count = 1, .reusable = true}, SHIFT(2034), - [6377] = {.count = 1, .reusable = true}, SHIFT(2033), - [6379] = {.count = 1, .reusable = true}, SHIFT(2035), - [6381] = {.count = 1, .reusable = true}, SHIFT(2042), - [6383] = {.count = 1, .reusable = false}, SHIFT(2065), - [6385] = {.count = 1, .reusable = true}, SHIFT(2567), - [6387] = {.count = 1, .reusable = true}, SHIFT(2568), - [6389] = {.count = 1, .reusable = true}, SHIFT(2066), - [6391] = {.count = 1, .reusable = true}, SHIFT(2065), - [6393] = {.count = 1, .reusable = false}, SHIFT(2073), - [6395] = {.count = 1, .reusable = true}, SHIFT(2569), - [6397] = {.count = 1, .reusable = true}, SHIFT(2074), - [6399] = {.count = 1, .reusable = true}, SHIFT(2073), - [6401] = {.count = 1, .reusable = true}, SHIFT(2075), - [6403] = {.count = 1, .reusable = true}, SHIFT(2082), - [6405] = {.count = 1, .reusable = false}, SHIFT(2105), - [6407] = {.count = 1, .reusable = true}, SHIFT(2105), - [6409] = {.count = 1, .reusable = true}, SHIFT(2574), - [6411] = {.count = 1, .reusable = true}, SHIFT(2575), - [6413] = {.count = 1, .reusable = true}, SHIFT(2106), - [6415] = {.count = 1, .reusable = false}, SHIFT(2113), - [6417] = {.count = 1, .reusable = true}, SHIFT(2113), - [6419] = {.count = 1, .reusable = true}, SHIFT(2576), - [6421] = {.count = 1, .reusable = true}, SHIFT(2114), - [6423] = {.count = 1, .reusable = true}, SHIFT(2115), - [6425] = {.count = 1, .reusable = true}, SHIFT(2122), - [6427] = {.count = 1, .reusable = false}, SHIFT(2145), - [6429] = {.count = 1, .reusable = true}, SHIFT(2145), - [6431] = {.count = 1, .reusable = true}, SHIFT(2581), - [6433] = {.count = 1, .reusable = true}, SHIFT(2582), - [6435] = {.count = 1, .reusable = true}, SHIFT(2146), - [6437] = {.count = 1, .reusable = false}, SHIFT(2153), - [6439] = {.count = 1, .reusable = true}, SHIFT(2153), - [6441] = {.count = 1, .reusable = true}, SHIFT(2583), - [6443] = {.count = 1, .reusable = true}, SHIFT(2154), - [6445] = {.count = 1, .reusable = true}, SHIFT(2155), - [6447] = {.count = 1, .reusable = true}, SHIFT(2162), - [6449] = {.count = 1, .reusable = false}, SHIFT(2185), - [6451] = {.count = 1, .reusable = true}, SHIFT(2185), - [6453] = {.count = 1, .reusable = true}, SHIFT(2588), - [6455] = {.count = 1, .reusable = true}, SHIFT(2589), - [6457] = {.count = 1, .reusable = true}, SHIFT(2186), - [6459] = {.count = 1, .reusable = false}, SHIFT(2193), - [6461] = {.count = 1, .reusable = true}, SHIFT(2193), - [6463] = {.count = 1, .reusable = true}, SHIFT(2590), - [6465] = {.count = 1, .reusable = true}, SHIFT(2194), - [6467] = {.count = 1, .reusable = true}, SHIFT(2195), - [6469] = {.count = 1, .reusable = true}, SHIFT(2202), - [6471] = {.count = 1, .reusable = false}, SHIFT(2225), - [6473] = {.count = 1, .reusable = true}, SHIFT(2225), - [6475] = {.count = 1, .reusable = true}, SHIFT(2595), - [6477] = {.count = 1, .reusable = true}, SHIFT(2596), - [6479] = {.count = 1, .reusable = true}, SHIFT(2226), - [6481] = {.count = 1, .reusable = false}, SHIFT(2233), - [6483] = {.count = 1, .reusable = true}, SHIFT(2233), - [6485] = {.count = 1, .reusable = true}, SHIFT(2597), - [6487] = {.count = 1, .reusable = true}, SHIFT(2234), - [6489] = {.count = 1, .reusable = true}, SHIFT(2235), - [6491] = {.count = 1, .reusable = true}, SHIFT(2242), - [6493] = {.count = 1, .reusable = false}, SHIFT(2265), - [6495] = {.count = 1, .reusable = true}, SHIFT(2265), - [6497] = {.count = 1, .reusable = true}, SHIFT(2602), - [6499] = {.count = 1, .reusable = true}, SHIFT(2603), - [6501] = {.count = 1, .reusable = true}, SHIFT(2266), - [6503] = {.count = 1, .reusable = false}, SHIFT(2273), - [6505] = {.count = 1, .reusable = true}, SHIFT(2273), - [6507] = {.count = 1, .reusable = true}, SHIFT(2604), - [6509] = {.count = 1, .reusable = true}, SHIFT(2274), - [6511] = {.count = 1, .reusable = true}, SHIFT(2275), - [6513] = {.count = 1, .reusable = true}, SHIFT(2282), - [6515] = {.count = 1, .reusable = false}, SHIFT(2305), - [6517] = {.count = 1, .reusable = true}, SHIFT(2305), - [6519] = {.count = 1, .reusable = true}, SHIFT(2609), - [6521] = {.count = 1, .reusable = true}, SHIFT(2610), - [6523] = {.count = 1, .reusable = true}, SHIFT(2306), - [6525] = {.count = 1, .reusable = false}, SHIFT(2313), - [6527] = {.count = 1, .reusable = true}, SHIFT(2313), - [6529] = {.count = 1, .reusable = true}, SHIFT(2611), - [6531] = {.count = 1, .reusable = true}, SHIFT(2314), - [6533] = {.count = 1, .reusable = true}, SHIFT(2315), - [6535] = {.count = 1, .reusable = true}, SHIFT(2322), - [6537] = {.count = 1, .reusable = false}, SHIFT(2341), - [6539] = {.count = 1, .reusable = true}, SHIFT(2341), - [6541] = {.count = 1, .reusable = true}, SHIFT(2615), - [6543] = {.count = 1, .reusable = true}, SHIFT(2616), - [6545] = {.count = 1, .reusable = true}, SHIFT(2342), - [6547] = {.count = 1, .reusable = false}, SHIFT(2347), - [6549] = {.count = 1, .reusable = true}, SHIFT(2347), - [6551] = {.count = 1, .reusable = true}, SHIFT(2617), - [6553] = {.count = 1, .reusable = true}, SHIFT(2348), - [6555] = {.count = 1, .reusable = true}, SHIFT(2349), - [6557] = {.count = 1, .reusable = true}, SHIFT(2355), - [6559] = {.count = 1, .reusable = false}, SHIFT(2374), - [6561] = {.count = 1, .reusable = true}, SHIFT(2374), - [6563] = {.count = 1, .reusable = true}, SHIFT(2621), - [6565] = {.count = 1, .reusable = true}, SHIFT(2622), - [6567] = {.count = 1, .reusable = true}, SHIFT(2375), - [6569] = {.count = 1, .reusable = false}, SHIFT(2380), - [6571] = {.count = 1, .reusable = true}, SHIFT(2380), - [6573] = {.count = 1, .reusable = true}, SHIFT(2623), - [6575] = {.count = 1, .reusable = true}, SHIFT(2381), - [6577] = {.count = 1, .reusable = true}, SHIFT(2382), - [6579] = {.count = 1, .reusable = true}, SHIFT(2388), - [6581] = {.count = 1, .reusable = true}, SHIFT(2644), - [6583] = {.count = 1, .reusable = true}, SHIFT(2425), - [6585] = {.count = 1, .reusable = false}, SHIFT(2629), - [6587] = {.count = 1, .reusable = true}, SHIFT(2629), - [6589] = {.count = 1, .reusable = false}, SHIFT(2428), - [6591] = {.count = 1, .reusable = false}, SHIFT(2630), - [6593] = {.count = 1, .reusable = true}, SHIFT(2630), - [6595] = {.count = 1, .reusable = false}, SHIFT(2429), - [6597] = {.count = 1, .reusable = true}, SHIFT(2430), - [6599] = {.count = 1, .reusable = true}, SHIFT(2431), - [6601] = {.count = 1, .reusable = false}, SHIFT(2432), - [6603] = {.count = 1, .reusable = false}, SHIFT(2437), - [6605] = {.count = 1, .reusable = false}, SHIFT(2441), - [6607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2448), - [6610] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2465), - [6613] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2447), - [6616] = {.count = 1, .reusable = true}, SHIFT(2626), - [6618] = {.count = 1, .reusable = false}, SHIFT(2626), - [6620] = {.count = 1, .reusable = false}, SHIFT(2631), - [6622] = {.count = 1, .reusable = true}, SHIFT(2634), - [6624] = {.count = 1, .reusable = false}, SHIFT(2634), + [61] = {.count = 1, .reusable = false}, SHIFT(26), + [63] = {.count = 1, .reusable = true}, SHIFT(27), + [65] = {.count = 1, .reusable = false}, SHIFT(2526), + [67] = {.count = 1, .reusable = false}, SHIFT(384), + [69] = {.count = 1, .reusable = false}, SHIFT(385), + [71] = {.count = 1, .reusable = true}, SHIFT(1427), + [73] = {.count = 1, .reusable = true}, SHIFT(2527), + [75] = {.count = 1, .reusable = false}, SHIFT(2528), + [77] = {.count = 1, .reusable = true}, SHIFT(2529), + [79] = {.count = 1, .reusable = true}, SHIFT(386), + [81] = {.count = 1, .reusable = false}, SHIFT(2530), + [83] = {.count = 1, .reusable = true}, SHIFT(1428), + [85] = {.count = 1, .reusable = false}, SHIFT(1429), + [87] = {.count = 1, .reusable = false}, SHIFT(2770), + [89] = {.count = 1, .reusable = false}, SHIFT(2792), + [91] = {.count = 1, .reusable = true}, SHIFT(2531), + [93] = {.count = 1, .reusable = false}, SHIFT(386), + [95] = {.count = 1, .reusable = true}, SHIFT(2532), + [97] = {.count = 1, .reusable = false}, SHIFT(387), + [99] = {.count = 1, .reusable = true}, SHIFT(2533), + [101] = {.count = 1, .reusable = false}, SHIFT(388), + [103] = {.count = 1, .reusable = false}, SHIFT(389), + [105] = {.count = 1, .reusable = true}, SHIFT(2535), + [107] = {.count = 1, .reusable = false}, SHIFT(2771), + [109] = {.count = 1, .reusable = false}, SHIFT(2536), + [111] = {.count = 1, .reusable = false}, SHIFT(2537), + [113] = {.count = 1, .reusable = true}, SHIFT(2538), + [115] = {.count = 1, .reusable = true}, SHIFT(2569), + [117] = {.count = 1, .reusable = false}, SHIFT(39), + [119] = {.count = 1, .reusable = true}, SHIFT(2570), + [121] = {.count = 1, .reusable = true}, SHIFT(1537), + [123] = {.count = 1, .reusable = true}, SHIFT(2567), + [125] = {.count = 1, .reusable = false}, SHIFT(2568), + [127] = {.count = 1, .reusable = true}, SHIFT(39), + [129] = {.count = 1, .reusable = true}, SHIFT(543), + [131] = {.count = 1, .reusable = true}, SHIFT(2573), + [133] = {.count = 1, .reusable = false}, SHIFT(1538), + [135] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), + [137] = {.count = 1, .reusable = false}, SHIFT(1583), + [139] = {.count = 1, .reusable = false}, SHIFT(2579), + [141] = {.count = 1, .reusable = false}, SHIFT(2580), + [143] = {.count = 1, .reusable = false}, SHIFT(2581), + [145] = {.count = 1, .reusable = false}, SHIFT(42), + [147] = {.count = 1, .reusable = false}, SHIFT(44), + [149] = {.count = 1, .reusable = false}, SHIFT(1584), + [151] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), + [153] = {.count = 1, .reusable = false}, SHIFT(2582), + [155] = {.count = 1, .reusable = true}, SHIFT(2571), + [157] = {.count = 1, .reusable = false}, SHIFT(639), + [159] = {.count = 1, .reusable = false}, SHIFT(2584), + [161] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), + [163] = {.count = 1, .reusable = false}, SHIFT(1627), + [165] = {.count = 1, .reusable = false}, SHIFT(2589), + [167] = {.count = 1, .reusable = false}, SHIFT(2590), + [169] = {.count = 1, .reusable = false}, SHIFT(2591), + [171] = {.count = 1, .reusable = false}, SHIFT(45), + [173] = {.count = 1, .reusable = false}, SHIFT(47), + [175] = {.count = 1, .reusable = false}, SHIFT(1628), + [177] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), + [179] = {.count = 1, .reusable = false}, SHIFT(2592), + [181] = {.count = 1, .reusable = false}, SHIFT(701), + [183] = {.count = 1, .reusable = false}, SHIFT(2594), + [185] = {.count = 1, .reusable = false}, SHIFT(48), + [187] = {.count = 1, .reusable = false}, SHIFT(2602), + [189] = {.count = 1, .reusable = false}, SHIFT(50), + [191] = {.count = 1, .reusable = false}, SHIFT(2599), + [193] = {.count = 1, .reusable = false}, SHIFT(2604), + [195] = {.count = 1, .reusable = false}, SHIFT(2600), + [197] = {.count = 1, .reusable = false}, SHIFT(49), + [199] = {.count = 1, .reusable = true}, SHIFT(52), + [201] = {.count = 1, .reusable = true}, SHIFT(2601), + [203] = {.count = 1, .reusable = false}, SHIFT(53), + [205] = {.count = 1, .reusable = true}, SHIFT(2612), + [207] = {.count = 1, .reusable = false}, SHIFT(54), + [209] = {.count = 1, .reusable = true}, SHIFT(1671), + [211] = {.count = 1, .reusable = true}, SHIFT(2609), + [213] = {.count = 1, .reusable = false}, SHIFT(2610), + [215] = {.count = 1, .reusable = true}, SHIFT(53), + [217] = {.count = 1, .reusable = true}, SHIFT(742), + [219] = {.count = 1, .reusable = true}, SHIFT(2614), + [221] = {.count = 1, .reusable = false}, SHIFT(1672), + [223] = {.count = 1, .reusable = true}, SHIFT(54), + [225] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), + [227] = {.count = 1, .reusable = true}, SHIFT(60), + [229] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), + [231] = {.count = 1, .reusable = true}, SHIFT(62), + [233] = {.count = 1, .reusable = true}, SHIFT(63), + [235] = {.count = 1, .reusable = true}, SHIFT(67), + [237] = {.count = 1, .reusable = false}, SHIFT(68), + [239] = {.count = 1, .reusable = true}, SHIFT(68), + [241] = {.count = 1, .reusable = true}, SHIFT(69), + [243] = {.count = 1, .reusable = true}, SHIFT(2611), + [245] = {.count = 1, .reusable = true}, SHIFT(780), + [247] = {.count = 1, .reusable = false}, SHIFT(73), + [249] = {.count = 1, .reusable = true}, SHIFT(2622), + [251] = {.count = 1, .reusable = true}, SHIFT(1715), + [253] = {.count = 1, .reusable = true}, SHIFT(2619), + [255] = {.count = 1, .reusable = true}, SHIFT(73), + [257] = {.count = 1, .reusable = false}, SHIFT(2620), + [259] = {.count = 1, .reusable = true}, SHIFT(2624), + [261] = {.count = 1, .reusable = false}, SHIFT(1716), + [263] = {.count = 1, .reusable = false}, SHIFT(77), + [265] = {.count = 1, .reusable = true}, SHIFT(78), + [267] = {.count = 1, .reusable = true}, SHIFT(77), + [269] = {.count = 1, .reusable = true}, SHIFT(79), + [271] = {.count = 1, .reusable = true}, SHIFT(80), + [273] = {.count = 1, .reusable = true}, SHIFT(2583), + [275] = {.count = 1, .reusable = true}, SHIFT(82), + [277] = {.count = 1, .reusable = true}, SHIFT(83), + [279] = {.count = 1, .reusable = true}, SHIFT(84), + [281] = {.count = 1, .reusable = false}, SHIFT(84), + [283] = {.count = 1, .reusable = false}, SHIFT(85), + [285] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 1), + [287] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 1), + [289] = {.count = 1, .reusable = false}, SHIFT(538), + [291] = {.count = 1, .reusable = false}, SHIFT(539), + [293] = {.count = 1, .reusable = false}, SHIFT(1525), + [295] = {.count = 1, .reusable = true}, SHIFT(87), + [297] = {.count = 1, .reusable = true}, SHIFT(88), + [299] = {.count = 1, .reusable = true}, SHIFT(2540), + [301] = {.count = 1, .reusable = true}, SHIFT(2621), + [303] = {.count = 1, .reusable = false}, SHIFT(407), + [305] = {.count = 1, .reusable = true}, SHIFT(2632), + [307] = {.count = 1, .reusable = false}, SHIFT(408), + [309] = {.count = 1, .reusable = true}, SHIFT(1759), + [311] = {.count = 1, .reusable = true}, SHIFT(2629), + [313] = {.count = 1, .reusable = false}, SHIFT(2630), + [315] = {.count = 1, .reusable = true}, SHIFT(407), + [317] = {.count = 1, .reusable = true}, SHIFT(818), + [319] = {.count = 1, .reusable = true}, SHIFT(2633), + [321] = {.count = 1, .reusable = false}, SHIFT(1760), + [323] = {.count = 1, .reusable = true}, SHIFT(408), + [325] = {.count = 1, .reusable = false}, SHIFT(94), + [327] = {.count = 1, .reusable = false}, SHIFT(1426), + [329] = {.count = 1, .reusable = true}, SHIFT(93), + [331] = {.count = 1, .reusable = true}, SHIFT(2534), + [333] = {.count = 1, .reusable = false}, SHIFT(95), + [335] = {.count = 1, .reusable = false}, SHIFT(96), + [337] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 1), + [339] = {.count = 1, .reusable = false}, SHIFT(97), + [341] = {.count = 1, .reusable = false}, SHIFT(92), + [343] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), + [345] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), + [347] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .production_id = 1), + [349] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .production_id = 1), + [351] = {.count = 1, .reusable = false}, SHIFT(102), + [353] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [355] = {.count = 1, .reusable = true}, SHIFT(22), + [357] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), + [359] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), + [361] = {.count = 1, .reusable = false}, SHIFT(6), + [363] = {.count = 1, .reusable = false}, SHIFT(7), + [365] = {.count = 1, .reusable = false}, SHIFT(9), + [367] = {.count = 1, .reusable = false}, SHIFT(106), + [369] = {.count = 1, .reusable = false}, SHIFT(107), + [371] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), + [373] = {.count = 1, .reusable = false}, SHIFT(17), + [375] = {.count = 1, .reusable = false}, SHIFT(23), + [377] = {.count = 1, .reusable = true}, SHIFT(110), + [379] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [381] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), + [383] = {.count = 1, .reusable = true}, SHIFT(1545), + [385] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .production_id = 2), + [387] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .production_id = 2), + [389] = {.count = 1, .reusable = true}, SHIFT(574), + [391] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [393] = {.count = 1, .reusable = true}, SHIFT(1591), + [395] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [397] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [399] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [401] = {.count = 1, .reusable = false}, SHIFT(657), + [403] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), + [405] = {.count = 1, .reusable = false}, SHIFT(111), + [407] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [409] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [411] = {.count = 1, .reusable = true}, SHIFT(1635), + [413] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [415] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [417] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [419] = {.count = 1, .reusable = false}, SHIFT(710), + [421] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), + [423] = {.count = 1, .reusable = false}, SHIFT(112), + [425] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [427] = {.count = 1, .reusable = true}, SHIFT(113), + [429] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [431] = {.count = 1, .reusable = false}, SHIFT(745), + [433] = {.count = 1, .reusable = false}, SHIFT(746), + [435] = {.count = 1, .reusable = false}, SHIFT(114), + [437] = {.count = 1, .reusable = false}, SHIFT(115), + [439] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), + [441] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [443] = {.count = 1, .reusable = false}, SHIFT(116), + [445] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [447] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [449] = {.count = 1, .reusable = true}, SHIFT(1679), + [451] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .production_id = 1), + [453] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .production_id = 1), + [455] = {.count = 1, .reusable = false}, SHIFT(748), + [457] = {.count = 1, .reusable = true}, SHIFT(120), + [459] = {.count = 1, .reusable = true}, SHIFT(121), + [461] = {.count = 1, .reusable = false}, SHIFT(120), + [463] = {.count = 1, .reusable = true}, SHIFT(122), + [465] = {.count = 1, .reusable = true}, SHIFT(123), + [467] = {.count = 1, .reusable = true}, SHIFT(124), + [469] = {.count = 1, .reusable = true}, SHIFT(125), + [471] = {.count = 1, .reusable = false}, SHIFT(126), + [473] = {.count = 1, .reusable = true}, SHIFT(126), + [475] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [477] = {.count = 1, .reusable = true}, SHIFT(127), + [479] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [481] = {.count = 1, .reusable = true}, SHIFT(129), + [483] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [485] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [487] = {.count = 1, .reusable = false}, SHIFT(416), + [489] = {.count = 1, .reusable = false}, SHIFT(1536), + [491] = {.count = 1, .reusable = true}, SHIFT(132), + [493] = {.count = 1, .reusable = false}, SHIFT(131), + [495] = {.count = 1, .reusable = true}, SHIFT(2572), + [497] = {.count = 1, .reusable = false}, SHIFT(1451), + [499] = {.count = 1, .reusable = false}, SHIFT(419), + [501] = {.count = 1, .reusable = false}, SHIFT(1452), + [503] = {.count = 1, .reusable = true}, SHIFT(133), + [505] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .production_id = 3), + [507] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .production_id = 3), + [509] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), + [511] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), + [513] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [515] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [517] = {.count = 1, .reusable = true}, SHIFT(134), + [519] = {.count = 1, .reusable = true}, SHIFT(135), + [521] = {.count = 1, .reusable = false}, SHIFT(135), + [523] = {.count = 1, .reusable = false}, SHIFT(136), + [525] = {.count = 1, .reusable = true}, SHIFT(1723), + [527] = {.count = 1, .reusable = true}, SHIFT(136), + [529] = {.count = 1, .reusable = false}, SHIFT(137), + [531] = {.count = 1, .reusable = false}, SHIFT(138), + [533] = {.count = 1, .reusable = false}, SHIFT(786), + [535] = {.count = 1, .reusable = true}, SHIFT(138), + [537] = {.count = 1, .reusable = false}, SHIFT(139), + [539] = {.count = 1, .reusable = true}, SHIFT(140), + [541] = {.count = 1, .reusable = false}, SHIFT(145), + [543] = {.count = 1, .reusable = true}, SHIFT(2647), + [545] = {.count = 1, .reusable = false}, SHIFT(141), + [547] = {.count = 1, .reusable = true}, SHIFT(2656), + [549] = {.count = 1, .reusable = true}, SHIFT(1885), + [551] = {.count = 1, .reusable = true}, SHIFT(2653), + [553] = {.count = 1, .reusable = false}, SHIFT(2654), + [555] = {.count = 1, .reusable = true}, SHIFT(141), + [557] = {.count = 1, .reusable = true}, SHIFT(145), + [559] = {.count = 1, .reusable = false}, SHIFT(922), + [561] = {.count = 1, .reusable = true}, SHIFT(142), + [563] = {.count = 1, .reusable = true}, SHIFT(2657), + [565] = {.count = 1, .reusable = true}, SHIFT(143), + [567] = {.count = 1, .reusable = false}, SHIFT(1886), + [569] = {.count = 1, .reusable = false}, SHIFT(146), + [571] = {.count = 1, .reusable = true}, SHIFT(146), + [573] = {.count = 1, .reusable = true}, SHIFT(147), + [575] = {.count = 1, .reusable = true}, SHIFT(148), + [577] = {.count = 1, .reusable = true}, SHIFT(149), + [579] = {.count = 1, .reusable = true}, SHIFT(2544), + [581] = {.count = 1, .reusable = false}, SHIFT(152), + [583] = {.count = 1, .reusable = true}, SHIFT(152), + [585] = {.count = 1, .reusable = true}, SHIFT(150), + [587] = {.count = 1, .reusable = true}, SHIFT(151), + [589] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), + [591] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), + [593] = {.count = 1, .reusable = true}, SHIFT(153), + [595] = {.count = 1, .reusable = true}, SHIFT(2655), + [597] = {.count = 1, .reusable = false}, SHIFT(154), + [599] = {.count = 1, .reusable = true}, SHIFT(2664), + [601] = {.count = 1, .reusable = true}, SHIFT(1926), + [603] = {.count = 1, .reusable = true}, SHIFT(2661), + [605] = {.count = 1, .reusable = false}, SHIFT(2662), + [607] = {.count = 1, .reusable = true}, SHIFT(154), + [609] = {.count = 1, .reusable = true}, SHIFT(955), + [611] = {.count = 1, .reusable = true}, SHIFT(2665), + [613] = {.count = 1, .reusable = false}, SHIFT(1927), + [615] = {.count = 1, .reusable = true}, SHIFT(155), + [617] = {.count = 1, .reusable = true}, SHIFT(2663), + [619] = {.count = 1, .reusable = true}, SHIFT(988), + [621] = {.count = 1, .reusable = false}, SHIFT(157), + [623] = {.count = 1, .reusable = true}, SHIFT(2672), + [625] = {.count = 1, .reusable = true}, SHIFT(1967), + [627] = {.count = 1, .reusable = true}, SHIFT(2669), + [629] = {.count = 1, .reusable = true}, SHIFT(157), + [631] = {.count = 1, .reusable = false}, SHIFT(2670), + [633] = {.count = 1, .reusable = true}, SHIFT(2673), + [635] = {.count = 1, .reusable = false}, SHIFT(1968), + [637] = {.count = 1, .reusable = false}, SHIFT(160), + [639] = {.count = 1, .reusable = true}, SHIFT(160), + [641] = {.count = 1, .reusable = true}, SHIFT(163), + [643] = {.count = 1, .reusable = true}, SHIFT(164), + [645] = {.count = 1, .reusable = false}, SHIFT(166), + [647] = {.count = 1, .reusable = true}, SHIFT(166), + [649] = {.count = 1, .reusable = false}, SHIFT(165), + [651] = {.count = 1, .reusable = false}, SHIFT(2575), + [653] = {.count = 1, .reusable = false}, SHIFT(2671), + [655] = {.count = 1, .reusable = false}, SHIFT(561), + [657] = {.count = 1, .reusable = false}, SHIFT(167), + [659] = {.count = 1, .reusable = false}, SHIFT(2680), + [661] = {.count = 1, .reusable = false}, SHIFT(562), + [663] = {.count = 1, .reusable = false}, SHIFT(2008), + [665] = {.count = 1, .reusable = true}, SHIFT(2603), + [667] = {.count = 1, .reusable = false}, SHIFT(2677), + [669] = {.count = 1, .reusable = false}, SHIFT(2678), + [671] = {.count = 1, .reusable = false}, SHIFT(1021), + [673] = {.count = 1, .reusable = false}, SHIFT(2681), + [675] = {.count = 1, .reusable = false}, SHIFT(2009), + [677] = {.count = 1, .reusable = true}, SHIFT(170), + [679] = {.count = 1, .reusable = true}, SHIFT(436), + [681] = {.count = 1, .reusable = true}, SHIFT(437), + [683] = {.count = 1, .reusable = false}, SHIFT(436), + [685] = {.count = 1, .reusable = true}, SHIFT(438), + [687] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), + [689] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), + [691] = {.count = 1, .reusable = true}, SHIFT(174), + [693] = {.count = 1, .reusable = true}, SHIFT(175), + [695] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 2), + [697] = {.count = 1, .reusable = true}, SHIFT(177), + [699] = {.count = 1, .reusable = true}, SHIFT(2679), + [701] = {.count = 1, .reusable = true}, SHIFT(1054), + [703] = {.count = 1, .reusable = false}, SHIFT(180), + [705] = {.count = 1, .reusable = true}, SHIFT(2688), + [707] = {.count = 1, .reusable = true}, SHIFT(2049), + [709] = {.count = 1, .reusable = true}, SHIFT(2685), + [711] = {.count = 1, .reusable = true}, SHIFT(180), + [713] = {.count = 1, .reusable = false}, SHIFT(2686), + [715] = {.count = 1, .reusable = true}, SHIFT(2689), + [717] = {.count = 1, .reusable = false}, SHIFT(2050), + [719] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), + [721] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), + [723] = {.count = 1, .reusable = true}, SHIFT(185), + [725] = {.count = 1, .reusable = false}, SHIFT(184), + [727] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2526), + [730] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), + [733] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(384), + [736] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(385), + [739] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1427), + [742] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2527), + [745] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2528), + [748] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2529), + [751] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(386), + [754] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2530), + [757] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1428), + [760] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), + [763] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1429), + [766] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2770), + [769] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2792), + [772] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2531), + [775] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(386), + [778] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2532), + [781] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(387), + [784] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(20), + [787] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(388), + [790] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2533), + [793] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(389), + [796] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2535), + [799] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2771), + [802] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2536), + [805] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2537), + [808] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2538), + [811] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), + [813] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), + [815] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(102), + [818] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [820] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [822] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), + [825] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [827] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [829] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(20), + [832] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), + [835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2583), + [838] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [840] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [842] = {.count = 1, .reusable = false}, SHIFT(188), + [844] = {.count = 1, .reusable = true}, SHIFT(188), + [846] = {.count = 1, .reusable = true}, SHIFT(187), + [848] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), + [850] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), + [852] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [854] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [856] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1583), + [861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2579), + [864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2580), + [867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2581), + [870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(42), + [873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(111), + [876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1584), + [879] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2582), + [884] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2571), + [887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(639), + [890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2584), + [893] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [895] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1627), + [898] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2589), + [901] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2590), + [904] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2591), + [907] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(45), + [910] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), + [913] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1628), + [916] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [918] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2592), + [921] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(701), + [924] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2594), + [927] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [929] = {.count = 1, .reusable = true}, SHIFT(191), + [931] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [933] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [935] = {.count = 1, .reusable = false}, SHIFT(192), + [937] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(48), + [940] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2602), + [943] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2599), + [946] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2604), + [949] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2600), + [952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(193), + [955] = {.count = 1, .reusable = true}, SHIFT(194), + [957] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [959] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), + [961] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), + [963] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), + [965] = {.count = 1, .reusable = true}, SHIFT(196), + [967] = {.count = 1, .reusable = false}, REDUCE(sym_arithmetic_expansion, 3), + [969] = {.count = 1, .reusable = true}, REDUCE(sym_arithmetic_expansion, 3), + [971] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [973] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [975] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [977] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [979] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [981] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [983] = {.count = 1, .reusable = false}, SHIFT(197), + [985] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(60), + [988] = {.count = 1, .reusable = true}, SHIFT(198), + [990] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [992] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [994] = {.count = 1, .reusable = true}, SHIFT(462), + [996] = {.count = 1, .reusable = true}, SHIFT(1470), + [998] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [1000] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [1002] = {.count = 1, .reusable = false}, SHIFT(200), + [1004] = {.count = 1, .reusable = false}, SHIFT(201), + [1006] = {.count = 1, .reusable = false}, SHIFT(202), + [1008] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [1010] = {.count = 1, .reusable = true}, SHIFT(208), + [1012] = {.count = 1, .reusable = true}, SHIFT(209), + [1014] = {.count = 1, .reusable = false}, SHIFT(209), + [1016] = {.count = 1, .reusable = true}, SHIFT(210), + [1018] = {.count = 1, .reusable = true}, SHIFT(211), + [1020] = {.count = 1, .reusable = false}, SHIFT(211), + [1022] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1024] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1026] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1028] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1030] = {.count = 1, .reusable = true}, SHIFT(1893), + [1032] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [1034] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [1036] = {.count = 1, .reusable = false}, SHIFT(214), + [1038] = {.count = 1, .reusable = true}, SHIFT(214), + [1040] = {.count = 1, .reusable = true}, SHIFT(212), + [1042] = {.count = 1, .reusable = true}, SHIFT(213), + [1044] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), + [1046] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), + [1048] = {.count = 1, .reusable = false}, SHIFT(928), + [1050] = {.count = 1, .reusable = false}, SHIFT(215), + [1052] = {.count = 1, .reusable = true}, SHIFT(215), + [1054] = {.count = 1, .reusable = true}, SHIFT(216), + [1056] = {.count = 1, .reusable = true}, SHIFT(217), + [1058] = {.count = 1, .reusable = false}, SHIFT(220), + [1060] = {.count = 1, .reusable = true}, SHIFT(220), + [1062] = {.count = 1, .reusable = true}, SHIFT(218), + [1064] = {.count = 1, .reusable = true}, SHIFT(219), + [1066] = {.count = 1, .reusable = true}, SHIFT(2703), + [1068] = {.count = 1, .reusable = false}, SHIFT(221), + [1070] = {.count = 1, .reusable = true}, SHIFT(2712), + [1072] = {.count = 1, .reusable = true}, SHIFT(2172), + [1074] = {.count = 1, .reusable = true}, SHIFT(2709), + [1076] = {.count = 1, .reusable = false}, SHIFT(2710), + [1078] = {.count = 1, .reusable = true}, SHIFT(221), + [1080] = {.count = 1, .reusable = false}, SHIFT(1153), + [1082] = {.count = 1, .reusable = true}, SHIFT(2713), + [1084] = {.count = 1, .reusable = false}, SHIFT(2173), + [1086] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .production_id = 3), + [1088] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .production_id = 3), + [1090] = {.count = 1, .reusable = false}, SHIFT(226), + [1092] = {.count = 1, .reusable = true}, SHIFT(226), + [1094] = {.count = 1, .reusable = true}, SHIFT(224), + [1096] = {.count = 1, .reusable = true}, SHIFT(225), + [1098] = {.count = 1, .reusable = true}, SHIFT(2711), + [1100] = {.count = 1, .reusable = false}, SHIFT(228), + [1102] = {.count = 1, .reusable = true}, SHIFT(2720), + [1104] = {.count = 1, .reusable = true}, SHIFT(2213), + [1106] = {.count = 1, .reusable = true}, SHIFT(2717), + [1108] = {.count = 1, .reusable = true}, SHIFT(227), + [1110] = {.count = 1, .reusable = false}, SHIFT(2718), + [1112] = {.count = 1, .reusable = true}, SHIFT(228), + [1114] = {.count = 1, .reusable = true}, SHIFT(1186), + [1116] = {.count = 1, .reusable = true}, SHIFT(2721), + [1118] = {.count = 1, .reusable = false}, SHIFT(2214), + [1120] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), + [1122] = {.count = 1, .reusable = true}, SHIFT(1934), + [1124] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [1126] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .production_id = 4), + [1128] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .production_id = 4), + [1130] = {.count = 1, .reusable = false}, SHIFT(961), + [1132] = {.count = 1, .reusable = true}, SHIFT(231), + [1134] = {.count = 1, .reusable = true}, SHIFT(232), + [1136] = {.count = 1, .reusable = true}, SHIFT(233), + [1138] = {.count = 1, .reusable = true}, SHIFT(234), + [1140] = {.count = 1, .reusable = false}, SHIFT(994), + [1142] = {.count = 1, .reusable = true}, SHIFT(235), + [1144] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [1146] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [1148] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .production_id = 4), + [1150] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .production_id = 4), + [1152] = {.count = 1, .reusable = true}, SHIFT(2719), + [1154] = {.count = 1, .reusable = true}, SHIFT(1219), + [1156] = {.count = 1, .reusable = false}, SHIFT(488), + [1158] = {.count = 1, .reusable = true}, SHIFT(2728), + [1160] = {.count = 1, .reusable = true}, SHIFT(2254), + [1162] = {.count = 1, .reusable = true}, SHIFT(2725), + [1164] = {.count = 1, .reusable = true}, SHIFT(488), + [1166] = {.count = 1, .reusable = false}, SHIFT(2726), + [1168] = {.count = 1, .reusable = true}, SHIFT(2729), + [1170] = {.count = 1, .reusable = false}, SHIFT(2255), + [1172] = {.count = 1, .reusable = false}, SHIFT(239), + [1174] = {.count = 1, .reusable = true}, SHIFT(241), + [1176] = {.count = 1, .reusable = false}, SHIFT(241), + [1178] = {.count = 1, .reusable = false}, SHIFT(585), + [1180] = {.count = 1, .reusable = false}, SHIFT(586), + [1182] = {.count = 1, .reusable = false}, SHIFT(587), + [1184] = {.count = 1, .reusable = false}, SHIFT(242), + [1186] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1188] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1190] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [1192] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [1194] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [1196] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [1198] = {.count = 1, .reusable = true}, SHIFT(2737), + [1200] = {.count = 1, .reusable = true}, SHIFT(2734), + [1202] = {.count = 1, .reusable = true}, SHIFT(244), + [1204] = {.count = 1, .reusable = false}, SHIFT(245), + [1206] = {.count = 1, .reusable = true}, SHIFT(2736), + [1208] = {.count = 1, .reusable = true}, SHIFT(246), + [1210] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 3), + [1212] = {.count = 1, .reusable = true}, SHIFT(247), + [1214] = {.count = 1, .reusable = false}, SHIFT(247), + [1216] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [1218] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [1220] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [1222] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [1224] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [1226] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [1228] = {.count = 1, .reusable = true}, SHIFT(2057), + [1230] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), + [1232] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), + [1234] = {.count = 1, .reusable = false}, SHIFT(1060), + [1236] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(95), + [1239] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1426), + [1242] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [1244] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [1246] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2534), + [1249] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(97), + [1252] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [1254] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [1256] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [1258] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [1260] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), + [1262] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), + [1264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(6), + [1267] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(7), + [1270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(8), + [1273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(9), + [1276] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(106), + [1279] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(107), + [1282] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(13), + [1285] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), + [1288] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [1291] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), + [1294] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [1296] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [1298] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [1300] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [1302] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [1304] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [1306] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [1308] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 4), + [1310] = {.count = 1, .reusable = false}, SHIFT(67), + [1312] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 4), + [1314] = {.count = 1, .reusable = false}, SHIFT(69), + [1316] = {.count = 1, .reusable = true}, SHIFT(250), + [1318] = {.count = 1, .reusable = false}, SHIFT(250), + [1320] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [1322] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [1324] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [1326] = {.count = 1, .reusable = true}, SHIFT(253), + [1328] = {.count = 1, .reusable = false}, SHIFT(254), + [1330] = {.count = 1, .reusable = true}, SHIFT(255), + [1332] = {.count = 1, .reusable = false}, SHIFT(255), + [1334] = {.count = 1, .reusable = true}, SHIFT(202), + [1336] = {.count = 1, .reusable = true}, SHIFT(201), + [1338] = {.count = 1, .reusable = true}, SHIFT(260), + [1340] = {.count = 1, .reusable = false}, SHIFT(260), + [1342] = {.count = 1, .reusable = false}, SHIFT(262), + [1344] = {.count = 1, .reusable = true}, SHIFT(262), + [1346] = {.count = 1, .reusable = true}, SHIFT(2787), + [1348] = {.count = 1, .reusable = false}, SHIFT(261), + [1350] = {.count = 1, .reusable = true}, SHIFT(267), + [1352] = {.count = 1, .reusable = false}, SHIFT(267), + [1354] = {.count = 1, .reusable = false}, SHIFT(268), + [1356] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [1358] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [1360] = {.count = 1, .reusable = false}, SHIFT(272), + [1362] = {.count = 1, .reusable = true}, SHIFT(272), + [1364] = {.count = 1, .reusable = true}, SHIFT(271), + [1366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(215), + [1369] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2647), + [1372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(141), + [1375] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2656), + [1378] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1885), + [1381] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2653), + [1384] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [1386] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(141), + [1389] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(215), + [1392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2654), + [1395] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(922), + [1398] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2657), + [1401] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1886), + [1404] = {.count = 1, .reusable = true}, SHIFT(273), + [1406] = {.count = 1, .reusable = false}, SHIFT(274), + [1408] = {.count = 1, .reusable = true}, SHIFT(274), + [1410] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 5), + [1412] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 5), + [1414] = {.count = 1, .reusable = false}, SHIFT(279), + [1416] = {.count = 1, .reusable = true}, SHIFT(279), + [1418] = {.count = 1, .reusable = true}, SHIFT(277), + [1420] = {.count = 1, .reusable = true}, SHIFT(278), + [1422] = {.count = 1, .reusable = true}, SHIFT(2180), + [1424] = {.count = 1, .reusable = false}, SHIFT(1159), + [1426] = {.count = 1, .reusable = true}, SHIFT(280), + [1428] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 3), + [1430] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 3), + [1432] = {.count = 1, .reusable = false}, SHIFT(282), + [1434] = {.count = 1, .reusable = true}, SHIFT(282), + [1436] = {.count = 1, .reusable = true}, SHIFT(281), + [1438] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [1440] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [1442] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [1444] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [1446] = {.count = 1, .reusable = true}, SHIFT(2221), + [1448] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [1450] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [1452] = {.count = 1, .reusable = true}, SHIFT(1192), + [1454] = {.count = 1, .reusable = true}, SHIFT(283), + [1456] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [1458] = {.count = 1, .reusable = true}, SHIFT(285), + [1460] = {.count = 1, .reusable = false}, SHIFT(1000), + [1462] = {.count = 1, .reusable = true}, SHIFT(286), + [1464] = {.count = 1, .reusable = true}, SHIFT(1000), + [1466] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .production_id = 4), + [1468] = {.count = 1, .reusable = true}, SHIFT(287), + [1470] = {.count = 1, .reusable = true}, SHIFT(288), + [1472] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [1474] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [1476] = {.count = 1, .reusable = false}, SHIFT(2719), + [1478] = {.count = 1, .reusable = true}, SHIFT(289), + [1480] = {.count = 1, .reusable = false}, SHIFT(2728), + [1482] = {.count = 1, .reusable = false}, SHIFT(289), + [1484] = {.count = 1, .reusable = false}, SHIFT(2254), + [1486] = {.count = 1, .reusable = false}, SHIFT(2725), + [1488] = {.count = 1, .reusable = false}, SHIFT(1219), + [1490] = {.count = 1, .reusable = false}, SHIFT(2729), + [1492] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), + [1494] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), + [1496] = {.count = 1, .reusable = true}, SHIFT(290), + [1498] = {.count = 1, .reusable = false}, SHIFT(292), + [1500] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [1502] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [1504] = {.count = 1, .reusable = false}, SHIFT(294), + [1506] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [1508] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [1510] = {.count = 1, .reusable = true}, SHIFT(1288), + [1512] = {.count = 1, .reusable = false}, SHIFT(1289), + [1514] = {.count = 1, .reusable = true}, SHIFT(1289), + [1516] = {.count = 1, .reusable = true}, SHIFT(295), + [1518] = {.count = 1, .reusable = true}, SHIFT(296), + [1520] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 4), + [1522] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 4), + [1524] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 4), + [1526] = {.count = 1, .reusable = true}, SHIFT(297), + [1528] = {.count = 1, .reusable = false}, SHIFT(297), + [1530] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [1532] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [1534] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [1536] = {.count = 1, .reusable = true}, SHIFT(298), + [1538] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 2), + [1540] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 2), + [1542] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [1544] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [1546] = {.count = 1, .reusable = true}, SHIFT(300), + [1548] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), + [1551] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(384), + [1554] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2527), + [1557] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2528), + [1560] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2529), + [1563] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1429), + [1566] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2770), + [1569] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2531), + [1572] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2533), + [1575] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(388), + [1578] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(385), + [1581] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(389), + [1584] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(386), + [1587] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2536), + [1590] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2526), + [1593] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1427), + [1596] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2530), + [1599] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1428), + [1602] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), + [1605] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2792), + [1608] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(386), + [1611] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2532), + [1614] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(387), + [1617] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(20), + [1620] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2535), + [1623] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2771), + [1626] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2537), + [1629] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2538), + [1632] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(202), + [1635] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1637] = {.count = 1, .reusable = false}, SHIFT(302), + [1639] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [1641] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [1643] = {.count = 1, .reusable = true}, SHIFT(306), + [1645] = {.count = 1, .reusable = true}, SHIFT(305), + [1647] = {.count = 1, .reusable = true}, SHIFT(309), + [1649] = {.count = 1, .reusable = true}, SHIFT(302), + [1651] = {.count = 1, .reusable = false}, SHIFT(311), + [1653] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .production_id = 2), + [1655] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .production_id = 2), + [1657] = {.count = 1, .reusable = true}, SHIFT(311), + [1659] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [1661] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [1663] = {.count = 1, .reusable = true}, SHIFT(314), + [1665] = {.count = 1, .reusable = false}, SHIFT(315), + [1667] = {.count = 1, .reusable = true}, SHIFT(315), + [1669] = {.count = 1, .reusable = true}, SHIFT(316), + [1671] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 5), + [1673] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 5), + [1675] = {.count = 1, .reusable = false}, SHIFT(318), + [1677] = {.count = 1, .reusable = true}, SHIFT(318), + [1679] = {.count = 1, .reusable = true}, SHIFT(317), + [1681] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 6), + [1683] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 6), + [1685] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 3), + [1687] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 3), + [1689] = {.count = 1, .reusable = true}, SHIFT(319), + [1691] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [1693] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [1695] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2711), + [1698] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), + [1701] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2720), + [1704] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2213), + [1707] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2717), + [1710] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2718), + [1715] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), + [1718] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1186), + [1721] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2721), + [1724] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2214), + [1727] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [1729] = {.count = 1, .reusable = true}, SHIFT(320), + [1731] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .production_id = 4), + [1733] = {.count = 1, .reusable = true}, SHIFT(321), + [1735] = {.count = 1, .reusable = true}, SHIFT(323), + [1737] = {.count = 1, .reusable = true}, SHIFT(325), + [1739] = {.count = 1, .reusable = false}, SHIFT(327), + [1741] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [1743] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [1745] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [1747] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [1749] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2737), + [1752] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2734), + [1755] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [1757] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(245), + [1760] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2736), + [1763] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(296), + [1766] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 5), + [1768] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [1770] = {.count = 1, .reusable = true}, SHIFT(329), + [1772] = {.count = 1, .reusable = false}, SHIFT(329), + [1774] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [1776] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [1778] = {.count = 1, .reusable = true}, SHIFT(330), + [1780] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [1782] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [1784] = {.count = 1, .reusable = true}, SHIFT(332), + [1786] = {.count = 1, .reusable = false}, SHIFT(333), + [1788] = {.count = 1, .reusable = true}, SHIFT(333), + [1790] = {.count = 1, .reusable = false}, SHIFT(637), + [1792] = {.count = 1, .reusable = false}, SHIFT(638), + [1794] = {.count = 1, .reusable = true}, SHIFT(2295), + [1796] = {.count = 1, .reusable = true}, SHIFT(2733), + [1798] = {.count = 1, .reusable = false}, SHIFT(2742), + [1800] = {.count = 1, .reusable = true}, SHIFT(2727), + [1802] = {.count = 1, .reusable = true}, SHIFT(540), + [1804] = {.count = 1, .reusable = false}, SHIFT(2296), + [1806] = {.count = 1, .reusable = false}, SHIFT(540), + [1808] = {.count = 1, .reusable = true}, SHIFT(2744), + [1810] = {.count = 1, .reusable = false}, SHIFT(541), + [1812] = {.count = 1, .reusable = true}, SHIFT(2613), + [1814] = {.count = 1, .reusable = false}, SHIFT(542), + [1816] = {.count = 1, .reusable = false}, SHIFT(1252), + [1818] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [1820] = {.count = 1, .reusable = true}, SHIFT(2745), + [1822] = {.count = 1, .reusable = true}, SHIFT(336), + [1824] = {.count = 1, .reusable = true}, SHIFT(338), + [1826] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2787), + [1829] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(340), + [1832] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2711), + [1835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2720), + [1838] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2213), + [1841] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2717), + [1844] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(340), + [1847] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2721), + [1850] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2718), + [1853] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2214), + [1856] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .production_id = 1), + [1858] = {.count = 1, .reusable = true}, SHIFT(343), + [1860] = {.count = 1, .reusable = true}, SHIFT(345), + [1862] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .production_id = 2), + [1864] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .production_id = 2), + [1866] = {.count = 1, .reusable = true}, SHIFT(347), + [1868] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [1870] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [1872] = {.count = 1, .reusable = true}, SHIFT(348), + [1874] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 7), + [1876] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 7), + [1878] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 5), + [1880] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 5), + [1882] = {.count = 1, .reusable = true}, SHIFT(349), + [1884] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 3), + [1886] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 3), + [1888] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [1890] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .production_id = 4), + [1892] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [1894] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [1896] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), + [1898] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), + [1900] = {.count = 1, .reusable = true}, SHIFT(351), + [1902] = {.count = 1, .reusable = true}, SHIFT(352), + [1904] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [1906] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 4), + [1908] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 4), + [1910] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [1912] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [1914] = {.count = 1, .reusable = true}, SHIFT(354), + [1916] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), + [1918] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), + [1920] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [1922] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 2), + [1924] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [1926] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [1928] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [1930] = {.count = 1, .reusable = true}, SHIFT(355), + [1932] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), + [1934] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(305), + [1937] = {.count = 1, .reusable = true}, SHIFT(357), + [1939] = {.count = 1, .reusable = true}, SHIFT(359), + [1941] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .production_id = 1), + [1943] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .production_id = 1), + [1945] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .production_id = 1), + [1947] = {.count = 1, .reusable = true}, SHIFT(361), + [1949] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .production_id = 1), + [1951] = {.count = 1, .reusable = true}, SHIFT(363), + [1953] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .production_id = 2), + [1955] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .production_id = 2), + [1957] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), + [1959] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), + [1961] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .production_id = 5), + [1963] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .production_id = 5), + [1965] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), + [1967] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), + [1969] = {.count = 1, .reusable = true}, SHIFT(365), + [1971] = {.count = 1, .reusable = true}, SHIFT(366), + [1973] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), + [1975] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), + [1977] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [1979] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [1981] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [1983] = {.count = 1, .reusable = true}, SHIFT(367), + [1985] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), + [1987] = {.count = 1, .reusable = true}, SHIFT(368), + [1989] = {.count = 1, .reusable = true}, SHIFT(370), + [1991] = {.count = 1, .reusable = true}, SHIFT(371), + [1993] = {.count = 1, .reusable = true}, SHIFT(373), + [1995] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .production_id = 1), + [1997] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .production_id = 1), + [1999] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .production_id = 1), + [2001] = {.count = 1, .reusable = true}, SHIFT(374), + [2003] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .production_id = 1), + [2005] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .production_id = 2), + [2007] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .production_id = 2), + [2009] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), + [2011] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), + [2013] = {.count = 1, .reusable = true}, SHIFT(376), + [2015] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [2017] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [2019] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [2021] = {.count = 1, .reusable = true}, SHIFT(377), + [2023] = {.count = 1, .reusable = true}, SHIFT(379), + [2025] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .production_id = 1), + [2027] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .production_id = 1), + [2029] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .production_id = 1), + [2031] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), + [2033] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), + [2035] = {.count = 1, .reusable = true}, SHIFT(382), + [2037] = {.count = 1, .reusable = true}, SHIFT(383), + [2039] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), + [2041] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), + [2043] = {.count = 1, .reusable = false}, SHIFT(1803), + [2045] = {.count = 1, .reusable = false}, SHIFT(2637), + [2047] = {.count = 1, .reusable = false}, SHIFT(2638), + [2049] = {.count = 1, .reusable = false}, SHIFT(2631), + [2051] = {.count = 1, .reusable = false}, SHIFT(400), + [2053] = {.count = 1, .reusable = false}, SHIFT(402), + [2055] = {.count = 1, .reusable = false}, SHIFT(1804), + [2057] = {.count = 1, .reusable = false}, SHIFT(2640), + [2059] = {.count = 1, .reusable = true}, SHIFT(2593), + [2061] = {.count = 1, .reusable = false}, SHIFT(856), + [2063] = {.count = 1, .reusable = false}, SHIFT(2641), + [2065] = {.count = 1, .reusable = false}, SHIFT(1844), + [2067] = {.count = 1, .reusable = false}, SHIFT(2645), + [2069] = {.count = 1, .reusable = false}, SHIFT(2646), + [2071] = {.count = 1, .reusable = false}, SHIFT(2639), + [2073] = {.count = 1, .reusable = false}, SHIFT(403), + [2075] = {.count = 1, .reusable = false}, SHIFT(405), + [2077] = {.count = 1, .reusable = false}, SHIFT(1845), + [2079] = {.count = 1, .reusable = false}, SHIFT(2648), + [2081] = {.count = 1, .reusable = false}, SHIFT(889), + [2083] = {.count = 1, .reusable = false}, SHIFT(2649), + [2085] = {.count = 1, .reusable = true}, SHIFT(1437), + [2087] = {.count = 1, .reusable = false}, SHIFT(2545), + [2089] = {.count = 1, .reusable = false}, SHIFT(418), + [2091] = {.count = 1, .reusable = true}, SHIFT(417), + [2093] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 1), + [2095] = {.count = 1, .reusable = false}, SHIFT(424), + [2097] = {.count = 1, .reusable = true}, SHIFT(389), + [2099] = {.count = 1, .reusable = false}, SHIFT(1427), + [2101] = {.count = 1, .reusable = false}, SHIFT(2527), + [2103] = {.count = 1, .reusable = false}, SHIFT(2529), + [2105] = {.count = 1, .reusable = false}, SHIFT(427), + [2107] = {.count = 1, .reusable = false}, SHIFT(428), + [2109] = {.count = 1, .reusable = false}, SHIFT(2532), + [2111] = {.count = 1, .reusable = false}, SHIFT(2535), + [2113] = {.count = 1, .reusable = true}, SHIFT(1811), + [2115] = {.count = 1, .reusable = false}, SHIFT(862), + [2117] = {.count = 1, .reusable = false}, SHIFT(432), + [2119] = {.count = 1, .reusable = true}, SHIFT(1852), + [2121] = {.count = 1, .reusable = false}, SHIFT(895), + [2123] = {.count = 1, .reusable = false}, SHIFT(433), + [2125] = {.count = 1, .reusable = true}, SHIFT(1767), + [2127] = {.count = 1, .reusable = false}, SHIFT(824), + [2129] = {.count = 1, .reusable = true}, SHIFT(443), + [2131] = {.count = 1, .reusable = true}, SHIFT(472), + [2133] = {.count = 1, .reusable = false}, SHIFT(471), + [2135] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 2), + [2137] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(424), + [2140] = {.count = 1, .reusable = false}, SHIFT(475), + [2142] = {.count = 1, .reusable = true}, SHIFT(475), + [2144] = {.count = 1, .reusable = true}, SHIFT(474), + [2146] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1803), + [2149] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2637), + [2152] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2638), + [2155] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2631), + [2158] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(400), + [2161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(432), + [2164] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1804), + [2167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2640), + [2170] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2593), + [2173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(856), + [2176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2641), + [2179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1844), + [2182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2645), + [2185] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2646), + [2188] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2639), + [2191] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(403), + [2194] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(433), + [2197] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1845), + [2200] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2648), + [2203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(889), + [2206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2649), + [2209] = {.count = 1, .reusable = true}, SHIFT(481), + [2211] = {.count = 1, .reusable = false}, SHIFT(442), + [2213] = {.count = 1, .reusable = true}, SHIFT(442), + [2215] = {.count = 1, .reusable = false}, SHIFT(482), + [2217] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1437), + [2220] = {.count = 1, .reusable = true}, SHIFT(2098), + [2222] = {.count = 1, .reusable = false}, SHIFT(1093), + [2224] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 3), + [2226] = {.count = 1, .reusable = true}, SHIFT(496), + [2228] = {.count = 1, .reusable = false}, SHIFT(496), + [2230] = {.count = 1, .reusable = true}, SHIFT(2139), + [2232] = {.count = 1, .reusable = false}, SHIFT(1126), + [2234] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1536), + [2237] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1451), + [2240] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2572), + [2243] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1452), + [2246] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1427), + [2249] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2527), + [2252] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2528), + [2255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2529), + [2258] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(427), + [2261] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(428), + [2264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1429), + [2267] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2532), + [2270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(389), + [2273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2535), + [2276] = {.count = 1, .reusable = false}, SHIFT(413), + [2278] = {.count = 1, .reusable = false}, SHIFT(412), + [2280] = {.count = 1, .reusable = false}, SHIFT(414), + [2282] = {.count = 1, .reusable = true}, SHIFT(2262), + [2284] = {.count = 1, .reusable = false}, SHIFT(1225), + [2286] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [2288] = {.count = 1, .reusable = true}, SHIFT(509), + [2290] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .production_id = 4), + [2292] = {.count = 1, .reusable = true}, SHIFT(511), + [2294] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 4), + [2296] = {.count = 1, .reusable = true}, SHIFT(515), + [2298] = {.count = 1, .reusable = false}, SHIFT(515), + [2300] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2719), + [2303] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(488), + [2306] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2308] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2728), + [2311] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2254), + [2314] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2725), + [2317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2726), + [2320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1219), + [2323] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2729), + [2326] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2255), + [2329] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [2331] = {.count = 1, .reusable = true}, SHIFT(523), + [2333] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .production_id = 4), + [2335] = {.count = 1, .reusable = true}, SHIFT(524), + [2337] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [2339] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .production_id = 4), + [2341] = {.count = 1, .reusable = false}, SHIFT(556), + [2343] = {.count = 1, .reusable = false}, SHIFT(559), + [2345] = {.count = 1, .reusable = true}, SHIFT(2303), + [2347] = {.count = 1, .reusable = false}, SHIFT(2789), + [2349] = {.count = 1, .reusable = true}, SHIFT(652), + [2351] = {.count = 1, .reusable = false}, SHIFT(653), + [2353] = {.count = 1, .reusable = true}, SHIFT(2791), + [2355] = {.count = 1, .reusable = false}, SHIFT(654), + [2357] = {.count = 1, .reusable = false}, SHIFT(2788), + [2359] = {.count = 1, .reusable = false}, SHIFT(651), + [2361] = {.count = 1, .reusable = false}, SHIFT(571), + [2363] = {.count = 1, .reusable = false}, SHIFT(568), + [2365] = {.count = 1, .reusable = true}, SHIFT(569), + [2367] = {.count = 1, .reusable = false}, SHIFT(570), + [2369] = {.count = 1, .reusable = false}, SHIFT(1258), + [2371] = {.count = 1, .reusable = true}, SHIFT(1252), + [2373] = {.count = 1, .reusable = true}, SHIFT(2344), + [2375] = {.count = 1, .reusable = false}, SHIFT(1291), + [2377] = {.count = 1, .reusable = true}, SHIFT(2385), + [2379] = {.count = 1, .reusable = false}, SHIFT(1324), + [2381] = {.count = 1, .reusable = true}, SHIFT(2016), + [2383] = {.count = 1, .reusable = true}, SHIFT(2575), + [2385] = {.count = 1, .reusable = true}, SHIFT(2671), + [2387] = {.count = 1, .reusable = true}, SHIFT(2680), + [2389] = {.count = 1, .reusable = true}, SHIFT(2008), + [2391] = {.count = 1, .reusable = true}, SHIFT(2677), + [2393] = {.count = 1, .reusable = true}, SHIFT(561), + [2395] = {.count = 1, .reusable = true}, SHIFT(1021), + [2397] = {.count = 1, .reusable = true}, SHIFT(2681), + [2399] = {.count = 1, .reusable = true}, SHIFT(562), + [2401] = {.count = 1, .reusable = false}, SHIFT(1027), + [2403] = {.count = 1, .reusable = true}, SHIFT(592), + [2405] = {.count = 1, .reusable = true}, SHIFT(608), + [2407] = {.count = 1, .reusable = false}, SHIFT(607), + [2409] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(574), + [2412] = {.count = 1, .reusable = false}, SHIFT(611), + [2414] = {.count = 1, .reusable = true}, SHIFT(611), + [2416] = {.count = 1, .reusable = true}, SHIFT(610), + [2418] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2336), + [2421] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2741), + [2424] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2750), + [2427] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2735), + [2430] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(554), + [2433] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(581), + [2436] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2337), + [2439] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2752), + [2442] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2623), + [2445] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1285), + [2448] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2753), + [2451] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2377), + [2454] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2749), + [2457] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2758), + [2460] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2743), + [2463] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(557), + [2466] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(582), + [2469] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2378), + [2472] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2759), + [2475] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1318), + [2478] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2760), + [2481] = {.count = 1, .reusable = true}, SHIFT(617), + [2483] = {.count = 1, .reusable = false}, SHIFT(591), + [2485] = {.count = 1, .reusable = true}, SHIFT(591), + [2487] = {.count = 1, .reusable = false}, SHIFT(618), + [2489] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1545), + [2492] = {.count = 1, .reusable = false}, SHIFT(687), + [2494] = {.count = 1, .reusable = true}, SHIFT(687), + [2496] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2295), + [2499] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2733), + [2502] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2742), + [2505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2727), + [2508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(577), + [2511] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(578), + [2514] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2296), + [2517] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2744), + [2520] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1252), + [2523] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2745), + [2526] = {.count = 1, .reusable = false}, SHIFT(566), + [2528] = {.count = 1, .reusable = false}, SHIFT(565), + [2530] = {.count = 1, .reusable = true}, SHIFT(565), + [2532] = {.count = 1, .reusable = true}, SHIFT(567), + [2534] = {.count = 1, .reusable = false}, SHIFT(694), + [2536] = {.count = 1, .reusable = true}, SHIFT(694), + [2538] = {.count = 1, .reusable = false}, SHIFT(2336), + [2540] = {.count = 1, .reusable = false}, SHIFT(2741), + [2542] = {.count = 1, .reusable = false}, SHIFT(2750), + [2544] = {.count = 1, .reusable = false}, SHIFT(2735), + [2546] = {.count = 1, .reusable = false}, SHIFT(554), + [2548] = {.count = 1, .reusable = false}, SHIFT(644), + [2550] = {.count = 1, .reusable = false}, SHIFT(2337), + [2552] = {.count = 1, .reusable = false}, SHIFT(2752), + [2554] = {.count = 1, .reusable = true}, SHIFT(2623), + [2556] = {.count = 1, .reusable = false}, SHIFT(1285), + [2558] = {.count = 1, .reusable = false}, SHIFT(2753), + [2560] = {.count = 1, .reusable = false}, SHIFT(2377), + [2562] = {.count = 1, .reusable = false}, SHIFT(2749), + [2564] = {.count = 1, .reusable = false}, SHIFT(2758), + [2566] = {.count = 1, .reusable = false}, SHIFT(2743), + [2568] = {.count = 1, .reusable = false}, SHIFT(557), + [2570] = {.count = 1, .reusable = false}, SHIFT(645), + [2572] = {.count = 1, .reusable = false}, SHIFT(2378), + [2574] = {.count = 1, .reusable = false}, SHIFT(2759), + [2576] = {.count = 1, .reusable = false}, SHIFT(1318), + [2578] = {.count = 1, .reusable = false}, SHIFT(2760), + [2580] = {.count = 1, .reusable = true}, SHIFT(1529), + [2582] = {.count = 1, .reusable = false}, SHIFT(2295), + [2584] = {.count = 1, .reusable = false}, SHIFT(2733), + [2586] = {.count = 1, .reusable = false}, SHIFT(2727), + [2588] = {.count = 1, .reusable = false}, SHIFT(577), + [2590] = {.count = 1, .reusable = false}, SHIFT(578), + [2592] = {.count = 1, .reusable = false}, SHIFT(2744), + [2594] = {.count = 1, .reusable = false}, SHIFT(2745), + [2596] = {.count = 1, .reusable = false}, SHIFT(581), + [2598] = {.count = 1, .reusable = false}, SHIFT(582), + [2600] = {.count = 1, .reusable = true}, SHIFT(666), + [2602] = {.count = 1, .reusable = true}, SHIFT(679), + [2604] = {.count = 1, .reusable = false}, SHIFT(678), + [2606] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(657), + [2609] = {.count = 1, .reusable = true}, SHIFT(2581), + [2611] = {.count = 1, .reusable = false}, SHIFT(665), + [2613] = {.count = 1, .reusable = true}, SHIFT(665), + [2615] = {.count = 1, .reusable = true}, SHIFT(2582), + [2617] = {.count = 1, .reusable = true}, SHIFT(1583), + [2619] = {.count = 1, .reusable = true}, SHIFT(2579), + [2621] = {.count = 1, .reusable = true}, SHIFT(2584), + [2623] = {.count = 1, .reusable = false}, SHIFT(682), + [2625] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1591), + [2628] = {.count = 1, .reusable = false}, SHIFT(649), + [2630] = {.count = 1, .reusable = false}, SHIFT(648), + [2632] = {.count = 1, .reusable = false}, SHIFT(650), + [2634] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 5), + [2636] = {.count = 1, .reusable = true}, SHIFT(717), + [2638] = {.count = 1, .reusable = true}, SHIFT(1531), + [2640] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(710), + [2643] = {.count = 1, .reusable = true}, SHIFT(2591), + [2645] = {.count = 1, .reusable = false}, SHIFT(716), + [2647] = {.count = 1, .reusable = true}, SHIFT(716), + [2649] = {.count = 1, .reusable = true}, SHIFT(2592), + [2651] = {.count = 1, .reusable = true}, SHIFT(1627), + [2653] = {.count = 1, .reusable = true}, SHIFT(2589), + [2655] = {.count = 1, .reusable = true}, SHIFT(2594), + [2657] = {.count = 1, .reusable = false}, SHIFT(726), + [2659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1635), + [2662] = {.count = 1, .reusable = false}, SHIFT(706), + [2664] = {.count = 1, .reusable = false}, SHIFT(705), + [2666] = {.count = 1, .reusable = false}, SHIFT(707), + [2668] = {.count = 1, .reusable = true}, SHIFT(755), + [2670] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(748), + [2673] = {.count = 1, .reusable = false}, SHIFT(754), + [2675] = {.count = 1, .reusable = true}, SHIFT(754), + [2677] = {.count = 1, .reusable = false}, SHIFT(764), + [2679] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1679), + [2682] = {.count = 1, .reusable = false}, SHIFT(784), + [2684] = {.count = 1, .reusable = false}, SHIFT(783), + [2686] = {.count = 1, .reusable = true}, SHIFT(783), + [2688] = {.count = 1, .reusable = true}, SHIFT(784), + [2690] = {.count = 1, .reusable = true}, SHIFT(747), + [2692] = {.count = 1, .reusable = true}, SHIFT(793), + [2694] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(786), + [2697] = {.count = 1, .reusable = false}, SHIFT(792), + [2699] = {.count = 1, .reusable = true}, SHIFT(792), + [2701] = {.count = 1, .reusable = false}, SHIFT(802), + [2703] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1723), + [2706] = {.count = 1, .reusable = true}, SHIFT(2426), + [2708] = {.count = 1, .reusable = false}, SHIFT(1357), + [2710] = {.count = 1, .reusable = false}, SHIFT(822), + [2712] = {.count = 1, .reusable = false}, SHIFT(821), + [2714] = {.count = 1, .reusable = false}, SHIFT(1715), + [2716] = {.count = 1, .reusable = false}, SHIFT(785), + [2718] = {.count = 1, .reusable = true}, SHIFT(831), + [2720] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(824), + [2723] = {.count = 1, .reusable = false}, SHIFT(830), + [2725] = {.count = 1, .reusable = true}, SHIFT(830), + [2727] = {.count = 1, .reusable = false}, SHIFT(840), + [2729] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1767), + [2732] = {.count = 1, .reusable = false}, SHIFT(860), + [2734] = {.count = 1, .reusable = false}, SHIFT(859), + [2736] = {.count = 1, .reusable = true}, SHIFT(859), + [2738] = {.count = 1, .reusable = true}, SHIFT(860), + [2740] = {.count = 1, .reusable = true}, SHIFT(823), + [2742] = {.count = 1, .reusable = true}, SHIFT(869), + [2744] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(862), + [2747] = {.count = 1, .reusable = true}, SHIFT(2631), + [2749] = {.count = 1, .reusable = false}, SHIFT(868), + [2751] = {.count = 1, .reusable = true}, SHIFT(2640), + [2753] = {.count = 1, .reusable = true}, SHIFT(1803), + [2755] = {.count = 1, .reusable = true}, SHIFT(2637), + [2757] = {.count = 1, .reusable = true}, SHIFT(868), + [2759] = {.count = 1, .reusable = true}, SHIFT(2641), + [2761] = {.count = 1, .reusable = false}, SHIFT(875), + [2763] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1811), + [2766] = {.count = 1, .reusable = false}, SHIFT(893), + [2768] = {.count = 1, .reusable = false}, SHIFT(892), + [2770] = {.count = 1, .reusable = false}, SHIFT(861), + [2772] = {.count = 1, .reusable = true}, SHIFT(902), + [2774] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(895), + [2777] = {.count = 1, .reusable = true}, SHIFT(2639), + [2779] = {.count = 1, .reusable = false}, SHIFT(901), + [2781] = {.count = 1, .reusable = true}, SHIFT(2648), + [2783] = {.count = 1, .reusable = true}, SHIFT(1844), + [2785] = {.count = 1, .reusable = true}, SHIFT(2645), + [2787] = {.count = 1, .reusable = true}, SHIFT(901), + [2789] = {.count = 1, .reusable = true}, SHIFT(2649), + [2791] = {.count = 1, .reusable = false}, SHIFT(908), + [2793] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1852), + [2796] = {.count = 1, .reusable = false}, SHIFT(926), + [2798] = {.count = 1, .reusable = false}, SHIFT(925), + [2800] = {.count = 1, .reusable = false}, SHIFT(894), + [2802] = {.count = 1, .reusable = true}, SHIFT(935), + [2804] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(928), + [2807] = {.count = 1, .reusable = false}, SHIFT(934), + [2809] = {.count = 1, .reusable = true}, SHIFT(934), + [2811] = {.count = 1, .reusable = false}, SHIFT(941), + [2813] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1893), + [2816] = {.count = 1, .reusable = false}, SHIFT(959), + [2818] = {.count = 1, .reusable = false}, SHIFT(958), + [2820] = {.count = 1, .reusable = true}, SHIFT(958), + [2822] = {.count = 1, .reusable = true}, SHIFT(927), + [2824] = {.count = 1, .reusable = true}, SHIFT(968), + [2826] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(961), + [2829] = {.count = 1, .reusable = false}, SHIFT(967), + [2831] = {.count = 1, .reusable = true}, SHIFT(967), + [2833] = {.count = 1, .reusable = false}, SHIFT(974), + [2835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1934), + [2838] = {.count = 1, .reusable = false}, SHIFT(992), + [2840] = {.count = 1, .reusable = false}, SHIFT(1926), + [2842] = {.count = 1, .reusable = false}, SHIFT(991), + [2844] = {.count = 1, .reusable = false}, SHIFT(960), + [2846] = {.count = 1, .reusable = true}, SHIFT(1001), + [2848] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(994), + [2851] = {.count = 1, .reusable = false}, SHIFT(1007), + [2853] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1975), + [2856] = {.count = 1, .reusable = false}, SHIFT(1025), + [2858] = {.count = 1, .reusable = true}, SHIFT(1024), + [2860] = {.count = 1, .reusable = true}, SHIFT(1025), + [2862] = {.count = 1, .reusable = true}, SHIFT(993), + [2864] = {.count = 1, .reusable = true}, SHIFT(1034), + [2866] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1027), + [2869] = {.count = 1, .reusable = false}, SHIFT(1033), + [2871] = {.count = 1, .reusable = true}, SHIFT(1033), + [2873] = {.count = 1, .reusable = false}, SHIFT(1040), + [2875] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2016), + [2878] = {.count = 1, .reusable = false}, SHIFT(1058), + [2880] = {.count = 1, .reusable = false}, SHIFT(1057), + [2882] = {.count = 1, .reusable = false}, SHIFT(1026), + [2884] = {.count = 1, .reusable = true}, SHIFT(1067), + [2886] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1060), + [2889] = {.count = 1, .reusable = false}, SHIFT(1066), + [2891] = {.count = 1, .reusable = true}, SHIFT(1066), + [2893] = {.count = 1, .reusable = false}, SHIFT(1073), + [2895] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2057), + [2898] = {.count = 1, .reusable = false}, SHIFT(1091), + [2900] = {.count = 1, .reusable = false}, SHIFT(2049), + [2902] = {.count = 1, .reusable = false}, SHIFT(1090), + [2904] = {.count = 1, .reusable = false}, SHIFT(1059), + [2906] = {.count = 1, .reusable = true}, SHIFT(1100), + [2908] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1093), + [2911] = {.count = 1, .reusable = true}, SHIFT(2687), + [2913] = {.count = 1, .reusable = false}, SHIFT(1099), + [2915] = {.count = 1, .reusable = true}, SHIFT(2696), + [2917] = {.count = 1, .reusable = true}, SHIFT(2090), + [2919] = {.count = 1, .reusable = true}, SHIFT(2693), + [2921] = {.count = 1, .reusable = false}, SHIFT(2694), + [2923] = {.count = 1, .reusable = true}, SHIFT(1099), + [2925] = {.count = 1, .reusable = true}, SHIFT(2697), + [2927] = {.count = 1, .reusable = false}, SHIFT(1106), + [2929] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2098), + [2932] = {.count = 1, .reusable = false}, SHIFT(1124), + [2934] = {.count = 1, .reusable = false}, SHIFT(1123), + [2936] = {.count = 1, .reusable = false}, SHIFT(1092), + [2938] = {.count = 1, .reusable = false}, SHIFT(2090), + [2940] = {.count = 1, .reusable = true}, SHIFT(1133), + [2942] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1126), + [2945] = {.count = 1, .reusable = true}, SHIFT(2695), + [2947] = {.count = 1, .reusable = false}, SHIFT(1132), + [2949] = {.count = 1, .reusable = true}, SHIFT(2704), + [2951] = {.count = 1, .reusable = true}, SHIFT(2131), + [2953] = {.count = 1, .reusable = true}, SHIFT(2701), + [2955] = {.count = 1, .reusable = false}, SHIFT(2702), + [2957] = {.count = 1, .reusable = true}, SHIFT(1132), + [2959] = {.count = 1, .reusable = true}, SHIFT(2705), + [2961] = {.count = 1, .reusable = false}, SHIFT(1139), + [2963] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2139), + [2966] = {.count = 1, .reusable = false}, SHIFT(1157), + [2968] = {.count = 1, .reusable = false}, SHIFT(2131), + [2970] = {.count = 1, .reusable = false}, SHIFT(1156), + [2972] = {.count = 1, .reusable = false}, SHIFT(1125), + [2974] = {.count = 1, .reusable = true}, SHIFT(1166), + [2976] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1159), + [2979] = {.count = 1, .reusable = false}, SHIFT(1165), + [2981] = {.count = 1, .reusable = true}, SHIFT(1165), + [2983] = {.count = 1, .reusable = false}, SHIFT(1172), + [2985] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2180), + [2988] = {.count = 1, .reusable = true}, SHIFT(1189), + [2990] = {.count = 1, .reusable = false}, SHIFT(1190), + [2992] = {.count = 1, .reusable = true}, SHIFT(1190), + [2994] = {.count = 1, .reusable = true}, SHIFT(1158), + [2996] = {.count = 1, .reusable = true}, SHIFT(1199), + [2998] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1192), + [3001] = {.count = 1, .reusable = false}, SHIFT(1198), + [3003] = {.count = 1, .reusable = true}, SHIFT(1198), + [3005] = {.count = 1, .reusable = false}, SHIFT(1205), + [3007] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2221), + [3010] = {.count = 1, .reusable = false}, SHIFT(1223), + [3012] = {.count = 1, .reusable = false}, SHIFT(1222), + [3014] = {.count = 1, .reusable = true}, SHIFT(1222), + [3016] = {.count = 1, .reusable = true}, SHIFT(1191), + [3018] = {.count = 1, .reusable = true}, SHIFT(1232), + [3020] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1225), + [3023] = {.count = 1, .reusable = false}, SHIFT(1231), + [3025] = {.count = 1, .reusable = true}, SHIFT(1231), + [3027] = {.count = 1, .reusable = false}, SHIFT(1238), + [3029] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2262), + [3032] = {.count = 1, .reusable = false}, SHIFT(1256), + [3034] = {.count = 1, .reusable = false}, SHIFT(1255), + [3036] = {.count = 1, .reusable = false}, SHIFT(1224), + [3038] = {.count = 1, .reusable = true}, SHIFT(1265), + [3040] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1258), + [3043] = {.count = 1, .reusable = false}, SHIFT(1264), + [3045] = {.count = 1, .reusable = true}, SHIFT(1264), + [3047] = {.count = 1, .reusable = false}, SHIFT(1337), + [3049] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2303), + [3052] = {.count = 1, .reusable = true}, SHIFT(1223), + [3054] = {.count = 1, .reusable = true}, SHIFT(1298), + [3056] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1291), + [3059] = {.count = 1, .reusable = true}, SHIFT(2735), + [3061] = {.count = 1, .reusable = false}, SHIFT(1297), + [3063] = {.count = 1, .reusable = true}, SHIFT(1297), + [3065] = {.count = 1, .reusable = true}, SHIFT(2752), + [3067] = {.count = 1, .reusable = true}, SHIFT(2336), + [3069] = {.count = 1, .reusable = true}, SHIFT(2741), + [3071] = {.count = 1, .reusable = true}, SHIFT(2753), + [3073] = {.count = 1, .reusable = false}, SHIFT(1370), + [3075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2344), + [3078] = {.count = 1, .reusable = true}, SHIFT(1331), + [3080] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1324), + [3083] = {.count = 1, .reusable = true}, SHIFT(2743), + [3085] = {.count = 1, .reusable = false}, SHIFT(1330), + [3087] = {.count = 1, .reusable = true}, SHIFT(1330), + [3089] = {.count = 1, .reusable = true}, SHIFT(2759), + [3091] = {.count = 1, .reusable = true}, SHIFT(2377), + [3093] = {.count = 1, .reusable = true}, SHIFT(2749), + [3095] = {.count = 1, .reusable = true}, SHIFT(2760), + [3097] = {.count = 1, .reusable = false}, SHIFT(1391), + [3099] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2385), + [3102] = {.count = 1, .reusable = false}, SHIFT(1322), + [3104] = {.count = 1, .reusable = false}, SHIFT(1321), + [3106] = {.count = 1, .reusable = false}, SHIFT(1257), + [3108] = {.count = 1, .reusable = true}, SHIFT(1364), + [3110] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1357), + [3113] = {.count = 1, .reusable = true}, SHIFT(2751), + [3115] = {.count = 1, .reusable = false}, SHIFT(1363), + [3117] = {.count = 1, .reusable = true}, SHIFT(1363), + [3119] = {.count = 1, .reusable = true}, SHIFT(2765), + [3121] = {.count = 1, .reusable = true}, SHIFT(2418), + [3123] = {.count = 1, .reusable = true}, SHIFT(2757), + [3125] = {.count = 1, .reusable = true}, SHIFT(2766), + [3127] = {.count = 1, .reusable = false}, SHIFT(2764), + [3129] = {.count = 1, .reusable = false}, SHIFT(1411), + [3131] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2426), + [3134] = {.count = 1, .reusable = false}, SHIFT(1355), + [3136] = {.count = 1, .reusable = false}, SHIFT(1354), + [3138] = {.count = 1, .reusable = false}, SHIFT(1290), + [3140] = {.count = 1, .reusable = false}, SHIFT(1385), + [3142] = {.count = 1, .reusable = false}, SHIFT(1384), + [3144] = {.count = 1, .reusable = false}, SHIFT(1323), + [3146] = {.count = 1, .reusable = false}, SHIFT(1406), + [3148] = {.count = 1, .reusable = false}, SHIFT(2418), + [3150] = {.count = 1, .reusable = false}, SHIFT(1405), + [3152] = {.count = 1, .reusable = false}, SHIFT(1356), + [3154] = {.count = 1, .reusable = false}, SHIFT(397), + [3156] = {.count = 1, .reusable = true}, SHIFT(397), + [3158] = {.count = 1, .reusable = false}, SHIFT(406), + [3160] = {.count = 1, .reusable = false}, SHIFT(1431), + [3162] = {.count = 1, .reusable = true}, SHIFT(411), + [3164] = {.count = 1, .reusable = true}, SHIFT(412), + [3166] = {.count = 1, .reusable = true}, SHIFT(413), + [3168] = {.count = 1, .reusable = true}, SHIFT(414), + [3170] = {.count = 1, .reusable = true}, SHIFT(431), + [3172] = {.count = 1, .reusable = false}, SHIFT(434), + [3174] = {.count = 1, .reusable = false}, SHIFT(1453), + [3176] = {.count = 1, .reusable = true}, SHIFT(439), + [3178] = {.count = 1, .reusable = true}, SHIFT(440), + [3180] = {.count = 1, .reusable = true}, SHIFT(441), + [3182] = {.count = 1, .reusable = true}, SHIFT(2547), + [3184] = {.count = 1, .reusable = true}, SHIFT(447), + [3186] = {.count = 1, .reusable = false}, SHIFT(446), + [3188] = {.count = 1, .reusable = true}, SHIFT(448), + [3190] = {.count = 1, .reusable = true}, SHIFT(449), + [3192] = {.count = 1, .reusable = false}, SHIFT(1457), + [3194] = {.count = 1, .reusable = true}, SHIFT(1457), + [3196] = {.count = 1, .reusable = true}, SHIFT(450), + [3198] = {.count = 1, .reusable = true}, SHIFT(1456), + [3200] = {.count = 1, .reusable = false}, SHIFT(1462), + [3202] = {.count = 1, .reusable = true}, SHIFT(1462), + [3204] = {.count = 1, .reusable = true}, SHIFT(451), + [3206] = {.count = 1, .reusable = true}, SHIFT(1461), + [3208] = {.count = 1, .reusable = true}, SHIFT(1463), + [3210] = {.count = 1, .reusable = false}, SHIFT(452), + [3212] = {.count = 1, .reusable = true}, SHIFT(452), + [3214] = {.count = 1, .reusable = true}, SHIFT(1087), + [3216] = {.count = 1, .reusable = false}, SHIFT(2091), + [3218] = {.count = 1, .reusable = true}, SHIFT(453), + [3220] = {.count = 1, .reusable = false}, SHIFT(455), + [3222] = {.count = 1, .reusable = true}, SHIFT(455), + [3224] = {.count = 1, .reusable = true}, SHIFT(458), + [3226] = {.count = 1, .reusable = true}, SHIFT(1469), + [3228] = {.count = 1, .reusable = true}, SHIFT(464), + [3230] = {.count = 1, .reusable = false}, SHIFT(467), + [3232] = {.count = 1, .reusable = true}, SHIFT(467), + [3234] = {.count = 1, .reusable = true}, SHIFT(1120), + [3236] = {.count = 1, .reusable = false}, SHIFT(2132), + [3238] = {.count = 1, .reusable = false}, SHIFT(478), + [3240] = {.count = 1, .reusable = true}, SHIFT(479), + [3242] = {.count = 1, .reusable = false}, SHIFT(483), + [3244] = {.count = 1, .reusable = false}, SHIFT(1479), + [3246] = {.count = 1, .reusable = true}, SHIFT(1479), + [3248] = {.count = 1, .reusable = true}, SHIFT(484), + [3250] = {.count = 1, .reusable = true}, SHIFT(1478), + [3252] = {.count = 1, .reusable = true}, SHIFT(1480), + [3254] = {.count = 1, .reusable = false}, SHIFT(1483), + [3256] = {.count = 1, .reusable = true}, SHIFT(1483), + [3258] = {.count = 1, .reusable = true}, SHIFT(485), + [3260] = {.count = 1, .reusable = true}, SHIFT(1482), + [3262] = {.count = 1, .reusable = false}, SHIFT(1484), + [3264] = {.count = 1, .reusable = true}, SHIFT(1484), + [3266] = {.count = 1, .reusable = false}, SHIFT(1488), + [3268] = {.count = 1, .reusable = true}, SHIFT(1488), + [3270] = {.count = 1, .reusable = true}, SHIFT(486), + [3272] = {.count = 1, .reusable = true}, SHIFT(1487), + [3274] = {.count = 1, .reusable = true}, SHIFT(487), + [3276] = {.count = 1, .reusable = true}, SHIFT(490), + [3278] = {.count = 1, .reusable = true}, SHIFT(1490), + [3280] = {.count = 1, .reusable = true}, SHIFT(1491), + [3282] = {.count = 1, .reusable = true}, SHIFT(491), + [3284] = {.count = 1, .reusable = true}, SHIFT(1492), + [3286] = {.count = 1, .reusable = false}, SHIFT(494), + [3288] = {.count = 1, .reusable = true}, SHIFT(495), + [3290] = {.count = 1, .reusable = true}, SHIFT(1494), + [3292] = {.count = 1, .reusable = true}, SHIFT(499), + [3294] = {.count = 1, .reusable = false}, SHIFT(499), + [3296] = {.count = 1, .reusable = true}, SHIFT(500), + [3298] = {.count = 1, .reusable = false}, SHIFT(500), + [3300] = {.count = 1, .reusable = false}, SHIFT(501), + [3302] = {.count = 1, .reusable = false}, SHIFT(502), + [3304] = {.count = 1, .reusable = false}, SHIFT(1501), + [3306] = {.count = 1, .reusable = true}, SHIFT(1501), + [3308] = {.count = 1, .reusable = true}, SHIFT(503), + [3310] = {.count = 1, .reusable = true}, SHIFT(1502), + [3312] = {.count = 1, .reusable = false}, SHIFT(1503), + [3314] = {.count = 1, .reusable = true}, SHIFT(1503), + [3316] = {.count = 1, .reusable = false}, SHIFT(1507), + [3318] = {.count = 1, .reusable = true}, SHIFT(1507), + [3320] = {.count = 1, .reusable = true}, SHIFT(504), + [3322] = {.count = 1, .reusable = true}, SHIFT(1506), + [3324] = {.count = 1, .reusable = true}, SHIFT(505), + [3326] = {.count = 1, .reusable = false}, SHIFT(1508), + [3328] = {.count = 1, .reusable = true}, SHIFT(1508), + [3330] = {.count = 1, .reusable = true}, SHIFT(506), + [3332] = {.count = 1, .reusable = true}, SHIFT(507), + [3334] = {.count = 1, .reusable = true}, SHIFT(510), + [3336] = {.count = 1, .reusable = true}, SHIFT(512), + [3338] = {.count = 1, .reusable = false}, SHIFT(513), + [3340] = {.count = 1, .reusable = true}, SHIFT(514), + [3342] = {.count = 1, .reusable = true}, SHIFT(516), + [3344] = {.count = 1, .reusable = false}, SHIFT(517), + [3346] = {.count = 1, .reusable = true}, SHIFT(517), + [3348] = {.count = 1, .reusable = false}, SHIFT(518), + [3350] = {.count = 1, .reusable = true}, SHIFT(518), + [3352] = {.count = 1, .reusable = true}, SHIFT(519), + [3354] = {.count = 1, .reusable = false}, SHIFT(1514), + [3356] = {.count = 1, .reusable = true}, SHIFT(1514), + [3358] = {.count = 1, .reusable = true}, SHIFT(520), + [3360] = {.count = 1, .reusable = false}, SHIFT(1515), + [3362] = {.count = 1, .reusable = true}, SHIFT(1515), + [3364] = {.count = 1, .reusable = true}, SHIFT(521), + [3366] = {.count = 1, .reusable = true}, SHIFT(522), + [3368] = {.count = 1, .reusable = true}, SHIFT(1516), + [3370] = {.count = 1, .reusable = true}, SHIFT(527), + [3372] = {.count = 1, .reusable = true}, SHIFT(528), + [3374] = {.count = 1, .reusable = true}, SHIFT(529), + [3376] = {.count = 1, .reusable = true}, SHIFT(530), + [3378] = {.count = 1, .reusable = true}, SHIFT(531), + [3380] = {.count = 1, .reusable = true}, SHIFT(1520), + [3382] = {.count = 1, .reusable = true}, SHIFT(533), + [3384] = {.count = 1, .reusable = true}, SHIFT(534), + [3386] = {.count = 1, .reusable = true}, SHIFT(1522), + [3388] = {.count = 1, .reusable = true}, SHIFT(1524), + [3390] = {.count = 1, .reusable = true}, SHIFT(623), + [3392] = {.count = 1, .reusable = false}, SHIFT(623), + [3394] = {.count = 1, .reusable = true}, SHIFT(630), + [3396] = {.count = 1, .reusable = false}, SHIFT(630), + [3398] = {.count = 1, .reusable = false}, SHIFT(1304), + [3400] = {.count = 1, .reusable = false}, SHIFT(1425), + [3402] = {.count = 1, .reusable = false}, SHIFT(1271), + [3404] = {.count = 1, .reusable = false}, SHIFT(551), + [3406] = {.count = 1, .reusable = true}, SHIFT(551), + [3408] = {.count = 1, .reusable = false}, SHIFT(560), + [3410] = {.count = 1, .reusable = false}, SHIFT(1539), + [3412] = {.count = 1, .reusable = true}, SHIFT(566), + [3414] = {.count = 1, .reusable = false}, SHIFT(583), + [3416] = {.count = 1, .reusable = false}, SHIFT(1551), + [3418] = {.count = 1, .reusable = true}, SHIFT(588), + [3420] = {.count = 1, .reusable = true}, SHIFT(589), + [3422] = {.count = 1, .reusable = true}, SHIFT(590), + [3424] = {.count = 1, .reusable = false}, SHIFT(1554), + [3426] = {.count = 1, .reusable = true}, SHIFT(1554), + [3428] = {.count = 1, .reusable = true}, SHIFT(594), + [3430] = {.count = 1, .reusable = true}, SHIFT(1553), + [3432] = {.count = 1, .reusable = false}, SHIFT(1559), + [3434] = {.count = 1, .reusable = true}, SHIFT(1559), + [3436] = {.count = 1, .reusable = true}, SHIFT(595), + [3438] = {.count = 1, .reusable = true}, SHIFT(1558), + [3440] = {.count = 1, .reusable = true}, SHIFT(1560), + [3442] = {.count = 1, .reusable = false}, SHIFT(596), + [3444] = {.count = 1, .reusable = true}, SHIFT(596), + [3446] = {.count = 1, .reusable = true}, SHIFT(639), + [3448] = {.count = 1, .reusable = true}, SHIFT(597), + [3450] = {.count = 1, .reusable = false}, SHIFT(599), + [3452] = {.count = 1, .reusable = true}, SHIFT(599), + [3454] = {.count = 1, .reusable = true}, SHIFT(602), + [3456] = {.count = 1, .reusable = false}, SHIFT(614), + [3458] = {.count = 1, .reusable = true}, SHIFT(615), + [3460] = {.count = 1, .reusable = false}, SHIFT(1562), + [3462] = {.count = 1, .reusable = true}, SHIFT(1562), + [3464] = {.count = 1, .reusable = true}, SHIFT(619), + [3466] = {.count = 1, .reusable = true}, SHIFT(1561), + [3468] = {.count = 1, .reusable = true}, SHIFT(1563), + [3470] = {.count = 1, .reusable = false}, SHIFT(1566), + [3472] = {.count = 1, .reusable = true}, SHIFT(1566), + [3474] = {.count = 1, .reusable = true}, SHIFT(620), + [3476] = {.count = 1, .reusable = true}, SHIFT(1565), + [3478] = {.count = 1, .reusable = false}, SHIFT(1567), + [3480] = {.count = 1, .reusable = true}, SHIFT(1567), + [3482] = {.count = 1, .reusable = false}, SHIFT(1571), + [3484] = {.count = 1, .reusable = true}, SHIFT(1571), + [3486] = {.count = 1, .reusable = true}, SHIFT(621), + [3488] = {.count = 1, .reusable = true}, SHIFT(1570), + [3490] = {.count = 1, .reusable = true}, SHIFT(622), + [3492] = {.count = 1, .reusable = false}, SHIFT(1573), + [3494] = {.count = 1, .reusable = true}, SHIFT(1573), + [3496] = {.count = 1, .reusable = true}, SHIFT(625), + [3498] = {.count = 1, .reusable = true}, SHIFT(1574), + [3500] = {.count = 1, .reusable = false}, SHIFT(1575), + [3502] = {.count = 1, .reusable = true}, SHIFT(1575), + [3504] = {.count = 1, .reusable = false}, SHIFT(1579), + [3506] = {.count = 1, .reusable = true}, SHIFT(1579), + [3508] = {.count = 1, .reusable = true}, SHIFT(626), + [3510] = {.count = 1, .reusable = true}, SHIFT(1578), + [3512] = {.count = 1, .reusable = true}, SHIFT(627), + [3514] = {.count = 1, .reusable = false}, SHIFT(1580), + [3516] = {.count = 1, .reusable = true}, SHIFT(1580), + [3518] = {.count = 1, .reusable = true}, SHIFT(628), + [3520] = {.count = 1, .reusable = true}, SHIFT(629), + [3522] = {.count = 1, .reusable = true}, SHIFT(631), + [3524] = {.count = 1, .reusable = false}, SHIFT(1581), + [3526] = {.count = 1, .reusable = true}, SHIFT(1581), + [3528] = {.count = 1, .reusable = true}, SHIFT(632), + [3530] = {.count = 1, .reusable = false}, SHIFT(1582), + [3532] = {.count = 1, .reusable = true}, SHIFT(1582), + [3534] = {.count = 1, .reusable = true}, SHIFT(633), + [3536] = {.count = 1, .reusable = true}, SHIFT(634), + [3538] = {.count = 1, .reusable = true}, SHIFT(635), + [3540] = {.count = 1, .reusable = true}, SHIFT(636), + [3542] = {.count = 1, .reusable = false}, SHIFT(646), + [3544] = {.count = 1, .reusable = false}, SHIFT(1585), + [3546] = {.count = 1, .reusable = true}, SHIFT(648), + [3548] = {.count = 1, .reusable = true}, SHIFT(649), + [3550] = {.count = 1, .reusable = true}, SHIFT(650), + [3552] = {.count = 1, .reusable = false}, SHIFT(661), + [3554] = {.count = 1, .reusable = false}, SHIFT(1596), + [3556] = {.count = 1, .reusable = true}, SHIFT(662), + [3558] = {.count = 1, .reusable = true}, SHIFT(663), + [3560] = {.count = 1, .reusable = true}, SHIFT(664), + [3562] = {.count = 1, .reusable = false}, SHIFT(1598), + [3564] = {.count = 1, .reusable = true}, SHIFT(1598), + [3566] = {.count = 1, .reusable = true}, SHIFT(668), + [3568] = {.count = 1, .reusable = true}, SHIFT(1597), + [3570] = {.count = 1, .reusable = false}, SHIFT(1603), + [3572] = {.count = 1, .reusable = true}, SHIFT(1603), + [3574] = {.count = 1, .reusable = true}, SHIFT(669), + [3576] = {.count = 1, .reusable = true}, SHIFT(1602), + [3578] = {.count = 1, .reusable = true}, SHIFT(1604), + [3580] = {.count = 1, .reusable = false}, SHIFT(670), + [3582] = {.count = 1, .reusable = true}, SHIFT(670), + [3584] = {.count = 1, .reusable = true}, SHIFT(671), + [3586] = {.count = 1, .reusable = true}, SHIFT(673), + [3588] = {.count = 1, .reusable = false}, SHIFT(681), + [3590] = {.count = 1, .reusable = false}, SHIFT(1606), + [3592] = {.count = 1, .reusable = true}, SHIFT(1606), + [3594] = {.count = 1, .reusable = true}, SHIFT(683), + [3596] = {.count = 1, .reusable = true}, SHIFT(1605), + [3598] = {.count = 1, .reusable = true}, SHIFT(1607), + [3600] = {.count = 1, .reusable = false}, SHIFT(1610), + [3602] = {.count = 1, .reusable = true}, SHIFT(1610), + [3604] = {.count = 1, .reusable = true}, SHIFT(684), + [3606] = {.count = 1, .reusable = true}, SHIFT(1609), + [3608] = {.count = 1, .reusable = false}, SHIFT(1611), + [3610] = {.count = 1, .reusable = true}, SHIFT(1611), + [3612] = {.count = 1, .reusable = false}, SHIFT(1615), + [3614] = {.count = 1, .reusable = true}, SHIFT(1615), + [3616] = {.count = 1, .reusable = true}, SHIFT(685), + [3618] = {.count = 1, .reusable = true}, SHIFT(1614), + [3620] = {.count = 1, .reusable = true}, SHIFT(686), + [3622] = {.count = 1, .reusable = false}, SHIFT(1617), + [3624] = {.count = 1, .reusable = true}, SHIFT(1617), + [3626] = {.count = 1, .reusable = true}, SHIFT(689), + [3628] = {.count = 1, .reusable = true}, SHIFT(1618), + [3630] = {.count = 1, .reusable = false}, SHIFT(1619), + [3632] = {.count = 1, .reusable = true}, SHIFT(1619), + [3634] = {.count = 1, .reusable = false}, SHIFT(1623), + [3636] = {.count = 1, .reusable = true}, SHIFT(1623), + [3638] = {.count = 1, .reusable = true}, SHIFT(690), + [3640] = {.count = 1, .reusable = true}, SHIFT(1622), + [3642] = {.count = 1, .reusable = true}, SHIFT(691), + [3644] = {.count = 1, .reusable = false}, SHIFT(1624), + [3646] = {.count = 1, .reusable = true}, SHIFT(1624), + [3648] = {.count = 1, .reusable = true}, SHIFT(692), + [3650] = {.count = 1, .reusable = true}, SHIFT(693), + [3652] = {.count = 1, .reusable = true}, SHIFT(695), + [3654] = {.count = 1, .reusable = false}, SHIFT(1625), + [3656] = {.count = 1, .reusable = true}, SHIFT(1625), + [3658] = {.count = 1, .reusable = true}, SHIFT(696), + [3660] = {.count = 1, .reusable = false}, SHIFT(1626), + [3662] = {.count = 1, .reusable = true}, SHIFT(1626), + [3664] = {.count = 1, .reusable = true}, SHIFT(697), + [3666] = {.count = 1, .reusable = true}, SHIFT(698), + [3668] = {.count = 1, .reusable = true}, SHIFT(699), + [3670] = {.count = 1, .reusable = true}, SHIFT(700), + [3672] = {.count = 1, .reusable = false}, SHIFT(703), + [3674] = {.count = 1, .reusable = false}, SHIFT(1629), + [3676] = {.count = 1, .reusable = true}, SHIFT(705), + [3678] = {.count = 1, .reusable = true}, SHIFT(706), + [3680] = {.count = 1, .reusable = true}, SHIFT(707), + [3682] = {.count = 1, .reusable = false}, SHIFT(712), + [3684] = {.count = 1, .reusable = false}, SHIFT(1640), + [3686] = {.count = 1, .reusable = true}, SHIFT(713), + [3688] = {.count = 1, .reusable = true}, SHIFT(714), + [3690] = {.count = 1, .reusable = true}, SHIFT(715), + [3692] = {.count = 1, .reusable = false}, SHIFT(1642), + [3694] = {.count = 1, .reusable = true}, SHIFT(1642), + [3696] = {.count = 1, .reusable = true}, SHIFT(719), + [3698] = {.count = 1, .reusable = true}, SHIFT(1641), + [3700] = {.count = 1, .reusable = false}, SHIFT(1647), + [3702] = {.count = 1, .reusable = true}, SHIFT(1647), + [3704] = {.count = 1, .reusable = true}, SHIFT(720), + [3706] = {.count = 1, .reusable = true}, SHIFT(1646), + [3708] = {.count = 1, .reusable = true}, SHIFT(1648), + [3710] = {.count = 1, .reusable = false}, SHIFT(721), + [3712] = {.count = 1, .reusable = true}, SHIFT(721), + [3714] = {.count = 1, .reusable = true}, SHIFT(856), + [3716] = {.count = 1, .reusable = true}, SHIFT(722), + [3718] = {.count = 1, .reusable = true}, SHIFT(724), + [3720] = {.count = 1, .reusable = false}, SHIFT(725), + [3722] = {.count = 1, .reusable = false}, SHIFT(1650), + [3724] = {.count = 1, .reusable = true}, SHIFT(1650), + [3726] = {.count = 1, .reusable = true}, SHIFT(727), + [3728] = {.count = 1, .reusable = true}, SHIFT(1649), + [3730] = {.count = 1, .reusable = true}, SHIFT(1651), + [3732] = {.count = 1, .reusable = false}, SHIFT(1654), + [3734] = {.count = 1, .reusable = true}, SHIFT(1654), + [3736] = {.count = 1, .reusable = true}, SHIFT(728), + [3738] = {.count = 1, .reusable = true}, SHIFT(1653), + [3740] = {.count = 1, .reusable = false}, SHIFT(1655), + [3742] = {.count = 1, .reusable = true}, SHIFT(1655), + [3744] = {.count = 1, .reusable = false}, SHIFT(1659), + [3746] = {.count = 1, .reusable = true}, SHIFT(1659), + [3748] = {.count = 1, .reusable = true}, SHIFT(729), + [3750] = {.count = 1, .reusable = true}, SHIFT(1658), + [3752] = {.count = 1, .reusable = true}, SHIFT(730), + [3754] = {.count = 1, .reusable = false}, SHIFT(1661), + [3756] = {.count = 1, .reusable = true}, SHIFT(1661), + [3758] = {.count = 1, .reusable = true}, SHIFT(731), + [3760] = {.count = 1, .reusable = true}, SHIFT(1662), + [3762] = {.count = 1, .reusable = false}, SHIFT(1663), + [3764] = {.count = 1, .reusable = true}, SHIFT(1663), + [3766] = {.count = 1, .reusable = false}, SHIFT(1667), + [3768] = {.count = 1, .reusable = true}, SHIFT(1667), + [3770] = {.count = 1, .reusable = true}, SHIFT(732), + [3772] = {.count = 1, .reusable = true}, SHIFT(1666), + [3774] = {.count = 1, .reusable = true}, SHIFT(733), + [3776] = {.count = 1, .reusable = false}, SHIFT(1668), + [3778] = {.count = 1, .reusable = true}, SHIFT(1668), + [3780] = {.count = 1, .reusable = true}, SHIFT(734), + [3782] = {.count = 1, .reusable = true}, SHIFT(735), + [3784] = {.count = 1, .reusable = true}, SHIFT(736), + [3786] = {.count = 1, .reusable = false}, SHIFT(1669), + [3788] = {.count = 1, .reusable = true}, SHIFT(1669), + [3790] = {.count = 1, .reusable = true}, SHIFT(737), + [3792] = {.count = 1, .reusable = false}, SHIFT(1670), + [3794] = {.count = 1, .reusable = true}, SHIFT(1670), + [3796] = {.count = 1, .reusable = true}, SHIFT(738), + [3798] = {.count = 1, .reusable = true}, SHIFT(739), + [3800] = {.count = 1, .reusable = true}, SHIFT(740), + [3802] = {.count = 1, .reusable = true}, SHIFT(741), + [3804] = {.count = 1, .reusable = false}, SHIFT(743), + [3806] = {.count = 1, .reusable = false}, SHIFT(1673), + [3808] = {.count = 1, .reusable = false}, SHIFT(750), + [3810] = {.count = 1, .reusable = false}, SHIFT(1684), + [3812] = {.count = 1, .reusable = true}, SHIFT(751), + [3814] = {.count = 1, .reusable = true}, SHIFT(752), + [3816] = {.count = 1, .reusable = true}, SHIFT(753), + [3818] = {.count = 1, .reusable = false}, SHIFT(1686), + [3820] = {.count = 1, .reusable = true}, SHIFT(1686), + [3822] = {.count = 1, .reusable = true}, SHIFT(757), + [3824] = {.count = 1, .reusable = true}, SHIFT(1685), + [3826] = {.count = 1, .reusable = false}, SHIFT(1691), + [3828] = {.count = 1, .reusable = true}, SHIFT(1691), + [3830] = {.count = 1, .reusable = true}, SHIFT(758), + [3832] = {.count = 1, .reusable = true}, SHIFT(1690), + [3834] = {.count = 1, .reusable = true}, SHIFT(1692), + [3836] = {.count = 1, .reusable = false}, SHIFT(759), + [3838] = {.count = 1, .reusable = true}, SHIFT(759), + [3840] = {.count = 1, .reusable = true}, SHIFT(2785), + [3842] = {.count = 1, .reusable = true}, SHIFT(760), + [3844] = {.count = 1, .reusable = true}, SHIFT(762), + [3846] = {.count = 1, .reusable = false}, SHIFT(763), + [3848] = {.count = 1, .reusable = false}, SHIFT(1694), + [3850] = {.count = 1, .reusable = true}, SHIFT(1694), + [3852] = {.count = 1, .reusable = true}, SHIFT(765), + [3854] = {.count = 1, .reusable = true}, SHIFT(1693), + [3856] = {.count = 1, .reusable = true}, SHIFT(1695), + [3858] = {.count = 1, .reusable = false}, SHIFT(1698), + [3860] = {.count = 1, .reusable = true}, SHIFT(1698), + [3862] = {.count = 1, .reusable = true}, SHIFT(766), + [3864] = {.count = 1, .reusable = true}, SHIFT(1697), + [3866] = {.count = 1, .reusable = false}, SHIFT(1699), + [3868] = {.count = 1, .reusable = true}, SHIFT(1699), + [3870] = {.count = 1, .reusable = false}, SHIFT(1703), + [3872] = {.count = 1, .reusable = true}, SHIFT(1703), + [3874] = {.count = 1, .reusable = true}, SHIFT(767), + [3876] = {.count = 1, .reusable = true}, SHIFT(1702), + [3878] = {.count = 1, .reusable = true}, SHIFT(768), + [3880] = {.count = 1, .reusable = false}, SHIFT(1705), + [3882] = {.count = 1, .reusable = true}, SHIFT(1705), + [3884] = {.count = 1, .reusable = true}, SHIFT(769), + [3886] = {.count = 1, .reusable = true}, SHIFT(1706), + [3888] = {.count = 1, .reusable = false}, SHIFT(1707), + [3890] = {.count = 1, .reusable = true}, SHIFT(1707), + [3892] = {.count = 1, .reusable = false}, SHIFT(1711), + [3894] = {.count = 1, .reusable = true}, SHIFT(1711), + [3896] = {.count = 1, .reusable = true}, SHIFT(770), + [3898] = {.count = 1, .reusable = true}, SHIFT(1710), + [3900] = {.count = 1, .reusable = true}, SHIFT(771), + [3902] = {.count = 1, .reusable = false}, SHIFT(1712), + [3904] = {.count = 1, .reusable = true}, SHIFT(1712), + [3906] = {.count = 1, .reusable = true}, SHIFT(772), + [3908] = {.count = 1, .reusable = true}, SHIFT(773), + [3910] = {.count = 1, .reusable = true}, SHIFT(774), + [3912] = {.count = 1, .reusable = false}, SHIFT(1713), + [3914] = {.count = 1, .reusable = true}, SHIFT(1713), + [3916] = {.count = 1, .reusable = true}, SHIFT(775), + [3918] = {.count = 1, .reusable = false}, SHIFT(1714), + [3920] = {.count = 1, .reusable = true}, SHIFT(1714), + [3922] = {.count = 1, .reusable = true}, SHIFT(776), + [3924] = {.count = 1, .reusable = true}, SHIFT(777), + [3926] = {.count = 1, .reusable = true}, SHIFT(778), + [3928] = {.count = 1, .reusable = true}, SHIFT(779), + [3930] = {.count = 1, .reusable = false}, SHIFT(781), + [3932] = {.count = 1, .reusable = false}, SHIFT(1717), + [3934] = {.count = 1, .reusable = true}, SHIFT(821), + [3936] = {.count = 1, .reusable = true}, SHIFT(822), + [3938] = {.count = 1, .reusable = true}, SHIFT(785), + [3940] = {.count = 1, .reusable = false}, SHIFT(788), + [3942] = {.count = 1, .reusable = false}, SHIFT(1728), + [3944] = {.count = 1, .reusable = true}, SHIFT(789), + [3946] = {.count = 1, .reusable = true}, SHIFT(790), + [3948] = {.count = 1, .reusable = true}, SHIFT(791), + [3950] = {.count = 1, .reusable = false}, SHIFT(1730), + [3952] = {.count = 1, .reusable = true}, SHIFT(1730), + [3954] = {.count = 1, .reusable = true}, SHIFT(795), + [3956] = {.count = 1, .reusable = true}, SHIFT(1729), + [3958] = {.count = 1, .reusable = false}, SHIFT(1735), + [3960] = {.count = 1, .reusable = true}, SHIFT(1735), + [3962] = {.count = 1, .reusable = true}, SHIFT(796), + [3964] = {.count = 1, .reusable = true}, SHIFT(1734), + [3966] = {.count = 1, .reusable = true}, SHIFT(1736), + [3968] = {.count = 1, .reusable = false}, SHIFT(797), + [3970] = {.count = 1, .reusable = true}, SHIFT(797), + [3972] = {.count = 1, .reusable = true}, SHIFT(1351), + [3974] = {.count = 1, .reusable = false}, SHIFT(2419), + [3976] = {.count = 1, .reusable = true}, SHIFT(798), + [3978] = {.count = 1, .reusable = true}, SHIFT(800), + [3980] = {.count = 1, .reusable = false}, SHIFT(801), + [3982] = {.count = 1, .reusable = false}, SHIFT(1738), + [3984] = {.count = 1, .reusable = true}, SHIFT(1738), + [3986] = {.count = 1, .reusable = true}, SHIFT(803), + [3988] = {.count = 1, .reusable = true}, SHIFT(1737), + [3990] = {.count = 1, .reusable = true}, SHIFT(1739), + [3992] = {.count = 1, .reusable = false}, SHIFT(1742), + [3994] = {.count = 1, .reusable = true}, SHIFT(1742), + [3996] = {.count = 1, .reusable = true}, SHIFT(804), + [3998] = {.count = 1, .reusable = true}, SHIFT(1741), + [4000] = {.count = 1, .reusable = false}, SHIFT(1743), + [4002] = {.count = 1, .reusable = true}, SHIFT(1743), + [4004] = {.count = 1, .reusable = false}, SHIFT(1747), + [4006] = {.count = 1, .reusable = true}, SHIFT(1747), + [4008] = {.count = 1, .reusable = true}, SHIFT(805), + [4010] = {.count = 1, .reusable = true}, SHIFT(1746), + [4012] = {.count = 1, .reusable = true}, SHIFT(806), + [4014] = {.count = 1, .reusable = false}, SHIFT(1749), + [4016] = {.count = 1, .reusable = true}, SHIFT(1749), + [4018] = {.count = 1, .reusable = true}, SHIFT(807), + [4020] = {.count = 1, .reusable = true}, SHIFT(1750), + [4022] = {.count = 1, .reusable = false}, SHIFT(1751), + [4024] = {.count = 1, .reusable = true}, SHIFT(1751), + [4026] = {.count = 1, .reusable = false}, SHIFT(1755), + [4028] = {.count = 1, .reusable = true}, SHIFT(1755), + [4030] = {.count = 1, .reusable = true}, SHIFT(808), + [4032] = {.count = 1, .reusable = true}, SHIFT(1754), + [4034] = {.count = 1, .reusable = true}, SHIFT(809), + [4036] = {.count = 1, .reusable = false}, SHIFT(1756), + [4038] = {.count = 1, .reusable = true}, SHIFT(1756), + [4040] = {.count = 1, .reusable = true}, SHIFT(810), + [4042] = {.count = 1, .reusable = true}, SHIFT(811), + [4044] = {.count = 1, .reusable = true}, SHIFT(812), + [4046] = {.count = 1, .reusable = false}, SHIFT(1757), + [4048] = {.count = 1, .reusable = true}, SHIFT(1757), + [4050] = {.count = 1, .reusable = true}, SHIFT(813), + [4052] = {.count = 1, .reusable = false}, SHIFT(1758), + [4054] = {.count = 1, .reusable = true}, SHIFT(1758), + [4056] = {.count = 1, .reusable = true}, SHIFT(814), + [4058] = {.count = 1, .reusable = true}, SHIFT(815), + [4060] = {.count = 1, .reusable = true}, SHIFT(816), + [4062] = {.count = 1, .reusable = true}, SHIFT(817), + [4064] = {.count = 1, .reusable = false}, SHIFT(819), + [4066] = {.count = 1, .reusable = false}, SHIFT(1761), + [4068] = {.count = 1, .reusable = false}, SHIFT(826), + [4070] = {.count = 1, .reusable = false}, SHIFT(1772), + [4072] = {.count = 1, .reusable = true}, SHIFT(827), + [4074] = {.count = 1, .reusable = true}, SHIFT(828), + [4076] = {.count = 1, .reusable = true}, SHIFT(829), + [4078] = {.count = 1, .reusable = false}, SHIFT(1774), + [4080] = {.count = 1, .reusable = true}, SHIFT(1774), + [4082] = {.count = 1, .reusable = true}, SHIFT(833), + [4084] = {.count = 1, .reusable = true}, SHIFT(1773), + [4086] = {.count = 1, .reusable = false}, SHIFT(1779), + [4088] = {.count = 1, .reusable = true}, SHIFT(1779), + [4090] = {.count = 1, .reusable = true}, SHIFT(834), + [4092] = {.count = 1, .reusable = true}, SHIFT(1778), + [4094] = {.count = 1, .reusable = true}, SHIFT(1780), + [4096] = {.count = 1, .reusable = false}, SHIFT(835), + [4098] = {.count = 1, .reusable = true}, SHIFT(835), + [4100] = {.count = 1, .reusable = true}, SHIFT(1285), + [4102] = {.count = 1, .reusable = true}, SHIFT(836), + [4104] = {.count = 1, .reusable = true}, SHIFT(838), + [4106] = {.count = 1, .reusable = false}, SHIFT(839), + [4108] = {.count = 1, .reusable = false}, SHIFT(1782), + [4110] = {.count = 1, .reusable = true}, SHIFT(1782), + [4112] = {.count = 1, .reusable = true}, SHIFT(841), + [4114] = {.count = 1, .reusable = true}, SHIFT(1781), + [4116] = {.count = 1, .reusable = true}, SHIFT(1783), + [4118] = {.count = 1, .reusable = false}, SHIFT(1786), + [4120] = {.count = 1, .reusable = true}, SHIFT(1786), + [4122] = {.count = 1, .reusable = true}, SHIFT(842), + [4124] = {.count = 1, .reusable = true}, SHIFT(1785), + [4126] = {.count = 1, .reusable = false}, SHIFT(1787), + [4128] = {.count = 1, .reusable = true}, SHIFT(1787), + [4130] = {.count = 1, .reusable = false}, SHIFT(1791), + [4132] = {.count = 1, .reusable = true}, SHIFT(1791), + [4134] = {.count = 1, .reusable = true}, SHIFT(843), + [4136] = {.count = 1, .reusable = true}, SHIFT(1790), + [4138] = {.count = 1, .reusable = true}, SHIFT(844), + [4140] = {.count = 1, .reusable = false}, SHIFT(1793), + [4142] = {.count = 1, .reusable = true}, SHIFT(1793), + [4144] = {.count = 1, .reusable = true}, SHIFT(845), + [4146] = {.count = 1, .reusable = true}, SHIFT(1794), + [4148] = {.count = 1, .reusable = false}, SHIFT(1795), + [4150] = {.count = 1, .reusable = true}, SHIFT(1795), + [4152] = {.count = 1, .reusable = false}, SHIFT(1799), + [4154] = {.count = 1, .reusable = true}, SHIFT(1799), + [4156] = {.count = 1, .reusable = true}, SHIFT(846), + [4158] = {.count = 1, .reusable = true}, SHIFT(1798), + [4160] = {.count = 1, .reusable = true}, SHIFT(847), + [4162] = {.count = 1, .reusable = false}, SHIFT(1800), + [4164] = {.count = 1, .reusable = true}, SHIFT(1800), + [4166] = {.count = 1, .reusable = true}, SHIFT(848), + [4168] = {.count = 1, .reusable = true}, SHIFT(849), + [4170] = {.count = 1, .reusable = true}, SHIFT(850), + [4172] = {.count = 1, .reusable = false}, SHIFT(1801), + [4174] = {.count = 1, .reusable = true}, SHIFT(1801), + [4176] = {.count = 1, .reusable = true}, SHIFT(851), + [4178] = {.count = 1, .reusable = false}, SHIFT(1802), + [4180] = {.count = 1, .reusable = true}, SHIFT(1802), + [4182] = {.count = 1, .reusable = true}, SHIFT(852), + [4184] = {.count = 1, .reusable = true}, SHIFT(853), + [4186] = {.count = 1, .reusable = true}, SHIFT(854), + [4188] = {.count = 1, .reusable = true}, SHIFT(855), + [4190] = {.count = 1, .reusable = false}, SHIFT(857), + [4192] = {.count = 1, .reusable = false}, SHIFT(1805), + [4194] = {.count = 1, .reusable = true}, SHIFT(892), + [4196] = {.count = 1, .reusable = true}, SHIFT(893), + [4198] = {.count = 1, .reusable = true}, SHIFT(861), + [4200] = {.count = 1, .reusable = false}, SHIFT(864), + [4202] = {.count = 1, .reusable = false}, SHIFT(1815), + [4204] = {.count = 1, .reusable = true}, SHIFT(865), + [4206] = {.count = 1, .reusable = true}, SHIFT(866), + [4208] = {.count = 1, .reusable = true}, SHIFT(867), + [4210] = {.count = 1, .reusable = false}, SHIFT(1817), + [4212] = {.count = 1, .reusable = true}, SHIFT(1817), + [4214] = {.count = 1, .reusable = true}, SHIFT(871), + [4216] = {.count = 1, .reusable = true}, SHIFT(1816), + [4218] = {.count = 1, .reusable = false}, SHIFT(1822), + [4220] = {.count = 1, .reusable = true}, SHIFT(1822), + [4222] = {.count = 1, .reusable = true}, SHIFT(872), + [4224] = {.count = 1, .reusable = true}, SHIFT(1821), + [4226] = {.count = 1, .reusable = true}, SHIFT(873), + [4228] = {.count = 1, .reusable = false}, SHIFT(874), + [4230] = {.count = 1, .reusable = false}, SHIFT(1824), + [4232] = {.count = 1, .reusable = true}, SHIFT(1824), + [4234] = {.count = 1, .reusable = true}, SHIFT(876), + [4236] = {.count = 1, .reusable = true}, SHIFT(1823), + [4238] = {.count = 1, .reusable = true}, SHIFT(1825), + [4240] = {.count = 1, .reusable = false}, SHIFT(1828), + [4242] = {.count = 1, .reusable = true}, SHIFT(1828), + [4244] = {.count = 1, .reusable = true}, SHIFT(877), + [4246] = {.count = 1, .reusable = true}, SHIFT(1827), + [4248] = {.count = 1, .reusable = false}, SHIFT(1829), + [4250] = {.count = 1, .reusable = true}, SHIFT(1829), + [4252] = {.count = 1, .reusable = false}, SHIFT(1833), + [4254] = {.count = 1, .reusable = true}, SHIFT(1833), + [4256] = {.count = 1, .reusable = true}, SHIFT(878), + [4258] = {.count = 1, .reusable = true}, SHIFT(1832), + [4260] = {.count = 1, .reusable = false}, SHIFT(1834), + [4262] = {.count = 1, .reusable = true}, SHIFT(1834), + [4264] = {.count = 1, .reusable = true}, SHIFT(879), + [4266] = {.count = 1, .reusable = true}, SHIFT(1835), + [4268] = {.count = 1, .reusable = false}, SHIFT(1836), + [4270] = {.count = 1, .reusable = true}, SHIFT(1836), + [4272] = {.count = 1, .reusable = false}, SHIFT(1840), + [4274] = {.count = 1, .reusable = true}, SHIFT(1840), + [4276] = {.count = 1, .reusable = true}, SHIFT(880), + [4278] = {.count = 1, .reusable = true}, SHIFT(1839), + [4280] = {.count = 1, .reusable = true}, SHIFT(881), + [4282] = {.count = 1, .reusable = false}, SHIFT(1841), + [4284] = {.count = 1, .reusable = true}, SHIFT(1841), + [4286] = {.count = 1, .reusable = true}, SHIFT(882), + [4288] = {.count = 1, .reusable = true}, SHIFT(883), + [4290] = {.count = 1, .reusable = false}, SHIFT(1842), + [4292] = {.count = 1, .reusable = true}, SHIFT(1842), + [4294] = {.count = 1, .reusable = true}, SHIFT(884), + [4296] = {.count = 1, .reusable = false}, SHIFT(1843), + [4298] = {.count = 1, .reusable = true}, SHIFT(1843), + [4300] = {.count = 1, .reusable = true}, SHIFT(885), + [4302] = {.count = 1, .reusable = true}, SHIFT(886), + [4304] = {.count = 1, .reusable = true}, SHIFT(887), + [4306] = {.count = 1, .reusable = true}, SHIFT(888), + [4308] = {.count = 1, .reusable = false}, SHIFT(890), + [4310] = {.count = 1, .reusable = false}, SHIFT(1846), + [4312] = {.count = 1, .reusable = true}, SHIFT(925), + [4314] = {.count = 1, .reusable = true}, SHIFT(926), + [4316] = {.count = 1, .reusable = true}, SHIFT(894), + [4318] = {.count = 1, .reusable = false}, SHIFT(897), + [4320] = {.count = 1, .reusable = false}, SHIFT(1856), + [4322] = {.count = 1, .reusable = true}, SHIFT(898), + [4324] = {.count = 1, .reusable = true}, SHIFT(899), + [4326] = {.count = 1, .reusable = true}, SHIFT(900), + [4328] = {.count = 1, .reusable = false}, SHIFT(1858), + [4330] = {.count = 1, .reusable = true}, SHIFT(1858), + [4332] = {.count = 1, .reusable = true}, SHIFT(904), + [4334] = {.count = 1, .reusable = true}, SHIFT(1857), + [4336] = {.count = 1, .reusable = false}, SHIFT(1863), + [4338] = {.count = 1, .reusable = true}, SHIFT(1863), + [4340] = {.count = 1, .reusable = true}, SHIFT(905), + [4342] = {.count = 1, .reusable = true}, SHIFT(1862), + [4344] = {.count = 1, .reusable = true}, SHIFT(906), + [4346] = {.count = 1, .reusable = false}, SHIFT(907), + [4348] = {.count = 1, .reusable = false}, SHIFT(1865), + [4350] = {.count = 1, .reusable = true}, SHIFT(1865), + [4352] = {.count = 1, .reusable = true}, SHIFT(909), + [4354] = {.count = 1, .reusable = true}, SHIFT(1864), + [4356] = {.count = 1, .reusable = true}, SHIFT(1866), + [4358] = {.count = 1, .reusable = false}, SHIFT(1869), + [4360] = {.count = 1, .reusable = true}, SHIFT(1869), + [4362] = {.count = 1, .reusable = true}, SHIFT(910), + [4364] = {.count = 1, .reusable = true}, SHIFT(1868), + [4366] = {.count = 1, .reusable = false}, SHIFT(1870), + [4368] = {.count = 1, .reusable = true}, SHIFT(1870), + [4370] = {.count = 1, .reusable = false}, SHIFT(1874), + [4372] = {.count = 1, .reusable = true}, SHIFT(1874), + [4374] = {.count = 1, .reusable = true}, SHIFT(911), + [4376] = {.count = 1, .reusable = true}, SHIFT(1873), + [4378] = {.count = 1, .reusable = false}, SHIFT(1875), + [4380] = {.count = 1, .reusable = true}, SHIFT(1875), + [4382] = {.count = 1, .reusable = true}, SHIFT(912), + [4384] = {.count = 1, .reusable = true}, SHIFT(1876), + [4386] = {.count = 1, .reusable = false}, SHIFT(1877), + [4388] = {.count = 1, .reusable = true}, SHIFT(1877), + [4390] = {.count = 1, .reusable = false}, SHIFT(1881), + [4392] = {.count = 1, .reusable = true}, SHIFT(1881), + [4394] = {.count = 1, .reusable = true}, SHIFT(913), + [4396] = {.count = 1, .reusable = true}, SHIFT(1880), + [4398] = {.count = 1, .reusable = true}, SHIFT(914), + [4400] = {.count = 1, .reusable = false}, SHIFT(1882), + [4402] = {.count = 1, .reusable = true}, SHIFT(1882), + [4404] = {.count = 1, .reusable = true}, SHIFT(915), + [4406] = {.count = 1, .reusable = true}, SHIFT(916), + [4408] = {.count = 1, .reusable = false}, SHIFT(1883), + [4410] = {.count = 1, .reusable = true}, SHIFT(1883), + [4412] = {.count = 1, .reusable = true}, SHIFT(917), + [4414] = {.count = 1, .reusable = false}, SHIFT(1884), + [4416] = {.count = 1, .reusable = true}, SHIFT(1884), + [4418] = {.count = 1, .reusable = true}, SHIFT(918), + [4420] = {.count = 1, .reusable = true}, SHIFT(919), + [4422] = {.count = 1, .reusable = true}, SHIFT(920), + [4424] = {.count = 1, .reusable = true}, SHIFT(921), + [4426] = {.count = 1, .reusable = false}, SHIFT(923), + [4428] = {.count = 1, .reusable = false}, SHIFT(1887), + [4430] = {.count = 1, .reusable = true}, SHIFT(959), + [4432] = {.count = 1, .reusable = false}, SHIFT(930), + [4434] = {.count = 1, .reusable = false}, SHIFT(1897), + [4436] = {.count = 1, .reusable = true}, SHIFT(931), + [4438] = {.count = 1, .reusable = true}, SHIFT(932), + [4440] = {.count = 1, .reusable = true}, SHIFT(933), + [4442] = {.count = 1, .reusable = false}, SHIFT(1899), + [4444] = {.count = 1, .reusable = true}, SHIFT(1899), + [4446] = {.count = 1, .reusable = true}, SHIFT(937), + [4448] = {.count = 1, .reusable = true}, SHIFT(1898), + [4450] = {.count = 1, .reusable = false}, SHIFT(1904), + [4452] = {.count = 1, .reusable = true}, SHIFT(1904), + [4454] = {.count = 1, .reusable = true}, SHIFT(938), + [4456] = {.count = 1, .reusable = true}, SHIFT(1903), + [4458] = {.count = 1, .reusable = true}, SHIFT(939), + [4460] = {.count = 1, .reusable = false}, SHIFT(940), + [4462] = {.count = 1, .reusable = false}, SHIFT(1906), + [4464] = {.count = 1, .reusable = true}, SHIFT(1906), + [4466] = {.count = 1, .reusable = true}, SHIFT(942), + [4468] = {.count = 1, .reusable = true}, SHIFT(1905), + [4470] = {.count = 1, .reusable = true}, SHIFT(1907), + [4472] = {.count = 1, .reusable = false}, SHIFT(1910), + [4474] = {.count = 1, .reusable = true}, SHIFT(1910), + [4476] = {.count = 1, .reusable = true}, SHIFT(943), + [4478] = {.count = 1, .reusable = true}, SHIFT(1909), + [4480] = {.count = 1, .reusable = false}, SHIFT(1911), + [4482] = {.count = 1, .reusable = true}, SHIFT(1911), + [4484] = {.count = 1, .reusable = false}, SHIFT(1915), + [4486] = {.count = 1, .reusable = true}, SHIFT(1915), + [4488] = {.count = 1, .reusable = true}, SHIFT(944), + [4490] = {.count = 1, .reusable = true}, SHIFT(1914), + [4492] = {.count = 1, .reusable = false}, SHIFT(1916), + [4494] = {.count = 1, .reusable = true}, SHIFT(1916), + [4496] = {.count = 1, .reusable = true}, SHIFT(945), + [4498] = {.count = 1, .reusable = true}, SHIFT(1917), + [4500] = {.count = 1, .reusable = false}, SHIFT(1918), + [4502] = {.count = 1, .reusable = true}, SHIFT(1918), + [4504] = {.count = 1, .reusable = false}, SHIFT(1922), + [4506] = {.count = 1, .reusable = true}, SHIFT(1922), + [4508] = {.count = 1, .reusable = true}, SHIFT(946), + [4510] = {.count = 1, .reusable = true}, SHIFT(1921), + [4512] = {.count = 1, .reusable = true}, SHIFT(947), + [4514] = {.count = 1, .reusable = false}, SHIFT(1923), + [4516] = {.count = 1, .reusable = true}, SHIFT(1923), + [4518] = {.count = 1, .reusable = true}, SHIFT(948), + [4520] = {.count = 1, .reusable = true}, SHIFT(949), + [4522] = {.count = 1, .reusable = false}, SHIFT(1924), + [4524] = {.count = 1, .reusable = true}, SHIFT(1924), + [4526] = {.count = 1, .reusable = true}, SHIFT(950), + [4528] = {.count = 1, .reusable = false}, SHIFT(1925), + [4530] = {.count = 1, .reusable = true}, SHIFT(1925), + [4532] = {.count = 1, .reusable = true}, SHIFT(951), + [4534] = {.count = 1, .reusable = true}, SHIFT(952), + [4536] = {.count = 1, .reusable = true}, SHIFT(953), + [4538] = {.count = 1, .reusable = true}, SHIFT(954), + [4540] = {.count = 1, .reusable = false}, SHIFT(956), + [4542] = {.count = 1, .reusable = false}, SHIFT(1928), + [4544] = {.count = 1, .reusable = true}, SHIFT(991), + [4546] = {.count = 1, .reusable = true}, SHIFT(992), + [4548] = {.count = 1, .reusable = true}, SHIFT(960), + [4550] = {.count = 1, .reusable = false}, SHIFT(963), + [4552] = {.count = 1, .reusable = false}, SHIFT(1938), + [4554] = {.count = 1, .reusable = true}, SHIFT(964), + [4556] = {.count = 1, .reusable = true}, SHIFT(965), + [4558] = {.count = 1, .reusable = true}, SHIFT(966), + [4560] = {.count = 1, .reusable = false}, SHIFT(1940), + [4562] = {.count = 1, .reusable = true}, SHIFT(1940), + [4564] = {.count = 1, .reusable = true}, SHIFT(970), + [4566] = {.count = 1, .reusable = true}, SHIFT(1939), + [4568] = {.count = 1, .reusable = false}, SHIFT(1945), + [4570] = {.count = 1, .reusable = true}, SHIFT(1945), + [4572] = {.count = 1, .reusable = true}, SHIFT(971), + [4574] = {.count = 1, .reusable = true}, SHIFT(1944), + [4576] = {.count = 1, .reusable = true}, SHIFT(972), + [4578] = {.count = 1, .reusable = false}, SHIFT(973), + [4580] = {.count = 1, .reusable = false}, SHIFT(1947), + [4582] = {.count = 1, .reusable = true}, SHIFT(1947), + [4584] = {.count = 1, .reusable = true}, SHIFT(975), + [4586] = {.count = 1, .reusable = true}, SHIFT(1946), + [4588] = {.count = 1, .reusable = true}, SHIFT(1948), + [4590] = {.count = 1, .reusable = false}, SHIFT(1951), + [4592] = {.count = 1, .reusable = true}, SHIFT(1951), + [4594] = {.count = 1, .reusable = true}, SHIFT(976), + [4596] = {.count = 1, .reusable = true}, SHIFT(1950), + [4598] = {.count = 1, .reusable = false}, SHIFT(1952), + [4600] = {.count = 1, .reusable = true}, SHIFT(1952), + [4602] = {.count = 1, .reusable = false}, SHIFT(1956), + [4604] = {.count = 1, .reusable = true}, SHIFT(1956), + [4606] = {.count = 1, .reusable = true}, SHIFT(977), + [4608] = {.count = 1, .reusable = true}, SHIFT(1955), + [4610] = {.count = 1, .reusable = false}, SHIFT(1957), + [4612] = {.count = 1, .reusable = true}, SHIFT(1957), + [4614] = {.count = 1, .reusable = true}, SHIFT(978), + [4616] = {.count = 1, .reusable = true}, SHIFT(1958), + [4618] = {.count = 1, .reusable = false}, SHIFT(1959), + [4620] = {.count = 1, .reusable = true}, SHIFT(1959), + [4622] = {.count = 1, .reusable = false}, SHIFT(1963), + [4624] = {.count = 1, .reusable = true}, SHIFT(1963), + [4626] = {.count = 1, .reusable = true}, SHIFT(979), + [4628] = {.count = 1, .reusable = true}, SHIFT(1962), + [4630] = {.count = 1, .reusable = true}, SHIFT(980), + [4632] = {.count = 1, .reusable = false}, SHIFT(1964), + [4634] = {.count = 1, .reusable = true}, SHIFT(1964), + [4636] = {.count = 1, .reusable = true}, SHIFT(981), + [4638] = {.count = 1, .reusable = true}, SHIFT(982), + [4640] = {.count = 1, .reusable = false}, SHIFT(1965), + [4642] = {.count = 1, .reusable = true}, SHIFT(1965), + [4644] = {.count = 1, .reusable = true}, SHIFT(983), + [4646] = {.count = 1, .reusable = false}, SHIFT(1966), + [4648] = {.count = 1, .reusable = true}, SHIFT(1966), + [4650] = {.count = 1, .reusable = true}, SHIFT(984), + [4652] = {.count = 1, .reusable = true}, SHIFT(985), + [4654] = {.count = 1, .reusable = true}, SHIFT(986), + [4656] = {.count = 1, .reusable = true}, SHIFT(987), + [4658] = {.count = 1, .reusable = false}, SHIFT(989), + [4660] = {.count = 1, .reusable = false}, SHIFT(1969), + [4662] = {.count = 1, .reusable = false}, SHIFT(996), + [4664] = {.count = 1, .reusable = false}, SHIFT(1979), + [4666] = {.count = 1, .reusable = true}, SHIFT(997), + [4668] = {.count = 1, .reusable = true}, SHIFT(998), + [4670] = {.count = 1, .reusable = true}, SHIFT(999), + [4672] = {.count = 1, .reusable = false}, SHIFT(1981), + [4674] = {.count = 1, .reusable = true}, SHIFT(1981), + [4676] = {.count = 1, .reusable = true}, SHIFT(1003), + [4678] = {.count = 1, .reusable = true}, SHIFT(1980), + [4680] = {.count = 1, .reusable = false}, SHIFT(1986), + [4682] = {.count = 1, .reusable = true}, SHIFT(1986), + [4684] = {.count = 1, .reusable = true}, SHIFT(1004), + [4686] = {.count = 1, .reusable = true}, SHIFT(1985), + [4688] = {.count = 1, .reusable = true}, SHIFT(1005), + [4690] = {.count = 1, .reusable = false}, SHIFT(1006), + [4692] = {.count = 1, .reusable = false}, SHIFT(1988), + [4694] = {.count = 1, .reusable = true}, SHIFT(1988), + [4696] = {.count = 1, .reusable = true}, SHIFT(1008), + [4698] = {.count = 1, .reusable = true}, SHIFT(1987), + [4700] = {.count = 1, .reusable = true}, SHIFT(1989), + [4702] = {.count = 1, .reusable = false}, SHIFT(1992), + [4704] = {.count = 1, .reusable = true}, SHIFT(1992), + [4706] = {.count = 1, .reusable = true}, SHIFT(1009), + [4708] = {.count = 1, .reusable = true}, SHIFT(1991), + [4710] = {.count = 1, .reusable = false}, SHIFT(1993), + [4712] = {.count = 1, .reusable = true}, SHIFT(1993), + [4714] = {.count = 1, .reusable = false}, SHIFT(1997), + [4716] = {.count = 1, .reusable = true}, SHIFT(1997), + [4718] = {.count = 1, .reusable = true}, SHIFT(1010), + [4720] = {.count = 1, .reusable = true}, SHIFT(1996), + [4722] = {.count = 1, .reusable = false}, SHIFT(1998), + [4724] = {.count = 1, .reusable = true}, SHIFT(1998), + [4726] = {.count = 1, .reusable = true}, SHIFT(1011), + [4728] = {.count = 1, .reusable = true}, SHIFT(1999), + [4730] = {.count = 1, .reusable = false}, SHIFT(2000), + [4732] = {.count = 1, .reusable = true}, SHIFT(2000), + [4734] = {.count = 1, .reusable = false}, SHIFT(2004), + [4736] = {.count = 1, .reusable = true}, SHIFT(2004), + [4738] = {.count = 1, .reusable = true}, SHIFT(1012), + [4740] = {.count = 1, .reusable = true}, SHIFT(2003), + [4742] = {.count = 1, .reusable = true}, SHIFT(1013), + [4744] = {.count = 1, .reusable = false}, SHIFT(2005), + [4746] = {.count = 1, .reusable = true}, SHIFT(2005), + [4748] = {.count = 1, .reusable = true}, SHIFT(1014), + [4750] = {.count = 1, .reusable = true}, SHIFT(1015), + [4752] = {.count = 1, .reusable = false}, SHIFT(2006), + [4754] = {.count = 1, .reusable = true}, SHIFT(2006), + [4756] = {.count = 1, .reusable = true}, SHIFT(1016), + [4758] = {.count = 1, .reusable = false}, SHIFT(2007), + [4760] = {.count = 1, .reusable = true}, SHIFT(2007), + [4762] = {.count = 1, .reusable = true}, SHIFT(1017), + [4764] = {.count = 1, .reusable = true}, SHIFT(1018), + [4766] = {.count = 1, .reusable = true}, SHIFT(1019), + [4768] = {.count = 1, .reusable = true}, SHIFT(1020), + [4770] = {.count = 1, .reusable = false}, SHIFT(1022), + [4772] = {.count = 1, .reusable = false}, SHIFT(2010), + [4774] = {.count = 1, .reusable = true}, SHIFT(1057), + [4776] = {.count = 1, .reusable = true}, SHIFT(1058), + [4778] = {.count = 1, .reusable = true}, SHIFT(1026), + [4780] = {.count = 1, .reusable = false}, SHIFT(1029), + [4782] = {.count = 1, .reusable = false}, SHIFT(2020), + [4784] = {.count = 1, .reusable = true}, SHIFT(1030), + [4786] = {.count = 1, .reusable = true}, SHIFT(1031), + [4788] = {.count = 1, .reusable = true}, SHIFT(1032), + [4790] = {.count = 1, .reusable = false}, SHIFT(2022), + [4792] = {.count = 1, .reusable = true}, SHIFT(2022), + [4794] = {.count = 1, .reusable = true}, SHIFT(1036), + [4796] = {.count = 1, .reusable = true}, SHIFT(2021), + [4798] = {.count = 1, .reusable = false}, SHIFT(2027), + [4800] = {.count = 1, .reusable = true}, SHIFT(2027), + [4802] = {.count = 1, .reusable = true}, SHIFT(1037), + [4804] = {.count = 1, .reusable = true}, SHIFT(2026), + [4806] = {.count = 1, .reusable = true}, SHIFT(1038), + [4808] = {.count = 1, .reusable = false}, SHIFT(1039), + [4810] = {.count = 1, .reusable = false}, SHIFT(2029), + [4812] = {.count = 1, .reusable = true}, SHIFT(2029), + [4814] = {.count = 1, .reusable = true}, SHIFT(1041), + [4816] = {.count = 1, .reusable = true}, SHIFT(2028), + [4818] = {.count = 1, .reusable = true}, SHIFT(2030), + [4820] = {.count = 1, .reusable = false}, SHIFT(2033), + [4822] = {.count = 1, .reusable = true}, SHIFT(2033), + [4824] = {.count = 1, .reusable = true}, SHIFT(1042), + [4826] = {.count = 1, .reusable = true}, SHIFT(2032), + [4828] = {.count = 1, .reusable = false}, SHIFT(2034), + [4830] = {.count = 1, .reusable = true}, SHIFT(2034), + [4832] = {.count = 1, .reusable = false}, SHIFT(2038), + [4834] = {.count = 1, .reusable = true}, SHIFT(2038), + [4836] = {.count = 1, .reusable = true}, SHIFT(1043), + [4838] = {.count = 1, .reusable = true}, SHIFT(2037), + [4840] = {.count = 1, .reusable = false}, SHIFT(2039), + [4842] = {.count = 1, .reusable = true}, SHIFT(2039), + [4844] = {.count = 1, .reusable = true}, SHIFT(1044), + [4846] = {.count = 1, .reusable = true}, SHIFT(2040), + [4848] = {.count = 1, .reusable = false}, SHIFT(2041), + [4850] = {.count = 1, .reusable = true}, SHIFT(2041), + [4852] = {.count = 1, .reusable = false}, SHIFT(2045), + [4854] = {.count = 1, .reusable = true}, SHIFT(2045), + [4856] = {.count = 1, .reusable = true}, SHIFT(1045), + [4858] = {.count = 1, .reusable = true}, SHIFT(2044), + [4860] = {.count = 1, .reusable = true}, SHIFT(1046), + [4862] = {.count = 1, .reusable = false}, SHIFT(2046), + [4864] = {.count = 1, .reusable = true}, SHIFT(2046), + [4866] = {.count = 1, .reusable = true}, SHIFT(1047), + [4868] = {.count = 1, .reusable = true}, SHIFT(1048), + [4870] = {.count = 1, .reusable = false}, SHIFT(2047), + [4872] = {.count = 1, .reusable = true}, SHIFT(2047), + [4874] = {.count = 1, .reusable = true}, SHIFT(1049), + [4876] = {.count = 1, .reusable = false}, SHIFT(2048), + [4878] = {.count = 1, .reusable = true}, SHIFT(2048), + [4880] = {.count = 1, .reusable = true}, SHIFT(1050), + [4882] = {.count = 1, .reusable = true}, SHIFT(1051), + [4884] = {.count = 1, .reusable = true}, SHIFT(1052), + [4886] = {.count = 1, .reusable = true}, SHIFT(1053), + [4888] = {.count = 1, .reusable = false}, SHIFT(1055), + [4890] = {.count = 1, .reusable = false}, SHIFT(2051), + [4892] = {.count = 1, .reusable = true}, SHIFT(1090), + [4894] = {.count = 1, .reusable = true}, SHIFT(1091), + [4896] = {.count = 1, .reusable = true}, SHIFT(1059), + [4898] = {.count = 1, .reusable = false}, SHIFT(1062), + [4900] = {.count = 1, .reusable = false}, SHIFT(2061), + [4902] = {.count = 1, .reusable = true}, SHIFT(1063), + [4904] = {.count = 1, .reusable = true}, SHIFT(1064), + [4906] = {.count = 1, .reusable = true}, SHIFT(1065), + [4908] = {.count = 1, .reusable = false}, SHIFT(2063), + [4910] = {.count = 1, .reusable = true}, SHIFT(2063), + [4912] = {.count = 1, .reusable = true}, SHIFT(1069), + [4914] = {.count = 1, .reusable = true}, SHIFT(2062), + [4916] = {.count = 1, .reusable = false}, SHIFT(2068), + [4918] = {.count = 1, .reusable = true}, SHIFT(2068), + [4920] = {.count = 1, .reusable = true}, SHIFT(1070), + [4922] = {.count = 1, .reusable = true}, SHIFT(2067), + [4924] = {.count = 1, .reusable = true}, SHIFT(1071), + [4926] = {.count = 1, .reusable = false}, SHIFT(1072), + [4928] = {.count = 1, .reusable = false}, SHIFT(2070), + [4930] = {.count = 1, .reusable = true}, SHIFT(2070), + [4932] = {.count = 1, .reusable = true}, SHIFT(1074), + [4934] = {.count = 1, .reusable = true}, SHIFT(2069), + [4936] = {.count = 1, .reusable = true}, SHIFT(2071), + [4938] = {.count = 1, .reusable = false}, SHIFT(2074), + [4940] = {.count = 1, .reusable = true}, SHIFT(2074), + [4942] = {.count = 1, .reusable = true}, SHIFT(1075), + [4944] = {.count = 1, .reusable = true}, SHIFT(2073), + [4946] = {.count = 1, .reusable = false}, SHIFT(2075), + [4948] = {.count = 1, .reusable = true}, SHIFT(2075), + [4950] = {.count = 1, .reusable = false}, SHIFT(2079), + [4952] = {.count = 1, .reusable = true}, SHIFT(2079), + [4954] = {.count = 1, .reusable = true}, SHIFT(1076), + [4956] = {.count = 1, .reusable = true}, SHIFT(2078), + [4958] = {.count = 1, .reusable = false}, SHIFT(2080), + [4960] = {.count = 1, .reusable = true}, SHIFT(2080), + [4962] = {.count = 1, .reusable = true}, SHIFT(1077), + [4964] = {.count = 1, .reusable = true}, SHIFT(2081), + [4966] = {.count = 1, .reusable = false}, SHIFT(2082), + [4968] = {.count = 1, .reusable = true}, SHIFT(2082), + [4970] = {.count = 1, .reusable = false}, SHIFT(2086), + [4972] = {.count = 1, .reusable = true}, SHIFT(2086), + [4974] = {.count = 1, .reusable = true}, SHIFT(1078), + [4976] = {.count = 1, .reusable = true}, SHIFT(2085), + [4978] = {.count = 1, .reusable = true}, SHIFT(1079), + [4980] = {.count = 1, .reusable = false}, SHIFT(2087), + [4982] = {.count = 1, .reusable = true}, SHIFT(2087), + [4984] = {.count = 1, .reusable = true}, SHIFT(1080), + [4986] = {.count = 1, .reusable = true}, SHIFT(1081), + [4988] = {.count = 1, .reusable = false}, SHIFT(2088), + [4990] = {.count = 1, .reusable = true}, SHIFT(2088), + [4992] = {.count = 1, .reusable = true}, SHIFT(1082), + [4994] = {.count = 1, .reusable = false}, SHIFT(2089), + [4996] = {.count = 1, .reusable = true}, SHIFT(2089), + [4998] = {.count = 1, .reusable = true}, SHIFT(1083), + [5000] = {.count = 1, .reusable = true}, SHIFT(1084), + [5002] = {.count = 1, .reusable = true}, SHIFT(1085), + [5004] = {.count = 1, .reusable = true}, SHIFT(1086), + [5006] = {.count = 1, .reusable = false}, SHIFT(1088), + [5008] = {.count = 1, .reusable = false}, SHIFT(2092), + [5010] = {.count = 1, .reusable = true}, SHIFT(1123), + [5012] = {.count = 1, .reusable = true}, SHIFT(1124), + [5014] = {.count = 1, .reusable = true}, SHIFT(1092), + [5016] = {.count = 1, .reusable = false}, SHIFT(1095), + [5018] = {.count = 1, .reusable = false}, SHIFT(2102), + [5020] = {.count = 1, .reusable = true}, SHIFT(1096), + [5022] = {.count = 1, .reusable = true}, SHIFT(1097), + [5024] = {.count = 1, .reusable = true}, SHIFT(1098), + [5026] = {.count = 1, .reusable = false}, SHIFT(2104), + [5028] = {.count = 1, .reusable = true}, SHIFT(2104), + [5030] = {.count = 1, .reusable = true}, SHIFT(1102), + [5032] = {.count = 1, .reusable = true}, SHIFT(2103), + [5034] = {.count = 1, .reusable = false}, SHIFT(2109), + [5036] = {.count = 1, .reusable = true}, SHIFT(2109), + [5038] = {.count = 1, .reusable = true}, SHIFT(1103), + [5040] = {.count = 1, .reusable = true}, SHIFT(2108), + [5042] = {.count = 1, .reusable = true}, SHIFT(1104), + [5044] = {.count = 1, .reusable = false}, SHIFT(1105), + [5046] = {.count = 1, .reusable = false}, SHIFT(2111), + [5048] = {.count = 1, .reusable = true}, SHIFT(2111), + [5050] = {.count = 1, .reusable = true}, SHIFT(1107), + [5052] = {.count = 1, .reusable = true}, SHIFT(2110), + [5054] = {.count = 1, .reusable = true}, SHIFT(2112), + [5056] = {.count = 1, .reusable = false}, SHIFT(2115), + [5058] = {.count = 1, .reusable = true}, SHIFT(2115), + [5060] = {.count = 1, .reusable = true}, SHIFT(1108), + [5062] = {.count = 1, .reusable = true}, SHIFT(2114), + [5064] = {.count = 1, .reusable = false}, SHIFT(2116), + [5066] = {.count = 1, .reusable = true}, SHIFT(2116), + [5068] = {.count = 1, .reusable = false}, SHIFT(2120), + [5070] = {.count = 1, .reusable = true}, SHIFT(2120), + [5072] = {.count = 1, .reusable = true}, SHIFT(1109), + [5074] = {.count = 1, .reusable = true}, SHIFT(2119), + [5076] = {.count = 1, .reusable = false}, SHIFT(2121), + [5078] = {.count = 1, .reusable = true}, SHIFT(2121), + [5080] = {.count = 1, .reusable = true}, SHIFT(1110), + [5082] = {.count = 1, .reusable = true}, SHIFT(2122), + [5084] = {.count = 1, .reusable = false}, SHIFT(2123), + [5086] = {.count = 1, .reusable = true}, SHIFT(2123), + [5088] = {.count = 1, .reusable = false}, SHIFT(2127), + [5090] = {.count = 1, .reusable = true}, SHIFT(2127), + [5092] = {.count = 1, .reusable = true}, SHIFT(1111), + [5094] = {.count = 1, .reusable = true}, SHIFT(2126), + [5096] = {.count = 1, .reusable = true}, SHIFT(1112), + [5098] = {.count = 1, .reusable = false}, SHIFT(2128), + [5100] = {.count = 1, .reusable = true}, SHIFT(2128), + [5102] = {.count = 1, .reusable = true}, SHIFT(1113), + [5104] = {.count = 1, .reusable = true}, SHIFT(1114), + [5106] = {.count = 1, .reusable = false}, SHIFT(2129), + [5108] = {.count = 1, .reusable = true}, SHIFT(2129), + [5110] = {.count = 1, .reusable = true}, SHIFT(1115), + [5112] = {.count = 1, .reusable = false}, SHIFT(2130), + [5114] = {.count = 1, .reusable = true}, SHIFT(2130), + [5116] = {.count = 1, .reusable = true}, SHIFT(1116), + [5118] = {.count = 1, .reusable = true}, SHIFT(1117), + [5120] = {.count = 1, .reusable = true}, SHIFT(1118), + [5122] = {.count = 1, .reusable = true}, SHIFT(1119), + [5124] = {.count = 1, .reusable = false}, SHIFT(1121), + [5126] = {.count = 1, .reusable = false}, SHIFT(2133), + [5128] = {.count = 1, .reusable = true}, SHIFT(1156), + [5130] = {.count = 1, .reusable = true}, SHIFT(1157), + [5132] = {.count = 1, .reusable = true}, SHIFT(1125), + [5134] = {.count = 1, .reusable = false}, SHIFT(1128), + [5136] = {.count = 1, .reusable = false}, SHIFT(2143), + [5138] = {.count = 1, .reusable = true}, SHIFT(1129), + [5140] = {.count = 1, .reusable = true}, SHIFT(1130), + [5142] = {.count = 1, .reusable = true}, SHIFT(1131), + [5144] = {.count = 1, .reusable = false}, SHIFT(2145), + [5146] = {.count = 1, .reusable = true}, SHIFT(2145), + [5148] = {.count = 1, .reusable = true}, SHIFT(1135), + [5150] = {.count = 1, .reusable = true}, SHIFT(2144), + [5152] = {.count = 1, .reusable = false}, SHIFT(2150), + [5154] = {.count = 1, .reusable = true}, SHIFT(2150), + [5156] = {.count = 1, .reusable = true}, SHIFT(1136), + [5158] = {.count = 1, .reusable = true}, SHIFT(2149), + [5160] = {.count = 1, .reusable = true}, SHIFT(1137), + [5162] = {.count = 1, .reusable = false}, SHIFT(1138), + [5164] = {.count = 1, .reusable = false}, SHIFT(2152), + [5166] = {.count = 1, .reusable = true}, SHIFT(2152), + [5168] = {.count = 1, .reusable = true}, SHIFT(1140), + [5170] = {.count = 1, .reusable = true}, SHIFT(2151), + [5172] = {.count = 1, .reusable = true}, SHIFT(2153), + [5174] = {.count = 1, .reusable = false}, SHIFT(2156), + [5176] = {.count = 1, .reusable = true}, SHIFT(2156), + [5178] = {.count = 1, .reusable = true}, SHIFT(1141), + [5180] = {.count = 1, .reusable = true}, SHIFT(2155), + [5182] = {.count = 1, .reusable = false}, SHIFT(2157), + [5184] = {.count = 1, .reusable = true}, SHIFT(2157), + [5186] = {.count = 1, .reusable = false}, SHIFT(2161), + [5188] = {.count = 1, .reusable = true}, SHIFT(2161), + [5190] = {.count = 1, .reusable = true}, SHIFT(1142), + [5192] = {.count = 1, .reusable = true}, SHIFT(2160), + [5194] = {.count = 1, .reusable = false}, SHIFT(2162), + [5196] = {.count = 1, .reusable = true}, SHIFT(2162), + [5198] = {.count = 1, .reusable = true}, SHIFT(1143), + [5200] = {.count = 1, .reusable = true}, SHIFT(2163), + [5202] = {.count = 1, .reusable = false}, SHIFT(2164), + [5204] = {.count = 1, .reusable = true}, SHIFT(2164), + [5206] = {.count = 1, .reusable = false}, SHIFT(2168), + [5208] = {.count = 1, .reusable = true}, SHIFT(2168), + [5210] = {.count = 1, .reusable = true}, SHIFT(1144), + [5212] = {.count = 1, .reusable = true}, SHIFT(2167), + [5214] = {.count = 1, .reusable = true}, SHIFT(1145), + [5216] = {.count = 1, .reusable = false}, SHIFT(2169), + [5218] = {.count = 1, .reusable = true}, SHIFT(2169), + [5220] = {.count = 1, .reusable = true}, SHIFT(1146), + [5222] = {.count = 1, .reusable = true}, SHIFT(1147), + [5224] = {.count = 1, .reusable = false}, SHIFT(2170), + [5226] = {.count = 1, .reusable = true}, SHIFT(2170), + [5228] = {.count = 1, .reusable = true}, SHIFT(1148), + [5230] = {.count = 1, .reusable = false}, SHIFT(2171), + [5232] = {.count = 1, .reusable = true}, SHIFT(2171), + [5234] = {.count = 1, .reusable = true}, SHIFT(1149), + [5236] = {.count = 1, .reusable = true}, SHIFT(1150), + [5238] = {.count = 1, .reusable = true}, SHIFT(1151), + [5240] = {.count = 1, .reusable = true}, SHIFT(1152), + [5242] = {.count = 1, .reusable = false}, SHIFT(1154), + [5244] = {.count = 1, .reusable = false}, SHIFT(2174), + [5246] = {.count = 1, .reusable = false}, SHIFT(1161), + [5248] = {.count = 1, .reusable = false}, SHIFT(2184), + [5250] = {.count = 1, .reusable = true}, SHIFT(1162), + [5252] = {.count = 1, .reusable = true}, SHIFT(1163), + [5254] = {.count = 1, .reusable = true}, SHIFT(1164), + [5256] = {.count = 1, .reusable = false}, SHIFT(2186), + [5258] = {.count = 1, .reusable = true}, SHIFT(2186), + [5260] = {.count = 1, .reusable = true}, SHIFT(1168), + [5262] = {.count = 1, .reusable = true}, SHIFT(2185), + [5264] = {.count = 1, .reusable = false}, SHIFT(2191), + [5266] = {.count = 1, .reusable = true}, SHIFT(2191), + [5268] = {.count = 1, .reusable = true}, SHIFT(1169), + [5270] = {.count = 1, .reusable = true}, SHIFT(2190), + [5272] = {.count = 1, .reusable = true}, SHIFT(1170), + [5274] = {.count = 1, .reusable = false}, SHIFT(1171), + [5276] = {.count = 1, .reusable = false}, SHIFT(2193), + [5278] = {.count = 1, .reusable = true}, SHIFT(2193), + [5280] = {.count = 1, .reusable = true}, SHIFT(1173), + [5282] = {.count = 1, .reusable = true}, SHIFT(2192), + [5284] = {.count = 1, .reusable = true}, SHIFT(2194), + [5286] = {.count = 1, .reusable = false}, SHIFT(2197), + [5288] = {.count = 1, .reusable = true}, SHIFT(2197), + [5290] = {.count = 1, .reusable = true}, SHIFT(1174), + [5292] = {.count = 1, .reusable = true}, SHIFT(2196), + [5294] = {.count = 1, .reusable = false}, SHIFT(2198), + [5296] = {.count = 1, .reusable = true}, SHIFT(2198), + [5298] = {.count = 1, .reusable = false}, SHIFT(2202), + [5300] = {.count = 1, .reusable = true}, SHIFT(2202), + [5302] = {.count = 1, .reusable = true}, SHIFT(1175), + [5304] = {.count = 1, .reusable = true}, SHIFT(2201), + [5306] = {.count = 1, .reusable = false}, SHIFT(2203), + [5308] = {.count = 1, .reusable = true}, SHIFT(2203), + [5310] = {.count = 1, .reusable = true}, SHIFT(1176), + [5312] = {.count = 1, .reusable = true}, SHIFT(2204), + [5314] = {.count = 1, .reusable = false}, SHIFT(2205), + [5316] = {.count = 1, .reusable = true}, SHIFT(2205), + [5318] = {.count = 1, .reusable = false}, SHIFT(2209), + [5320] = {.count = 1, .reusable = true}, SHIFT(2209), + [5322] = {.count = 1, .reusable = true}, SHIFT(1177), + [5324] = {.count = 1, .reusable = true}, SHIFT(2208), + [5326] = {.count = 1, .reusable = true}, SHIFT(1178), + [5328] = {.count = 1, .reusable = false}, SHIFT(2210), + [5330] = {.count = 1, .reusable = true}, SHIFT(2210), + [5332] = {.count = 1, .reusable = true}, SHIFT(1179), + [5334] = {.count = 1, .reusable = true}, SHIFT(1180), + [5336] = {.count = 1, .reusable = false}, SHIFT(2211), + [5338] = {.count = 1, .reusable = true}, SHIFT(2211), + [5340] = {.count = 1, .reusable = true}, SHIFT(1181), + [5342] = {.count = 1, .reusable = false}, SHIFT(2212), + [5344] = {.count = 1, .reusable = true}, SHIFT(2212), + [5346] = {.count = 1, .reusable = true}, SHIFT(1182), + [5348] = {.count = 1, .reusable = true}, SHIFT(1183), + [5350] = {.count = 1, .reusable = true}, SHIFT(1184), + [5352] = {.count = 1, .reusable = true}, SHIFT(1185), + [5354] = {.count = 1, .reusable = false}, SHIFT(1187), + [5356] = {.count = 1, .reusable = false}, SHIFT(2215), + [5358] = {.count = 1, .reusable = false}, SHIFT(1194), + [5360] = {.count = 1, .reusable = false}, SHIFT(2225), + [5362] = {.count = 1, .reusable = true}, SHIFT(1195), + [5364] = {.count = 1, .reusable = true}, SHIFT(1196), + [5366] = {.count = 1, .reusable = true}, SHIFT(1197), + [5368] = {.count = 1, .reusable = false}, SHIFT(2227), + [5370] = {.count = 1, .reusable = true}, SHIFT(2227), + [5372] = {.count = 1, .reusable = true}, SHIFT(1201), + [5374] = {.count = 1, .reusable = true}, SHIFT(2226), + [5376] = {.count = 1, .reusable = false}, SHIFT(2232), + [5378] = {.count = 1, .reusable = true}, SHIFT(2232), + [5380] = {.count = 1, .reusable = true}, SHIFT(1202), + [5382] = {.count = 1, .reusable = true}, SHIFT(2231), + [5384] = {.count = 1, .reusable = true}, SHIFT(1203), + [5386] = {.count = 1, .reusable = false}, SHIFT(1204), + [5388] = {.count = 1, .reusable = false}, SHIFT(2234), + [5390] = {.count = 1, .reusable = true}, SHIFT(2234), + [5392] = {.count = 1, .reusable = true}, SHIFT(1206), + [5394] = {.count = 1, .reusable = true}, SHIFT(2233), + [5396] = {.count = 1, .reusable = true}, SHIFT(2235), + [5398] = {.count = 1, .reusable = false}, SHIFT(2238), + [5400] = {.count = 1, .reusable = true}, SHIFT(2238), + [5402] = {.count = 1, .reusable = true}, SHIFT(1207), + [5404] = {.count = 1, .reusable = true}, SHIFT(2237), + [5406] = {.count = 1, .reusable = false}, SHIFT(2239), + [5408] = {.count = 1, .reusable = true}, SHIFT(2239), + [5410] = {.count = 1, .reusable = false}, SHIFT(2243), + [5412] = {.count = 1, .reusable = true}, SHIFT(2243), + [5414] = {.count = 1, .reusable = true}, SHIFT(1208), + [5416] = {.count = 1, .reusable = true}, SHIFT(2242), + [5418] = {.count = 1, .reusable = false}, SHIFT(2244), + [5420] = {.count = 1, .reusable = true}, SHIFT(2244), + [5422] = {.count = 1, .reusable = true}, SHIFT(1209), + [5424] = {.count = 1, .reusable = true}, SHIFT(2245), + [5426] = {.count = 1, .reusable = false}, SHIFT(2246), + [5428] = {.count = 1, .reusable = true}, SHIFT(2246), + [5430] = {.count = 1, .reusable = false}, SHIFT(2250), + [5432] = {.count = 1, .reusable = true}, SHIFT(2250), + [5434] = {.count = 1, .reusable = true}, SHIFT(1210), + [5436] = {.count = 1, .reusable = true}, SHIFT(2249), + [5438] = {.count = 1, .reusable = true}, SHIFT(1211), + [5440] = {.count = 1, .reusable = false}, SHIFT(2251), + [5442] = {.count = 1, .reusable = true}, SHIFT(2251), + [5444] = {.count = 1, .reusable = true}, SHIFT(1212), + [5446] = {.count = 1, .reusable = true}, SHIFT(1213), + [5448] = {.count = 1, .reusable = false}, SHIFT(2252), + [5450] = {.count = 1, .reusable = true}, SHIFT(2252), + [5452] = {.count = 1, .reusable = true}, SHIFT(1214), + [5454] = {.count = 1, .reusable = false}, SHIFT(2253), + [5456] = {.count = 1, .reusable = true}, SHIFT(2253), + [5458] = {.count = 1, .reusable = true}, SHIFT(1215), + [5460] = {.count = 1, .reusable = true}, SHIFT(1216), + [5462] = {.count = 1, .reusable = true}, SHIFT(1217), + [5464] = {.count = 1, .reusable = true}, SHIFT(1218), + [5466] = {.count = 1, .reusable = false}, SHIFT(1220), + [5468] = {.count = 1, .reusable = false}, SHIFT(2256), + [5470] = {.count = 1, .reusable = true}, SHIFT(1255), + [5472] = {.count = 1, .reusable = true}, SHIFT(1256), + [5474] = {.count = 1, .reusable = true}, SHIFT(1224), + [5476] = {.count = 1, .reusable = false}, SHIFT(1227), + [5478] = {.count = 1, .reusable = false}, SHIFT(2266), + [5480] = {.count = 1, .reusable = true}, SHIFT(1228), + [5482] = {.count = 1, .reusable = true}, SHIFT(1229), + [5484] = {.count = 1, .reusable = true}, SHIFT(1230), + [5486] = {.count = 1, .reusable = false}, SHIFT(2268), + [5488] = {.count = 1, .reusable = true}, SHIFT(2268), + [5490] = {.count = 1, .reusable = true}, SHIFT(1234), + [5492] = {.count = 1, .reusable = true}, SHIFT(2267), + [5494] = {.count = 1, .reusable = false}, SHIFT(2273), + [5496] = {.count = 1, .reusable = true}, SHIFT(2273), + [5498] = {.count = 1, .reusable = true}, SHIFT(1235), + [5500] = {.count = 1, .reusable = true}, SHIFT(2272), + [5502] = {.count = 1, .reusable = true}, SHIFT(1236), + [5504] = {.count = 1, .reusable = false}, SHIFT(1237), + [5506] = {.count = 1, .reusable = false}, SHIFT(2275), + [5508] = {.count = 1, .reusable = true}, SHIFT(2275), + [5510] = {.count = 1, .reusable = true}, SHIFT(1239), + [5512] = {.count = 1, .reusable = true}, SHIFT(2274), + [5514] = {.count = 1, .reusable = true}, SHIFT(2276), + [5516] = {.count = 1, .reusable = false}, SHIFT(2279), + [5518] = {.count = 1, .reusable = true}, SHIFT(2279), + [5520] = {.count = 1, .reusable = true}, SHIFT(1240), + [5522] = {.count = 1, .reusable = true}, SHIFT(2278), + [5524] = {.count = 1, .reusable = false}, SHIFT(2280), + [5526] = {.count = 1, .reusable = true}, SHIFT(2280), + [5528] = {.count = 1, .reusable = false}, SHIFT(2284), + [5530] = {.count = 1, .reusable = true}, SHIFT(2284), + [5532] = {.count = 1, .reusable = true}, SHIFT(1241), + [5534] = {.count = 1, .reusable = true}, SHIFT(2283), + [5536] = {.count = 1, .reusable = false}, SHIFT(2285), + [5538] = {.count = 1, .reusable = true}, SHIFT(2285), + [5540] = {.count = 1, .reusable = true}, SHIFT(1242), + [5542] = {.count = 1, .reusable = true}, SHIFT(2286), + [5544] = {.count = 1, .reusable = false}, SHIFT(2287), + [5546] = {.count = 1, .reusable = true}, SHIFT(2287), + [5548] = {.count = 1, .reusable = false}, SHIFT(2291), + [5550] = {.count = 1, .reusable = true}, SHIFT(2291), + [5552] = {.count = 1, .reusable = true}, SHIFT(1243), + [5554] = {.count = 1, .reusable = true}, SHIFT(2290), + [5556] = {.count = 1, .reusable = true}, SHIFT(1244), + [5558] = {.count = 1, .reusable = false}, SHIFT(2292), + [5560] = {.count = 1, .reusable = true}, SHIFT(2292), + [5562] = {.count = 1, .reusable = true}, SHIFT(1245), + [5564] = {.count = 1, .reusable = true}, SHIFT(1246), + [5566] = {.count = 1, .reusable = false}, SHIFT(2293), + [5568] = {.count = 1, .reusable = true}, SHIFT(2293), + [5570] = {.count = 1, .reusable = true}, SHIFT(1247), + [5572] = {.count = 1, .reusable = false}, SHIFT(2294), + [5574] = {.count = 1, .reusable = true}, SHIFT(2294), + [5576] = {.count = 1, .reusable = true}, SHIFT(1248), + [5578] = {.count = 1, .reusable = true}, SHIFT(1249), + [5580] = {.count = 1, .reusable = true}, SHIFT(1250), + [5582] = {.count = 1, .reusable = true}, SHIFT(1251), + [5584] = {.count = 1, .reusable = false}, SHIFT(1253), + [5586] = {.count = 1, .reusable = false}, SHIFT(2297), + [5588] = {.count = 1, .reusable = true}, SHIFT(1321), + [5590] = {.count = 1, .reusable = true}, SHIFT(1322), + [5592] = {.count = 1, .reusable = true}, SHIFT(1257), + [5594] = {.count = 1, .reusable = false}, SHIFT(1260), + [5596] = {.count = 1, .reusable = false}, SHIFT(2307), + [5598] = {.count = 1, .reusable = true}, SHIFT(1261), + [5600] = {.count = 1, .reusable = true}, SHIFT(1262), + [5602] = {.count = 1, .reusable = true}, SHIFT(1263), + [5604] = {.count = 1, .reusable = false}, SHIFT(2309), + [5606] = {.count = 1, .reusable = true}, SHIFT(2309), + [5608] = {.count = 1, .reusable = true}, SHIFT(1267), + [5610] = {.count = 1, .reusable = true}, SHIFT(2308), + [5612] = {.count = 1, .reusable = false}, SHIFT(2314), + [5614] = {.count = 1, .reusable = true}, SHIFT(2314), + [5616] = {.count = 1, .reusable = true}, SHIFT(1268), + [5618] = {.count = 1, .reusable = true}, SHIFT(2313), + [5620] = {.count = 1, .reusable = true}, SHIFT(1269), + [5622] = {.count = 1, .reusable = false}, SHIFT(1270), + [5624] = {.count = 1, .reusable = false}, SHIFT(2316), + [5626] = {.count = 1, .reusable = true}, SHIFT(2316), + [5628] = {.count = 1, .reusable = true}, SHIFT(1272), + [5630] = {.count = 1, .reusable = true}, SHIFT(2315), + [5632] = {.count = 1, .reusable = true}, SHIFT(2317), + [5634] = {.count = 1, .reusable = false}, SHIFT(2320), + [5636] = {.count = 1, .reusable = true}, SHIFT(2320), + [5638] = {.count = 1, .reusable = true}, SHIFT(1273), + [5640] = {.count = 1, .reusable = true}, SHIFT(2319), + [5642] = {.count = 1, .reusable = false}, SHIFT(2321), + [5644] = {.count = 1, .reusable = true}, SHIFT(2321), + [5646] = {.count = 1, .reusable = false}, SHIFT(2325), + [5648] = {.count = 1, .reusable = true}, SHIFT(2325), + [5650] = {.count = 1, .reusable = true}, SHIFT(1274), + [5652] = {.count = 1, .reusable = true}, SHIFT(2324), + [5654] = {.count = 1, .reusable = false}, SHIFT(2326), + [5656] = {.count = 1, .reusable = true}, SHIFT(2326), + [5658] = {.count = 1, .reusable = true}, SHIFT(1275), + [5660] = {.count = 1, .reusable = true}, SHIFT(2327), + [5662] = {.count = 1, .reusable = false}, SHIFT(2328), + [5664] = {.count = 1, .reusable = true}, SHIFT(2328), + [5666] = {.count = 1, .reusable = false}, SHIFT(2332), + [5668] = {.count = 1, .reusable = true}, SHIFT(2332), + [5670] = {.count = 1, .reusable = true}, SHIFT(1276), + [5672] = {.count = 1, .reusable = true}, SHIFT(2331), + [5674] = {.count = 1, .reusable = true}, SHIFT(1277), + [5676] = {.count = 1, .reusable = false}, SHIFT(2333), + [5678] = {.count = 1, .reusable = true}, SHIFT(2333), + [5680] = {.count = 1, .reusable = true}, SHIFT(1278), + [5682] = {.count = 1, .reusable = true}, SHIFT(1279), + [5684] = {.count = 1, .reusable = false}, SHIFT(2334), + [5686] = {.count = 1, .reusable = true}, SHIFT(2334), + [5688] = {.count = 1, .reusable = true}, SHIFT(1280), + [5690] = {.count = 1, .reusable = false}, SHIFT(2335), + [5692] = {.count = 1, .reusable = true}, SHIFT(2335), + [5694] = {.count = 1, .reusable = true}, SHIFT(1281), + [5696] = {.count = 1, .reusable = true}, SHIFT(1282), + [5698] = {.count = 1, .reusable = true}, SHIFT(1283), + [5700] = {.count = 1, .reusable = true}, SHIFT(1284), + [5702] = {.count = 1, .reusable = false}, SHIFT(1286), + [5704] = {.count = 1, .reusable = false}, SHIFT(2338), + [5706] = {.count = 1, .reusable = true}, SHIFT(1354), + [5708] = {.count = 1, .reusable = true}, SHIFT(1355), + [5710] = {.count = 1, .reusable = true}, SHIFT(1290), + [5712] = {.count = 1, .reusable = false}, SHIFT(1293), + [5714] = {.count = 1, .reusable = false}, SHIFT(2348), + [5716] = {.count = 1, .reusable = true}, SHIFT(1294), + [5718] = {.count = 1, .reusable = true}, SHIFT(1295), + [5720] = {.count = 1, .reusable = true}, SHIFT(1296), + [5722] = {.count = 1, .reusable = false}, SHIFT(2350), + [5724] = {.count = 1, .reusable = true}, SHIFT(2350), + [5726] = {.count = 1, .reusable = true}, SHIFT(1300), + [5728] = {.count = 1, .reusable = true}, SHIFT(2349), + [5730] = {.count = 1, .reusable = false}, SHIFT(2355), + [5732] = {.count = 1, .reusable = true}, SHIFT(2355), + [5734] = {.count = 1, .reusable = true}, SHIFT(1301), + [5736] = {.count = 1, .reusable = true}, SHIFT(2354), + [5738] = {.count = 1, .reusable = true}, SHIFT(1302), + [5740] = {.count = 1, .reusable = false}, SHIFT(1303), + [5742] = {.count = 1, .reusable = false}, SHIFT(2357), + [5744] = {.count = 1, .reusable = true}, SHIFT(2357), + [5746] = {.count = 1, .reusable = true}, SHIFT(1305), + [5748] = {.count = 1, .reusable = true}, SHIFT(2356), + [5750] = {.count = 1, .reusable = true}, SHIFT(2358), + [5752] = {.count = 1, .reusable = false}, SHIFT(2361), + [5754] = {.count = 1, .reusable = true}, SHIFT(2361), + [5756] = {.count = 1, .reusable = true}, SHIFT(1306), + [5758] = {.count = 1, .reusable = true}, SHIFT(2360), + [5760] = {.count = 1, .reusable = false}, SHIFT(2362), + [5762] = {.count = 1, .reusable = true}, SHIFT(2362), + [5764] = {.count = 1, .reusable = false}, SHIFT(2366), + [5766] = {.count = 1, .reusable = true}, SHIFT(2366), + [5768] = {.count = 1, .reusable = true}, SHIFT(1307), + [5770] = {.count = 1, .reusable = true}, SHIFT(2365), + [5772] = {.count = 1, .reusable = false}, SHIFT(2367), + [5774] = {.count = 1, .reusable = true}, SHIFT(2367), + [5776] = {.count = 1, .reusable = true}, SHIFT(1308), + [5778] = {.count = 1, .reusable = true}, SHIFT(2368), + [5780] = {.count = 1, .reusable = false}, SHIFT(2369), + [5782] = {.count = 1, .reusable = true}, SHIFT(2369), + [5784] = {.count = 1, .reusable = false}, SHIFT(2373), + [5786] = {.count = 1, .reusable = true}, SHIFT(2373), + [5788] = {.count = 1, .reusable = true}, SHIFT(1309), + [5790] = {.count = 1, .reusable = true}, SHIFT(2372), + [5792] = {.count = 1, .reusable = true}, SHIFT(1310), + [5794] = {.count = 1, .reusable = false}, SHIFT(2374), + [5796] = {.count = 1, .reusable = true}, SHIFT(2374), + [5798] = {.count = 1, .reusable = true}, SHIFT(1311), + [5800] = {.count = 1, .reusable = true}, SHIFT(1312), + [5802] = {.count = 1, .reusable = false}, SHIFT(2375), + [5804] = {.count = 1, .reusable = true}, SHIFT(2375), + [5806] = {.count = 1, .reusable = true}, SHIFT(1313), + [5808] = {.count = 1, .reusable = false}, SHIFT(2376), + [5810] = {.count = 1, .reusable = true}, SHIFT(2376), + [5812] = {.count = 1, .reusable = true}, SHIFT(1314), + [5814] = {.count = 1, .reusable = true}, SHIFT(1315), + [5816] = {.count = 1, .reusable = true}, SHIFT(1316), + [5818] = {.count = 1, .reusable = true}, SHIFT(1317), + [5820] = {.count = 1, .reusable = false}, SHIFT(1319), + [5822] = {.count = 1, .reusable = false}, SHIFT(2379), + [5824] = {.count = 1, .reusable = true}, SHIFT(1384), + [5826] = {.count = 1, .reusable = true}, SHIFT(1385), + [5828] = {.count = 1, .reusable = true}, SHIFT(1323), + [5830] = {.count = 1, .reusable = false}, SHIFT(1326), + [5832] = {.count = 1, .reusable = false}, SHIFT(2389), + [5834] = {.count = 1, .reusable = true}, SHIFT(1327), + [5836] = {.count = 1, .reusable = true}, SHIFT(1328), + [5838] = {.count = 1, .reusable = true}, SHIFT(1329), + [5840] = {.count = 1, .reusable = false}, SHIFT(2391), + [5842] = {.count = 1, .reusable = true}, SHIFT(2391), + [5844] = {.count = 1, .reusable = true}, SHIFT(1333), + [5846] = {.count = 1, .reusable = true}, SHIFT(2390), + [5848] = {.count = 1, .reusable = false}, SHIFT(2396), + [5850] = {.count = 1, .reusable = true}, SHIFT(2396), + [5852] = {.count = 1, .reusable = true}, SHIFT(1334), + [5854] = {.count = 1, .reusable = true}, SHIFT(2395), + [5856] = {.count = 1, .reusable = true}, SHIFT(1335), + [5858] = {.count = 1, .reusable = false}, SHIFT(1336), + [5860] = {.count = 1, .reusable = false}, SHIFT(2398), + [5862] = {.count = 1, .reusable = true}, SHIFT(2398), + [5864] = {.count = 1, .reusable = true}, SHIFT(1338), + [5866] = {.count = 1, .reusable = true}, SHIFT(2397), + [5868] = {.count = 1, .reusable = true}, SHIFT(2399), + [5870] = {.count = 1, .reusable = false}, SHIFT(2402), + [5872] = {.count = 1, .reusable = true}, SHIFT(2402), + [5874] = {.count = 1, .reusable = true}, SHIFT(1339), + [5876] = {.count = 1, .reusable = true}, SHIFT(2401), + [5878] = {.count = 1, .reusable = false}, SHIFT(2403), + [5880] = {.count = 1, .reusable = true}, SHIFT(2403), + [5882] = {.count = 1, .reusable = false}, SHIFT(2407), + [5884] = {.count = 1, .reusable = true}, SHIFT(2407), + [5886] = {.count = 1, .reusable = true}, SHIFT(1340), + [5888] = {.count = 1, .reusable = true}, SHIFT(2406), + [5890] = {.count = 1, .reusable = false}, SHIFT(2408), + [5892] = {.count = 1, .reusable = true}, SHIFT(2408), + [5894] = {.count = 1, .reusable = true}, SHIFT(1341), + [5896] = {.count = 1, .reusable = true}, SHIFT(2409), + [5898] = {.count = 1, .reusable = false}, SHIFT(2410), + [5900] = {.count = 1, .reusable = true}, SHIFT(2410), + [5902] = {.count = 1, .reusable = false}, SHIFT(2414), + [5904] = {.count = 1, .reusable = true}, SHIFT(2414), + [5906] = {.count = 1, .reusable = true}, SHIFT(1342), + [5908] = {.count = 1, .reusable = true}, SHIFT(2413), + [5910] = {.count = 1, .reusable = true}, SHIFT(1343), + [5912] = {.count = 1, .reusable = false}, SHIFT(2415), + [5914] = {.count = 1, .reusable = true}, SHIFT(2415), + [5916] = {.count = 1, .reusable = true}, SHIFT(1344), + [5918] = {.count = 1, .reusable = true}, SHIFT(1345), + [5920] = {.count = 1, .reusable = false}, SHIFT(2416), + [5922] = {.count = 1, .reusable = true}, SHIFT(2416), + [5924] = {.count = 1, .reusable = true}, SHIFT(1346), + [5926] = {.count = 1, .reusable = false}, SHIFT(2417), + [5928] = {.count = 1, .reusable = true}, SHIFT(2417), + [5930] = {.count = 1, .reusable = true}, SHIFT(1347), + [5932] = {.count = 1, .reusable = true}, SHIFT(1348), + [5934] = {.count = 1, .reusable = true}, SHIFT(1349), + [5936] = {.count = 1, .reusable = true}, SHIFT(1350), + [5938] = {.count = 1, .reusable = false}, SHIFT(1352), + [5940] = {.count = 1, .reusable = false}, SHIFT(2420), + [5942] = {.count = 1, .reusable = true}, SHIFT(1405), + [5944] = {.count = 1, .reusable = true}, SHIFT(1406), + [5946] = {.count = 1, .reusable = true}, SHIFT(1356), + [5948] = {.count = 1, .reusable = false}, SHIFT(1359), + [5950] = {.count = 1, .reusable = false}, SHIFT(2430), + [5952] = {.count = 1, .reusable = true}, SHIFT(1360), + [5954] = {.count = 1, .reusable = true}, SHIFT(1361), + [5956] = {.count = 1, .reusable = true}, SHIFT(1362), + [5958] = {.count = 1, .reusable = false}, SHIFT(2432), + [5960] = {.count = 1, .reusable = true}, SHIFT(2432), + [5962] = {.count = 1, .reusable = true}, SHIFT(1366), + [5964] = {.count = 1, .reusable = true}, SHIFT(2431), + [5966] = {.count = 1, .reusable = false}, SHIFT(2437), + [5968] = {.count = 1, .reusable = true}, SHIFT(2437), + [5970] = {.count = 1, .reusable = true}, SHIFT(1367), + [5972] = {.count = 1, .reusable = true}, SHIFT(2436), + [5974] = {.count = 1, .reusable = true}, SHIFT(1368), + [5976] = {.count = 1, .reusable = false}, SHIFT(1369), + [5978] = {.count = 1, .reusable = false}, SHIFT(2439), + [5980] = {.count = 1, .reusable = true}, SHIFT(2439), + [5982] = {.count = 1, .reusable = true}, SHIFT(1371), + [5984] = {.count = 1, .reusable = true}, SHIFT(2438), + [5986] = {.count = 1, .reusable = true}, SHIFT(2440), + [5988] = {.count = 1, .reusable = false}, SHIFT(2443), + [5990] = {.count = 1, .reusable = true}, SHIFT(2443), + [5992] = {.count = 1, .reusable = true}, SHIFT(1372), + [5994] = {.count = 1, .reusable = true}, SHIFT(2442), + [5996] = {.count = 1, .reusable = false}, SHIFT(2444), + [5998] = {.count = 1, .reusable = true}, SHIFT(2444), + [6000] = {.count = 1, .reusable = false}, SHIFT(2448), + [6002] = {.count = 1, .reusable = true}, SHIFT(2448), + [6004] = {.count = 1, .reusable = true}, SHIFT(1373), + [6006] = {.count = 1, .reusable = true}, SHIFT(2447), + [6008] = {.count = 1, .reusable = false}, SHIFT(2449), + [6010] = {.count = 1, .reusable = true}, SHIFT(2449), + [6012] = {.count = 1, .reusable = true}, SHIFT(1374), + [6014] = {.count = 1, .reusable = true}, SHIFT(2450), + [6016] = {.count = 1, .reusable = false}, SHIFT(2451), + [6018] = {.count = 1, .reusable = true}, SHIFT(2451), + [6020] = {.count = 1, .reusable = false}, SHIFT(2455), + [6022] = {.count = 1, .reusable = true}, SHIFT(2455), + [6024] = {.count = 1, .reusable = true}, SHIFT(1375), + [6026] = {.count = 1, .reusable = true}, SHIFT(2454), + [6028] = {.count = 1, .reusable = true}, SHIFT(1376), + [6030] = {.count = 1, .reusable = false}, SHIFT(2456), + [6032] = {.count = 1, .reusable = true}, SHIFT(2456), + [6034] = {.count = 1, .reusable = true}, SHIFT(1377), + [6036] = {.count = 1, .reusable = true}, SHIFT(1378), + [6038] = {.count = 1, .reusable = false}, SHIFT(2457), + [6040] = {.count = 1, .reusable = true}, SHIFT(2457), + [6042] = {.count = 1, .reusable = true}, SHIFT(1379), + [6044] = {.count = 1, .reusable = false}, SHIFT(2458), + [6046] = {.count = 1, .reusable = true}, SHIFT(2458), + [6048] = {.count = 1, .reusable = true}, SHIFT(1380), + [6050] = {.count = 1, .reusable = true}, SHIFT(1381), + [6052] = {.count = 1, .reusable = true}, SHIFT(1382), + [6054] = {.count = 1, .reusable = true}, SHIFT(1383), + [6056] = {.count = 1, .reusable = true}, SHIFT(1386), + [6058] = {.count = 1, .reusable = true}, SHIFT(1387), + [6060] = {.count = 1, .reusable = false}, SHIFT(2466), + [6062] = {.count = 1, .reusable = true}, SHIFT(2466), + [6064] = {.count = 1, .reusable = true}, SHIFT(1388), + [6066] = {.count = 1, .reusable = true}, SHIFT(2465), + [6068] = {.count = 1, .reusable = false}, SHIFT(2471), + [6070] = {.count = 1, .reusable = true}, SHIFT(2471), + [6072] = {.count = 1, .reusable = true}, SHIFT(1389), + [6074] = {.count = 1, .reusable = true}, SHIFT(2470), + [6076] = {.count = 1, .reusable = true}, SHIFT(1390), + [6078] = {.count = 1, .reusable = false}, SHIFT(2473), + [6080] = {.count = 1, .reusable = true}, SHIFT(2473), + [6082] = {.count = 1, .reusable = true}, SHIFT(1392), + [6084] = {.count = 1, .reusable = true}, SHIFT(2472), + [6086] = {.count = 1, .reusable = true}, SHIFT(2474), + [6088] = {.count = 1, .reusable = false}, SHIFT(2477), + [6090] = {.count = 1, .reusable = true}, SHIFT(2477), + [6092] = {.count = 1, .reusable = true}, SHIFT(1393), + [6094] = {.count = 1, .reusable = true}, SHIFT(2476), + [6096] = {.count = 1, .reusable = false}, SHIFT(2478), + [6098] = {.count = 1, .reusable = true}, SHIFT(2478), + [6100] = {.count = 1, .reusable = false}, SHIFT(2482), + [6102] = {.count = 1, .reusable = true}, SHIFT(2482), + [6104] = {.count = 1, .reusable = true}, SHIFT(1394), + [6106] = {.count = 1, .reusable = true}, SHIFT(2481), + [6108] = {.count = 1, .reusable = false}, SHIFT(2483), + [6110] = {.count = 1, .reusable = true}, SHIFT(2483), + [6112] = {.count = 1, .reusable = true}, SHIFT(1395), + [6114] = {.count = 1, .reusable = true}, SHIFT(2484), + [6116] = {.count = 1, .reusable = false}, SHIFT(2485), + [6118] = {.count = 1, .reusable = true}, SHIFT(2485), + [6120] = {.count = 1, .reusable = false}, SHIFT(2489), + [6122] = {.count = 1, .reusable = true}, SHIFT(2489), + [6124] = {.count = 1, .reusable = true}, SHIFT(1396), + [6126] = {.count = 1, .reusable = true}, SHIFT(2488), + [6128] = {.count = 1, .reusable = true}, SHIFT(1397), + [6130] = {.count = 1, .reusable = false}, SHIFT(2490), + [6132] = {.count = 1, .reusable = true}, SHIFT(2490), + [6134] = {.count = 1, .reusable = true}, SHIFT(1398), + [6136] = {.count = 1, .reusable = true}, SHIFT(1399), + [6138] = {.count = 1, .reusable = false}, SHIFT(2491), + [6140] = {.count = 1, .reusable = true}, SHIFT(2491), + [6142] = {.count = 1, .reusable = true}, SHIFT(1400), + [6144] = {.count = 1, .reusable = false}, SHIFT(2492), + [6146] = {.count = 1, .reusable = true}, SHIFT(2492), + [6148] = {.count = 1, .reusable = true}, SHIFT(1401), + [6150] = {.count = 1, .reusable = true}, SHIFT(1402), + [6152] = {.count = 1, .reusable = true}, SHIFT(1403), + [6154] = {.count = 1, .reusable = true}, SHIFT(1404), + [6156] = {.count = 1, .reusable = true}, SHIFT(1407), + [6158] = {.count = 1, .reusable = false}, SHIFT(2499), + [6160] = {.count = 1, .reusable = true}, SHIFT(2499), + [6162] = {.count = 1, .reusable = true}, SHIFT(1408), + [6164] = {.count = 1, .reusable = true}, SHIFT(2498), + [6166] = {.count = 1, .reusable = false}, SHIFT(2504), + [6168] = {.count = 1, .reusable = true}, SHIFT(2504), + [6170] = {.count = 1, .reusable = true}, SHIFT(1409), + [6172] = {.count = 1, .reusable = true}, SHIFT(2503), + [6174] = {.count = 1, .reusable = true}, SHIFT(1410), + [6176] = {.count = 1, .reusable = false}, SHIFT(2506), + [6178] = {.count = 1, .reusable = true}, SHIFT(2506), + [6180] = {.count = 1, .reusable = true}, SHIFT(1412), + [6182] = {.count = 1, .reusable = true}, SHIFT(2505), + [6184] = {.count = 1, .reusable = true}, SHIFT(2507), + [6186] = {.count = 1, .reusable = false}, SHIFT(2510), + [6188] = {.count = 1, .reusable = true}, SHIFT(2510), + [6190] = {.count = 1, .reusable = true}, SHIFT(1413), + [6192] = {.count = 1, .reusable = true}, SHIFT(2509), + [6194] = {.count = 1, .reusable = false}, SHIFT(2511), + [6196] = {.count = 1, .reusable = true}, SHIFT(2511), + [6198] = {.count = 1, .reusable = false}, SHIFT(2515), + [6200] = {.count = 1, .reusable = true}, SHIFT(2515), + [6202] = {.count = 1, .reusable = true}, SHIFT(1414), + [6204] = {.count = 1, .reusable = true}, SHIFT(2514), + [6206] = {.count = 1, .reusable = false}, SHIFT(2516), + [6208] = {.count = 1, .reusable = true}, SHIFT(2516), + [6210] = {.count = 1, .reusable = true}, SHIFT(1415), + [6212] = {.count = 1, .reusable = true}, SHIFT(2517), + [6214] = {.count = 1, .reusable = false}, SHIFT(2518), + [6216] = {.count = 1, .reusable = true}, SHIFT(2518), + [6218] = {.count = 1, .reusable = false}, SHIFT(2522), + [6220] = {.count = 1, .reusable = true}, SHIFT(2522), + [6222] = {.count = 1, .reusable = true}, SHIFT(1416), + [6224] = {.count = 1, .reusable = true}, SHIFT(2521), + [6226] = {.count = 1, .reusable = true}, SHIFT(1417), + [6228] = {.count = 1, .reusable = false}, SHIFT(2523), + [6230] = {.count = 1, .reusable = true}, SHIFT(2523), + [6232] = {.count = 1, .reusable = true}, SHIFT(1418), + [6234] = {.count = 1, .reusable = true}, SHIFT(1419), + [6236] = {.count = 1, .reusable = false}, SHIFT(2524), + [6238] = {.count = 1, .reusable = true}, SHIFT(2524), + [6240] = {.count = 1, .reusable = true}, SHIFT(1420), + [6242] = {.count = 1, .reusable = false}, SHIFT(2525), + [6244] = {.count = 1, .reusable = true}, SHIFT(2525), + [6246] = {.count = 1, .reusable = true}, SHIFT(1421), + [6248] = {.count = 1, .reusable = true}, SHIFT(1422), + [6250] = {.count = 1, .reusable = true}, SHIFT(1423), + [6252] = {.count = 1, .reusable = true}, SHIFT(1424), + [6254] = {.count = 1, .reusable = true}, SHIFT(1438), + [6256] = {.count = 1, .reusable = false}, SHIFT(1443), + [6258] = {.count = 1, .reusable = true}, SHIFT(2542), + [6260] = {.count = 1, .reusable = true}, SHIFT(2543), + [6262] = {.count = 1, .reusable = true}, SHIFT(1443), + [6264] = {.count = 1, .reusable = true}, SHIFT(1444), + [6266] = {.count = 1, .reusable = true}, SHIFT(1445), + [6268] = {.count = 1, .reusable = true}, SHIFT(1446), + [6270] = {.count = 1, .reusable = false}, SHIFT(1446), + [6272] = {.count = 1, .reusable = true}, SHIFT(1455), + [6274] = {.count = 1, .reusable = false}, SHIFT(1458), + [6276] = {.count = 1, .reusable = true}, SHIFT(2550), + [6278] = {.count = 1, .reusable = true}, SHIFT(1458), + [6280] = {.count = 1, .reusable = true}, SHIFT(1459), + [6282] = {.count = 1, .reusable = true}, SHIFT(1460), + [6284] = {.count = 1, .reusable = false}, SHIFT(1464), + [6286] = {.count = 1, .reusable = true}, SHIFT(1464), + [6288] = {.count = 1, .reusable = true}, SHIFT(1467), + [6290] = {.count = 1, .reusable = true}, SHIFT(1468), + [6292] = {.count = 1, .reusable = false}, SHIFT(1468), + [6294] = {.count = 1, .reusable = false}, SHIFT(2777), + [6296] = {.count = 1, .reusable = true}, SHIFT(1471), + [6298] = {.count = 1, .reusable = true}, SHIFT(1476), + [6300] = {.count = 1, .reusable = false}, SHIFT(1476), + [6302] = {.count = 1, .reusable = true}, SHIFT(1477), + [6304] = {.count = 1, .reusable = false}, SHIFT(1477), + [6306] = {.count = 1, .reusable = true}, SHIFT(1481), + [6308] = {.count = 1, .reusable = true}, SHIFT(1497), + [6310] = {.count = 1, .reusable = false}, SHIFT(1497), + [6312] = {.count = 1, .reusable = true}, SHIFT(1499), + [6314] = {.count = 1, .reusable = false}, SHIFT(1499), + [6316] = {.count = 1, .reusable = true}, SHIFT(1509), + [6318] = {.count = 1, .reusable = false}, SHIFT(1509), + [6320] = {.count = 1, .reusable = true}, SHIFT(1510), + [6322] = {.count = 1, .reusable = true}, SHIFT(1517), + [6324] = {.count = 1, .reusable = true}, SHIFT(1521), + [6326] = {.count = 1, .reusable = true}, SHIFT(1523), + [6328] = {.count = 1, .reusable = true}, SHIFT(1533), + [6330] = {.count = 1, .reusable = true}, SHIFT(1534), + [6332] = {.count = 1, .reusable = true}, SHIFT(1535), + [6334] = {.count = 1, .reusable = false}, SHIFT(1546), + [6336] = {.count = 1, .reusable = true}, SHIFT(2576), + [6338] = {.count = 1, .reusable = true}, SHIFT(2577), + [6340] = {.count = 1, .reusable = true}, SHIFT(1546), + [6342] = {.count = 1, .reusable = true}, SHIFT(1547), + [6344] = {.count = 1, .reusable = true}, SHIFT(1548), + [6346] = {.count = 1, .reusable = true}, SHIFT(1549), + [6348] = {.count = 1, .reusable = false}, SHIFT(1549), + [6350] = {.count = 1, .reusable = false}, SHIFT(1555), + [6352] = {.count = 1, .reusable = true}, SHIFT(2578), + [6354] = {.count = 1, .reusable = true}, SHIFT(1555), + [6356] = {.count = 1, .reusable = true}, SHIFT(1556), + [6358] = {.count = 1, .reusable = true}, SHIFT(1557), + [6360] = {.count = 1, .reusable = true}, SHIFT(1564), + [6362] = {.count = 1, .reusable = false}, SHIFT(1592), + [6364] = {.count = 1, .reusable = true}, SHIFT(2586), + [6366] = {.count = 1, .reusable = true}, SHIFT(1592), + [6368] = {.count = 1, .reusable = true}, SHIFT(2587), + [6370] = {.count = 1, .reusable = true}, SHIFT(1593), + [6372] = {.count = 1, .reusable = true}, SHIFT(1594), + [6374] = {.count = 1, .reusable = false}, SHIFT(1599), + [6376] = {.count = 1, .reusable = true}, SHIFT(1599), + [6378] = {.count = 1, .reusable = true}, SHIFT(2588), + [6380] = {.count = 1, .reusable = true}, SHIFT(1600), + [6382] = {.count = 1, .reusable = true}, SHIFT(1601), + [6384] = {.count = 1, .reusable = true}, SHIFT(1608), + [6386] = {.count = 1, .reusable = false}, SHIFT(1636), + [6388] = {.count = 1, .reusable = true}, SHIFT(2596), + [6390] = {.count = 1, .reusable = true}, SHIFT(1636), + [6392] = {.count = 1, .reusable = true}, SHIFT(2597), + [6394] = {.count = 1, .reusable = true}, SHIFT(1637), + [6396] = {.count = 1, .reusable = true}, SHIFT(1638), + [6398] = {.count = 1, .reusable = false}, SHIFT(1643), + [6400] = {.count = 1, .reusable = true}, SHIFT(1643), + [6402] = {.count = 1, .reusable = true}, SHIFT(2598), + [6404] = {.count = 1, .reusable = true}, SHIFT(1644), + [6406] = {.count = 1, .reusable = true}, SHIFT(1645), + [6408] = {.count = 1, .reusable = true}, SHIFT(1652), + [6410] = {.count = 1, .reusable = false}, SHIFT(1680), + [6412] = {.count = 1, .reusable = true}, SHIFT(2606), + [6414] = {.count = 1, .reusable = true}, SHIFT(1680), + [6416] = {.count = 1, .reusable = true}, SHIFT(2607), + [6418] = {.count = 1, .reusable = true}, SHIFT(1681), + [6420] = {.count = 1, .reusable = true}, SHIFT(1682), + [6422] = {.count = 1, .reusable = false}, SHIFT(1687), + [6424] = {.count = 1, .reusable = true}, SHIFT(1687), + [6426] = {.count = 1, .reusable = true}, SHIFT(2608), + [6428] = {.count = 1, .reusable = true}, SHIFT(1688), + [6430] = {.count = 1, .reusable = true}, SHIFT(1689), + [6432] = {.count = 1, .reusable = true}, SHIFT(1696), + [6434] = {.count = 1, .reusable = false}, SHIFT(1724), + [6436] = {.count = 1, .reusable = true}, SHIFT(2616), + [6438] = {.count = 1, .reusable = true}, SHIFT(2617), + [6440] = {.count = 1, .reusable = true}, SHIFT(1724), + [6442] = {.count = 1, .reusable = true}, SHIFT(1725), + [6444] = {.count = 1, .reusable = true}, SHIFT(1726), + [6446] = {.count = 1, .reusable = false}, SHIFT(1731), + [6448] = {.count = 1, .reusable = true}, SHIFT(2618), + [6450] = {.count = 1, .reusable = true}, SHIFT(1731), + [6452] = {.count = 1, .reusable = true}, SHIFT(1732), + [6454] = {.count = 1, .reusable = true}, SHIFT(1733), + [6456] = {.count = 1, .reusable = true}, SHIFT(1740), + [6458] = {.count = 1, .reusable = false}, SHIFT(1768), + [6460] = {.count = 1, .reusable = true}, SHIFT(2626), + [6462] = {.count = 1, .reusable = true}, SHIFT(2627), + [6464] = {.count = 1, .reusable = true}, SHIFT(1768), + [6466] = {.count = 1, .reusable = true}, SHIFT(1769), + [6468] = {.count = 1, .reusable = true}, SHIFT(1770), + [6470] = {.count = 1, .reusable = false}, SHIFT(1775), + [6472] = {.count = 1, .reusable = true}, SHIFT(2628), + [6474] = {.count = 1, .reusable = true}, SHIFT(1775), + [6476] = {.count = 1, .reusable = true}, SHIFT(1776), + [6478] = {.count = 1, .reusable = true}, SHIFT(1777), + [6480] = {.count = 1, .reusable = true}, SHIFT(1784), + [6482] = {.count = 1, .reusable = false}, SHIFT(1812), + [6484] = {.count = 1, .reusable = true}, SHIFT(2634), + [6486] = {.count = 1, .reusable = true}, SHIFT(1812), + [6488] = {.count = 1, .reusable = true}, SHIFT(2635), + [6490] = {.count = 1, .reusable = true}, SHIFT(1813), + [6492] = {.count = 1, .reusable = false}, SHIFT(1818), + [6494] = {.count = 1, .reusable = true}, SHIFT(1818), + [6496] = {.count = 1, .reusable = true}, SHIFT(2636), + [6498] = {.count = 1, .reusable = true}, SHIFT(1819), + [6500] = {.count = 1, .reusable = true}, SHIFT(1820), + [6502] = {.count = 1, .reusable = true}, SHIFT(1826), + [6504] = {.count = 1, .reusable = false}, SHIFT(1853), + [6506] = {.count = 1, .reusable = true}, SHIFT(2642), + [6508] = {.count = 1, .reusable = true}, SHIFT(2643), + [6510] = {.count = 1, .reusable = true}, SHIFT(1853), + [6512] = {.count = 1, .reusable = true}, SHIFT(1854), + [6514] = {.count = 1, .reusable = false}, SHIFT(1859), + [6516] = {.count = 1, .reusable = true}, SHIFT(2644), + [6518] = {.count = 1, .reusable = true}, SHIFT(1859), + [6520] = {.count = 1, .reusable = true}, SHIFT(1860), + [6522] = {.count = 1, .reusable = true}, SHIFT(1861), + [6524] = {.count = 1, .reusable = true}, SHIFT(1867), + [6526] = {.count = 1, .reusable = false}, SHIFT(1894), + [6528] = {.count = 1, .reusable = true}, SHIFT(2650), + [6530] = {.count = 1, .reusable = true}, SHIFT(2651), + [6532] = {.count = 1, .reusable = true}, SHIFT(1894), + [6534] = {.count = 1, .reusable = true}, SHIFT(1895), + [6536] = {.count = 1, .reusable = false}, SHIFT(1900), + [6538] = {.count = 1, .reusable = true}, SHIFT(2652), + [6540] = {.count = 1, .reusable = true}, SHIFT(1900), + [6542] = {.count = 1, .reusable = true}, SHIFT(1901), + [6544] = {.count = 1, .reusable = true}, SHIFT(1902), + [6546] = {.count = 1, .reusable = true}, SHIFT(1908), + [6548] = {.count = 1, .reusable = false}, SHIFT(1935), + [6550] = {.count = 1, .reusable = true}, SHIFT(2658), + [6552] = {.count = 1, .reusable = true}, SHIFT(1935), + [6554] = {.count = 1, .reusable = true}, SHIFT(2659), + [6556] = {.count = 1, .reusable = true}, SHIFT(1936), + [6558] = {.count = 1, .reusable = false}, SHIFT(1941), + [6560] = {.count = 1, .reusable = true}, SHIFT(1941), + [6562] = {.count = 1, .reusable = true}, SHIFT(2660), + [6564] = {.count = 1, .reusable = true}, SHIFT(1942), + [6566] = {.count = 1, .reusable = true}, SHIFT(1943), + [6568] = {.count = 1, .reusable = true}, SHIFT(1949), + [6570] = {.count = 1, .reusable = false}, SHIFT(1976), + [6572] = {.count = 1, .reusable = true}, SHIFT(2666), + [6574] = {.count = 1, .reusable = true}, SHIFT(1976), + [6576] = {.count = 1, .reusable = true}, SHIFT(2667), + [6578] = {.count = 1, .reusable = true}, SHIFT(1977), + [6580] = {.count = 1, .reusable = false}, SHIFT(1982), + [6582] = {.count = 1, .reusable = true}, SHIFT(1982), + [6584] = {.count = 1, .reusable = true}, SHIFT(2668), + [6586] = {.count = 1, .reusable = true}, SHIFT(1983), + [6588] = {.count = 1, .reusable = true}, SHIFT(1984), + [6590] = {.count = 1, .reusable = true}, SHIFT(1990), + [6592] = {.count = 1, .reusable = false}, SHIFT(2017), + [6594] = {.count = 1, .reusable = true}, SHIFT(2674), + [6596] = {.count = 1, .reusable = true}, SHIFT(2017), + [6598] = {.count = 1, .reusable = true}, SHIFT(2675), + [6600] = {.count = 1, .reusable = true}, SHIFT(2018), + [6602] = {.count = 1, .reusable = false}, SHIFT(2023), + [6604] = {.count = 1, .reusable = true}, SHIFT(2023), + [6606] = {.count = 1, .reusable = true}, SHIFT(2676), + [6608] = {.count = 1, .reusable = true}, SHIFT(2024), + [6610] = {.count = 1, .reusable = true}, SHIFT(2025), + [6612] = {.count = 1, .reusable = true}, SHIFT(2031), + [6614] = {.count = 1, .reusable = false}, SHIFT(2058), + [6616] = {.count = 1, .reusable = true}, SHIFT(2682), + [6618] = {.count = 1, .reusable = true}, SHIFT(2058), + [6620] = {.count = 1, .reusable = true}, SHIFT(2683), + [6622] = {.count = 1, .reusable = true}, SHIFT(2059), + [6624] = {.count = 1, .reusable = false}, SHIFT(2064), + [6626] = {.count = 1, .reusable = true}, SHIFT(2064), + [6628] = {.count = 1, .reusable = true}, SHIFT(2684), + [6630] = {.count = 1, .reusable = true}, SHIFT(2065), + [6632] = {.count = 1, .reusable = true}, SHIFT(2066), + [6634] = {.count = 1, .reusable = true}, SHIFT(2072), + [6636] = {.count = 1, .reusable = false}, SHIFT(2099), + [6638] = {.count = 1, .reusable = true}, SHIFT(2690), + [6640] = {.count = 1, .reusable = true}, SHIFT(2099), + [6642] = {.count = 1, .reusable = true}, SHIFT(2691), + [6644] = {.count = 1, .reusable = true}, SHIFT(2100), + [6646] = {.count = 1, .reusable = false}, SHIFT(2105), + [6648] = {.count = 1, .reusable = true}, SHIFT(2105), + [6650] = {.count = 1, .reusable = true}, SHIFT(2692), + [6652] = {.count = 1, .reusable = true}, SHIFT(2106), + [6654] = {.count = 1, .reusable = true}, SHIFT(2107), + [6656] = {.count = 1, .reusable = true}, SHIFT(2113), + [6658] = {.count = 1, .reusable = false}, SHIFT(2140), + [6660] = {.count = 1, .reusable = true}, SHIFT(2698), + [6662] = {.count = 1, .reusable = true}, SHIFT(2699), + [6664] = {.count = 1, .reusable = true}, SHIFT(2140), + [6666] = {.count = 1, .reusable = true}, SHIFT(2141), + [6668] = {.count = 1, .reusable = false}, SHIFT(2146), + [6670] = {.count = 1, .reusable = true}, SHIFT(2700), + [6672] = {.count = 1, .reusable = true}, SHIFT(2146), + [6674] = {.count = 1, .reusable = true}, SHIFT(2147), + [6676] = {.count = 1, .reusable = true}, SHIFT(2148), + [6678] = {.count = 1, .reusable = true}, SHIFT(2154), + [6680] = {.count = 1, .reusable = false}, SHIFT(2181), + [6682] = {.count = 1, .reusable = true}, SHIFT(2706), + [6684] = {.count = 1, .reusable = true}, SHIFT(2707), + [6686] = {.count = 1, .reusable = true}, SHIFT(2181), + [6688] = {.count = 1, .reusable = true}, SHIFT(2182), + [6690] = {.count = 1, .reusable = false}, SHIFT(2187), + [6692] = {.count = 1, .reusable = true}, SHIFT(2708), + [6694] = {.count = 1, .reusable = true}, SHIFT(2187), + [6696] = {.count = 1, .reusable = true}, SHIFT(2188), + [6698] = {.count = 1, .reusable = true}, SHIFT(2189), + [6700] = {.count = 1, .reusable = true}, SHIFT(2195), + [6702] = {.count = 1, .reusable = false}, SHIFT(2222), + [6704] = {.count = 1, .reusable = true}, SHIFT(2714), + [6706] = {.count = 1, .reusable = true}, SHIFT(2222), + [6708] = {.count = 1, .reusable = true}, SHIFT(2715), + [6710] = {.count = 1, .reusable = true}, SHIFT(2223), + [6712] = {.count = 1, .reusable = false}, SHIFT(2228), + [6714] = {.count = 1, .reusable = true}, SHIFT(2228), + [6716] = {.count = 1, .reusable = true}, SHIFT(2716), + [6718] = {.count = 1, .reusable = true}, SHIFT(2229), + [6720] = {.count = 1, .reusable = true}, SHIFT(2230), + [6722] = {.count = 1, .reusable = true}, SHIFT(2236), + [6724] = {.count = 1, .reusable = false}, SHIFT(2263), + [6726] = {.count = 1, .reusable = true}, SHIFT(2722), + [6728] = {.count = 1, .reusable = true}, SHIFT(2723), + [6730] = {.count = 1, .reusable = true}, SHIFT(2263), + [6732] = {.count = 1, .reusable = true}, SHIFT(2264), + [6734] = {.count = 1, .reusable = false}, SHIFT(2269), + [6736] = {.count = 1, .reusable = true}, SHIFT(2724), + [6738] = {.count = 1, .reusable = true}, SHIFT(2269), + [6740] = {.count = 1, .reusable = true}, SHIFT(2270), + [6742] = {.count = 1, .reusable = true}, SHIFT(2271), + [6744] = {.count = 1, .reusable = true}, SHIFT(2277), + [6746] = {.count = 1, .reusable = false}, SHIFT(2304), + [6748] = {.count = 1, .reusable = true}, SHIFT(2730), + [6750] = {.count = 1, .reusable = true}, SHIFT(2304), + [6752] = {.count = 1, .reusable = true}, SHIFT(2731), + [6754] = {.count = 1, .reusable = true}, SHIFT(2305), + [6756] = {.count = 1, .reusable = false}, SHIFT(2310), + [6758] = {.count = 1, .reusable = true}, SHIFT(2310), + [6760] = {.count = 1, .reusable = true}, SHIFT(2732), + [6762] = {.count = 1, .reusable = true}, SHIFT(2311), + [6764] = {.count = 1, .reusable = true}, SHIFT(2312), + [6766] = {.count = 1, .reusable = true}, SHIFT(2318), + [6768] = {.count = 1, .reusable = false}, SHIFT(2345), + [6770] = {.count = 1, .reusable = true}, SHIFT(2738), + [6772] = {.count = 1, .reusable = true}, SHIFT(2345), + [6774] = {.count = 1, .reusable = true}, SHIFT(2739), + [6776] = {.count = 1, .reusable = true}, SHIFT(2346), + [6778] = {.count = 1, .reusable = false}, SHIFT(2351), + [6780] = {.count = 1, .reusable = true}, SHIFT(2351), + [6782] = {.count = 1, .reusable = true}, SHIFT(2740), + [6784] = {.count = 1, .reusable = true}, SHIFT(2352), + [6786] = {.count = 1, .reusable = true}, SHIFT(2353), + [6788] = {.count = 1, .reusable = true}, SHIFT(2359), + [6790] = {.count = 1, .reusable = false}, SHIFT(2386), + [6792] = {.count = 1, .reusable = true}, SHIFT(2746), + [6794] = {.count = 1, .reusable = true}, SHIFT(2386), + [6796] = {.count = 1, .reusable = true}, SHIFT(2747), + [6798] = {.count = 1, .reusable = true}, SHIFT(2387), + [6800] = {.count = 1, .reusable = false}, SHIFT(2392), + [6802] = {.count = 1, .reusable = true}, SHIFT(2392), + [6804] = {.count = 1, .reusable = true}, SHIFT(2748), + [6806] = {.count = 1, .reusable = true}, SHIFT(2393), + [6808] = {.count = 1, .reusable = true}, SHIFT(2394), + [6810] = {.count = 1, .reusable = true}, SHIFT(2400), + [6812] = {.count = 1, .reusable = false}, SHIFT(2427), + [6814] = {.count = 1, .reusable = true}, SHIFT(2754), + [6816] = {.count = 1, .reusable = true}, SHIFT(2427), + [6818] = {.count = 1, .reusable = true}, SHIFT(2755), + [6820] = {.count = 1, .reusable = true}, SHIFT(2428), + [6822] = {.count = 1, .reusable = false}, SHIFT(2433), + [6824] = {.count = 1, .reusable = true}, SHIFT(2433), + [6826] = {.count = 1, .reusable = true}, SHIFT(2756), + [6828] = {.count = 1, .reusable = true}, SHIFT(2434), + [6830] = {.count = 1, .reusable = true}, SHIFT(2435), + [6832] = {.count = 1, .reusable = true}, SHIFT(2441), + [6834] = {.count = 1, .reusable = false}, SHIFT(2462), + [6836] = {.count = 1, .reusable = true}, SHIFT(2761), + [6838] = {.count = 1, .reusable = true}, SHIFT(2462), + [6840] = {.count = 1, .reusable = true}, SHIFT(2762), + [6842] = {.count = 1, .reusable = true}, SHIFT(2463), + [6844] = {.count = 1, .reusable = false}, SHIFT(2467), + [6846] = {.count = 1, .reusable = true}, SHIFT(2467), + [6848] = {.count = 1, .reusable = true}, SHIFT(2763), + [6850] = {.count = 1, .reusable = true}, SHIFT(2468), + [6852] = {.count = 1, .reusable = true}, SHIFT(2469), + [6854] = {.count = 1, .reusable = true}, SHIFT(2475), + [6856] = {.count = 1, .reusable = false}, SHIFT(2495), + [6858] = {.count = 1, .reusable = true}, SHIFT(2767), + [6860] = {.count = 1, .reusable = true}, SHIFT(2495), + [6862] = {.count = 1, .reusable = true}, SHIFT(2768), + [6864] = {.count = 1, .reusable = true}, SHIFT(2496), + [6866] = {.count = 1, .reusable = false}, SHIFT(2500), + [6868] = {.count = 1, .reusable = true}, SHIFT(2500), + [6870] = {.count = 1, .reusable = true}, SHIFT(2769), + [6872] = {.count = 1, .reusable = true}, SHIFT(2501), + [6874] = {.count = 1, .reusable = true}, SHIFT(2502), + [6876] = {.count = 1, .reusable = true}, SHIFT(2508), + [6878] = {.count = 1, .reusable = true}, SHIFT(2793), + [6880] = {.count = 1, .reusable = true}, SHIFT(2546), + [6882] = {.count = 1, .reusable = true}, SHIFT(2775), + [6884] = {.count = 1, .reusable = false}, SHIFT(2775), + [6886] = {.count = 1, .reusable = false}, SHIFT(2548), + [6888] = {.count = 1, .reusable = true}, SHIFT(2776), + [6890] = {.count = 1, .reusable = false}, SHIFT(2776), + [6892] = {.count = 1, .reusable = false}, SHIFT(2549), + [6894] = {.count = 1, .reusable = true}, SHIFT(2551), + [6896] = {.count = 1, .reusable = true}, SHIFT(2552), + [6898] = {.count = 1, .reusable = false}, SHIFT(2554), + [6900] = {.count = 1, .reusable = false}, SHIFT(2558), + [6902] = {.count = 1, .reusable = false}, SHIFT(2562), + [6904] = {.count = 1, .reusable = true}, SHIFT(2786), + [6906] = {.count = 1, .reusable = false}, SHIFT(2782), + [6908] = {.count = 1, .reusable = true}, SHIFT(2782), + [6910] = {.count = 1, .reusable = false}, SHIFT(2783), + [6912] = {.count = 1, .reusable = true}, SHIFT(2783), + [6914] = {.count = 1, .reusable = false}, SHIFT(2784), + [6916] = {.count = 1, .reusable = true}, SHIFT(2784), + [6918] = {.count = 1, .reusable = true}, SHIFT(2790), + [6920] = {.count = 1, .reusable = false}, SHIFT(2790), + [6922] = {.count = 1, .reusable = false}, SHIFT(2772), + [6924] = {.count = 1, .reusable = true}, SHIFT(2772), + [6926] = {.count = 1, .reusable = false}, SHIFT(2778), + [6928] = {.count = 1, .reusable = true}, SHIFT(2780), + [6930] = {.count = 1, .reusable = false}, SHIFT(2780), + [6932] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2789), + [6935] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2791), + [6938] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2788), }; void *tree_sitter_bash_external_scanner_create(void); From 762ce0d9cd375555f2f0ba067fe3a4e91463ab47 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 30 Jul 2019 16:16:07 -0600 Subject: [PATCH 6/6] Add more unary operators --- corpus/statements.txt | 6 +- grammar.js | 14 +- src/grammar.json | 82 +- src/parser.c | 153663 ++++++++++++++++++++------------------- 4 files changed, 76985 insertions(+), 76780 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 37a01ea1..61605c48 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -497,7 +497,7 @@ Arithmetic expansion ========================== a=$((64#@ << 22)) -b="$((42 + 2))" +b="$((-42 + ~2))" --- @@ -507,4 +507,6 @@ b="$((42 + 2))" (arithmetic_expansion (binary_expression (number) (number)))) (variable_assignment (variable_name) - (string (arithmetic_expansion (binary_expression (number) (number)))))) + (string (arithmetic_expansion (binary_expression + (unary_expression (number)) + (unary_expression (number))))))) diff --git a/grammar.js b/grammar.js index 68906b41..ac98e199 100644 --- a/grammar.js +++ b/grammar.js @@ -368,10 +368,16 @@ module.exports = grammar({ ) )), - unary_expression: $ => prec.right(seq( - choice('!', $.test_operator), - $._expression - )), + unary_expression: $ => choice( + prec(1, seq( + token(prec(1, choice('-', '+', '~', '++', '--'))), + $._expression + )), + prec.right(seq( + choice('!', $.test_operator), + $._expression + )), + ), postfix_expression: $ => seq( $._expression, diff --git a/src/grammar.json b/src/grammar.json index 7b815823..24b4a9c6 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1535,30 +1535,80 @@ } }, "unary_expression": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "!" + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } + } }, { "type": "SYMBOL", - "name": "test_operator" + "name": "_expression" } ] - }, - { - "type": "SYMBOL", - "name": "_expression" } - ] - } + }, + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "SYMBOL", + "name": "test_operator" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] }, "postfix_expression": { "type": "SEQ", diff --git a/src/parser.c b/src/parser.c index b07361f4..b13783fa 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,10 +6,10 @@ #endif #define LANGUAGE_VERSION 10 -#define STATE_COUNT 2799 -#define SYMBOL_COUNT 161 +#define STATE_COUNT 2805 +#define SYMBOL_COUNT 162 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 100 +#define TOKEN_COUNT 101 #define EXTERNAL_TOKEN_COUNT 15 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -74,108 +74,109 @@ enum { anon_sym_DASH_EQ = 57, anon_sym_LT_EQ = 58, anon_sym_GT_EQ = 59, - anon_sym_PLUS_PLUS = 60, - anon_sym_DASH_DASH = 61, - anon_sym_DOLLAR_LPAREN_LPAREN = 62, - anon_sym_DOLLAR = 63, - sym__special_character = 64, - anon_sym_DQUOTE = 65, - sym__string_content = 66, - sym_raw_string = 67, - sym_ansii_c_string = 68, - sym_number = 69, - anon_sym_POUND = 70, - anon_sym_DOLLAR_LBRACE = 71, - anon_sym_SLASH = 72, - anon_sym_COLON = 73, - anon_sym_COLON_QMARK = 74, - anon_sym_COLON_DASH = 75, - anon_sym_PERCENT = 76, - anon_sym_DOLLAR_LPAREN = 77, - anon_sym_BQUOTE = 78, - anon_sym_LT_LPAREN = 79, - anon_sym_GT_LPAREN = 80, - sym_comment = 81, - aux_sym__simple_variable_name_token1 = 82, - anon_sym_STAR = 83, - anon_sym_AT = 84, - anon_sym_QMARK = 85, - anon_sym_0 = 86, - anon_sym__ = 87, - sym_test_operator = 88, - anon_sym_AMP = 89, - sym_heredoc_start = 90, - sym__simple_heredoc_body = 91, - sym__heredoc_body_beginning = 92, - sym__heredoc_body_middle = 93, - sym__heredoc_body_end = 94, - sym_file_descriptor = 95, - sym__empty_value = 96, - sym__concat = 97, - sym_variable_name = 98, - sym_regex = 99, - sym_program = 100, - sym__statements = 101, - aux_sym__statements2 = 102, - sym__terminated_statement = 103, - sym_redirected_statement = 104, - sym_for_statement = 105, - sym_c_style_for_statement = 106, - sym_while_statement = 107, - sym_do_group = 108, - sym_if_statement = 109, - sym_elif_clause = 110, - sym_else_clause = 111, - sym_case_statement = 112, - sym_case_item = 113, - sym_last_case_item = 114, - sym_function_definition = 115, - sym_compound_statement = 116, - sym_subshell = 117, - sym_pipeline = 118, - sym_list = 119, - sym_negated_command = 120, - sym_test_command = 121, - sym_declaration_command = 122, - sym_unset_command = 123, - sym_command = 124, - sym_command_name = 125, - sym_variable_assignment = 126, - sym_subscript = 127, - sym_file_redirect = 128, - sym_heredoc_redirect = 129, - sym_heredoc_body = 130, - sym_herestring_redirect = 131, - sym__expression = 132, - sym_binary_expression = 133, - sym_unary_expression = 134, - sym_postfix_expression = 135, - sym_parenthesized_expression = 136, - sym_arithmetic_expansion = 137, - sym_concatenation = 138, - sym_string = 139, - sym_array = 140, - sym_simple_expansion = 141, - sym_string_expansion = 142, - sym_expansion = 143, - sym_command_substitution = 144, - sym_process_substitution = 145, - aux_sym__statements_repeat1 = 146, - aux_sym_redirected_statement_repeat1 = 147, - aux_sym_for_statement_repeat1 = 148, - aux_sym_if_statement_repeat1 = 149, - aux_sym_case_statement_repeat1 = 150, - aux_sym_case_item_repeat1 = 151, - aux_sym_declaration_command_repeat1 = 152, - aux_sym_unset_command_repeat1 = 153, - aux_sym_command_repeat1 = 154, - aux_sym_command_repeat2 = 155, - aux_sym_heredoc_body_repeat1 = 156, - aux_sym__literal_repeat1 = 157, - aux_sym_concatenation_repeat1 = 158, - aux_sym_string_repeat1 = 159, - aux_sym_expansion_repeat1 = 160, - alias_sym_special_variable_name = 161, + aux_sym_unary_expression_token1 = 60, + anon_sym_PLUS_PLUS = 61, + anon_sym_DASH_DASH = 62, + anon_sym_DOLLAR_LPAREN_LPAREN = 63, + anon_sym_DOLLAR = 64, + sym__special_character = 65, + anon_sym_DQUOTE = 66, + sym__string_content = 67, + sym_raw_string = 68, + sym_ansii_c_string = 69, + sym_number = 70, + anon_sym_POUND = 71, + anon_sym_DOLLAR_LBRACE = 72, + anon_sym_SLASH = 73, + anon_sym_COLON = 74, + anon_sym_COLON_QMARK = 75, + anon_sym_COLON_DASH = 76, + anon_sym_PERCENT = 77, + anon_sym_DOLLAR_LPAREN = 78, + anon_sym_BQUOTE = 79, + anon_sym_LT_LPAREN = 80, + anon_sym_GT_LPAREN = 81, + sym_comment = 82, + aux_sym__simple_variable_name_token1 = 83, + anon_sym_STAR = 84, + anon_sym_AT = 85, + anon_sym_QMARK = 86, + anon_sym_0 = 87, + anon_sym__ = 88, + sym_test_operator = 89, + anon_sym_AMP = 90, + sym_heredoc_start = 91, + sym__simple_heredoc_body = 92, + sym__heredoc_body_beginning = 93, + sym__heredoc_body_middle = 94, + sym__heredoc_body_end = 95, + sym_file_descriptor = 96, + sym__empty_value = 97, + sym__concat = 98, + sym_variable_name = 99, + sym_regex = 100, + sym_program = 101, + sym__statements = 102, + aux_sym__statements2 = 103, + sym__terminated_statement = 104, + sym_redirected_statement = 105, + sym_for_statement = 106, + sym_c_style_for_statement = 107, + sym_while_statement = 108, + sym_do_group = 109, + sym_if_statement = 110, + sym_elif_clause = 111, + sym_else_clause = 112, + sym_case_statement = 113, + sym_case_item = 114, + sym_last_case_item = 115, + sym_function_definition = 116, + sym_compound_statement = 117, + sym_subshell = 118, + sym_pipeline = 119, + sym_list = 120, + sym_negated_command = 121, + sym_test_command = 122, + sym_declaration_command = 123, + sym_unset_command = 124, + sym_command = 125, + sym_command_name = 126, + sym_variable_assignment = 127, + sym_subscript = 128, + sym_file_redirect = 129, + sym_heredoc_redirect = 130, + sym_heredoc_body = 131, + sym_herestring_redirect = 132, + sym__expression = 133, + sym_binary_expression = 134, + sym_unary_expression = 135, + sym_postfix_expression = 136, + sym_parenthesized_expression = 137, + sym_arithmetic_expansion = 138, + sym_concatenation = 139, + sym_string = 140, + sym_array = 141, + sym_simple_expansion = 142, + sym_string_expansion = 143, + sym_expansion = 144, + sym_command_substitution = 145, + sym_process_substitution = 146, + aux_sym__statements_repeat1 = 147, + aux_sym_redirected_statement_repeat1 = 148, + aux_sym_for_statement_repeat1 = 149, + aux_sym_if_statement_repeat1 = 150, + aux_sym_case_statement_repeat1 = 151, + aux_sym_case_item_repeat1 = 152, + aux_sym_declaration_command_repeat1 = 153, + aux_sym_unset_command_repeat1 = 154, + aux_sym_command_repeat1 = 155, + aux_sym_command_repeat2 = 156, + aux_sym_heredoc_body_repeat1 = 157, + aux_sym__literal_repeat1 = 158, + aux_sym_concatenation_repeat1 = 159, + aux_sym_string_repeat1 = 160, + aux_sym_expansion_repeat1 = 161, + alias_sym_special_variable_name = 162, }; static const char *ts_symbol_names[] = { @@ -239,6 +240,7 @@ static const char *ts_symbol_names[] = { [anon_sym_DASH_EQ] = "-=", [anon_sym_LT_EQ] = "<=", [anon_sym_GT_EQ] = ">=", + [aux_sym_unary_expression_token1] = "unary_expression_token1", [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", [anon_sym_DOLLAR_LPAREN_LPAREN] = "$((", @@ -584,6 +586,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_unary_expression_token1] = { + .visible = false, + .named = false, + }, [anon_sym_PLUS_PLUS] = { .visible = true, .named = false, @@ -1024,116 +1030,117 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (lookahead == 0) ADVANCE(116); if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '%') ADVANCE(237); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '%') ADVANCE(234); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(261); - if (lookahead == ':') ADVANCE(234); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '+') ADVANCE(204); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ':') ADVANCE(231); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(179); + if (lookahead == '<') ADVANCE(178); if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(163); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '`') ADVANCE(240); - if (lookahead == 'e') ADVANCE(271); - if (lookahead == 'i') ADVANCE(270); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '`') ADVANCE(237); + if (lookahead == 'e') ADVANCE(268); + if (lookahead == 'i') ADVANCE(267); if (lookahead == '{') ADVANCE(151); if (lookahead == '|') ADVANCE(144); if (lookahead == '}') ADVANCE(152); + if (lookahead == '~') ADVANCE(203); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (lookahead != 0) ADVANCE(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 1: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(117); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(227); + if (lookahead == '0') ADVANCE(224); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(75); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && - lookahead != '(') ADVANCE(274); + lookahead != '(') ADVANCE(270); END_STATE(); case 2: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(118); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(212); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(255); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(263); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(197); + if (lookahead == '0') ADVANCE(260); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '>') ADVANCE(184); - if (lookahead == '?') ADVANCE(259); - if (lookahead == '@') ADVANCE(257); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '\\') SKIP(12) - if (lookahead == '_') ADVANCE(266); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '_') ADVANCE(263); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(2) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 3: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(118); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '&') ADVANCE(274); if (lookahead == ')') ADVANCE(146); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '>') ADVANCE(184); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '>') ADVANCE(183); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(240); + if (lookahead == '`') ADVANCE(237); if (lookahead == 'e') ADVANCE(70); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || @@ -1143,16 +1150,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 4: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(118); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '&') ADVANCE(276); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '&') ADVANCE(272); if (lookahead == ')') ADVANCE(146); if (lookahead == ';') ADVANCE(138); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') SKIP(11) - if (lookahead == '`') ADVANCE(240); + if (lookahead == '`') ADVANCE(237); if (lookahead == 'e') ADVANCE(70); if (lookahead == 'i') ADVANCE(69); if (lookahead == '\t' || @@ -1162,156 +1169,156 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 5: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(121); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(267); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(264); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); - if (lookahead == '\\') ADVANCE(78); - if (lookahead == '`') ADVANCE(240); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(76); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (lookahead != 0) ADVANCE(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 6: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(122); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(84); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != '(') ADVANCE(274); + lookahead != '(') ADVANCE(270); END_STATE(); case 7: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(123); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '0') ADVANCE(262); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(259); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(267); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(264); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(94); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && - lookahead != '(') ADVANCE(274); + lookahead != '(') ADVANCE(270); END_STATE(); case 8: if (lookahead == 0) ADVANCE(116); if (lookahead == '\n') ADVANCE(128); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '0') ADVANCE(262); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(259); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(103); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && - lookahead != '(') ADVANCE(274); + lookahead != '(') ADVANCE(270); END_STATE(); case 9: if (lookahead == 0) ADVANCE(116); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(62); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(73); if (lookahead == ']' || - lookahead == '}') ADVANCE(216); - if (lookahead == '`') ADVANCE(240); + lookahead == '}') ADVANCE(213); + if (lookahead == '`') ADVANCE(237); if (lookahead == '{') ADVANCE(151); if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (lookahead != 0) ADVANCE(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 10: if (lookahead == 0) ADVANCE(116); @@ -1336,178 +1343,180 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 13: if (lookahead == '\n') ADVANCE(117); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(227); + if (lookahead == '0') ADVANCE(224); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(75); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && - lookahead != '(') ADVANCE(274); + lookahead != '(') ADVANCE(270); END_STATE(); case 14: if (lookahead == '\n') ADVANCE(118); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(212); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(255); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(263); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(197); + if (lookahead == '0') ADVANCE(260); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '>') ADVANCE(184); - if (lookahead == '?') ADVANCE(259); - if (lookahead == '@') ADVANCE(257); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '\\') SKIP(112) - if (lookahead == '_') ADVANCE(266); - if (lookahead == 'e') ADVANCE(253); + if (lookahead == '_') ADVANCE(263); + if (lookahead == 'e') ADVANCE(250); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(14) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 15: if (lookahead == '\n') ADVANCE(118); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(212); - if (lookahead == '&') ADVANCE(276); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(255); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(263); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(197); + if (lookahead == '0') ADVANCE(260); if (lookahead == ';') ADVANCE(138); - if (lookahead == '?') ADVANCE(259); - if (lookahead == '@') ADVANCE(257); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '\\') SKIP(104) - if (lookahead == '_') ADVANCE(266); - if (lookahead == 'i') ADVANCE(252); + if (lookahead == '_') ADVANCE(263); + if (lookahead == 'i') ADVANCE(249); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(15) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 16: if (lookahead == '\n') ADVANCE(118); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(212); - if (lookahead == '&') ADVANCE(276); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(272); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(255); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(263); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(197); + if (lookahead == '0') ADVANCE(260); if (lookahead == ';') ADVANCE(138); - if (lookahead == '?') ADVANCE(259); - if (lookahead == '@') ADVANCE(257); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '\\') SKIP(109) - if (lookahead == '_') ADVANCE(266); + if (lookahead == '_') ADVANCE(263); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(16) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 17: if (lookahead == '\n') ADVANCE(119); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(276); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(272); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); - if (lookahead == '-') ADVANCE(273); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '+') ADVANCE(204); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == '`') ADVANCE(240); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(88); + if (lookahead == '`') ADVANCE(237); + if (lookahead == '~') ADVANCE(203); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 18: if (lookahead == '\n') ADVANCE(120); if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(212); - if (lookahead == '&') ADVANCE(277); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '&') ADVANCE(273); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(255); - if (lookahead == '+') ADVANCE(198); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(263); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(260); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(181); + if (lookahead == '<') ADVANCE(180); if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(185); - if (lookahead == '?') ADVANCE(259); - if (lookahead == '@') ADVANCE(257); - if (lookahead == '\\') SKIP(107) - if (lookahead == '_') ADVANCE(266); + if (lookahead == '>') ADVANCE(184); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); + if (lookahead == '\\') SKIP(106) + if (lookahead == '_') ADVANCE(263); if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(18) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 19: if (lookahead == '\n') ADVANCE(120); - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '&') ADVANCE(277); - if (lookahead == '+') ADVANCE(198); - if (lookahead == '-') ADVANCE(201); + if (lookahead == '!') ADVANCE(64); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '&') ADVANCE(273); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '-') ADVANCE(198); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(181); + if (lookahead == '<') ADVANCE(180); if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(185); + if (lookahead == '>') ADVANCE(184); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); - if (lookahead == '\\') SKIP(93) + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') SKIP(91) if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\r' || @@ -1515,579 +1524,582 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 20: if (lookahead == '\n') ADVANCE(121); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(267); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(264); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); - if (lookahead == '\\') ADVANCE(78); - if (lookahead == '`') ADVANCE(240); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(76); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(20) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (lookahead != 0) ADVANCE(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 21: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(84); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != '(') ADVANCE(274); + lookahead != '(') ADVANCE(270); END_STATE(); case 22: if (lookahead == '\n') ADVANCE(123); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '0') ADVANCE(262); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(259); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(267); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(264); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(94); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && - lookahead != '(') ADVANCE(274); + lookahead != '(') ADVANCE(270); END_STATE(); case 23: if (lookahead == '\n') ADVANCE(124); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(276); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(272); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(97); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '`') ADVANCE(237); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(23) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 24: if (lookahead == '\n') ADVANCE(125); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(267); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(264); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(99); - if (lookahead == '`') ADVANCE(240); - if (lookahead == 'e') ADVANCE(271); + if (lookahead == '`') ADVANCE(237); + if (lookahead == 'e') ADVANCE(268); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != ')') ADVANCE(274); + lookahead != ')') ADVANCE(270); END_STATE(); case 25: if (lookahead == '\n') ADVANCE(126); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(227); + if (lookahead == '0') ADVANCE(224); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(100); - if (lookahead == '`') ADVANCE(240); - if (lookahead == 'e') ADVANCE(247); + if (lookahead == '`') ADVANCE(237); + if (lookahead == 'e') ADVANCE(244); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(25) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(274); + lookahead != ')') ADVANCE(270); END_STATE(); case 26: if (lookahead == '\n') ADVANCE(127); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(102); - if (lookahead == '`') ADVANCE(240); - if (lookahead == 'e') ADVANCE(271); + if (lookahead == '`') ADVANCE(237); + if (lookahead == 'e') ADVANCE(268); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(274); + lookahead != ')') ADVANCE(270); END_STATE(); case 27: if (lookahead == '\n') ADVANCE(128); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '0') ADVANCE(262); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(259); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(103); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && - lookahead != '(') ADVANCE(274); + lookahead != '(') ADVANCE(270); END_STATE(); case 28: if (lookahead == '\n') ADVANCE(129); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(276); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(272); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '0') ADVANCE(262); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(259); if (lookahead == ';') ADVANCE(138); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(108); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(237); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 29: if (lookahead == '\n') ADVANCE(130); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '0') ADVANCE(262); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(259); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(267); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(264); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(110); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '`') ADVANCE(240); - if (lookahead == 'e') ADVANCE(247); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(237); + if (lookahead == 'e') ADVANCE(244); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(274); + lookahead != ')') ADVANCE(270); END_STATE(); case 30: if (lookahead == '\n') ADVANCE(131); if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '0') ADVANCE(262); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(259); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(111); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '`') ADVANCE(240); - if (lookahead == 'e') ADVANCE(247); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(237); + if (lookahead == 'e') ADVANCE(244); if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(274); + lookahead != ')') ADVANCE(270); END_STATE(); case 31: if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '%') ADVANCE(237); - if (lookahead == '&') ADVANCE(278); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '%') ADVANCE(234); + if (lookahead == '&') ADVANCE(274); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(261); - if (lookahead == ':') ADVANCE(234); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '+') ADVANCE(204); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ':') ADVANCE(231); if (lookahead == ';') ADVANCE(138); - if (lookahead == '<') ADVANCE(179); + if (lookahead == '<') ADVANCE(178); if (lookahead == '=') ADVANCE(171); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(72); if (lookahead == ']') ADVANCE(163); - if (lookahead == '_') ADVANCE(265); - if (lookahead == '`') ADVANCE(240); - if (lookahead == 'e') ADVANCE(271); - if (lookahead == 'i') ADVANCE(270); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '`') ADVANCE(237); + if (lookahead == 'e') ADVANCE(268); + if (lookahead == 'i') ADVANCE(267); if (lookahead == '{') ADVANCE(151); if (lookahead == '|') ADVANCE(144); if (lookahead == '}') ADVANCE(152); + if (lookahead == '~') ADVANCE(203); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (lookahead != 0) ADVANCE(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 32: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '%') ADVANCE(237); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '%') ADVANCE(234); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '0') ADVANCE(262); - if (lookahead == ':') ADVANCE(234); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(259); + if (lookahead == ':') ADVANCE(231); if (lookahead == '<') ADVANCE(59); if (lookahead == '=') ADVANCE(173); if (lookahead == '>') ADVANCE(60); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(216); - if (lookahead == '\\') ADVANCE(106); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '`') ADVANCE(240); + lookahead == '{') ADVANCE(213); + if (lookahead == '\\') ADVANCE(107); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(237); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 33: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(256); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '0') ADVANCE(262); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(183); - if (lookahead == '?') ADVANCE(260); - if (lookahead == '@') ADVANCE(258); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '?') ADVANCE(257); + if (lookahead == '@') ADVANCE(255); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(101); - if (lookahead == '_') ADVANCE(264); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '_') ADVANCE(261); + if (lookahead == '`') ADVANCE(237); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(33) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '(' && lookahead != ';' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 34: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(62); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(73); if (lookahead == ']' || - lookahead == '}') ADVANCE(216); - if (lookahead == '`') ADVANCE(240); + lookahead == '}') ADVANCE(213); + if (lookahead == '`') ADVANCE(237); if (lookahead == '{') ADVANCE(151); if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(34) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (lookahead != 0) ADVANCE(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 35: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == ';') ADVANCE(62); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[') ADVANCE(161); if (lookahead == '\\') ADVANCE(98); if (lookahead == ']' || - lookahead == '}') ADVANCE(216); - if (lookahead == '`') ADVANCE(240); - if (lookahead == 'e') ADVANCE(271); + lookahead == '}') ADVANCE(213); + if (lookahead == '`') ADVANCE(237); + if (lookahead == 'e') ADVANCE(268); if (lookahead == '{') ADVANCE(151); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 36: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); - if (lookahead == '0') ADVANCE(226); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '0') ADVANCE(223); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[') ADVANCE(161); - if (lookahead == '\\') ADVANCE(80); - if (lookahead == ']') ADVANCE(216); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '\\') ADVANCE(78); + if (lookahead == ']') ADVANCE(213); + if (lookahead == '`') ADVANCE(237); if (lookahead == '{') ADVANCE(151); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 37: if (lookahead == '!') ADVANCE(159); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); if (lookahead == ')') ADVANCE(61); - if (lookahead == '-') ADVANCE(273); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '+') ADVANCE(204); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '0') ADVANCE(223); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == '`') ADVANCE(240); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '`') ADVANCE(237); + if (lookahead == '~') ADVANCE(203); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(37) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != '&' && lookahead != ';' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 38: if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(212); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(209); if (lookahead == '&') ADVANCE(54); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(255); - if (lookahead == '+') ADVANCE(198); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(263); - if (lookahead == '<') ADVANCE(181); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '<') ADVANCE(180); if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(185); - if (lookahead == '?') ADVANCE(259); - if (lookahead == '@') ADVANCE(257); - if (lookahead == '\\') SKIP(81) + if (lookahead == '>') ADVANCE(184); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); + if (lookahead == '\\') SKIP(83) if (lookahead == ']') ADVANCE(66); - if (lookahead == '_') ADVANCE(266); + if (lookahead == '_') ADVANCE(263); if (lookahead == '|') ADVANCE(71); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || @@ -2096,28 +2108,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(38) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 39: if (lookahead == '!') ADVANCE(158); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(212); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(209); if (lookahead == '&') ADVANCE(54); if (lookahead == '\'') ADVANCE(55); if (lookahead == ')') ADVANCE(146); - if (lookahead == '*') ADVANCE(255); - if (lookahead == '+') ADVANCE(198); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(263); - if (lookahead == '<') ADVANCE(181); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '<') ADVANCE(180); if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(185); - if (lookahead == '?') ADVANCE(259); - if (lookahead == '@') ADVANCE(257); + if (lookahead == '>') ADVANCE(184); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '\\') SKIP(105) if (lookahead == ']') ADVANCE(162); - if (lookahead == '_') ADVANCE(266); + if (lookahead == '_') ADVANCE(263); if (lookahead == '|') ADVANCE(145); if (lookahead == '\t' || lookahead == '\n' || @@ -2125,51 +2137,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(39) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 40: if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(212); - if (lookahead == '*') ADVANCE(255); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(263); - if (lookahead == '?') ADVANCE(259); - if (lookahead == '@') ADVANCE(257); - if (lookahead == '\\') ADVANCE(85); - if (lookahead == '_') ADVANCE(266); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(197); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == '_') ADVANCE(263); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(220); + lookahead == ' ') ADVANCE(217); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != '`') ADVANCE(222); + lookahead != '`') ADVANCE(219); END_STATE(); case 41: - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(212); + if (lookahead == '!') ADVANCE(64); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(209); if (lookahead == '&') ADVANCE(54); if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(255); - if (lookahead == '+') ADVANCE(198); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '0') ADVANCE(263); - if (lookahead == '<') ADVANCE(181); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '<') ADVANCE(180); if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(185); - if (lookahead == '?') ADVANCE(259); - if (lookahead == '@') ADVANCE(257); + if (lookahead == '>') ADVANCE(184); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(216); - if (lookahead == '\\') SKIP(86) - if (lookahead == ']') ADVANCE(217); - if (lookahead == '_') ADVANCE(266); + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') SKIP(85) + if (lookahead == ']') ADVANCE(214); + if (lookahead == '_') ADVANCE(263); if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\n' || @@ -2177,21 +2189,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(41) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 42: - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(244); + if (lookahead == '!') ADVANCE(64); + if (lookahead == '#') ADVANCE(241); if (lookahead == '&') ADVANCE(54); if (lookahead == ')') ADVANCE(146); - if (lookahead == '+') ADVANCE(198); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '<') ADVANCE(181); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '<') ADVANCE(180); if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(185); + if (lookahead == '>') ADVANCE(184); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(216); + lookahead == '{') ADVANCE(213); if (lookahead == '\\') SKIP(90) if (lookahead == '|') ADVANCE(71); if (lookahead == '}') ADVANCE(152); @@ -2201,20 +2213,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(42) END_STATE(); case 43: - if (lookahead == '!') ADVANCE(63); - if (lookahead == '#') ADVANCE(244); + if (lookahead == '!') ADVANCE(64); + if (lookahead == '#') ADVANCE(241); if (lookahead == '&') ADVANCE(54); if (lookahead == ')') ADVANCE(61); - if (lookahead == '+') ADVANCE(198); - if (lookahead == '-') ADVANCE(201); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '-') ADVANCE(198); if (lookahead == ';') ADVANCE(62); - if (lookahead == '<') ADVANCE(181); + if (lookahead == '<') ADVANCE(180); if (lookahead == '=') ADVANCE(172); - if (lookahead == '>') ADVANCE(185); + if (lookahead == '>') ADVANCE(184); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(216); - if (lookahead == '\\') SKIP(87) + lookahead == '}') ADVANCE(213); + if (lookahead == '\\') SKIP(86) if (lookahead == ']') ADVANCE(162); if (lookahead == 'e') ADVANCE(70); if (lookahead == 'i') ADVANCE(69); @@ -2225,210 +2237,210 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(43) END_STATE(); case 44: - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '%') ADVANCE(237); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '%') ADVANCE(234); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(226); - if (lookahead == ':') ADVANCE(234); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ':') ADVANCE(231); if (lookahead == '<') ADVANCE(59); if (lookahead == '=') ADVANCE(173); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(216); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == '`') ADVANCE(240); + lookahead == '{') ADVANCE(213); + if (lookahead == '\\') ADVANCE(89); + if (lookahead == '`') ADVANCE(237); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(44) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 45: - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '%') ADVANCE(237); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(210); + if (lookahead == '%') ADVANCE(234); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '0') ADVANCE(226); - if (lookahead == ':') ADVANCE(234); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '0') ADVANCE(223); + if (lookahead == ':') ADVANCE(231); if (lookahead == '<') ADVANCE(59); if (lookahead == '=') ADVANCE(173); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(216); - if (lookahead == '\\') ADVANCE(91); - if (lookahead == '`') ADVANCE(240); + lookahead == '{') ADVANCE(213); + if (lookahead == '\\') ADVANCE(92); + if (lookahead == '`') ADVANCE(237); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(45) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 46: - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(150); - if (lookahead == '0') ADVANCE(226); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '0') ADVANCE(223); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[') ADVANCE(161); - if (lookahead == '\\') ADVANCE(82); + if (lookahead == '\\') ADVANCE(81); if (lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); - if (lookahead == '`') ADVANCE(240); + lookahead == '}') ADVANCE(213); + if (lookahead == '`') ADVANCE(237); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(46) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 47: - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); if (lookahead == '&') ADVANCE(65); if (lookahead == '\'') ADVANCE(55); if (lookahead == '(') ADVANCE(149); if (lookahead == ')') ADVANCE(146); - if (lookahead == '0') ADVANCE(226); - if (lookahead == '<') ADVANCE(177); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '0') ADVANCE(223); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '>') ADVANCE(182); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '`') ADVANCE(237); if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(47) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && - lookahead != ';') ADVANCE(274); + lookahead != ';') ADVANCE(270); END_STATE(); case 48: - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(216); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '`') ADVANCE(240); + lookahead == '{') ADVANCE(213); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '`') ADVANCE(237); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(48) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 49: - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(96); if (lookahead == ']') ADVANCE(162); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '`') ADVANCE(237); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(49) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 50: - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(210); if (lookahead == '\'') ADVANCE(55); - if (lookahead == '0') ADVANCE(226); + if (lookahead == '0') ADVANCE(223); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') ADVANCE(60); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(216); + lookahead == '}') ADVANCE(213); if (lookahead == '\\') ADVANCE(95); - if (lookahead == '`') ADVANCE(240); - if (lookahead == 'e') ADVANCE(271); + if (lookahead == '`') ADVANCE(237); + if (lookahead == 'e') ADVANCE(268); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(50) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 51: - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(219); - if (lookahead == '$') ADVANCE(214); - if (lookahead == '\\') ADVANCE(76); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == '`') ADVANCE(237); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(221); - if (lookahead != 0) ADVANCE(222); + lookahead == ' ') ADVANCE(218); + if (lookahead != 0) ADVANCE(219); END_STATE(); case 52: - if (lookahead == '#') ADVANCE(244); - if (lookahead == '$') ADVANCE(215); + if (lookahead == '#') ADVANCE(241); + if (lookahead == '$') ADVANCE(212); if (lookahead == '&') ADVANCE(65); if (lookahead == '(') ADVANCE(149); if (lookahead == ';') ADVANCE(137); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(184); - if (lookahead == '\\') ADVANCE(79); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '>') ADVANCE(183); + if (lookahead == '\\') ADVANCE(77); if (lookahead == ']') ADVANCE(162); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '`') ADVANCE(237); if (lookahead == '{') ADVANCE(151); if (lookahead == '}') ADVANCE(152); if (lookahead == '\t' || @@ -2439,15 +2451,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '[' && - lookahead != '|') ADVANCE(274); + lookahead != '|') ADVANCE(270); END_STATE(); case 53: - if (lookahead == '#') ADVANCE(244); + if (lookahead == '#') ADVANCE(241); if (lookahead == '(') ADVANCE(58); - if (lookahead == '+') ADVANCE(64); + if (lookahead == '+') ADVANCE(63); if (lookahead == '=') ADVANCE(170); if (lookahead == '[') ADVANCE(160); - if (lookahead == '\\') SKIP(83) + if (lookahead == '\\') SKIP(82) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2455,22 +2467,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 54: if (lookahead == '&') ADVANCE(154); END_STATE(); case 55: - if (lookahead == '\'') ADVANCE(223); + if (lookahead == '\'') ADVANCE(220); if (lookahead != 0) ADVANCE(55); END_STATE(); case 56: - if (lookahead == '\'') ADVANCE(224); + if (lookahead == '\'') ADVANCE(221); if (lookahead == '\\') ADVANCE(57); if (lookahead != 0) ADVANCE(56); END_STATE(); case 57: - if (lookahead == '\'') ADVANCE(225); + if (lookahead == '\'') ADVANCE(222); if (lookahead == '\\') ADVANCE(57); if (lookahead != 0) ADVANCE(56); END_STATE(); @@ -2478,10 +2490,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(135); END_STATE(); case 59: - if (lookahead == '(') ADVANCE(241); + if (lookahead == '(') ADVANCE(238); END_STATE(); case 60: - if (lookahead == '(') ADVANCE(242); + if (lookahead == '(') ADVANCE(239); END_STATE(); case 61: if (lookahead == ')') ADVANCE(136); @@ -2490,13 +2502,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(148); END_STATE(); case 63: - if (lookahead == '=') ADVANCE(195); + if (lookahead == '=') ADVANCE(174); END_STATE(); case 64: - if (lookahead == '=') ADVANCE(174); + if (lookahead == '=') ADVANCE(194); END_STATE(); case 65: - if (lookahead == '>') ADVANCE(187); + if (lookahead == '>') ADVANCE(186); END_STATE(); case 66: if (lookahead == ']') ADVANCE(165); @@ -2521,122 +2533,122 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 73: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(34) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 74: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(47) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 75: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 76: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(221); - if (lookahead != 0) ADVANCE(222); + lookahead == ' ') SKIP(20) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 77: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(37) - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') SKIP(52) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 78: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(20) - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') SKIP(36) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 79: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(52) - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') SKIP(37) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 80: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(36) - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') ADVANCE(218); + if (lookahead != 0) ADVANCE(219); END_STATE(); case 81: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(38) + lookahead == ' ') SKIP(46) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 82: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(46) - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') SKIP(53) END_STATE(); case 83: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(53) + lookahead == ' ') SKIP(38) END_STATE(); case 84: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 85: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(220); - if (lookahead != 0) ADVANCE(222); + lookahead == ' ') SKIP(41) END_STATE(); case 86: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(41) + lookahead == ' ') SKIP(43) END_STATE(); case 87: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(43) + lookahead == ' ') ADVANCE(217); + if (lookahead != 0) ADVANCE(219); END_STATE(); case 88: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(44) - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') SKIP(17) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 89: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(17) - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') SKIP(44) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 90: if (lookahead == '\t' || @@ -2648,91 +2660,91 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(45) - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') SKIP(19) END_STATE(); case 92: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(48) - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') SKIP(45) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 93: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(19) + lookahead == ' ') SKIP(48) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 94: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 95: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(50) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 96: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(49) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 97: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(23) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 98: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 99: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 100: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(25) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 101: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(33) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 102: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 103: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 104: if (lookahead == '\t' || @@ -2750,21 +2762,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(32) - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') SKIP(18) END_STATE(); case 107: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(18) + lookahead == ' ') SKIP(32) + if (lookahead != 0) ADVANCE(270); END_STATE(); case 108: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 109: if (lookahead == '\t' || @@ -2777,14 +2789,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 111: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (lookahead != 0) ADVANCE(274); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 112: if (lookahead == '\t' || @@ -2796,17 +2808,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(230); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 114: - if (lookahead != 0) ADVANCE(222); + if (lookahead != 0) ADVANCE(219); END_STATE(); case 115: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(274); + lookahead != ' ') ADVANCE(270); END_STATE(); case 116: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -2823,18 +2835,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 119: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(119); - if (lookahead == '-') ADVANCE(273); - if (lookahead == '\\') ADVANCE(89); + if (lookahead == '+') ADVANCE(204); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '\\') ADVANCE(88); + if (lookahead == '~') ADVANCE(203); END_STATE(); case 120: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(120); - if (lookahead == '-') ADVANCE(201); + if (lookahead == '-') ADVANCE(198); END_STATE(); case 121: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(121); - if (lookahead == '\\') ADVANCE(78); + if (lookahead == '\\') ADVANCE(76); END_STATE(); case 122: ACCEPT_TOKEN(anon_sym_LF); @@ -2904,14 +2918,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 134: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 135: ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); @@ -2935,7 +2949,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2947,7 +2961,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 141: ACCEPT_TOKEN(anon_sym_esac); @@ -2964,14 +2978,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 142: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 143: ACCEPT_TOKEN(anon_sym_PIPE); @@ -3022,7 +3036,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(196); + if (lookahead == '=') ADVANCE(195); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && @@ -3034,11 +3048,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(195); + if (lookahead == '=') ADVANCE(194); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_BANG); @@ -3055,7 +3069,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 160: ACCEPT_TOKEN(anon_sym_LBRACK); @@ -3095,7 +3109,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 168: ACCEPT_TOKEN(anon_sym_EQ_EQ); @@ -3115,7 +3129,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 170: ACCEPT_TOKEN(anon_sym_EQ); @@ -3135,7 +3149,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 172: ACCEPT_TOKEN(anon_sym_EQ); @@ -3157,117 +3171,100 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); case 174: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(115); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(188); END_STATE(); case 176: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(189); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '(') ADVANCE(238); END_STATE(); case 177: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(241); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '(') ADVANCE(238); + if (lookahead == '<') ADVANCE(191); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(241); - if (lookahead == '<') ADVANCE(192); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '(') ADVANCE(238); + if (lookahead == '<') ADVANCE(191); + if (lookahead == '=') ADVANCE(201); END_STATE(); case 179: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(241); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '=') ADVANCE(205); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '<') ADVANCE(191); END_STATE(); case 180: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '<') ADVANCE(192); + if (lookahead == '<') ADVANCE(190); + if (lookahead == '=') ADVANCE(201); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(191); - if (lookahead == '=') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(189); + if (lookahead == '(') ADVANCE(239); + if (lookahead == '=') ADVANCE(202); + if (lookahead == '>') ADVANCE(185); END_STATE(); case 182: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '(') ADVANCE(242); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(186); + if (lookahead == '&') ADVANCE(189); + if (lookahead == '(') ADVANCE(239); + if (lookahead == '>') ADVANCE(185); END_STATE(); case 183: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '(') ADVANCE(242); - if (lookahead == '>') ADVANCE(186); + if (lookahead == '&') ADVANCE(189); + if (lookahead == '>') ADVANCE(185); END_STATE(); case 184: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '>') ADVANCE(186); + if (lookahead == '=') ADVANCE(202); + if (lookahead == '>') ADVANCE(185); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') ADVANCE(187); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_AMP); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_LT_AMP); + ACCEPT_TOKEN(anon_sym_GT_AMP); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_GT_AMP); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 191: ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '<') ADVANCE(193); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(193); - if (lookahead == '<') ADVANCE(194); - END_STATE(); - case 193: ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); - case 194: + case 193: ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); - case 195: + case 194: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 196: + case 195: ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3282,59 +3279,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(208); - if (lookahead == '=') ADVANCE(175); - if (lookahead == '\\') ADVANCE(115); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 198: + case 196: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(207); + if (lookahead == '+') ADVANCE(206); if (lookahead == '=') ADVANCE(174); END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 200: + case 197: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(210); - if (lookahead == '=') ADVANCE(204); - if (lookahead == '\\') ADVANCE(115); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 201: + case 198: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(209); - if (lookahead == '=') ADVANCE(203); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '=') ADVANCE(200); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); END_STATE(); - case 202: + case 199: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3349,177 +3311,139 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 204: + case 200: ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(115); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 205: + case 201: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 206: + case 202: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + case 203: + ACCEPT_TOKEN(aux_sym_unary_expression_token1); END_STATE(); - case 208: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(115); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + case 204: + ACCEPT_TOKEN(aux_sym_unary_expression_token1); + if (lookahead == '+') ADVANCE(203); END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + case 205: + ACCEPT_TOKEN(aux_sym_unary_expression_token1); + if (lookahead == '-') ADVANCE(203); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); END_STATE(); - case 210: + case 206: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 207: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(115); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); END_STATE(); - case 211: + case 208: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); END_STATE(); - case 212: + case 209: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 213: + case 210: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '\'') ADVANCE(56); - if (lookahead == '(') ADVANCE(239); - if (lookahead == '{') ADVANCE(232); + if (lookahead == '(') ADVANCE(236); + if (lookahead == '{') ADVANCE(229); END_STATE(); - case 214: + case 211: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(239); - if (lookahead == '{') ADVANCE(232); + if (lookahead == '(') ADVANCE(236); + if (lookahead == '{') ADVANCE(229); END_STATE(); - case 215: + case 212: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(238); - if (lookahead == '{') ADVANCE(232); + if (lookahead == '(') ADVANCE(235); + if (lookahead == '{') ADVANCE(229); END_STATE(); - case 216: + case 213: ACCEPT_TOKEN(sym__special_character); END_STATE(); - case 217: + case 214: ACCEPT_TOKEN(sym__special_character); if (lookahead == ']') ADVANCE(165); END_STATE(); - case 218: + case 215: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 219: + case 216: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(222); - if (lookahead == '\\') ADVANCE(243); + if (lookahead == '\n') ADVANCE(219); + if (lookahead == '\\') ADVANCE(240); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(219); + lookahead != '`') ADVANCE(216); END_STATE(); - case 220: + case 217: ACCEPT_TOKEN(sym__string_content); if (lookahead == '!') ADVANCE(156); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(212); - if (lookahead == '*') ADVANCE(255); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '0') ADVANCE(263); - if (lookahead == '?') ADVANCE(259); - if (lookahead == '@') ADVANCE(257); - if (lookahead == '\\') ADVANCE(85); - if (lookahead == '_') ADVANCE(266); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '$') ADVANCE(209); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '-') ADVANCE(197); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '?') ADVANCE(256); + if (lookahead == '@') ADVANCE(254); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == '_') ADVANCE(263); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(220); + lookahead == ' ') ADVANCE(217); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); if (lookahead != 0 && - lookahead != '`') ADVANCE(222); + lookahead != '`') ADVANCE(219); END_STATE(); - case 221: + case 218: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '#') ADVANCE(219); - if (lookahead == '$') ADVANCE(214); - if (lookahead == '\\') ADVANCE(76); - if (lookahead == '`') ADVANCE(240); + if (lookahead == '"') ADVANCE(215); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(211); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == '`') ADVANCE(237); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(221); - if (lookahead != 0) ADVANCE(222); + lookahead == ' ') ADVANCE(218); + if (lookahead != 0) ADVANCE(219); END_STATE(); - case 222: + case 219: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\\') ADVANCE(114); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(222); + lookahead != '`') ADVANCE(219); END_STATE(); - case 223: + case 220: ACCEPT_TOKEN(sym_raw_string); END_STATE(); - case 224: + case 221: ACCEPT_TOKEN(sym_ansii_c_string); END_STATE(); - case 225: + case 222: ACCEPT_TOKEN(sym_ansii_c_string); - if (lookahead == '\'') ADVANCE(224); + if (lookahead == '\'') ADVANCE(221); if (lookahead == '\\') ADVANCE(57); if (lookahead != 0) ADVANCE(56); END_STATE(); - case 226: + case 223: ACCEPT_TOKEN(sym_number); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'x') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead == 'x') ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3532,17 +3456,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 227: + case 224: ACCEPT_TOKEN(sym_number); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'x') ADVANCE(248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == 'x') ADVANCE(245); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3554,13 +3478,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 228: + case 225: ACCEPT_TOKEN(sym_number); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3573,16 +3497,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 229: + case 226: ACCEPT_TOKEN(sym_number); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3594,28 +3518,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 230: + case 227: ACCEPT_TOKEN(sym_number); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(230); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); - case 231: + case 228: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 232: + case 229: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 233: + case 230: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 234: + case 231: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(236); - if (lookahead == '?') ADVANCE(235); + if (lookahead == '-') ADVANCE(233); + if (lookahead == '?') ADVANCE(232); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && @@ -3629,9 +3553,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 235: + case 232: ACCEPT_TOKEN(anon_sym_COLON_QMARK); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3646,9 +3570,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 236: + case 233: ACCEPT_TOKEN(anon_sym_COLON_DASH); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3663,9 +3587,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 237: + case 234: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3680,42 +3604,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 238: + case 235: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 239: + case 236: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '(') ADVANCE(211); + if (lookahead == '(') ADVANCE(208); END_STATE(); - case 240: + case 237: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 241: + case 238: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 242: + case 239: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 243: + case 240: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(222); - if (lookahead != 0) ADVANCE(219); + if (lookahead == '\n') ADVANCE(219); + if (lookahead != 0) ADVANCE(216); END_STATE(); - case 244: + case 241: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(244); + lookahead != '\n') ADVANCE(241); END_STATE(); - case 245: + case 242: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'a') ADVANCE(243); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3727,16 +3651,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 246: + case 243: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(115); if (lookahead == 'c') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3748,16 +3672,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 247: + case 244: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 's') ADVANCE(245); + if (lookahead == 's') ADVANCE(242); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3769,15 +3693,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 248: + case 245: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3789,15 +3713,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 249: + case 246: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3809,51 +3733,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 250: + case 247: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(251); + if (lookahead == 'a') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 251: + case 248: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == 'c') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 252: + case 249: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == 'n') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 253: + case 250: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(250); + if (lookahead == 's') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 254: + case 251: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 255: + case 252: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 256: + case 253: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3868,12 +3792,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 257: + case 254: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 258: + case 255: ACCEPT_TOKEN(anon_sym_AT); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3888,12 +3812,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 259: + case 256: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 260: + case 257: ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3908,14 +3832,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 261: + case 258: ACCEPT_TOKEN(anon_sym_0); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'x') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead == 'x') ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3928,17 +3852,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 262: + case 259: ACCEPT_TOKEN(anon_sym_0); if (lookahead == '#') ADVANCE(113); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'x') ADVANCE(248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == 'x') ADVANCE(245); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3950,22 +3874,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 263: + case 260: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 264: + case 261: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3977,9 +3901,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '`' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 265: + case 262: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -3994,16 +3918,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 266: + case 263: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 267: + case 264: ACCEPT_TOKEN(sym_word); if (lookahead == '=') ADVANCE(169); if (lookahead == '\\') ADVANCE(115); @@ -4018,12 +3942,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 268: + case 265: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 'a') ADVANCE(269); + if (lookahead == 'a') ADVANCE(266); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4036,9 +3960,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 269: + case 266: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); if (lookahead == 'c') ADVANCE(141); @@ -4054,9 +3978,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 270: + case 267: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); if (lookahead == 'n') ADVANCE(133); @@ -4072,12 +3996,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 271: + case 268: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); - if (lookahead == 's') ADVANCE(268); + if (lookahead == 's') ADVANCE(265); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4090,12 +4014,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 272: + case 269: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4108,27 +4032,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); - END_STATE(); - case 273: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(115); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '`' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 274: + case 270: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && @@ -4143,24 +4049,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(274); + (lookahead < '{' || '}' < lookahead)) ADVANCE(270); END_STATE(); - case 275: + case 271: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); END_STATE(); - case 276: + case 272: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 277: + case 273: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(154); END_STATE(); - case 278: + case 274: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(154); - if (lookahead == '>') ADVANCE(187); + if (lookahead == '>') ADVANCE(186); END_STATE(); default: return false; @@ -4435,28 +4341,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3] = {.lex_state = 47}, [4] = {.lex_state = 1, .external_lex_state = 3}, [5] = {.lex_state = 1, .external_lex_state = 4}, - [6] = {.lex_state = 51}, - [7] = {.lex_state = 37}, - [8] = {.lex_state = 9, .external_lex_state = 2}, - [9] = {.lex_state = 9, .external_lex_state = 2}, - [10] = {.lex_state = 5, .external_lex_state = 5}, - [11] = {.lex_state = 52}, - [12] = {.lex_state = 36, .external_lex_state = 6}, - [13] = {.lex_state = 38}, - [14] = {.lex_state = 9, .external_lex_state = 2}, - [15] = {.lex_state = 47}, - [16] = {.lex_state = 37}, - [17] = {.lex_state = 38, .external_lex_state = 7}, - [18] = {.lex_state = 46, .external_lex_state = 2}, - [19] = {.lex_state = 53}, - [20] = {.lex_state = 52}, - [21] = {.lex_state = 5, .external_lex_state = 5}, - [22] = {.lex_state = 5, .external_lex_state = 5}, + [6] = {.lex_state = 5, .external_lex_state = 5}, + [7] = {.lex_state = 9, .external_lex_state = 2}, + [8] = {.lex_state = 5, .external_lex_state = 5}, + [9] = {.lex_state = 52}, + [10] = {.lex_state = 36, .external_lex_state = 6}, + [11] = {.lex_state = 37}, + [12] = {.lex_state = 9, .external_lex_state = 2}, + [13] = {.lex_state = 47}, + [14] = {.lex_state = 37}, + [15] = {.lex_state = 51}, + [16] = {.lex_state = 46, .external_lex_state = 2}, + [17] = {.lex_state = 53}, + [18] = {.lex_state = 52}, + [19] = {.lex_state = 9, .external_lex_state = 2}, + [20] = {.lex_state = 38}, + [21] = {.lex_state = 9, .external_lex_state = 2}, + [22] = {.lex_state = 53}, [23] = {.lex_state = 9, .external_lex_state = 2}, - [24] = {.lex_state = 53}, - [25] = {.lex_state = 9, .external_lex_state = 2}, + [24] = {.lex_state = 37}, + [25] = {.lex_state = 38, .external_lex_state = 7}, [26] = {.lex_state = 37}, - [27] = {.lex_state = 37}, + [27] = {.lex_state = 5, .external_lex_state = 5}, [28] = {.lex_state = 3, .external_lex_state = 4}, [29] = {.lex_state = 6, .external_lex_state = 3}, [30] = {.lex_state = 53}, @@ -4477,840 +4383,840 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [45] = {.lex_state = 1, .external_lex_state = 5}, [46] = {.lex_state = 1, .external_lex_state = 4}, [47] = {.lex_state = 1, .external_lex_state = 4}, - [48] = {.lex_state = 51, .external_lex_state = 10}, - [49] = {.lex_state = 40}, - [50] = {.lex_state = 5, .external_lex_state = 5}, - [51] = {.lex_state = 51}, - [52] = {.lex_state = 37}, - [53] = {.lex_state = 41, .external_lex_state = 11}, - [54] = {.lex_state = 37}, - [55] = {.lex_state = 41, .external_lex_state = 12}, - [56] = {.lex_state = 43, .external_lex_state = 12}, - [57] = {.lex_state = 47, .external_lex_state = 2}, - [58] = {.lex_state = 9}, - [59] = {.lex_state = 9}, - [60] = {.lex_state = 47}, - [61] = {.lex_state = 5, .external_lex_state = 5}, + [48] = {.lex_state = 47}, + [49] = {.lex_state = 5, .external_lex_state = 5}, + [50] = {.lex_state = 9}, + [51] = {.lex_state = 52}, + [52] = {.lex_state = 3, .external_lex_state = 4}, + [53] = {.lex_state = 3, .external_lex_state = 4}, + [54] = {.lex_state = 6, .external_lex_state = 3}, + [55] = {.lex_state = 36, .external_lex_state = 6}, + [56] = {.lex_state = 37}, + [57] = {.lex_state = 41, .external_lex_state = 10}, + [58] = {.lex_state = 37}, + [59] = {.lex_state = 37}, + [60] = {.lex_state = 41, .external_lex_state = 11}, + [61] = {.lex_state = 43, .external_lex_state = 11}, [62] = {.lex_state = 52}, [63] = {.lex_state = 3, .external_lex_state = 4}, - [64] = {.lex_state = 3, .external_lex_state = 4}, - [65] = {.lex_state = 6, .external_lex_state = 3}, - [66] = {.lex_state = 36, .external_lex_state = 6}, - [67] = {.lex_state = 5, .external_lex_state = 5}, - [68] = {.lex_state = 5, .external_lex_state = 5}, - [69] = {.lex_state = 5, .external_lex_state = 5}, - [70] = {.lex_state = 52}, - [71] = {.lex_state = 3, .external_lex_state = 4}, - [72] = {.lex_state = 6, .external_lex_state = 3}, - [73] = {.lex_state = 4, .external_lex_state = 13}, - [74] = {.lex_state = 4, .external_lex_state = 14}, - [75] = {.lex_state = 4, .external_lex_state = 14}, - [76] = {.lex_state = 43, .external_lex_state = 12}, - [77] = {.lex_state = 44, .external_lex_state = 15}, - [78] = {.lex_state = 41, .external_lex_state = 7}, - [79] = {.lex_state = 53}, - [80] = {.lex_state = 44, .external_lex_state = 15}, - [81] = {.lex_state = 3, .external_lex_state = 4}, - [82] = {.lex_state = 47, .external_lex_state = 16}, - [83] = {.lex_state = 47}, - [84] = {.lex_state = 47}, - [85] = {.lex_state = 9}, - [86] = {.lex_state = 9}, - [87] = {.lex_state = 4, .external_lex_state = 14}, - [88] = {.lex_state = 17, .external_lex_state = 17}, - [89] = {.lex_state = 52}, - [90] = {.lex_state = 43, .external_lex_state = 18}, - [91] = {.lex_state = 41, .external_lex_state = 12}, - [92] = {.lex_state = 9, .external_lex_state = 2}, - [93] = {.lex_state = 9, .external_lex_state = 19}, - [94] = {.lex_state = 9, .external_lex_state = 2}, - [95] = {.lex_state = 9, .external_lex_state = 20}, - [96] = {.lex_state = 9, .external_lex_state = 2}, - [97] = {.lex_state = 47}, - [98] = {.lex_state = 3, .external_lex_state = 4}, + [64] = {.lex_state = 6, .external_lex_state = 3}, + [65] = {.lex_state = 4, .external_lex_state = 12}, + [66] = {.lex_state = 4, .external_lex_state = 13}, + [67] = {.lex_state = 4, .external_lex_state = 13}, + [68] = {.lex_state = 43, .external_lex_state = 11}, + [69] = {.lex_state = 51, .external_lex_state = 14}, + [70] = {.lex_state = 40}, + [71] = {.lex_state = 5, .external_lex_state = 5}, + [72] = {.lex_state = 51}, + [73] = {.lex_state = 3, .external_lex_state = 4}, + [74] = {.lex_state = 47, .external_lex_state = 15}, + [75] = {.lex_state = 47}, + [76] = {.lex_state = 47}, + [77] = {.lex_state = 9}, + [78] = {.lex_state = 5, .external_lex_state = 5}, + [79] = {.lex_state = 5, .external_lex_state = 5}, + [80] = {.lex_state = 5, .external_lex_state = 5}, + [81] = {.lex_state = 47, .external_lex_state = 2}, + [82] = {.lex_state = 9}, + [83] = {.lex_state = 4, .external_lex_state = 13}, + [84] = {.lex_state = 17, .external_lex_state = 16}, + [85] = {.lex_state = 52}, + [86] = {.lex_state = 43, .external_lex_state = 17}, + [87] = {.lex_state = 44, .external_lex_state = 18}, + [88] = {.lex_state = 44, .external_lex_state = 18}, + [89] = {.lex_state = 41, .external_lex_state = 7}, + [90] = {.lex_state = 53}, + [91] = {.lex_state = 41, .external_lex_state = 11}, + [92] = {.lex_state = 9}, + [93] = {.lex_state = 9, .external_lex_state = 2}, + [94] = {.lex_state = 9, .external_lex_state = 19}, + [95] = {.lex_state = 9, .external_lex_state = 2}, + [96] = {.lex_state = 9, .external_lex_state = 20}, + [97] = {.lex_state = 9, .external_lex_state = 2}, + [98] = {.lex_state = 47}, [99] = {.lex_state = 3, .external_lex_state = 4}, - [100] = {.lex_state = 6, .external_lex_state = 3}, - [101] = {.lex_state = 9, .external_lex_state = 2}, - [102] = {.lex_state = 5, .external_lex_state = 4}, + [100] = {.lex_state = 3, .external_lex_state = 4}, + [101] = {.lex_state = 6, .external_lex_state = 3}, + [102] = {.lex_state = 9, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 4}, [104] = {.lex_state = 5, .external_lex_state = 4}, - [105] = {.lex_state = 47, .external_lex_state = 2}, - [106] = {.lex_state = 5, .external_lex_state = 5}, - [107] = {.lex_state = 47, .external_lex_state = 21}, - [108] = {.lex_state = 5, .external_lex_state = 4}, + [105] = {.lex_state = 5, .external_lex_state = 4}, + [106] = {.lex_state = 47, .external_lex_state = 2}, + [107] = {.lex_state = 5, .external_lex_state = 5}, + [108] = {.lex_state = 47, .external_lex_state = 21}, [109] = {.lex_state = 5, .external_lex_state = 4}, - [110] = {.lex_state = 3, .external_lex_state = 4}, - [111] = {.lex_state = 1, .external_lex_state = 3}, - [112] = {.lex_state = 1, .external_lex_state = 4}, - [113] = {.lex_state = 51}, - [114] = {.lex_state = 51, .external_lex_state = 10}, - [115] = {.lex_state = 5, .external_lex_state = 5}, - [116] = {.lex_state = 40}, - [117] = {.lex_state = 51}, - [118] = {.lex_state = 42, .external_lex_state = 12}, - [119] = {.lex_state = 41, .external_lex_state = 12}, - [120] = {.lex_state = 37}, - [121] = {.lex_state = 41, .external_lex_state = 12}, - [122] = {.lex_state = 37, .external_lex_state = 21}, - [123] = {.lex_state = 5, .external_lex_state = 5}, - [124] = {.lex_state = 5, .external_lex_state = 5}, - [125] = {.lex_state = 5, .external_lex_state = 5}, - [126] = {.lex_state = 5, .external_lex_state = 5}, - [127] = {.lex_state = 47}, - [128] = {.lex_state = 5, .external_lex_state = 5}, - [129] = {.lex_state = 9}, - [130] = {.lex_state = 3, .external_lex_state = 4}, - [131] = {.lex_state = 36, .external_lex_state = 6}, - [132] = {.lex_state = 36, .external_lex_state = 22}, - [133] = {.lex_state = 3, .external_lex_state = 4}, - [134] = {.lex_state = 9, .external_lex_state = 2}, - [135] = {.lex_state = 52}, - [136] = {.lex_state = 43}, - [137] = {.lex_state = 4, .external_lex_state = 14}, - [138] = {.lex_state = 43}, - [139] = {.lex_state = 4, .external_lex_state = 14}, - [140] = {.lex_state = 3, .external_lex_state = 4}, - [141] = {.lex_state = 45, .external_lex_state = 23}, - [142] = {.lex_state = 5, .external_lex_state = 5}, - [143] = {.lex_state = 45, .external_lex_state = 24}, - [144] = {.lex_state = 45, .external_lex_state = 15}, - [145] = {.lex_state = 45, .external_lex_state = 15}, - [146] = {.lex_state = 44, .external_lex_state = 15}, - [147] = {.lex_state = 53}, - [148] = {.lex_state = 44, .external_lex_state = 15}, - [149] = {.lex_state = 48, .external_lex_state = 15}, - [150] = {.lex_state = 5, .external_lex_state = 5}, - [151] = {.lex_state = 45, .external_lex_state = 24}, - [152] = {.lex_state = 45, .external_lex_state = 15}, - [153] = {.lex_state = 47}, - [154] = {.lex_state = 6, .external_lex_state = 9}, - [155] = {.lex_state = 6, .external_lex_state = 3}, - [156] = {.lex_state = 6, .external_lex_state = 3}, - [157] = {.lex_state = 52, .external_lex_state = 25}, - [158] = {.lex_state = 52, .external_lex_state = 25}, - [159] = {.lex_state = 43, .external_lex_state = 25}, - [160] = {.lex_state = 47, .external_lex_state = 8}, - [161] = {.lex_state = 47, .external_lex_state = 2}, - [162] = {.lex_state = 47, .external_lex_state = 2}, - [163] = {.lex_state = 9}, - [164] = {.lex_state = 5, .external_lex_state = 5}, - [165] = {.lex_state = 47}, - [166] = {.lex_state = 52}, - [167] = {.lex_state = 17, .external_lex_state = 14}, - [168] = {.lex_state = 4, .external_lex_state = 14}, - [169] = {.lex_state = 19, .external_lex_state = 26}, - [170] = {.lex_state = 9, .external_lex_state = 2}, - [171] = {.lex_state = 3, .external_lex_state = 4}, - [172] = {.lex_state = 3, .external_lex_state = 4}, - [173] = {.lex_state = 6, .external_lex_state = 3}, - [174] = {.lex_state = 4, .external_lex_state = 14}, - [175] = {.lex_state = 52, .external_lex_state = 27}, - [176] = {.lex_state = 4, .external_lex_state = 14}, - [177] = {.lex_state = 3, .external_lex_state = 4}, - [178] = {.lex_state = 3, .external_lex_state = 4}, - [179] = {.lex_state = 6, .external_lex_state = 3}, - [180] = {.lex_state = 3, .external_lex_state = 5}, - [181] = {.lex_state = 3, .external_lex_state = 4}, - [182] = {.lex_state = 3, .external_lex_state = 4}, + [110] = {.lex_state = 5, .external_lex_state = 4}, + [111] = {.lex_state = 3, .external_lex_state = 4}, + [112] = {.lex_state = 1, .external_lex_state = 3}, + [113] = {.lex_state = 1, .external_lex_state = 4}, + [114] = {.lex_state = 5, .external_lex_state = 5}, + [115] = {.lex_state = 47}, + [116] = {.lex_state = 5, .external_lex_state = 5}, + [117] = {.lex_state = 5, .external_lex_state = 5}, + [118] = {.lex_state = 9}, + [119] = {.lex_state = 3, .external_lex_state = 4}, + [120] = {.lex_state = 36, .external_lex_state = 6}, + [121] = {.lex_state = 36, .external_lex_state = 22}, + [122] = {.lex_state = 3, .external_lex_state = 4}, + [123] = {.lex_state = 42, .external_lex_state = 11}, + [124] = {.lex_state = 41, .external_lex_state = 11}, + [125] = {.lex_state = 41, .external_lex_state = 11}, + [126] = {.lex_state = 37}, + [127] = {.lex_state = 41, .external_lex_state = 11}, + [128] = {.lex_state = 37, .external_lex_state = 21}, + [129] = {.lex_state = 5, .external_lex_state = 5}, + [130] = {.lex_state = 9, .external_lex_state = 2}, + [131] = {.lex_state = 52}, + [132] = {.lex_state = 43}, + [133] = {.lex_state = 4, .external_lex_state = 13}, + [134] = {.lex_state = 43}, + [135] = {.lex_state = 4, .external_lex_state = 13}, + [136] = {.lex_state = 3, .external_lex_state = 4}, + [137] = {.lex_state = 51}, + [138] = {.lex_state = 5, .external_lex_state = 5}, + [139] = {.lex_state = 51, .external_lex_state = 14}, + [140] = {.lex_state = 40}, + [141] = {.lex_state = 51}, + [142] = {.lex_state = 47}, + [143] = {.lex_state = 6, .external_lex_state = 9}, + [144] = {.lex_state = 6, .external_lex_state = 3}, + [145] = {.lex_state = 6, .external_lex_state = 3}, + [146] = {.lex_state = 52, .external_lex_state = 23}, + [147] = {.lex_state = 52, .external_lex_state = 23}, + [148] = {.lex_state = 43, .external_lex_state = 23}, + [149] = {.lex_state = 47, .external_lex_state = 8}, + [150] = {.lex_state = 47, .external_lex_state = 2}, + [151] = {.lex_state = 47, .external_lex_state = 2}, + [152] = {.lex_state = 5, .external_lex_state = 5}, + [153] = {.lex_state = 5, .external_lex_state = 5}, + [154] = {.lex_state = 52}, + [155] = {.lex_state = 47}, + [156] = {.lex_state = 17, .external_lex_state = 13}, + [157] = {.lex_state = 4, .external_lex_state = 13}, + [158] = {.lex_state = 19, .external_lex_state = 24}, + [159] = {.lex_state = 9, .external_lex_state = 2}, + [160] = {.lex_state = 3, .external_lex_state = 4}, + [161] = {.lex_state = 45, .external_lex_state = 25}, + [162] = {.lex_state = 5, .external_lex_state = 5}, + [163] = {.lex_state = 45, .external_lex_state = 26}, + [164] = {.lex_state = 45, .external_lex_state = 18}, + [165] = {.lex_state = 45, .external_lex_state = 18}, + [166] = {.lex_state = 5, .external_lex_state = 5}, + [167] = {.lex_state = 45, .external_lex_state = 26}, + [168] = {.lex_state = 45, .external_lex_state = 18}, + [169] = {.lex_state = 44, .external_lex_state = 18}, + [170] = {.lex_state = 44, .external_lex_state = 18}, + [171] = {.lex_state = 53}, + [172] = {.lex_state = 48, .external_lex_state = 18}, + [173] = {.lex_state = 9}, + [174] = {.lex_state = 3, .external_lex_state = 4}, + [175] = {.lex_state = 6, .external_lex_state = 3}, + [176] = {.lex_state = 4, .external_lex_state = 13}, + [177] = {.lex_state = 52, .external_lex_state = 27}, + [178] = {.lex_state = 4, .external_lex_state = 13}, + [179] = {.lex_state = 3, .external_lex_state = 4}, + [180] = {.lex_state = 3, .external_lex_state = 4}, + [181] = {.lex_state = 6, .external_lex_state = 3}, + [182] = {.lex_state = 3, .external_lex_state = 5}, [183] = {.lex_state = 3, .external_lex_state = 4}, - [184] = {.lex_state = 9, .external_lex_state = 2}, - [185] = {.lex_state = 9, .external_lex_state = 19}, - [186] = {.lex_state = 5, .external_lex_state = 4}, - [187] = {.lex_state = 5, .external_lex_state = 4}, - [188] = {.lex_state = 5, .external_lex_state = 5}, - [189] = {.lex_state = 5, .external_lex_state = 4}, + [184] = {.lex_state = 3, .external_lex_state = 4}, + [185] = {.lex_state = 3, .external_lex_state = 4}, + [186] = {.lex_state = 9, .external_lex_state = 2}, + [187] = {.lex_state = 9, .external_lex_state = 19}, + [188] = {.lex_state = 5, .external_lex_state = 4}, + [189] = {.lex_state = 5, .external_lex_state = 5}, [190] = {.lex_state = 5, .external_lex_state = 4}, - [191] = {.lex_state = 51}, - [192] = {.lex_state = 5, .external_lex_state = 5}, - [193] = {.lex_state = 40}, - [194] = {.lex_state = 41, .external_lex_state = 12}, - [195] = {.lex_state = 41, .external_lex_state = 12}, - [196] = {.lex_state = 41, .external_lex_state = 12}, - [197] = {.lex_state = 7, .external_lex_state = 4}, - [198] = {.lex_state = 9}, - [199] = {.lex_state = 4, .external_lex_state = 14}, - [200] = {.lex_state = 3, .external_lex_state = 4}, + [191] = {.lex_state = 5, .external_lex_state = 4}, + [192] = {.lex_state = 5, .external_lex_state = 4}, + [193] = {.lex_state = 7, .external_lex_state = 4}, + [194] = {.lex_state = 9}, + [195] = {.lex_state = 4, .external_lex_state = 13}, + [196] = {.lex_state = 41, .external_lex_state = 11}, + [197] = {.lex_state = 41, .external_lex_state = 11}, + [198] = {.lex_state = 41, .external_lex_state = 11}, + [199] = {.lex_state = 3, .external_lex_state = 4}, + [200] = {.lex_state = 9, .external_lex_state = 2}, [201] = {.lex_state = 9, .external_lex_state = 2}, - [202] = {.lex_state = 9, .external_lex_state = 2}, - [203] = {.lex_state = 3, .external_lex_state = 4}, - [204] = {.lex_state = 6, .external_lex_state = 3}, - [205] = {.lex_state = 52}, - [206] = {.lex_state = 9, .external_lex_state = 2}, - [207] = {.lex_state = 52}, - [208] = {.lex_state = 4, .external_lex_state = 14}, - [209] = {.lex_state = 50}, - [210] = {.lex_state = 4, .external_lex_state = 14}, - [211] = {.lex_state = 50}, + [202] = {.lex_state = 3, .external_lex_state = 4}, + [203] = {.lex_state = 6, .external_lex_state = 3}, + [204] = {.lex_state = 52}, + [205] = {.lex_state = 9, .external_lex_state = 2}, + [206] = {.lex_state = 52}, + [207] = {.lex_state = 4, .external_lex_state = 13}, + [208] = {.lex_state = 50}, + [209] = {.lex_state = 4, .external_lex_state = 13}, + [210] = {.lex_state = 50}, + [211] = {.lex_state = 51}, [212] = {.lex_state = 5, .external_lex_state = 5}, - [213] = {.lex_state = 45, .external_lex_state = 15}, - [214] = {.lex_state = 45, .external_lex_state = 15}, - [215] = {.lex_state = 45, .external_lex_state = 15}, - [216] = {.lex_state = 45, .external_lex_state = 24}, - [217] = {.lex_state = 48, .external_lex_state = 15}, - [218] = {.lex_state = 5, .external_lex_state = 5}, - [219] = {.lex_state = 45, .external_lex_state = 24}, - [220] = {.lex_state = 45, .external_lex_state = 15}, - [221] = {.lex_state = 52, .external_lex_state = 23}, - [222] = {.lex_state = 52, .external_lex_state = 15}, - [223] = {.lex_state = 42, .external_lex_state = 15}, - [224] = {.lex_state = 5, .external_lex_state = 5}, - [225] = {.lex_state = 45, .external_lex_state = 15}, - [226] = {.lex_state = 45, .external_lex_state = 15}, - [227] = {.lex_state = 6, .external_lex_state = 3}, - [228] = {.lex_state = 47, .external_lex_state = 10}, - [229] = {.lex_state = 47}, - [230] = {.lex_state = 47}, - [231] = {.lex_state = 53, .external_lex_state = 10}, - [232] = {.lex_state = 49, .external_lex_state = 28}, - [233] = {.lex_state = 52, .external_lex_state = 28}, - [234] = {.lex_state = 53, .external_lex_state = 10}, - [235] = {.lex_state = 52, .external_lex_state = 28}, - [236] = {.lex_state = 3, .external_lex_state = 4}, - [237] = {.lex_state = 23, .external_lex_state = 14}, - [238] = {.lex_state = 3, .external_lex_state = 4}, - [239] = {.lex_state = 37}, - [240] = {.lex_state = 19, .external_lex_state = 26}, - [241] = {.lex_state = 17, .external_lex_state = 14}, - [242] = {.lex_state = 3, .external_lex_state = 4}, - [243] = {.lex_state = 9, .external_lex_state = 2}, - [244] = {.lex_state = 4, .external_lex_state = 14}, - [245] = {.lex_state = 38}, - [246] = {.lex_state = 52, .external_lex_state = 27}, - [247] = {.lex_state = 9, .external_lex_state = 2}, - [248] = {.lex_state = 4, .external_lex_state = 14}, - [249] = {.lex_state = 3, .external_lex_state = 4}, - [250] = {.lex_state = 36, .external_lex_state = 6}, - [251] = {.lex_state = 9, .external_lex_state = 2}, - [252] = {.lex_state = 52}, - [253] = {.lex_state = 9, .external_lex_state = 19}, - [254] = {.lex_state = 9, .external_lex_state = 2}, - [255] = {.lex_state = 3, .external_lex_state = 4}, - [256] = {.lex_state = 52}, - [257] = {.lex_state = 9, .external_lex_state = 2}, + [213] = {.lex_state = 40}, + [214] = {.lex_state = 47, .external_lex_state = 14}, + [215] = {.lex_state = 6, .external_lex_state = 3}, + [216] = {.lex_state = 47}, + [217] = {.lex_state = 47}, + [218] = {.lex_state = 53, .external_lex_state = 14}, + [219] = {.lex_state = 49, .external_lex_state = 28}, + [220] = {.lex_state = 52, .external_lex_state = 28}, + [221] = {.lex_state = 53, .external_lex_state = 14}, + [222] = {.lex_state = 52, .external_lex_state = 28}, + [223] = {.lex_state = 3, .external_lex_state = 4}, + [224] = {.lex_state = 23, .external_lex_state = 13}, + [225] = {.lex_state = 37}, + [226] = {.lex_state = 19, .external_lex_state = 24}, + [227] = {.lex_state = 17, .external_lex_state = 13}, + [228] = {.lex_state = 3, .external_lex_state = 4}, + [229] = {.lex_state = 9, .external_lex_state = 2}, + [230] = {.lex_state = 5, .external_lex_state = 5}, + [231] = {.lex_state = 45, .external_lex_state = 18}, + [232] = {.lex_state = 45, .external_lex_state = 18}, + [233] = {.lex_state = 45, .external_lex_state = 18}, + [234] = {.lex_state = 5, .external_lex_state = 5}, + [235] = {.lex_state = 45, .external_lex_state = 18}, + [236] = {.lex_state = 45, .external_lex_state = 18}, + [237] = {.lex_state = 45, .external_lex_state = 26}, + [238] = {.lex_state = 5, .external_lex_state = 5}, + [239] = {.lex_state = 45, .external_lex_state = 26}, + [240] = {.lex_state = 45, .external_lex_state = 18}, + [241] = {.lex_state = 48, .external_lex_state = 18}, + [242] = {.lex_state = 52, .external_lex_state = 25}, + [243] = {.lex_state = 52, .external_lex_state = 18}, + [244] = {.lex_state = 42, .external_lex_state = 18}, + [245] = {.lex_state = 3, .external_lex_state = 4}, + [246] = {.lex_state = 38}, + [247] = {.lex_state = 4, .external_lex_state = 13}, + [248] = {.lex_state = 52, .external_lex_state = 27}, + [249] = {.lex_state = 9, .external_lex_state = 2}, + [250] = {.lex_state = 4, .external_lex_state = 13}, + [251] = {.lex_state = 3, .external_lex_state = 4}, + [252] = {.lex_state = 36, .external_lex_state = 6}, + [253] = {.lex_state = 9, .external_lex_state = 2}, + [254] = {.lex_state = 52}, + [255] = {.lex_state = 9, .external_lex_state = 19}, + [256] = {.lex_state = 9, .external_lex_state = 2}, + [257] = {.lex_state = 3, .external_lex_state = 4}, [258] = {.lex_state = 52}, - [259] = {.lex_state = 52}, - [260] = {.lex_state = 50}, - [261] = {.lex_state = 3, .external_lex_state = 4}, - [262] = {.lex_state = 9, .external_lex_state = 10}, - [263] = {.lex_state = 47}, - [264] = {.lex_state = 9}, + [259] = {.lex_state = 9, .external_lex_state = 2}, + [260] = {.lex_state = 52}, + [261] = {.lex_state = 52}, + [262] = {.lex_state = 50}, + [263] = {.lex_state = 9, .external_lex_state = 14}, + [264] = {.lex_state = 3, .external_lex_state = 4}, [265] = {.lex_state = 47}, - [266] = {.lex_state = 43}, - [267] = {.lex_state = 50}, - [268] = {.lex_state = 3, .external_lex_state = 4}, - [269] = {.lex_state = 47}, - [270] = {.lex_state = 43}, - [271] = {.lex_state = 5, .external_lex_state = 5}, - [272] = {.lex_state = 45, .external_lex_state = 15}, - [273] = {.lex_state = 45, .external_lex_state = 15}, - [274] = {.lex_state = 52, .external_lex_state = 23}, - [275] = {.lex_state = 52, .external_lex_state = 15}, - [276] = {.lex_state = 42, .external_lex_state = 15}, - [277] = {.lex_state = 5, .external_lex_state = 5}, - [278] = {.lex_state = 45, .external_lex_state = 15}, - [279] = {.lex_state = 45, .external_lex_state = 15}, - [280] = {.lex_state = 5, .external_lex_state = 5}, - [281] = {.lex_state = 5, .external_lex_state = 5}, - [282] = {.lex_state = 45, .external_lex_state = 15}, - [283] = {.lex_state = 6, .external_lex_state = 3}, - [284] = {.lex_state = 47}, - [285] = {.lex_state = 53}, - [286] = {.lex_state = 53, .external_lex_state = 10}, - [287] = {.lex_state = 53}, - [288] = {.lex_state = 53, .external_lex_state = 10}, - [289] = {.lex_state = 52}, - [290] = {.lex_state = 52}, - [291] = {.lex_state = 43, .external_lex_state = 12}, - [292] = {.lex_state = 37}, - [293] = {.lex_state = 19, .external_lex_state = 26}, - [294] = {.lex_state = 3, .external_lex_state = 4}, - [295] = {.lex_state = 4, .external_lex_state = 14}, - [296] = {.lex_state = 52, .external_lex_state = 27}, - [297] = {.lex_state = 9, .external_lex_state = 2}, - [298] = {.lex_state = 9, .external_lex_state = 2}, - [299] = {.lex_state = 4, .external_lex_state = 14}, - [300] = {.lex_state = 3, .external_lex_state = 4}, - [301] = {.lex_state = 52}, + [266] = {.lex_state = 9}, + [267] = {.lex_state = 47}, + [268] = {.lex_state = 43}, + [269] = {.lex_state = 50}, + [270] = {.lex_state = 3, .external_lex_state = 4}, + [271] = {.lex_state = 47}, + [272] = {.lex_state = 43}, + [273] = {.lex_state = 6, .external_lex_state = 3}, + [274] = {.lex_state = 47}, + [275] = {.lex_state = 53}, + [276] = {.lex_state = 53, .external_lex_state = 14}, + [277] = {.lex_state = 53}, + [278] = {.lex_state = 53, .external_lex_state = 14}, + [279] = {.lex_state = 52}, + [280] = {.lex_state = 52}, + [281] = {.lex_state = 43, .external_lex_state = 11}, + [282] = {.lex_state = 37}, + [283] = {.lex_state = 19, .external_lex_state = 24}, + [284] = {.lex_state = 3, .external_lex_state = 4}, + [285] = {.lex_state = 5, .external_lex_state = 5}, + [286] = {.lex_state = 45, .external_lex_state = 18}, + [287] = {.lex_state = 5, .external_lex_state = 5}, + [288] = {.lex_state = 45, .external_lex_state = 18}, + [289] = {.lex_state = 45, .external_lex_state = 18}, + [290] = {.lex_state = 5, .external_lex_state = 5}, + [291] = {.lex_state = 45, .external_lex_state = 18}, + [292] = {.lex_state = 45, .external_lex_state = 18}, + [293] = {.lex_state = 52, .external_lex_state = 25}, + [294] = {.lex_state = 52, .external_lex_state = 18}, + [295] = {.lex_state = 42, .external_lex_state = 18}, + [296] = {.lex_state = 5, .external_lex_state = 5}, + [297] = {.lex_state = 4, .external_lex_state = 13}, + [298] = {.lex_state = 52, .external_lex_state = 27}, + [299] = {.lex_state = 9, .external_lex_state = 2}, + [300] = {.lex_state = 9, .external_lex_state = 2}, + [301] = {.lex_state = 4, .external_lex_state = 13}, [302] = {.lex_state = 3, .external_lex_state = 4}, - [303] = {.lex_state = 47}, - [304] = {.lex_state = 43}, + [303] = {.lex_state = 52}, + [304] = {.lex_state = 3, .external_lex_state = 4}, [305] = {.lex_state = 47}, - [306] = {.lex_state = 35, .external_lex_state = 2}, - [307] = {.lex_state = 9}, - [308] = {.lex_state = 47}, - [309] = {.lex_state = 35, .external_lex_state = 2}, - [310] = {.lex_state = 9}, - [311] = {.lex_state = 3, .external_lex_state = 4}, - [312] = {.lex_state = 47}, - [313] = {.lex_state = 43}, - [314] = {.lex_state = 5, .external_lex_state = 5}, - [315] = {.lex_state = 45, .external_lex_state = 15}, - [316] = {.lex_state = 5, .external_lex_state = 5}, - [317] = {.lex_state = 5, .external_lex_state = 5}, - [318] = {.lex_state = 45, .external_lex_state = 15}, - [319] = {.lex_state = 5, .external_lex_state = 5}, - [320] = {.lex_state = 53}, - [321] = {.lex_state = 53}, - [322] = {.lex_state = 3, .external_lex_state = 4}, - [323] = {.lex_state = 52}, - [324] = {.lex_state = 3, .external_lex_state = 4}, - [325] = {.lex_state = 52}, - [326] = {.lex_state = 43, .external_lex_state = 12}, - [327] = {.lex_state = 37}, - [328] = {.lex_state = 9, .external_lex_state = 2}, - [329] = {.lex_state = 9, .external_lex_state = 2}, - [330] = {.lex_state = 3, .external_lex_state = 4}, - [331] = {.lex_state = 43}, + [306] = {.lex_state = 43}, + [307] = {.lex_state = 47}, + [308] = {.lex_state = 35, .external_lex_state = 2}, + [309] = {.lex_state = 9}, + [310] = {.lex_state = 47}, + [311] = {.lex_state = 35, .external_lex_state = 2}, + [312] = {.lex_state = 9}, + [313] = {.lex_state = 3, .external_lex_state = 4}, + [314] = {.lex_state = 47}, + [315] = {.lex_state = 43}, + [316] = {.lex_state = 53}, + [317] = {.lex_state = 53}, + [318] = {.lex_state = 3, .external_lex_state = 4}, + [319] = {.lex_state = 52}, + [320] = {.lex_state = 3, .external_lex_state = 4}, + [321] = {.lex_state = 52}, + [322] = {.lex_state = 43, .external_lex_state = 11}, + [323] = {.lex_state = 37}, + [324] = {.lex_state = 5, .external_lex_state = 5}, + [325] = {.lex_state = 5, .external_lex_state = 5}, + [326] = {.lex_state = 45, .external_lex_state = 18}, + [327] = {.lex_state = 5, .external_lex_state = 5}, + [328] = {.lex_state = 45, .external_lex_state = 18}, + [329] = {.lex_state = 5, .external_lex_state = 5}, + [330] = {.lex_state = 9, .external_lex_state = 2}, + [331] = {.lex_state = 9, .external_lex_state = 2}, [332] = {.lex_state = 3, .external_lex_state = 4}, - [333] = {.lex_state = 9, .external_lex_state = 10}, - [334] = {.lex_state = 9}, - [335] = {.lex_state = 47}, - [336] = {.lex_state = 50}, - [337] = {.lex_state = 43}, - [338] = {.lex_state = 35, .external_lex_state = 2}, - [339] = {.lex_state = 9}, - [340] = {.lex_state = 9, .external_lex_state = 10}, + [333] = {.lex_state = 43}, + [334] = {.lex_state = 3, .external_lex_state = 4}, + [335] = {.lex_state = 9, .external_lex_state = 14}, + [336] = {.lex_state = 9}, + [337] = {.lex_state = 47}, + [338] = {.lex_state = 50}, + [339] = {.lex_state = 43}, + [340] = {.lex_state = 35, .external_lex_state = 2}, [341] = {.lex_state = 9}, - [342] = {.lex_state = 47}, - [343] = {.lex_state = 50}, - [344] = {.lex_state = 43}, - [345] = {.lex_state = 35, .external_lex_state = 2}, + [342] = {.lex_state = 9, .external_lex_state = 14}, + [343] = {.lex_state = 9}, + [344] = {.lex_state = 47}, + [345] = {.lex_state = 50}, [346] = {.lex_state = 43}, - [347] = {.lex_state = 3, .external_lex_state = 4}, - [348] = {.lex_state = 5, .external_lex_state = 5}, - [349] = {.lex_state = 5, .external_lex_state = 5}, + [347] = {.lex_state = 35, .external_lex_state = 2}, + [348] = {.lex_state = 43}, + [349] = {.lex_state = 3, .external_lex_state = 4}, [350] = {.lex_state = 3, .external_lex_state = 4}, [351] = {.lex_state = 52}, [352] = {.lex_state = 52}, - [353] = {.lex_state = 43, .external_lex_state = 12}, - [354] = {.lex_state = 3, .external_lex_state = 4}, - [355] = {.lex_state = 50}, - [356] = {.lex_state = 43}, - [357] = {.lex_state = 9, .external_lex_state = 2}, - [358] = {.lex_state = 9}, + [353] = {.lex_state = 43, .external_lex_state = 11}, + [354] = {.lex_state = 5, .external_lex_state = 5}, + [355] = {.lex_state = 5, .external_lex_state = 5}, + [356] = {.lex_state = 3, .external_lex_state = 4}, + [357] = {.lex_state = 50}, + [358] = {.lex_state = 43}, [359] = {.lex_state = 9, .external_lex_state = 2}, [360] = {.lex_state = 9}, - [361] = {.lex_state = 50}, - [362] = {.lex_state = 43}, - [363] = {.lex_state = 3, .external_lex_state = 4}, - [364] = {.lex_state = 3, .external_lex_state = 4}, - [365] = {.lex_state = 52}, - [366] = {.lex_state = 52}, - [367] = {.lex_state = 50}, - [368] = {.lex_state = 47}, - [369] = {.lex_state = 9}, - [370] = {.lex_state = 9, .external_lex_state = 2}, - [371] = {.lex_state = 47}, - [372] = {.lex_state = 9}, - [373] = {.lex_state = 9, .external_lex_state = 2}, - [374] = {.lex_state = 50}, - [375] = {.lex_state = 3, .external_lex_state = 4}, - [376] = {.lex_state = 52}, - [377] = {.lex_state = 47}, - [378] = {.lex_state = 9}, + [361] = {.lex_state = 9, .external_lex_state = 2}, + [362] = {.lex_state = 9}, + [363] = {.lex_state = 50}, + [364] = {.lex_state = 43}, + [365] = {.lex_state = 3, .external_lex_state = 4}, + [366] = {.lex_state = 3, .external_lex_state = 4}, + [367] = {.lex_state = 52}, + [368] = {.lex_state = 52}, + [369] = {.lex_state = 50}, + [370] = {.lex_state = 47}, + [371] = {.lex_state = 9}, + [372] = {.lex_state = 9, .external_lex_state = 2}, + [373] = {.lex_state = 47}, + [374] = {.lex_state = 9}, + [375] = {.lex_state = 9, .external_lex_state = 2}, + [376] = {.lex_state = 50}, + [377] = {.lex_state = 3, .external_lex_state = 4}, + [378] = {.lex_state = 52}, [379] = {.lex_state = 47}, [380] = {.lex_state = 9}, - [381] = {.lex_state = 3, .external_lex_state = 4}, - [382] = {.lex_state = 47}, - [383] = {.lex_state = 47}, - [384] = {.lex_state = 1, .external_lex_state = 3}, - [385] = {.lex_state = 1, .external_lex_state = 4}, - [386] = {.lex_state = 5, .external_lex_state = 5}, - [387] = {.lex_state = 46, .external_lex_state = 2}, + [381] = {.lex_state = 47}, + [382] = {.lex_state = 9}, + [383] = {.lex_state = 3, .external_lex_state = 4}, + [384] = {.lex_state = 47}, + [385] = {.lex_state = 47}, + [386] = {.lex_state = 1, .external_lex_state = 3}, + [387] = {.lex_state = 1, .external_lex_state = 4}, [388] = {.lex_state = 5, .external_lex_state = 5}, [389] = {.lex_state = 5, .external_lex_state = 5}, - [390] = {.lex_state = 3, .external_lex_state = 4}, - [391] = {.lex_state = 6, .external_lex_state = 3}, - [392] = {.lex_state = 9, .external_lex_state = 2}, - [393] = {.lex_state = 5, .external_lex_state = 4}, - [394] = {.lex_state = 5, .external_lex_state = 4}, - [395] = {.lex_state = 47, .external_lex_state = 2}, + [390] = {.lex_state = 46, .external_lex_state = 2}, + [391] = {.lex_state = 5, .external_lex_state = 5}, + [392] = {.lex_state = 3, .external_lex_state = 4}, + [393] = {.lex_state = 6, .external_lex_state = 3}, + [394] = {.lex_state = 9, .external_lex_state = 2}, + [395] = {.lex_state = 5, .external_lex_state = 4}, [396] = {.lex_state = 5, .external_lex_state = 4}, - [397] = {.lex_state = 3, .external_lex_state = 5}, - [398] = {.lex_state = 3, .external_lex_state = 4}, - [399] = {.lex_state = 3, .external_lex_state = 4}, - [400] = {.lex_state = 1, .external_lex_state = 9}, - [401] = {.lex_state = 1, .external_lex_state = 3}, - [402] = {.lex_state = 1, .external_lex_state = 3}, - [403] = {.lex_state = 1, .external_lex_state = 5}, - [404] = {.lex_state = 1, .external_lex_state = 4}, - [405] = {.lex_state = 1, .external_lex_state = 4}, - [406] = {.lex_state = 5, .external_lex_state = 5}, - [407] = {.lex_state = 43, .external_lex_state = 29}, - [408] = {.lex_state = 37}, - [409] = {.lex_state = 43, .external_lex_state = 18}, - [410] = {.lex_state = 5, .external_lex_state = 5}, - [411] = {.lex_state = 3, .external_lex_state = 4}, - [412] = {.lex_state = 5, .external_lex_state = 5}, - [413] = {.lex_state = 5, .external_lex_state = 5}, + [397] = {.lex_state = 47, .external_lex_state = 2}, + [398] = {.lex_state = 5, .external_lex_state = 4}, + [399] = {.lex_state = 3, .external_lex_state = 5}, + [400] = {.lex_state = 3, .external_lex_state = 4}, + [401] = {.lex_state = 3, .external_lex_state = 4}, + [402] = {.lex_state = 1, .external_lex_state = 9}, + [403] = {.lex_state = 1, .external_lex_state = 3}, + [404] = {.lex_state = 1, .external_lex_state = 3}, + [405] = {.lex_state = 1, .external_lex_state = 5}, + [406] = {.lex_state = 1, .external_lex_state = 4}, + [407] = {.lex_state = 1, .external_lex_state = 4}, + [408] = {.lex_state = 5, .external_lex_state = 5}, + [409] = {.lex_state = 3, .external_lex_state = 4}, + [410] = {.lex_state = 43, .external_lex_state = 29}, + [411] = {.lex_state = 37}, + [412] = {.lex_state = 37}, + [413] = {.lex_state = 43, .external_lex_state = 17}, [414] = {.lex_state = 5, .external_lex_state = 5}, [415] = {.lex_state = 3, .external_lex_state = 4}, - [416] = {.lex_state = 9, .external_lex_state = 2}, - [417] = {.lex_state = 9, .external_lex_state = 19}, - [418] = {.lex_state = 9, .external_lex_state = 2}, + [416] = {.lex_state = 5, .external_lex_state = 5}, + [417] = {.lex_state = 5, .external_lex_state = 5}, + [418] = {.lex_state = 5, .external_lex_state = 5}, [419] = {.lex_state = 9, .external_lex_state = 2}, - [420] = {.lex_state = 3, .external_lex_state = 4}, - [421] = {.lex_state = 3, .external_lex_state = 4}, - [422] = {.lex_state = 6, .external_lex_state = 3}, - [423] = {.lex_state = 36, .external_lex_state = 6}, - [424] = {.lex_state = 5, .external_lex_state = 4}, - [425] = {.lex_state = 5, .external_lex_state = 4}, - [426] = {.lex_state = 5, .external_lex_state = 4}, - [427] = {.lex_state = 5, .external_lex_state = 5}, - [428] = {.lex_state = 47, .external_lex_state = 21}, + [420] = {.lex_state = 9, .external_lex_state = 19}, + [421] = {.lex_state = 9, .external_lex_state = 2}, + [422] = {.lex_state = 9, .external_lex_state = 2}, + [423] = {.lex_state = 3, .external_lex_state = 4}, + [424] = {.lex_state = 3, .external_lex_state = 4}, + [425] = {.lex_state = 6, .external_lex_state = 3}, + [426] = {.lex_state = 36, .external_lex_state = 6}, + [427] = {.lex_state = 5, .external_lex_state = 4}, + [428] = {.lex_state = 5, .external_lex_state = 4}, [429] = {.lex_state = 5, .external_lex_state = 4}, - [430] = {.lex_state = 5, .external_lex_state = 4}, - [431] = {.lex_state = 3, .external_lex_state = 4}, - [432] = {.lex_state = 1, .external_lex_state = 3}, - [433] = {.lex_state = 1, .external_lex_state = 4}, - [434] = {.lex_state = 5, .external_lex_state = 5}, - [435] = {.lex_state = 43, .external_lex_state = 18}, - [436] = {.lex_state = 37}, - [437] = {.lex_state = 43, .external_lex_state = 18}, - [438] = {.lex_state = 37, .external_lex_state = 21}, + [430] = {.lex_state = 5, .external_lex_state = 5}, + [431] = {.lex_state = 47, .external_lex_state = 21}, + [432] = {.lex_state = 5, .external_lex_state = 4}, + [433] = {.lex_state = 5, .external_lex_state = 4}, + [434] = {.lex_state = 3, .external_lex_state = 4}, + [435] = {.lex_state = 1, .external_lex_state = 3}, + [436] = {.lex_state = 1, .external_lex_state = 4}, + [437] = {.lex_state = 5, .external_lex_state = 5}, + [438] = {.lex_state = 47}, [439] = {.lex_state = 5, .external_lex_state = 5}, [440] = {.lex_state = 5, .external_lex_state = 5}, - [441] = {.lex_state = 5, .external_lex_state = 5}, - [442] = {.lex_state = 5, .external_lex_state = 5}, - [443] = {.lex_state = 47}, - [444] = {.lex_state = 5, .external_lex_state = 5}, - [445] = {.lex_state = 3, .external_lex_state = 4}, - [446] = {.lex_state = 9, .external_lex_state = 2}, - [447] = {.lex_state = 9, .external_lex_state = 19}, - [448] = {.lex_state = 3, .external_lex_state = 4}, - [449] = {.lex_state = 3, .external_lex_state = 4}, + [441] = {.lex_state = 3, .external_lex_state = 4}, + [442] = {.lex_state = 9, .external_lex_state = 2}, + [443] = {.lex_state = 9, .external_lex_state = 19}, + [444] = {.lex_state = 3, .external_lex_state = 4}, + [445] = {.lex_state = 43, .external_lex_state = 17}, + [446] = {.lex_state = 43, .external_lex_state = 17}, + [447] = {.lex_state = 37}, + [448] = {.lex_state = 43, .external_lex_state = 17}, + [449] = {.lex_state = 37, .external_lex_state = 21}, [450] = {.lex_state = 5, .external_lex_state = 5}, - [451] = {.lex_state = 5, .external_lex_state = 5}, - [452] = {.lex_state = 6, .external_lex_state = 9}, - [453] = {.lex_state = 6, .external_lex_state = 3}, + [451] = {.lex_state = 3, .external_lex_state = 4}, + [452] = {.lex_state = 5, .external_lex_state = 5}, + [453] = {.lex_state = 6, .external_lex_state = 9}, [454] = {.lex_state = 6, .external_lex_state = 3}, - [455] = {.lex_state = 3, .external_lex_state = 5}, - [456] = {.lex_state = 3, .external_lex_state = 4}, + [455] = {.lex_state = 6, .external_lex_state = 3}, + [456] = {.lex_state = 3, .external_lex_state = 5}, [457] = {.lex_state = 3, .external_lex_state = 4}, - [458] = {.lex_state = 5, .external_lex_state = 5}, - [459] = {.lex_state = 3, .external_lex_state = 4}, - [460] = {.lex_state = 3, .external_lex_state = 4}, - [461] = {.lex_state = 6, .external_lex_state = 3}, - [462] = {.lex_state = 4, .external_lex_state = 14}, - [463] = {.lex_state = 4, .external_lex_state = 14}, + [458] = {.lex_state = 3, .external_lex_state = 4}, + [459] = {.lex_state = 5, .external_lex_state = 5}, + [460] = {.lex_state = 5, .external_lex_state = 5}, + [461] = {.lex_state = 3, .external_lex_state = 4}, + [462] = {.lex_state = 5, .external_lex_state = 5}, + [463] = {.lex_state = 5, .external_lex_state = 5}, [464] = {.lex_state = 3, .external_lex_state = 4}, - [465] = {.lex_state = 3, .external_lex_state = 4}, - [466] = {.lex_state = 6, .external_lex_state = 3}, - [467] = {.lex_state = 3, .external_lex_state = 5}, + [465] = {.lex_state = 6, .external_lex_state = 3}, + [466] = {.lex_state = 4, .external_lex_state = 13}, + [467] = {.lex_state = 4, .external_lex_state = 13}, [468] = {.lex_state = 3, .external_lex_state = 4}, [469] = {.lex_state = 3, .external_lex_state = 4}, - [470] = {.lex_state = 3, .external_lex_state = 4}, - [471] = {.lex_state = 9, .external_lex_state = 2}, - [472] = {.lex_state = 9, .external_lex_state = 19}, - [473] = {.lex_state = 5, .external_lex_state = 4}, - [474] = {.lex_state = 5, .external_lex_state = 4}, - [475] = {.lex_state = 5, .external_lex_state = 5}, - [476] = {.lex_state = 5, .external_lex_state = 4}, + [470] = {.lex_state = 6, .external_lex_state = 3}, + [471] = {.lex_state = 3, .external_lex_state = 5}, + [472] = {.lex_state = 3, .external_lex_state = 4}, + [473] = {.lex_state = 3, .external_lex_state = 4}, + [474] = {.lex_state = 3, .external_lex_state = 4}, + [475] = {.lex_state = 9, .external_lex_state = 2}, + [476] = {.lex_state = 9, .external_lex_state = 19}, [477] = {.lex_state = 5, .external_lex_state = 4}, [478] = {.lex_state = 5, .external_lex_state = 5}, - [479] = {.lex_state = 43, .external_lex_state = 18}, - [480] = {.lex_state = 43, .external_lex_state = 18}, - [481] = {.lex_state = 43, .external_lex_state = 18}, + [479] = {.lex_state = 5, .external_lex_state = 4}, + [480] = {.lex_state = 5, .external_lex_state = 4}, + [481] = {.lex_state = 5, .external_lex_state = 4}, [482] = {.lex_state = 7, .external_lex_state = 4}, - [483] = {.lex_state = 3, .external_lex_state = 4}, - [484] = {.lex_state = 5, .external_lex_state = 5}, - [485] = {.lex_state = 5, .external_lex_state = 5}, - [486] = {.lex_state = 5, .external_lex_state = 5}, - [487] = {.lex_state = 6, .external_lex_state = 3}, - [488] = {.lex_state = 23, .external_lex_state = 13}, - [489] = {.lex_state = 23, .external_lex_state = 14}, - [490] = {.lex_state = 44, .external_lex_state = 23}, - [491] = {.lex_state = 44, .external_lex_state = 23}, - [492] = {.lex_state = 3, .external_lex_state = 4}, + [483] = {.lex_state = 43, .external_lex_state = 17}, + [484] = {.lex_state = 43, .external_lex_state = 17}, + [485] = {.lex_state = 43, .external_lex_state = 17}, + [486] = {.lex_state = 3, .external_lex_state = 4}, + [487] = {.lex_state = 5, .external_lex_state = 5}, + [488] = {.lex_state = 23, .external_lex_state = 12}, + [489] = {.lex_state = 6, .external_lex_state = 3}, + [490] = {.lex_state = 23, .external_lex_state = 13}, + [491] = {.lex_state = 44, .external_lex_state = 25}, + [492] = {.lex_state = 44, .external_lex_state = 25}, [493] = {.lex_state = 3, .external_lex_state = 4}, [494] = {.lex_state = 3, .external_lex_state = 4}, - [495] = {.lex_state = 4, .external_lex_state = 14}, - [496] = {.lex_state = 9, .external_lex_state = 2}, - [497] = {.lex_state = 4, .external_lex_state = 14}, + [495] = {.lex_state = 5, .external_lex_state = 5}, + [496] = {.lex_state = 5, .external_lex_state = 5}, + [497] = {.lex_state = 5, .external_lex_state = 5}, [498] = {.lex_state = 3, .external_lex_state = 4}, - [499] = {.lex_state = 9, .external_lex_state = 2}, - [500] = {.lex_state = 3, .external_lex_state = 4}, - [501] = {.lex_state = 3, .external_lex_state = 4}, + [499] = {.lex_state = 4, .external_lex_state = 13}, + [500] = {.lex_state = 9, .external_lex_state = 2}, + [501] = {.lex_state = 4, .external_lex_state = 13}, [502] = {.lex_state = 3, .external_lex_state = 4}, - [503] = {.lex_state = 5, .external_lex_state = 5}, - [504] = {.lex_state = 5, .external_lex_state = 5}, - [505] = {.lex_state = 5, .external_lex_state = 5}, - [506] = {.lex_state = 5, .external_lex_state = 5}, + [503] = {.lex_state = 9, .external_lex_state = 2}, + [504] = {.lex_state = 3, .external_lex_state = 4}, + [505] = {.lex_state = 3, .external_lex_state = 4}, + [506] = {.lex_state = 3, .external_lex_state = 4}, [507] = {.lex_state = 6, .external_lex_state = 3}, - [508] = {.lex_state = 23, .external_lex_state = 14}, - [509] = {.lex_state = 44, .external_lex_state = 15}, - [510] = {.lex_state = 44, .external_lex_state = 23}, - [511] = {.lex_state = 44, .external_lex_state = 15}, - [512] = {.lex_state = 44, .external_lex_state = 23}, + [508] = {.lex_state = 23, .external_lex_state = 13}, + [509] = {.lex_state = 44, .external_lex_state = 18}, + [510] = {.lex_state = 44, .external_lex_state = 25}, + [511] = {.lex_state = 44, .external_lex_state = 18}, + [512] = {.lex_state = 44, .external_lex_state = 25}, [513] = {.lex_state = 3, .external_lex_state = 4}, - [514] = {.lex_state = 4, .external_lex_state = 14}, - [515] = {.lex_state = 9, .external_lex_state = 2}, - [516] = {.lex_state = 3, .external_lex_state = 4}, - [517] = {.lex_state = 3, .external_lex_state = 4}, - [518] = {.lex_state = 3, .external_lex_state = 4}, - [519] = {.lex_state = 5, .external_lex_state = 5}, - [520] = {.lex_state = 5, .external_lex_state = 5}, - [521] = {.lex_state = 5, .external_lex_state = 5}, - [522] = {.lex_state = 5, .external_lex_state = 5}, - [523] = {.lex_state = 44, .external_lex_state = 15}, - [524] = {.lex_state = 44, .external_lex_state = 15}, + [514] = {.lex_state = 5, .external_lex_state = 5}, + [515] = {.lex_state = 5, .external_lex_state = 5}, + [516] = {.lex_state = 5, .external_lex_state = 5}, + [517] = {.lex_state = 5, .external_lex_state = 5}, + [518] = {.lex_state = 4, .external_lex_state = 13}, + [519] = {.lex_state = 9, .external_lex_state = 2}, + [520] = {.lex_state = 3, .external_lex_state = 4}, + [521] = {.lex_state = 3, .external_lex_state = 4}, + [522] = {.lex_state = 3, .external_lex_state = 4}, + [523] = {.lex_state = 44, .external_lex_state = 18}, + [524] = {.lex_state = 44, .external_lex_state = 18}, [525] = {.lex_state = 3, .external_lex_state = 4}, [526] = {.lex_state = 3, .external_lex_state = 4}, - [527] = {.lex_state = 3, .external_lex_state = 4}, - [528] = {.lex_state = 3, .external_lex_state = 4}, - [529] = {.lex_state = 3, .external_lex_state = 4}, + [527] = {.lex_state = 5, .external_lex_state = 5}, + [528] = {.lex_state = 5, .external_lex_state = 5}, + [529] = {.lex_state = 5, .external_lex_state = 5}, [530] = {.lex_state = 5, .external_lex_state = 5}, - [531] = {.lex_state = 5, .external_lex_state = 5}, + [531] = {.lex_state = 3, .external_lex_state = 4}, [532] = {.lex_state = 3, .external_lex_state = 4}, [533] = {.lex_state = 3, .external_lex_state = 4}, [534] = {.lex_state = 3, .external_lex_state = 4}, - [535] = {.lex_state = 3, .external_lex_state = 4}, - [536] = {.lex_state = 3, .external_lex_state = 4}, + [535] = {.lex_state = 5, .external_lex_state = 5}, + [536] = {.lex_state = 5, .external_lex_state = 5}, [537] = {.lex_state = 3, .external_lex_state = 4}, - [538] = {.lex_state = 1, .external_lex_state = 3}, - [539] = {.lex_state = 1, .external_lex_state = 4}, - [540] = {.lex_state = 24, .external_lex_state = 5}, - [541] = {.lex_state = 46, .external_lex_state = 2}, - [542] = {.lex_state = 24, .external_lex_state = 5}, - [543] = {.lex_state = 47, .external_lex_state = 8}, - [544] = {.lex_state = 3, .external_lex_state = 4}, - [545] = {.lex_state = 6, .external_lex_state = 3}, - [546] = {.lex_state = 9, .external_lex_state = 2}, - [547] = {.lex_state = 24, .external_lex_state = 4}, - [548] = {.lex_state = 24, .external_lex_state = 4}, - [549] = {.lex_state = 47, .external_lex_state = 2}, - [550] = {.lex_state = 5, .external_lex_state = 4}, - [551] = {.lex_state = 3, .external_lex_state = 5}, - [552] = {.lex_state = 3, .external_lex_state = 4}, - [553] = {.lex_state = 3, .external_lex_state = 4}, - [554] = {.lex_state = 25, .external_lex_state = 9}, - [555] = {.lex_state = 25, .external_lex_state = 3}, - [556] = {.lex_state = 1, .external_lex_state = 3}, - [557] = {.lex_state = 25, .external_lex_state = 5}, - [558] = {.lex_state = 25, .external_lex_state = 4}, - [559] = {.lex_state = 1, .external_lex_state = 4}, - [560] = {.lex_state = 47, .external_lex_state = 8}, - [561] = {.lex_state = 19, .external_lex_state = 30}, - [562] = {.lex_state = 37}, - [563] = {.lex_state = 19, .external_lex_state = 26}, + [538] = {.lex_state = 3, .external_lex_state = 4}, + [539] = {.lex_state = 3, .external_lex_state = 4}, + [540] = {.lex_state = 3, .external_lex_state = 4}, + [541] = {.lex_state = 3, .external_lex_state = 4}, + [542] = {.lex_state = 1, .external_lex_state = 3}, + [543] = {.lex_state = 1, .external_lex_state = 4}, + [544] = {.lex_state = 47, .external_lex_state = 8}, + [545] = {.lex_state = 24, .external_lex_state = 5}, + [546] = {.lex_state = 46, .external_lex_state = 2}, + [547] = {.lex_state = 24, .external_lex_state = 5}, + [548] = {.lex_state = 3, .external_lex_state = 4}, + [549] = {.lex_state = 6, .external_lex_state = 3}, + [550] = {.lex_state = 9, .external_lex_state = 2}, + [551] = {.lex_state = 24, .external_lex_state = 4}, + [552] = {.lex_state = 24, .external_lex_state = 4}, + [553] = {.lex_state = 47, .external_lex_state = 2}, + [554] = {.lex_state = 5, .external_lex_state = 4}, + [555] = {.lex_state = 3, .external_lex_state = 5}, + [556] = {.lex_state = 3, .external_lex_state = 4}, + [557] = {.lex_state = 3, .external_lex_state = 4}, + [558] = {.lex_state = 25, .external_lex_state = 9}, + [559] = {.lex_state = 25, .external_lex_state = 3}, + [560] = {.lex_state = 1, .external_lex_state = 3}, + [561] = {.lex_state = 25, .external_lex_state = 5}, + [562] = {.lex_state = 25, .external_lex_state = 4}, + [563] = {.lex_state = 1, .external_lex_state = 4}, [564] = {.lex_state = 47, .external_lex_state = 8}, - [565] = {.lex_state = 47, .external_lex_state = 8}, - [566] = {.lex_state = 47, .external_lex_state = 8}, - [567] = {.lex_state = 47, .external_lex_state = 8}, - [568] = {.lex_state = 9, .external_lex_state = 2}, - [569] = {.lex_state = 9, .external_lex_state = 19}, - [570] = {.lex_state = 9, .external_lex_state = 2}, - [571] = {.lex_state = 9, .external_lex_state = 2}, - [572] = {.lex_state = 3, .external_lex_state = 4}, - [573] = {.lex_state = 6, .external_lex_state = 3}, - [574] = {.lex_state = 47, .external_lex_state = 2}, - [575] = {.lex_state = 47, .external_lex_state = 2}, - [576] = {.lex_state = 5, .external_lex_state = 4}, - [577] = {.lex_state = 24, .external_lex_state = 5}, - [578] = {.lex_state = 47, .external_lex_state = 21}, - [579] = {.lex_state = 5, .external_lex_state = 4}, - [580] = {.lex_state = 24, .external_lex_state = 4}, - [581] = {.lex_state = 25, .external_lex_state = 3}, - [582] = {.lex_state = 25, .external_lex_state = 4}, - [583] = {.lex_state = 47, .external_lex_state = 8}, - [584] = {.lex_state = 19, .external_lex_state = 26}, - [585] = {.lex_state = 37}, - [586] = {.lex_state = 19, .external_lex_state = 26}, - [587] = {.lex_state = 37, .external_lex_state = 21}, + [565] = {.lex_state = 19, .external_lex_state = 30}, + [566] = {.lex_state = 37}, + [567] = {.lex_state = 37}, + [568] = {.lex_state = 19, .external_lex_state = 24}, + [569] = {.lex_state = 47, .external_lex_state = 8}, + [570] = {.lex_state = 47, .external_lex_state = 8}, + [571] = {.lex_state = 47, .external_lex_state = 8}, + [572] = {.lex_state = 47, .external_lex_state = 8}, + [573] = {.lex_state = 9, .external_lex_state = 2}, + [574] = {.lex_state = 9, .external_lex_state = 19}, + [575] = {.lex_state = 9, .external_lex_state = 2}, + [576] = {.lex_state = 9, .external_lex_state = 2}, + [577] = {.lex_state = 3, .external_lex_state = 4}, + [578] = {.lex_state = 6, .external_lex_state = 3}, + [579] = {.lex_state = 47, .external_lex_state = 2}, + [580] = {.lex_state = 47, .external_lex_state = 2}, + [581] = {.lex_state = 5, .external_lex_state = 4}, + [582] = {.lex_state = 24, .external_lex_state = 5}, + [583] = {.lex_state = 47, .external_lex_state = 21}, + [584] = {.lex_state = 5, .external_lex_state = 4}, + [585] = {.lex_state = 24, .external_lex_state = 4}, + [586] = {.lex_state = 25, .external_lex_state = 3}, + [587] = {.lex_state = 25, .external_lex_state = 4}, [588] = {.lex_state = 47, .external_lex_state = 8}, - [589] = {.lex_state = 47, .external_lex_state = 8}, + [589] = {.lex_state = 47}, [590] = {.lex_state = 47, .external_lex_state = 8}, [591] = {.lex_state = 47, .external_lex_state = 8}, - [592] = {.lex_state = 47}, - [593] = {.lex_state = 47, .external_lex_state = 8}, - [594] = {.lex_state = 47, .external_lex_state = 8}, - [595] = {.lex_state = 47, .external_lex_state = 8}, - [596] = {.lex_state = 1, .external_lex_state = 9}, - [597] = {.lex_state = 1, .external_lex_state = 3}, - [598] = {.lex_state = 1, .external_lex_state = 3}, - [599] = {.lex_state = 3, .external_lex_state = 5}, - [600] = {.lex_state = 3, .external_lex_state = 4}, - [601] = {.lex_state = 3, .external_lex_state = 4}, - [602] = {.lex_state = 47, .external_lex_state = 8}, - [603] = {.lex_state = 6, .external_lex_state = 3}, - [604] = {.lex_state = 4, .external_lex_state = 14}, - [605] = {.lex_state = 3, .external_lex_state = 4}, - [606] = {.lex_state = 6, .external_lex_state = 3}, - [607] = {.lex_state = 9, .external_lex_state = 2}, - [608] = {.lex_state = 9, .external_lex_state = 19}, - [609] = {.lex_state = 5, .external_lex_state = 4}, - [610] = {.lex_state = 24, .external_lex_state = 4}, - [611] = {.lex_state = 24, .external_lex_state = 5}, - [612] = {.lex_state = 24, .external_lex_state = 4}, - [613] = {.lex_state = 24, .external_lex_state = 4}, - [614] = {.lex_state = 47, .external_lex_state = 8}, - [615] = {.lex_state = 19, .external_lex_state = 26}, - [616] = {.lex_state = 19, .external_lex_state = 26}, - [617] = {.lex_state = 19, .external_lex_state = 26}, - [618] = {.lex_state = 33, .external_lex_state = 2}, - [619] = {.lex_state = 47, .external_lex_state = 8}, - [620] = {.lex_state = 47, .external_lex_state = 8}, - [621] = {.lex_state = 47, .external_lex_state = 8}, - [622] = {.lex_state = 1, .external_lex_state = 3}, - [623] = {.lex_state = 9, .external_lex_state = 2}, - [624] = {.lex_state = 4, .external_lex_state = 14}, - [625] = {.lex_state = 47, .external_lex_state = 8}, + [592] = {.lex_state = 19, .external_lex_state = 24}, + [593] = {.lex_state = 19, .external_lex_state = 24}, + [594] = {.lex_state = 37}, + [595] = {.lex_state = 19, .external_lex_state = 24}, + [596] = {.lex_state = 37, .external_lex_state = 21}, + [597] = {.lex_state = 47, .external_lex_state = 8}, + [598] = {.lex_state = 47, .external_lex_state = 8}, + [599] = {.lex_state = 1, .external_lex_state = 9}, + [600] = {.lex_state = 1, .external_lex_state = 3}, + [601] = {.lex_state = 1, .external_lex_state = 3}, + [602] = {.lex_state = 3, .external_lex_state = 5}, + [603] = {.lex_state = 3, .external_lex_state = 4}, + [604] = {.lex_state = 3, .external_lex_state = 4}, + [605] = {.lex_state = 47, .external_lex_state = 8}, + [606] = {.lex_state = 47, .external_lex_state = 8}, + [607] = {.lex_state = 47, .external_lex_state = 8}, + [608] = {.lex_state = 47, .external_lex_state = 8}, + [609] = {.lex_state = 6, .external_lex_state = 3}, + [610] = {.lex_state = 4, .external_lex_state = 13}, + [611] = {.lex_state = 3, .external_lex_state = 4}, + [612] = {.lex_state = 6, .external_lex_state = 3}, + [613] = {.lex_state = 9, .external_lex_state = 2}, + [614] = {.lex_state = 9, .external_lex_state = 19}, + [615] = {.lex_state = 5, .external_lex_state = 4}, + [616] = {.lex_state = 24, .external_lex_state = 5}, + [617] = {.lex_state = 24, .external_lex_state = 4}, + [618] = {.lex_state = 24, .external_lex_state = 4}, + [619] = {.lex_state = 24, .external_lex_state = 4}, + [620] = {.lex_state = 33, .external_lex_state = 2}, + [621] = {.lex_state = 19, .external_lex_state = 24}, + [622] = {.lex_state = 19, .external_lex_state = 24}, + [623] = {.lex_state = 19, .external_lex_state = 24}, + [624] = {.lex_state = 47, .external_lex_state = 8}, + [625] = {.lex_state = 1, .external_lex_state = 3}, [626] = {.lex_state = 47, .external_lex_state = 8}, [627] = {.lex_state = 47, .external_lex_state = 8}, [628] = {.lex_state = 47, .external_lex_state = 8}, - [629] = {.lex_state = 1, .external_lex_state = 3}, - [630] = {.lex_state = 9, .external_lex_state = 2}, - [631] = {.lex_state = 47, .external_lex_state = 8}, + [629] = {.lex_state = 9, .external_lex_state = 2}, + [630] = {.lex_state = 4, .external_lex_state = 13}, + [631] = {.lex_state = 1, .external_lex_state = 3}, [632] = {.lex_state = 47, .external_lex_state = 8}, [633] = {.lex_state = 47, .external_lex_state = 8}, [634] = {.lex_state = 47, .external_lex_state = 8}, [635] = {.lex_state = 47, .external_lex_state = 8}, - [636] = {.lex_state = 47, .external_lex_state = 8}, - [637] = {.lex_state = 25, .external_lex_state = 3}, - [638] = {.lex_state = 25, .external_lex_state = 4}, - [639] = {.lex_state = 1, .external_lex_state = 9}, - [640] = {.lex_state = 3, .external_lex_state = 4}, - [641] = {.lex_state = 26, .external_lex_state = 3}, - [642] = {.lex_state = 9, .external_lex_state = 2}, - [643] = {.lex_state = 24, .external_lex_state = 4}, - [644] = {.lex_state = 25, .external_lex_state = 3}, - [645] = {.lex_state = 25, .external_lex_state = 4}, - [646] = {.lex_state = 1, .external_lex_state = 9}, - [647] = {.lex_state = 1, .external_lex_state = 9}, - [648] = {.lex_state = 1, .external_lex_state = 9}, - [649] = {.lex_state = 1, .external_lex_state = 9}, - [650] = {.lex_state = 1, .external_lex_state = 9}, - [651] = {.lex_state = 9, .external_lex_state = 2}, - [652] = {.lex_state = 35, .external_lex_state = 19}, - [653] = {.lex_state = 35, .external_lex_state = 2}, - [654] = {.lex_state = 9, .external_lex_state = 2}, - [655] = {.lex_state = 3, .external_lex_state = 4}, - [656] = {.lex_state = 26, .external_lex_state = 3}, - [657] = {.lex_state = 1, .external_lex_state = 3}, - [658] = {.lex_state = 1, .external_lex_state = 3}, - [659] = {.lex_state = 24, .external_lex_state = 4}, - [660] = {.lex_state = 24, .external_lex_state = 4}, - [661] = {.lex_state = 1, .external_lex_state = 9}, - [662] = {.lex_state = 1, .external_lex_state = 9}, - [663] = {.lex_state = 1, .external_lex_state = 9}, - [664] = {.lex_state = 1, .external_lex_state = 9}, - [665] = {.lex_state = 1, .external_lex_state = 9}, - [666] = {.lex_state = 47}, + [636] = {.lex_state = 9, .external_lex_state = 2}, + [637] = {.lex_state = 47, .external_lex_state = 8}, + [638] = {.lex_state = 47, .external_lex_state = 8}, + [639] = {.lex_state = 47, .external_lex_state = 8}, + [640] = {.lex_state = 47, .external_lex_state = 8}, + [641] = {.lex_state = 47, .external_lex_state = 8}, + [642] = {.lex_state = 47, .external_lex_state = 8}, + [643] = {.lex_state = 25, .external_lex_state = 3}, + [644] = {.lex_state = 25, .external_lex_state = 4}, + [645] = {.lex_state = 1, .external_lex_state = 9}, + [646] = {.lex_state = 3, .external_lex_state = 4}, + [647] = {.lex_state = 26, .external_lex_state = 3}, + [648] = {.lex_state = 9, .external_lex_state = 2}, + [649] = {.lex_state = 24, .external_lex_state = 4}, + [650] = {.lex_state = 25, .external_lex_state = 3}, + [651] = {.lex_state = 25, .external_lex_state = 4}, + [652] = {.lex_state = 1, .external_lex_state = 9}, + [653] = {.lex_state = 1, .external_lex_state = 9}, + [654] = {.lex_state = 1, .external_lex_state = 9}, + [655] = {.lex_state = 1, .external_lex_state = 9}, + [656] = {.lex_state = 1, .external_lex_state = 9}, + [657] = {.lex_state = 9, .external_lex_state = 2}, + [658] = {.lex_state = 35, .external_lex_state = 19}, + [659] = {.lex_state = 35, .external_lex_state = 2}, + [660] = {.lex_state = 9, .external_lex_state = 2}, + [661] = {.lex_state = 3, .external_lex_state = 4}, + [662] = {.lex_state = 26, .external_lex_state = 3}, + [663] = {.lex_state = 1, .external_lex_state = 3}, + [664] = {.lex_state = 1, .external_lex_state = 3}, + [665] = {.lex_state = 24, .external_lex_state = 4}, + [666] = {.lex_state = 24, .external_lex_state = 4}, [667] = {.lex_state = 1, .external_lex_state = 9}, - [668] = {.lex_state = 1, .external_lex_state = 9}, + [668] = {.lex_state = 47}, [669] = {.lex_state = 1, .external_lex_state = 9}, - [670] = {.lex_state = 47, .external_lex_state = 8}, - [671] = {.lex_state = 47, .external_lex_state = 2}, - [672] = {.lex_state = 47, .external_lex_state = 2}, - [673] = {.lex_state = 1, .external_lex_state = 9}, - [674] = {.lex_state = 26, .external_lex_state = 3}, - [675] = {.lex_state = 4, .external_lex_state = 14}, - [676] = {.lex_state = 3, .external_lex_state = 4}, - [677] = {.lex_state = 26, .external_lex_state = 3}, - [678] = {.lex_state = 35, .external_lex_state = 2}, - [679] = {.lex_state = 35, .external_lex_state = 19}, - [680] = {.lex_state = 24, .external_lex_state = 4}, - [681] = {.lex_state = 1, .external_lex_state = 9}, - [682] = {.lex_state = 8, .external_lex_state = 3}, - [683] = {.lex_state = 1, .external_lex_state = 9}, - [684] = {.lex_state = 1, .external_lex_state = 9}, - [685] = {.lex_state = 1, .external_lex_state = 9}, - [686] = {.lex_state = 47, .external_lex_state = 2}, - [687] = {.lex_state = 35, .external_lex_state = 2}, - [688] = {.lex_state = 4, .external_lex_state = 14}, - [689] = {.lex_state = 1, .external_lex_state = 9}, + [670] = {.lex_state = 1, .external_lex_state = 9}, + [671] = {.lex_state = 1, .external_lex_state = 9}, + [672] = {.lex_state = 1, .external_lex_state = 9}, + [673] = {.lex_state = 47, .external_lex_state = 8}, + [674] = {.lex_state = 47, .external_lex_state = 2}, + [675] = {.lex_state = 47, .external_lex_state = 2}, + [676] = {.lex_state = 1, .external_lex_state = 9}, + [677] = {.lex_state = 1, .external_lex_state = 9}, + [678] = {.lex_state = 1, .external_lex_state = 9}, + [679] = {.lex_state = 1, .external_lex_state = 9}, + [680] = {.lex_state = 26, .external_lex_state = 3}, + [681] = {.lex_state = 4, .external_lex_state = 13}, + [682] = {.lex_state = 3, .external_lex_state = 4}, + [683] = {.lex_state = 26, .external_lex_state = 3}, + [684] = {.lex_state = 35, .external_lex_state = 2}, + [685] = {.lex_state = 35, .external_lex_state = 19}, + [686] = {.lex_state = 24, .external_lex_state = 4}, + [687] = {.lex_state = 8, .external_lex_state = 3}, + [688] = {.lex_state = 1, .external_lex_state = 9}, + [689] = {.lex_state = 47, .external_lex_state = 2}, [690] = {.lex_state = 1, .external_lex_state = 9}, [691] = {.lex_state = 1, .external_lex_state = 9}, [692] = {.lex_state = 1, .external_lex_state = 9}, - [693] = {.lex_state = 47, .external_lex_state = 2}, - [694] = {.lex_state = 35, .external_lex_state = 2}, - [695] = {.lex_state = 1, .external_lex_state = 9}, + [693] = {.lex_state = 35, .external_lex_state = 2}, + [694] = {.lex_state = 4, .external_lex_state = 13}, + [695] = {.lex_state = 47, .external_lex_state = 2}, [696] = {.lex_state = 1, .external_lex_state = 9}, [697] = {.lex_state = 1, .external_lex_state = 9}, [698] = {.lex_state = 1, .external_lex_state = 9}, [699] = {.lex_state = 1, .external_lex_state = 9}, - [700] = {.lex_state = 1, .external_lex_state = 9}, - [701] = {.lex_state = 1, .external_lex_state = 5}, - [702] = {.lex_state = 6, .external_lex_state = 3}, - [703] = {.lex_state = 1, .external_lex_state = 5}, - [704] = {.lex_state = 1, .external_lex_state = 5}, - [705] = {.lex_state = 1, .external_lex_state = 5}, - [706] = {.lex_state = 1, .external_lex_state = 5}, + [700] = {.lex_state = 35, .external_lex_state = 2}, + [701] = {.lex_state = 1, .external_lex_state = 9}, + [702] = {.lex_state = 1, .external_lex_state = 9}, + [703] = {.lex_state = 1, .external_lex_state = 9}, + [704] = {.lex_state = 1, .external_lex_state = 9}, + [705] = {.lex_state = 1, .external_lex_state = 9}, + [706] = {.lex_state = 1, .external_lex_state = 9}, [707] = {.lex_state = 1, .external_lex_state = 5}, - [708] = {.lex_state = 3, .external_lex_state = 4}, - [709] = {.lex_state = 6, .external_lex_state = 3}, - [710] = {.lex_state = 1, .external_lex_state = 4}, - [711] = {.lex_state = 1, .external_lex_state = 4}, + [708] = {.lex_state = 6, .external_lex_state = 3}, + [709] = {.lex_state = 1, .external_lex_state = 5}, + [710] = {.lex_state = 1, .external_lex_state = 5}, + [711] = {.lex_state = 1, .external_lex_state = 5}, [712] = {.lex_state = 1, .external_lex_state = 5}, [713] = {.lex_state = 1, .external_lex_state = 5}, - [714] = {.lex_state = 1, .external_lex_state = 5}, - [715] = {.lex_state = 1, .external_lex_state = 5}, - [716] = {.lex_state = 1, .external_lex_state = 5}, - [717] = {.lex_state = 47}, + [714] = {.lex_state = 3, .external_lex_state = 4}, + [715] = {.lex_state = 6, .external_lex_state = 3}, + [716] = {.lex_state = 1, .external_lex_state = 4}, + [717] = {.lex_state = 1, .external_lex_state = 4}, [718] = {.lex_state = 1, .external_lex_state = 5}, - [719] = {.lex_state = 1, .external_lex_state = 5}, + [719] = {.lex_state = 47}, [720] = {.lex_state = 1, .external_lex_state = 5}, - [721] = {.lex_state = 1, .external_lex_state = 9}, - [722] = {.lex_state = 1, .external_lex_state = 3}, - [723] = {.lex_state = 1, .external_lex_state = 3}, - [724] = {.lex_state = 1, .external_lex_state = 5}, - [725] = {.lex_state = 1, .external_lex_state = 5}, - [726] = {.lex_state = 8, .external_lex_state = 4}, + [721] = {.lex_state = 1, .external_lex_state = 5}, + [722] = {.lex_state = 1, .external_lex_state = 5}, + [723] = {.lex_state = 1, .external_lex_state = 5}, + [724] = {.lex_state = 1, .external_lex_state = 9}, + [725] = {.lex_state = 1, .external_lex_state = 3}, + [726] = {.lex_state = 1, .external_lex_state = 3}, [727] = {.lex_state = 1, .external_lex_state = 5}, [728] = {.lex_state = 1, .external_lex_state = 5}, [729] = {.lex_state = 1, .external_lex_state = 5}, - [730] = {.lex_state = 1, .external_lex_state = 3}, - [731] = {.lex_state = 1, .external_lex_state = 5}, + [730] = {.lex_state = 1, .external_lex_state = 5}, + [731] = {.lex_state = 8, .external_lex_state = 4}, [732] = {.lex_state = 1, .external_lex_state = 5}, - [733] = {.lex_state = 1, .external_lex_state = 5}, + [733] = {.lex_state = 1, .external_lex_state = 3}, [734] = {.lex_state = 1, .external_lex_state = 5}, - [735] = {.lex_state = 1, .external_lex_state = 3}, + [735] = {.lex_state = 1, .external_lex_state = 5}, [736] = {.lex_state = 1, .external_lex_state = 5}, - [737] = {.lex_state = 1, .external_lex_state = 5}, + [737] = {.lex_state = 1, .external_lex_state = 3}, [738] = {.lex_state = 1, .external_lex_state = 5}, [739] = {.lex_state = 1, .external_lex_state = 5}, [740] = {.lex_state = 1, .external_lex_state = 5}, [741] = {.lex_state = 1, .external_lex_state = 5}, - [742] = {.lex_state = 41, .external_lex_state = 11}, - [743] = {.lex_state = 41, .external_lex_state = 11}, - [744] = {.lex_state = 41, .external_lex_state = 11}, - [745] = {.lex_state = 51, .external_lex_state = 10}, - [746] = {.lex_state = 51, .external_lex_state = 10}, - [747] = {.lex_state = 41, .external_lex_state = 11}, - [748] = {.lex_state = 41, .external_lex_state = 12}, - [749] = {.lex_state = 41, .external_lex_state = 12}, - [750] = {.lex_state = 41, .external_lex_state = 11}, - [751] = {.lex_state = 51, .external_lex_state = 10}, - [752] = {.lex_state = 51, .external_lex_state = 10}, - [753] = {.lex_state = 41, .external_lex_state = 11}, + [742] = {.lex_state = 1, .external_lex_state = 5}, + [743] = {.lex_state = 1, .external_lex_state = 5}, + [744] = {.lex_state = 1, .external_lex_state = 5}, + [745] = {.lex_state = 1, .external_lex_state = 5}, + [746] = {.lex_state = 1, .external_lex_state = 5}, + [747] = {.lex_state = 1, .external_lex_state = 5}, + [748] = {.lex_state = 41, .external_lex_state = 10}, + [749] = {.lex_state = 41, .external_lex_state = 10}, + [750] = {.lex_state = 41, .external_lex_state = 10}, + [751] = {.lex_state = 41, .external_lex_state = 10}, + [752] = {.lex_state = 41, .external_lex_state = 10}, + [753] = {.lex_state = 41, .external_lex_state = 10}, [754] = {.lex_state = 41, .external_lex_state = 11}, - [755] = {.lex_state = 47}, - [756] = {.lex_state = 41, .external_lex_state = 11}, - [757] = {.lex_state = 51, .external_lex_state = 10}, - [758] = {.lex_state = 51, .external_lex_state = 10}, - [759] = {.lex_state = 4, .external_lex_state = 13}, - [760] = {.lex_state = 4, .external_lex_state = 14}, - [761] = {.lex_state = 4, .external_lex_state = 14}, - [762] = {.lex_state = 51, .external_lex_state = 10}, - [763] = {.lex_state = 41, .external_lex_state = 11}, - [764] = {.lex_state = 38, .external_lex_state = 12}, - [765] = {.lex_state = 51, .external_lex_state = 10}, - [766] = {.lex_state = 51, .external_lex_state = 10}, - [767] = {.lex_state = 51, .external_lex_state = 10}, - [768] = {.lex_state = 4, .external_lex_state = 14}, - [769] = {.lex_state = 51, .external_lex_state = 10}, - [770] = {.lex_state = 51, .external_lex_state = 10}, - [771] = {.lex_state = 51, .external_lex_state = 10}, - [772] = {.lex_state = 51, .external_lex_state = 10}, - [773] = {.lex_state = 4, .external_lex_state = 14}, - [774] = {.lex_state = 51, .external_lex_state = 10}, - [775] = {.lex_state = 51, .external_lex_state = 10}, - [776] = {.lex_state = 51, .external_lex_state = 10}, - [777] = {.lex_state = 51, .external_lex_state = 10}, - [778] = {.lex_state = 51, .external_lex_state = 10}, - [779] = {.lex_state = 51, .external_lex_state = 10}, - [780] = {.lex_state = 4, .external_lex_state = 13}, - [781] = {.lex_state = 4, .external_lex_state = 13}, - [782] = {.lex_state = 4, .external_lex_state = 13}, - [783] = {.lex_state = 41, .external_lex_state = 11}, - [784] = {.lex_state = 41, .external_lex_state = 11}, - [785] = {.lex_state = 4, .external_lex_state = 13}, - [786] = {.lex_state = 4, .external_lex_state = 14}, - [787] = {.lex_state = 4, .external_lex_state = 14}, - [788] = {.lex_state = 4, .external_lex_state = 13}, - [789] = {.lex_state = 41, .external_lex_state = 11}, - [790] = {.lex_state = 41, .external_lex_state = 11}, - [791] = {.lex_state = 4, .external_lex_state = 13}, + [755] = {.lex_state = 41, .external_lex_state = 11}, + [756] = {.lex_state = 41, .external_lex_state = 10}, + [757] = {.lex_state = 47}, + [758] = {.lex_state = 41, .external_lex_state = 10}, + [759] = {.lex_state = 41, .external_lex_state = 10}, + [760] = {.lex_state = 41, .external_lex_state = 10}, + [761] = {.lex_state = 41, .external_lex_state = 10}, + [762] = {.lex_state = 4, .external_lex_state = 12}, + [763] = {.lex_state = 4, .external_lex_state = 13}, + [764] = {.lex_state = 4, .external_lex_state = 13}, + [765] = {.lex_state = 41, .external_lex_state = 10}, + [766] = {.lex_state = 41, .external_lex_state = 10}, + [767] = {.lex_state = 41, .external_lex_state = 10}, + [768] = {.lex_state = 41, .external_lex_state = 10}, + [769] = {.lex_state = 38, .external_lex_state = 11}, + [770] = {.lex_state = 41, .external_lex_state = 10}, + [771] = {.lex_state = 4, .external_lex_state = 13}, + [772] = {.lex_state = 41, .external_lex_state = 10}, + [773] = {.lex_state = 41, .external_lex_state = 10}, + [774] = {.lex_state = 41, .external_lex_state = 10}, + [775] = {.lex_state = 4, .external_lex_state = 13}, + [776] = {.lex_state = 41, .external_lex_state = 10}, + [777] = {.lex_state = 41, .external_lex_state = 10}, + [778] = {.lex_state = 41, .external_lex_state = 10}, + [779] = {.lex_state = 41, .external_lex_state = 10}, + [780] = {.lex_state = 41, .external_lex_state = 10}, + [781] = {.lex_state = 41, .external_lex_state = 10}, + [782] = {.lex_state = 41, .external_lex_state = 10}, + [783] = {.lex_state = 41, .external_lex_state = 10}, + [784] = {.lex_state = 41, .external_lex_state = 10}, + [785] = {.lex_state = 41, .external_lex_state = 10}, + [786] = {.lex_state = 4, .external_lex_state = 12}, + [787] = {.lex_state = 4, .external_lex_state = 12}, + [788] = {.lex_state = 4, .external_lex_state = 12}, + [789] = {.lex_state = 4, .external_lex_state = 12}, + [790] = {.lex_state = 4, .external_lex_state = 12}, + [791] = {.lex_state = 4, .external_lex_state = 12}, [792] = {.lex_state = 4, .external_lex_state = 13}, - [793] = {.lex_state = 47}, - [794] = {.lex_state = 4, .external_lex_state = 13}, - [795] = {.lex_state = 41, .external_lex_state = 11}, - [796] = {.lex_state = 41, .external_lex_state = 11}, - [797] = {.lex_state = 26, .external_lex_state = 9}, - [798] = {.lex_state = 26, .external_lex_state = 3}, - [799] = {.lex_state = 26, .external_lex_state = 3}, - [800] = {.lex_state = 41, .external_lex_state = 11}, - [801] = {.lex_state = 4, .external_lex_state = 13}, - [802] = {.lex_state = 15, .external_lex_state = 14}, - [803] = {.lex_state = 41, .external_lex_state = 11}, - [804] = {.lex_state = 41, .external_lex_state = 11}, - [805] = {.lex_state = 41, .external_lex_state = 11}, - [806] = {.lex_state = 26, .external_lex_state = 3}, - [807] = {.lex_state = 41, .external_lex_state = 11}, - [808] = {.lex_state = 41, .external_lex_state = 11}, - [809] = {.lex_state = 41, .external_lex_state = 11}, - [810] = {.lex_state = 41, .external_lex_state = 11}, - [811] = {.lex_state = 26, .external_lex_state = 3}, - [812] = {.lex_state = 41, .external_lex_state = 11}, - [813] = {.lex_state = 41, .external_lex_state = 11}, - [814] = {.lex_state = 41, .external_lex_state = 11}, - [815] = {.lex_state = 41, .external_lex_state = 11}, - [816] = {.lex_state = 41, .external_lex_state = 11}, - [817] = {.lex_state = 41, .external_lex_state = 11}, - [818] = {.lex_state = 43, .external_lex_state = 29}, - [819] = {.lex_state = 43, .external_lex_state = 29}, - [820] = {.lex_state = 43, .external_lex_state = 29}, - [821] = {.lex_state = 4, .external_lex_state = 13}, - [822] = {.lex_state = 4, .external_lex_state = 13}, - [823] = {.lex_state = 43, .external_lex_state = 29}, - [824] = {.lex_state = 43, .external_lex_state = 18}, - [825] = {.lex_state = 43, .external_lex_state = 18}, + [793] = {.lex_state = 4, .external_lex_state = 13}, + [794] = {.lex_state = 4, .external_lex_state = 12}, + [795] = {.lex_state = 47}, + [796] = {.lex_state = 4, .external_lex_state = 12}, + [797] = {.lex_state = 4, .external_lex_state = 12}, + [798] = {.lex_state = 4, .external_lex_state = 12}, + [799] = {.lex_state = 4, .external_lex_state = 12}, + [800] = {.lex_state = 26, .external_lex_state = 9}, + [801] = {.lex_state = 26, .external_lex_state = 3}, + [802] = {.lex_state = 26, .external_lex_state = 3}, + [803] = {.lex_state = 4, .external_lex_state = 12}, + [804] = {.lex_state = 4, .external_lex_state = 12}, + [805] = {.lex_state = 4, .external_lex_state = 12}, + [806] = {.lex_state = 4, .external_lex_state = 12}, + [807] = {.lex_state = 15, .external_lex_state = 13}, + [808] = {.lex_state = 4, .external_lex_state = 12}, + [809] = {.lex_state = 26, .external_lex_state = 3}, + [810] = {.lex_state = 4, .external_lex_state = 12}, + [811] = {.lex_state = 4, .external_lex_state = 12}, + [812] = {.lex_state = 4, .external_lex_state = 12}, + [813] = {.lex_state = 26, .external_lex_state = 3}, + [814] = {.lex_state = 4, .external_lex_state = 12}, + [815] = {.lex_state = 4, .external_lex_state = 12}, + [816] = {.lex_state = 4, .external_lex_state = 12}, + [817] = {.lex_state = 4, .external_lex_state = 12}, + [818] = {.lex_state = 4, .external_lex_state = 12}, + [819] = {.lex_state = 4, .external_lex_state = 12}, + [820] = {.lex_state = 4, .external_lex_state = 12}, + [821] = {.lex_state = 4, .external_lex_state = 12}, + [822] = {.lex_state = 4, .external_lex_state = 12}, + [823] = {.lex_state = 4, .external_lex_state = 12}, + [824] = {.lex_state = 43, .external_lex_state = 29}, + [825] = {.lex_state = 43, .external_lex_state = 29}, [826] = {.lex_state = 43, .external_lex_state = 29}, - [827] = {.lex_state = 4, .external_lex_state = 13}, - [828] = {.lex_state = 4, .external_lex_state = 13}, + [827] = {.lex_state = 51, .external_lex_state = 14}, + [828] = {.lex_state = 51, .external_lex_state = 14}, [829] = {.lex_state = 43, .external_lex_state = 29}, - [830] = {.lex_state = 43, .external_lex_state = 29}, - [831] = {.lex_state = 47}, + [830] = {.lex_state = 43, .external_lex_state = 17}, + [831] = {.lex_state = 43, .external_lex_state = 17}, [832] = {.lex_state = 43, .external_lex_state = 29}, - [833] = {.lex_state = 4, .external_lex_state = 13}, - [834] = {.lex_state = 4, .external_lex_state = 13}, - [835] = {.lex_state = 25, .external_lex_state = 9}, - [836] = {.lex_state = 25, .external_lex_state = 3}, - [837] = {.lex_state = 25, .external_lex_state = 3}, - [838] = {.lex_state = 4, .external_lex_state = 13}, - [839] = {.lex_state = 43, .external_lex_state = 29}, - [840] = {.lex_state = 39, .external_lex_state = 18}, - [841] = {.lex_state = 4, .external_lex_state = 13}, - [842] = {.lex_state = 4, .external_lex_state = 13}, - [843] = {.lex_state = 4, .external_lex_state = 13}, - [844] = {.lex_state = 25, .external_lex_state = 3}, - [845] = {.lex_state = 4, .external_lex_state = 13}, - [846] = {.lex_state = 4, .external_lex_state = 13}, - [847] = {.lex_state = 4, .external_lex_state = 13}, - [848] = {.lex_state = 4, .external_lex_state = 13}, - [849] = {.lex_state = 25, .external_lex_state = 3}, - [850] = {.lex_state = 4, .external_lex_state = 13}, - [851] = {.lex_state = 4, .external_lex_state = 13}, - [852] = {.lex_state = 4, .external_lex_state = 13}, - [853] = {.lex_state = 4, .external_lex_state = 13}, - [854] = {.lex_state = 4, .external_lex_state = 13}, - [855] = {.lex_state = 4, .external_lex_state = 13}, - [856] = {.lex_state = 1, .external_lex_state = 9}, - [857] = {.lex_state = 1, .external_lex_state = 9}, - [858] = {.lex_state = 1, .external_lex_state = 9}, - [859] = {.lex_state = 43, .external_lex_state = 29}, - [860] = {.lex_state = 43, .external_lex_state = 29}, - [861] = {.lex_state = 1, .external_lex_state = 9}, - [862] = {.lex_state = 1, .external_lex_state = 3}, - [863] = {.lex_state = 1, .external_lex_state = 3}, + [833] = {.lex_state = 47}, + [834] = {.lex_state = 43, .external_lex_state = 29}, + [835] = {.lex_state = 51, .external_lex_state = 14}, + [836] = {.lex_state = 51, .external_lex_state = 14}, + [837] = {.lex_state = 43, .external_lex_state = 29}, + [838] = {.lex_state = 25, .external_lex_state = 9}, + [839] = {.lex_state = 25, .external_lex_state = 3}, + [840] = {.lex_state = 25, .external_lex_state = 3}, + [841] = {.lex_state = 43, .external_lex_state = 29}, + [842] = {.lex_state = 51, .external_lex_state = 14}, + [843] = {.lex_state = 51, .external_lex_state = 14}, + [844] = {.lex_state = 51, .external_lex_state = 14}, + [845] = {.lex_state = 39, .external_lex_state = 17}, + [846] = {.lex_state = 43, .external_lex_state = 29}, + [847] = {.lex_state = 25, .external_lex_state = 3}, + [848] = {.lex_state = 51, .external_lex_state = 14}, + [849] = {.lex_state = 51, .external_lex_state = 14}, + [850] = {.lex_state = 51, .external_lex_state = 14}, + [851] = {.lex_state = 25, .external_lex_state = 3}, + [852] = {.lex_state = 51, .external_lex_state = 14}, + [853] = {.lex_state = 51, .external_lex_state = 14}, + [854] = {.lex_state = 51, .external_lex_state = 14}, + [855] = {.lex_state = 51, .external_lex_state = 14}, + [856] = {.lex_state = 51, .external_lex_state = 14}, + [857] = {.lex_state = 51, .external_lex_state = 14}, + [858] = {.lex_state = 51, .external_lex_state = 14}, + [859] = {.lex_state = 51, .external_lex_state = 14}, + [860] = {.lex_state = 51, .external_lex_state = 14}, + [861] = {.lex_state = 51, .external_lex_state = 14}, + [862] = {.lex_state = 1, .external_lex_state = 9}, + [863] = {.lex_state = 1, .external_lex_state = 9}, [864] = {.lex_state = 1, .external_lex_state = 9}, [865] = {.lex_state = 43, .external_lex_state = 29}, [866] = {.lex_state = 43, .external_lex_state = 29}, [867] = {.lex_state = 1, .external_lex_state = 9}, - [868] = {.lex_state = 1, .external_lex_state = 9}, - [869] = {.lex_state = 47}, + [868] = {.lex_state = 1, .external_lex_state = 3}, + [869] = {.lex_state = 1, .external_lex_state = 3}, [870] = {.lex_state = 1, .external_lex_state = 9}, - [871] = {.lex_state = 43, .external_lex_state = 29}, - [872] = {.lex_state = 43, .external_lex_state = 29}, + [871] = {.lex_state = 47}, + [872] = {.lex_state = 1, .external_lex_state = 9}, [873] = {.lex_state = 43, .external_lex_state = 29}, - [874] = {.lex_state = 1, .external_lex_state = 9}, - [875] = {.lex_state = 8, .external_lex_state = 3}, - [876] = {.lex_state = 43, .external_lex_state = 29}, + [874] = {.lex_state = 43, .external_lex_state = 29}, + [875] = {.lex_state = 1, .external_lex_state = 9}, + [876] = {.lex_state = 1, .external_lex_state = 9}, [877] = {.lex_state = 43, .external_lex_state = 29}, [878] = {.lex_state = 43, .external_lex_state = 29}, [879] = {.lex_state = 43, .external_lex_state = 29}, - [880] = {.lex_state = 43, .external_lex_state = 29}, - [881] = {.lex_state = 43, .external_lex_state = 29}, + [880] = {.lex_state = 8, .external_lex_state = 3}, + [881] = {.lex_state = 1, .external_lex_state = 9}, [882] = {.lex_state = 43, .external_lex_state = 29}, [883] = {.lex_state = 43, .external_lex_state = 29}, [884] = {.lex_state = 43, .external_lex_state = 29}, @@ -5318,32 +5224,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [886] = {.lex_state = 43, .external_lex_state = 29}, [887] = {.lex_state = 43, .external_lex_state = 29}, [888] = {.lex_state = 43, .external_lex_state = 29}, - [889] = {.lex_state = 1, .external_lex_state = 5}, - [890] = {.lex_state = 1, .external_lex_state = 5}, - [891] = {.lex_state = 1, .external_lex_state = 5}, - [892] = {.lex_state = 1, .external_lex_state = 9}, - [893] = {.lex_state = 1, .external_lex_state = 9}, - [894] = {.lex_state = 1, .external_lex_state = 5}, - [895] = {.lex_state = 1, .external_lex_state = 4}, - [896] = {.lex_state = 1, .external_lex_state = 4}, + [889] = {.lex_state = 43, .external_lex_state = 29}, + [890] = {.lex_state = 43, .external_lex_state = 29}, + [891] = {.lex_state = 43, .external_lex_state = 29}, + [892] = {.lex_state = 43, .external_lex_state = 29}, + [893] = {.lex_state = 43, .external_lex_state = 29}, + [894] = {.lex_state = 43, .external_lex_state = 29}, + [895] = {.lex_state = 1, .external_lex_state = 5}, + [896] = {.lex_state = 1, .external_lex_state = 5}, [897] = {.lex_state = 1, .external_lex_state = 5}, [898] = {.lex_state = 1, .external_lex_state = 9}, [899] = {.lex_state = 1, .external_lex_state = 9}, [900] = {.lex_state = 1, .external_lex_state = 5}, - [901] = {.lex_state = 1, .external_lex_state = 5}, - [902] = {.lex_state = 47}, + [901] = {.lex_state = 1, .external_lex_state = 4}, + [902] = {.lex_state = 1, .external_lex_state = 4}, [903] = {.lex_state = 1, .external_lex_state = 5}, - [904] = {.lex_state = 1, .external_lex_state = 9}, - [905] = {.lex_state = 1, .external_lex_state = 9}, + [904] = {.lex_state = 47}, + [905] = {.lex_state = 1, .external_lex_state = 5}, [906] = {.lex_state = 1, .external_lex_state = 9}, - [907] = {.lex_state = 1, .external_lex_state = 5}, - [908] = {.lex_state = 8, .external_lex_state = 4}, - [909] = {.lex_state = 1, .external_lex_state = 9}, + [907] = {.lex_state = 1, .external_lex_state = 9}, + [908] = {.lex_state = 1, .external_lex_state = 5}, + [909] = {.lex_state = 1, .external_lex_state = 5}, [910] = {.lex_state = 1, .external_lex_state = 9}, [911] = {.lex_state = 1, .external_lex_state = 9}, [912] = {.lex_state = 1, .external_lex_state = 9}, - [913] = {.lex_state = 1, .external_lex_state = 9}, - [914] = {.lex_state = 1, .external_lex_state = 9}, + [913] = {.lex_state = 8, .external_lex_state = 4}, + [914] = {.lex_state = 1, .external_lex_state = 5}, [915] = {.lex_state = 1, .external_lex_state = 9}, [916] = {.lex_state = 1, .external_lex_state = 9}, [917] = {.lex_state = 1, .external_lex_state = 9}, @@ -5351,32 +5257,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [919] = {.lex_state = 1, .external_lex_state = 9}, [920] = {.lex_state = 1, .external_lex_state = 9}, [921] = {.lex_state = 1, .external_lex_state = 9}, - [922] = {.lex_state = 45, .external_lex_state = 23}, - [923] = {.lex_state = 45, .external_lex_state = 23}, - [924] = {.lex_state = 45, .external_lex_state = 23}, - [925] = {.lex_state = 1, .external_lex_state = 5}, - [926] = {.lex_state = 1, .external_lex_state = 5}, - [927] = {.lex_state = 45, .external_lex_state = 23}, - [928] = {.lex_state = 45, .external_lex_state = 15}, - [929] = {.lex_state = 45, .external_lex_state = 15}, - [930] = {.lex_state = 45, .external_lex_state = 23}, + [922] = {.lex_state = 1, .external_lex_state = 9}, + [923] = {.lex_state = 1, .external_lex_state = 9}, + [924] = {.lex_state = 1, .external_lex_state = 9}, + [925] = {.lex_state = 1, .external_lex_state = 9}, + [926] = {.lex_state = 1, .external_lex_state = 9}, + [927] = {.lex_state = 1, .external_lex_state = 9}, + [928] = {.lex_state = 6, .external_lex_state = 9}, + [929] = {.lex_state = 6, .external_lex_state = 9}, + [930] = {.lex_state = 6, .external_lex_state = 9}, [931] = {.lex_state = 1, .external_lex_state = 5}, [932] = {.lex_state = 1, .external_lex_state = 5}, - [933] = {.lex_state = 45, .external_lex_state = 23}, - [934] = {.lex_state = 45, .external_lex_state = 23}, - [935] = {.lex_state = 47}, - [936] = {.lex_state = 45, .external_lex_state = 23}, - [937] = {.lex_state = 1, .external_lex_state = 5}, - [938] = {.lex_state = 1, .external_lex_state = 5}, + [933] = {.lex_state = 6, .external_lex_state = 9}, + [934] = {.lex_state = 6, .external_lex_state = 3}, + [935] = {.lex_state = 6, .external_lex_state = 3}, + [936] = {.lex_state = 6, .external_lex_state = 9}, + [937] = {.lex_state = 47}, + [938] = {.lex_state = 6, .external_lex_state = 9}, [939] = {.lex_state = 1, .external_lex_state = 5}, - [940] = {.lex_state = 45, .external_lex_state = 23}, - [941] = {.lex_state = 32, .external_lex_state = 15}, - [942] = {.lex_state = 1, .external_lex_state = 5}, + [940] = {.lex_state = 1, .external_lex_state = 5}, + [941] = {.lex_state = 6, .external_lex_state = 9}, + [942] = {.lex_state = 6, .external_lex_state = 9}, [943] = {.lex_state = 1, .external_lex_state = 5}, [944] = {.lex_state = 1, .external_lex_state = 5}, [945] = {.lex_state = 1, .external_lex_state = 5}, - [946] = {.lex_state = 1, .external_lex_state = 5}, - [947] = {.lex_state = 1, .external_lex_state = 5}, + [946] = {.lex_state = 8, .external_lex_state = 3}, + [947] = {.lex_state = 6, .external_lex_state = 9}, [948] = {.lex_state = 1, .external_lex_state = 5}, [949] = {.lex_state = 1, .external_lex_state = 5}, [950] = {.lex_state = 1, .external_lex_state = 5}, @@ -5384,164 +5290,164 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [952] = {.lex_state = 1, .external_lex_state = 5}, [953] = {.lex_state = 1, .external_lex_state = 5}, [954] = {.lex_state = 1, .external_lex_state = 5}, - [955] = {.lex_state = 6, .external_lex_state = 9}, - [956] = {.lex_state = 6, .external_lex_state = 9}, - [957] = {.lex_state = 6, .external_lex_state = 9}, - [958] = {.lex_state = 45, .external_lex_state = 23}, - [959] = {.lex_state = 45, .external_lex_state = 23}, - [960] = {.lex_state = 6, .external_lex_state = 9}, - [961] = {.lex_state = 6, .external_lex_state = 3}, - [962] = {.lex_state = 6, .external_lex_state = 3}, - [963] = {.lex_state = 6, .external_lex_state = 9}, - [964] = {.lex_state = 45, .external_lex_state = 23}, - [965] = {.lex_state = 45, .external_lex_state = 23}, - [966] = {.lex_state = 6, .external_lex_state = 9}, - [967] = {.lex_state = 6, .external_lex_state = 9}, - [968] = {.lex_state = 47}, - [969] = {.lex_state = 6, .external_lex_state = 9}, - [970] = {.lex_state = 45, .external_lex_state = 23}, - [971] = {.lex_state = 45, .external_lex_state = 23}, - [972] = {.lex_state = 45, .external_lex_state = 23}, + [955] = {.lex_state = 1, .external_lex_state = 5}, + [956] = {.lex_state = 1, .external_lex_state = 5}, + [957] = {.lex_state = 1, .external_lex_state = 5}, + [958] = {.lex_state = 1, .external_lex_state = 5}, + [959] = {.lex_state = 1, .external_lex_state = 5}, + [960] = {.lex_state = 1, .external_lex_state = 5}, + [961] = {.lex_state = 43, .external_lex_state = 23}, + [962] = {.lex_state = 52, .external_lex_state = 23}, + [963] = {.lex_state = 52, .external_lex_state = 23}, + [964] = {.lex_state = 6, .external_lex_state = 9}, + [965] = {.lex_state = 6, .external_lex_state = 9}, + [966] = {.lex_state = 52, .external_lex_state = 23}, + [967] = {.lex_state = 43, .external_lex_state = 23}, + [968] = {.lex_state = 43, .external_lex_state = 23}, + [969] = {.lex_state = 52, .external_lex_state = 23}, + [970] = {.lex_state = 47}, + [971] = {.lex_state = 52, .external_lex_state = 23}, + [972] = {.lex_state = 6, .external_lex_state = 9}, [973] = {.lex_state = 6, .external_lex_state = 9}, - [974] = {.lex_state = 8, .external_lex_state = 3}, - [975] = {.lex_state = 45, .external_lex_state = 23}, - [976] = {.lex_state = 45, .external_lex_state = 23}, - [977] = {.lex_state = 45, .external_lex_state = 23}, - [978] = {.lex_state = 45, .external_lex_state = 23}, - [979] = {.lex_state = 45, .external_lex_state = 23}, - [980] = {.lex_state = 45, .external_lex_state = 23}, - [981] = {.lex_state = 45, .external_lex_state = 23}, - [982] = {.lex_state = 45, .external_lex_state = 23}, - [983] = {.lex_state = 45, .external_lex_state = 23}, - [984] = {.lex_state = 45, .external_lex_state = 23}, - [985] = {.lex_state = 45, .external_lex_state = 23}, - [986] = {.lex_state = 45, .external_lex_state = 23}, - [987] = {.lex_state = 45, .external_lex_state = 23}, - [988] = {.lex_state = 43, .external_lex_state = 25}, - [989] = {.lex_state = 52, .external_lex_state = 25}, - [990] = {.lex_state = 52, .external_lex_state = 25}, + [974] = {.lex_state = 52, .external_lex_state = 23}, + [975] = {.lex_state = 52, .external_lex_state = 23}, + [976] = {.lex_state = 6, .external_lex_state = 9}, + [977] = {.lex_state = 6, .external_lex_state = 9}, + [978] = {.lex_state = 6, .external_lex_state = 9}, + [979] = {.lex_state = 39, .external_lex_state = 23}, + [980] = {.lex_state = 52, .external_lex_state = 23}, + [981] = {.lex_state = 6, .external_lex_state = 9}, + [982] = {.lex_state = 6, .external_lex_state = 9}, + [983] = {.lex_state = 6, .external_lex_state = 9}, + [984] = {.lex_state = 6, .external_lex_state = 9}, + [985] = {.lex_state = 6, .external_lex_state = 9}, + [986] = {.lex_state = 6, .external_lex_state = 9}, + [987] = {.lex_state = 6, .external_lex_state = 9}, + [988] = {.lex_state = 6, .external_lex_state = 9}, + [989] = {.lex_state = 6, .external_lex_state = 9}, + [990] = {.lex_state = 6, .external_lex_state = 9}, [991] = {.lex_state = 6, .external_lex_state = 9}, [992] = {.lex_state = 6, .external_lex_state = 9}, - [993] = {.lex_state = 52, .external_lex_state = 25}, - [994] = {.lex_state = 43, .external_lex_state = 25}, - [995] = {.lex_state = 43, .external_lex_state = 25}, - [996] = {.lex_state = 52, .external_lex_state = 25}, - [997] = {.lex_state = 6, .external_lex_state = 9}, - [998] = {.lex_state = 6, .external_lex_state = 9}, - [999] = {.lex_state = 52, .external_lex_state = 25}, - [1000] = {.lex_state = 52, .external_lex_state = 25}, - [1001] = {.lex_state = 47}, - [1002] = {.lex_state = 52, .external_lex_state = 25}, - [1003] = {.lex_state = 6, .external_lex_state = 9}, - [1004] = {.lex_state = 6, .external_lex_state = 9}, - [1005] = {.lex_state = 6, .external_lex_state = 9}, - [1006] = {.lex_state = 52, .external_lex_state = 25}, - [1007] = {.lex_state = 39, .external_lex_state = 25}, - [1008] = {.lex_state = 6, .external_lex_state = 9}, - [1009] = {.lex_state = 6, .external_lex_state = 9}, - [1010] = {.lex_state = 6, .external_lex_state = 9}, - [1011] = {.lex_state = 6, .external_lex_state = 9}, - [1012] = {.lex_state = 6, .external_lex_state = 9}, - [1013] = {.lex_state = 6, .external_lex_state = 9}, - [1014] = {.lex_state = 6, .external_lex_state = 9}, - [1015] = {.lex_state = 6, .external_lex_state = 9}, - [1016] = {.lex_state = 6, .external_lex_state = 9}, - [1017] = {.lex_state = 6, .external_lex_state = 9}, - [1018] = {.lex_state = 6, .external_lex_state = 9}, - [1019] = {.lex_state = 6, .external_lex_state = 9}, - [1020] = {.lex_state = 6, .external_lex_state = 9}, - [1021] = {.lex_state = 19, .external_lex_state = 30}, - [1022] = {.lex_state = 19, .external_lex_state = 30}, - [1023] = {.lex_state = 19, .external_lex_state = 30}, - [1024] = {.lex_state = 52, .external_lex_state = 25}, - [1025] = {.lex_state = 52, .external_lex_state = 25}, - [1026] = {.lex_state = 19, .external_lex_state = 30}, - [1027] = {.lex_state = 19, .external_lex_state = 26}, - [1028] = {.lex_state = 19, .external_lex_state = 26}, - [1029] = {.lex_state = 19, .external_lex_state = 30}, - [1030] = {.lex_state = 52, .external_lex_state = 25}, - [1031] = {.lex_state = 52, .external_lex_state = 25}, - [1032] = {.lex_state = 19, .external_lex_state = 30}, - [1033] = {.lex_state = 19, .external_lex_state = 30}, - [1034] = {.lex_state = 47}, - [1035] = {.lex_state = 19, .external_lex_state = 30}, - [1036] = {.lex_state = 52, .external_lex_state = 25}, - [1037] = {.lex_state = 52, .external_lex_state = 25}, - [1038] = {.lex_state = 52, .external_lex_state = 25}, + [993] = {.lex_state = 6, .external_lex_state = 9}, + [994] = {.lex_state = 19, .external_lex_state = 30}, + [995] = {.lex_state = 19, .external_lex_state = 30}, + [996] = {.lex_state = 19, .external_lex_state = 30}, + [997] = {.lex_state = 52, .external_lex_state = 23}, + [998] = {.lex_state = 52, .external_lex_state = 23}, + [999] = {.lex_state = 19, .external_lex_state = 30}, + [1000] = {.lex_state = 19, .external_lex_state = 24}, + [1001] = {.lex_state = 19, .external_lex_state = 24}, + [1002] = {.lex_state = 19, .external_lex_state = 30}, + [1003] = {.lex_state = 47}, + [1004] = {.lex_state = 19, .external_lex_state = 30}, + [1005] = {.lex_state = 52, .external_lex_state = 23}, + [1006] = {.lex_state = 52, .external_lex_state = 23}, + [1007] = {.lex_state = 19, .external_lex_state = 30}, + [1008] = {.lex_state = 19, .external_lex_state = 30}, + [1009] = {.lex_state = 52, .external_lex_state = 23}, + [1010] = {.lex_state = 52, .external_lex_state = 23}, + [1011] = {.lex_state = 52, .external_lex_state = 23}, + [1012] = {.lex_state = 18, .external_lex_state = 24}, + [1013] = {.lex_state = 19, .external_lex_state = 30}, + [1014] = {.lex_state = 52, .external_lex_state = 23}, + [1015] = {.lex_state = 52, .external_lex_state = 23}, + [1016] = {.lex_state = 52, .external_lex_state = 23}, + [1017] = {.lex_state = 52, .external_lex_state = 23}, + [1018] = {.lex_state = 52, .external_lex_state = 23}, + [1019] = {.lex_state = 52, .external_lex_state = 23}, + [1020] = {.lex_state = 52, .external_lex_state = 23}, + [1021] = {.lex_state = 52, .external_lex_state = 23}, + [1022] = {.lex_state = 52, .external_lex_state = 23}, + [1023] = {.lex_state = 52, .external_lex_state = 23}, + [1024] = {.lex_state = 52, .external_lex_state = 23}, + [1025] = {.lex_state = 52, .external_lex_state = 23}, + [1026] = {.lex_state = 52, .external_lex_state = 23}, + [1027] = {.lex_state = 45, .external_lex_state = 25}, + [1028] = {.lex_state = 45, .external_lex_state = 25}, + [1029] = {.lex_state = 45, .external_lex_state = 25}, + [1030] = {.lex_state = 19, .external_lex_state = 30}, + [1031] = {.lex_state = 19, .external_lex_state = 30}, + [1032] = {.lex_state = 45, .external_lex_state = 25}, + [1033] = {.lex_state = 45, .external_lex_state = 18}, + [1034] = {.lex_state = 45, .external_lex_state = 18}, + [1035] = {.lex_state = 45, .external_lex_state = 25}, + [1036] = {.lex_state = 47}, + [1037] = {.lex_state = 45, .external_lex_state = 25}, + [1038] = {.lex_state = 19, .external_lex_state = 30}, [1039] = {.lex_state = 19, .external_lex_state = 30}, - [1040] = {.lex_state = 18, .external_lex_state = 26}, - [1041] = {.lex_state = 52, .external_lex_state = 25}, - [1042] = {.lex_state = 52, .external_lex_state = 25}, - [1043] = {.lex_state = 52, .external_lex_state = 25}, - [1044] = {.lex_state = 52, .external_lex_state = 25}, - [1045] = {.lex_state = 52, .external_lex_state = 25}, - [1046] = {.lex_state = 52, .external_lex_state = 25}, - [1047] = {.lex_state = 52, .external_lex_state = 25}, - [1048] = {.lex_state = 52, .external_lex_state = 25}, - [1049] = {.lex_state = 52, .external_lex_state = 25}, - [1050] = {.lex_state = 52, .external_lex_state = 25}, - [1051] = {.lex_state = 52, .external_lex_state = 25}, - [1052] = {.lex_state = 52, .external_lex_state = 25}, - [1053] = {.lex_state = 52, .external_lex_state = 25}, - [1054] = {.lex_state = 3, .external_lex_state = 5}, - [1055] = {.lex_state = 3, .external_lex_state = 5}, - [1056] = {.lex_state = 3, .external_lex_state = 5}, + [1040] = {.lex_state = 45, .external_lex_state = 25}, + [1041] = {.lex_state = 45, .external_lex_state = 25}, + [1042] = {.lex_state = 19, .external_lex_state = 30}, + [1043] = {.lex_state = 19, .external_lex_state = 30}, + [1044] = {.lex_state = 19, .external_lex_state = 30}, + [1045] = {.lex_state = 32, .external_lex_state = 18}, + [1046] = {.lex_state = 45, .external_lex_state = 25}, + [1047] = {.lex_state = 19, .external_lex_state = 30}, + [1048] = {.lex_state = 19, .external_lex_state = 30}, + [1049] = {.lex_state = 19, .external_lex_state = 30}, + [1050] = {.lex_state = 19, .external_lex_state = 30}, + [1051] = {.lex_state = 19, .external_lex_state = 30}, + [1052] = {.lex_state = 19, .external_lex_state = 30}, + [1053] = {.lex_state = 19, .external_lex_state = 30}, + [1054] = {.lex_state = 19, .external_lex_state = 30}, + [1055] = {.lex_state = 19, .external_lex_state = 30}, + [1056] = {.lex_state = 19, .external_lex_state = 30}, [1057] = {.lex_state = 19, .external_lex_state = 30}, [1058] = {.lex_state = 19, .external_lex_state = 30}, - [1059] = {.lex_state = 3, .external_lex_state = 5}, - [1060] = {.lex_state = 3, .external_lex_state = 4}, - [1061] = {.lex_state = 3, .external_lex_state = 4}, + [1059] = {.lex_state = 19, .external_lex_state = 30}, + [1060] = {.lex_state = 3, .external_lex_state = 5}, + [1061] = {.lex_state = 3, .external_lex_state = 5}, [1062] = {.lex_state = 3, .external_lex_state = 5}, - [1063] = {.lex_state = 19, .external_lex_state = 30}, - [1064] = {.lex_state = 19, .external_lex_state = 30}, + [1063] = {.lex_state = 45, .external_lex_state = 25}, + [1064] = {.lex_state = 45, .external_lex_state = 25}, [1065] = {.lex_state = 3, .external_lex_state = 5}, - [1066] = {.lex_state = 3, .external_lex_state = 5}, - [1067] = {.lex_state = 47}, + [1066] = {.lex_state = 3, .external_lex_state = 4}, + [1067] = {.lex_state = 3, .external_lex_state = 4}, [1068] = {.lex_state = 3, .external_lex_state = 5}, - [1069] = {.lex_state = 19, .external_lex_state = 30}, - [1070] = {.lex_state = 19, .external_lex_state = 30}, - [1071] = {.lex_state = 19, .external_lex_state = 30}, - [1072] = {.lex_state = 3, .external_lex_state = 5}, - [1073] = {.lex_state = 2, .external_lex_state = 4}, - [1074] = {.lex_state = 19, .external_lex_state = 30}, - [1075] = {.lex_state = 19, .external_lex_state = 30}, - [1076] = {.lex_state = 19, .external_lex_state = 30}, - [1077] = {.lex_state = 19, .external_lex_state = 30}, - [1078] = {.lex_state = 19, .external_lex_state = 30}, - [1079] = {.lex_state = 19, .external_lex_state = 30}, - [1080] = {.lex_state = 19, .external_lex_state = 30}, - [1081] = {.lex_state = 19, .external_lex_state = 30}, - [1082] = {.lex_state = 19, .external_lex_state = 30}, - [1083] = {.lex_state = 19, .external_lex_state = 30}, - [1084] = {.lex_state = 19, .external_lex_state = 30}, - [1085] = {.lex_state = 19, .external_lex_state = 30}, - [1086] = {.lex_state = 19, .external_lex_state = 30}, - [1087] = {.lex_state = 6, .external_lex_state = 9}, - [1088] = {.lex_state = 6, .external_lex_state = 9}, - [1089] = {.lex_state = 6, .external_lex_state = 9}, - [1090] = {.lex_state = 3, .external_lex_state = 5}, - [1091] = {.lex_state = 3, .external_lex_state = 5}, - [1092] = {.lex_state = 6, .external_lex_state = 9}, - [1093] = {.lex_state = 6, .external_lex_state = 3}, - [1094] = {.lex_state = 6, .external_lex_state = 3}, + [1069] = {.lex_state = 47}, + [1070] = {.lex_state = 3, .external_lex_state = 5}, + [1071] = {.lex_state = 45, .external_lex_state = 25}, + [1072] = {.lex_state = 45, .external_lex_state = 25}, + [1073] = {.lex_state = 3, .external_lex_state = 5}, + [1074] = {.lex_state = 3, .external_lex_state = 5}, + [1075] = {.lex_state = 45, .external_lex_state = 25}, + [1076] = {.lex_state = 45, .external_lex_state = 25}, + [1077] = {.lex_state = 45, .external_lex_state = 25}, + [1078] = {.lex_state = 2, .external_lex_state = 4}, + [1079] = {.lex_state = 3, .external_lex_state = 5}, + [1080] = {.lex_state = 45, .external_lex_state = 25}, + [1081] = {.lex_state = 45, .external_lex_state = 25}, + [1082] = {.lex_state = 45, .external_lex_state = 25}, + [1083] = {.lex_state = 45, .external_lex_state = 25}, + [1084] = {.lex_state = 45, .external_lex_state = 25}, + [1085] = {.lex_state = 45, .external_lex_state = 25}, + [1086] = {.lex_state = 45, .external_lex_state = 25}, + [1087] = {.lex_state = 45, .external_lex_state = 25}, + [1088] = {.lex_state = 45, .external_lex_state = 25}, + [1089] = {.lex_state = 45, .external_lex_state = 25}, + [1090] = {.lex_state = 45, .external_lex_state = 25}, + [1091] = {.lex_state = 45, .external_lex_state = 25}, + [1092] = {.lex_state = 45, .external_lex_state = 25}, + [1093] = {.lex_state = 6, .external_lex_state = 9}, + [1094] = {.lex_state = 6, .external_lex_state = 9}, [1095] = {.lex_state = 6, .external_lex_state = 9}, [1096] = {.lex_state = 3, .external_lex_state = 5}, [1097] = {.lex_state = 3, .external_lex_state = 5}, [1098] = {.lex_state = 6, .external_lex_state = 9}, - [1099] = {.lex_state = 6, .external_lex_state = 9}, - [1100] = {.lex_state = 47}, + [1099] = {.lex_state = 6, .external_lex_state = 3}, + [1100] = {.lex_state = 6, .external_lex_state = 3}, [1101] = {.lex_state = 6, .external_lex_state = 9}, - [1102] = {.lex_state = 3, .external_lex_state = 5}, - [1103] = {.lex_state = 3, .external_lex_state = 5}, + [1102] = {.lex_state = 47}, + [1103] = {.lex_state = 6, .external_lex_state = 9}, [1104] = {.lex_state = 3, .external_lex_state = 5}, - [1105] = {.lex_state = 6, .external_lex_state = 9}, - [1106] = {.lex_state = 8, .external_lex_state = 3}, - [1107] = {.lex_state = 3, .external_lex_state = 5}, + [1105] = {.lex_state = 3, .external_lex_state = 5}, + [1106] = {.lex_state = 6, .external_lex_state = 9}, + [1107] = {.lex_state = 6, .external_lex_state = 9}, [1108] = {.lex_state = 3, .external_lex_state = 5}, [1109] = {.lex_state = 3, .external_lex_state = 5}, [1110] = {.lex_state = 3, .external_lex_state = 5}, - [1111] = {.lex_state = 3, .external_lex_state = 5}, - [1112] = {.lex_state = 3, .external_lex_state = 5}, + [1111] = {.lex_state = 8, .external_lex_state = 3}, + [1112] = {.lex_state = 6, .external_lex_state = 9}, [1113] = {.lex_state = 3, .external_lex_state = 5}, [1114] = {.lex_state = 3, .external_lex_state = 5}, [1115] = {.lex_state = 3, .external_lex_state = 5}, @@ -5552,29 +5458,29 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1120] = {.lex_state = 3, .external_lex_state = 5}, [1121] = {.lex_state = 3, .external_lex_state = 5}, [1122] = {.lex_state = 3, .external_lex_state = 5}, - [1123] = {.lex_state = 6, .external_lex_state = 9}, - [1124] = {.lex_state = 6, .external_lex_state = 9}, + [1123] = {.lex_state = 3, .external_lex_state = 5}, + [1124] = {.lex_state = 3, .external_lex_state = 5}, [1125] = {.lex_state = 3, .external_lex_state = 5}, - [1126] = {.lex_state = 3, .external_lex_state = 4}, - [1127] = {.lex_state = 3, .external_lex_state = 4}, + [1126] = {.lex_state = 3, .external_lex_state = 5}, + [1127] = {.lex_state = 3, .external_lex_state = 5}, [1128] = {.lex_state = 3, .external_lex_state = 5}, [1129] = {.lex_state = 6, .external_lex_state = 9}, [1130] = {.lex_state = 6, .external_lex_state = 9}, [1131] = {.lex_state = 3, .external_lex_state = 5}, - [1132] = {.lex_state = 3, .external_lex_state = 5}, - [1133] = {.lex_state = 47}, + [1132] = {.lex_state = 3, .external_lex_state = 4}, + [1133] = {.lex_state = 3, .external_lex_state = 4}, [1134] = {.lex_state = 3, .external_lex_state = 5}, - [1135] = {.lex_state = 6, .external_lex_state = 9}, - [1136] = {.lex_state = 6, .external_lex_state = 9}, + [1135] = {.lex_state = 47}, + [1136] = {.lex_state = 3, .external_lex_state = 5}, [1137] = {.lex_state = 6, .external_lex_state = 9}, - [1138] = {.lex_state = 3, .external_lex_state = 5}, - [1139] = {.lex_state = 2, .external_lex_state = 4}, - [1140] = {.lex_state = 6, .external_lex_state = 9}, + [1138] = {.lex_state = 6, .external_lex_state = 9}, + [1139] = {.lex_state = 3, .external_lex_state = 5}, + [1140] = {.lex_state = 3, .external_lex_state = 5}, [1141] = {.lex_state = 6, .external_lex_state = 9}, [1142] = {.lex_state = 6, .external_lex_state = 9}, [1143] = {.lex_state = 6, .external_lex_state = 9}, - [1144] = {.lex_state = 6, .external_lex_state = 9}, - [1145] = {.lex_state = 6, .external_lex_state = 9}, + [1144] = {.lex_state = 2, .external_lex_state = 4}, + [1145] = {.lex_state = 3, .external_lex_state = 5}, [1146] = {.lex_state = 6, .external_lex_state = 9}, [1147] = {.lex_state = 6, .external_lex_state = 9}, [1148] = {.lex_state = 6, .external_lex_state = 9}, @@ -5582,32 +5488,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1150] = {.lex_state = 6, .external_lex_state = 9}, [1151] = {.lex_state = 6, .external_lex_state = 9}, [1152] = {.lex_state = 6, .external_lex_state = 9}, - [1153] = {.lex_state = 42, .external_lex_state = 23}, - [1154] = {.lex_state = 52, .external_lex_state = 23}, - [1155] = {.lex_state = 52, .external_lex_state = 23}, - [1156] = {.lex_state = 3, .external_lex_state = 5}, - [1157] = {.lex_state = 3, .external_lex_state = 5}, - [1158] = {.lex_state = 52, .external_lex_state = 23}, - [1159] = {.lex_state = 42, .external_lex_state = 15}, - [1160] = {.lex_state = 42, .external_lex_state = 15}, - [1161] = {.lex_state = 52, .external_lex_state = 23}, + [1153] = {.lex_state = 6, .external_lex_state = 9}, + [1154] = {.lex_state = 6, .external_lex_state = 9}, + [1155] = {.lex_state = 6, .external_lex_state = 9}, + [1156] = {.lex_state = 6, .external_lex_state = 9}, + [1157] = {.lex_state = 6, .external_lex_state = 9}, + [1158] = {.lex_state = 6, .external_lex_state = 9}, + [1159] = {.lex_state = 47, .external_lex_state = 14}, + [1160] = {.lex_state = 47, .external_lex_state = 14}, + [1161] = {.lex_state = 47, .external_lex_state = 14}, [1162] = {.lex_state = 3, .external_lex_state = 5}, [1163] = {.lex_state = 3, .external_lex_state = 5}, - [1164] = {.lex_state = 52, .external_lex_state = 23}, - [1165] = {.lex_state = 52, .external_lex_state = 23}, + [1164] = {.lex_state = 47, .external_lex_state = 14}, + [1165] = {.lex_state = 47}, [1166] = {.lex_state = 47}, - [1167] = {.lex_state = 52, .external_lex_state = 23}, - [1168] = {.lex_state = 3, .external_lex_state = 5}, - [1169] = {.lex_state = 3, .external_lex_state = 5}, + [1167] = {.lex_state = 47, .external_lex_state = 14}, + [1168] = {.lex_state = 47}, + [1169] = {.lex_state = 47, .external_lex_state = 14}, [1170] = {.lex_state = 3, .external_lex_state = 5}, - [1171] = {.lex_state = 52, .external_lex_state = 23}, - [1172] = {.lex_state = 38, .external_lex_state = 15}, - [1173] = {.lex_state = 3, .external_lex_state = 5}, + [1171] = {.lex_state = 3, .external_lex_state = 5}, + [1172] = {.lex_state = 47, .external_lex_state = 14}, + [1173] = {.lex_state = 47, .external_lex_state = 14}, [1174] = {.lex_state = 3, .external_lex_state = 5}, [1175] = {.lex_state = 3, .external_lex_state = 5}, [1176] = {.lex_state = 3, .external_lex_state = 5}, - [1177] = {.lex_state = 3, .external_lex_state = 5}, - [1178] = {.lex_state = 3, .external_lex_state = 5}, + [1177] = {.lex_state = 33}, + [1178] = {.lex_state = 47, .external_lex_state = 14}, [1179] = {.lex_state = 3, .external_lex_state = 5}, [1180] = {.lex_state = 3, .external_lex_state = 5}, [1181] = {.lex_state = 3, .external_lex_state = 5}, @@ -5615,131 +5521,131 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1183] = {.lex_state = 3, .external_lex_state = 5}, [1184] = {.lex_state = 3, .external_lex_state = 5}, [1185] = {.lex_state = 3, .external_lex_state = 5}, - [1186] = {.lex_state = 47, .external_lex_state = 10}, - [1187] = {.lex_state = 47, .external_lex_state = 10}, - [1188] = {.lex_state = 47, .external_lex_state = 10}, - [1189] = {.lex_state = 52, .external_lex_state = 23}, - [1190] = {.lex_state = 52, .external_lex_state = 23}, - [1191] = {.lex_state = 47, .external_lex_state = 10}, - [1192] = {.lex_state = 47}, - [1193] = {.lex_state = 47}, - [1194] = {.lex_state = 47, .external_lex_state = 10}, - [1195] = {.lex_state = 52, .external_lex_state = 23}, - [1196] = {.lex_state = 52, .external_lex_state = 23}, - [1197] = {.lex_state = 47, .external_lex_state = 10}, - [1198] = {.lex_state = 47, .external_lex_state = 10}, - [1199] = {.lex_state = 47}, - [1200] = {.lex_state = 47, .external_lex_state = 10}, - [1201] = {.lex_state = 52, .external_lex_state = 23}, - [1202] = {.lex_state = 52, .external_lex_state = 23}, - [1203] = {.lex_state = 52, .external_lex_state = 23}, - [1204] = {.lex_state = 47, .external_lex_state = 10}, - [1205] = {.lex_state = 33}, - [1206] = {.lex_state = 52, .external_lex_state = 23}, - [1207] = {.lex_state = 52, .external_lex_state = 23}, - [1208] = {.lex_state = 52, .external_lex_state = 23}, - [1209] = {.lex_state = 52, .external_lex_state = 23}, - [1210] = {.lex_state = 52, .external_lex_state = 23}, - [1211] = {.lex_state = 52, .external_lex_state = 23}, - [1212] = {.lex_state = 52, .external_lex_state = 23}, - [1213] = {.lex_state = 52, .external_lex_state = 23}, - [1214] = {.lex_state = 52, .external_lex_state = 23}, - [1215] = {.lex_state = 52, .external_lex_state = 23}, - [1216] = {.lex_state = 52, .external_lex_state = 23}, - [1217] = {.lex_state = 52, .external_lex_state = 23}, - [1218] = {.lex_state = 52, .external_lex_state = 23}, - [1219] = {.lex_state = 23, .external_lex_state = 13}, - [1220] = {.lex_state = 23, .external_lex_state = 13}, - [1221] = {.lex_state = 23, .external_lex_state = 13}, - [1222] = {.lex_state = 47, .external_lex_state = 10}, - [1223] = {.lex_state = 47, .external_lex_state = 10}, - [1224] = {.lex_state = 23, .external_lex_state = 13}, - [1225] = {.lex_state = 23, .external_lex_state = 14}, - [1226] = {.lex_state = 23, .external_lex_state = 14}, - [1227] = {.lex_state = 23, .external_lex_state = 13}, - [1228] = {.lex_state = 47, .external_lex_state = 10}, - [1229] = {.lex_state = 47, .external_lex_state = 10}, - [1230] = {.lex_state = 23, .external_lex_state = 13}, - [1231] = {.lex_state = 23, .external_lex_state = 13}, - [1232] = {.lex_state = 47}, - [1233] = {.lex_state = 23, .external_lex_state = 13}, - [1234] = {.lex_state = 47, .external_lex_state = 10}, - [1235] = {.lex_state = 47, .external_lex_state = 10}, - [1236] = {.lex_state = 47, .external_lex_state = 10}, - [1237] = {.lex_state = 23, .external_lex_state = 13}, - [1238] = {.lex_state = 28, .external_lex_state = 14}, - [1239] = {.lex_state = 47, .external_lex_state = 10}, - [1240] = {.lex_state = 47, .external_lex_state = 10}, - [1241] = {.lex_state = 47, .external_lex_state = 10}, - [1242] = {.lex_state = 47, .external_lex_state = 10}, - [1243] = {.lex_state = 47, .external_lex_state = 10}, - [1244] = {.lex_state = 47, .external_lex_state = 10}, - [1245] = {.lex_state = 47, .external_lex_state = 10}, - [1246] = {.lex_state = 47, .external_lex_state = 10}, - [1247] = {.lex_state = 47, .external_lex_state = 10}, - [1248] = {.lex_state = 47, .external_lex_state = 10}, - [1249] = {.lex_state = 47, .external_lex_state = 10}, - [1250] = {.lex_state = 47, .external_lex_state = 10}, - [1251] = {.lex_state = 47, .external_lex_state = 10}, - [1252] = {.lex_state = 24, .external_lex_state = 5}, - [1253] = {.lex_state = 24, .external_lex_state = 5}, - [1254] = {.lex_state = 24, .external_lex_state = 5}, - [1255] = {.lex_state = 23, .external_lex_state = 13}, - [1256] = {.lex_state = 23, .external_lex_state = 13}, - [1257] = {.lex_state = 24, .external_lex_state = 5}, - [1258] = {.lex_state = 24, .external_lex_state = 4}, - [1259] = {.lex_state = 24, .external_lex_state = 4}, + [1186] = {.lex_state = 3, .external_lex_state = 5}, + [1187] = {.lex_state = 3, .external_lex_state = 5}, + [1188] = {.lex_state = 3, .external_lex_state = 5}, + [1189] = {.lex_state = 3, .external_lex_state = 5}, + [1190] = {.lex_state = 3, .external_lex_state = 5}, + [1191] = {.lex_state = 3, .external_lex_state = 5}, + [1192] = {.lex_state = 23, .external_lex_state = 12}, + [1193] = {.lex_state = 23, .external_lex_state = 12}, + [1194] = {.lex_state = 23, .external_lex_state = 12}, + [1195] = {.lex_state = 47, .external_lex_state = 14}, + [1196] = {.lex_state = 47, .external_lex_state = 14}, + [1197] = {.lex_state = 23, .external_lex_state = 12}, + [1198] = {.lex_state = 23, .external_lex_state = 13}, + [1199] = {.lex_state = 23, .external_lex_state = 13}, + [1200] = {.lex_state = 23, .external_lex_state = 12}, + [1201] = {.lex_state = 47}, + [1202] = {.lex_state = 23, .external_lex_state = 12}, + [1203] = {.lex_state = 47, .external_lex_state = 14}, + [1204] = {.lex_state = 47, .external_lex_state = 14}, + [1205] = {.lex_state = 23, .external_lex_state = 12}, + [1206] = {.lex_state = 23, .external_lex_state = 12}, + [1207] = {.lex_state = 47, .external_lex_state = 14}, + [1208] = {.lex_state = 47, .external_lex_state = 14}, + [1209] = {.lex_state = 47, .external_lex_state = 14}, + [1210] = {.lex_state = 28, .external_lex_state = 13}, + [1211] = {.lex_state = 23, .external_lex_state = 12}, + [1212] = {.lex_state = 47, .external_lex_state = 14}, + [1213] = {.lex_state = 47, .external_lex_state = 14}, + [1214] = {.lex_state = 47, .external_lex_state = 14}, + [1215] = {.lex_state = 47, .external_lex_state = 14}, + [1216] = {.lex_state = 47, .external_lex_state = 14}, + [1217] = {.lex_state = 47, .external_lex_state = 14}, + [1218] = {.lex_state = 47, .external_lex_state = 14}, + [1219] = {.lex_state = 47, .external_lex_state = 14}, + [1220] = {.lex_state = 47, .external_lex_state = 14}, + [1221] = {.lex_state = 47, .external_lex_state = 14}, + [1222] = {.lex_state = 47, .external_lex_state = 14}, + [1223] = {.lex_state = 47, .external_lex_state = 14}, + [1224] = {.lex_state = 47, .external_lex_state = 14}, + [1225] = {.lex_state = 42, .external_lex_state = 25}, + [1226] = {.lex_state = 52, .external_lex_state = 25}, + [1227] = {.lex_state = 52, .external_lex_state = 25}, + [1228] = {.lex_state = 23, .external_lex_state = 12}, + [1229] = {.lex_state = 23, .external_lex_state = 12}, + [1230] = {.lex_state = 52, .external_lex_state = 25}, + [1231] = {.lex_state = 42, .external_lex_state = 18}, + [1232] = {.lex_state = 42, .external_lex_state = 18}, + [1233] = {.lex_state = 52, .external_lex_state = 25}, + [1234] = {.lex_state = 47}, + [1235] = {.lex_state = 52, .external_lex_state = 25}, + [1236] = {.lex_state = 23, .external_lex_state = 12}, + [1237] = {.lex_state = 23, .external_lex_state = 12}, + [1238] = {.lex_state = 52, .external_lex_state = 25}, + [1239] = {.lex_state = 52, .external_lex_state = 25}, + [1240] = {.lex_state = 23, .external_lex_state = 12}, + [1241] = {.lex_state = 23, .external_lex_state = 12}, + [1242] = {.lex_state = 23, .external_lex_state = 12}, + [1243] = {.lex_state = 38, .external_lex_state = 18}, + [1244] = {.lex_state = 52, .external_lex_state = 25}, + [1245] = {.lex_state = 23, .external_lex_state = 12}, + [1246] = {.lex_state = 23, .external_lex_state = 12}, + [1247] = {.lex_state = 23, .external_lex_state = 12}, + [1248] = {.lex_state = 23, .external_lex_state = 12}, + [1249] = {.lex_state = 23, .external_lex_state = 12}, + [1250] = {.lex_state = 23, .external_lex_state = 12}, + [1251] = {.lex_state = 23, .external_lex_state = 12}, + [1252] = {.lex_state = 23, .external_lex_state = 12}, + [1253] = {.lex_state = 23, .external_lex_state = 12}, + [1254] = {.lex_state = 23, .external_lex_state = 12}, + [1255] = {.lex_state = 23, .external_lex_state = 12}, + [1256] = {.lex_state = 23, .external_lex_state = 12}, + [1257] = {.lex_state = 23, .external_lex_state = 12}, + [1258] = {.lex_state = 24, .external_lex_state = 5}, + [1259] = {.lex_state = 24, .external_lex_state = 5}, [1260] = {.lex_state = 24, .external_lex_state = 5}, - [1261] = {.lex_state = 23, .external_lex_state = 13}, - [1262] = {.lex_state = 23, .external_lex_state = 13}, + [1261] = {.lex_state = 52, .external_lex_state = 25}, + [1262] = {.lex_state = 52, .external_lex_state = 25}, [1263] = {.lex_state = 24, .external_lex_state = 5}, - [1264] = {.lex_state = 24, .external_lex_state = 5}, - [1265] = {.lex_state = 47}, + [1264] = {.lex_state = 24, .external_lex_state = 4}, + [1265] = {.lex_state = 24, .external_lex_state = 4}, [1266] = {.lex_state = 24, .external_lex_state = 5}, - [1267] = {.lex_state = 23, .external_lex_state = 13}, - [1268] = {.lex_state = 23, .external_lex_state = 13}, - [1269] = {.lex_state = 23, .external_lex_state = 13}, - [1270] = {.lex_state = 24, .external_lex_state = 5}, - [1271] = {.lex_state = 39}, - [1272] = {.lex_state = 23, .external_lex_state = 13}, - [1273] = {.lex_state = 23, .external_lex_state = 13}, - [1274] = {.lex_state = 23, .external_lex_state = 13}, - [1275] = {.lex_state = 23, .external_lex_state = 13}, - [1276] = {.lex_state = 23, .external_lex_state = 13}, - [1277] = {.lex_state = 23, .external_lex_state = 13}, - [1278] = {.lex_state = 23, .external_lex_state = 13}, - [1279] = {.lex_state = 23, .external_lex_state = 13}, - [1280] = {.lex_state = 23, .external_lex_state = 13}, - [1281] = {.lex_state = 23, .external_lex_state = 13}, - [1282] = {.lex_state = 23, .external_lex_state = 13}, - [1283] = {.lex_state = 23, .external_lex_state = 13}, - [1284] = {.lex_state = 23, .external_lex_state = 13}, - [1285] = {.lex_state = 25, .external_lex_state = 9}, - [1286] = {.lex_state = 25, .external_lex_state = 9}, - [1287] = {.lex_state = 25, .external_lex_state = 9}, - [1288] = {.lex_state = 52, .external_lex_state = 27}, - [1289] = {.lex_state = 52, .external_lex_state = 27}, - [1290] = {.lex_state = 25, .external_lex_state = 9}, - [1291] = {.lex_state = 25, .external_lex_state = 3}, - [1292] = {.lex_state = 25, .external_lex_state = 3}, + [1267] = {.lex_state = 47}, + [1268] = {.lex_state = 24, .external_lex_state = 5}, + [1269] = {.lex_state = 52, .external_lex_state = 25}, + [1270] = {.lex_state = 52, .external_lex_state = 25}, + [1271] = {.lex_state = 24, .external_lex_state = 5}, + [1272] = {.lex_state = 24, .external_lex_state = 5}, + [1273] = {.lex_state = 52, .external_lex_state = 25}, + [1274] = {.lex_state = 52, .external_lex_state = 25}, + [1275] = {.lex_state = 52, .external_lex_state = 25}, + [1276] = {.lex_state = 39}, + [1277] = {.lex_state = 24, .external_lex_state = 5}, + [1278] = {.lex_state = 52, .external_lex_state = 25}, + [1279] = {.lex_state = 52, .external_lex_state = 25}, + [1280] = {.lex_state = 52, .external_lex_state = 25}, + [1281] = {.lex_state = 52, .external_lex_state = 25}, + [1282] = {.lex_state = 52, .external_lex_state = 25}, + [1283] = {.lex_state = 52, .external_lex_state = 25}, + [1284] = {.lex_state = 52, .external_lex_state = 25}, + [1285] = {.lex_state = 52, .external_lex_state = 25}, + [1286] = {.lex_state = 52, .external_lex_state = 25}, + [1287] = {.lex_state = 52, .external_lex_state = 25}, + [1288] = {.lex_state = 52, .external_lex_state = 25}, + [1289] = {.lex_state = 52, .external_lex_state = 25}, + [1290] = {.lex_state = 52, .external_lex_state = 25}, + [1291] = {.lex_state = 25, .external_lex_state = 9}, + [1292] = {.lex_state = 25, .external_lex_state = 9}, [1293] = {.lex_state = 25, .external_lex_state = 9}, - [1294] = {.lex_state = 24, .external_lex_state = 5}, + [1294] = {.lex_state = 52, .external_lex_state = 27}, [1295] = {.lex_state = 52, .external_lex_state = 27}, [1296] = {.lex_state = 25, .external_lex_state = 9}, - [1297] = {.lex_state = 25, .external_lex_state = 9}, - [1298] = {.lex_state = 47}, + [1297] = {.lex_state = 25, .external_lex_state = 3}, + [1298] = {.lex_state = 25, .external_lex_state = 3}, [1299] = {.lex_state = 25, .external_lex_state = 9}, - [1300] = {.lex_state = 52, .external_lex_state = 27}, - [1301] = {.lex_state = 52, .external_lex_state = 27}, + [1300] = {.lex_state = 47}, + [1301] = {.lex_state = 25, .external_lex_state = 9}, [1302] = {.lex_state = 52, .external_lex_state = 27}, - [1303] = {.lex_state = 25, .external_lex_state = 9}, - [1304] = {.lex_state = 16, .external_lex_state = 14}, - [1305] = {.lex_state = 52, .external_lex_state = 27}, + [1303] = {.lex_state = 24, .external_lex_state = 5}, + [1304] = {.lex_state = 25, .external_lex_state = 9}, + [1305] = {.lex_state = 25, .external_lex_state = 9}, [1306] = {.lex_state = 52, .external_lex_state = 27}, [1307] = {.lex_state = 52, .external_lex_state = 27}, [1308] = {.lex_state = 52, .external_lex_state = 27}, - [1309] = {.lex_state = 52, .external_lex_state = 27}, - [1310] = {.lex_state = 52, .external_lex_state = 27}, + [1309] = {.lex_state = 16, .external_lex_state = 13}, + [1310] = {.lex_state = 25, .external_lex_state = 9}, [1311] = {.lex_state = 52, .external_lex_state = 27}, [1312] = {.lex_state = 52, .external_lex_state = 27}, [1313] = {.lex_state = 52, .external_lex_state = 27}, @@ -5747,32 +5653,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1315] = {.lex_state = 52, .external_lex_state = 27}, [1316] = {.lex_state = 52, .external_lex_state = 27}, [1317] = {.lex_state = 52, .external_lex_state = 27}, - [1318] = {.lex_state = 25, .external_lex_state = 5}, - [1319] = {.lex_state = 25, .external_lex_state = 5}, - [1320] = {.lex_state = 25, .external_lex_state = 5}, - [1321] = {.lex_state = 24, .external_lex_state = 5}, - [1322] = {.lex_state = 24, .external_lex_state = 5}, - [1323] = {.lex_state = 25, .external_lex_state = 5}, - [1324] = {.lex_state = 25, .external_lex_state = 4}, - [1325] = {.lex_state = 25, .external_lex_state = 4}, + [1318] = {.lex_state = 52, .external_lex_state = 27}, + [1319] = {.lex_state = 52, .external_lex_state = 27}, + [1320] = {.lex_state = 52, .external_lex_state = 27}, + [1321] = {.lex_state = 52, .external_lex_state = 27}, + [1322] = {.lex_state = 52, .external_lex_state = 27}, + [1323] = {.lex_state = 52, .external_lex_state = 27}, + [1324] = {.lex_state = 25, .external_lex_state = 5}, + [1325] = {.lex_state = 25, .external_lex_state = 5}, [1326] = {.lex_state = 25, .external_lex_state = 5}, - [1327] = {.lex_state = 25, .external_lex_state = 9}, + [1327] = {.lex_state = 24, .external_lex_state = 5}, [1328] = {.lex_state = 24, .external_lex_state = 5}, [1329] = {.lex_state = 25, .external_lex_state = 5}, - [1330] = {.lex_state = 25, .external_lex_state = 5}, - [1331] = {.lex_state = 47}, + [1330] = {.lex_state = 25, .external_lex_state = 4}, + [1331] = {.lex_state = 25, .external_lex_state = 4}, [1332] = {.lex_state = 25, .external_lex_state = 5}, - [1333] = {.lex_state = 24, .external_lex_state = 5}, - [1334] = {.lex_state = 24, .external_lex_state = 5}, + [1333] = {.lex_state = 47}, + [1334] = {.lex_state = 25, .external_lex_state = 5}, [1335] = {.lex_state = 24, .external_lex_state = 5}, - [1336] = {.lex_state = 25, .external_lex_state = 5}, - [1337] = {.lex_state = 29, .external_lex_state = 4}, - [1338] = {.lex_state = 24, .external_lex_state = 5}, + [1336] = {.lex_state = 25, .external_lex_state = 9}, + [1337] = {.lex_state = 25, .external_lex_state = 5}, + [1338] = {.lex_state = 25, .external_lex_state = 5}, [1339] = {.lex_state = 24, .external_lex_state = 5}, [1340] = {.lex_state = 24, .external_lex_state = 5}, [1341] = {.lex_state = 24, .external_lex_state = 5}, - [1342] = {.lex_state = 24, .external_lex_state = 5}, - [1343] = {.lex_state = 24, .external_lex_state = 5}, + [1342] = {.lex_state = 29, .external_lex_state = 4}, + [1343] = {.lex_state = 25, .external_lex_state = 5}, [1344] = {.lex_state = 24, .external_lex_state = 5}, [1345] = {.lex_state = 24, .external_lex_state = 5}, [1346] = {.lex_state = 24, .external_lex_state = 5}, @@ -5780,32 +5686,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1348] = {.lex_state = 24, .external_lex_state = 5}, [1349] = {.lex_state = 24, .external_lex_state = 5}, [1350] = {.lex_state = 24, .external_lex_state = 5}, - [1351] = {.lex_state = 26, .external_lex_state = 9}, - [1352] = {.lex_state = 26, .external_lex_state = 9}, - [1353] = {.lex_state = 26, .external_lex_state = 9}, - [1354] = {.lex_state = 25, .external_lex_state = 9}, - [1355] = {.lex_state = 25, .external_lex_state = 9}, - [1356] = {.lex_state = 26, .external_lex_state = 9}, - [1357] = {.lex_state = 26, .external_lex_state = 3}, - [1358] = {.lex_state = 26, .external_lex_state = 3}, + [1351] = {.lex_state = 24, .external_lex_state = 5}, + [1352] = {.lex_state = 24, .external_lex_state = 5}, + [1353] = {.lex_state = 24, .external_lex_state = 5}, + [1354] = {.lex_state = 24, .external_lex_state = 5}, + [1355] = {.lex_state = 24, .external_lex_state = 5}, + [1356] = {.lex_state = 24, .external_lex_state = 5}, + [1357] = {.lex_state = 26, .external_lex_state = 9}, + [1358] = {.lex_state = 26, .external_lex_state = 9}, [1359] = {.lex_state = 26, .external_lex_state = 9}, - [1360] = {.lex_state = 25, .external_lex_state = 5}, + [1360] = {.lex_state = 25, .external_lex_state = 9}, [1361] = {.lex_state = 25, .external_lex_state = 9}, [1362] = {.lex_state = 26, .external_lex_state = 9}, - [1363] = {.lex_state = 26, .external_lex_state = 9}, - [1364] = {.lex_state = 47}, + [1363] = {.lex_state = 26, .external_lex_state = 3}, + [1364] = {.lex_state = 26, .external_lex_state = 3}, [1365] = {.lex_state = 26, .external_lex_state = 9}, - [1366] = {.lex_state = 25, .external_lex_state = 9}, - [1367] = {.lex_state = 25, .external_lex_state = 9}, + [1366] = {.lex_state = 47}, + [1367] = {.lex_state = 26, .external_lex_state = 9}, [1368] = {.lex_state = 25, .external_lex_state = 9}, - [1369] = {.lex_state = 26, .external_lex_state = 9}, - [1370] = {.lex_state = 30, .external_lex_state = 3}, - [1371] = {.lex_state = 25, .external_lex_state = 9}, + [1369] = {.lex_state = 25, .external_lex_state = 5}, + [1370] = {.lex_state = 26, .external_lex_state = 9}, + [1371] = {.lex_state = 26, .external_lex_state = 9}, [1372] = {.lex_state = 25, .external_lex_state = 9}, [1373] = {.lex_state = 25, .external_lex_state = 9}, [1374] = {.lex_state = 25, .external_lex_state = 9}, - [1375] = {.lex_state = 25, .external_lex_state = 9}, - [1376] = {.lex_state = 25, .external_lex_state = 9}, + [1375] = {.lex_state = 30, .external_lex_state = 3}, + [1376] = {.lex_state = 26, .external_lex_state = 9}, [1377] = {.lex_state = 25, .external_lex_state = 9}, [1378] = {.lex_state = 25, .external_lex_state = 9}, [1379] = {.lex_state = 25, .external_lex_state = 9}, @@ -5813,20 +5719,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1381] = {.lex_state = 25, .external_lex_state = 9}, [1382] = {.lex_state = 25, .external_lex_state = 9}, [1383] = {.lex_state = 25, .external_lex_state = 9}, - [1384] = {.lex_state = 25, .external_lex_state = 5}, - [1385] = {.lex_state = 25, .external_lex_state = 5}, - [1386] = {.lex_state = 26, .external_lex_state = 9}, - [1387] = {.lex_state = 25, .external_lex_state = 5}, - [1388] = {.lex_state = 25, .external_lex_state = 5}, - [1389] = {.lex_state = 25, .external_lex_state = 5}, + [1384] = {.lex_state = 25, .external_lex_state = 9}, + [1385] = {.lex_state = 25, .external_lex_state = 9}, + [1386] = {.lex_state = 25, .external_lex_state = 9}, + [1387] = {.lex_state = 25, .external_lex_state = 9}, + [1388] = {.lex_state = 25, .external_lex_state = 9}, + [1389] = {.lex_state = 25, .external_lex_state = 9}, [1390] = {.lex_state = 25, .external_lex_state = 5}, - [1391] = {.lex_state = 30, .external_lex_state = 4}, + [1391] = {.lex_state = 25, .external_lex_state = 5}, [1392] = {.lex_state = 25, .external_lex_state = 5}, - [1393] = {.lex_state = 25, .external_lex_state = 5}, + [1393] = {.lex_state = 26, .external_lex_state = 9}, [1394] = {.lex_state = 25, .external_lex_state = 5}, [1395] = {.lex_state = 25, .external_lex_state = 5}, [1396] = {.lex_state = 25, .external_lex_state = 5}, - [1397] = {.lex_state = 25, .external_lex_state = 5}, + [1397] = {.lex_state = 30, .external_lex_state = 4}, [1398] = {.lex_state = 25, .external_lex_state = 5}, [1399] = {.lex_state = 25, .external_lex_state = 5}, [1400] = {.lex_state = 25, .external_lex_state = 5}, @@ -5834,19 +5740,19 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1402] = {.lex_state = 25, .external_lex_state = 5}, [1403] = {.lex_state = 25, .external_lex_state = 5}, [1404] = {.lex_state = 25, .external_lex_state = 5}, - [1405] = {.lex_state = 26, .external_lex_state = 9}, - [1406] = {.lex_state = 26, .external_lex_state = 9}, - [1407] = {.lex_state = 26, .external_lex_state = 9}, - [1408] = {.lex_state = 26, .external_lex_state = 9}, - [1409] = {.lex_state = 26, .external_lex_state = 9}, - [1410] = {.lex_state = 26, .external_lex_state = 9}, - [1411] = {.lex_state = 30, .external_lex_state = 3}, + [1405] = {.lex_state = 25, .external_lex_state = 5}, + [1406] = {.lex_state = 25, .external_lex_state = 5}, + [1407] = {.lex_state = 25, .external_lex_state = 5}, + [1408] = {.lex_state = 25, .external_lex_state = 5}, + [1409] = {.lex_state = 25, .external_lex_state = 5}, + [1410] = {.lex_state = 25, .external_lex_state = 5}, + [1411] = {.lex_state = 26, .external_lex_state = 9}, [1412] = {.lex_state = 26, .external_lex_state = 9}, [1413] = {.lex_state = 26, .external_lex_state = 9}, [1414] = {.lex_state = 26, .external_lex_state = 9}, [1415] = {.lex_state = 26, .external_lex_state = 9}, [1416] = {.lex_state = 26, .external_lex_state = 9}, - [1417] = {.lex_state = 26, .external_lex_state = 9}, + [1417] = {.lex_state = 30, .external_lex_state = 3}, [1418] = {.lex_state = 26, .external_lex_state = 9}, [1419] = {.lex_state = 26, .external_lex_state = 9}, [1420] = {.lex_state = 26, .external_lex_state = 9}, @@ -5854,1380 +5760,1386 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1422] = {.lex_state = 26, .external_lex_state = 9}, [1423] = {.lex_state = 26, .external_lex_state = 9}, [1424] = {.lex_state = 26, .external_lex_state = 9}, - [1425] = {.lex_state = 14, .external_lex_state = 4}, - [1426] = {.lex_state = 47}, - [1427] = {.lex_state = 51}, - [1428] = {.lex_state = 36, .external_lex_state = 6}, - [1429] = {.lex_state = 38}, - [1430] = {.lex_state = 9}, - [1431] = {.lex_state = 40}, - [1432] = {.lex_state = 51}, - [1433] = {.lex_state = 43, .external_lex_state = 12}, - [1434] = {.lex_state = 47, .external_lex_state = 2}, - [1435] = {.lex_state = 9}, + [1425] = {.lex_state = 26, .external_lex_state = 9}, + [1426] = {.lex_state = 26, .external_lex_state = 9}, + [1427] = {.lex_state = 26, .external_lex_state = 9}, + [1428] = {.lex_state = 26, .external_lex_state = 9}, + [1429] = {.lex_state = 26, .external_lex_state = 9}, + [1430] = {.lex_state = 26, .external_lex_state = 9}, + [1431] = {.lex_state = 14, .external_lex_state = 4}, + [1432] = {.lex_state = 47}, + [1433] = {.lex_state = 36, .external_lex_state = 6}, + [1434] = {.lex_state = 51}, + [1435] = {.lex_state = 38}, [1436] = {.lex_state = 9}, [1437] = {.lex_state = 47}, - [1438] = {.lex_state = 52}, - [1439] = {.lex_state = 3, .external_lex_state = 4}, - [1440] = {.lex_state = 6, .external_lex_state = 3}, - [1441] = {.lex_state = 36, .external_lex_state = 6}, - [1442] = {.lex_state = 43, .external_lex_state = 12}, - [1443] = {.lex_state = 44, .external_lex_state = 15}, - [1444] = {.lex_state = 44, .external_lex_state = 15}, - [1445] = {.lex_state = 47, .external_lex_state = 16}, - [1446] = {.lex_state = 47}, - [1447] = {.lex_state = 9}, - [1448] = {.lex_state = 52}, - [1449] = {.lex_state = 43, .external_lex_state = 18}, - [1450] = {.lex_state = 41, .external_lex_state = 12}, - [1451] = {.lex_state = 9, .external_lex_state = 20}, - [1452] = {.lex_state = 47}, - [1453] = {.lex_state = 40}, - [1454] = {.lex_state = 42, .external_lex_state = 12}, - [1455] = {.lex_state = 9, .external_lex_state = 2}, - [1456] = {.lex_state = 45, .external_lex_state = 24}, - [1457] = {.lex_state = 45, .external_lex_state = 15}, - [1458] = {.lex_state = 44, .external_lex_state = 15}, - [1459] = {.lex_state = 44, .external_lex_state = 15}, - [1460] = {.lex_state = 48, .external_lex_state = 15}, - [1461] = {.lex_state = 45, .external_lex_state = 24}, - [1462] = {.lex_state = 45, .external_lex_state = 15}, - [1463] = {.lex_state = 47}, - [1464] = {.lex_state = 52, .external_lex_state = 25}, - [1465] = {.lex_state = 52, .external_lex_state = 25}, - [1466] = {.lex_state = 43, .external_lex_state = 25}, - [1467] = {.lex_state = 9}, - [1468] = {.lex_state = 52}, - [1469] = {.lex_state = 9, .external_lex_state = 2}, - [1470] = {.lex_state = 52, .external_lex_state = 27}, - [1471] = {.lex_state = 9}, - [1472] = {.lex_state = 4, .external_lex_state = 14}, - [1473] = {.lex_state = 52}, - [1474] = {.lex_state = 9, .external_lex_state = 2}, - [1475] = {.lex_state = 52}, - [1476] = {.lex_state = 50}, - [1477] = {.lex_state = 50}, - [1478] = {.lex_state = 45, .external_lex_state = 15}, - [1479] = {.lex_state = 45, .external_lex_state = 15}, - [1480] = {.lex_state = 45, .external_lex_state = 24}, - [1481] = {.lex_state = 48, .external_lex_state = 15}, - [1482] = {.lex_state = 45, .external_lex_state = 24}, - [1483] = {.lex_state = 45, .external_lex_state = 15}, - [1484] = {.lex_state = 52, .external_lex_state = 23}, - [1485] = {.lex_state = 52, .external_lex_state = 15}, - [1486] = {.lex_state = 42, .external_lex_state = 15}, - [1487] = {.lex_state = 45, .external_lex_state = 15}, - [1488] = {.lex_state = 45, .external_lex_state = 15}, - [1489] = {.lex_state = 47}, - [1490] = {.lex_state = 49, .external_lex_state = 28}, - [1491] = {.lex_state = 52, .external_lex_state = 28}, - [1492] = {.lex_state = 52, .external_lex_state = 28}, - [1493] = {.lex_state = 9, .external_lex_state = 2}, - [1494] = {.lex_state = 52, .external_lex_state = 27}, - [1495] = {.lex_state = 52}, - [1496] = {.lex_state = 52}, - [1497] = {.lex_state = 50}, - [1498] = {.lex_state = 43}, - [1499] = {.lex_state = 50}, - [1500] = {.lex_state = 43}, - [1501] = {.lex_state = 45, .external_lex_state = 15}, - [1502] = {.lex_state = 45, .external_lex_state = 15}, - [1503] = {.lex_state = 52, .external_lex_state = 23}, - [1504] = {.lex_state = 52, .external_lex_state = 15}, - [1505] = {.lex_state = 42, .external_lex_state = 15}, - [1506] = {.lex_state = 45, .external_lex_state = 15}, - [1507] = {.lex_state = 45, .external_lex_state = 15}, - [1508] = {.lex_state = 45, .external_lex_state = 15}, - [1509] = {.lex_state = 52}, - [1510] = {.lex_state = 52}, - [1511] = {.lex_state = 52}, - [1512] = {.lex_state = 43}, - [1513] = {.lex_state = 43}, - [1514] = {.lex_state = 45, .external_lex_state = 15}, - [1515] = {.lex_state = 45, .external_lex_state = 15}, - [1516] = {.lex_state = 52}, + [1438] = {.lex_state = 9}, + [1439] = {.lex_state = 52}, + [1440] = {.lex_state = 3, .external_lex_state = 4}, + [1441] = {.lex_state = 6, .external_lex_state = 3}, + [1442] = {.lex_state = 36, .external_lex_state = 6}, + [1443] = {.lex_state = 43, .external_lex_state = 11}, + [1444] = {.lex_state = 43, .external_lex_state = 11}, + [1445] = {.lex_state = 40}, + [1446] = {.lex_state = 51}, + [1447] = {.lex_state = 47, .external_lex_state = 15}, + [1448] = {.lex_state = 47}, + [1449] = {.lex_state = 9}, + [1450] = {.lex_state = 47, .external_lex_state = 2}, + [1451] = {.lex_state = 9}, + [1452] = {.lex_state = 52}, + [1453] = {.lex_state = 43, .external_lex_state = 17}, + [1454] = {.lex_state = 44, .external_lex_state = 18}, + [1455] = {.lex_state = 44, .external_lex_state = 18}, + [1456] = {.lex_state = 41, .external_lex_state = 11}, + [1457] = {.lex_state = 9, .external_lex_state = 20}, + [1458] = {.lex_state = 47}, + [1459] = {.lex_state = 42, .external_lex_state = 11}, + [1460] = {.lex_state = 9, .external_lex_state = 2}, + [1461] = {.lex_state = 40}, + [1462] = {.lex_state = 47}, + [1463] = {.lex_state = 52, .external_lex_state = 23}, + [1464] = {.lex_state = 52, .external_lex_state = 23}, + [1465] = {.lex_state = 43, .external_lex_state = 23}, + [1466] = {.lex_state = 52}, + [1467] = {.lex_state = 9, .external_lex_state = 2}, + [1468] = {.lex_state = 45, .external_lex_state = 26}, + [1469] = {.lex_state = 45, .external_lex_state = 18}, + [1470] = {.lex_state = 45, .external_lex_state = 26}, + [1471] = {.lex_state = 45, .external_lex_state = 18}, + [1472] = {.lex_state = 44, .external_lex_state = 18}, + [1473] = {.lex_state = 44, .external_lex_state = 18}, + [1474] = {.lex_state = 48, .external_lex_state = 18}, + [1475] = {.lex_state = 9}, + [1476] = {.lex_state = 52, .external_lex_state = 27}, + [1477] = {.lex_state = 9}, + [1478] = {.lex_state = 4, .external_lex_state = 13}, + [1479] = {.lex_state = 52}, + [1480] = {.lex_state = 9, .external_lex_state = 2}, + [1481] = {.lex_state = 52}, + [1482] = {.lex_state = 50}, + [1483] = {.lex_state = 50}, + [1484] = {.lex_state = 47}, + [1485] = {.lex_state = 49, .external_lex_state = 28}, + [1486] = {.lex_state = 52, .external_lex_state = 28}, + [1487] = {.lex_state = 52, .external_lex_state = 28}, + [1488] = {.lex_state = 9, .external_lex_state = 2}, + [1489] = {.lex_state = 45, .external_lex_state = 18}, + [1490] = {.lex_state = 45, .external_lex_state = 18}, + [1491] = {.lex_state = 45, .external_lex_state = 18}, + [1492] = {.lex_state = 45, .external_lex_state = 18}, + [1493] = {.lex_state = 45, .external_lex_state = 26}, + [1494] = {.lex_state = 45, .external_lex_state = 26}, + [1495] = {.lex_state = 45, .external_lex_state = 18}, + [1496] = {.lex_state = 48, .external_lex_state = 18}, + [1497] = {.lex_state = 52, .external_lex_state = 25}, + [1498] = {.lex_state = 52, .external_lex_state = 18}, + [1499] = {.lex_state = 42, .external_lex_state = 18}, + [1500] = {.lex_state = 52, .external_lex_state = 27}, + [1501] = {.lex_state = 52}, + [1502] = {.lex_state = 52}, + [1503] = {.lex_state = 50}, + [1504] = {.lex_state = 43}, + [1505] = {.lex_state = 50}, + [1506] = {.lex_state = 43}, + [1507] = {.lex_state = 52}, + [1508] = {.lex_state = 52}, + [1509] = {.lex_state = 45, .external_lex_state = 18}, + [1510] = {.lex_state = 45, .external_lex_state = 18}, + [1511] = {.lex_state = 45, .external_lex_state = 18}, + [1512] = {.lex_state = 45, .external_lex_state = 18}, + [1513] = {.lex_state = 45, .external_lex_state = 18}, + [1514] = {.lex_state = 52, .external_lex_state = 25}, + [1515] = {.lex_state = 52, .external_lex_state = 18}, + [1516] = {.lex_state = 42, .external_lex_state = 18}, [1517] = {.lex_state = 52}, [1518] = {.lex_state = 43}, [1519] = {.lex_state = 43}, [1520] = {.lex_state = 52}, [1521] = {.lex_state = 52}, - [1522] = {.lex_state = 52}, - [1523] = {.lex_state = 52}, - [1524] = {.lex_state = 52}, - [1525] = {.lex_state = 46, .external_lex_state = 2}, - [1526] = {.lex_state = 3, .external_lex_state = 4}, - [1527] = {.lex_state = 9, .external_lex_state = 2}, - [1528] = {.lex_state = 47, .external_lex_state = 2}, - [1529] = {.lex_state = 9, .external_lex_state = 19}, - [1530] = {.lex_state = 4, .external_lex_state = 14}, - [1531] = {.lex_state = 9, .external_lex_state = 19}, - [1532] = {.lex_state = 4, .external_lex_state = 14}, - [1533] = {.lex_state = 47}, - [1534] = {.lex_state = 47}, - [1535] = {.lex_state = 47}, - [1536] = {.lex_state = 47}, - [1537] = {.lex_state = 51}, - [1538] = {.lex_state = 38}, - [1539] = {.lex_state = 40}, - [1540] = {.lex_state = 51}, - [1541] = {.lex_state = 43, .external_lex_state = 12}, - [1542] = {.lex_state = 47, .external_lex_state = 2}, - [1543] = {.lex_state = 9}, - [1544] = {.lex_state = 9}, + [1522] = {.lex_state = 45, .external_lex_state = 18}, + [1523] = {.lex_state = 45, .external_lex_state = 18}, + [1524] = {.lex_state = 43}, + [1525] = {.lex_state = 43}, + [1526] = {.lex_state = 52}, + [1527] = {.lex_state = 52}, + [1528] = {.lex_state = 52}, + [1529] = {.lex_state = 52}, + [1530] = {.lex_state = 52}, + [1531] = {.lex_state = 46, .external_lex_state = 2}, + [1532] = {.lex_state = 3, .external_lex_state = 4}, + [1533] = {.lex_state = 9, .external_lex_state = 2}, + [1534] = {.lex_state = 47, .external_lex_state = 2}, + [1535] = {.lex_state = 9, .external_lex_state = 19}, + [1536] = {.lex_state = 4, .external_lex_state = 13}, + [1537] = {.lex_state = 9, .external_lex_state = 19}, + [1538] = {.lex_state = 4, .external_lex_state = 13}, + [1539] = {.lex_state = 47}, + [1540] = {.lex_state = 47}, + [1541] = {.lex_state = 47}, + [1542] = {.lex_state = 47}, + [1543] = {.lex_state = 51}, + [1544] = {.lex_state = 38}, [1545] = {.lex_state = 47}, - [1546] = {.lex_state = 44, .external_lex_state = 15}, - [1547] = {.lex_state = 44, .external_lex_state = 15}, - [1548] = {.lex_state = 47, .external_lex_state = 16}, - [1549] = {.lex_state = 47}, - [1550] = {.lex_state = 9}, - [1551] = {.lex_state = 40}, - [1552] = {.lex_state = 42, .external_lex_state = 12}, - [1553] = {.lex_state = 45, .external_lex_state = 24}, - [1554] = {.lex_state = 45, .external_lex_state = 15}, - [1555] = {.lex_state = 44, .external_lex_state = 15}, - [1556] = {.lex_state = 44, .external_lex_state = 15}, - [1557] = {.lex_state = 48, .external_lex_state = 15}, - [1558] = {.lex_state = 45, .external_lex_state = 24}, - [1559] = {.lex_state = 45, .external_lex_state = 15}, - [1560] = {.lex_state = 47}, - [1561] = {.lex_state = 45, .external_lex_state = 15}, - [1562] = {.lex_state = 45, .external_lex_state = 15}, - [1563] = {.lex_state = 45, .external_lex_state = 24}, - [1564] = {.lex_state = 48, .external_lex_state = 15}, - [1565] = {.lex_state = 45, .external_lex_state = 24}, - [1566] = {.lex_state = 45, .external_lex_state = 15}, - [1567] = {.lex_state = 52, .external_lex_state = 23}, - [1568] = {.lex_state = 52, .external_lex_state = 15}, - [1569] = {.lex_state = 42, .external_lex_state = 15}, - [1570] = {.lex_state = 45, .external_lex_state = 15}, - [1571] = {.lex_state = 45, .external_lex_state = 15}, - [1572] = {.lex_state = 47}, - [1573] = {.lex_state = 45, .external_lex_state = 15}, - [1574] = {.lex_state = 45, .external_lex_state = 15}, - [1575] = {.lex_state = 52, .external_lex_state = 23}, - [1576] = {.lex_state = 52, .external_lex_state = 15}, - [1577] = {.lex_state = 42, .external_lex_state = 15}, - [1578] = {.lex_state = 45, .external_lex_state = 15}, - [1579] = {.lex_state = 45, .external_lex_state = 15}, - [1580] = {.lex_state = 45, .external_lex_state = 15}, - [1581] = {.lex_state = 45, .external_lex_state = 15}, - [1582] = {.lex_state = 45, .external_lex_state = 15}, - [1583] = {.lex_state = 51}, - [1584] = {.lex_state = 38}, - [1585] = {.lex_state = 40}, - [1586] = {.lex_state = 51}, - [1587] = {.lex_state = 43, .external_lex_state = 12}, - [1588] = {.lex_state = 47, .external_lex_state = 2}, - [1589] = {.lex_state = 9}, - [1590] = {.lex_state = 9}, + [1546] = {.lex_state = 9}, + [1547] = {.lex_state = 43, .external_lex_state = 11}, + [1548] = {.lex_state = 40}, + [1549] = {.lex_state = 51}, + [1550] = {.lex_state = 47, .external_lex_state = 15}, + [1551] = {.lex_state = 47}, + [1552] = {.lex_state = 9}, + [1553] = {.lex_state = 47, .external_lex_state = 2}, + [1554] = {.lex_state = 9}, + [1555] = {.lex_state = 44, .external_lex_state = 18}, + [1556] = {.lex_state = 44, .external_lex_state = 18}, + [1557] = {.lex_state = 42, .external_lex_state = 11}, + [1558] = {.lex_state = 40}, + [1559] = {.lex_state = 47}, + [1560] = {.lex_state = 45, .external_lex_state = 26}, + [1561] = {.lex_state = 45, .external_lex_state = 18}, + [1562] = {.lex_state = 45, .external_lex_state = 26}, + [1563] = {.lex_state = 45, .external_lex_state = 18}, + [1564] = {.lex_state = 44, .external_lex_state = 18}, + [1565] = {.lex_state = 44, .external_lex_state = 18}, + [1566] = {.lex_state = 48, .external_lex_state = 18}, + [1567] = {.lex_state = 47}, + [1568] = {.lex_state = 45, .external_lex_state = 18}, + [1569] = {.lex_state = 45, .external_lex_state = 18}, + [1570] = {.lex_state = 45, .external_lex_state = 18}, + [1571] = {.lex_state = 45, .external_lex_state = 18}, + [1572] = {.lex_state = 45, .external_lex_state = 26}, + [1573] = {.lex_state = 45, .external_lex_state = 26}, + [1574] = {.lex_state = 45, .external_lex_state = 18}, + [1575] = {.lex_state = 48, .external_lex_state = 18}, + [1576] = {.lex_state = 52, .external_lex_state = 25}, + [1577] = {.lex_state = 52, .external_lex_state = 18}, + [1578] = {.lex_state = 42, .external_lex_state = 18}, + [1579] = {.lex_state = 45, .external_lex_state = 18}, + [1580] = {.lex_state = 45, .external_lex_state = 18}, + [1581] = {.lex_state = 45, .external_lex_state = 18}, + [1582] = {.lex_state = 45, .external_lex_state = 18}, + [1583] = {.lex_state = 45, .external_lex_state = 18}, + [1584] = {.lex_state = 52, .external_lex_state = 25}, + [1585] = {.lex_state = 52, .external_lex_state = 18}, + [1586] = {.lex_state = 42, .external_lex_state = 18}, + [1587] = {.lex_state = 45, .external_lex_state = 18}, + [1588] = {.lex_state = 45, .external_lex_state = 18}, + [1589] = {.lex_state = 51}, + [1590] = {.lex_state = 38}, [1591] = {.lex_state = 47}, - [1592] = {.lex_state = 44, .external_lex_state = 15}, - [1593] = {.lex_state = 44, .external_lex_state = 15}, - [1594] = {.lex_state = 47, .external_lex_state = 16}, - [1595] = {.lex_state = 9}, - [1596] = {.lex_state = 40}, - [1597] = {.lex_state = 45, .external_lex_state = 24}, - [1598] = {.lex_state = 45, .external_lex_state = 15}, - [1599] = {.lex_state = 44, .external_lex_state = 15}, - [1600] = {.lex_state = 44, .external_lex_state = 15}, - [1601] = {.lex_state = 48, .external_lex_state = 15}, - [1602] = {.lex_state = 45, .external_lex_state = 24}, - [1603] = {.lex_state = 45, .external_lex_state = 15}, - [1604] = {.lex_state = 47}, - [1605] = {.lex_state = 45, .external_lex_state = 15}, - [1606] = {.lex_state = 45, .external_lex_state = 15}, - [1607] = {.lex_state = 45, .external_lex_state = 24}, - [1608] = {.lex_state = 48, .external_lex_state = 15}, - [1609] = {.lex_state = 45, .external_lex_state = 24}, - [1610] = {.lex_state = 45, .external_lex_state = 15}, - [1611] = {.lex_state = 52, .external_lex_state = 23}, - [1612] = {.lex_state = 52, .external_lex_state = 15}, - [1613] = {.lex_state = 42, .external_lex_state = 15}, - [1614] = {.lex_state = 45, .external_lex_state = 15}, - [1615] = {.lex_state = 45, .external_lex_state = 15}, - [1616] = {.lex_state = 47}, - [1617] = {.lex_state = 45, .external_lex_state = 15}, - [1618] = {.lex_state = 45, .external_lex_state = 15}, - [1619] = {.lex_state = 52, .external_lex_state = 23}, - [1620] = {.lex_state = 52, .external_lex_state = 15}, - [1621] = {.lex_state = 42, .external_lex_state = 15}, - [1622] = {.lex_state = 45, .external_lex_state = 15}, - [1623] = {.lex_state = 45, .external_lex_state = 15}, - [1624] = {.lex_state = 45, .external_lex_state = 15}, - [1625] = {.lex_state = 45, .external_lex_state = 15}, - [1626] = {.lex_state = 45, .external_lex_state = 15}, - [1627] = {.lex_state = 51}, - [1628] = {.lex_state = 38}, - [1629] = {.lex_state = 40}, - [1630] = {.lex_state = 51}, - [1631] = {.lex_state = 43, .external_lex_state = 12}, - [1632] = {.lex_state = 47, .external_lex_state = 2}, - [1633] = {.lex_state = 9}, - [1634] = {.lex_state = 9}, + [1592] = {.lex_state = 9}, + [1593] = {.lex_state = 43, .external_lex_state = 11}, + [1594] = {.lex_state = 40}, + [1595] = {.lex_state = 51}, + [1596] = {.lex_state = 47, .external_lex_state = 15}, + [1597] = {.lex_state = 9}, + [1598] = {.lex_state = 47, .external_lex_state = 2}, + [1599] = {.lex_state = 9}, + [1600] = {.lex_state = 44, .external_lex_state = 18}, + [1601] = {.lex_state = 44, .external_lex_state = 18}, + [1602] = {.lex_state = 40}, + [1603] = {.lex_state = 47}, + [1604] = {.lex_state = 45, .external_lex_state = 26}, + [1605] = {.lex_state = 45, .external_lex_state = 18}, + [1606] = {.lex_state = 45, .external_lex_state = 26}, + [1607] = {.lex_state = 45, .external_lex_state = 18}, + [1608] = {.lex_state = 44, .external_lex_state = 18}, + [1609] = {.lex_state = 44, .external_lex_state = 18}, + [1610] = {.lex_state = 48, .external_lex_state = 18}, + [1611] = {.lex_state = 47}, + [1612] = {.lex_state = 45, .external_lex_state = 18}, + [1613] = {.lex_state = 45, .external_lex_state = 18}, + [1614] = {.lex_state = 45, .external_lex_state = 18}, + [1615] = {.lex_state = 45, .external_lex_state = 18}, + [1616] = {.lex_state = 45, .external_lex_state = 26}, + [1617] = {.lex_state = 45, .external_lex_state = 26}, + [1618] = {.lex_state = 45, .external_lex_state = 18}, + [1619] = {.lex_state = 48, .external_lex_state = 18}, + [1620] = {.lex_state = 52, .external_lex_state = 25}, + [1621] = {.lex_state = 52, .external_lex_state = 18}, + [1622] = {.lex_state = 42, .external_lex_state = 18}, + [1623] = {.lex_state = 45, .external_lex_state = 18}, + [1624] = {.lex_state = 45, .external_lex_state = 18}, + [1625] = {.lex_state = 45, .external_lex_state = 18}, + [1626] = {.lex_state = 45, .external_lex_state = 18}, + [1627] = {.lex_state = 45, .external_lex_state = 18}, + [1628] = {.lex_state = 52, .external_lex_state = 25}, + [1629] = {.lex_state = 52, .external_lex_state = 18}, + [1630] = {.lex_state = 42, .external_lex_state = 18}, + [1631] = {.lex_state = 45, .external_lex_state = 18}, + [1632] = {.lex_state = 45, .external_lex_state = 18}, + [1633] = {.lex_state = 51}, + [1634] = {.lex_state = 38}, [1635] = {.lex_state = 47}, - [1636] = {.lex_state = 44, .external_lex_state = 15}, - [1637] = {.lex_state = 44, .external_lex_state = 15}, - [1638] = {.lex_state = 47, .external_lex_state = 16}, - [1639] = {.lex_state = 9}, - [1640] = {.lex_state = 40}, - [1641] = {.lex_state = 45, .external_lex_state = 24}, - [1642] = {.lex_state = 45, .external_lex_state = 15}, - [1643] = {.lex_state = 44, .external_lex_state = 15}, - [1644] = {.lex_state = 44, .external_lex_state = 15}, - [1645] = {.lex_state = 48, .external_lex_state = 15}, - [1646] = {.lex_state = 45, .external_lex_state = 24}, - [1647] = {.lex_state = 45, .external_lex_state = 15}, - [1648] = {.lex_state = 47}, - [1649] = {.lex_state = 45, .external_lex_state = 15}, - [1650] = {.lex_state = 45, .external_lex_state = 15}, - [1651] = {.lex_state = 45, .external_lex_state = 24}, - [1652] = {.lex_state = 48, .external_lex_state = 15}, - [1653] = {.lex_state = 45, .external_lex_state = 24}, - [1654] = {.lex_state = 45, .external_lex_state = 15}, - [1655] = {.lex_state = 52, .external_lex_state = 23}, - [1656] = {.lex_state = 52, .external_lex_state = 15}, - [1657] = {.lex_state = 42, .external_lex_state = 15}, - [1658] = {.lex_state = 45, .external_lex_state = 15}, - [1659] = {.lex_state = 45, .external_lex_state = 15}, - [1660] = {.lex_state = 47}, - [1661] = {.lex_state = 45, .external_lex_state = 15}, - [1662] = {.lex_state = 45, .external_lex_state = 15}, - [1663] = {.lex_state = 52, .external_lex_state = 23}, - [1664] = {.lex_state = 52, .external_lex_state = 15}, - [1665] = {.lex_state = 42, .external_lex_state = 15}, - [1666] = {.lex_state = 45, .external_lex_state = 15}, - [1667] = {.lex_state = 45, .external_lex_state = 15}, - [1668] = {.lex_state = 45, .external_lex_state = 15}, - [1669] = {.lex_state = 45, .external_lex_state = 15}, - [1670] = {.lex_state = 45, .external_lex_state = 15}, - [1671] = {.lex_state = 51}, - [1672] = {.lex_state = 38}, - [1673] = {.lex_state = 40}, - [1674] = {.lex_state = 51}, - [1675] = {.lex_state = 43, .external_lex_state = 12}, - [1676] = {.lex_state = 47, .external_lex_state = 2}, - [1677] = {.lex_state = 9}, - [1678] = {.lex_state = 9}, + [1636] = {.lex_state = 9}, + [1637] = {.lex_state = 43, .external_lex_state = 11}, + [1638] = {.lex_state = 40}, + [1639] = {.lex_state = 51}, + [1640] = {.lex_state = 47, .external_lex_state = 15}, + [1641] = {.lex_state = 9}, + [1642] = {.lex_state = 47, .external_lex_state = 2}, + [1643] = {.lex_state = 9}, + [1644] = {.lex_state = 44, .external_lex_state = 18}, + [1645] = {.lex_state = 44, .external_lex_state = 18}, + [1646] = {.lex_state = 40}, + [1647] = {.lex_state = 47}, + [1648] = {.lex_state = 45, .external_lex_state = 26}, + [1649] = {.lex_state = 45, .external_lex_state = 18}, + [1650] = {.lex_state = 45, .external_lex_state = 26}, + [1651] = {.lex_state = 45, .external_lex_state = 18}, + [1652] = {.lex_state = 44, .external_lex_state = 18}, + [1653] = {.lex_state = 44, .external_lex_state = 18}, + [1654] = {.lex_state = 48, .external_lex_state = 18}, + [1655] = {.lex_state = 47}, + [1656] = {.lex_state = 45, .external_lex_state = 18}, + [1657] = {.lex_state = 45, .external_lex_state = 18}, + [1658] = {.lex_state = 45, .external_lex_state = 18}, + [1659] = {.lex_state = 45, .external_lex_state = 18}, + [1660] = {.lex_state = 45, .external_lex_state = 26}, + [1661] = {.lex_state = 45, .external_lex_state = 26}, + [1662] = {.lex_state = 45, .external_lex_state = 18}, + [1663] = {.lex_state = 48, .external_lex_state = 18}, + [1664] = {.lex_state = 52, .external_lex_state = 25}, + [1665] = {.lex_state = 52, .external_lex_state = 18}, + [1666] = {.lex_state = 42, .external_lex_state = 18}, + [1667] = {.lex_state = 45, .external_lex_state = 18}, + [1668] = {.lex_state = 45, .external_lex_state = 18}, + [1669] = {.lex_state = 45, .external_lex_state = 18}, + [1670] = {.lex_state = 45, .external_lex_state = 18}, + [1671] = {.lex_state = 45, .external_lex_state = 18}, + [1672] = {.lex_state = 52, .external_lex_state = 25}, + [1673] = {.lex_state = 52, .external_lex_state = 18}, + [1674] = {.lex_state = 42, .external_lex_state = 18}, + [1675] = {.lex_state = 45, .external_lex_state = 18}, + [1676] = {.lex_state = 45, .external_lex_state = 18}, + [1677] = {.lex_state = 51}, + [1678] = {.lex_state = 38}, [1679] = {.lex_state = 47}, - [1680] = {.lex_state = 44, .external_lex_state = 15}, - [1681] = {.lex_state = 44, .external_lex_state = 15}, - [1682] = {.lex_state = 47, .external_lex_state = 16}, - [1683] = {.lex_state = 9}, - [1684] = {.lex_state = 40}, - [1685] = {.lex_state = 45, .external_lex_state = 24}, - [1686] = {.lex_state = 45, .external_lex_state = 15}, - [1687] = {.lex_state = 44, .external_lex_state = 15}, - [1688] = {.lex_state = 44, .external_lex_state = 15}, - [1689] = {.lex_state = 48, .external_lex_state = 15}, - [1690] = {.lex_state = 45, .external_lex_state = 24}, - [1691] = {.lex_state = 45, .external_lex_state = 15}, - [1692] = {.lex_state = 47}, - [1693] = {.lex_state = 45, .external_lex_state = 15}, - [1694] = {.lex_state = 45, .external_lex_state = 15}, - [1695] = {.lex_state = 45, .external_lex_state = 24}, - [1696] = {.lex_state = 48, .external_lex_state = 15}, - [1697] = {.lex_state = 45, .external_lex_state = 24}, - [1698] = {.lex_state = 45, .external_lex_state = 15}, - [1699] = {.lex_state = 52, .external_lex_state = 23}, - [1700] = {.lex_state = 52, .external_lex_state = 15}, - [1701] = {.lex_state = 42, .external_lex_state = 15}, - [1702] = {.lex_state = 45, .external_lex_state = 15}, - [1703] = {.lex_state = 45, .external_lex_state = 15}, - [1704] = {.lex_state = 47}, - [1705] = {.lex_state = 45, .external_lex_state = 15}, - [1706] = {.lex_state = 45, .external_lex_state = 15}, - [1707] = {.lex_state = 52, .external_lex_state = 23}, - [1708] = {.lex_state = 52, .external_lex_state = 15}, - [1709] = {.lex_state = 42, .external_lex_state = 15}, - [1710] = {.lex_state = 45, .external_lex_state = 15}, - [1711] = {.lex_state = 45, .external_lex_state = 15}, - [1712] = {.lex_state = 45, .external_lex_state = 15}, - [1713] = {.lex_state = 45, .external_lex_state = 15}, - [1714] = {.lex_state = 45, .external_lex_state = 15}, - [1715] = {.lex_state = 51}, - [1716] = {.lex_state = 38}, - [1717] = {.lex_state = 40}, - [1718] = {.lex_state = 51}, - [1719] = {.lex_state = 43, .external_lex_state = 12}, - [1720] = {.lex_state = 47, .external_lex_state = 2}, - [1721] = {.lex_state = 9}, - [1722] = {.lex_state = 9}, + [1680] = {.lex_state = 9}, + [1681] = {.lex_state = 43, .external_lex_state = 11}, + [1682] = {.lex_state = 40}, + [1683] = {.lex_state = 51}, + [1684] = {.lex_state = 47, .external_lex_state = 15}, + [1685] = {.lex_state = 9}, + [1686] = {.lex_state = 47, .external_lex_state = 2}, + [1687] = {.lex_state = 9}, + [1688] = {.lex_state = 44, .external_lex_state = 18}, + [1689] = {.lex_state = 44, .external_lex_state = 18}, + [1690] = {.lex_state = 40}, + [1691] = {.lex_state = 47}, + [1692] = {.lex_state = 45, .external_lex_state = 26}, + [1693] = {.lex_state = 45, .external_lex_state = 18}, + [1694] = {.lex_state = 45, .external_lex_state = 26}, + [1695] = {.lex_state = 45, .external_lex_state = 18}, + [1696] = {.lex_state = 44, .external_lex_state = 18}, + [1697] = {.lex_state = 44, .external_lex_state = 18}, + [1698] = {.lex_state = 48, .external_lex_state = 18}, + [1699] = {.lex_state = 47}, + [1700] = {.lex_state = 45, .external_lex_state = 18}, + [1701] = {.lex_state = 45, .external_lex_state = 18}, + [1702] = {.lex_state = 45, .external_lex_state = 18}, + [1703] = {.lex_state = 45, .external_lex_state = 18}, + [1704] = {.lex_state = 45, .external_lex_state = 26}, + [1705] = {.lex_state = 45, .external_lex_state = 26}, + [1706] = {.lex_state = 45, .external_lex_state = 18}, + [1707] = {.lex_state = 48, .external_lex_state = 18}, + [1708] = {.lex_state = 52, .external_lex_state = 25}, + [1709] = {.lex_state = 52, .external_lex_state = 18}, + [1710] = {.lex_state = 42, .external_lex_state = 18}, + [1711] = {.lex_state = 45, .external_lex_state = 18}, + [1712] = {.lex_state = 45, .external_lex_state = 18}, + [1713] = {.lex_state = 45, .external_lex_state = 18}, + [1714] = {.lex_state = 45, .external_lex_state = 18}, + [1715] = {.lex_state = 45, .external_lex_state = 18}, + [1716] = {.lex_state = 52, .external_lex_state = 25}, + [1717] = {.lex_state = 52, .external_lex_state = 18}, + [1718] = {.lex_state = 42, .external_lex_state = 18}, + [1719] = {.lex_state = 45, .external_lex_state = 18}, + [1720] = {.lex_state = 45, .external_lex_state = 18}, + [1721] = {.lex_state = 51}, + [1722] = {.lex_state = 38}, [1723] = {.lex_state = 47}, - [1724] = {.lex_state = 44, .external_lex_state = 15}, - [1725] = {.lex_state = 44, .external_lex_state = 15}, - [1726] = {.lex_state = 47, .external_lex_state = 16}, - [1727] = {.lex_state = 9}, - [1728] = {.lex_state = 40}, - [1729] = {.lex_state = 45, .external_lex_state = 24}, - [1730] = {.lex_state = 45, .external_lex_state = 15}, - [1731] = {.lex_state = 44, .external_lex_state = 15}, - [1732] = {.lex_state = 44, .external_lex_state = 15}, - [1733] = {.lex_state = 48, .external_lex_state = 15}, - [1734] = {.lex_state = 45, .external_lex_state = 24}, - [1735] = {.lex_state = 45, .external_lex_state = 15}, - [1736] = {.lex_state = 47}, - [1737] = {.lex_state = 45, .external_lex_state = 15}, - [1738] = {.lex_state = 45, .external_lex_state = 15}, - [1739] = {.lex_state = 45, .external_lex_state = 24}, - [1740] = {.lex_state = 48, .external_lex_state = 15}, - [1741] = {.lex_state = 45, .external_lex_state = 24}, - [1742] = {.lex_state = 45, .external_lex_state = 15}, - [1743] = {.lex_state = 52, .external_lex_state = 23}, - [1744] = {.lex_state = 52, .external_lex_state = 15}, - [1745] = {.lex_state = 42, .external_lex_state = 15}, - [1746] = {.lex_state = 45, .external_lex_state = 15}, - [1747] = {.lex_state = 45, .external_lex_state = 15}, - [1748] = {.lex_state = 47}, - [1749] = {.lex_state = 45, .external_lex_state = 15}, - [1750] = {.lex_state = 45, .external_lex_state = 15}, - [1751] = {.lex_state = 52, .external_lex_state = 23}, - [1752] = {.lex_state = 52, .external_lex_state = 15}, - [1753] = {.lex_state = 42, .external_lex_state = 15}, - [1754] = {.lex_state = 45, .external_lex_state = 15}, - [1755] = {.lex_state = 45, .external_lex_state = 15}, - [1756] = {.lex_state = 45, .external_lex_state = 15}, - [1757] = {.lex_state = 45, .external_lex_state = 15}, - [1758] = {.lex_state = 45, .external_lex_state = 15}, - [1759] = {.lex_state = 51}, - [1760] = {.lex_state = 38}, - [1761] = {.lex_state = 40}, - [1762] = {.lex_state = 51}, - [1763] = {.lex_state = 43, .external_lex_state = 12}, - [1764] = {.lex_state = 47, .external_lex_state = 2}, - [1765] = {.lex_state = 9}, - [1766] = {.lex_state = 9}, + [1724] = {.lex_state = 9}, + [1725] = {.lex_state = 43, .external_lex_state = 11}, + [1726] = {.lex_state = 40}, + [1727] = {.lex_state = 51}, + [1728] = {.lex_state = 47, .external_lex_state = 15}, + [1729] = {.lex_state = 9}, + [1730] = {.lex_state = 47, .external_lex_state = 2}, + [1731] = {.lex_state = 9}, + [1732] = {.lex_state = 44, .external_lex_state = 18}, + [1733] = {.lex_state = 44, .external_lex_state = 18}, + [1734] = {.lex_state = 40}, + [1735] = {.lex_state = 47}, + [1736] = {.lex_state = 45, .external_lex_state = 26}, + [1737] = {.lex_state = 45, .external_lex_state = 18}, + [1738] = {.lex_state = 45, .external_lex_state = 26}, + [1739] = {.lex_state = 45, .external_lex_state = 18}, + [1740] = {.lex_state = 44, .external_lex_state = 18}, + [1741] = {.lex_state = 44, .external_lex_state = 18}, + [1742] = {.lex_state = 48, .external_lex_state = 18}, + [1743] = {.lex_state = 47}, + [1744] = {.lex_state = 45, .external_lex_state = 18}, + [1745] = {.lex_state = 45, .external_lex_state = 18}, + [1746] = {.lex_state = 45, .external_lex_state = 18}, + [1747] = {.lex_state = 45, .external_lex_state = 18}, + [1748] = {.lex_state = 45, .external_lex_state = 26}, + [1749] = {.lex_state = 45, .external_lex_state = 26}, + [1750] = {.lex_state = 45, .external_lex_state = 18}, + [1751] = {.lex_state = 48, .external_lex_state = 18}, + [1752] = {.lex_state = 52, .external_lex_state = 25}, + [1753] = {.lex_state = 52, .external_lex_state = 18}, + [1754] = {.lex_state = 42, .external_lex_state = 18}, + [1755] = {.lex_state = 45, .external_lex_state = 18}, + [1756] = {.lex_state = 45, .external_lex_state = 18}, + [1757] = {.lex_state = 45, .external_lex_state = 18}, + [1758] = {.lex_state = 45, .external_lex_state = 18}, + [1759] = {.lex_state = 45, .external_lex_state = 18}, + [1760] = {.lex_state = 52, .external_lex_state = 25}, + [1761] = {.lex_state = 52, .external_lex_state = 18}, + [1762] = {.lex_state = 42, .external_lex_state = 18}, + [1763] = {.lex_state = 45, .external_lex_state = 18}, + [1764] = {.lex_state = 45, .external_lex_state = 18}, + [1765] = {.lex_state = 51}, + [1766] = {.lex_state = 38}, [1767] = {.lex_state = 47}, - [1768] = {.lex_state = 44, .external_lex_state = 15}, - [1769] = {.lex_state = 44, .external_lex_state = 15}, - [1770] = {.lex_state = 47, .external_lex_state = 16}, - [1771] = {.lex_state = 9}, - [1772] = {.lex_state = 40}, - [1773] = {.lex_state = 45, .external_lex_state = 24}, - [1774] = {.lex_state = 45, .external_lex_state = 15}, - [1775] = {.lex_state = 44, .external_lex_state = 15}, - [1776] = {.lex_state = 44, .external_lex_state = 15}, - [1777] = {.lex_state = 48, .external_lex_state = 15}, - [1778] = {.lex_state = 45, .external_lex_state = 24}, - [1779] = {.lex_state = 45, .external_lex_state = 15}, - [1780] = {.lex_state = 47}, - [1781] = {.lex_state = 45, .external_lex_state = 15}, - [1782] = {.lex_state = 45, .external_lex_state = 15}, - [1783] = {.lex_state = 45, .external_lex_state = 24}, - [1784] = {.lex_state = 48, .external_lex_state = 15}, - [1785] = {.lex_state = 45, .external_lex_state = 24}, - [1786] = {.lex_state = 45, .external_lex_state = 15}, - [1787] = {.lex_state = 52, .external_lex_state = 23}, - [1788] = {.lex_state = 52, .external_lex_state = 15}, - [1789] = {.lex_state = 42, .external_lex_state = 15}, - [1790] = {.lex_state = 45, .external_lex_state = 15}, - [1791] = {.lex_state = 45, .external_lex_state = 15}, - [1792] = {.lex_state = 47}, - [1793] = {.lex_state = 45, .external_lex_state = 15}, - [1794] = {.lex_state = 45, .external_lex_state = 15}, - [1795] = {.lex_state = 52, .external_lex_state = 23}, - [1796] = {.lex_state = 52, .external_lex_state = 15}, - [1797] = {.lex_state = 42, .external_lex_state = 15}, - [1798] = {.lex_state = 45, .external_lex_state = 15}, - [1799] = {.lex_state = 45, .external_lex_state = 15}, - [1800] = {.lex_state = 45, .external_lex_state = 15}, - [1801] = {.lex_state = 45, .external_lex_state = 15}, - [1802] = {.lex_state = 45, .external_lex_state = 15}, - [1803] = {.lex_state = 51}, - [1804] = {.lex_state = 38}, - [1805] = {.lex_state = 40}, - [1806] = {.lex_state = 51}, - [1807] = {.lex_state = 43, .external_lex_state = 12}, - [1808] = {.lex_state = 47, .external_lex_state = 2}, - [1809] = {.lex_state = 9}, - [1810] = {.lex_state = 9}, + [1768] = {.lex_state = 9}, + [1769] = {.lex_state = 43, .external_lex_state = 11}, + [1770] = {.lex_state = 40}, + [1771] = {.lex_state = 51}, + [1772] = {.lex_state = 47, .external_lex_state = 15}, + [1773] = {.lex_state = 9}, + [1774] = {.lex_state = 47, .external_lex_state = 2}, + [1775] = {.lex_state = 9}, + [1776] = {.lex_state = 44, .external_lex_state = 18}, + [1777] = {.lex_state = 44, .external_lex_state = 18}, + [1778] = {.lex_state = 40}, + [1779] = {.lex_state = 47}, + [1780] = {.lex_state = 45, .external_lex_state = 26}, + [1781] = {.lex_state = 45, .external_lex_state = 18}, + [1782] = {.lex_state = 45, .external_lex_state = 26}, + [1783] = {.lex_state = 45, .external_lex_state = 18}, + [1784] = {.lex_state = 44, .external_lex_state = 18}, + [1785] = {.lex_state = 44, .external_lex_state = 18}, + [1786] = {.lex_state = 48, .external_lex_state = 18}, + [1787] = {.lex_state = 47}, + [1788] = {.lex_state = 45, .external_lex_state = 18}, + [1789] = {.lex_state = 45, .external_lex_state = 18}, + [1790] = {.lex_state = 45, .external_lex_state = 18}, + [1791] = {.lex_state = 45, .external_lex_state = 18}, + [1792] = {.lex_state = 45, .external_lex_state = 26}, + [1793] = {.lex_state = 45, .external_lex_state = 26}, + [1794] = {.lex_state = 45, .external_lex_state = 18}, + [1795] = {.lex_state = 48, .external_lex_state = 18}, + [1796] = {.lex_state = 52, .external_lex_state = 25}, + [1797] = {.lex_state = 52, .external_lex_state = 18}, + [1798] = {.lex_state = 42, .external_lex_state = 18}, + [1799] = {.lex_state = 45, .external_lex_state = 18}, + [1800] = {.lex_state = 45, .external_lex_state = 18}, + [1801] = {.lex_state = 45, .external_lex_state = 18}, + [1802] = {.lex_state = 45, .external_lex_state = 18}, + [1803] = {.lex_state = 45, .external_lex_state = 18}, + [1804] = {.lex_state = 52, .external_lex_state = 25}, + [1805] = {.lex_state = 52, .external_lex_state = 18}, + [1806] = {.lex_state = 42, .external_lex_state = 18}, + [1807] = {.lex_state = 45, .external_lex_state = 18}, + [1808] = {.lex_state = 45, .external_lex_state = 18}, + [1809] = {.lex_state = 51}, + [1810] = {.lex_state = 38}, [1811] = {.lex_state = 47}, - [1812] = {.lex_state = 44, .external_lex_state = 15}, - [1813] = {.lex_state = 44, .external_lex_state = 15}, - [1814] = {.lex_state = 9}, - [1815] = {.lex_state = 40}, - [1816] = {.lex_state = 45, .external_lex_state = 24}, - [1817] = {.lex_state = 45, .external_lex_state = 15}, - [1818] = {.lex_state = 44, .external_lex_state = 15}, - [1819] = {.lex_state = 44, .external_lex_state = 15}, - [1820] = {.lex_state = 48, .external_lex_state = 15}, - [1821] = {.lex_state = 45, .external_lex_state = 24}, - [1822] = {.lex_state = 45, .external_lex_state = 15}, - [1823] = {.lex_state = 45, .external_lex_state = 15}, - [1824] = {.lex_state = 45, .external_lex_state = 15}, - [1825] = {.lex_state = 45, .external_lex_state = 24}, - [1826] = {.lex_state = 48, .external_lex_state = 15}, - [1827] = {.lex_state = 45, .external_lex_state = 24}, - [1828] = {.lex_state = 45, .external_lex_state = 15}, - [1829] = {.lex_state = 52, .external_lex_state = 23}, - [1830] = {.lex_state = 52, .external_lex_state = 15}, - [1831] = {.lex_state = 42, .external_lex_state = 15}, - [1832] = {.lex_state = 45, .external_lex_state = 15}, - [1833] = {.lex_state = 45, .external_lex_state = 15}, - [1834] = {.lex_state = 45, .external_lex_state = 15}, - [1835] = {.lex_state = 45, .external_lex_state = 15}, - [1836] = {.lex_state = 52, .external_lex_state = 23}, - [1837] = {.lex_state = 52, .external_lex_state = 15}, - [1838] = {.lex_state = 42, .external_lex_state = 15}, - [1839] = {.lex_state = 45, .external_lex_state = 15}, - [1840] = {.lex_state = 45, .external_lex_state = 15}, - [1841] = {.lex_state = 45, .external_lex_state = 15}, - [1842] = {.lex_state = 45, .external_lex_state = 15}, - [1843] = {.lex_state = 45, .external_lex_state = 15}, - [1844] = {.lex_state = 51}, - [1845] = {.lex_state = 38}, - [1846] = {.lex_state = 40}, - [1847] = {.lex_state = 51}, - [1848] = {.lex_state = 43, .external_lex_state = 12}, - [1849] = {.lex_state = 47, .external_lex_state = 2}, - [1850] = {.lex_state = 9}, - [1851] = {.lex_state = 9}, + [1812] = {.lex_state = 9}, + [1813] = {.lex_state = 43, .external_lex_state = 11}, + [1814] = {.lex_state = 40}, + [1815] = {.lex_state = 51}, + [1816] = {.lex_state = 9}, + [1817] = {.lex_state = 47, .external_lex_state = 2}, + [1818] = {.lex_state = 9}, + [1819] = {.lex_state = 44, .external_lex_state = 18}, + [1820] = {.lex_state = 44, .external_lex_state = 18}, + [1821] = {.lex_state = 40}, + [1822] = {.lex_state = 45, .external_lex_state = 26}, + [1823] = {.lex_state = 45, .external_lex_state = 18}, + [1824] = {.lex_state = 45, .external_lex_state = 26}, + [1825] = {.lex_state = 45, .external_lex_state = 18}, + [1826] = {.lex_state = 44, .external_lex_state = 18}, + [1827] = {.lex_state = 44, .external_lex_state = 18}, + [1828] = {.lex_state = 48, .external_lex_state = 18}, + [1829] = {.lex_state = 45, .external_lex_state = 18}, + [1830] = {.lex_state = 45, .external_lex_state = 18}, + [1831] = {.lex_state = 45, .external_lex_state = 18}, + [1832] = {.lex_state = 45, .external_lex_state = 18}, + [1833] = {.lex_state = 45, .external_lex_state = 26}, + [1834] = {.lex_state = 45, .external_lex_state = 26}, + [1835] = {.lex_state = 45, .external_lex_state = 18}, + [1836] = {.lex_state = 48, .external_lex_state = 18}, + [1837] = {.lex_state = 52, .external_lex_state = 25}, + [1838] = {.lex_state = 52, .external_lex_state = 18}, + [1839] = {.lex_state = 42, .external_lex_state = 18}, + [1840] = {.lex_state = 45, .external_lex_state = 18}, + [1841] = {.lex_state = 45, .external_lex_state = 18}, + [1842] = {.lex_state = 45, .external_lex_state = 18}, + [1843] = {.lex_state = 45, .external_lex_state = 18}, + [1844] = {.lex_state = 45, .external_lex_state = 18}, + [1845] = {.lex_state = 52, .external_lex_state = 25}, + [1846] = {.lex_state = 52, .external_lex_state = 18}, + [1847] = {.lex_state = 42, .external_lex_state = 18}, + [1848] = {.lex_state = 45, .external_lex_state = 18}, + [1849] = {.lex_state = 45, .external_lex_state = 18}, + [1850] = {.lex_state = 51}, + [1851] = {.lex_state = 38}, [1852] = {.lex_state = 47}, - [1853] = {.lex_state = 44, .external_lex_state = 15}, - [1854] = {.lex_state = 44, .external_lex_state = 15}, - [1855] = {.lex_state = 9}, - [1856] = {.lex_state = 40}, - [1857] = {.lex_state = 45, .external_lex_state = 24}, - [1858] = {.lex_state = 45, .external_lex_state = 15}, - [1859] = {.lex_state = 44, .external_lex_state = 15}, - [1860] = {.lex_state = 44, .external_lex_state = 15}, - [1861] = {.lex_state = 48, .external_lex_state = 15}, - [1862] = {.lex_state = 45, .external_lex_state = 24}, - [1863] = {.lex_state = 45, .external_lex_state = 15}, - [1864] = {.lex_state = 45, .external_lex_state = 15}, - [1865] = {.lex_state = 45, .external_lex_state = 15}, - [1866] = {.lex_state = 45, .external_lex_state = 24}, - [1867] = {.lex_state = 48, .external_lex_state = 15}, - [1868] = {.lex_state = 45, .external_lex_state = 24}, - [1869] = {.lex_state = 45, .external_lex_state = 15}, - [1870] = {.lex_state = 52, .external_lex_state = 23}, - [1871] = {.lex_state = 52, .external_lex_state = 15}, - [1872] = {.lex_state = 42, .external_lex_state = 15}, - [1873] = {.lex_state = 45, .external_lex_state = 15}, - [1874] = {.lex_state = 45, .external_lex_state = 15}, - [1875] = {.lex_state = 45, .external_lex_state = 15}, - [1876] = {.lex_state = 45, .external_lex_state = 15}, - [1877] = {.lex_state = 52, .external_lex_state = 23}, - [1878] = {.lex_state = 52, .external_lex_state = 15}, - [1879] = {.lex_state = 42, .external_lex_state = 15}, - [1880] = {.lex_state = 45, .external_lex_state = 15}, - [1881] = {.lex_state = 45, .external_lex_state = 15}, - [1882] = {.lex_state = 45, .external_lex_state = 15}, - [1883] = {.lex_state = 45, .external_lex_state = 15}, - [1884] = {.lex_state = 45, .external_lex_state = 15}, - [1885] = {.lex_state = 51}, - [1886] = {.lex_state = 38}, - [1887] = {.lex_state = 40}, - [1888] = {.lex_state = 51}, - [1889] = {.lex_state = 43, .external_lex_state = 12}, - [1890] = {.lex_state = 47, .external_lex_state = 2}, - [1891] = {.lex_state = 9}, - [1892] = {.lex_state = 9}, + [1853] = {.lex_state = 9}, + [1854] = {.lex_state = 43, .external_lex_state = 11}, + [1855] = {.lex_state = 40}, + [1856] = {.lex_state = 51}, + [1857] = {.lex_state = 9}, + [1858] = {.lex_state = 47, .external_lex_state = 2}, + [1859] = {.lex_state = 9}, + [1860] = {.lex_state = 44, .external_lex_state = 18}, + [1861] = {.lex_state = 44, .external_lex_state = 18}, + [1862] = {.lex_state = 40}, + [1863] = {.lex_state = 45, .external_lex_state = 26}, + [1864] = {.lex_state = 45, .external_lex_state = 18}, + [1865] = {.lex_state = 45, .external_lex_state = 26}, + [1866] = {.lex_state = 45, .external_lex_state = 18}, + [1867] = {.lex_state = 44, .external_lex_state = 18}, + [1868] = {.lex_state = 44, .external_lex_state = 18}, + [1869] = {.lex_state = 48, .external_lex_state = 18}, + [1870] = {.lex_state = 45, .external_lex_state = 18}, + [1871] = {.lex_state = 45, .external_lex_state = 18}, + [1872] = {.lex_state = 45, .external_lex_state = 18}, + [1873] = {.lex_state = 45, .external_lex_state = 18}, + [1874] = {.lex_state = 45, .external_lex_state = 26}, + [1875] = {.lex_state = 45, .external_lex_state = 26}, + [1876] = {.lex_state = 45, .external_lex_state = 18}, + [1877] = {.lex_state = 48, .external_lex_state = 18}, + [1878] = {.lex_state = 52, .external_lex_state = 25}, + [1879] = {.lex_state = 52, .external_lex_state = 18}, + [1880] = {.lex_state = 42, .external_lex_state = 18}, + [1881] = {.lex_state = 45, .external_lex_state = 18}, + [1882] = {.lex_state = 45, .external_lex_state = 18}, + [1883] = {.lex_state = 45, .external_lex_state = 18}, + [1884] = {.lex_state = 45, .external_lex_state = 18}, + [1885] = {.lex_state = 45, .external_lex_state = 18}, + [1886] = {.lex_state = 52, .external_lex_state = 25}, + [1887] = {.lex_state = 52, .external_lex_state = 18}, + [1888] = {.lex_state = 42, .external_lex_state = 18}, + [1889] = {.lex_state = 45, .external_lex_state = 18}, + [1890] = {.lex_state = 45, .external_lex_state = 18}, + [1891] = {.lex_state = 51}, + [1892] = {.lex_state = 38}, [1893] = {.lex_state = 47}, - [1894] = {.lex_state = 44, .external_lex_state = 15}, - [1895] = {.lex_state = 44, .external_lex_state = 15}, - [1896] = {.lex_state = 9}, - [1897] = {.lex_state = 40}, - [1898] = {.lex_state = 45, .external_lex_state = 24}, - [1899] = {.lex_state = 45, .external_lex_state = 15}, - [1900] = {.lex_state = 44, .external_lex_state = 15}, - [1901] = {.lex_state = 44, .external_lex_state = 15}, - [1902] = {.lex_state = 48, .external_lex_state = 15}, - [1903] = {.lex_state = 45, .external_lex_state = 24}, - [1904] = {.lex_state = 45, .external_lex_state = 15}, - [1905] = {.lex_state = 45, .external_lex_state = 15}, - [1906] = {.lex_state = 45, .external_lex_state = 15}, - [1907] = {.lex_state = 45, .external_lex_state = 24}, - [1908] = {.lex_state = 48, .external_lex_state = 15}, - [1909] = {.lex_state = 45, .external_lex_state = 24}, - [1910] = {.lex_state = 45, .external_lex_state = 15}, - [1911] = {.lex_state = 52, .external_lex_state = 23}, - [1912] = {.lex_state = 52, .external_lex_state = 15}, - [1913] = {.lex_state = 42, .external_lex_state = 15}, - [1914] = {.lex_state = 45, .external_lex_state = 15}, - [1915] = {.lex_state = 45, .external_lex_state = 15}, - [1916] = {.lex_state = 45, .external_lex_state = 15}, - [1917] = {.lex_state = 45, .external_lex_state = 15}, - [1918] = {.lex_state = 52, .external_lex_state = 23}, - [1919] = {.lex_state = 52, .external_lex_state = 15}, - [1920] = {.lex_state = 42, .external_lex_state = 15}, - [1921] = {.lex_state = 45, .external_lex_state = 15}, - [1922] = {.lex_state = 45, .external_lex_state = 15}, - [1923] = {.lex_state = 45, .external_lex_state = 15}, - [1924] = {.lex_state = 45, .external_lex_state = 15}, - [1925] = {.lex_state = 45, .external_lex_state = 15}, - [1926] = {.lex_state = 51}, - [1927] = {.lex_state = 38}, - [1928] = {.lex_state = 40}, - [1929] = {.lex_state = 51}, - [1930] = {.lex_state = 43, .external_lex_state = 12}, - [1931] = {.lex_state = 47, .external_lex_state = 2}, - [1932] = {.lex_state = 9}, - [1933] = {.lex_state = 9}, + [1894] = {.lex_state = 9}, + [1895] = {.lex_state = 43, .external_lex_state = 11}, + [1896] = {.lex_state = 40}, + [1897] = {.lex_state = 51}, + [1898] = {.lex_state = 9}, + [1899] = {.lex_state = 47, .external_lex_state = 2}, + [1900] = {.lex_state = 9}, + [1901] = {.lex_state = 44, .external_lex_state = 18}, + [1902] = {.lex_state = 44, .external_lex_state = 18}, + [1903] = {.lex_state = 40}, + [1904] = {.lex_state = 45, .external_lex_state = 26}, + [1905] = {.lex_state = 45, .external_lex_state = 18}, + [1906] = {.lex_state = 45, .external_lex_state = 26}, + [1907] = {.lex_state = 45, .external_lex_state = 18}, + [1908] = {.lex_state = 44, .external_lex_state = 18}, + [1909] = {.lex_state = 44, .external_lex_state = 18}, + [1910] = {.lex_state = 48, .external_lex_state = 18}, + [1911] = {.lex_state = 45, .external_lex_state = 18}, + [1912] = {.lex_state = 45, .external_lex_state = 18}, + [1913] = {.lex_state = 45, .external_lex_state = 18}, + [1914] = {.lex_state = 45, .external_lex_state = 18}, + [1915] = {.lex_state = 45, .external_lex_state = 26}, + [1916] = {.lex_state = 45, .external_lex_state = 26}, + [1917] = {.lex_state = 45, .external_lex_state = 18}, + [1918] = {.lex_state = 48, .external_lex_state = 18}, + [1919] = {.lex_state = 52, .external_lex_state = 25}, + [1920] = {.lex_state = 52, .external_lex_state = 18}, + [1921] = {.lex_state = 42, .external_lex_state = 18}, + [1922] = {.lex_state = 45, .external_lex_state = 18}, + [1923] = {.lex_state = 45, .external_lex_state = 18}, + [1924] = {.lex_state = 45, .external_lex_state = 18}, + [1925] = {.lex_state = 45, .external_lex_state = 18}, + [1926] = {.lex_state = 45, .external_lex_state = 18}, + [1927] = {.lex_state = 52, .external_lex_state = 25}, + [1928] = {.lex_state = 52, .external_lex_state = 18}, + [1929] = {.lex_state = 42, .external_lex_state = 18}, + [1930] = {.lex_state = 45, .external_lex_state = 18}, + [1931] = {.lex_state = 45, .external_lex_state = 18}, + [1932] = {.lex_state = 51}, + [1933] = {.lex_state = 38}, [1934] = {.lex_state = 47}, - [1935] = {.lex_state = 44, .external_lex_state = 15}, - [1936] = {.lex_state = 44, .external_lex_state = 15}, - [1937] = {.lex_state = 9}, - [1938] = {.lex_state = 40}, - [1939] = {.lex_state = 45, .external_lex_state = 24}, - [1940] = {.lex_state = 45, .external_lex_state = 15}, - [1941] = {.lex_state = 44, .external_lex_state = 15}, - [1942] = {.lex_state = 44, .external_lex_state = 15}, - [1943] = {.lex_state = 48, .external_lex_state = 15}, - [1944] = {.lex_state = 45, .external_lex_state = 24}, - [1945] = {.lex_state = 45, .external_lex_state = 15}, - [1946] = {.lex_state = 45, .external_lex_state = 15}, - [1947] = {.lex_state = 45, .external_lex_state = 15}, - [1948] = {.lex_state = 45, .external_lex_state = 24}, - [1949] = {.lex_state = 48, .external_lex_state = 15}, - [1950] = {.lex_state = 45, .external_lex_state = 24}, - [1951] = {.lex_state = 45, .external_lex_state = 15}, - [1952] = {.lex_state = 52, .external_lex_state = 23}, - [1953] = {.lex_state = 52, .external_lex_state = 15}, - [1954] = {.lex_state = 42, .external_lex_state = 15}, - [1955] = {.lex_state = 45, .external_lex_state = 15}, - [1956] = {.lex_state = 45, .external_lex_state = 15}, - [1957] = {.lex_state = 45, .external_lex_state = 15}, - [1958] = {.lex_state = 45, .external_lex_state = 15}, - [1959] = {.lex_state = 52, .external_lex_state = 23}, - [1960] = {.lex_state = 52, .external_lex_state = 15}, - [1961] = {.lex_state = 42, .external_lex_state = 15}, - [1962] = {.lex_state = 45, .external_lex_state = 15}, - [1963] = {.lex_state = 45, .external_lex_state = 15}, - [1964] = {.lex_state = 45, .external_lex_state = 15}, - [1965] = {.lex_state = 45, .external_lex_state = 15}, - [1966] = {.lex_state = 45, .external_lex_state = 15}, - [1967] = {.lex_state = 51}, - [1968] = {.lex_state = 38}, - [1969] = {.lex_state = 40}, - [1970] = {.lex_state = 51}, - [1971] = {.lex_state = 43, .external_lex_state = 12}, - [1972] = {.lex_state = 47, .external_lex_state = 2}, - [1973] = {.lex_state = 9}, - [1974] = {.lex_state = 9}, + [1935] = {.lex_state = 9}, + [1936] = {.lex_state = 43, .external_lex_state = 11}, + [1937] = {.lex_state = 40}, + [1938] = {.lex_state = 51}, + [1939] = {.lex_state = 9}, + [1940] = {.lex_state = 47, .external_lex_state = 2}, + [1941] = {.lex_state = 9}, + [1942] = {.lex_state = 44, .external_lex_state = 18}, + [1943] = {.lex_state = 44, .external_lex_state = 18}, + [1944] = {.lex_state = 40}, + [1945] = {.lex_state = 45, .external_lex_state = 26}, + [1946] = {.lex_state = 45, .external_lex_state = 18}, + [1947] = {.lex_state = 45, .external_lex_state = 26}, + [1948] = {.lex_state = 45, .external_lex_state = 18}, + [1949] = {.lex_state = 44, .external_lex_state = 18}, + [1950] = {.lex_state = 44, .external_lex_state = 18}, + [1951] = {.lex_state = 48, .external_lex_state = 18}, + [1952] = {.lex_state = 45, .external_lex_state = 18}, + [1953] = {.lex_state = 45, .external_lex_state = 18}, + [1954] = {.lex_state = 45, .external_lex_state = 18}, + [1955] = {.lex_state = 45, .external_lex_state = 18}, + [1956] = {.lex_state = 45, .external_lex_state = 26}, + [1957] = {.lex_state = 45, .external_lex_state = 26}, + [1958] = {.lex_state = 45, .external_lex_state = 18}, + [1959] = {.lex_state = 48, .external_lex_state = 18}, + [1960] = {.lex_state = 52, .external_lex_state = 25}, + [1961] = {.lex_state = 52, .external_lex_state = 18}, + [1962] = {.lex_state = 42, .external_lex_state = 18}, + [1963] = {.lex_state = 45, .external_lex_state = 18}, + [1964] = {.lex_state = 45, .external_lex_state = 18}, + [1965] = {.lex_state = 45, .external_lex_state = 18}, + [1966] = {.lex_state = 45, .external_lex_state = 18}, + [1967] = {.lex_state = 45, .external_lex_state = 18}, + [1968] = {.lex_state = 52, .external_lex_state = 25}, + [1969] = {.lex_state = 52, .external_lex_state = 18}, + [1970] = {.lex_state = 42, .external_lex_state = 18}, + [1971] = {.lex_state = 45, .external_lex_state = 18}, + [1972] = {.lex_state = 45, .external_lex_state = 18}, + [1973] = {.lex_state = 51}, + [1974] = {.lex_state = 38}, [1975] = {.lex_state = 47}, - [1976] = {.lex_state = 44, .external_lex_state = 15}, - [1977] = {.lex_state = 44, .external_lex_state = 15}, - [1978] = {.lex_state = 9}, - [1979] = {.lex_state = 40}, - [1980] = {.lex_state = 45, .external_lex_state = 24}, - [1981] = {.lex_state = 45, .external_lex_state = 15}, - [1982] = {.lex_state = 44, .external_lex_state = 15}, - [1983] = {.lex_state = 44, .external_lex_state = 15}, - [1984] = {.lex_state = 48, .external_lex_state = 15}, - [1985] = {.lex_state = 45, .external_lex_state = 24}, - [1986] = {.lex_state = 45, .external_lex_state = 15}, - [1987] = {.lex_state = 45, .external_lex_state = 15}, - [1988] = {.lex_state = 45, .external_lex_state = 15}, - [1989] = {.lex_state = 45, .external_lex_state = 24}, - [1990] = {.lex_state = 48, .external_lex_state = 15}, - [1991] = {.lex_state = 45, .external_lex_state = 24}, - [1992] = {.lex_state = 45, .external_lex_state = 15}, - [1993] = {.lex_state = 52, .external_lex_state = 23}, - [1994] = {.lex_state = 52, .external_lex_state = 15}, - [1995] = {.lex_state = 42, .external_lex_state = 15}, - [1996] = {.lex_state = 45, .external_lex_state = 15}, - [1997] = {.lex_state = 45, .external_lex_state = 15}, - [1998] = {.lex_state = 45, .external_lex_state = 15}, - [1999] = {.lex_state = 45, .external_lex_state = 15}, - [2000] = {.lex_state = 52, .external_lex_state = 23}, - [2001] = {.lex_state = 52, .external_lex_state = 15}, - [2002] = {.lex_state = 42, .external_lex_state = 15}, - [2003] = {.lex_state = 45, .external_lex_state = 15}, - [2004] = {.lex_state = 45, .external_lex_state = 15}, - [2005] = {.lex_state = 45, .external_lex_state = 15}, - [2006] = {.lex_state = 45, .external_lex_state = 15}, - [2007] = {.lex_state = 45, .external_lex_state = 15}, - [2008] = {.lex_state = 51}, - [2009] = {.lex_state = 38}, - [2010] = {.lex_state = 40}, - [2011] = {.lex_state = 51}, - [2012] = {.lex_state = 43, .external_lex_state = 12}, - [2013] = {.lex_state = 47, .external_lex_state = 2}, - [2014] = {.lex_state = 9}, - [2015] = {.lex_state = 9}, + [1976] = {.lex_state = 9}, + [1977] = {.lex_state = 43, .external_lex_state = 11}, + [1978] = {.lex_state = 40}, + [1979] = {.lex_state = 51}, + [1980] = {.lex_state = 9}, + [1981] = {.lex_state = 47, .external_lex_state = 2}, + [1982] = {.lex_state = 9}, + [1983] = {.lex_state = 44, .external_lex_state = 18}, + [1984] = {.lex_state = 44, .external_lex_state = 18}, + [1985] = {.lex_state = 40}, + [1986] = {.lex_state = 45, .external_lex_state = 26}, + [1987] = {.lex_state = 45, .external_lex_state = 18}, + [1988] = {.lex_state = 45, .external_lex_state = 26}, + [1989] = {.lex_state = 45, .external_lex_state = 18}, + [1990] = {.lex_state = 44, .external_lex_state = 18}, + [1991] = {.lex_state = 44, .external_lex_state = 18}, + [1992] = {.lex_state = 48, .external_lex_state = 18}, + [1993] = {.lex_state = 45, .external_lex_state = 18}, + [1994] = {.lex_state = 45, .external_lex_state = 18}, + [1995] = {.lex_state = 45, .external_lex_state = 18}, + [1996] = {.lex_state = 45, .external_lex_state = 18}, + [1997] = {.lex_state = 45, .external_lex_state = 26}, + [1998] = {.lex_state = 45, .external_lex_state = 26}, + [1999] = {.lex_state = 45, .external_lex_state = 18}, + [2000] = {.lex_state = 48, .external_lex_state = 18}, + [2001] = {.lex_state = 52, .external_lex_state = 25}, + [2002] = {.lex_state = 52, .external_lex_state = 18}, + [2003] = {.lex_state = 42, .external_lex_state = 18}, + [2004] = {.lex_state = 45, .external_lex_state = 18}, + [2005] = {.lex_state = 45, .external_lex_state = 18}, + [2006] = {.lex_state = 45, .external_lex_state = 18}, + [2007] = {.lex_state = 45, .external_lex_state = 18}, + [2008] = {.lex_state = 45, .external_lex_state = 18}, + [2009] = {.lex_state = 52, .external_lex_state = 25}, + [2010] = {.lex_state = 52, .external_lex_state = 18}, + [2011] = {.lex_state = 42, .external_lex_state = 18}, + [2012] = {.lex_state = 45, .external_lex_state = 18}, + [2013] = {.lex_state = 45, .external_lex_state = 18}, + [2014] = {.lex_state = 51}, + [2015] = {.lex_state = 38}, [2016] = {.lex_state = 47}, - [2017] = {.lex_state = 44, .external_lex_state = 15}, - [2018] = {.lex_state = 44, .external_lex_state = 15}, - [2019] = {.lex_state = 9}, - [2020] = {.lex_state = 40}, - [2021] = {.lex_state = 45, .external_lex_state = 24}, - [2022] = {.lex_state = 45, .external_lex_state = 15}, - [2023] = {.lex_state = 44, .external_lex_state = 15}, - [2024] = {.lex_state = 44, .external_lex_state = 15}, - [2025] = {.lex_state = 48, .external_lex_state = 15}, - [2026] = {.lex_state = 45, .external_lex_state = 24}, - [2027] = {.lex_state = 45, .external_lex_state = 15}, - [2028] = {.lex_state = 45, .external_lex_state = 15}, - [2029] = {.lex_state = 45, .external_lex_state = 15}, - [2030] = {.lex_state = 45, .external_lex_state = 24}, - [2031] = {.lex_state = 48, .external_lex_state = 15}, - [2032] = {.lex_state = 45, .external_lex_state = 24}, - [2033] = {.lex_state = 45, .external_lex_state = 15}, - [2034] = {.lex_state = 52, .external_lex_state = 23}, - [2035] = {.lex_state = 52, .external_lex_state = 15}, - [2036] = {.lex_state = 42, .external_lex_state = 15}, - [2037] = {.lex_state = 45, .external_lex_state = 15}, - [2038] = {.lex_state = 45, .external_lex_state = 15}, - [2039] = {.lex_state = 45, .external_lex_state = 15}, - [2040] = {.lex_state = 45, .external_lex_state = 15}, - [2041] = {.lex_state = 52, .external_lex_state = 23}, - [2042] = {.lex_state = 52, .external_lex_state = 15}, - [2043] = {.lex_state = 42, .external_lex_state = 15}, - [2044] = {.lex_state = 45, .external_lex_state = 15}, - [2045] = {.lex_state = 45, .external_lex_state = 15}, - [2046] = {.lex_state = 45, .external_lex_state = 15}, - [2047] = {.lex_state = 45, .external_lex_state = 15}, - [2048] = {.lex_state = 45, .external_lex_state = 15}, - [2049] = {.lex_state = 51}, - [2050] = {.lex_state = 38}, - [2051] = {.lex_state = 40}, - [2052] = {.lex_state = 51}, - [2053] = {.lex_state = 43, .external_lex_state = 12}, - [2054] = {.lex_state = 47, .external_lex_state = 2}, - [2055] = {.lex_state = 9}, - [2056] = {.lex_state = 9}, + [2017] = {.lex_state = 9}, + [2018] = {.lex_state = 43, .external_lex_state = 11}, + [2019] = {.lex_state = 40}, + [2020] = {.lex_state = 51}, + [2021] = {.lex_state = 9}, + [2022] = {.lex_state = 47, .external_lex_state = 2}, + [2023] = {.lex_state = 9}, + [2024] = {.lex_state = 44, .external_lex_state = 18}, + [2025] = {.lex_state = 44, .external_lex_state = 18}, + [2026] = {.lex_state = 40}, + [2027] = {.lex_state = 45, .external_lex_state = 26}, + [2028] = {.lex_state = 45, .external_lex_state = 18}, + [2029] = {.lex_state = 45, .external_lex_state = 26}, + [2030] = {.lex_state = 45, .external_lex_state = 18}, + [2031] = {.lex_state = 44, .external_lex_state = 18}, + [2032] = {.lex_state = 44, .external_lex_state = 18}, + [2033] = {.lex_state = 48, .external_lex_state = 18}, + [2034] = {.lex_state = 45, .external_lex_state = 18}, + [2035] = {.lex_state = 45, .external_lex_state = 18}, + [2036] = {.lex_state = 45, .external_lex_state = 18}, + [2037] = {.lex_state = 45, .external_lex_state = 18}, + [2038] = {.lex_state = 45, .external_lex_state = 26}, + [2039] = {.lex_state = 45, .external_lex_state = 26}, + [2040] = {.lex_state = 45, .external_lex_state = 18}, + [2041] = {.lex_state = 48, .external_lex_state = 18}, + [2042] = {.lex_state = 52, .external_lex_state = 25}, + [2043] = {.lex_state = 52, .external_lex_state = 18}, + [2044] = {.lex_state = 42, .external_lex_state = 18}, + [2045] = {.lex_state = 45, .external_lex_state = 18}, + [2046] = {.lex_state = 45, .external_lex_state = 18}, + [2047] = {.lex_state = 45, .external_lex_state = 18}, + [2048] = {.lex_state = 45, .external_lex_state = 18}, + [2049] = {.lex_state = 45, .external_lex_state = 18}, + [2050] = {.lex_state = 52, .external_lex_state = 25}, + [2051] = {.lex_state = 52, .external_lex_state = 18}, + [2052] = {.lex_state = 42, .external_lex_state = 18}, + [2053] = {.lex_state = 45, .external_lex_state = 18}, + [2054] = {.lex_state = 45, .external_lex_state = 18}, + [2055] = {.lex_state = 51}, + [2056] = {.lex_state = 38}, [2057] = {.lex_state = 47}, - [2058] = {.lex_state = 44, .external_lex_state = 15}, - [2059] = {.lex_state = 44, .external_lex_state = 15}, - [2060] = {.lex_state = 9}, - [2061] = {.lex_state = 40}, - [2062] = {.lex_state = 45, .external_lex_state = 24}, - [2063] = {.lex_state = 45, .external_lex_state = 15}, - [2064] = {.lex_state = 44, .external_lex_state = 15}, - [2065] = {.lex_state = 44, .external_lex_state = 15}, - [2066] = {.lex_state = 48, .external_lex_state = 15}, - [2067] = {.lex_state = 45, .external_lex_state = 24}, - [2068] = {.lex_state = 45, .external_lex_state = 15}, - [2069] = {.lex_state = 45, .external_lex_state = 15}, - [2070] = {.lex_state = 45, .external_lex_state = 15}, - [2071] = {.lex_state = 45, .external_lex_state = 24}, - [2072] = {.lex_state = 48, .external_lex_state = 15}, - [2073] = {.lex_state = 45, .external_lex_state = 24}, - [2074] = {.lex_state = 45, .external_lex_state = 15}, - [2075] = {.lex_state = 52, .external_lex_state = 23}, - [2076] = {.lex_state = 52, .external_lex_state = 15}, - [2077] = {.lex_state = 42, .external_lex_state = 15}, - [2078] = {.lex_state = 45, .external_lex_state = 15}, - [2079] = {.lex_state = 45, .external_lex_state = 15}, - [2080] = {.lex_state = 45, .external_lex_state = 15}, - [2081] = {.lex_state = 45, .external_lex_state = 15}, - [2082] = {.lex_state = 52, .external_lex_state = 23}, - [2083] = {.lex_state = 52, .external_lex_state = 15}, - [2084] = {.lex_state = 42, .external_lex_state = 15}, - [2085] = {.lex_state = 45, .external_lex_state = 15}, - [2086] = {.lex_state = 45, .external_lex_state = 15}, - [2087] = {.lex_state = 45, .external_lex_state = 15}, - [2088] = {.lex_state = 45, .external_lex_state = 15}, - [2089] = {.lex_state = 45, .external_lex_state = 15}, - [2090] = {.lex_state = 51}, - [2091] = {.lex_state = 38}, - [2092] = {.lex_state = 40}, - [2093] = {.lex_state = 51}, - [2094] = {.lex_state = 43, .external_lex_state = 12}, - [2095] = {.lex_state = 47, .external_lex_state = 2}, - [2096] = {.lex_state = 9}, - [2097] = {.lex_state = 9}, + [2058] = {.lex_state = 9}, + [2059] = {.lex_state = 43, .external_lex_state = 11}, + [2060] = {.lex_state = 40}, + [2061] = {.lex_state = 51}, + [2062] = {.lex_state = 9}, + [2063] = {.lex_state = 47, .external_lex_state = 2}, + [2064] = {.lex_state = 9}, + [2065] = {.lex_state = 44, .external_lex_state = 18}, + [2066] = {.lex_state = 44, .external_lex_state = 18}, + [2067] = {.lex_state = 40}, + [2068] = {.lex_state = 45, .external_lex_state = 26}, + [2069] = {.lex_state = 45, .external_lex_state = 18}, + [2070] = {.lex_state = 45, .external_lex_state = 26}, + [2071] = {.lex_state = 45, .external_lex_state = 18}, + [2072] = {.lex_state = 44, .external_lex_state = 18}, + [2073] = {.lex_state = 44, .external_lex_state = 18}, + [2074] = {.lex_state = 48, .external_lex_state = 18}, + [2075] = {.lex_state = 45, .external_lex_state = 18}, + [2076] = {.lex_state = 45, .external_lex_state = 18}, + [2077] = {.lex_state = 45, .external_lex_state = 18}, + [2078] = {.lex_state = 45, .external_lex_state = 18}, + [2079] = {.lex_state = 45, .external_lex_state = 26}, + [2080] = {.lex_state = 45, .external_lex_state = 26}, + [2081] = {.lex_state = 45, .external_lex_state = 18}, + [2082] = {.lex_state = 48, .external_lex_state = 18}, + [2083] = {.lex_state = 52, .external_lex_state = 25}, + [2084] = {.lex_state = 52, .external_lex_state = 18}, + [2085] = {.lex_state = 42, .external_lex_state = 18}, + [2086] = {.lex_state = 45, .external_lex_state = 18}, + [2087] = {.lex_state = 45, .external_lex_state = 18}, + [2088] = {.lex_state = 45, .external_lex_state = 18}, + [2089] = {.lex_state = 45, .external_lex_state = 18}, + [2090] = {.lex_state = 45, .external_lex_state = 18}, + [2091] = {.lex_state = 52, .external_lex_state = 25}, + [2092] = {.lex_state = 52, .external_lex_state = 18}, + [2093] = {.lex_state = 42, .external_lex_state = 18}, + [2094] = {.lex_state = 45, .external_lex_state = 18}, + [2095] = {.lex_state = 45, .external_lex_state = 18}, + [2096] = {.lex_state = 51}, + [2097] = {.lex_state = 38}, [2098] = {.lex_state = 47}, - [2099] = {.lex_state = 44, .external_lex_state = 15}, - [2100] = {.lex_state = 44, .external_lex_state = 15}, - [2101] = {.lex_state = 9}, - [2102] = {.lex_state = 40}, - [2103] = {.lex_state = 45, .external_lex_state = 24}, - [2104] = {.lex_state = 45, .external_lex_state = 15}, - [2105] = {.lex_state = 44, .external_lex_state = 15}, - [2106] = {.lex_state = 44, .external_lex_state = 15}, - [2107] = {.lex_state = 48, .external_lex_state = 15}, - [2108] = {.lex_state = 45, .external_lex_state = 24}, - [2109] = {.lex_state = 45, .external_lex_state = 15}, - [2110] = {.lex_state = 45, .external_lex_state = 15}, - [2111] = {.lex_state = 45, .external_lex_state = 15}, - [2112] = {.lex_state = 45, .external_lex_state = 24}, - [2113] = {.lex_state = 48, .external_lex_state = 15}, - [2114] = {.lex_state = 45, .external_lex_state = 24}, - [2115] = {.lex_state = 45, .external_lex_state = 15}, - [2116] = {.lex_state = 52, .external_lex_state = 23}, - [2117] = {.lex_state = 52, .external_lex_state = 15}, - [2118] = {.lex_state = 42, .external_lex_state = 15}, - [2119] = {.lex_state = 45, .external_lex_state = 15}, - [2120] = {.lex_state = 45, .external_lex_state = 15}, - [2121] = {.lex_state = 45, .external_lex_state = 15}, - [2122] = {.lex_state = 45, .external_lex_state = 15}, - [2123] = {.lex_state = 52, .external_lex_state = 23}, - [2124] = {.lex_state = 52, .external_lex_state = 15}, - [2125] = {.lex_state = 42, .external_lex_state = 15}, - [2126] = {.lex_state = 45, .external_lex_state = 15}, - [2127] = {.lex_state = 45, .external_lex_state = 15}, - [2128] = {.lex_state = 45, .external_lex_state = 15}, - [2129] = {.lex_state = 45, .external_lex_state = 15}, - [2130] = {.lex_state = 45, .external_lex_state = 15}, - [2131] = {.lex_state = 51}, - [2132] = {.lex_state = 38}, - [2133] = {.lex_state = 40}, - [2134] = {.lex_state = 51}, - [2135] = {.lex_state = 43, .external_lex_state = 12}, - [2136] = {.lex_state = 47, .external_lex_state = 2}, - [2137] = {.lex_state = 9}, - [2138] = {.lex_state = 9}, + [2099] = {.lex_state = 9}, + [2100] = {.lex_state = 43, .external_lex_state = 11}, + [2101] = {.lex_state = 40}, + [2102] = {.lex_state = 51}, + [2103] = {.lex_state = 9}, + [2104] = {.lex_state = 47, .external_lex_state = 2}, + [2105] = {.lex_state = 9}, + [2106] = {.lex_state = 44, .external_lex_state = 18}, + [2107] = {.lex_state = 44, .external_lex_state = 18}, + [2108] = {.lex_state = 40}, + [2109] = {.lex_state = 45, .external_lex_state = 26}, + [2110] = {.lex_state = 45, .external_lex_state = 18}, + [2111] = {.lex_state = 45, .external_lex_state = 26}, + [2112] = {.lex_state = 45, .external_lex_state = 18}, + [2113] = {.lex_state = 44, .external_lex_state = 18}, + [2114] = {.lex_state = 44, .external_lex_state = 18}, + [2115] = {.lex_state = 48, .external_lex_state = 18}, + [2116] = {.lex_state = 45, .external_lex_state = 18}, + [2117] = {.lex_state = 45, .external_lex_state = 18}, + [2118] = {.lex_state = 45, .external_lex_state = 18}, + [2119] = {.lex_state = 45, .external_lex_state = 18}, + [2120] = {.lex_state = 45, .external_lex_state = 26}, + [2121] = {.lex_state = 45, .external_lex_state = 26}, + [2122] = {.lex_state = 45, .external_lex_state = 18}, + [2123] = {.lex_state = 48, .external_lex_state = 18}, + [2124] = {.lex_state = 52, .external_lex_state = 25}, + [2125] = {.lex_state = 52, .external_lex_state = 18}, + [2126] = {.lex_state = 42, .external_lex_state = 18}, + [2127] = {.lex_state = 45, .external_lex_state = 18}, + [2128] = {.lex_state = 45, .external_lex_state = 18}, + [2129] = {.lex_state = 45, .external_lex_state = 18}, + [2130] = {.lex_state = 45, .external_lex_state = 18}, + [2131] = {.lex_state = 45, .external_lex_state = 18}, + [2132] = {.lex_state = 52, .external_lex_state = 25}, + [2133] = {.lex_state = 52, .external_lex_state = 18}, + [2134] = {.lex_state = 42, .external_lex_state = 18}, + [2135] = {.lex_state = 45, .external_lex_state = 18}, + [2136] = {.lex_state = 45, .external_lex_state = 18}, + [2137] = {.lex_state = 51}, + [2138] = {.lex_state = 38}, [2139] = {.lex_state = 47}, - [2140] = {.lex_state = 44, .external_lex_state = 15}, - [2141] = {.lex_state = 44, .external_lex_state = 15}, - [2142] = {.lex_state = 9}, - [2143] = {.lex_state = 40}, - [2144] = {.lex_state = 45, .external_lex_state = 24}, - [2145] = {.lex_state = 45, .external_lex_state = 15}, - [2146] = {.lex_state = 44, .external_lex_state = 15}, - [2147] = {.lex_state = 44, .external_lex_state = 15}, - [2148] = {.lex_state = 48, .external_lex_state = 15}, - [2149] = {.lex_state = 45, .external_lex_state = 24}, - [2150] = {.lex_state = 45, .external_lex_state = 15}, - [2151] = {.lex_state = 45, .external_lex_state = 15}, - [2152] = {.lex_state = 45, .external_lex_state = 15}, - [2153] = {.lex_state = 45, .external_lex_state = 24}, - [2154] = {.lex_state = 48, .external_lex_state = 15}, - [2155] = {.lex_state = 45, .external_lex_state = 24}, - [2156] = {.lex_state = 45, .external_lex_state = 15}, - [2157] = {.lex_state = 52, .external_lex_state = 23}, - [2158] = {.lex_state = 52, .external_lex_state = 15}, - [2159] = {.lex_state = 42, .external_lex_state = 15}, - [2160] = {.lex_state = 45, .external_lex_state = 15}, - [2161] = {.lex_state = 45, .external_lex_state = 15}, - [2162] = {.lex_state = 45, .external_lex_state = 15}, - [2163] = {.lex_state = 45, .external_lex_state = 15}, - [2164] = {.lex_state = 52, .external_lex_state = 23}, - [2165] = {.lex_state = 52, .external_lex_state = 15}, - [2166] = {.lex_state = 42, .external_lex_state = 15}, - [2167] = {.lex_state = 45, .external_lex_state = 15}, - [2168] = {.lex_state = 45, .external_lex_state = 15}, - [2169] = {.lex_state = 45, .external_lex_state = 15}, - [2170] = {.lex_state = 45, .external_lex_state = 15}, - [2171] = {.lex_state = 45, .external_lex_state = 15}, - [2172] = {.lex_state = 51}, - [2173] = {.lex_state = 38}, - [2174] = {.lex_state = 40}, - [2175] = {.lex_state = 51}, - [2176] = {.lex_state = 43, .external_lex_state = 12}, - [2177] = {.lex_state = 47, .external_lex_state = 2}, - [2178] = {.lex_state = 9}, - [2179] = {.lex_state = 9}, + [2140] = {.lex_state = 9}, + [2141] = {.lex_state = 43, .external_lex_state = 11}, + [2142] = {.lex_state = 40}, + [2143] = {.lex_state = 51}, + [2144] = {.lex_state = 9}, + [2145] = {.lex_state = 47, .external_lex_state = 2}, + [2146] = {.lex_state = 9}, + [2147] = {.lex_state = 44, .external_lex_state = 18}, + [2148] = {.lex_state = 44, .external_lex_state = 18}, + [2149] = {.lex_state = 40}, + [2150] = {.lex_state = 45, .external_lex_state = 26}, + [2151] = {.lex_state = 45, .external_lex_state = 18}, + [2152] = {.lex_state = 45, .external_lex_state = 26}, + [2153] = {.lex_state = 45, .external_lex_state = 18}, + [2154] = {.lex_state = 44, .external_lex_state = 18}, + [2155] = {.lex_state = 44, .external_lex_state = 18}, + [2156] = {.lex_state = 48, .external_lex_state = 18}, + [2157] = {.lex_state = 45, .external_lex_state = 18}, + [2158] = {.lex_state = 45, .external_lex_state = 18}, + [2159] = {.lex_state = 45, .external_lex_state = 18}, + [2160] = {.lex_state = 45, .external_lex_state = 18}, + [2161] = {.lex_state = 45, .external_lex_state = 26}, + [2162] = {.lex_state = 45, .external_lex_state = 26}, + [2163] = {.lex_state = 45, .external_lex_state = 18}, + [2164] = {.lex_state = 48, .external_lex_state = 18}, + [2165] = {.lex_state = 52, .external_lex_state = 25}, + [2166] = {.lex_state = 52, .external_lex_state = 18}, + [2167] = {.lex_state = 42, .external_lex_state = 18}, + [2168] = {.lex_state = 45, .external_lex_state = 18}, + [2169] = {.lex_state = 45, .external_lex_state = 18}, + [2170] = {.lex_state = 45, .external_lex_state = 18}, + [2171] = {.lex_state = 45, .external_lex_state = 18}, + [2172] = {.lex_state = 45, .external_lex_state = 18}, + [2173] = {.lex_state = 52, .external_lex_state = 25}, + [2174] = {.lex_state = 52, .external_lex_state = 18}, + [2175] = {.lex_state = 42, .external_lex_state = 18}, + [2176] = {.lex_state = 45, .external_lex_state = 18}, + [2177] = {.lex_state = 45, .external_lex_state = 18}, + [2178] = {.lex_state = 51}, + [2179] = {.lex_state = 38}, [2180] = {.lex_state = 47}, - [2181] = {.lex_state = 44, .external_lex_state = 15}, - [2182] = {.lex_state = 44, .external_lex_state = 15}, - [2183] = {.lex_state = 9}, - [2184] = {.lex_state = 40}, - [2185] = {.lex_state = 45, .external_lex_state = 24}, - [2186] = {.lex_state = 45, .external_lex_state = 15}, - [2187] = {.lex_state = 44, .external_lex_state = 15}, - [2188] = {.lex_state = 44, .external_lex_state = 15}, - [2189] = {.lex_state = 48, .external_lex_state = 15}, - [2190] = {.lex_state = 45, .external_lex_state = 24}, - [2191] = {.lex_state = 45, .external_lex_state = 15}, - [2192] = {.lex_state = 45, .external_lex_state = 15}, - [2193] = {.lex_state = 45, .external_lex_state = 15}, - [2194] = {.lex_state = 45, .external_lex_state = 24}, - [2195] = {.lex_state = 48, .external_lex_state = 15}, - [2196] = {.lex_state = 45, .external_lex_state = 24}, - [2197] = {.lex_state = 45, .external_lex_state = 15}, - [2198] = {.lex_state = 52, .external_lex_state = 23}, - [2199] = {.lex_state = 52, .external_lex_state = 15}, - [2200] = {.lex_state = 42, .external_lex_state = 15}, - [2201] = {.lex_state = 45, .external_lex_state = 15}, - [2202] = {.lex_state = 45, .external_lex_state = 15}, - [2203] = {.lex_state = 45, .external_lex_state = 15}, - [2204] = {.lex_state = 45, .external_lex_state = 15}, - [2205] = {.lex_state = 52, .external_lex_state = 23}, - [2206] = {.lex_state = 52, .external_lex_state = 15}, - [2207] = {.lex_state = 42, .external_lex_state = 15}, - [2208] = {.lex_state = 45, .external_lex_state = 15}, - [2209] = {.lex_state = 45, .external_lex_state = 15}, - [2210] = {.lex_state = 45, .external_lex_state = 15}, - [2211] = {.lex_state = 45, .external_lex_state = 15}, - [2212] = {.lex_state = 45, .external_lex_state = 15}, - [2213] = {.lex_state = 51}, - [2214] = {.lex_state = 38}, - [2215] = {.lex_state = 40}, - [2216] = {.lex_state = 51}, - [2217] = {.lex_state = 43, .external_lex_state = 12}, - [2218] = {.lex_state = 47, .external_lex_state = 2}, - [2219] = {.lex_state = 9}, - [2220] = {.lex_state = 9}, + [2181] = {.lex_state = 9}, + [2182] = {.lex_state = 43, .external_lex_state = 11}, + [2183] = {.lex_state = 40}, + [2184] = {.lex_state = 51}, + [2185] = {.lex_state = 9}, + [2186] = {.lex_state = 47, .external_lex_state = 2}, + [2187] = {.lex_state = 9}, + [2188] = {.lex_state = 44, .external_lex_state = 18}, + [2189] = {.lex_state = 44, .external_lex_state = 18}, + [2190] = {.lex_state = 40}, + [2191] = {.lex_state = 45, .external_lex_state = 26}, + [2192] = {.lex_state = 45, .external_lex_state = 18}, + [2193] = {.lex_state = 45, .external_lex_state = 26}, + [2194] = {.lex_state = 45, .external_lex_state = 18}, + [2195] = {.lex_state = 44, .external_lex_state = 18}, + [2196] = {.lex_state = 44, .external_lex_state = 18}, + [2197] = {.lex_state = 48, .external_lex_state = 18}, + [2198] = {.lex_state = 45, .external_lex_state = 18}, + [2199] = {.lex_state = 45, .external_lex_state = 18}, + [2200] = {.lex_state = 45, .external_lex_state = 18}, + [2201] = {.lex_state = 45, .external_lex_state = 18}, + [2202] = {.lex_state = 45, .external_lex_state = 26}, + [2203] = {.lex_state = 45, .external_lex_state = 26}, + [2204] = {.lex_state = 45, .external_lex_state = 18}, + [2205] = {.lex_state = 48, .external_lex_state = 18}, + [2206] = {.lex_state = 52, .external_lex_state = 25}, + [2207] = {.lex_state = 52, .external_lex_state = 18}, + [2208] = {.lex_state = 42, .external_lex_state = 18}, + [2209] = {.lex_state = 45, .external_lex_state = 18}, + [2210] = {.lex_state = 45, .external_lex_state = 18}, + [2211] = {.lex_state = 45, .external_lex_state = 18}, + [2212] = {.lex_state = 45, .external_lex_state = 18}, + [2213] = {.lex_state = 45, .external_lex_state = 18}, + [2214] = {.lex_state = 52, .external_lex_state = 25}, + [2215] = {.lex_state = 52, .external_lex_state = 18}, + [2216] = {.lex_state = 42, .external_lex_state = 18}, + [2217] = {.lex_state = 45, .external_lex_state = 18}, + [2218] = {.lex_state = 45, .external_lex_state = 18}, + [2219] = {.lex_state = 51}, + [2220] = {.lex_state = 38}, [2221] = {.lex_state = 47}, - [2222] = {.lex_state = 44, .external_lex_state = 15}, - [2223] = {.lex_state = 44, .external_lex_state = 15}, - [2224] = {.lex_state = 9}, - [2225] = {.lex_state = 40}, - [2226] = {.lex_state = 45, .external_lex_state = 24}, - [2227] = {.lex_state = 45, .external_lex_state = 15}, - [2228] = {.lex_state = 44, .external_lex_state = 15}, - [2229] = {.lex_state = 44, .external_lex_state = 15}, - [2230] = {.lex_state = 48, .external_lex_state = 15}, - [2231] = {.lex_state = 45, .external_lex_state = 24}, - [2232] = {.lex_state = 45, .external_lex_state = 15}, - [2233] = {.lex_state = 45, .external_lex_state = 15}, - [2234] = {.lex_state = 45, .external_lex_state = 15}, - [2235] = {.lex_state = 45, .external_lex_state = 24}, - [2236] = {.lex_state = 48, .external_lex_state = 15}, - [2237] = {.lex_state = 45, .external_lex_state = 24}, - [2238] = {.lex_state = 45, .external_lex_state = 15}, - [2239] = {.lex_state = 52, .external_lex_state = 23}, - [2240] = {.lex_state = 52, .external_lex_state = 15}, - [2241] = {.lex_state = 42, .external_lex_state = 15}, - [2242] = {.lex_state = 45, .external_lex_state = 15}, - [2243] = {.lex_state = 45, .external_lex_state = 15}, - [2244] = {.lex_state = 45, .external_lex_state = 15}, - [2245] = {.lex_state = 45, .external_lex_state = 15}, - [2246] = {.lex_state = 52, .external_lex_state = 23}, - [2247] = {.lex_state = 52, .external_lex_state = 15}, - [2248] = {.lex_state = 42, .external_lex_state = 15}, - [2249] = {.lex_state = 45, .external_lex_state = 15}, - [2250] = {.lex_state = 45, .external_lex_state = 15}, - [2251] = {.lex_state = 45, .external_lex_state = 15}, - [2252] = {.lex_state = 45, .external_lex_state = 15}, - [2253] = {.lex_state = 45, .external_lex_state = 15}, - [2254] = {.lex_state = 51}, - [2255] = {.lex_state = 38}, - [2256] = {.lex_state = 40}, - [2257] = {.lex_state = 51}, - [2258] = {.lex_state = 43, .external_lex_state = 12}, - [2259] = {.lex_state = 47, .external_lex_state = 2}, - [2260] = {.lex_state = 9}, - [2261] = {.lex_state = 9}, + [2222] = {.lex_state = 9}, + [2223] = {.lex_state = 43, .external_lex_state = 11}, + [2224] = {.lex_state = 40}, + [2225] = {.lex_state = 51}, + [2226] = {.lex_state = 9}, + [2227] = {.lex_state = 47, .external_lex_state = 2}, + [2228] = {.lex_state = 9}, + [2229] = {.lex_state = 44, .external_lex_state = 18}, + [2230] = {.lex_state = 44, .external_lex_state = 18}, + [2231] = {.lex_state = 40}, + [2232] = {.lex_state = 45, .external_lex_state = 26}, + [2233] = {.lex_state = 45, .external_lex_state = 18}, + [2234] = {.lex_state = 45, .external_lex_state = 26}, + [2235] = {.lex_state = 45, .external_lex_state = 18}, + [2236] = {.lex_state = 44, .external_lex_state = 18}, + [2237] = {.lex_state = 44, .external_lex_state = 18}, + [2238] = {.lex_state = 48, .external_lex_state = 18}, + [2239] = {.lex_state = 45, .external_lex_state = 18}, + [2240] = {.lex_state = 45, .external_lex_state = 18}, + [2241] = {.lex_state = 45, .external_lex_state = 18}, + [2242] = {.lex_state = 45, .external_lex_state = 18}, + [2243] = {.lex_state = 45, .external_lex_state = 26}, + [2244] = {.lex_state = 45, .external_lex_state = 26}, + [2245] = {.lex_state = 45, .external_lex_state = 18}, + [2246] = {.lex_state = 48, .external_lex_state = 18}, + [2247] = {.lex_state = 52, .external_lex_state = 25}, + [2248] = {.lex_state = 52, .external_lex_state = 18}, + [2249] = {.lex_state = 42, .external_lex_state = 18}, + [2250] = {.lex_state = 45, .external_lex_state = 18}, + [2251] = {.lex_state = 45, .external_lex_state = 18}, + [2252] = {.lex_state = 45, .external_lex_state = 18}, + [2253] = {.lex_state = 45, .external_lex_state = 18}, + [2254] = {.lex_state = 45, .external_lex_state = 18}, + [2255] = {.lex_state = 52, .external_lex_state = 25}, + [2256] = {.lex_state = 52, .external_lex_state = 18}, + [2257] = {.lex_state = 42, .external_lex_state = 18}, + [2258] = {.lex_state = 45, .external_lex_state = 18}, + [2259] = {.lex_state = 45, .external_lex_state = 18}, + [2260] = {.lex_state = 51}, + [2261] = {.lex_state = 38}, [2262] = {.lex_state = 47}, - [2263] = {.lex_state = 44, .external_lex_state = 15}, - [2264] = {.lex_state = 44, .external_lex_state = 15}, - [2265] = {.lex_state = 9}, - [2266] = {.lex_state = 40}, - [2267] = {.lex_state = 45, .external_lex_state = 24}, - [2268] = {.lex_state = 45, .external_lex_state = 15}, - [2269] = {.lex_state = 44, .external_lex_state = 15}, - [2270] = {.lex_state = 44, .external_lex_state = 15}, - [2271] = {.lex_state = 48, .external_lex_state = 15}, - [2272] = {.lex_state = 45, .external_lex_state = 24}, - [2273] = {.lex_state = 45, .external_lex_state = 15}, - [2274] = {.lex_state = 45, .external_lex_state = 15}, - [2275] = {.lex_state = 45, .external_lex_state = 15}, - [2276] = {.lex_state = 45, .external_lex_state = 24}, - [2277] = {.lex_state = 48, .external_lex_state = 15}, - [2278] = {.lex_state = 45, .external_lex_state = 24}, - [2279] = {.lex_state = 45, .external_lex_state = 15}, - [2280] = {.lex_state = 52, .external_lex_state = 23}, - [2281] = {.lex_state = 52, .external_lex_state = 15}, - [2282] = {.lex_state = 42, .external_lex_state = 15}, - [2283] = {.lex_state = 45, .external_lex_state = 15}, - [2284] = {.lex_state = 45, .external_lex_state = 15}, - [2285] = {.lex_state = 45, .external_lex_state = 15}, - [2286] = {.lex_state = 45, .external_lex_state = 15}, - [2287] = {.lex_state = 52, .external_lex_state = 23}, - [2288] = {.lex_state = 52, .external_lex_state = 15}, - [2289] = {.lex_state = 42, .external_lex_state = 15}, - [2290] = {.lex_state = 45, .external_lex_state = 15}, - [2291] = {.lex_state = 45, .external_lex_state = 15}, - [2292] = {.lex_state = 45, .external_lex_state = 15}, - [2293] = {.lex_state = 45, .external_lex_state = 15}, - [2294] = {.lex_state = 45, .external_lex_state = 15}, - [2295] = {.lex_state = 51}, - [2296] = {.lex_state = 38}, - [2297] = {.lex_state = 40}, - [2298] = {.lex_state = 51}, - [2299] = {.lex_state = 43, .external_lex_state = 12}, - [2300] = {.lex_state = 47, .external_lex_state = 2}, - [2301] = {.lex_state = 9}, - [2302] = {.lex_state = 9}, + [2263] = {.lex_state = 9}, + [2264] = {.lex_state = 43, .external_lex_state = 11}, + [2265] = {.lex_state = 40}, + [2266] = {.lex_state = 51}, + [2267] = {.lex_state = 9}, + [2268] = {.lex_state = 47, .external_lex_state = 2}, + [2269] = {.lex_state = 9}, + [2270] = {.lex_state = 44, .external_lex_state = 18}, + [2271] = {.lex_state = 44, .external_lex_state = 18}, + [2272] = {.lex_state = 40}, + [2273] = {.lex_state = 45, .external_lex_state = 26}, + [2274] = {.lex_state = 45, .external_lex_state = 18}, + [2275] = {.lex_state = 45, .external_lex_state = 26}, + [2276] = {.lex_state = 45, .external_lex_state = 18}, + [2277] = {.lex_state = 44, .external_lex_state = 18}, + [2278] = {.lex_state = 44, .external_lex_state = 18}, + [2279] = {.lex_state = 48, .external_lex_state = 18}, + [2280] = {.lex_state = 45, .external_lex_state = 18}, + [2281] = {.lex_state = 45, .external_lex_state = 18}, + [2282] = {.lex_state = 45, .external_lex_state = 18}, + [2283] = {.lex_state = 45, .external_lex_state = 18}, + [2284] = {.lex_state = 45, .external_lex_state = 26}, + [2285] = {.lex_state = 45, .external_lex_state = 26}, + [2286] = {.lex_state = 45, .external_lex_state = 18}, + [2287] = {.lex_state = 48, .external_lex_state = 18}, + [2288] = {.lex_state = 52, .external_lex_state = 25}, + [2289] = {.lex_state = 52, .external_lex_state = 18}, + [2290] = {.lex_state = 42, .external_lex_state = 18}, + [2291] = {.lex_state = 45, .external_lex_state = 18}, + [2292] = {.lex_state = 45, .external_lex_state = 18}, + [2293] = {.lex_state = 45, .external_lex_state = 18}, + [2294] = {.lex_state = 45, .external_lex_state = 18}, + [2295] = {.lex_state = 45, .external_lex_state = 18}, + [2296] = {.lex_state = 52, .external_lex_state = 25}, + [2297] = {.lex_state = 52, .external_lex_state = 18}, + [2298] = {.lex_state = 42, .external_lex_state = 18}, + [2299] = {.lex_state = 45, .external_lex_state = 18}, + [2300] = {.lex_state = 45, .external_lex_state = 18}, + [2301] = {.lex_state = 51}, + [2302] = {.lex_state = 38}, [2303] = {.lex_state = 47}, - [2304] = {.lex_state = 44, .external_lex_state = 15}, - [2305] = {.lex_state = 44, .external_lex_state = 15}, - [2306] = {.lex_state = 9}, - [2307] = {.lex_state = 40}, - [2308] = {.lex_state = 45, .external_lex_state = 24}, - [2309] = {.lex_state = 45, .external_lex_state = 15}, - [2310] = {.lex_state = 44, .external_lex_state = 15}, - [2311] = {.lex_state = 44, .external_lex_state = 15}, - [2312] = {.lex_state = 48, .external_lex_state = 15}, - [2313] = {.lex_state = 45, .external_lex_state = 24}, - [2314] = {.lex_state = 45, .external_lex_state = 15}, - [2315] = {.lex_state = 45, .external_lex_state = 15}, - [2316] = {.lex_state = 45, .external_lex_state = 15}, - [2317] = {.lex_state = 45, .external_lex_state = 24}, - [2318] = {.lex_state = 48, .external_lex_state = 15}, - [2319] = {.lex_state = 45, .external_lex_state = 24}, - [2320] = {.lex_state = 45, .external_lex_state = 15}, - [2321] = {.lex_state = 52, .external_lex_state = 23}, - [2322] = {.lex_state = 52, .external_lex_state = 15}, - [2323] = {.lex_state = 42, .external_lex_state = 15}, - [2324] = {.lex_state = 45, .external_lex_state = 15}, - [2325] = {.lex_state = 45, .external_lex_state = 15}, - [2326] = {.lex_state = 45, .external_lex_state = 15}, - [2327] = {.lex_state = 45, .external_lex_state = 15}, - [2328] = {.lex_state = 52, .external_lex_state = 23}, - [2329] = {.lex_state = 52, .external_lex_state = 15}, - [2330] = {.lex_state = 42, .external_lex_state = 15}, - [2331] = {.lex_state = 45, .external_lex_state = 15}, - [2332] = {.lex_state = 45, .external_lex_state = 15}, - [2333] = {.lex_state = 45, .external_lex_state = 15}, - [2334] = {.lex_state = 45, .external_lex_state = 15}, - [2335] = {.lex_state = 45, .external_lex_state = 15}, - [2336] = {.lex_state = 51}, - [2337] = {.lex_state = 38}, - [2338] = {.lex_state = 40}, - [2339] = {.lex_state = 51}, - [2340] = {.lex_state = 43, .external_lex_state = 12}, - [2341] = {.lex_state = 47, .external_lex_state = 2}, - [2342] = {.lex_state = 9}, - [2343] = {.lex_state = 9}, + [2304] = {.lex_state = 9}, + [2305] = {.lex_state = 43, .external_lex_state = 11}, + [2306] = {.lex_state = 40}, + [2307] = {.lex_state = 51}, + [2308] = {.lex_state = 9}, + [2309] = {.lex_state = 47, .external_lex_state = 2}, + [2310] = {.lex_state = 9}, + [2311] = {.lex_state = 44, .external_lex_state = 18}, + [2312] = {.lex_state = 44, .external_lex_state = 18}, + [2313] = {.lex_state = 40}, + [2314] = {.lex_state = 45, .external_lex_state = 26}, + [2315] = {.lex_state = 45, .external_lex_state = 18}, + [2316] = {.lex_state = 45, .external_lex_state = 26}, + [2317] = {.lex_state = 45, .external_lex_state = 18}, + [2318] = {.lex_state = 44, .external_lex_state = 18}, + [2319] = {.lex_state = 44, .external_lex_state = 18}, + [2320] = {.lex_state = 48, .external_lex_state = 18}, + [2321] = {.lex_state = 45, .external_lex_state = 18}, + [2322] = {.lex_state = 45, .external_lex_state = 18}, + [2323] = {.lex_state = 45, .external_lex_state = 18}, + [2324] = {.lex_state = 45, .external_lex_state = 18}, + [2325] = {.lex_state = 45, .external_lex_state = 26}, + [2326] = {.lex_state = 45, .external_lex_state = 26}, + [2327] = {.lex_state = 45, .external_lex_state = 18}, + [2328] = {.lex_state = 48, .external_lex_state = 18}, + [2329] = {.lex_state = 52, .external_lex_state = 25}, + [2330] = {.lex_state = 52, .external_lex_state = 18}, + [2331] = {.lex_state = 42, .external_lex_state = 18}, + [2332] = {.lex_state = 45, .external_lex_state = 18}, + [2333] = {.lex_state = 45, .external_lex_state = 18}, + [2334] = {.lex_state = 45, .external_lex_state = 18}, + [2335] = {.lex_state = 45, .external_lex_state = 18}, + [2336] = {.lex_state = 45, .external_lex_state = 18}, + [2337] = {.lex_state = 52, .external_lex_state = 25}, + [2338] = {.lex_state = 52, .external_lex_state = 18}, + [2339] = {.lex_state = 42, .external_lex_state = 18}, + [2340] = {.lex_state = 45, .external_lex_state = 18}, + [2341] = {.lex_state = 45, .external_lex_state = 18}, + [2342] = {.lex_state = 51}, + [2343] = {.lex_state = 38}, [2344] = {.lex_state = 47}, - [2345] = {.lex_state = 44, .external_lex_state = 15}, - [2346] = {.lex_state = 44, .external_lex_state = 15}, - [2347] = {.lex_state = 9}, - [2348] = {.lex_state = 40}, - [2349] = {.lex_state = 45, .external_lex_state = 24}, - [2350] = {.lex_state = 45, .external_lex_state = 15}, - [2351] = {.lex_state = 44, .external_lex_state = 15}, - [2352] = {.lex_state = 44, .external_lex_state = 15}, - [2353] = {.lex_state = 48, .external_lex_state = 15}, - [2354] = {.lex_state = 45, .external_lex_state = 24}, - [2355] = {.lex_state = 45, .external_lex_state = 15}, - [2356] = {.lex_state = 45, .external_lex_state = 15}, - [2357] = {.lex_state = 45, .external_lex_state = 15}, - [2358] = {.lex_state = 45, .external_lex_state = 24}, - [2359] = {.lex_state = 48, .external_lex_state = 15}, - [2360] = {.lex_state = 45, .external_lex_state = 24}, - [2361] = {.lex_state = 45, .external_lex_state = 15}, - [2362] = {.lex_state = 52, .external_lex_state = 23}, - [2363] = {.lex_state = 52, .external_lex_state = 15}, - [2364] = {.lex_state = 42, .external_lex_state = 15}, - [2365] = {.lex_state = 45, .external_lex_state = 15}, - [2366] = {.lex_state = 45, .external_lex_state = 15}, - [2367] = {.lex_state = 45, .external_lex_state = 15}, - [2368] = {.lex_state = 45, .external_lex_state = 15}, - [2369] = {.lex_state = 52, .external_lex_state = 23}, - [2370] = {.lex_state = 52, .external_lex_state = 15}, - [2371] = {.lex_state = 42, .external_lex_state = 15}, - [2372] = {.lex_state = 45, .external_lex_state = 15}, - [2373] = {.lex_state = 45, .external_lex_state = 15}, - [2374] = {.lex_state = 45, .external_lex_state = 15}, - [2375] = {.lex_state = 45, .external_lex_state = 15}, - [2376] = {.lex_state = 45, .external_lex_state = 15}, - [2377] = {.lex_state = 51}, - [2378] = {.lex_state = 38}, - [2379] = {.lex_state = 40}, - [2380] = {.lex_state = 51}, - [2381] = {.lex_state = 43, .external_lex_state = 12}, - [2382] = {.lex_state = 47, .external_lex_state = 2}, - [2383] = {.lex_state = 9}, - [2384] = {.lex_state = 9}, + [2345] = {.lex_state = 9}, + [2346] = {.lex_state = 43, .external_lex_state = 11}, + [2347] = {.lex_state = 40}, + [2348] = {.lex_state = 51}, + [2349] = {.lex_state = 9}, + [2350] = {.lex_state = 47, .external_lex_state = 2}, + [2351] = {.lex_state = 9}, + [2352] = {.lex_state = 44, .external_lex_state = 18}, + [2353] = {.lex_state = 44, .external_lex_state = 18}, + [2354] = {.lex_state = 40}, + [2355] = {.lex_state = 45, .external_lex_state = 26}, + [2356] = {.lex_state = 45, .external_lex_state = 18}, + [2357] = {.lex_state = 45, .external_lex_state = 26}, + [2358] = {.lex_state = 45, .external_lex_state = 18}, + [2359] = {.lex_state = 44, .external_lex_state = 18}, + [2360] = {.lex_state = 44, .external_lex_state = 18}, + [2361] = {.lex_state = 48, .external_lex_state = 18}, + [2362] = {.lex_state = 45, .external_lex_state = 18}, + [2363] = {.lex_state = 45, .external_lex_state = 18}, + [2364] = {.lex_state = 45, .external_lex_state = 18}, + [2365] = {.lex_state = 45, .external_lex_state = 18}, + [2366] = {.lex_state = 45, .external_lex_state = 26}, + [2367] = {.lex_state = 45, .external_lex_state = 26}, + [2368] = {.lex_state = 45, .external_lex_state = 18}, + [2369] = {.lex_state = 48, .external_lex_state = 18}, + [2370] = {.lex_state = 52, .external_lex_state = 25}, + [2371] = {.lex_state = 52, .external_lex_state = 18}, + [2372] = {.lex_state = 42, .external_lex_state = 18}, + [2373] = {.lex_state = 45, .external_lex_state = 18}, + [2374] = {.lex_state = 45, .external_lex_state = 18}, + [2375] = {.lex_state = 45, .external_lex_state = 18}, + [2376] = {.lex_state = 45, .external_lex_state = 18}, + [2377] = {.lex_state = 45, .external_lex_state = 18}, + [2378] = {.lex_state = 52, .external_lex_state = 25}, + [2379] = {.lex_state = 52, .external_lex_state = 18}, + [2380] = {.lex_state = 42, .external_lex_state = 18}, + [2381] = {.lex_state = 45, .external_lex_state = 18}, + [2382] = {.lex_state = 45, .external_lex_state = 18}, + [2383] = {.lex_state = 51}, + [2384] = {.lex_state = 38}, [2385] = {.lex_state = 47}, - [2386] = {.lex_state = 44, .external_lex_state = 15}, - [2387] = {.lex_state = 44, .external_lex_state = 15}, - [2388] = {.lex_state = 9}, - [2389] = {.lex_state = 40}, - [2390] = {.lex_state = 45, .external_lex_state = 24}, - [2391] = {.lex_state = 45, .external_lex_state = 15}, - [2392] = {.lex_state = 44, .external_lex_state = 15}, - [2393] = {.lex_state = 44, .external_lex_state = 15}, - [2394] = {.lex_state = 48, .external_lex_state = 15}, - [2395] = {.lex_state = 45, .external_lex_state = 24}, - [2396] = {.lex_state = 45, .external_lex_state = 15}, - [2397] = {.lex_state = 45, .external_lex_state = 15}, - [2398] = {.lex_state = 45, .external_lex_state = 15}, - [2399] = {.lex_state = 45, .external_lex_state = 24}, - [2400] = {.lex_state = 48, .external_lex_state = 15}, - [2401] = {.lex_state = 45, .external_lex_state = 24}, - [2402] = {.lex_state = 45, .external_lex_state = 15}, - [2403] = {.lex_state = 52, .external_lex_state = 23}, - [2404] = {.lex_state = 52, .external_lex_state = 15}, - [2405] = {.lex_state = 42, .external_lex_state = 15}, - [2406] = {.lex_state = 45, .external_lex_state = 15}, - [2407] = {.lex_state = 45, .external_lex_state = 15}, - [2408] = {.lex_state = 45, .external_lex_state = 15}, - [2409] = {.lex_state = 45, .external_lex_state = 15}, - [2410] = {.lex_state = 52, .external_lex_state = 23}, - [2411] = {.lex_state = 52, .external_lex_state = 15}, - [2412] = {.lex_state = 42, .external_lex_state = 15}, - [2413] = {.lex_state = 45, .external_lex_state = 15}, - [2414] = {.lex_state = 45, .external_lex_state = 15}, - [2415] = {.lex_state = 45, .external_lex_state = 15}, - [2416] = {.lex_state = 45, .external_lex_state = 15}, - [2417] = {.lex_state = 45, .external_lex_state = 15}, - [2418] = {.lex_state = 51}, - [2419] = {.lex_state = 38}, - [2420] = {.lex_state = 40}, - [2421] = {.lex_state = 51}, - [2422] = {.lex_state = 43, .external_lex_state = 12}, - [2423] = {.lex_state = 47, .external_lex_state = 2}, - [2424] = {.lex_state = 9}, - [2425] = {.lex_state = 9}, + [2386] = {.lex_state = 9}, + [2387] = {.lex_state = 43, .external_lex_state = 11}, + [2388] = {.lex_state = 40}, + [2389] = {.lex_state = 51}, + [2390] = {.lex_state = 9}, + [2391] = {.lex_state = 47, .external_lex_state = 2}, + [2392] = {.lex_state = 9}, + [2393] = {.lex_state = 44, .external_lex_state = 18}, + [2394] = {.lex_state = 44, .external_lex_state = 18}, + [2395] = {.lex_state = 40}, + [2396] = {.lex_state = 45, .external_lex_state = 26}, + [2397] = {.lex_state = 45, .external_lex_state = 18}, + [2398] = {.lex_state = 45, .external_lex_state = 26}, + [2399] = {.lex_state = 45, .external_lex_state = 18}, + [2400] = {.lex_state = 44, .external_lex_state = 18}, + [2401] = {.lex_state = 44, .external_lex_state = 18}, + [2402] = {.lex_state = 48, .external_lex_state = 18}, + [2403] = {.lex_state = 45, .external_lex_state = 18}, + [2404] = {.lex_state = 45, .external_lex_state = 18}, + [2405] = {.lex_state = 45, .external_lex_state = 18}, + [2406] = {.lex_state = 45, .external_lex_state = 18}, + [2407] = {.lex_state = 45, .external_lex_state = 26}, + [2408] = {.lex_state = 45, .external_lex_state = 26}, + [2409] = {.lex_state = 45, .external_lex_state = 18}, + [2410] = {.lex_state = 48, .external_lex_state = 18}, + [2411] = {.lex_state = 52, .external_lex_state = 25}, + [2412] = {.lex_state = 52, .external_lex_state = 18}, + [2413] = {.lex_state = 42, .external_lex_state = 18}, + [2414] = {.lex_state = 45, .external_lex_state = 18}, + [2415] = {.lex_state = 45, .external_lex_state = 18}, + [2416] = {.lex_state = 45, .external_lex_state = 18}, + [2417] = {.lex_state = 45, .external_lex_state = 18}, + [2418] = {.lex_state = 45, .external_lex_state = 18}, + [2419] = {.lex_state = 52, .external_lex_state = 25}, + [2420] = {.lex_state = 52, .external_lex_state = 18}, + [2421] = {.lex_state = 42, .external_lex_state = 18}, + [2422] = {.lex_state = 45, .external_lex_state = 18}, + [2423] = {.lex_state = 45, .external_lex_state = 18}, + [2424] = {.lex_state = 51}, + [2425] = {.lex_state = 38}, [2426] = {.lex_state = 47}, - [2427] = {.lex_state = 44, .external_lex_state = 15}, - [2428] = {.lex_state = 44, .external_lex_state = 15}, - [2429] = {.lex_state = 9}, - [2430] = {.lex_state = 40}, - [2431] = {.lex_state = 45, .external_lex_state = 24}, - [2432] = {.lex_state = 45, .external_lex_state = 15}, - [2433] = {.lex_state = 44, .external_lex_state = 15}, - [2434] = {.lex_state = 44, .external_lex_state = 15}, - [2435] = {.lex_state = 48, .external_lex_state = 15}, - [2436] = {.lex_state = 45, .external_lex_state = 24}, - [2437] = {.lex_state = 45, .external_lex_state = 15}, - [2438] = {.lex_state = 45, .external_lex_state = 15}, - [2439] = {.lex_state = 45, .external_lex_state = 15}, - [2440] = {.lex_state = 45, .external_lex_state = 24}, - [2441] = {.lex_state = 48, .external_lex_state = 15}, - [2442] = {.lex_state = 45, .external_lex_state = 24}, - [2443] = {.lex_state = 45, .external_lex_state = 15}, - [2444] = {.lex_state = 52, .external_lex_state = 23}, - [2445] = {.lex_state = 52, .external_lex_state = 15}, - [2446] = {.lex_state = 42, .external_lex_state = 15}, - [2447] = {.lex_state = 45, .external_lex_state = 15}, - [2448] = {.lex_state = 45, .external_lex_state = 15}, - [2449] = {.lex_state = 45, .external_lex_state = 15}, - [2450] = {.lex_state = 45, .external_lex_state = 15}, - [2451] = {.lex_state = 52, .external_lex_state = 23}, - [2452] = {.lex_state = 52, .external_lex_state = 15}, - [2453] = {.lex_state = 42, .external_lex_state = 15}, - [2454] = {.lex_state = 45, .external_lex_state = 15}, - [2455] = {.lex_state = 45, .external_lex_state = 15}, - [2456] = {.lex_state = 45, .external_lex_state = 15}, - [2457] = {.lex_state = 45, .external_lex_state = 15}, - [2458] = {.lex_state = 45, .external_lex_state = 15}, - [2459] = {.lex_state = 43, .external_lex_state = 12}, - [2460] = {.lex_state = 47, .external_lex_state = 2}, - [2461] = {.lex_state = 9}, - [2462] = {.lex_state = 44, .external_lex_state = 15}, - [2463] = {.lex_state = 44, .external_lex_state = 15}, - [2464] = {.lex_state = 9}, - [2465] = {.lex_state = 45, .external_lex_state = 24}, - [2466] = {.lex_state = 45, .external_lex_state = 15}, - [2467] = {.lex_state = 44, .external_lex_state = 15}, - [2468] = {.lex_state = 44, .external_lex_state = 15}, - [2469] = {.lex_state = 48, .external_lex_state = 15}, - [2470] = {.lex_state = 45, .external_lex_state = 24}, - [2471] = {.lex_state = 45, .external_lex_state = 15}, - [2472] = {.lex_state = 45, .external_lex_state = 15}, - [2473] = {.lex_state = 45, .external_lex_state = 15}, - [2474] = {.lex_state = 45, .external_lex_state = 24}, - [2475] = {.lex_state = 48, .external_lex_state = 15}, - [2476] = {.lex_state = 45, .external_lex_state = 24}, - [2477] = {.lex_state = 45, .external_lex_state = 15}, - [2478] = {.lex_state = 52, .external_lex_state = 23}, - [2479] = {.lex_state = 52, .external_lex_state = 15}, - [2480] = {.lex_state = 42, .external_lex_state = 15}, - [2481] = {.lex_state = 45, .external_lex_state = 15}, - [2482] = {.lex_state = 45, .external_lex_state = 15}, - [2483] = {.lex_state = 45, .external_lex_state = 15}, - [2484] = {.lex_state = 45, .external_lex_state = 15}, - [2485] = {.lex_state = 52, .external_lex_state = 23}, - [2486] = {.lex_state = 52, .external_lex_state = 15}, - [2487] = {.lex_state = 42, .external_lex_state = 15}, - [2488] = {.lex_state = 45, .external_lex_state = 15}, - [2489] = {.lex_state = 45, .external_lex_state = 15}, - [2490] = {.lex_state = 45, .external_lex_state = 15}, - [2491] = {.lex_state = 45, .external_lex_state = 15}, - [2492] = {.lex_state = 45, .external_lex_state = 15}, - [2493] = {.lex_state = 47, .external_lex_state = 2}, - [2494] = {.lex_state = 9}, - [2495] = {.lex_state = 44, .external_lex_state = 15}, - [2496] = {.lex_state = 44, .external_lex_state = 15}, - [2497] = {.lex_state = 9}, - [2498] = {.lex_state = 45, .external_lex_state = 24}, - [2499] = {.lex_state = 45, .external_lex_state = 15}, - [2500] = {.lex_state = 44, .external_lex_state = 15}, - [2501] = {.lex_state = 44, .external_lex_state = 15}, - [2502] = {.lex_state = 48, .external_lex_state = 15}, - [2503] = {.lex_state = 45, .external_lex_state = 24}, - [2504] = {.lex_state = 45, .external_lex_state = 15}, - [2505] = {.lex_state = 45, .external_lex_state = 15}, - [2506] = {.lex_state = 45, .external_lex_state = 15}, - [2507] = {.lex_state = 45, .external_lex_state = 24}, - [2508] = {.lex_state = 48, .external_lex_state = 15}, - [2509] = {.lex_state = 45, .external_lex_state = 24}, - [2510] = {.lex_state = 45, .external_lex_state = 15}, - [2511] = {.lex_state = 52, .external_lex_state = 23}, - [2512] = {.lex_state = 52, .external_lex_state = 15}, - [2513] = {.lex_state = 42, .external_lex_state = 15}, - [2514] = {.lex_state = 45, .external_lex_state = 15}, - [2515] = {.lex_state = 45, .external_lex_state = 15}, - [2516] = {.lex_state = 45, .external_lex_state = 15}, - [2517] = {.lex_state = 45, .external_lex_state = 15}, - [2518] = {.lex_state = 52, .external_lex_state = 23}, - [2519] = {.lex_state = 52, .external_lex_state = 15}, - [2520] = {.lex_state = 42, .external_lex_state = 15}, - [2521] = {.lex_state = 45, .external_lex_state = 15}, - [2522] = {.lex_state = 45, .external_lex_state = 15}, - [2523] = {.lex_state = 45, .external_lex_state = 15}, - [2524] = {.lex_state = 45, .external_lex_state = 15}, - [2525] = {.lex_state = 45, .external_lex_state = 15}, - [2526] = {.lex_state = 9, .external_lex_state = 2}, - [2527] = {.lex_state = 37}, - [2528] = {.lex_state = 9, .external_lex_state = 2}, - [2529] = {.lex_state = 9, .external_lex_state = 2}, - [2530] = {.lex_state = 52}, - [2531] = {.lex_state = 37}, - [2532] = {.lex_state = 38, .external_lex_state = 7}, - [2533] = {.lex_state = 53}, + [2427] = {.lex_state = 9}, + [2428] = {.lex_state = 43, .external_lex_state = 11}, + [2429] = {.lex_state = 40}, + [2430] = {.lex_state = 51}, + [2431] = {.lex_state = 9}, + [2432] = {.lex_state = 47, .external_lex_state = 2}, + [2433] = {.lex_state = 9}, + [2434] = {.lex_state = 44, .external_lex_state = 18}, + [2435] = {.lex_state = 44, .external_lex_state = 18}, + [2436] = {.lex_state = 40}, + [2437] = {.lex_state = 45, .external_lex_state = 26}, + [2438] = {.lex_state = 45, .external_lex_state = 18}, + [2439] = {.lex_state = 45, .external_lex_state = 26}, + [2440] = {.lex_state = 45, .external_lex_state = 18}, + [2441] = {.lex_state = 44, .external_lex_state = 18}, + [2442] = {.lex_state = 44, .external_lex_state = 18}, + [2443] = {.lex_state = 48, .external_lex_state = 18}, + [2444] = {.lex_state = 45, .external_lex_state = 18}, + [2445] = {.lex_state = 45, .external_lex_state = 18}, + [2446] = {.lex_state = 45, .external_lex_state = 18}, + [2447] = {.lex_state = 45, .external_lex_state = 18}, + [2448] = {.lex_state = 45, .external_lex_state = 26}, + [2449] = {.lex_state = 45, .external_lex_state = 26}, + [2450] = {.lex_state = 45, .external_lex_state = 18}, + [2451] = {.lex_state = 48, .external_lex_state = 18}, + [2452] = {.lex_state = 52, .external_lex_state = 25}, + [2453] = {.lex_state = 52, .external_lex_state = 18}, + [2454] = {.lex_state = 42, .external_lex_state = 18}, + [2455] = {.lex_state = 45, .external_lex_state = 18}, + [2456] = {.lex_state = 45, .external_lex_state = 18}, + [2457] = {.lex_state = 45, .external_lex_state = 18}, + [2458] = {.lex_state = 45, .external_lex_state = 18}, + [2459] = {.lex_state = 45, .external_lex_state = 18}, + [2460] = {.lex_state = 52, .external_lex_state = 25}, + [2461] = {.lex_state = 52, .external_lex_state = 18}, + [2462] = {.lex_state = 42, .external_lex_state = 18}, + [2463] = {.lex_state = 45, .external_lex_state = 18}, + [2464] = {.lex_state = 45, .external_lex_state = 18}, + [2465] = {.lex_state = 9}, + [2466] = {.lex_state = 43, .external_lex_state = 11}, + [2467] = {.lex_state = 47, .external_lex_state = 2}, + [2468] = {.lex_state = 9}, + [2469] = {.lex_state = 44, .external_lex_state = 18}, + [2470] = {.lex_state = 44, .external_lex_state = 18}, + [2471] = {.lex_state = 45, .external_lex_state = 26}, + [2472] = {.lex_state = 45, .external_lex_state = 18}, + [2473] = {.lex_state = 45, .external_lex_state = 26}, + [2474] = {.lex_state = 45, .external_lex_state = 18}, + [2475] = {.lex_state = 44, .external_lex_state = 18}, + [2476] = {.lex_state = 44, .external_lex_state = 18}, + [2477] = {.lex_state = 48, .external_lex_state = 18}, + [2478] = {.lex_state = 45, .external_lex_state = 18}, + [2479] = {.lex_state = 45, .external_lex_state = 18}, + [2480] = {.lex_state = 45, .external_lex_state = 18}, + [2481] = {.lex_state = 45, .external_lex_state = 18}, + [2482] = {.lex_state = 45, .external_lex_state = 26}, + [2483] = {.lex_state = 45, .external_lex_state = 26}, + [2484] = {.lex_state = 45, .external_lex_state = 18}, + [2485] = {.lex_state = 48, .external_lex_state = 18}, + [2486] = {.lex_state = 52, .external_lex_state = 25}, + [2487] = {.lex_state = 52, .external_lex_state = 18}, + [2488] = {.lex_state = 42, .external_lex_state = 18}, + [2489] = {.lex_state = 45, .external_lex_state = 18}, + [2490] = {.lex_state = 45, .external_lex_state = 18}, + [2491] = {.lex_state = 45, .external_lex_state = 18}, + [2492] = {.lex_state = 45, .external_lex_state = 18}, + [2493] = {.lex_state = 45, .external_lex_state = 18}, + [2494] = {.lex_state = 52, .external_lex_state = 25}, + [2495] = {.lex_state = 52, .external_lex_state = 18}, + [2496] = {.lex_state = 42, .external_lex_state = 18}, + [2497] = {.lex_state = 45, .external_lex_state = 18}, + [2498] = {.lex_state = 45, .external_lex_state = 18}, + [2499] = {.lex_state = 9}, + [2500] = {.lex_state = 47, .external_lex_state = 2}, + [2501] = {.lex_state = 9}, + [2502] = {.lex_state = 44, .external_lex_state = 18}, + [2503] = {.lex_state = 44, .external_lex_state = 18}, + [2504] = {.lex_state = 45, .external_lex_state = 26}, + [2505] = {.lex_state = 45, .external_lex_state = 18}, + [2506] = {.lex_state = 45, .external_lex_state = 26}, + [2507] = {.lex_state = 45, .external_lex_state = 18}, + [2508] = {.lex_state = 44, .external_lex_state = 18}, + [2509] = {.lex_state = 44, .external_lex_state = 18}, + [2510] = {.lex_state = 48, .external_lex_state = 18}, + [2511] = {.lex_state = 45, .external_lex_state = 18}, + [2512] = {.lex_state = 45, .external_lex_state = 18}, + [2513] = {.lex_state = 45, .external_lex_state = 18}, + [2514] = {.lex_state = 45, .external_lex_state = 18}, + [2515] = {.lex_state = 45, .external_lex_state = 26}, + [2516] = {.lex_state = 45, .external_lex_state = 26}, + [2517] = {.lex_state = 45, .external_lex_state = 18}, + [2518] = {.lex_state = 48, .external_lex_state = 18}, + [2519] = {.lex_state = 52, .external_lex_state = 25}, + [2520] = {.lex_state = 52, .external_lex_state = 18}, + [2521] = {.lex_state = 42, .external_lex_state = 18}, + [2522] = {.lex_state = 45, .external_lex_state = 18}, + [2523] = {.lex_state = 45, .external_lex_state = 18}, + [2524] = {.lex_state = 45, .external_lex_state = 18}, + [2525] = {.lex_state = 45, .external_lex_state = 18}, + [2526] = {.lex_state = 45, .external_lex_state = 18}, + [2527] = {.lex_state = 52, .external_lex_state = 25}, + [2528] = {.lex_state = 52, .external_lex_state = 18}, + [2529] = {.lex_state = 42, .external_lex_state = 18}, + [2530] = {.lex_state = 45, .external_lex_state = 18}, + [2531] = {.lex_state = 45, .external_lex_state = 18}, + [2532] = {.lex_state = 9, .external_lex_state = 2}, + [2533] = {.lex_state = 9, .external_lex_state = 2}, [2534] = {.lex_state = 52}, - [2535] = {.lex_state = 9, .external_lex_state = 2}, - [2536] = {.lex_state = 9, .external_lex_state = 2}, - [2537] = {.lex_state = 37}, - [2538] = {.lex_state = 37}, - [2539] = {.lex_state = 53}, - [2540] = {.lex_state = 37}, - [2541] = {.lex_state = 52}, - [2542] = {.lex_state = 41, .external_lex_state = 7}, - [2543] = {.lex_state = 53}, - [2544] = {.lex_state = 47}, - [2545] = {.lex_state = 9}, - [2546] = {.lex_state = 4, .external_lex_state = 14}, - [2547] = {.lex_state = 9}, - [2548] = {.lex_state = 4, .external_lex_state = 14}, - [2549] = {.lex_state = 4, .external_lex_state = 14}, - [2550] = {.lex_state = 53}, - [2551] = {.lex_state = 4, .external_lex_state = 14}, - [2552] = {.lex_state = 4, .external_lex_state = 14}, - [2553] = {.lex_state = 23, .external_lex_state = 14}, - [2554] = {.lex_state = 37}, - [2555] = {.lex_state = 47}, - [2556] = {.lex_state = 47}, - [2557] = {.lex_state = 43, .external_lex_state = 12}, - [2558] = {.lex_state = 37}, - [2559] = {.lex_state = 47}, - [2560] = {.lex_state = 47}, - [2561] = {.lex_state = 43, .external_lex_state = 12}, - [2562] = {.lex_state = 37}, - [2563] = {.lex_state = 43, .external_lex_state = 12}, - [2564] = {.lex_state = 4, .external_lex_state = 13}, - [2565] = {.lex_state = 3, .external_lex_state = 5}, - [2566] = {.lex_state = 9, .external_lex_state = 10}, - [2567] = {.lex_state = 37}, - [2568] = {.lex_state = 9, .external_lex_state = 2}, - [2569] = {.lex_state = 9, .external_lex_state = 2}, - [2570] = {.lex_state = 38, .external_lex_state = 7}, - [2571] = {.lex_state = 53}, - [2572] = {.lex_state = 52}, + [2535] = {.lex_state = 37}, + [2536] = {.lex_state = 37}, + [2537] = {.lex_state = 53}, + [2538] = {.lex_state = 52}, + [2539] = {.lex_state = 9, .external_lex_state = 2}, + [2540] = {.lex_state = 9, .external_lex_state = 2}, + [2541] = {.lex_state = 9, .external_lex_state = 2}, + [2542] = {.lex_state = 37}, + [2543] = {.lex_state = 38, .external_lex_state = 7}, + [2544] = {.lex_state = 37}, + [2545] = {.lex_state = 53}, + [2546] = {.lex_state = 37}, + [2547] = {.lex_state = 52}, + [2548] = {.lex_state = 47}, + [2549] = {.lex_state = 4, .external_lex_state = 13}, + [2550] = {.lex_state = 41, .external_lex_state = 7}, + [2551] = {.lex_state = 53}, + [2552] = {.lex_state = 9}, + [2553] = {.lex_state = 9}, + [2554] = {.lex_state = 4, .external_lex_state = 13}, + [2555] = {.lex_state = 4, .external_lex_state = 13}, + [2556] = {.lex_state = 53}, + [2557] = {.lex_state = 4, .external_lex_state = 13}, + [2558] = {.lex_state = 4, .external_lex_state = 13}, + [2559] = {.lex_state = 23, .external_lex_state = 13}, + [2560] = {.lex_state = 37}, + [2561] = {.lex_state = 47}, + [2562] = {.lex_state = 47}, + [2563] = {.lex_state = 43, .external_lex_state = 11}, + [2564] = {.lex_state = 37}, + [2565] = {.lex_state = 47}, + [2566] = {.lex_state = 47}, + [2567] = {.lex_state = 43, .external_lex_state = 11}, + [2568] = {.lex_state = 37}, + [2569] = {.lex_state = 43, .external_lex_state = 11}, + [2570] = {.lex_state = 4, .external_lex_state = 12}, + [2571] = {.lex_state = 3, .external_lex_state = 5}, + [2572] = {.lex_state = 9, .external_lex_state = 14}, [2573] = {.lex_state = 9, .external_lex_state = 2}, - [2574] = {.lex_state = 53}, - [2575] = {.lex_state = 37}, - [2576] = {.lex_state = 41, .external_lex_state = 7}, - [2577] = {.lex_state = 53}, - [2578] = {.lex_state = 53}, - [2579] = {.lex_state = 37}, - [2580] = {.lex_state = 9, .external_lex_state = 2}, - [2581] = {.lex_state = 9, .external_lex_state = 2}, - [2582] = {.lex_state = 38, .external_lex_state = 7}, + [2574] = {.lex_state = 37}, + [2575] = {.lex_state = 53}, + [2576] = {.lex_state = 52}, + [2577] = {.lex_state = 9, .external_lex_state = 2}, + [2578] = {.lex_state = 9, .external_lex_state = 2}, + [2579] = {.lex_state = 38, .external_lex_state = 7}, + [2580] = {.lex_state = 53}, + [2581] = {.lex_state = 37}, + [2582] = {.lex_state = 41, .external_lex_state = 7}, [2583] = {.lex_state = 53}, - [2584] = {.lex_state = 9, .external_lex_state = 2}, - [2585] = {.lex_state = 53}, - [2586] = {.lex_state = 41, .external_lex_state = 7}, + [2584] = {.lex_state = 53}, + [2585] = {.lex_state = 9, .external_lex_state = 2}, + [2586] = {.lex_state = 37}, [2587] = {.lex_state = 53}, - [2588] = {.lex_state = 53}, - [2589] = {.lex_state = 37}, - [2590] = {.lex_state = 9, .external_lex_state = 2}, - [2591] = {.lex_state = 9, .external_lex_state = 2}, - [2592] = {.lex_state = 38, .external_lex_state = 7}, + [2588] = {.lex_state = 9, .external_lex_state = 2}, + [2589] = {.lex_state = 9, .external_lex_state = 2}, + [2590] = {.lex_state = 38, .external_lex_state = 7}, + [2591] = {.lex_state = 53}, + [2592] = {.lex_state = 41, .external_lex_state = 7}, [2593] = {.lex_state = 53}, - [2594] = {.lex_state = 9, .external_lex_state = 2}, - [2595] = {.lex_state = 53}, - [2596] = {.lex_state = 41, .external_lex_state = 7}, + [2594] = {.lex_state = 53}, + [2595] = {.lex_state = 9, .external_lex_state = 2}, + [2596] = {.lex_state = 37}, [2597] = {.lex_state = 53}, - [2598] = {.lex_state = 53}, - [2599] = {.lex_state = 37}, - [2600] = {.lex_state = 9, .external_lex_state = 2}, - [2601] = {.lex_state = 9, .external_lex_state = 2}, - [2602] = {.lex_state = 38, .external_lex_state = 7}, + [2598] = {.lex_state = 9, .external_lex_state = 2}, + [2599] = {.lex_state = 9, .external_lex_state = 2}, + [2600] = {.lex_state = 38, .external_lex_state = 7}, + [2601] = {.lex_state = 53}, + [2602] = {.lex_state = 41, .external_lex_state = 7}, [2603] = {.lex_state = 53}, - [2604] = {.lex_state = 9, .external_lex_state = 2}, - [2605] = {.lex_state = 53}, - [2606] = {.lex_state = 41, .external_lex_state = 7}, + [2604] = {.lex_state = 53}, + [2605] = {.lex_state = 9, .external_lex_state = 2}, + [2606] = {.lex_state = 37}, [2607] = {.lex_state = 53}, - [2608] = {.lex_state = 53}, - [2609] = {.lex_state = 37}, - [2610] = {.lex_state = 9, .external_lex_state = 2}, - [2611] = {.lex_state = 9, .external_lex_state = 2}, - [2612] = {.lex_state = 38, .external_lex_state = 7}, + [2608] = {.lex_state = 9, .external_lex_state = 2}, + [2609] = {.lex_state = 9, .external_lex_state = 2}, + [2610] = {.lex_state = 38, .external_lex_state = 7}, + [2611] = {.lex_state = 53}, + [2612] = {.lex_state = 41, .external_lex_state = 7}, [2613] = {.lex_state = 53}, - [2614] = {.lex_state = 9, .external_lex_state = 2}, - [2615] = {.lex_state = 53}, - [2616] = {.lex_state = 41, .external_lex_state = 7}, + [2614] = {.lex_state = 53}, + [2615] = {.lex_state = 9, .external_lex_state = 2}, + [2616] = {.lex_state = 37}, [2617] = {.lex_state = 53}, - [2618] = {.lex_state = 53}, - [2619] = {.lex_state = 37}, - [2620] = {.lex_state = 9, .external_lex_state = 2}, - [2621] = {.lex_state = 9, .external_lex_state = 2}, - [2622] = {.lex_state = 38, .external_lex_state = 7}, + [2618] = {.lex_state = 9, .external_lex_state = 2}, + [2619] = {.lex_state = 9, .external_lex_state = 2}, + [2620] = {.lex_state = 38, .external_lex_state = 7}, + [2621] = {.lex_state = 53}, + [2622] = {.lex_state = 41, .external_lex_state = 7}, [2623] = {.lex_state = 53}, - [2624] = {.lex_state = 9, .external_lex_state = 2}, - [2625] = {.lex_state = 53}, - [2626] = {.lex_state = 41, .external_lex_state = 7}, + [2624] = {.lex_state = 53}, + [2625] = {.lex_state = 9, .external_lex_state = 2}, + [2626] = {.lex_state = 37}, [2627] = {.lex_state = 53}, - [2628] = {.lex_state = 53}, - [2629] = {.lex_state = 37}, - [2630] = {.lex_state = 9, .external_lex_state = 2}, - [2631] = {.lex_state = 9, .external_lex_state = 2}, - [2632] = {.lex_state = 38, .external_lex_state = 7}, - [2633] = {.lex_state = 9, .external_lex_state = 2}, - [2634] = {.lex_state = 41, .external_lex_state = 7}, - [2635] = {.lex_state = 53}, - [2636] = {.lex_state = 53}, - [2637] = {.lex_state = 37}, + [2628] = {.lex_state = 9, .external_lex_state = 2}, + [2629] = {.lex_state = 9, .external_lex_state = 2}, + [2630] = {.lex_state = 38, .external_lex_state = 7}, + [2631] = {.lex_state = 53}, + [2632] = {.lex_state = 41, .external_lex_state = 7}, + [2633] = {.lex_state = 53}, + [2634] = {.lex_state = 53}, + [2635] = {.lex_state = 9, .external_lex_state = 2}, + [2636] = {.lex_state = 37}, + [2637] = {.lex_state = 9, .external_lex_state = 2}, [2638] = {.lex_state = 9, .external_lex_state = 2}, - [2639] = {.lex_state = 9, .external_lex_state = 2}, - [2640] = {.lex_state = 38, .external_lex_state = 7}, - [2641] = {.lex_state = 9, .external_lex_state = 2}, - [2642] = {.lex_state = 41, .external_lex_state = 7}, - [2643] = {.lex_state = 53}, - [2644] = {.lex_state = 53}, - [2645] = {.lex_state = 37}, + [2639] = {.lex_state = 38, .external_lex_state = 7}, + [2640] = {.lex_state = 41, .external_lex_state = 7}, + [2641] = {.lex_state = 53}, + [2642] = {.lex_state = 53}, + [2643] = {.lex_state = 9, .external_lex_state = 2}, + [2644] = {.lex_state = 37}, + [2645] = {.lex_state = 9, .external_lex_state = 2}, [2646] = {.lex_state = 9, .external_lex_state = 2}, - [2647] = {.lex_state = 9, .external_lex_state = 2}, - [2648] = {.lex_state = 38, .external_lex_state = 7}, - [2649] = {.lex_state = 9, .external_lex_state = 2}, - [2650] = {.lex_state = 41, .external_lex_state = 7}, - [2651] = {.lex_state = 53}, - [2652] = {.lex_state = 53}, - [2653] = {.lex_state = 37}, + [2647] = {.lex_state = 38, .external_lex_state = 7}, + [2648] = {.lex_state = 41, .external_lex_state = 7}, + [2649] = {.lex_state = 53}, + [2650] = {.lex_state = 53}, + [2651] = {.lex_state = 9, .external_lex_state = 2}, + [2652] = {.lex_state = 37}, + [2653] = {.lex_state = 9, .external_lex_state = 2}, [2654] = {.lex_state = 9, .external_lex_state = 2}, - [2655] = {.lex_state = 9, .external_lex_state = 2}, - [2656] = {.lex_state = 38, .external_lex_state = 7}, - [2657] = {.lex_state = 9, .external_lex_state = 2}, - [2658] = {.lex_state = 41, .external_lex_state = 7}, - [2659] = {.lex_state = 53}, - [2660] = {.lex_state = 53}, - [2661] = {.lex_state = 37}, + [2655] = {.lex_state = 38, .external_lex_state = 7}, + [2656] = {.lex_state = 41, .external_lex_state = 7}, + [2657] = {.lex_state = 53}, + [2658] = {.lex_state = 53}, + [2659] = {.lex_state = 9, .external_lex_state = 2}, + [2660] = {.lex_state = 37}, + [2661] = {.lex_state = 9, .external_lex_state = 2}, [2662] = {.lex_state = 9, .external_lex_state = 2}, - [2663] = {.lex_state = 9, .external_lex_state = 2}, - [2664] = {.lex_state = 38, .external_lex_state = 7}, - [2665] = {.lex_state = 9, .external_lex_state = 2}, - [2666] = {.lex_state = 41, .external_lex_state = 7}, - [2667] = {.lex_state = 53}, - [2668] = {.lex_state = 53}, - [2669] = {.lex_state = 37}, + [2663] = {.lex_state = 38, .external_lex_state = 7}, + [2664] = {.lex_state = 41, .external_lex_state = 7}, + [2665] = {.lex_state = 53}, + [2666] = {.lex_state = 53}, + [2667] = {.lex_state = 9, .external_lex_state = 2}, + [2668] = {.lex_state = 37}, + [2669] = {.lex_state = 9, .external_lex_state = 2}, [2670] = {.lex_state = 9, .external_lex_state = 2}, - [2671] = {.lex_state = 9, .external_lex_state = 2}, - [2672] = {.lex_state = 38, .external_lex_state = 7}, - [2673] = {.lex_state = 9, .external_lex_state = 2}, - [2674] = {.lex_state = 41, .external_lex_state = 7}, - [2675] = {.lex_state = 53}, - [2676] = {.lex_state = 53}, - [2677] = {.lex_state = 37}, + [2671] = {.lex_state = 38, .external_lex_state = 7}, + [2672] = {.lex_state = 41, .external_lex_state = 7}, + [2673] = {.lex_state = 53}, + [2674] = {.lex_state = 53}, + [2675] = {.lex_state = 9, .external_lex_state = 2}, + [2676] = {.lex_state = 37}, + [2677] = {.lex_state = 9, .external_lex_state = 2}, [2678] = {.lex_state = 9, .external_lex_state = 2}, - [2679] = {.lex_state = 9, .external_lex_state = 2}, - [2680] = {.lex_state = 38, .external_lex_state = 7}, - [2681] = {.lex_state = 9, .external_lex_state = 2}, - [2682] = {.lex_state = 41, .external_lex_state = 7}, - [2683] = {.lex_state = 53}, - [2684] = {.lex_state = 53}, - [2685] = {.lex_state = 37}, + [2679] = {.lex_state = 38, .external_lex_state = 7}, + [2680] = {.lex_state = 41, .external_lex_state = 7}, + [2681] = {.lex_state = 53}, + [2682] = {.lex_state = 53}, + [2683] = {.lex_state = 9, .external_lex_state = 2}, + [2684] = {.lex_state = 37}, + [2685] = {.lex_state = 9, .external_lex_state = 2}, [2686] = {.lex_state = 9, .external_lex_state = 2}, - [2687] = {.lex_state = 9, .external_lex_state = 2}, - [2688] = {.lex_state = 38, .external_lex_state = 7}, - [2689] = {.lex_state = 9, .external_lex_state = 2}, - [2690] = {.lex_state = 41, .external_lex_state = 7}, - [2691] = {.lex_state = 53}, - [2692] = {.lex_state = 53}, - [2693] = {.lex_state = 37}, + [2687] = {.lex_state = 38, .external_lex_state = 7}, + [2688] = {.lex_state = 41, .external_lex_state = 7}, + [2689] = {.lex_state = 53}, + [2690] = {.lex_state = 53}, + [2691] = {.lex_state = 9, .external_lex_state = 2}, + [2692] = {.lex_state = 37}, + [2693] = {.lex_state = 9, .external_lex_state = 2}, [2694] = {.lex_state = 9, .external_lex_state = 2}, - [2695] = {.lex_state = 9, .external_lex_state = 2}, - [2696] = {.lex_state = 38, .external_lex_state = 7}, - [2697] = {.lex_state = 9, .external_lex_state = 2}, - [2698] = {.lex_state = 41, .external_lex_state = 7}, - [2699] = {.lex_state = 53}, - [2700] = {.lex_state = 53}, - [2701] = {.lex_state = 37}, + [2695] = {.lex_state = 38, .external_lex_state = 7}, + [2696] = {.lex_state = 41, .external_lex_state = 7}, + [2697] = {.lex_state = 53}, + [2698] = {.lex_state = 53}, + [2699] = {.lex_state = 9, .external_lex_state = 2}, + [2700] = {.lex_state = 37}, + [2701] = {.lex_state = 9, .external_lex_state = 2}, [2702] = {.lex_state = 9, .external_lex_state = 2}, - [2703] = {.lex_state = 9, .external_lex_state = 2}, - [2704] = {.lex_state = 38, .external_lex_state = 7}, - [2705] = {.lex_state = 9, .external_lex_state = 2}, - [2706] = {.lex_state = 41, .external_lex_state = 7}, - [2707] = {.lex_state = 53}, - [2708] = {.lex_state = 53}, - [2709] = {.lex_state = 37}, + [2703] = {.lex_state = 38, .external_lex_state = 7}, + [2704] = {.lex_state = 41, .external_lex_state = 7}, + [2705] = {.lex_state = 53}, + [2706] = {.lex_state = 53}, + [2707] = {.lex_state = 9, .external_lex_state = 2}, + [2708] = {.lex_state = 37}, + [2709] = {.lex_state = 9, .external_lex_state = 2}, [2710] = {.lex_state = 9, .external_lex_state = 2}, - [2711] = {.lex_state = 9, .external_lex_state = 2}, - [2712] = {.lex_state = 38, .external_lex_state = 7}, - [2713] = {.lex_state = 9, .external_lex_state = 2}, - [2714] = {.lex_state = 41, .external_lex_state = 7}, - [2715] = {.lex_state = 53}, - [2716] = {.lex_state = 53}, - [2717] = {.lex_state = 37}, + [2711] = {.lex_state = 38, .external_lex_state = 7}, + [2712] = {.lex_state = 41, .external_lex_state = 7}, + [2713] = {.lex_state = 53}, + [2714] = {.lex_state = 53}, + [2715] = {.lex_state = 9, .external_lex_state = 2}, + [2716] = {.lex_state = 37}, + [2717] = {.lex_state = 9, .external_lex_state = 2}, [2718] = {.lex_state = 9, .external_lex_state = 2}, - [2719] = {.lex_state = 9, .external_lex_state = 2}, - [2720] = {.lex_state = 38, .external_lex_state = 7}, - [2721] = {.lex_state = 9, .external_lex_state = 2}, - [2722] = {.lex_state = 41, .external_lex_state = 7}, - [2723] = {.lex_state = 53}, - [2724] = {.lex_state = 53}, - [2725] = {.lex_state = 37}, + [2719] = {.lex_state = 38, .external_lex_state = 7}, + [2720] = {.lex_state = 41, .external_lex_state = 7}, + [2721] = {.lex_state = 53}, + [2722] = {.lex_state = 53}, + [2723] = {.lex_state = 9, .external_lex_state = 2}, + [2724] = {.lex_state = 37}, + [2725] = {.lex_state = 9, .external_lex_state = 2}, [2726] = {.lex_state = 9, .external_lex_state = 2}, - [2727] = {.lex_state = 9, .external_lex_state = 2}, - [2728] = {.lex_state = 38, .external_lex_state = 7}, - [2729] = {.lex_state = 9, .external_lex_state = 2}, - [2730] = {.lex_state = 41, .external_lex_state = 7}, - [2731] = {.lex_state = 53}, - [2732] = {.lex_state = 53}, - [2733] = {.lex_state = 37}, + [2727] = {.lex_state = 38, .external_lex_state = 7}, + [2728] = {.lex_state = 41, .external_lex_state = 7}, + [2729] = {.lex_state = 53}, + [2730] = {.lex_state = 53}, + [2731] = {.lex_state = 9, .external_lex_state = 2}, + [2732] = {.lex_state = 37}, + [2733] = {.lex_state = 9, .external_lex_state = 2}, [2734] = {.lex_state = 9, .external_lex_state = 2}, - [2735] = {.lex_state = 9, .external_lex_state = 2}, - [2736] = {.lex_state = 38, .external_lex_state = 7}, - [2737] = {.lex_state = 9, .external_lex_state = 2}, - [2738] = {.lex_state = 41, .external_lex_state = 7}, - [2739] = {.lex_state = 53}, - [2740] = {.lex_state = 53}, - [2741] = {.lex_state = 37}, + [2735] = {.lex_state = 38, .external_lex_state = 7}, + [2736] = {.lex_state = 41, .external_lex_state = 7}, + [2737] = {.lex_state = 53}, + [2738] = {.lex_state = 53}, + [2739] = {.lex_state = 9, .external_lex_state = 2}, + [2740] = {.lex_state = 37}, + [2741] = {.lex_state = 9, .external_lex_state = 2}, [2742] = {.lex_state = 9, .external_lex_state = 2}, - [2743] = {.lex_state = 9, .external_lex_state = 2}, - [2744] = {.lex_state = 38, .external_lex_state = 7}, - [2745] = {.lex_state = 9, .external_lex_state = 2}, - [2746] = {.lex_state = 41, .external_lex_state = 7}, - [2747] = {.lex_state = 53}, - [2748] = {.lex_state = 53}, - [2749] = {.lex_state = 37}, + [2743] = {.lex_state = 38, .external_lex_state = 7}, + [2744] = {.lex_state = 41, .external_lex_state = 7}, + [2745] = {.lex_state = 53}, + [2746] = {.lex_state = 53}, + [2747] = {.lex_state = 9, .external_lex_state = 2}, + [2748] = {.lex_state = 37}, + [2749] = {.lex_state = 9, .external_lex_state = 2}, [2750] = {.lex_state = 9, .external_lex_state = 2}, - [2751] = {.lex_state = 9, .external_lex_state = 2}, - [2752] = {.lex_state = 38, .external_lex_state = 7}, - [2753] = {.lex_state = 9, .external_lex_state = 2}, - [2754] = {.lex_state = 41, .external_lex_state = 7}, - [2755] = {.lex_state = 53}, - [2756] = {.lex_state = 53}, - [2757] = {.lex_state = 37}, + [2751] = {.lex_state = 38, .external_lex_state = 7}, + [2752] = {.lex_state = 41, .external_lex_state = 7}, + [2753] = {.lex_state = 53}, + [2754] = {.lex_state = 53}, + [2755] = {.lex_state = 9, .external_lex_state = 2}, + [2756] = {.lex_state = 37}, + [2757] = {.lex_state = 9, .external_lex_state = 2}, [2758] = {.lex_state = 9, .external_lex_state = 2}, [2759] = {.lex_state = 38, .external_lex_state = 7}, - [2760] = {.lex_state = 9, .external_lex_state = 2}, - [2761] = {.lex_state = 41, .external_lex_state = 7}, + [2760] = {.lex_state = 41, .external_lex_state = 7}, + [2761] = {.lex_state = 53}, [2762] = {.lex_state = 53}, - [2763] = {.lex_state = 53}, - [2764] = {.lex_state = 9, .external_lex_state = 2}, - [2765] = {.lex_state = 38, .external_lex_state = 7}, - [2766] = {.lex_state = 9, .external_lex_state = 2}, + [2763] = {.lex_state = 9, .external_lex_state = 2}, + [2764] = {.lex_state = 37}, + [2765] = {.lex_state = 9, .external_lex_state = 2}, + [2766] = {.lex_state = 38, .external_lex_state = 7}, [2767] = {.lex_state = 41, .external_lex_state = 7}, [2768] = {.lex_state = 53}, [2769] = {.lex_state = 53}, [2770] = {.lex_state = 9, .external_lex_state = 2}, - [2771] = {.lex_state = 53}, - [2772] = {.lex_state = 4, .external_lex_state = 13}, - [2773] = {.lex_state = 4, .external_lex_state = 14}, - [2774] = {.lex_state = 4, .external_lex_state = 14}, - [2775] = {.lex_state = 43}, - [2776] = {.lex_state = 43}, - [2777] = {.lex_state = 47}, - [2778] = {.lex_state = 17, .external_lex_state = 14}, - [2779] = {.lex_state = 19, .external_lex_state = 26}, - [2780] = {.lex_state = 17, .external_lex_state = 14}, - [2781] = {.lex_state = 19, .external_lex_state = 26}, - [2782] = {.lex_state = 3, .external_lex_state = 5}, - [2783] = {.lex_state = 3, .external_lex_state = 5}, - [2784] = {.lex_state = 3, .external_lex_state = 5}, - [2785] = {.lex_state = 4, .external_lex_state = 13}, - [2786] = {.lex_state = 3, .external_lex_state = 5}, - [2787] = {.lex_state = 47, .external_lex_state = 10}, - [2788] = {.lex_state = 47}, - [2789] = {.lex_state = 47}, - [2790] = {.lex_state = 47}, - [2791] = {.lex_state = 52}, - [2792] = {.lex_state = 47}, - [2793] = {.lex_state = 17, .external_lex_state = 17}, - [2794] = {.lex_state = 4, .external_lex_state = 14}, - [2795] = {.lex_state = 19, .external_lex_state = 26}, - [2796] = {.lex_state = 3, .external_lex_state = 4}, - [2797] = {.lex_state = 3, .external_lex_state = 4}, - [2798] = {.lex_state = 3, .external_lex_state = 4}, + [2771] = {.lex_state = 9, .external_lex_state = 2}, + [2772] = {.lex_state = 38, .external_lex_state = 7}, + [2773] = {.lex_state = 41, .external_lex_state = 7}, + [2774] = {.lex_state = 53}, + [2775] = {.lex_state = 53}, + [2776] = {.lex_state = 9, .external_lex_state = 2}, + [2777] = {.lex_state = 53}, + [2778] = {.lex_state = 4, .external_lex_state = 12}, + [2779] = {.lex_state = 4, .external_lex_state = 13}, + [2780] = {.lex_state = 4, .external_lex_state = 13}, + [2781] = {.lex_state = 43}, + [2782] = {.lex_state = 43}, + [2783] = {.lex_state = 47}, + [2784] = {.lex_state = 17, .external_lex_state = 13}, + [2785] = {.lex_state = 19, .external_lex_state = 24}, + [2786] = {.lex_state = 17, .external_lex_state = 13}, + [2787] = {.lex_state = 19, .external_lex_state = 24}, + [2788] = {.lex_state = 3, .external_lex_state = 5}, + [2789] = {.lex_state = 3, .external_lex_state = 5}, + [2790] = {.lex_state = 3, .external_lex_state = 5}, + [2791] = {.lex_state = 4, .external_lex_state = 12}, + [2792] = {.lex_state = 3, .external_lex_state = 5}, + [2793] = {.lex_state = 47, .external_lex_state = 14}, + [2794] = {.lex_state = 47}, + [2795] = {.lex_state = 47}, + [2796] = {.lex_state = 47}, + [2797] = {.lex_state = 52}, + [2798] = {.lex_state = 47}, + [2799] = {.lex_state = 17, .external_lex_state = 16}, + [2800] = {.lex_state = 4, .external_lex_state = 13}, + [2801] = {.lex_state = 19, .external_lex_state = 24}, + [2802] = {.lex_state = 3, .external_lex_state = 4}, + [2803] = {.lex_state = 3, .external_lex_state = 4}, + [2804] = {.lex_state = 3, .external_lex_state = 4}, }; enum { @@ -7329,36 +7241,36 @@ static bool ts_external_scanner_states[31][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = true, }, [10] = { + [ts_external_token_LT_LT] = true, [ts_external_token__concat] = true, }, [11] = { [ts_external_token_LT_LT] = true, - [ts_external_token__concat] = true, }, [12] = { - [ts_external_token_LT_LT] = true, + [ts_external_token_LF] = true, + [ts_external_token__concat] = true, }, [13] = { [ts_external_token_LF] = true, - [ts_external_token__concat] = true, }, [14] = { - [ts_external_token_LF] = true, + [ts_external_token__concat] = true, }, [15] = { - [ts_external_token_RBRACE] = true, - }, - [16] = { [ts_external_token__empty_value] = true, }, - [17] = { + [16] = { [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, - [18] = { + [17] = { [ts_external_token_LT_LT] = true, [ts_external_token_RBRACK] = true, }, + [18] = { + [ts_external_token_RBRACE] = true, + }, [19] = { [ts_external_token_variable_name] = true, [ts_external_token_file_descriptor] = true, @@ -7379,20 +7291,20 @@ static bool ts_external_scanner_states[31][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__simple_heredoc_body] = true, }, [23] = { - [ts_external_token_RBRACE] = true, [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, }, [24] = { - [ts_external_token_regex] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LF] = true, }, [25] = { + [ts_external_token_RBRACE] = true, [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, }, [26] = { - [ts_external_token_LT_LT] = true, - [ts_external_token_LF] = true, + [ts_external_token_regex] = true, + [ts_external_token_RBRACE] = true, }, [27] = { [ts_external_token__heredoc_body_end] = true, @@ -7415,102 +7327,103 @@ static bool ts_external_scanner_states[31][EXTERNAL_TOKEN_COUNT] = { static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [anon_sym_0] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), [sym_heredoc_start] = ACTIONS(1), [anon_sym_AMP_GT_GT] = ACTIONS(1), [sym__empty_value] = ACTIONS(1), [anon_sym_typeset] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1), + [aux_sym_unary_expression_token1] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_done] = ACTIONS(1), - [anon_sym_LT_LPAREN] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_RPAREN_RPAREN] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), [anon_sym_RBRACK_RBRACK] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), + [anon_sym_0] = ACTIONS(1), [sym__simple_heredoc_body] = ACTIONS(1), [anon_sym_LT_AMP] = ACTIONS(1), [sym__concat] = ACTIONS(1), [anon_sym_export] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), - [anon_sym_GT_LPAREN] = ACTIONS(1), + [anon_sym_LT_LPAREN] = ACTIONS(1), [anon_sym_LPAREN_LPAREN] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_declare] = ACTIONS(1), [sym_variable_name] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), - [sym_word] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), [sym__heredoc_body_beginning] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_readonly] = ACTIONS(1), [anon_sym_unset] = ACTIONS(1), - [sym__special_character] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), [anon_sym_GT_AMP] = ACTIONS(1), [anon_sym_then] = ACTIONS(1), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1), [anon_sym_elif] = ACTIONS(1), - [sym_raw_string] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [sym_regex] = ACTIONS(1), [anon_sym_SEMI_SEMI] = ACTIONS(1), - [sym_test_operator] = ACTIONS(1), + [sym_word] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), [sym__heredoc_body_middle] = ACTIONS(1), [anon_sym_local] = ACTIONS(1), [anon_sym_unsetenv] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), + [sym__special_character] = ACTIONS(1), [anon_sym_LT_LT] = ACTIONS(1), [anon_sym_fi] = ACTIONS(1), - [anon_sym_COLON_QMARK] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), - [sym_ansii_c_string] = ACTIONS(1), + [sym_raw_string] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), + [sym_number] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), - [sym__heredoc_body_end] = ACTIONS(1), + [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), + [sym__heredoc_body_end] = ACTIONS(1), [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_EQ_TILDE] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_LT_LT_DASH] = ACTIONS(1), [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_COLON_DASH] = ACTIONS(1), + [anon_sym_COLON_QMARK] = ACTIONS(1), [anon_sym_case] = ACTIONS(1), - [sym_number] = ACTIONS(1), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), + [sym_ansii_c_string] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), + [sym_file_descriptor] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), - [sym_file_descriptor] = ACTIONS(1), [anon_sym_AMP_GT] = ACTIONS(1), [anon_sym_EQ_EQ] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_LT_LT_LT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_COLON_DASH] = ACTIONS(1), [anon_sym_esac] = ACTIONS(1), - [anon_sym_BQUOTE] = ACTIONS(1), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), + [sym_test_operator] = ACTIONS(1), [anon_sym_LBRACK_LBRACK] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), [anon_sym_PIPE_AMP] = ACTIONS(1), }, [1] = { @@ -7520,9 +7433,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_command] = STATE(28), [sym_variable_assignment] = STATE(29), [sym_subscript] = STATE(30), - [sym_arithmetic_expansion] = STATE(10), - [sym_string_expansion] = STATE(10), - [sym_expansion] = STATE(10), + [sym_arithmetic_expansion] = STATE(8), + [sym_string_expansion] = STATE(8), + [sym_expansion] = STATE(8), [aux_sym__statements_repeat1] = STATE(31), [aux_sym__literal_repeat1] = STATE(32), [sym_program] = STATE(33), @@ -7534,9 +7447,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unset_command] = STATE(28), [sym_file_redirect] = STATE(35), [sym_concatenation] = STATE(34), - [sym_string] = STATE(10), - [sym_command_substitution] = STATE(10), - [sym_process_substitution] = STATE(10), + [sym_string] = STATE(8), + [sym_command_substitution] = STATE(8), + [sym_process_substitution] = STATE(8), [aux_sym_command_repeat1] = STATE(35), [sym__statements] = STATE(36), [sym_c_style_for_statement] = STATE(28), @@ -7546,124 +7459,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list] = STATE(28), [sym_command] = STATE(28), [sym_command_name] = STATE(37), - [sym_simple_expansion] = STATE(10), + [sym_simple_expansion] = STATE(8), [anon_sym_LPAREN] = ACTIONS(5), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(9), [anon_sym_typeset] = ACTIONS(9), [anon_sym_unsetenv] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [anon_sym_LT_LPAREN] = ACTIONS(19), - [sym_ansii_c_string] = ACTIONS(21), - [anon_sym_function] = ACTIONS(23), + [sym__special_character] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(15), + [sym_raw_string] = ACTIONS(17), + [sym_number] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [sym_comment] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(29), [anon_sym_if] = ACTIONS(31), [anon_sym_case] = ACTIONS(33), [anon_sym_LPAREN_LPAREN] = ACTIONS(35), - [sym_number] = ACTIONS(37), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), - [anon_sym_BANG] = ACTIONS(41), + [sym_ansii_c_string] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(37), + [anon_sym_BANG] = ACTIONS(39), [anon_sym_declare] = ACTIONS(9), - [sym_variable_name] = ACTIONS(43), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(47), + [sym_variable_name] = ACTIONS(41), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(45), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(19), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(9), [anon_sym_unset] = ACTIONS(11), - [ts_builtin_sym_end] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), + [ts_builtin_sym_end] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(55), - [anon_sym_for] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [sym_raw_string] = ACTIONS(21), - [anon_sym_LBRACK_LBRACK] = ACTIONS(63), + [anon_sym_GT_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(59), + [anon_sym_LBRACK_LBRACK] = ACTIONS(61), + [sym_word] = ACTIONS(63), }, [2] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), [sym__statements] = STATE(38), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [3] = { [sym_expansion] = STATE(39), @@ -7675,20 +7588,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(39), [sym_arithmetic_expansion] = STATE(39), [sym_string_expansion] = STATE(39), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_number] = ACTIONS(117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(123), - [sym_word] = ACTIONS(117), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), [anon_sym_LT_LPAREN] = ACTIONS(115), - [sym_ansii_c_string] = ACTIONS(127), - [sym__special_character] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(131), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(133), + [sym_ansii_c_string] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym__special_character] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [sym_raw_string] = ACTIONS(117), + [sym_number] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(125), }, [4] = { [sym_expansion] = STATE(42), @@ -7699,46 +7612,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(42), [aux_sym__literal_repeat1] = STATE(43), [sym_variable_assignment] = STATE(44), - [sym_subscript] = STATE(2574), + [sym_subscript] = STATE(2580), [sym_simple_expansion] = STATE(42), [sym_arithmetic_expansion] = STATE(42), [sym_string_expansion] = STATE(42), - [anon_sym_AMP_GT_GT] = ACTIONS(135), - [anon_sym_DQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_LT_LT] = ACTIONS(135), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), - [anon_sym_LT_LPAREN] = ACTIONS(143), - [sym_ansii_c_string] = ACTIONS(145), - [anon_sym_PIPE_PIPE] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [aux_sym__simple_variable_name_token1] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_LT_AMP] = ACTIONS(135), - [anon_sym_GT_GT] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(135), - [anon_sym_GT_LPAREN] = ACTIONS(143), - [sym_number] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [sym_variable_name] = ACTIONS(155), - [sym_file_descriptor] = ACTIONS(151), - [sym_word] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(135), - [anon_sym_AMP_GT] = ACTIONS(135), - [ts_builtin_sym_end] = ACTIONS(151), - [anon_sym_LT_LT_LT] = ACTIONS(135), - [anon_sym_GT_AMP] = ACTIONS(135), - [sym__special_character] = ACTIONS(157), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(159), - [sym_raw_string] = ACTIONS(145), - [anon_sym_AMP_AMP] = ACTIONS(135), - [anon_sym_AMP] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(135), - [anon_sym_PIPE_AMP] = ACTIONS(135), + [sym_word] = ACTIONS(135), + [anon_sym_AMP_GT_GT] = ACTIONS(137), + [sym__special_character] = ACTIONS(139), + [anon_sym_LT_LT] = ACTIONS(137), + [anon_sym_BQUOTE] = ACTIONS(141), + [sym_raw_string] = ACTIONS(135), + [sym_number] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(137), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT_AMP] = ACTIONS(137), + [anon_sym_GT_GT] = ACTIONS(137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(143), + [anon_sym_LT_LT_DASH] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(145), + [sym_ansii_c_string] = ACTIONS(135), + [anon_sym_LF] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_variable_name] = ACTIONS(151), + [sym_file_descriptor] = ACTIONS(147), + [aux_sym__simple_variable_name_token1] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(137), + [anon_sym_AMP_GT] = ACTIONS(137), + [ts_builtin_sym_end] = ACTIONS(147), + [anon_sym_LT_LT_LT] = ACTIONS(137), + [anon_sym_GT_AMP] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_GT_LPAREN] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(137), + [anon_sym_PIPE_AMP] = ACTIONS(137), }, [5] = { [sym_expansion] = STATE(45), @@ -7751,5237 +7664,5258 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(45), [sym_arithmetic_expansion] = STATE(45), [sym_string_expansion] = STATE(45), - [anon_sym_AMP_GT_GT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), - [anon_sym_LT_LPAREN] = ACTIONS(169), - [sym_ansii_c_string] = ACTIONS(171), - [anon_sym_PIPE_PIPE] = ACTIONS(161), - [anon_sym_PIPE] = ACTIONS(161), - [aux_sym__simple_variable_name_token1] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_LT_AMP] = ACTIONS(161), - [anon_sym_GT_GT] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_LT_LT_DASH] = ACTIONS(161), - [anon_sym_GT_LPAREN] = ACTIONS(169), - [sym_number] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(179), - [sym_file_descriptor] = ACTIONS(177), - [sym_word] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(161), - [anon_sym_AMP_GT] = ACTIONS(161), - [ts_builtin_sym_end] = ACTIONS(177), - [anon_sym_LT_LT_LT] = ACTIONS(161), - [anon_sym_GT_AMP] = ACTIONS(161), - [sym__special_character] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(183), - [sym_raw_string] = ACTIONS(171), - [anon_sym_AMP_AMP] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(161), - [anon_sym_SEMI_SEMI] = ACTIONS(161), - [anon_sym_PIPE_AMP] = ACTIONS(161), + [sym_word] = ACTIONS(161), + [anon_sym_AMP_GT_GT] = ACTIONS(163), + [sym__special_character] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(163), + [anon_sym_BQUOTE] = ACTIONS(167), + [sym_raw_string] = ACTIONS(161), + [sym_number] = ACTIONS(161), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(163), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_LT_AMP] = ACTIONS(163), + [anon_sym_GT_GT] = ACTIONS(163), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(169), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(171), + [sym_ansii_c_string] = ACTIONS(161), + [anon_sym_LF] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(175), + [sym_file_descriptor] = ACTIONS(173), + [aux_sym__simple_variable_name_token1] = ACTIONS(177), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_AMP_GT] = ACTIONS(163), + [ts_builtin_sym_end] = ACTIONS(173), + [anon_sym_LT_LT_LT] = ACTIONS(163), + [anon_sym_GT_AMP] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(183), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_SEMI_SEMI] = ACTIONS(163), + [anon_sym_PIPE_AMP] = ACTIONS(163), }, [6] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(51), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(197), + [aux_sym_concatenation_repeat1] = STATE(49), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [7] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(56), - [sym_postfix_expression] = STATE(56), - [sym_concatenation] = STATE(56), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(56), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(56), - [sym_binary_expression] = STATE(56), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [8] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(57), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(58), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(50), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(67), - [anon_sym_typeset] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), + }, + [8] = { + [aux_sym_concatenation_repeat1] = STATE(49), + [sym_word] = ACTIONS(197), + [anon_sym_AMP_GT_GT] = ACTIONS(197), + [sym__special_character] = ACTIONS(197), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(197), + [sym_number] = ACTIONS(197), + [anon_sym_PIPE_PIPE] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [sym__concat] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LT_AMP] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(197), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LT_LPAREN] = ACTIONS(197), + [sym_ansii_c_string] = ACTIONS(197), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_file_descriptor] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_AMP_GT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_LT_LT_LT] = ACTIONS(197), + [anon_sym_GT_AMP] = ACTIONS(197), + [ts_builtin_sym_end] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_AMP_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI] = ACTIONS(197), + [anon_sym_PIPE_AMP] = ACTIONS(197), }, [9] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(59), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_comment] = ACTIONS(23), + [sym_word] = ACTIONS(201), + }, + [10] = { + [sym_if_statement] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_negated_command] = STATE(53), + [sym_test_command] = STATE(53), + [sym_variable_assignment] = STATE(54), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(55), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_compound_statement] = STATE(53), + [sym_subshell] = STATE(53), + [sym_declaration_command] = STATE(53), + [sym_unset_command] = STATE(53), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_pipeline] = STATE(53), + [sym_list] = STATE(53), + [sym_command] = STATE(53), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), + [anon_sym_RBRACE] = ACTIONS(203), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [10] = { - [aux_sym_concatenation_repeat1] = STATE(61), - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [sym_ansii_c_string] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [sym__concat] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_number] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [sym_file_descriptor] = ACTIONS(229), - [sym_word] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [sym__special_character] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [11] = { - [sym_word] = ACTIONS(231), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(61), + [sym_postfix_expression] = STATE(61), + [sym_concatenation] = STATE(61), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(61), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(61), + [sym_binary_expression] = STATE(61), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [12] = { - [sym_if_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_negated_command] = STATE(64), - [sym_test_command] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(66), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_compound_statement] = STATE(64), - [sym_subshell] = STATE(64), - [sym_declaration_command] = STATE(64), - [sym_unset_command] = STATE(64), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_case_statement] = STATE(64), - [sym_pipeline] = STATE(64), - [sym_list] = STATE(64), - [sym_command] = STATE(64), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym__terminated_statement] = STATE(62), + [sym_if_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_variable_assignment] = STATE(64), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_compound_statement] = STATE(63), + [sym_subshell] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), - [anon_sym_RBRACE] = ACTIONS(233), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [13] = { - [sym_string] = STATE(69), - [anon_sym_POUND] = ACTIONS(235), - [anon_sym_0] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(239), - [aux_sym__simple_variable_name_token1] = ACTIONS(237), - [anon_sym__] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(235), - [sym_raw_string] = ACTIONS(241), + [sym_expansion] = STATE(65), + [sym_concatenation] = STATE(66), + [sym_string] = STATE(65), + [sym_command_substitution] = STATE(65), + [sym_process_substitution] = STATE(65), + [aux_sym__literal_repeat1] = STATE(67), + [sym_simple_expansion] = STATE(65), + [sym_arithmetic_expansion] = STATE(65), + [sym_string_expansion] = STATE(65), + [sym_number] = ACTIONS(233), + [sym_word] = ACTIONS(233), [anon_sym_DOLLAR] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(245), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_BQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(251), + [sym_raw_string] = ACTIONS(237), }, [14] = { - [sym__terminated_statement] = STATE(70), - [sym_if_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_negated_command] = STATE(71), - [sym_test_command] = STATE(71), - [sym_variable_assignment] = STATE(72), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_compound_statement] = STATE(71), - [sym_subshell] = STATE(71), - [sym_declaration_command] = STATE(71), - [sym_unset_command] = STATE(71), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_case_statement] = STATE(71), - [sym_pipeline] = STATE(71), - [sym_list] = STATE(71), - [sym_command] = STATE(71), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(67), - [anon_sym_typeset] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(68), + [sym_postfix_expression] = STATE(68), + [sym_concatenation] = STATE(68), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(68), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(68), + [sym_binary_expression] = STATE(68), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [15] = { - [sym_expansion] = STATE(73), - [sym_concatenation] = STATE(74), - [sym_string] = STATE(73), - [sym_command_substitution] = STATE(73), - [sym_process_substitution] = STATE(73), - [aux_sym__literal_repeat1] = STATE(75), - [sym_simple_expansion] = STATE(73), - [sym_arithmetic_expansion] = STATE(73), - [sym_string_expansion] = STATE(73), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(243), - [sym__special_character] = ACTIONS(245), - [sym_number] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), - [sym_raw_string] = ACTIONS(255), - [sym_word] = ACTIONS(247), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(72), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(255), + [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), - [anon_sym_BQUOTE] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(261), - [sym_ansii_c_string] = ACTIONS(255), - [anon_sym_LT_LPAREN] = ACTIONS(243), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [16] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(76), - [sym_postfix_expression] = STATE(76), - [sym_concatenation] = STATE(76), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(76), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(76), - [sym_binary_expression] = STATE(76), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [17] = { - [sym_subscript] = STATE(77), - [anon_sym_0] = ACTIONS(263), - [anon_sym_POUND] = ACTIONS(265), - [anon_sym_QMARK] = ACTIONS(267), - [aux_sym__simple_variable_name_token1] = ACTIONS(263), - [anon_sym__] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(269), - [anon_sym_STAR] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_AT] = ACTIONS(267), - }, - [18] = { [sym_concatenation] = STATE(34), - [sym_string] = STATE(10), - [sym_command_substitution] = STATE(10), - [sym_process_substitution] = STATE(10), - [sym_test_command] = STATE(81), + [sym_string] = STATE(8), + [sym_command_substitution] = STATE(8), + [sym_process_substitution] = STATE(8), + [sym_test_command] = STATE(73), [sym_variable_assignment] = STATE(35), [aux_sym_command_repeat1] = STATE(35), - [sym_subscript] = STATE(2585), - [sym_arithmetic_expansion] = STATE(10), - [sym_string_expansion] = STATE(10), - [sym_expansion] = STATE(10), - [sym_command] = STATE(81), + [sym_subscript] = STATE(2591), + [sym_arithmetic_expansion] = STATE(8), + [sym_string_expansion] = STATE(8), + [sym_expansion] = STATE(8), + [sym_command] = STATE(73), [sym_command_name] = STATE(37), [aux_sym__literal_repeat1] = STATE(32), - [sym_simple_expansion] = STATE(10), - [sym_subshell] = STATE(81), + [sym_simple_expansion] = STATE(8), + [sym_subshell] = STATE(73), [sym_file_redirect] = STATE(35), [anon_sym_LPAREN] = ACTIONS(5), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_LPAREN_LPAREN] = ACTIONS(35), - [sym_number] = ACTIONS(37), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), - [anon_sym_GT_LPAREN] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(13), - [sym_variable_name] = ACTIONS(273), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(37), + [sym_ansii_c_string] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(37), + [anon_sym_LT_LPAREN] = ACTIONS(45), + [sym__special_character] = ACTIONS(13), + [sym_variable_name] = ACTIONS(267), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), [anon_sym_AMP_GT] = ACTIONS(27), - [sym_ansii_c_string] = ACTIONS(21), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [anon_sym_LT_LPAREN] = ACTIONS(19), - [sym__special_character] = ACTIONS(51), + [sym_raw_string] = ACTIONS(17), + [anon_sym_BQUOTE] = ACTIONS(15), + [sym_number] = ACTIONS(19), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(23), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym_raw_string] = ACTIONS(21), - [anon_sym_BQUOTE] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK_LBRACK] = ACTIONS(63), - [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_GT_LPAREN] = ACTIONS(45), + [anon_sym_LBRACK_LBRACK] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(29), + [sym_word] = ACTIONS(19), + }, + [17] = { + [anon_sym_PLUS_EQ] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(269), + [sym_comment] = ACTIONS(23), + }, + [18] = { + [anon_sym_AMP_GT_GT] = ACTIONS(273), + [anon_sym_GT_AMP] = ACTIONS(273), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(273), + [anon_sym_GT_GT] = ACTIONS(273), + [anon_sym_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(275), }, [19] = { - [anon_sym_PLUS_EQ] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(275), - [sym_comment] = ACTIONS(53), + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(77), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [20] = { - [anon_sym_AMP_GT_GT] = ACTIONS(279), - [anon_sym_GT_AMP] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(281), - [anon_sym_LT_AMP] = ACTIONS(279), - [anon_sym_GT_GT] = ACTIONS(279), - [sym_comment] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(281), - [anon_sym_AMP_GT] = ACTIONS(281), + [sym_string] = STATE(80), + [anon_sym_QMARK] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(37), + [anon_sym_POUND] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_0] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym__] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(283), }, [21] = { - [aux_sym_concatenation_repeat1] = STATE(61), - [anon_sym_LPAREN] = ACTIONS(283), - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [sym_ansii_c_string] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [sym__concat] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_number] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [sym_file_descriptor] = ACTIONS(229), - [sym_word] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [sym__special_character] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), - }, - [22] = { - [aux_sym_concatenation_repeat1] = STATE(61), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_EQ_TILDE] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [ts_builtin_sym_end] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), - }, - [23] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(86), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(81), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(82), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [24] = { - [aux_sym__simple_variable_name_token1] = ACTIONS(295), - [sym_comment] = ACTIONS(53), - [anon_sym_LPAREN_LPAREN] = ACTIONS(297), + [22] = { + [sym_comment] = ACTIONS(23), + [aux_sym__simple_variable_name_token1] = ACTIONS(285), + [anon_sym_LPAREN_LPAREN] = ACTIONS(287), }, - [25] = { - [sym__terminated_statement] = STATE(89), - [sym_if_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_negated_command] = STATE(71), - [sym_test_command] = STATE(71), - [sym_variable_assignment] = STATE(72), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_compound_statement] = STATE(71), - [sym_subshell] = STATE(71), - [sym_declaration_command] = STATE(71), - [sym_unset_command] = STATE(71), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_case_statement] = STATE(71), - [sym_pipeline] = STATE(71), - [sym_list] = STATE(71), - [sym_command] = STATE(71), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [23] = { + [sym__terminated_statement] = STATE(85), + [sym_if_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_variable_assignment] = STATE(64), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_compound_statement] = STATE(63), + [sym_subshell] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [26] = { - [sym_expansion] = STATE(407), - [sym_unary_expression] = STATE(90), - [sym_postfix_expression] = STATE(90), - [sym_concatenation] = STATE(90), - [sym_string] = STATE(407), - [sym_command_substitution] = STATE(407), - [sym_process_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(90), - [aux_sym__literal_repeat1] = STATE(409), - [sym_simple_expansion] = STATE(407), - [sym__expression] = STATE(90), - [sym_binary_expression] = STATE(90), - [sym_arithmetic_expansion] = STATE(407), - [sym_string_expansion] = STATE(407), - [anon_sym_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_number] = ACTIONS(303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), - [sym_word] = ACTIONS(303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [sym_ansii_c_string] = ACTIONS(315), - [sym__special_character] = ACTIONS(317), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(319), - [sym_raw_string] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_test_operator] = ACTIONS(323), + [24] = { + [sym_expansion] = STATE(410), + [sym_unary_expression] = STATE(86), + [sym_postfix_expression] = STATE(86), + [sym_concatenation] = STATE(86), + [sym_string] = STATE(410), + [sym_command_substitution] = STATE(410), + [sym_process_substitution] = STATE(410), + [sym_parenthesized_expression] = STATE(86), + [aux_sym__literal_repeat1] = STATE(413), + [sym_simple_expansion] = STATE(410), + [sym__expression] = STATE(86), + [sym_binary_expression] = STATE(86), + [sym_arithmetic_expansion] = STATE(410), + [sym_string_expansion] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [sym_ansii_c_string] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(297), + [sym__special_character] = ACTIONS(299), + [aux_sym_unary_expression_token1] = ACTIONS(301), + [anon_sym_BQUOTE] = ACTIONS(303), + [sym_raw_string] = ACTIONS(293), + [sym_number] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(307), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), + [sym_test_operator] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(315), + [sym_word] = ACTIONS(305), }, - [27] = { - [sym_expansion] = STATE(53), + [25] = { + [sym_subscript] = STATE(87), + [anon_sym_QMARK] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_AT] = ACTIONS(317), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_POUND] = ACTIONS(323), + [sym_variable_name] = ACTIONS(325), + [aux_sym__simple_variable_name_token1] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym__] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(317), + }, + [26] = { + [sym_expansion] = STATE(57), [sym_unary_expression] = STATE(91), [sym_postfix_expression] = STATE(91), [sym_concatenation] = STATE(91), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), [sym_parenthesized_expression] = STATE(91), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), [sym__expression] = STATE(91), [sym_binary_expression] = STATE(91), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), + }, + [27] = { + [aux_sym_concatenation_repeat1] = STATE(49), + [sym_word] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_AMP_GT_GT] = ACTIONS(197), + [sym__special_character] = ACTIONS(197), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(197), + [sym_number] = ACTIONS(197), + [anon_sym_PIPE_PIPE] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [sym__concat] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LT_AMP] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(197), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LT_LPAREN] = ACTIONS(197), + [sym_ansii_c_string] = ACTIONS(197), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_file_descriptor] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_AMP_GT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_LT_LT_LT] = ACTIONS(197), + [anon_sym_GT_AMP] = ACTIONS(197), + [ts_builtin_sym_end] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_AMP_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI] = ACTIONS(197), + [anon_sym_PIPE_AMP] = ACTIONS(197), }, [28] = { - [sym_heredoc_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [anon_sym_SEMI_SEMI] = ACTIONS(325), - [anon_sym_AMP_GT_GT] = ACTIONS(327), - [anon_sym_LF] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(325), - [sym_file_descriptor] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(327), - [anon_sym_AMP_GT] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [ts_builtin_sym_end] = ACTIONS(337), - [anon_sym_LT_LT_LT] = ACTIONS(339), - [anon_sym_GT_AMP] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(327), - [anon_sym_LT_AMP] = ACTIONS(327), - [anon_sym_GT_GT] = ACTIONS(327), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_LT_LT_DASH] = ACTIONS(333), - [anon_sym_PIPE_AMP] = ACTIONS(341), + [sym_heredoc_redirect] = STATE(99), + [sym_file_redirect] = STATE(99), + [sym_herestring_redirect] = STATE(99), + [aux_sym_redirected_statement_repeat1] = STATE(99), + [anon_sym_SEMI_SEMI] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(333), + [anon_sym_SEMI] = ACTIONS(329), + [sym_file_descriptor] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_AMP] = ACTIONS(329), + [ts_builtin_sym_end] = ACTIONS(339), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT_LT] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_LT_LT_DASH] = ACTIONS(337), + [anon_sym_PIPE_AMP] = ACTIONS(345), }, [29] = { - [sym_heredoc_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_PIPE] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(329), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(325), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(337), - [sym__special_character] = ACTIONS(343), - [anon_sym_GT_AMP] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(339), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_SEMI_SEMI] = ACTIONS(325), - [anon_sym_PIPE_AMP] = ACTIONS(341), + [sym_heredoc_redirect] = STATE(99), + [sym_file_redirect] = STATE(99), + [sym_herestring_redirect] = STATE(99), + [aux_sym_redirected_statement_repeat1] = STATE(99), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(345), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(337), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(333), + [anon_sym_SEMI] = ACTIONS(329), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [ts_builtin_sym_end] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_SEMI_SEMI] = ACTIONS(329), + [anon_sym_PIPE_AMP] = ACTIONS(345), }, [30] = { - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_PLUS_EQ] = ACTIONS(275), - [sym_comment] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(269), + [anon_sym_PLUS_EQ] = ACTIONS(269), + [sym_comment] = ACTIONS(23), }, [31] = { - [sym_if_statement] = STATE(99), - [sym_function_definition] = STATE(99), - [sym_negated_command] = STATE(99), - [sym_test_command] = STATE(99), - [sym_variable_assignment] = STATE(100), + [sym_if_statement] = STATE(100), + [sym_function_definition] = STATE(100), + [sym_negated_command] = STATE(100), + [sym_test_command] = STATE(100), + [sym_variable_assignment] = STATE(101), [sym_subscript] = STATE(30), - [sym_arithmetic_expansion] = STATE(10), - [sym_string_expansion] = STATE(10), - [sym_expansion] = STATE(10), - [aux_sym__statements_repeat1] = STATE(101), + [sym_arithmetic_expansion] = STATE(8), + [sym_string_expansion] = STATE(8), + [sym_expansion] = STATE(8), + [aux_sym__statements_repeat1] = STATE(102), [aux_sym__literal_repeat1] = STATE(32), - [sym_redirected_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_compound_statement] = STATE(99), - [sym_subshell] = STATE(99), - [sym_declaration_command] = STATE(99), - [sym_unset_command] = STATE(99), + [sym_redirected_statement] = STATE(100), + [sym_for_statement] = STATE(100), + [sym_compound_statement] = STATE(100), + [sym_subshell] = STATE(100), + [sym_declaration_command] = STATE(100), + [sym_unset_command] = STATE(100), [sym_file_redirect] = STATE(35), [sym_concatenation] = STATE(34), - [sym_string] = STATE(10), - [sym_command_substitution] = STATE(10), - [sym_process_substitution] = STATE(10), + [sym_string] = STATE(8), + [sym_command_substitution] = STATE(8), + [sym_process_substitution] = STATE(8), [aux_sym_command_repeat1] = STATE(35), - [sym_c_style_for_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_pipeline] = STATE(99), - [sym_list] = STATE(99), - [sym_command] = STATE(99), + [sym_c_style_for_statement] = STATE(100), + [sym_while_statement] = STATE(100), + [sym_case_statement] = STATE(100), + [sym_pipeline] = STATE(100), + [sym_list] = STATE(100), + [sym_command] = STATE(100), [sym_command_name] = STATE(37), - [sym_simple_expansion] = STATE(10), + [sym_simple_expansion] = STATE(8), [anon_sym_LPAREN] = ACTIONS(5), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(9), [anon_sym_typeset] = ACTIONS(9), [anon_sym_unsetenv] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [anon_sym_LT_LPAREN] = ACTIONS(19), - [sym_ansii_c_string] = ACTIONS(21), - [anon_sym_function] = ACTIONS(23), + [sym__special_character] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(15), + [sym_raw_string] = ACTIONS(17), + [sym_number] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [sym_comment] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(29), [anon_sym_if] = ACTIONS(31), [anon_sym_case] = ACTIONS(33), [anon_sym_LPAREN_LPAREN] = ACTIONS(35), - [sym_number] = ACTIONS(37), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), - [anon_sym_BANG] = ACTIONS(41), + [sym_ansii_c_string] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(37), + [anon_sym_BANG] = ACTIONS(39), [anon_sym_declare] = ACTIONS(9), - [sym_variable_name] = ACTIONS(43), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(47), + [sym_variable_name] = ACTIONS(41), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(45), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(19), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(9), [anon_sym_unset] = ACTIONS(11), - [sym__special_character] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(55), - [anon_sym_for] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [sym_raw_string] = ACTIONS(21), - [anon_sym_LBRACK_LBRACK] = ACTIONS(63), + [anon_sym_GT_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(59), + [anon_sym_LBRACK_LBRACK] = ACTIONS(61), + [sym_word] = ACTIONS(63), }, [32] = { - [aux_sym__literal_repeat1] = STATE(103), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_DQUOTE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), - [anon_sym_LT_LPAREN] = ACTIONS(347), - [sym_ansii_c_string] = ACTIONS(347), - [anon_sym_PIPE_PIPE] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_EQ_TILDE] = ACTIONS(347), - [anon_sym_DOLLAR] = ACTIONS(347), - [anon_sym_LT_LT_DASH] = ACTIONS(347), - [anon_sym_GT_LPAREN] = ACTIONS(347), - [sym_number] = ACTIONS(347), - [anon_sym_LF] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [sym_file_descriptor] = ACTIONS(349), - [sym_word] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(347), - [sym__special_character] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [ts_builtin_sym_end] = ACTIONS(349), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(347), - [sym_raw_string] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(347), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_SEMI_SEMI] = ACTIONS(347), - [anon_sym_PIPE_AMP] = ACTIONS(347), + [aux_sym__literal_repeat1] = STATE(104), + [sym_word] = ACTIONS(351), + [anon_sym_AMP_GT_GT] = ACTIONS(351), + [sym__special_character] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_BQUOTE] = ACTIONS(351), + [sym_raw_string] = ACTIONS(351), + [sym_number] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_AMP] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_EQ_TILDE] = ACTIONS(351), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LPAREN] = ACTIONS(351), + [sym_ansii_c_string] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_DQUOTE] = ACTIONS(351), + [sym_file_descriptor] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_AMP_GT] = ACTIONS(351), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(351), + [anon_sym_GT_AMP] = ACTIONS(351), + [ts_builtin_sym_end] = ACTIONS(355), + [anon_sym_GT_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(351), + [anon_sym_SEMI_SEMI] = ACTIONS(351), + [anon_sym_PIPE_AMP] = ACTIONS(351), }, [33] = { - [ts_builtin_sym_end] = ACTIONS(353), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [ts_builtin_sym_end] = ACTIONS(357), }, [34] = { - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [sym_ansii_c_string] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_number] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [sym_file_descriptor] = ACTIONS(229), - [sym_word] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [sym__special_character] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), + [sym_word] = ACTIONS(197), + [anon_sym_AMP_GT_GT] = ACTIONS(197), + [sym__special_character] = ACTIONS(197), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(197), + [sym_number] = ACTIONS(197), + [anon_sym_PIPE_PIPE] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LT_AMP] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(197), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LT_LPAREN] = ACTIONS(197), + [sym_ansii_c_string] = ACTIONS(197), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_file_descriptor] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_AMP_GT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_LT_LT_LT] = ACTIONS(197), + [anon_sym_GT_AMP] = ACTIONS(197), + [ts_builtin_sym_end] = ACTIONS(199), + [anon_sym_GT_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_AMP_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI] = ACTIONS(197), + [anon_sym_PIPE_AMP] = ACTIONS(197), }, [35] = { - [sym_expansion] = STATE(10), - [sym_string_expansion] = STATE(10), + [sym_expansion] = STATE(8), + [sym_string_expansion] = STATE(8), [sym_concatenation] = STATE(34), - [sym_string] = STATE(10), + [sym_string] = STATE(8), [aux_sym__literal_repeat1] = STATE(32), - [sym_command_substitution] = STATE(10), - [sym_process_substitution] = STATE(10), - [sym_command_name] = STATE(104), - [sym_variable_assignment] = STATE(105), - [sym_simple_expansion] = STATE(10), - [sym_subscript] = STATE(2585), - [aux_sym_command_repeat1] = STATE(105), - [sym_arithmetic_expansion] = STATE(10), - [sym_file_redirect] = STATE(105), - [anon_sym_GT_LPAREN] = ACTIONS(19), + [sym_command_substitution] = STATE(8), + [sym_process_substitution] = STATE(8), + [sym_command_name] = STATE(105), + [sym_variable_assignment] = STATE(106), + [sym_simple_expansion] = STATE(8), + [sym_subscript] = STATE(2591), + [aux_sym_command_repeat1] = STATE(106), + [sym_arithmetic_expansion] = STATE(8), + [sym_file_redirect] = STATE(106), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [sym_number] = ACTIONS(37), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), - [sym_variable_name] = ACTIONS(273), - [sym_word] = ACTIONS(37), + [sym_ansii_c_string] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(37), + [anon_sym_LT_LPAREN] = ACTIONS(45), + [sym__special_character] = ACTIONS(359), + [sym_variable_name] = ACTIONS(267), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_LT_LPAREN] = ACTIONS(19), [anon_sym_AMP_GT] = ACTIONS(27), - [sym_ansii_c_string] = ACTIONS(21), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [sym__special_character] = ACTIONS(355), + [sym_raw_string] = ACTIONS(17), + [anon_sym_BQUOTE] = ACTIONS(15), + [sym_number] = ACTIONS(19), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(23), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym_raw_string] = ACTIONS(21), - [anon_sym_BQUOTE] = ACTIONS(55), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(59), + [anon_sym_GT_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(29), + [sym_word] = ACTIONS(19), }, [36] = { - [ts_builtin_sym_end] = ACTIONS(357), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [ts_builtin_sym_end] = ACTIONS(361), }, [37] = { - [sym_expansion] = STATE(106), - [sym_string_expansion] = STATE(106), - [sym_concatenation] = STATE(108), - [sym_string] = STATE(106), - [aux_sym__literal_repeat1] = STATE(109), - [sym_command_substitution] = STATE(106), - [sym_process_substitution] = STATE(106), - [sym_simple_expansion] = STATE(106), - [sym_arithmetic_expansion] = STATE(106), - [aux_sym_command_repeat2] = STATE(108), - [anon_sym_AMP_GT_GT] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [sym_ansii_c_string] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(359), - [anon_sym_LT_AMP] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), + [sym_expansion] = STATE(107), + [sym_string_expansion] = STATE(107), + [sym_concatenation] = STATE(109), + [sym_string] = STATE(107), + [aux_sym__literal_repeat1] = STATE(110), + [sym_command_substitution] = STATE(107), + [sym_process_substitution] = STATE(107), + [sym_simple_expansion] = STATE(107), + [sym_arithmetic_expansion] = STATE(107), + [aux_sym_command_repeat2] = STATE(109), + [sym_word] = ACTIONS(363), + [anon_sym_AMP_GT_GT] = ACTIONS(365), + [sym__special_character] = ACTIONS(13), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_BQUOTE] = ACTIONS(367), + [sym_raw_string] = ACTIONS(363), + [sym_number] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(365), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(365), + [anon_sym_LT_AMP] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), [anon_sym_EQ_TILDE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(29), - [anon_sym_LT_LT_DASH] = ACTIONS(359), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_number] = ACTIONS(367), - [anon_sym_LF] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [sym_file_descriptor] = ACTIONS(371), - [sym_word] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_AMP_GT] = ACTIONS(359), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(371), + [anon_sym_LT_LT_DASH] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [sym_ansii_c_string] = ACTIONS(363), + [anon_sym_LF] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(377), + [sym_file_descriptor] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_AMP_GT] = ACTIONS(365), [anon_sym_EQ_EQ] = ACTIONS(369), - [ts_builtin_sym_end] = ACTIONS(371), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [anon_sym_GT_AMP] = ACTIONS(359), - [sym__special_character] = ACTIONS(51), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(375), - [sym_raw_string] = ACTIONS(367), - [anon_sym_AMP_AMP] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(359), - [anon_sym_SEMI_SEMI] = ACTIONS(359), - [anon_sym_PIPE_AMP] = ACTIONS(359), + [ts_builtin_sym_end] = ACTIONS(375), + [anon_sym_LT_LT_LT] = ACTIONS(365), + [anon_sym_GT_AMP] = ACTIONS(365), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_SEMI_SEMI] = ACTIONS(365), + [anon_sym_PIPE_AMP] = ACTIONS(365), }, [38] = { - [anon_sym_RPAREN] = ACTIONS(377), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(381), }, [39] = { [aux_sym_concatenation_repeat1] = STATE(564), - [anon_sym_AMP_GT_GT] = ACTIONS(379), - [anon_sym_DQUOTE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [sym_ansii_c_string] = ACTIONS(379), - [sym__concat] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_LT_AMP] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_number] = ACTIONS(381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [sym_variable_name] = ACTIONS(379), - [sym_file_descriptor] = ACTIONS(379), - [sym_word] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_RPAREN] = ACTIONS(379), - [anon_sym_AMP_GT] = ACTIONS(381), - [sym__special_character] = ACTIONS(379), - [anon_sym_GT_AMP] = ACTIONS(379), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(379), - [sym_raw_string] = ACTIONS(379), + [anon_sym_AMP_GT_GT] = ACTIONS(383), + [sym__special_character] = ACTIONS(383), + [anon_sym_BQUOTE] = ACTIONS(383), + [sym_raw_string] = ACTIONS(383), + [sym_number] = ACTIONS(385), + [sym__concat] = ACTIONS(387), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(383), + [anon_sym_LT_LPAREN] = ACTIONS(383), + [sym_ansii_c_string] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_variable_name] = ACTIONS(383), + [sym_file_descriptor] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(383), + [anon_sym_GT_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [sym_word] = ACTIONS(385), }, [40] = { - [anon_sym_AMP_GT_GT] = ACTIONS(379), - [anon_sym_DQUOTE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [sym_ansii_c_string] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_LT_AMP] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_number] = ACTIONS(381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [sym_variable_name] = ACTIONS(379), - [sym_file_descriptor] = ACTIONS(379), - [sym_word] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_RPAREN] = ACTIONS(379), - [anon_sym_AMP_GT] = ACTIONS(381), - [sym__special_character] = ACTIONS(379), - [anon_sym_GT_AMP] = ACTIONS(379), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(379), - [sym_raw_string] = ACTIONS(379), + [anon_sym_AMP_GT_GT] = ACTIONS(383), + [sym__special_character] = ACTIONS(383), + [anon_sym_BQUOTE] = ACTIONS(383), + [sym_raw_string] = ACTIONS(383), + [sym_number] = ACTIONS(385), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(383), + [anon_sym_LT_LPAREN] = ACTIONS(383), + [sym_ansii_c_string] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_variable_name] = ACTIONS(383), + [sym_file_descriptor] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(383), + [anon_sym_GT_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [sym_word] = ACTIONS(385), }, [41] = { - [aux_sym__literal_repeat1] = STATE(575), - [anon_sym_AMP_GT_GT] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_LT_LPAREN] = ACTIONS(385), - [sym_ansii_c_string] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_LT_AMP] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(385), - [sym_number] = ACTIONS(387), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [sym_variable_name] = ACTIONS(385), - [sym_file_descriptor] = ACTIONS(385), - [sym_word] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_AMP_GT] = ACTIONS(387), - [sym__special_character] = ACTIONS(389), - [anon_sym_GT_AMP] = ACTIONS(385), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(385), - [sym_raw_string] = ACTIONS(385), - }, - [42] = { - [aux_sym_concatenation_repeat1] = STATE(647), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(391), - [sym_ansii_c_string] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [sym__concat] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(391), - [aux_sym__simple_variable_name_token1] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_LT_LT_DASH] = ACTIONS(391), - [anon_sym_GT_LPAREN] = ACTIONS(391), - [sym_number] = ACTIONS(391), - [anon_sym_LF] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), - [sym_variable_name] = ACTIONS(395), - [sym_file_descriptor] = ACTIONS(395), - [sym_word] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_AMP_GT] = ACTIONS(391), + [aux_sym__literal_repeat1] = STATE(580), + [anon_sym_AMP_GT_GT] = ACTIONS(389), [sym__special_character] = ACTIONS(391), - [anon_sym_LT_LT_LT] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [ts_builtin_sym_end] = ACTIONS(395), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_raw_string] = ACTIONS(391), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_SEMI_SEMI] = ACTIONS(391), - [anon_sym_PIPE_AMP] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(389), + [sym_raw_string] = ACTIONS(389), + [sym_number] = ACTIONS(393), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_AMP] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(389), + [sym_ansii_c_string] = ACTIONS(389), + [anon_sym_DQUOTE] = ACTIONS(389), + [sym_variable_name] = ACTIONS(389), + [sym_file_descriptor] = ACTIONS(389), + [anon_sym_RPAREN] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_GT_AMP] = ACTIONS(389), + [anon_sym_GT_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(389), + [sym_word] = ACTIONS(393), }, - [43] = { - [aux_sym__literal_repeat1] = STATE(658), - [anon_sym_AMP_GT_GT] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), - [anon_sym_LT_LPAREN] = ACTIONS(397), - [sym_ansii_c_string] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [aux_sym__simple_variable_name_token1] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_LT_LT_DASH] = ACTIONS(397), - [anon_sym_GT_LPAREN] = ACTIONS(397), - [sym_number] = ACTIONS(397), + [42] = { + [aux_sym_concatenation_repeat1] = STATE(652), + [sym_word] = ACTIONS(395), + [anon_sym_AMP_GT_GT] = ACTIONS(395), + [sym__special_character] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(395), + [sym_raw_string] = ACTIONS(395), + [sym_number] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(395), + [sym__concat] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(395), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_LT_AMP] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(395), + [anon_sym_LT_LT_DASH] = ACTIONS(395), + [anon_sym_LT_LPAREN] = ACTIONS(395), + [sym_ansii_c_string] = ACTIONS(395), [anon_sym_LF] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), [sym_variable_name] = ACTIONS(399), + [aux_sym__simple_variable_name_token1] = ACTIONS(395), [sym_file_descriptor] = ACTIONS(399), - [sym_word] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_AMP_GT] = ACTIONS(397), - [sym__special_character] = ACTIONS(401), - [anon_sym_LT_LT_LT] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_AMP_GT] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_LT_LT_LT] = ACTIONS(395), + [anon_sym_GT_AMP] = ACTIONS(395), [ts_builtin_sym_end] = ACTIONS(399), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(397), - [sym_raw_string] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_SEMI_SEMI] = ACTIONS(397), - [anon_sym_PIPE_AMP] = ACTIONS(397), + [anon_sym_GT_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_SEMI_SEMI] = ACTIONS(395), + [anon_sym_PIPE_AMP] = ACTIONS(395), + }, + [43] = { + [aux_sym__literal_repeat1] = STATE(664), + [sym_word] = ACTIONS(401), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [sym__special_character] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_BQUOTE] = ACTIONS(401), + [sym_raw_string] = ACTIONS(401), + [sym_number] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(401), + [anon_sym_LT_LT_DASH] = ACTIONS(401), + [anon_sym_LT_LPAREN] = ACTIONS(401), + [sym_ansii_c_string] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_DQUOTE] = ACTIONS(401), + [sym_variable_name] = ACTIONS(405), + [aux_sym__simple_variable_name_token1] = ACTIONS(401), + [sym_file_descriptor] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [ts_builtin_sym_end] = ACTIONS(405), + [anon_sym_GT_LPAREN] = ACTIONS(401), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_SEMI_SEMI] = ACTIONS(401), + [anon_sym_PIPE_AMP] = ACTIONS(401), }, [44] = { [sym_expansion] = STATE(42), - [sym_concatenation] = STATE(111), - [aux_sym_declaration_command_repeat1] = STATE(111), + [sym_concatenation] = STATE(112), + [aux_sym_declaration_command_repeat1] = STATE(112), [sym_string] = STATE(42), [sym_command_substitution] = STATE(42), [sym_process_substitution] = STATE(42), [aux_sym__literal_repeat1] = STATE(43), - [sym_variable_assignment] = STATE(111), - [sym_subscript] = STATE(2574), + [sym_variable_assignment] = STATE(112), + [sym_subscript] = STATE(2580), [sym_simple_expansion] = STATE(42), [sym_arithmetic_expansion] = STATE(42), [sym_string_expansion] = STATE(42), - [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), - [anon_sym_LT_LPAREN] = ACTIONS(143), - [sym_ansii_c_string] = ACTIONS(145), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [aux_sym__simple_variable_name_token1] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_LT_AMP] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(149), - [anon_sym_LT_LT_DASH] = ACTIONS(403), - [anon_sym_GT_LPAREN] = ACTIONS(143), - [sym_number] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [sym_variable_name] = ACTIONS(155), - [sym_file_descriptor] = ACTIONS(407), - [sym_word] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_AMP_GT] = ACTIONS(403), - [ts_builtin_sym_end] = ACTIONS(407), - [anon_sym_LT_LT_LT] = ACTIONS(403), - [anon_sym_GT_AMP] = ACTIONS(403), - [sym__special_character] = ACTIONS(157), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(159), - [sym_raw_string] = ACTIONS(145), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_SEMI_SEMI] = ACTIONS(403), - [anon_sym_PIPE_AMP] = ACTIONS(403), + [sym_word] = ACTIONS(135), + [anon_sym_AMP_GT_GT] = ACTIONS(407), + [sym__special_character] = ACTIONS(139), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_BQUOTE] = ACTIONS(141), + [sym_raw_string] = ACTIONS(135), + [sym_number] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_LT_AMP] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(143), + [anon_sym_LT_LT_DASH] = ACTIONS(407), + [anon_sym_LT_LPAREN] = ACTIONS(145), + [sym_ansii_c_string] = ACTIONS(135), + [anon_sym_LF] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym_variable_name] = ACTIONS(151), + [sym_file_descriptor] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(407), + [ts_builtin_sym_end] = ACTIONS(409), + [anon_sym_LT_LT_LT] = ACTIONS(407), + [anon_sym_GT_AMP] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_GT_LPAREN] = ACTIONS(145), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_SEMI_SEMI] = ACTIONS(407), + [anon_sym_PIPE_AMP] = ACTIONS(407), }, [45] = { - [aux_sym_concatenation_repeat1] = STATE(704), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(409), - [aux_sym__simple_variable_name_token1] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(413), - [sym_word] = ACTIONS(409), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [ts_builtin_sym_end] = ACTIONS(413), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), - }, - [46] = { - [aux_sym__literal_repeat1] = STATE(711), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(415), - [aux_sym__simple_variable_name_token1] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_number] = ACTIONS(415), + [aux_sym_concatenation_repeat1] = STATE(709), + [sym_word] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(413), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(413), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [aux_sym__simple_variable_name_token1] = ACTIONS(413), [sym_file_descriptor] = ACTIONS(417), - [sym_word] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(419), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), [ts_builtin_sym_end] = ACTIONS(417), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), + }, + [46] = { + [aux_sym__literal_repeat1] = STATE(717), + [sym_word] = ACTIONS(419), + [anon_sym_AMP_GT_GT] = ACTIONS(419), + [sym__special_character] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_raw_string] = ACTIONS(419), + [sym_number] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_LT_AMP] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(419), + [anon_sym_LT_LT_DASH] = ACTIONS(419), + [anon_sym_LT_LPAREN] = ACTIONS(419), + [sym_ansii_c_string] = ACTIONS(419), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [aux_sym__simple_variable_name_token1] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_AMP_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_LT_LT_LT] = ACTIONS(419), + [anon_sym_GT_AMP] = ACTIONS(419), + [ts_builtin_sym_end] = ACTIONS(423), + [anon_sym_GT_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_SEMI_SEMI] = ACTIONS(419), + [anon_sym_PIPE_AMP] = ACTIONS(419), }, [47] = { [sym_expansion] = STATE(45), - [sym_concatenation] = STATE(112), + [sym_concatenation] = STATE(113), [sym_string] = STATE(45), [sym_command_substitution] = STATE(45), [sym_process_substitution] = STATE(45), [aux_sym__literal_repeat1] = STATE(46), - [aux_sym_unset_command_repeat1] = STATE(112), + [aux_sym_unset_command_repeat1] = STATE(113), [sym_simple_expansion] = STATE(45), [sym_arithmetic_expansion] = STATE(45), [sym_string_expansion] = STATE(45), - [anon_sym_AMP_GT_GT] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(165), - [anon_sym_LT_LT] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), - [anon_sym_LT_LPAREN] = ACTIONS(169), - [sym_ansii_c_string] = ACTIONS(171), - [anon_sym_PIPE_PIPE] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(421), - [aux_sym__simple_variable_name_token1] = ACTIONS(423), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_LT_AMP] = ACTIONS(421), - [anon_sym_GT_GT] = ACTIONS(421), - [anon_sym_DOLLAR] = ACTIONS(175), - [anon_sym_LT_LT_DASH] = ACTIONS(421), - [anon_sym_GT_LPAREN] = ACTIONS(169), - [sym_number] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(179), - [sym_file_descriptor] = ACTIONS(425), - [sym_word] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(421), - [anon_sym_AMP_GT] = ACTIONS(421), - [ts_builtin_sym_end] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(421), - [anon_sym_GT_AMP] = ACTIONS(421), - [sym__special_character] = ACTIONS(181), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(183), - [sym_raw_string] = ACTIONS(171), - [anon_sym_AMP_AMP] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_SEMI_SEMI] = ACTIONS(421), - [anon_sym_PIPE_AMP] = ACTIONS(421), + [sym_word] = ACTIONS(161), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [sym__special_character] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(167), + [sym_raw_string] = ACTIONS(161), + [sym_number] = ACTIONS(161), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_PIPE] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(425), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(169), + [anon_sym_LT_LT_DASH] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(171), + [sym_ansii_c_string] = ACTIONS(161), + [anon_sym_LF] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_DQUOTE] = ACTIONS(175), + [sym_file_descriptor] = ACTIONS(427), + [aux_sym__simple_variable_name_token1] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_AMP_GT] = ACTIONS(425), + [ts_builtin_sym_end] = ACTIONS(427), + [anon_sym_LT_LT_LT] = ACTIONS(425), + [anon_sym_GT_AMP] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(183), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_SEMI_SEMI] = ACTIONS(425), + [anon_sym_PIPE_AMP] = ACTIONS(425), }, [48] = { - [sym__concat] = ACTIONS(427), - [sym__string_content] = ACTIONS(429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(429), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(429), - [anon_sym_BQUOTE] = ACTIONS(429), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(429), - [anon_sym_DOLLAR] = ACTIONS(429), + [sym_expansion] = STATE(114), + [sym_string_expansion] = STATE(114), + [sym_simple_expansion] = STATE(114), + [sym_string] = STATE(114), + [sym_command_substitution] = STATE(114), + [sym_process_substitution] = STATE(114), + [sym_arithmetic_expansion] = STATE(114), + [sym_number] = ACTIONS(431), + [sym_raw_string] = ACTIONS(433), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_LT_LPAREN] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(37), + [sym_ansii_c_string] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [sym__special_character] = ACTIONS(433), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(59), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(29), + [anon_sym_BQUOTE] = ACTIONS(15), + [sym_word] = ACTIONS(431), }, [49] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [aux_sym_concatenation_repeat1] = STATE(116), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(437), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_EQ_TILDE] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [ts_builtin_sym_end] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [50] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_EQ_TILDE] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [sym_file_descriptor] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(439), - [anon_sym_EQ_EQ] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [ts_builtin_sym_end] = ACTIONS(441), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(441), }, [51] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(443), + [sym_compound_statement] = STATE(119), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(23), }, [52] = { - [sym_unary_expression] = STATE(118), - [sym_postfix_expression] = STATE(118), - [sym_concatenation] = STATE(118), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(118), - [sym_binary_expression] = STATE(118), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(118), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [53] = { - [aux_sym_concatenation_repeat1] = STATE(744), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_LT_LT_DASH] = ACTIONS(445), + [anon_sym_AMP_GT_GT] = ACTIONS(445), + [anon_sym_LF] = ACTIONS(447), + [anon_sym_SEMI] = ACTIONS(445), [anon_sym_LT_LT] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_RPAREN_RPAREN] = ACTIONS(445), + [sym_file_descriptor] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_AMP_GT] = ACTIONS(445), [anon_sym_PIPE_PIPE] = ACTIONS(445), - [anon_sym_RBRACK_RBRACK] = ACTIONS(445), - [sym__concat] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_PIPE] = ACTIONS(445), + [anon_sym_GT_AMP] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_LT_AMP] = ACTIONS(445), [anon_sym_GT_GT] = ACTIONS(445), - [anon_sym_EQ_TILDE] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), - [anon_sym_LT_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), - [anon_sym_BANG_EQ] = ACTIONS(445), - [anon_sym_RPAREN] = ACTIONS(447), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(445), - [anon_sym_GT_EQ] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [sym_comment] = ACTIONS(53), + [ts_builtin_sym_end] = ACTIONS(447), + [sym_comment] = ACTIONS(3), [anon_sym_AMP_AMP] = ACTIONS(445), - [sym_test_operator] = ACTIONS(445), + [anon_sym_SEMI_SEMI] = ACTIONS(445), + [anon_sym_PIPE_AMP] = ACTIONS(445), + }, + [53] = { + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_PIPE_AMP] = ACTIONS(449), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(453), + [anon_sym_SEMI] = ACTIONS(455), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_AMP_GT] = ACTIONS(451), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(455), + [anon_sym_LT_LT_DASH] = ACTIONS(459), }, [54] = { - [sym_unary_expression] = STATE(119), - [sym_postfix_expression] = STATE(119), - [sym_concatenation] = STATE(119), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(119), - [sym_binary_expression] = STATE(119), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(119), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_PIPE_AMP] = ACTIONS(449), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(453), + [anon_sym_SEMI] = ACTIONS(455), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(455), + [sym_word] = ACTIONS(347), }, [55] = { - [aux_sym__literal_repeat1] = STATE(749), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_RPAREN_RPAREN] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_RBRACK_RBRACK] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_GT_GT] = ACTIONS(451), - [anon_sym_EQ_TILDE] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_RPAREN] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(451), - [sym__special_character] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(453), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(451), - [sym_test_operator] = ACTIONS(451), + [sym_if_statement] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_negated_command] = STATE(53), + [sym_test_command] = STATE(53), + [sym_variable_assignment] = STATE(54), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_compound_statement] = STATE(53), + [sym_subshell] = STATE(53), + [sym_declaration_command] = STATE(53), + [sym_unset_command] = STATE(53), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_pipeline] = STATE(53), + [sym_list] = STATE(53), + [sym_command] = STATE(53), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [56] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(465), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_unary_expression] = STATE(123), + [sym_postfix_expression] = STATE(123), + [sym_concatenation] = STATE(123), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(123), + [sym_binary_expression] = STATE(123), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(123), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [57] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(467), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [aux_sym_concatenation_repeat1] = STATE(749), + [anon_sym_PLUS_EQ] = ACTIONS(467), + [anon_sym_DASH_DASH] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_RPAREN_RPAREN] = ACTIONS(467), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_RBRACK_RBRACK] = ACTIONS(467), + [sym__concat] = ACTIONS(471), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_EQ_TILDE] = ACTIONS(467), + [anon_sym_PLUS_PLUS] = ACTIONS(467), + [anon_sym_LT_EQ] = ACTIONS(467), + [anon_sym_DASH_EQ] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_GT_EQ] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(467), + [sym_test_operator] = ACTIONS(467), }, [58] = { - [anon_sym_RPAREN] = ACTIONS(467), - [sym_comment] = ACTIONS(53), + [sym_unary_expression] = STATE(124), + [sym_postfix_expression] = STATE(124), + [sym_concatenation] = STATE(124), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(124), + [sym_binary_expression] = STATE(124), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(124), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [59] = { - [anon_sym_RPAREN] = ACTIONS(469), - [sym_comment] = ACTIONS(53), + [sym_unary_expression] = STATE(125), + [sym_postfix_expression] = STATE(125), + [sym_concatenation] = STATE(125), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(125), + [sym_binary_expression] = STATE(125), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(125), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [60] = { - [sym_expansion] = STATE(126), - [sym_string_expansion] = STATE(126), - [sym_simple_expansion] = STATE(126), - [sym_string] = STATE(126), - [sym_command_substitution] = STATE(126), - [sym_process_substitution] = STATE(126), - [sym_arithmetic_expansion] = STATE(126), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(19), - [sym_number] = ACTIONS(471), - [sym__special_character] = ACTIONS(473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), - [anon_sym_BQUOTE] = ACTIONS(55), - [sym_raw_string] = ACTIONS(473), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [sym_word] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(19), - [anon_sym_DOLLAR] = ACTIONS(29), - [sym_ansii_c_string] = ACTIONS(473), + [aux_sym__literal_repeat1] = STATE(755), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [sym__special_character] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_RPAREN_RPAREN] = ACTIONS(473), + [anon_sym_PIPE_PIPE] = ACTIONS(473), + [anon_sym_RBRACK_RBRACK] = ACTIONS(473), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_EQ_TILDE] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_BANG_EQ] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(473), + [sym_test_operator] = ACTIONS(473), }, [61] = { - [aux_sym_concatenation_repeat1] = STATE(128), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_EQ_TILDE] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [anon_sym_EQ_EQ] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [ts_builtin_sym_end] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [62] = { - [sym_compound_statement] = STATE(130), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_then] = ACTIONS(489), }, [63] = { - [anon_sym_LT_LT_DASH] = ACTIONS(483), - [anon_sym_AMP_GT_GT] = ACTIONS(483), - [anon_sym_LF] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(483), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_AMP_GT] = ACTIONS(483), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [ts_builtin_sym_end] = ACTIONS(485), - [anon_sym_LT_LT_LT] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_GT_AMP] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_AMP] = ACTIONS(483), - [anon_sym_GT_GT] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_SEMI_SEMI] = ACTIONS(483), - [anon_sym_PIPE_AMP] = ACTIONS(483), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LF] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(491), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_AMP_GT] = ACTIONS(451), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(491), + [anon_sym_PIPE_AMP] = ACTIONS(449), }, [64] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_PIPE_AMP] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LF] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(493), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(493), - [anon_sym_SEMI_SEMI] = ACTIONS(493), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(491), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(491), + [anon_sym_PIPE_AMP] = ACTIONS(449), }, [65] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(491), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(493), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(493), - [anon_sym_SEMI_SEMI] = ACTIONS(493), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [aux_sym_concatenation_repeat1] = STATE(787), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(495), + [sym__concat] = ACTIONS(497), + [anon_sym_LF] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_in] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(495), }, [66] = { - [sym_if_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_negated_command] = STATE(64), - [sym_test_command] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_compound_statement] = STATE(64), - [sym_subshell] = STATE(64), - [sym_declaration_command] = STATE(64), - [sym_unset_command] = STATE(64), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_case_statement] = STATE(64), - [sym_pipeline] = STATE(64), - [sym_list] = STATE(64), - [sym_command] = STATE(64), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(67), - [anon_sym_typeset] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(495), + [anon_sym_LF] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_in] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(495), }, [67] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_EQ_TILDE] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), + [aux_sym__literal_repeat1] = STATE(793), + [sym__special_character] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(505), + [sym_comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(507), [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [sym_file_descriptor] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_AMP_GT] = ACTIONS(505), - [anon_sym_EQ_EQ] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [ts_builtin_sym_end] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [anon_sym_in] = ACTIONS(509), }, [68] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_EQ_TILDE] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [sym_file_descriptor] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_AMP_GT] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [ts_builtin_sym_end] = ACTIONS(511), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(511), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [69] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [sym__concat] = ACTIONS(515), [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), + [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), + [sym__string_content] = ACTIONS(513), [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_AMP_GT] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [ts_builtin_sym_end] = ACTIONS(515), - [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), }, [70] = { - [anon_sym_then] = ACTIONS(517), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(521), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [71] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_LF] = ACTIONS(519), - [anon_sym_SEMI] = ACTIONS(521), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(521), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(521), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_EQ_TILDE] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_EQ_EQ] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [ts_builtin_sym_end] = ACTIONS(527), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [72] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(521), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(521), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(521), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(529), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [73] = { - [aux_sym_concatenation_repeat1] = STATE(782), - [anon_sym_SEMI_SEMI] = ACTIONS(523), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(525), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_LF] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_in] = ACTIONS(529), + [anon_sym_LT_LT_DASH] = ACTIONS(531), + [anon_sym_AMP_GT_GT] = ACTIONS(531), + [anon_sym_LF] = ACTIONS(533), + [anon_sym_SEMI] = ACTIONS(531), + [anon_sym_LT_LT] = ACTIONS(531), + [sym_file_descriptor] = ACTIONS(533), + [anon_sym_GT] = ACTIONS(531), + [anon_sym_AMP_GT] = ACTIONS(531), + [anon_sym_PIPE_PIPE] = ACTIONS(531), + [anon_sym_AMP] = ACTIONS(531), + [anon_sym_LT_LT_LT] = ACTIONS(531), + [anon_sym_PIPE] = ACTIONS(531), + [anon_sym_GT_AMP] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_LT_AMP] = ACTIONS(531), + [anon_sym_GT_GT] = ACTIONS(531), + [ts_builtin_sym_end] = ACTIONS(533), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(531), + [anon_sym_SEMI_SEMI] = ACTIONS(531), + [anon_sym_PIPE_AMP] = ACTIONS(531), }, [74] = { - [anon_sym_SEMI_SEMI] = ACTIONS(523), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_LF] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_in] = ACTIONS(529), + [sym_expansion] = STATE(143), + [sym_concatenation] = STATE(144), + [sym_string] = STATE(143), + [sym_command_substitution] = STATE(143), + [sym_process_substitution] = STATE(143), + [aux_sym__literal_repeat1] = STATE(145), + [sym_array] = STATE(144), + [sym_simple_expansion] = STATE(143), + [sym_arithmetic_expansion] = STATE(143), + [sym_string_expansion] = STATE(143), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_LT_LPAREN] = ACTIONS(537), + [sym_ansii_c_string] = ACTIONS(539), + [anon_sym_DQUOTE] = ACTIONS(541), + [sym__special_character] = ACTIONS(543), + [anon_sym_BQUOTE] = ACTIONS(545), + [sym_raw_string] = ACTIONS(539), + [sym_number] = ACTIONS(547), + [anon_sym_DOLLAR] = ACTIONS(549), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(553), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(555), + [sym__empty_value] = ACTIONS(557), + [sym_word] = ACTIONS(547), }, [75] = { - [aux_sym__literal_repeat1] = STATE(787), - [anon_sym_SEMI_SEMI] = ACTIONS(531), - [sym_comment] = ACTIONS(3), - [sym__special_character] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_LF] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(531), - [anon_sym_in] = ACTIONS(537), + [sym_expansion] = STATE(146), + [sym_concatenation] = STATE(147), + [sym_string] = STATE(146), + [sym_command_substitution] = STATE(146), + [sym_process_substitution] = STATE(146), + [aux_sym__literal_repeat1] = STATE(148), + [sym_simple_expansion] = STATE(146), + [sym_arithmetic_expansion] = STATE(146), + [sym_string_expansion] = STATE(146), + [sym_number] = ACTIONS(559), + [sym_word] = ACTIONS(559), + [anon_sym_DOLLAR] = ACTIONS(561), + [sym_ansii_c_string] = ACTIONS(563), + [anon_sym_DQUOTE] = ACTIONS(565), + [anon_sym_LT_LPAREN] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(569), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), + [anon_sym_GT_LPAREN] = ACTIONS(567), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), + [anon_sym_BQUOTE] = ACTIONS(575), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [sym_raw_string] = ACTIONS(563), }, [76] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(539), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(149), + [sym_concatenation] = STATE(150), + [sym_string] = STATE(149), + [sym_command_substitution] = STATE(149), + [sym_process_substitution] = STATE(149), + [aux_sym__literal_repeat1] = STATE(151), + [sym_simple_expansion] = STATE(149), + [sym_arithmetic_expansion] = STATE(149), + [sym_string_expansion] = STATE(149), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [sym_ansii_c_string] = ACTIONS(579), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym__special_character] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [sym_raw_string] = ACTIONS(579), + [sym_number] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(127), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(581), }, [77] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(145), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(145), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(541), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(541), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(541), - [anon_sym_POUND] = ACTIONS(557), - [anon_sym_DASH] = ACTIONS(541), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(541), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(583), }, [78] = { - [sym_subscript] = STATE(146), - [anon_sym_0] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [aux_sym__simple_variable_name_token1] = ACTIONS(569), - [anon_sym__] = ACTIONS(569), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(571), + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_EQ_TILDE] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [ts_builtin_sym_end] = ACTIONS(587), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [79] = { - [anon_sym_EQ] = ACTIONS(577), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [80] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(152), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(152), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(581), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(581), - [anon_sym_POUND] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(581), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(581), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(567), - }, - [81] = { - [anon_sym_LT_LT_DASH] = ACTIONS(589), + [sym_word] = ACTIONS(589), [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_EQ_TILDE] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), [anon_sym_LF] = ACTIONS(591), [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), [sym_file_descriptor] = ACTIONS(591), [anon_sym_GT] = ACTIONS(589), [anon_sym_AMP_GT] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [ts_builtin_sym_end] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), [anon_sym_LT_LT_LT] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), [anon_sym_GT_AMP] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_LT_AMP] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(589), [anon_sym_SEMI_SEMI] = ACTIONS(589), [anon_sym_PIPE_AMP] = ACTIONS(589), }, - [82] = { - [sym_expansion] = STATE(154), - [sym_concatenation] = STATE(155), - [sym_string] = STATE(154), - [sym_command_substitution] = STATE(154), - [sym_process_substitution] = STATE(154), - [aux_sym__literal_repeat1] = STATE(156), - [sym_array] = STATE(155), - [sym_simple_expansion] = STATE(154), - [sym_arithmetic_expansion] = STATE(154), - [sym_string_expansion] = STATE(154), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(597), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), - [anon_sym_DQUOTE] = ACTIONS(601), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(603), - [sym_word] = ACTIONS(597), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(605), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [sym_ansii_c_string] = ACTIONS(607), - [sym__special_character] = ACTIONS(609), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(611), - [sym_raw_string] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(613), - [sym__empty_value] = ACTIONS(615), + [80] = { + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_EQ_TILDE] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [ts_builtin_sym_end] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, - [83] = { - [sym_expansion] = STATE(157), - [sym_concatenation] = STATE(158), - [sym_string] = STATE(157), - [sym_command_substitution] = STATE(157), - [sym_process_substitution] = STATE(157), - [aux_sym__literal_repeat1] = STATE(159), - [sym_simple_expansion] = STATE(157), - [sym_arithmetic_expansion] = STATE(157), - [sym_string_expansion] = STATE(157), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(617), - [sym__special_character] = ACTIONS(619), - [sym_number] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), - [sym_raw_string] = ACTIONS(629), - [sym_word] = ACTIONS(621), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_ansii_c_string] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(617), + [81] = { + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), + }, + [82] = { + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(597), + }, + [83] = { + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(599), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_SEMI_SEMI] = ACTIONS(599), + [anon_sym_in] = ACTIONS(603), }, [84] = { - [sym_expansion] = STATE(160), - [sym_concatenation] = STATE(161), - [sym_string] = STATE(160), - [sym_command_substitution] = STATE(160), - [sym_process_substitution] = STATE(160), - [aux_sym__literal_repeat1] = STATE(162), - [sym_simple_expansion] = STATE(160), - [sym_arithmetic_expansion] = STATE(160), - [sym_string_expansion] = STATE(160), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_number] = ACTIONS(637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(123), - [sym_word] = ACTIONS(637), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [sym_ansii_c_string] = ACTIONS(639), - [sym__special_character] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(131), - [sym_raw_string] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(133), + [sym_unary_expression] = STATE(158), + [sym_postfix_expression] = STATE(158), + [sym_concatenation] = STATE(158), + [sym_string] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym_variable_assignment] = STATE(157), + [sym_subscript] = STATE(2611), + [sym__expression] = STATE(158), + [sym_binary_expression] = STATE(158), + [sym_arithmetic_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [sym_expansion] = STATE(565), + [aux_sym__literal_repeat1] = STATE(568), + [sym_parenthesized_expression] = STATE(158), + [sym_simple_expansion] = STATE(565), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_LT_LPAREN] = ACTIONS(607), + [sym_ansii_c_string] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(611), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(615), + [aux_sym_unary_expression_token1] = ACTIONS(617), + [sym_variable_name] = ACTIONS(619), + [sym__special_character] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(623), + [sym_raw_string] = ACTIONS(609), + [sym_number] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(625), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), + [sym_test_operator] = ACTIONS(615), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(631), + [anon_sym_SEMI_SEMI] = ACTIONS(613), + [sym_word] = ACTIONS(609), }, [85] = { - [anon_sym_RPAREN] = ACTIONS(641), - [sym_comment] = ACTIONS(53), + [sym_do_group] = STATE(160), + [sym_comment] = ACTIONS(23), + [anon_sym_do] = ACTIONS(633), }, [86] = { - [anon_sym_BQUOTE] = ACTIONS(643), - [sym_comment] = ACTIONS(53), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_DASH] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(639), + [anon_sym_RBRACK] = ACTIONS(511), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(635), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_GT_GT] = ACTIONS(635), + [anon_sym_EQ_TILDE] = ACTIONS(641), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(635), + [sym_test_operator] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), }, [87] = { - [anon_sym_AMP] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_in] = ACTIONS(649), - [anon_sym_SEMI_SEMI] = ACTIONS(645), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(165), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(165), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(643), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(651), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(663), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(643), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [88] = { - [sym_unary_expression] = STATE(169), - [sym_postfix_expression] = STATE(169), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(561), - [sym_command_substitution] = STATE(561), - [sym_process_substitution] = STATE(561), - [sym_variable_assignment] = STATE(168), - [sym_subscript] = STATE(2605), - [sym__expression] = STATE(169), - [sym_binary_expression] = STATE(169), - [sym_arithmetic_expansion] = STATE(561), - [sym_string_expansion] = STATE(561), - [sym_expansion] = STATE(561), - [aux_sym__literal_repeat1] = STATE(563), - [sym_parenthesized_expression] = STATE(169), - [sym_simple_expansion] = STATE(561), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_GT_LPAREN] = ACTIONS(653), - [sym_number] = ACTIONS(655), - [anon_sym_LF] = ACTIONS(657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_variable_name] = ACTIONS(665), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), - [sym_word] = ACTIONS(655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_LT_LPAREN] = ACTIONS(653), - [sym_ansii_c_string] = ACTIONS(655), - [sym__special_character] = ACTIONS(671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(673), - [sym_raw_string] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(657), - [sym_test_operator] = ACTIONS(661), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(168), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(168), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(671), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(673), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_PERCENT] = ACTIONS(671), + [anon_sym_EQ] = ACTIONS(671), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(677), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(671), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [89] = { - [sym_do_group] = STATE(171), - [sym_comment] = ACTIONS(53), - [anon_sym_do] = ACTIONS(677), + [sym_subscript] = STATE(169), + [anon_sym_QMARK] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(679), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(683), + [sym_variable_name] = ACTIONS(685), + [aux_sym__simple_variable_name_token1] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym__] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(679), }, [90] = { - [anon_sym_BANG_EQ] = ACTIONS(679), - [anon_sym_PLUS_EQ] = ACTIONS(679), - [anon_sym_DASH_EQ] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(539), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_GT_EQ] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(683), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_EQ_TILDE] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_LT_EQ] = ACTIONS(679), - [sym_test_operator] = ACTIONS(679), + [anon_sym_EQ] = ACTIONS(687), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), }, [91] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_RBRACK_RBRACK] = ACTIONS(539), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_RBRACK_RBRACK] = ACTIONS(511), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [92] = { - [sym_if_statement] = STATE(172), - [sym_function_definition] = STATE(172), - [sym_negated_command] = STATE(172), - [sym_test_command] = STATE(172), - [sym_variable_assignment] = STATE(173), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(691), + }, + [93] = { + [sym_if_statement] = STATE(174), + [sym_function_definition] = STATE(174), + [sym_negated_command] = STATE(174), + [sym_test_command] = STATE(174), + [sym_variable_assignment] = STATE(175), [sym_subscript] = STATE(30), - [sym_arithmetic_expansion] = STATE(10), - [sym_string_expansion] = STATE(10), - [sym_expansion] = STATE(10), + [sym_arithmetic_expansion] = STATE(8), + [sym_string_expansion] = STATE(8), + [sym_expansion] = STATE(8), [aux_sym__literal_repeat1] = STATE(32), - [sym_redirected_statement] = STATE(172), - [sym_for_statement] = STATE(172), - [sym_compound_statement] = STATE(172), - [sym_subshell] = STATE(172), - [sym_declaration_command] = STATE(172), - [sym_unset_command] = STATE(172), + [sym_redirected_statement] = STATE(174), + [sym_for_statement] = STATE(174), + [sym_compound_statement] = STATE(174), + [sym_subshell] = STATE(174), + [sym_declaration_command] = STATE(174), + [sym_unset_command] = STATE(174), [sym_file_redirect] = STATE(35), [sym_concatenation] = STATE(34), - [sym_string] = STATE(10), - [sym_command_substitution] = STATE(10), - [sym_process_substitution] = STATE(10), + [sym_string] = STATE(8), + [sym_command_substitution] = STATE(8), + [sym_process_substitution] = STATE(8), [aux_sym_command_repeat1] = STATE(35), - [sym_c_style_for_statement] = STATE(172), - [sym_while_statement] = STATE(172), - [sym_case_statement] = STATE(172), - [sym_pipeline] = STATE(172), - [sym_list] = STATE(172), - [sym_command] = STATE(172), + [sym_c_style_for_statement] = STATE(174), + [sym_while_statement] = STATE(174), + [sym_case_statement] = STATE(174), + [sym_pipeline] = STATE(174), + [sym_list] = STATE(174), + [sym_command] = STATE(174), [sym_command_name] = STATE(37), - [sym_simple_expansion] = STATE(10), + [sym_simple_expansion] = STATE(8), [anon_sym_LPAREN] = ACTIONS(5), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(9), [anon_sym_typeset] = ACTIONS(9), [anon_sym_unsetenv] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [anon_sym_LT_LPAREN] = ACTIONS(19), - [sym_ansii_c_string] = ACTIONS(21), - [anon_sym_function] = ACTIONS(23), + [sym__special_character] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(15), + [sym_raw_string] = ACTIONS(17), + [sym_number] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [sym_comment] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(29), [anon_sym_if] = ACTIONS(31), [anon_sym_case] = ACTIONS(33), [anon_sym_LPAREN_LPAREN] = ACTIONS(35), - [sym_number] = ACTIONS(37), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), - [anon_sym_BANG] = ACTIONS(41), + [sym_ansii_c_string] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(37), + [anon_sym_BANG] = ACTIONS(39), [anon_sym_declare] = ACTIONS(9), - [sym_variable_name] = ACTIONS(43), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(47), + [sym_variable_name] = ACTIONS(41), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(45), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(19), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(9), [anon_sym_unset] = ACTIONS(11), - [sym__special_character] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(55), - [anon_sym_for] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [sym_raw_string] = ACTIONS(21), - [anon_sym_LBRACK_LBRACK] = ACTIONS(63), - }, - [93] = { - [sym_heredoc_body] = STATE(176), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(687), - [ts_builtin_sym_end] = ACTIONS(695), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_GT_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(59), + [anon_sym_LBRACK_LBRACK] = ACTIONS(61), + [sym_word] = ACTIONS(63), }, [94] = { - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [anon_sym_unset] = ACTIONS(687), - [ts_builtin_sym_end] = ACTIONS(695), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [sym_heredoc_body] = STATE(178), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(697), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [ts_builtin_sym_end] = ACTIONS(701), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [95] = { - [sym_heredoc_start] = ACTIONS(697), - [sym_comment] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [ts_builtin_sym_end] = ACTIONS(701), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [96] = { - [sym_if_statement] = STATE(178), - [sym_function_definition] = STATE(178), - [sym_negated_command] = STATE(178), - [sym_test_command] = STATE(178), - [sym_variable_assignment] = STATE(179), + [sym_heredoc_start] = ACTIONS(703), + [sym_comment] = ACTIONS(23), + }, + [97] = { + [sym_if_statement] = STATE(180), + [sym_function_definition] = STATE(180), + [sym_negated_command] = STATE(180), + [sym_test_command] = STATE(180), + [sym_variable_assignment] = STATE(181), [sym_subscript] = STATE(30), - [sym_arithmetic_expansion] = STATE(10), - [sym_string_expansion] = STATE(10), - [sym_expansion] = STATE(10), + [sym_arithmetic_expansion] = STATE(8), + [sym_string_expansion] = STATE(8), + [sym_expansion] = STATE(8), [aux_sym__literal_repeat1] = STATE(32), - [sym_redirected_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_compound_statement] = STATE(178), - [sym_subshell] = STATE(178), - [sym_declaration_command] = STATE(178), - [sym_unset_command] = STATE(178), + [sym_redirected_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_compound_statement] = STATE(180), + [sym_subshell] = STATE(180), + [sym_declaration_command] = STATE(180), + [sym_unset_command] = STATE(180), [sym_file_redirect] = STATE(35), [sym_concatenation] = STATE(34), - [sym_string] = STATE(10), - [sym_command_substitution] = STATE(10), - [sym_process_substitution] = STATE(10), + [sym_string] = STATE(8), + [sym_command_substitution] = STATE(8), + [sym_process_substitution] = STATE(8), [aux_sym_command_repeat1] = STATE(35), - [sym_c_style_for_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_pipeline] = STATE(178), - [sym_list] = STATE(178), - [sym_command] = STATE(178), + [sym_c_style_for_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_pipeline] = STATE(180), + [sym_list] = STATE(180), + [sym_command] = STATE(180), [sym_command_name] = STATE(37), - [sym_simple_expansion] = STATE(10), + [sym_simple_expansion] = STATE(8), [anon_sym_LPAREN] = ACTIONS(5), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(9), [anon_sym_typeset] = ACTIONS(9), [anon_sym_unsetenv] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [anon_sym_LT_LPAREN] = ACTIONS(19), - [sym_ansii_c_string] = ACTIONS(21), - [anon_sym_function] = ACTIONS(23), + [sym__special_character] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(15), + [sym_raw_string] = ACTIONS(17), + [sym_number] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [sym_comment] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(29), [anon_sym_if] = ACTIONS(31), [anon_sym_case] = ACTIONS(33), [anon_sym_LPAREN_LPAREN] = ACTIONS(35), - [sym_number] = ACTIONS(37), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), - [anon_sym_BANG] = ACTIONS(41), + [sym_ansii_c_string] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(37), + [anon_sym_BANG] = ACTIONS(39), [anon_sym_declare] = ACTIONS(9), - [sym_variable_name] = ACTIONS(43), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(47), + [sym_variable_name] = ACTIONS(41), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(45), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(19), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(9), [anon_sym_unset] = ACTIONS(11), - [sym__special_character] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(55), - [anon_sym_for] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [sym_raw_string] = ACTIONS(21), - [anon_sym_LBRACK_LBRACK] = ACTIONS(63), - }, - [97] = { - [sym_expansion] = STATE(180), - [sym_concatenation] = STATE(181), - [sym_string] = STATE(180), - [sym_command_substitution] = STATE(180), - [sym_process_substitution] = STATE(180), - [aux_sym__literal_repeat1] = STATE(182), - [sym_simple_expansion] = STATE(180), - [sym_arithmetic_expansion] = STATE(180), - [sym_string_expansion] = STATE(180), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym__special_character] = ACTIONS(701), - [sym_number] = ACTIONS(703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_word] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(715), - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_ansii_c_string] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(59), + [anon_sym_LBRACK_LBRACK] = ACTIONS(61), + [sym_word] = ACTIONS(63), }, [98] = { - [sym_heredoc_redirect] = STATE(183), - [sym_file_redirect] = STATE(183), - [sym_herestring_redirect] = STATE(183), - [aux_sym_redirected_statement_repeat1] = STATE(183), - [anon_sym_LT_LT_DASH] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(327), - [anon_sym_LF] = ACTIONS(719), - [anon_sym_SEMI] = ACTIONS(721), - [anon_sym_LT_LT] = ACTIONS(333), - [sym_file_descriptor] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(327), - [anon_sym_AMP_GT] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(721), - [ts_builtin_sym_end] = ACTIONS(719), - [anon_sym_LT_LT_LT] = ACTIONS(339), - [anon_sym_PIPE] = ACTIONS(721), - [anon_sym_GT_AMP] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(327), - [anon_sym_LT_AMP] = ACTIONS(327), - [anon_sym_GT_GT] = ACTIONS(327), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(721), - [anon_sym_AMP] = ACTIONS(721), - [anon_sym_SEMI_SEMI] = ACTIONS(721), - [anon_sym_PIPE_AMP] = ACTIONS(721), + [sym_expansion] = STATE(182), + [sym_concatenation] = STATE(183), + [sym_string] = STATE(182), + [sym_command_substitution] = STATE(182), + [sym_process_substitution] = STATE(182), + [aux_sym__literal_repeat1] = STATE(184), + [sym_simple_expansion] = STATE(182), + [sym_arithmetic_expansion] = STATE(182), + [sym_string_expansion] = STATE(182), + [sym_number] = ACTIONS(705), + [sym_word] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_ansii_c_string] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(713), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(717), + [anon_sym_GT_LPAREN] = ACTIONS(713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(719), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(723), + [sym_raw_string] = ACTIONS(709), }, [99] = { - [sym_heredoc_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [anon_sym_PIPE_AMP] = ACTIONS(341), - [anon_sym_AMP_GT_GT] = ACTIONS(327), - [anon_sym_LF] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(725), - [sym_file_descriptor] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(327), - [anon_sym_AMP_GT] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [ts_builtin_sym_end] = ACTIONS(695), - [anon_sym_LT_LT_LT] = ACTIONS(339), - [anon_sym_GT_AMP] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(327), - [anon_sym_LT_AMP] = ACTIONS(327), - [anon_sym_GT_GT] = ACTIONS(327), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_SEMI_SEMI] = ACTIONS(725), - [anon_sym_LT_LT_DASH] = ACTIONS(333), + [sym_heredoc_redirect] = STATE(185), + [sym_file_redirect] = STATE(185), + [sym_herestring_redirect] = STATE(185), + [aux_sym_redirected_statement_repeat1] = STATE(185), + [anon_sym_LT_LT_DASH] = ACTIONS(337), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_LT_LT] = ACTIONS(337), + [sym_file_descriptor] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_LT_LT_LT] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [ts_builtin_sym_end] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_SEMI_SEMI] = ACTIONS(727), + [anon_sym_PIPE_AMP] = ACTIONS(727), }, [100] = { - [sym_heredoc_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(335), - [anon_sym_PIPE] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(333), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(723), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(725), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(339), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(335), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_SEMI_SEMI] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(341), + [sym_heredoc_redirect] = STATE(99), + [sym_file_redirect] = STATE(99), + [sym_herestring_redirect] = STATE(99), + [aux_sym_redirected_statement_repeat1] = STATE(99), + [anon_sym_PIPE_AMP] = ACTIONS(345), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_LF] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [ts_builtin_sym_end] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LT_LT_LT] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_GT] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_LT_LT_DASH] = ACTIONS(337), }, [101] = { - [sym_if_statement] = STATE(1439), - [sym_function_definition] = STATE(1439), - [sym_negated_command] = STATE(1439), - [sym_test_command] = STATE(1439), - [sym_variable_assignment] = STATE(1440), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(101), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1439), - [sym_for_statement] = STATE(1439), - [sym_compound_statement] = STATE(1439), - [sym_subshell] = STATE(1439), - [sym_declaration_command] = STATE(1439), - [sym_unset_command] = STATE(1439), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(1439), - [sym_while_statement] = STATE(1439), - [sym_case_statement] = STATE(1439), - [sym_pipeline] = STATE(1439), - [sym_list] = STATE(1439), - [sym_command] = STATE(1439), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_AMP_GT_GT] = ACTIONS(730), - [anon_sym_local] = ACTIONS(733), - [anon_sym_typeset] = ACTIONS(733), - [anon_sym_unsetenv] = ACTIONS(736), - [anon_sym_DQUOTE] = ACTIONS(739), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), - [anon_sym_LT_LPAREN] = ACTIONS(748), + [sym_heredoc_redirect] = STATE(99), + [sym_file_redirect] = STATE(99), + [sym_herestring_redirect] = STATE(99), + [aux_sym_redirected_statement_repeat1] = STATE(99), + [anon_sym_PIPE_AMP] = ACTIONS(345), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(345), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(337), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(731), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [ts_builtin_sym_end] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(343), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [sym_word] = ACTIONS(347), + }, + [102] = { + [sym_if_statement] = STATE(1440), + [sym_function_definition] = STATE(1440), + [sym_negated_command] = STATE(1440), + [sym_test_command] = STATE(1440), + [sym_variable_assignment] = STATE(1441), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(102), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1440), + [sym_for_statement] = STATE(1440), + [sym_compound_statement] = STATE(1440), + [sym_subshell] = STATE(1440), + [sym_declaration_command] = STATE(1440), + [sym_unset_command] = STATE(1440), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(1440), + [sym_while_statement] = STATE(1440), + [sym_case_statement] = STATE(1440), + [sym_pipeline] = STATE(1440), + [sym_list] = STATE(1440), + [sym_command] = STATE(1440), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(736), + [anon_sym_local] = ACTIONS(739), + [anon_sym_typeset] = ACTIONS(739), + [anon_sym_unsetenv] = ACTIONS(742), + [sym__special_character] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(748), + [sym_raw_string] = ACTIONS(751), + [sym_number] = ACTIONS(754), + [anon_sym_function] = ACTIONS(757), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_AMP] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(736), + [anon_sym_export] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(766), + [anon_sym_if] = ACTIONS(769), + [anon_sym_case] = ACTIONS(772), + [anon_sym_LPAREN_LPAREN] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(778), [sym_ansii_c_string] = ACTIONS(751), - [anon_sym_function] = ACTIONS(754), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_LT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(730), - [anon_sym_GT_GT] = ACTIONS(730), - [anon_sym_export] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_if] = ACTIONS(766), - [anon_sym_case] = ACTIONS(769), - [anon_sym_LPAREN_LPAREN] = ACTIONS(772), - [sym_number] = ACTIONS(775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), [anon_sym_BANG] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(748), - [sym_file_descriptor] = ACTIONS(784), - [sym_word] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(760), + [anon_sym_declare] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(784), + [sym_file_descriptor] = ACTIONS(787), [sym_variable_name] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(760), - [anon_sym_readonly] = ACTIONS(733), - [anon_sym_unset] = ACTIONS(736), - [sym__special_character] = ACTIONS(793), - [anon_sym_GT_AMP] = ACTIONS(730), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_AMP_GT] = ACTIONS(763), + [anon_sym_readonly] = ACTIONS(739), + [anon_sym_unset] = ACTIONS(742), + [anon_sym_DOLLAR] = ACTIONS(793), + [anon_sym_GT_AMP] = ACTIONS(736), + [anon_sym_GT_LPAREN] = ACTIONS(784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), [anon_sym_for] = ACTIONS(799), [anon_sym_while] = ACTIONS(802), [anon_sym_LBRACK] = ACTIONS(805), - [sym_raw_string] = ACTIONS(751), - [anon_sym_LBRACK_LBRACK] = ACTIONS(808), - }, - [102] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_EQ_TILDE] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [ts_builtin_sym_end] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_LBRACK_LBRACK] = ACTIONS(811), + [sym_word] = ACTIONS(814), }, [103] = { - [aux_sym__literal_repeat1] = STATE(103), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [sym__special_character] = ACTIONS(815), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [104] = { - [sym_expansion] = STATE(106), - [sym_string_expansion] = STATE(106), - [sym_concatenation] = STATE(186), - [sym_string] = STATE(106), - [aux_sym__literal_repeat1] = STATE(109), - [sym_command_substitution] = STATE(106), - [sym_process_substitution] = STATE(106), - [sym_simple_expansion] = STATE(106), - [sym_arithmetic_expansion] = STATE(106), - [aux_sym_command_repeat2] = STATE(186), - [anon_sym_AMP_GT_GT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [sym_ansii_c_string] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_LT_AMP] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_EQ_TILDE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(29), - [anon_sym_LT_LT_DASH] = ACTIONS(818), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_number] = ACTIONS(367), - [anon_sym_LF] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [sym_file_descriptor] = ACTIONS(820), - [sym_word] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_AMP_GT] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(369), - [ts_builtin_sym_end] = ACTIONS(820), - [anon_sym_LT_LT_LT] = ACTIONS(818), - [anon_sym_GT_AMP] = ACTIONS(818), - [sym__special_character] = ACTIONS(51), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(375), - [sym_raw_string] = ACTIONS(367), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_SEMI_SEMI] = ACTIONS(818), - [anon_sym_PIPE_AMP] = ACTIONS(818), + [aux_sym__literal_repeat1] = STATE(104), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(819), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [ts_builtin_sym_end] = ACTIONS(822), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [105] = { - [sym_variable_assignment] = STATE(105), - [sym_subscript] = STATE(2585), - [aux_sym_command_repeat1] = STATE(105), - [sym_file_redirect] = STATE(105), - [anon_sym_AMP_GT_GT] = ACTIONS(822), - [sym_number] = ACTIONS(825), - [anon_sym_GT_LPAREN] = ACTIONS(827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(827), - [sym_file_descriptor] = ACTIONS(829), - [sym_word] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), - [anon_sym_AMP_GT] = ACTIONS(832), - [sym_ansii_c_string] = ACTIONS(827), - [anon_sym_LT_LPAREN] = ACTIONS(827), - [sym_variable_name] = ACTIONS(835), - [sym__special_character] = ACTIONS(827), - [anon_sym_GT_AMP] = ACTIONS(822), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(822), - [anon_sym_GT_GT] = ACTIONS(822), - [sym_raw_string] = ACTIONS(827), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(825), + [sym_expansion] = STATE(107), + [sym_string_expansion] = STATE(107), + [sym_concatenation] = STATE(188), + [sym_string] = STATE(107), + [aux_sym__literal_repeat1] = STATE(110), + [sym_command_substitution] = STATE(107), + [sym_process_substitution] = STATE(107), + [sym_simple_expansion] = STATE(107), + [sym_arithmetic_expansion] = STATE(107), + [aux_sym_command_repeat2] = STATE(188), + [sym_word] = ACTIONS(363), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [sym__special_character] = ACTIONS(13), + [anon_sym_LT_LT] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(367), + [sym_raw_string] = ACTIONS(363), + [sym_number] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(371), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [sym_ansii_c_string] = ACTIONS(363), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(377), + [sym_file_descriptor] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_SEMI_SEMI] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), }, [106] = { - [aux_sym_concatenation_repeat1] = STATE(61), - [anon_sym_AMP_GT_GT] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(838), - [anon_sym_LT_LT] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), - [anon_sym_LT_LPAREN] = ACTIONS(838), - [sym_ansii_c_string] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(838), - [sym__concat] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(838), - [anon_sym_LT] = ACTIONS(838), - [anon_sym_LT_AMP] = ACTIONS(838), - [anon_sym_GT_GT] = ACTIONS(838), - [anon_sym_EQ_TILDE] = ACTIONS(838), - [anon_sym_DOLLAR] = ACTIONS(838), - [anon_sym_LT_LT_DASH] = ACTIONS(838), - [anon_sym_GT_LPAREN] = ACTIONS(838), - [sym_number] = ACTIONS(838), - [anon_sym_LF] = ACTIONS(840), - [anon_sym_SEMI] = ACTIONS(838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [sym_file_descriptor] = ACTIONS(840), - [sym_word] = ACTIONS(838), - [anon_sym_GT] = ACTIONS(838), - [anon_sym_AMP_GT] = ACTIONS(838), - [anon_sym_EQ_EQ] = ACTIONS(838), - [sym__special_character] = ACTIONS(838), - [anon_sym_LT_LT_LT] = ACTIONS(838), - [anon_sym_GT_AMP] = ACTIONS(838), - [ts_builtin_sym_end] = ACTIONS(840), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(838), - [sym_raw_string] = ACTIONS(838), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_SEMI_SEMI] = ACTIONS(838), - [anon_sym_PIPE_AMP] = ACTIONS(838), - }, - [107] = { - [sym_expansion] = STATE(188), - [sym_concatenation] = STATE(187), - [sym_string] = STATE(188), - [sym_command_substitution] = STATE(188), - [sym_process_substitution] = STATE(188), - [aux_sym__literal_repeat1] = STATE(189), - [sym_simple_expansion] = STATE(188), - [sym_arithmetic_expansion] = STATE(188), - [sym_string_expansion] = STATE(188), - [anon_sym_GT_LPAREN] = ACTIONS(19), + [sym_variable_assignment] = STATE(106), + [sym_subscript] = STATE(2591), + [aux_sym_command_repeat1] = STATE(106), + [sym_file_redirect] = STATE(106), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [sym_ansii_c_string] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_LT_LPAREN] = ACTIONS(831), + [sym__special_character] = ACTIONS(831), + [sym_variable_name] = ACTIONS(833), + [sym_file_descriptor] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(839), + [anon_sym_AMP_GT] = ACTIONS(839), + [sym_raw_string] = ACTIONS(831), + [anon_sym_BQUOTE] = ACTIONS(831), [sym_number] = ACTIONS(842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), + [anon_sym_DOLLAR] = ACTIONS(842), + [anon_sym_GT_AMP] = ACTIONS(828), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(831), + [anon_sym_GT_LPAREN] = ACTIONS(831), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(831), [sym_word] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [anon_sym_LT_LPAREN] = ACTIONS(19), - [sym_ansii_c_string] = ACTIONS(844), - [sym__special_character] = ACTIONS(355), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(55), + }, + [107] = { + [aux_sym_concatenation_repeat1] = STATE(49), + [sym_word] = ACTIONS(844), + [anon_sym_AMP_GT_GT] = ACTIONS(844), + [sym__special_character] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), [sym_raw_string] = ACTIONS(844), - [sym_regex] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(29), + [sym_number] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(844), + [sym__concat] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(844), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_LT_AMP] = ACTIONS(844), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_EQ_TILDE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(844), + [anon_sym_LT_LT_DASH] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [sym_ansii_c_string] = ACTIONS(844), + [anon_sym_LF] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [sym_file_descriptor] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_AMP_GT] = ACTIONS(844), + [anon_sym_EQ_EQ] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(844), + [anon_sym_LT_LT_LT] = ACTIONS(844), + [anon_sym_GT_AMP] = ACTIONS(844), + [ts_builtin_sym_end] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_SEMI_SEMI] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), }, [108] = { - [sym_expansion] = STATE(106), - [sym_string_expansion] = STATE(106), + [sym_expansion] = STATE(189), [sym_concatenation] = STATE(190), - [sym_string] = STATE(106), - [aux_sym__literal_repeat1] = STATE(109), - [sym_command_substitution] = STATE(106), - [sym_process_substitution] = STATE(106), - [sym_simple_expansion] = STATE(106), - [sym_arithmetic_expansion] = STATE(106), - [aux_sym_command_repeat2] = STATE(190), - [anon_sym_AMP_GT_GT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [sym_ansii_c_string] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_LT_AMP] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_EQ_TILDE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(29), - [anon_sym_LT_LT_DASH] = ACTIONS(818), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_number] = ACTIONS(367), - [anon_sym_LF] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [sym_file_descriptor] = ACTIONS(820), - [sym_word] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_AMP_GT] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(369), - [ts_builtin_sym_end] = ACTIONS(820), - [anon_sym_LT_LT_LT] = ACTIONS(818), - [anon_sym_GT_AMP] = ACTIONS(818), - [sym__special_character] = ACTIONS(51), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(375), - [sym_raw_string] = ACTIONS(367), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_SEMI_SEMI] = ACTIONS(818), - [anon_sym_PIPE_AMP] = ACTIONS(818), - }, - [109] = { - [aux_sym__literal_repeat1] = STATE(103), - [anon_sym_AMP_GT_GT] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(848), - [anon_sym_LT_LT] = ACTIONS(848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(848), - [anon_sym_LT_LPAREN] = ACTIONS(848), + [sym_string] = STATE(189), + [sym_command_substitution] = STATE(189), + [sym_process_substitution] = STATE(189), + [aux_sym__literal_repeat1] = STATE(191), + [sym_simple_expansion] = STATE(189), + [sym_arithmetic_expansion] = STATE(189), + [sym_string_expansion] = STATE(189), + [anon_sym_LT_LPAREN] = ACTIONS(45), [sym_ansii_c_string] = ACTIONS(848), - [anon_sym_PIPE_PIPE] = ACTIONS(848), - [anon_sym_PIPE] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(848), - [anon_sym_LT_AMP] = ACTIONS(848), - [anon_sym_GT_GT] = ACTIONS(848), - [anon_sym_EQ_TILDE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(848), - [anon_sym_LT_LT_DASH] = ACTIONS(848), - [anon_sym_GT_LPAREN] = ACTIONS(848), - [sym_number] = ACTIONS(848), - [anon_sym_LF] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(848), - [sym_file_descriptor] = ACTIONS(850), - [sym_word] = ACTIONS(848), - [anon_sym_GT] = ACTIONS(848), - [anon_sym_AMP_GT] = ACTIONS(848), - [anon_sym_EQ_EQ] = ACTIONS(848), - [sym__special_character] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(848), - [anon_sym_GT_AMP] = ACTIONS(848), - [ts_builtin_sym_end] = ACTIONS(850), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(37), + [sym__special_character] = ACTIONS(359), + [anon_sym_BQUOTE] = ACTIONS(15), [sym_raw_string] = ACTIONS(848), - [anon_sym_AMP_AMP] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_SEMI_SEMI] = ACTIONS(848), - [anon_sym_PIPE_AMP] = ACTIONS(848), + [sym_number] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(59), + [sym_regex] = ACTIONS(852), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(29), + [sym_word] = ACTIONS(850), + }, + [109] = { + [sym_expansion] = STATE(107), + [sym_string_expansion] = STATE(107), + [sym_concatenation] = STATE(192), + [sym_string] = STATE(107), + [aux_sym__literal_repeat1] = STATE(110), + [sym_command_substitution] = STATE(107), + [sym_process_substitution] = STATE(107), + [sym_simple_expansion] = STATE(107), + [sym_arithmetic_expansion] = STATE(107), + [aux_sym_command_repeat2] = STATE(192), + [sym_word] = ACTIONS(363), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [sym__special_character] = ACTIONS(13), + [anon_sym_LT_LT] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(367), + [sym_raw_string] = ACTIONS(363), + [sym_number] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(371), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [sym_ansii_c_string] = ACTIONS(363), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(377), + [sym_file_descriptor] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_SEMI_SEMI] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), }, [110] = { - [anon_sym_LT_LT_DASH] = ACTIONS(852), - [anon_sym_AMP_GT_GT] = ACTIONS(852), - [anon_sym_LF] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(852), - [anon_sym_LT_LT] = ACTIONS(852), - [sym_file_descriptor] = ACTIONS(854), - [anon_sym_GT] = ACTIONS(852), - [anon_sym_AMP_GT] = ACTIONS(852), - [anon_sym_PIPE_PIPE] = ACTIONS(852), - [ts_builtin_sym_end] = ACTIONS(854), - [anon_sym_LT_LT_LT] = ACTIONS(852), - [anon_sym_PIPE] = ACTIONS(852), - [anon_sym_GT_AMP] = ACTIONS(852), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_LT_AMP] = ACTIONS(852), - [anon_sym_GT_GT] = ACTIONS(852), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(852), - [anon_sym_SEMI_SEMI] = ACTIONS(852), - [anon_sym_PIPE_AMP] = ACTIONS(852), + [aux_sym__literal_repeat1] = STATE(104), + [sym_word] = ACTIONS(854), + [anon_sym_AMP_GT_GT] = ACTIONS(854), + [sym__special_character] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [sym_raw_string] = ACTIONS(854), + [sym_number] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_AMP] = ACTIONS(854), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_EQ_TILDE] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(854), + [anon_sym_LT_LT_DASH] = ACTIONS(854), + [anon_sym_LT_LPAREN] = ACTIONS(854), + [sym_ansii_c_string] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_file_descriptor] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_AMP_GT] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_LT_LT_LT] = ACTIONS(854), + [anon_sym_GT_AMP] = ACTIONS(854), + [ts_builtin_sym_end] = ACTIONS(856), + [anon_sym_GT_LPAREN] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_SEMI_SEMI] = ACTIONS(854), + [anon_sym_PIPE_AMP] = ACTIONS(854), }, [111] = { + [anon_sym_LT_LT_DASH] = ACTIONS(858), + [anon_sym_AMP_GT_GT] = ACTIONS(858), + [anon_sym_LF] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_LT_LT] = ACTIONS(858), + [sym_file_descriptor] = ACTIONS(860), + [anon_sym_GT] = ACTIONS(858), + [anon_sym_AMP_GT] = ACTIONS(858), + [anon_sym_PIPE_PIPE] = ACTIONS(858), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_LT_LT_LT] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_GT_AMP] = ACTIONS(858), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_LT_AMP] = ACTIONS(858), + [anon_sym_GT_GT] = ACTIONS(858), + [ts_builtin_sym_end] = ACTIONS(860), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(858), + [anon_sym_SEMI_SEMI] = ACTIONS(858), + [anon_sym_PIPE_AMP] = ACTIONS(858), + }, + [112] = { [sym_expansion] = STATE(42), - [sym_concatenation] = STATE(111), - [aux_sym_declaration_command_repeat1] = STATE(111), + [sym_concatenation] = STATE(112), + [aux_sym_declaration_command_repeat1] = STATE(112), [sym_string] = STATE(42), [sym_command_substitution] = STATE(42), [sym_process_substitution] = STATE(42), [aux_sym__literal_repeat1] = STATE(43), - [sym_variable_assignment] = STATE(111), - [sym_subscript] = STATE(2574), + [sym_variable_assignment] = STATE(112), + [sym_subscript] = STATE(2580), [sym_simple_expansion] = STATE(42), [sym_arithmetic_expansion] = STATE(42), [sym_string_expansion] = STATE(42), - [anon_sym_AMP_GT_GT] = ACTIONS(856), - [anon_sym_DQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(861), - [anon_sym_LT_LT] = ACTIONS(856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(864), - [anon_sym_LT_LPAREN] = ACTIONS(867), - [sym_ansii_c_string] = ACTIONS(870), - [anon_sym_PIPE_PIPE] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(856), - [aux_sym__simple_variable_name_token1] = ACTIONS(873), - [anon_sym_LT] = ACTIONS(856), - [anon_sym_LT_AMP] = ACTIONS(856), - [anon_sym_GT_GT] = ACTIONS(856), - [anon_sym_DOLLAR] = ACTIONS(876), - [anon_sym_LT_LT_DASH] = ACTIONS(856), - [anon_sym_GT_LPAREN] = ACTIONS(867), - [sym_number] = ACTIONS(870), + [sym_word] = ACTIONS(862), + [anon_sym_AMP_GT_GT] = ACTIONS(865), + [sym__special_character] = ACTIONS(867), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(870), + [sym_raw_string] = ACTIONS(862), + [sym_number] = ACTIONS(862), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_LT_AMP] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(873), + [anon_sym_LT_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LPAREN] = ACTIONS(876), + [sym_ansii_c_string] = ACTIONS(862), [anon_sym_LF] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(881), [sym_variable_name] = ACTIONS(884), + [aux_sym__simple_variable_name_token1] = ACTIONS(887), [sym_file_descriptor] = ACTIONS(879), - [sym_word] = ACTIONS(870), - [anon_sym_GT] = ACTIONS(856), - [anon_sym_AMP_GT] = ACTIONS(856), - [sym__special_character] = ACTIONS(887), - [anon_sym_LT_LT_LT] = ACTIONS(856), - [anon_sym_GT_AMP] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_AMP_GT] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_LT_LT_LT] = ACTIONS(865), + [anon_sym_GT_AMP] = ACTIONS(865), [ts_builtin_sym_end] = ACTIONS(879), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(890), - [sym_raw_string] = ACTIONS(870), - [anon_sym_AMP_AMP] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [anon_sym_PIPE_AMP] = ACTIONS(856), + [anon_sym_GT_LPAREN] = ACTIONS(876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(896), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_SEMI_SEMI] = ACTIONS(865), + [anon_sym_PIPE_AMP] = ACTIONS(865), }, - [112] = { + [113] = { [sym_expansion] = STATE(45), - [sym_concatenation] = STATE(112), + [sym_concatenation] = STATE(113), [sym_string] = STATE(45), [sym_command_substitution] = STATE(45), [sym_process_substitution] = STATE(45), [aux_sym__literal_repeat1] = STATE(46), - [aux_sym_unset_command_repeat1] = STATE(112), + [aux_sym_unset_command_repeat1] = STATE(113), [sym_simple_expansion] = STATE(45), [sym_arithmetic_expansion] = STATE(45), [sym_string_expansion] = STATE(45), - [anon_sym_AMP_GT_GT] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(904), - [sym_ansii_c_string] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(893), - [aux_sym__simple_variable_name_token1] = ACTIONS(910), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_LT_AMP] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(893), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_LT_LT_DASH] = ACTIONS(893), - [anon_sym_GT_LPAREN] = ACTIONS(904), - [sym_number] = ACTIONS(907), + [sym_word] = ACTIONS(899), + [anon_sym_AMP_GT_GT] = ACTIONS(902), + [sym__special_character] = ACTIONS(904), + [anon_sym_LT_LT] = ACTIONS(902), + [anon_sym_BQUOTE] = ACTIONS(907), + [sym_raw_string] = ACTIONS(899), + [sym_number] = ACTIONS(899), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_PIPE] = ACTIONS(902), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_AMP] = ACTIONS(902), + [anon_sym_GT_GT] = ACTIONS(902), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(910), + [anon_sym_LT_LT_DASH] = ACTIONS(902), + [anon_sym_LT_LPAREN] = ACTIONS(913), + [sym_ansii_c_string] = ACTIONS(899), [anon_sym_LF] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(918), + [aux_sym__simple_variable_name_token1] = ACTIONS(921), [sym_file_descriptor] = ACTIONS(916), - [sym_word] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_AMP_GT] = ACTIONS(893), - [sym__special_character] = ACTIONS(921), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [anon_sym_GT_AMP] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_AMP_GT] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(924), + [anon_sym_LT_LT_LT] = ACTIONS(902), + [anon_sym_GT_AMP] = ACTIONS(902), [ts_builtin_sym_end] = ACTIONS(916), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(924), - [sym_raw_string] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(893), - [anon_sym_SEMI_SEMI] = ACTIONS(893), - [anon_sym_PIPE_AMP] = ACTIONS(893), - }, - [113] = { - [sym__string_content] = ACTIONS(927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(927), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(913), [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(930), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_SEMI_SEMI] = ACTIONS(902), + [anon_sym_PIPE_AMP] = ACTIONS(902), }, [114] = { - [sym__concat] = ACTIONS(929), - [sym__string_content] = ACTIONS(927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(927), - [anon_sym_BQUOTE] = ACTIONS(927), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [115] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_EQ_TILDE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [sym_file_descriptor] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [ts_builtin_sym_end] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [sym_expansion] = STATE(114), + [sym_string_expansion] = STATE(114), + [sym_simple_expansion] = STATE(114), + [sym_string] = STATE(114), + [sym_command_substitution] = STATE(114), + [sym_process_substitution] = STATE(114), + [sym_arithmetic_expansion] = STATE(114), + [sym_number] = ACTIONS(431), + [sym_raw_string] = ACTIONS(433), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_LT_LPAREN] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(37), + [sym_ansii_c_string] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [sym__special_character] = ACTIONS(433), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(59), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(29), + [anon_sym_BQUOTE] = ACTIONS(15), + [sym_word] = ACTIONS(431), }, [116] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), + [aux_sym_concatenation_repeat1] = STATE(116), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(933), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [117] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(937), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(946), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(952), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [118] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(946), }, [119] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_RBRACK_RBRACK] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [anon_sym_LT_LT_DASH] = ACTIONS(948), + [anon_sym_AMP_GT_GT] = ACTIONS(948), + [anon_sym_LF] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_LT_LT] = ACTIONS(948), + [sym_file_descriptor] = ACTIONS(950), + [anon_sym_GT] = ACTIONS(948), + [anon_sym_AMP_GT] = ACTIONS(948), + [anon_sym_PIPE_PIPE] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_LT_LT_LT] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_GT_AMP] = ACTIONS(948), + [anon_sym_LT] = ACTIONS(948), + [anon_sym_LT_AMP] = ACTIONS(948), + [anon_sym_GT_GT] = ACTIONS(948), + [ts_builtin_sym_end] = ACTIONS(950), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(948), + [anon_sym_SEMI_SEMI] = ACTIONS(948), + [anon_sym_PIPE_AMP] = ACTIONS(948), }, [120] = { - [sym_unary_expression] = STATE(195), - [sym_postfix_expression] = STATE(195), - [sym_concatenation] = STATE(195), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(195), - [sym_binary_expression] = STATE(195), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(195), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym_variable_name] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [121] = { - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_RPAREN_RPAREN] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_RBRACK_RBRACK] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(963), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(961), - [sym_test_operator] = ACTIONS(961), + [sym_heredoc_body] = STATE(195), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym_variable_name] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [122] = { - [sym_unary_expression] = STATE(195), - [sym_postfix_expression] = STATE(195), - [sym_concatenation] = STATE(195), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(195), - [sym_binary_expression] = STATE(195), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(195), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_regex] = ACTIONS(965), - [sym_test_operator] = ACTIONS(223), + [anon_sym_LT_LT_DASH] = ACTIONS(956), + [anon_sym_AMP_GT_GT] = ACTIONS(956), + [anon_sym_LF] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_LT_LT] = ACTIONS(956), + [sym_file_descriptor] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_AMP_GT] = ACTIONS(956), + [anon_sym_PIPE_PIPE] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(956), + [anon_sym_LT_LT_LT] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_GT_AMP] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_LT_AMP] = ACTIONS(956), + [anon_sym_GT_GT] = ACTIONS(956), + [ts_builtin_sym_end] = ACTIONS(958), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(956), + [anon_sym_SEMI_SEMI] = ACTIONS(956), + [anon_sym_PIPE_AMP] = ACTIONS(956), }, [123] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [sym_file_descriptor] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [ts_builtin_sym_end] = ACTIONS(969), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [124] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_RBRACK_RBRACK] = ACTIONS(962), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [125] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [sym_file_descriptor] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_AMP_GT] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [ts_builtin_sym_end] = ACTIONS(977), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_LT_LT] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_RPAREN_RPAREN] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), + [anon_sym_RBRACK_RBRACK] = ACTIONS(962), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(962), + [anon_sym_EQ_TILDE] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_LT_EQ] = ACTIONS(962), + [anon_sym_DASH_EQ] = ACTIONS(962), + [anon_sym_BANG_EQ] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(962), + [anon_sym_GT_EQ] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_AMP_AMP] = ACTIONS(962), + [sym_test_operator] = ACTIONS(962), }, [126] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_unary_expression] = STATE(197), + [sym_postfix_expression] = STATE(197), + [sym_concatenation] = STATE(197), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(197), + [sym_binary_expression] = STATE(197), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(197), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [127] = { - [sym_expansion] = STATE(126), - [sym_string_expansion] = STATE(126), - [sym_simple_expansion] = STATE(126), - [sym_string] = STATE(126), - [sym_command_substitution] = STATE(126), - [sym_process_substitution] = STATE(126), - [sym_arithmetic_expansion] = STATE(126), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(19), - [sym_number] = ACTIONS(471), - [sym__special_character] = ACTIONS(473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(15), - [anon_sym_BQUOTE] = ACTIONS(55), - [sym_raw_string] = ACTIONS(473), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [sym_word] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(19), - [anon_sym_DOLLAR] = ACTIONS(983), - [sym_ansii_c_string] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_RPAREN_RPAREN] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_RBRACK_RBRACK] = ACTIONS(966), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(966), + [sym_test_operator] = ACTIONS(966), }, [128] = { - [aux_sym_concatenation_repeat1] = STATE(128), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_unary_expression] = STATE(197), + [sym_postfix_expression] = STATE(197), + [sym_concatenation] = STATE(197), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(197), + [sym_binary_expression] = STATE(197), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(197), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [sym__special_character] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [sym_comment] = ACTIONS(23), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(223), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [sym_regex] = ACTIONS(970), + [sym_word] = ACTIONS(221), }, [129] = { - [anon_sym_RPAREN] = ACTIONS(988), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_EQ_TILDE] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [ts_builtin_sym_end] = ACTIONS(974), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [130] = { - [anon_sym_LT_LT_DASH] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(990), - [sym_file_descriptor] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_LT_LT_LT] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(990), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI_SEMI] = ACTIONS(990), - [anon_sym_PIPE_AMP] = ACTIONS(990), - }, - [131] = { - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(687), - [sym_word] = ACTIONS(687), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), - }, - [132] = { - [sym_heredoc_body] = STATE(199), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(687), - [sym_word] = ACTIONS(687), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(996), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), - }, - [133] = { - [anon_sym_LT_LT_DASH] = ACTIONS(998), - [anon_sym_AMP_GT_GT] = ACTIONS(998), - [anon_sym_LF] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_LT_LT] = ACTIONS(998), - [sym_file_descriptor] = ACTIONS(1000), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_AMP_GT] = ACTIONS(998), - [anon_sym_PIPE_PIPE] = ACTIONS(998), - [ts_builtin_sym_end] = ACTIONS(1000), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_GT_AMP] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_LT_AMP] = ACTIONS(998), - [anon_sym_GT_GT] = ACTIONS(998), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI_SEMI] = ACTIONS(998), - [anon_sym_PIPE_AMP] = ACTIONS(998), - }, - [134] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_elif_clause] = STATE(207), - [sym_else_clause] = STATE(205), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(206), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [aux_sym_if_statement_repeat1] = STATE(207), + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_elif_clause] = STATE(206), + [sym_else_clause] = STATE(204), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(205), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [aux_sym_if_statement_repeat1] = STATE(206), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_fi] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1004), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(976), + [anon_sym_else] = ACTIONS(978), + [sym_raw_string] = ACTIONS(75), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_elif] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_elif] = ACTIONS(980), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [sym_word] = ACTIONS(113), + }, + [131] = { + [sym_comment] = ACTIONS(23), + [anon_sym_then] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + }, + [132] = { + [sym_comment] = ACTIONS(23), + [anon_sym_in] = ACTIONS(984), + }, + [133] = { + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_LF] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_SEMI_SEMI] = ACTIONS(986), + [sym_comment] = ACTIONS(3), + }, + [134] = { + [sym_comment] = ACTIONS(23), + [anon_sym_in] = ACTIONS(990), }, [135] = { - [anon_sym_do] = ACTIONS(1008), - [anon_sym_then] = ACTIONS(1008), - [sym_comment] = ACTIONS(53), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_LF] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_SEMI_SEMI] = ACTIONS(992), + [sym_comment] = ACTIONS(3), }, [136] = { - [anon_sym_in] = ACTIONS(1010), - [sym_comment] = ACTIONS(53), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_AMP_GT_GT] = ACTIONS(996), + [anon_sym_LF] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(996), + [sym_file_descriptor] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(996), + [anon_sym_AMP_GT] = ACTIONS(996), + [anon_sym_PIPE_PIPE] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_GT_AMP] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(996), + [anon_sym_LT_AMP] = ACTIONS(996), + [anon_sym_GT_GT] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(998), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(996), + [anon_sym_SEMI_SEMI] = ACTIONS(996), + [anon_sym_PIPE_AMP] = ACTIONS(996), }, [137] = { + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_SEMI_SEMI] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), + [sym__string_content] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1000), + [anon_sym_BQUOTE] = ACTIONS(1000), }, [138] = { - [anon_sym_in] = ACTIONS(1016), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [139] = { + [anon_sym_DOLLAR] = ACTIONS(1000), + [sym__concat] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1000), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_SEMI_SEMI] = ACTIONS(1020), - [anon_sym_AMP] = ACTIONS(1020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), + [sym__string_content] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1000), + [anon_sym_BQUOTE] = ACTIONS(1000), }, [140] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1022), - [anon_sym_AMP_GT_GT] = ACTIONS(1022), - [anon_sym_LF] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_LT_LT] = ACTIONS(1022), - [sym_file_descriptor] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1022), - [anon_sym_AMP_GT] = ACTIONS(1022), - [anon_sym_PIPE_PIPE] = ACTIONS(1022), - [ts_builtin_sym_end] = ACTIONS(1024), - [anon_sym_LT_LT_LT] = ACTIONS(1022), - [anon_sym_PIPE] = ACTIONS(1022), - [anon_sym_GT_AMP] = ACTIONS(1022), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_LT_AMP] = ACTIONS(1022), - [anon_sym_GT_GT] = ACTIONS(1022), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI_SEMI] = ACTIONS(1022), - [anon_sym_PIPE_AMP] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [141] = { - [aux_sym_concatenation_repeat1] = STATE(924), - [anon_sym_COLON_DASH] = ACTIONS(1026), - [anon_sym_GT_LPAREN] = ACTIONS(1028), - [sym_number] = ACTIONS(1026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_QMARK] = ACTIONS(1026), - [anon_sym_EQ] = ACTIONS(1026), - [sym_ansii_c_string] = ACTIONS(1028), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(1028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1026), - [sym__special_character] = ACTIONS(1026), - [anon_sym_LT_LPAREN] = ACTIONS(1028), - [sym_word] = ACTIONS(1026), - [sym__concat] = ACTIONS(1030), - [anon_sym_PERCENT] = ACTIONS(1026), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1028), - [sym_raw_string] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1026), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1013), + [sym__string_content] = ACTIONS(1016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1019), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1022), + [anon_sym_BQUOTE] = ACTIONS(1025), }, [142] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(217), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(217), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [143] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(214), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(214), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_PERCENT] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(1042), + [aux_sym_concatenation_repeat1] = STATE(929), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [sym__concat] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [ts_builtin_sym_end] = ACTIONS(1054), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), }, [144] = { - [aux_sym__literal_repeat1] = STATE(929), - [anon_sym_COLON_DASH] = ACTIONS(1044), - [anon_sym_GT_LPAREN] = ACTIONS(1046), - [sym_number] = ACTIONS(1044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_COLON_QMARK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1044), - [sym_ansii_c_string] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), - [sym__special_character] = ACTIONS(1048), - [anon_sym_LT_LPAREN] = ACTIONS(1046), - [sym_word] = ACTIONS(1044), - [anon_sym_PERCENT] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1046), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1044), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [ts_builtin_sym_end] = ACTIONS(1054), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), }, [145] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(935), + [sym_word] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1056), + [sym__special_character] = ACTIONS(1058), + [anon_sym_LT_LT] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [sym_raw_string] = ACTIONS(1056), + [sym_number] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_LT_AMP] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(1056), + [anon_sym_LT_LPAREN] = ACTIONS(1056), + [sym_ansii_c_string] = ACTIONS(1056), + [anon_sym_LF] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_variable_name] = ACTIONS(1060), + [sym_file_descriptor] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_LT_LT_LT] = ACTIONS(1056), + [anon_sym_GT_AMP] = ACTIONS(1056), + [ts_builtin_sym_end] = ACTIONS(1060), + [anon_sym_GT_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_SEMI_SEMI] = ACTIONS(1056), + [anon_sym_PIPE_AMP] = ACTIONS(1056), }, [146] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(214), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(214), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1036), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1036), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_PERCENT] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym_concatenation_repeat1] = STATE(962), + [anon_sym_RBRACK] = ACTIONS(1062), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1064), }, [147] = { - [anon_sym_EQ] = ACTIONS(1056), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_RBRACK] = ACTIONS(1062), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1066), }, [148] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(220), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(220), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1058), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_PERCENT] = ACTIONS(1058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(968), + [anon_sym_RBRACK] = ACTIONS(1068), + [sym__concat] = ACTIONS(1070), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1072), }, [149] = { - [sym_expansion] = STATE(221), - [sym_concatenation] = STATE(222), - [sym_string] = STATE(221), - [sym_command_substitution] = STATE(221), - [sym_process_substitution] = STATE(221), - [aux_sym__literal_repeat1] = STATE(223), - [sym_simple_expansion] = STATE(221), - [sym_arithmetic_expansion] = STATE(221), - [sym_string_expansion] = STATE(221), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(1068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), + [aux_sym_concatenation_repeat1] = STATE(564), + [anon_sym_AMP_GT_GT] = ACTIONS(1074), + [sym__special_character] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [sym_raw_string] = ACTIONS(1074), + [sym_number] = ACTIONS(1076), + [sym__concat] = ACTIONS(387), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_LT_AMP] = ACTIONS(1074), + [anon_sym_GT_GT] = ACTIONS(1074), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1040), - [sym_word] = ACTIONS(1068), + [anon_sym_LT_LPAREN] = ACTIONS(1074), + [sym_ansii_c_string] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_variable_name] = ACTIONS(1074), + [sym_file_descriptor] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_AMP_GT] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_GT_AMP] = ACTIONS(1074), + [anon_sym_GT_LPAREN] = ACTIONS(1074), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(1078), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), + [sym_word] = ACTIONS(1076), }, [150] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_EQ_TILDE] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [sym_file_descriptor] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_AMP_GT] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [ts_builtin_sym_end] = ACTIONS(1088), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [anon_sym_AMP_GT_GT] = ACTIONS(1074), + [sym__special_character] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [sym_raw_string] = ACTIONS(1074), + [sym_number] = ACTIONS(1076), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_LT_AMP] = ACTIONS(1074), + [anon_sym_GT_GT] = ACTIONS(1074), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [anon_sym_LT_LPAREN] = ACTIONS(1074), + [sym_ansii_c_string] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_variable_name] = ACTIONS(1074), + [sym_file_descriptor] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_AMP_GT] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_GT_AMP] = ACTIONS(1074), + [anon_sym_GT_LPAREN] = ACTIONS(1074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1074), + [sym_word] = ACTIONS(1076), }, [151] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(226), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(226), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1090), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1090), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1090), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_PERCENT] = ACTIONS(1090), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(1096), + [aux_sym__literal_repeat1] = STATE(580), + [anon_sym_AMP_GT_GT] = ACTIONS(1078), + [sym__special_character] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(1078), + [sym_raw_string] = ACTIONS(1078), + [sym_number] = ACTIONS(1080), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1078), + [anon_sym_LT_LPAREN] = ACTIONS(1078), + [sym_ansii_c_string] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_variable_name] = ACTIONS(1078), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1078), + [anon_sym_GT_LPAREN] = ACTIONS(1078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [sym_word] = ACTIONS(1080), }, [152] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [153] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(230), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(230), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(1108), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [154] = { - [aux_sym_concatenation_repeat1] = STATE(957), - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [sym__concat] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), - [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [sym_file_descriptor] = ACTIONS(1124), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_GT_AMP] = ACTIONS(1120), - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), + [sym_do_group] = STATE(223), + [sym_comment] = ACTIONS(23), + [anon_sym_do] = ACTIONS(633), }, [155] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), + [sym_expansion] = STATE(488), + [sym_concatenation] = STATE(224), + [sym_string] = STATE(488), + [sym_command_substitution] = STATE(488), + [sym_process_substitution] = STATE(488), + [aux_sym__literal_repeat1] = STATE(490), + [aux_sym_for_statement_repeat1] = STATE(224), + [sym_simple_expansion] = STATE(488), + [sym_arithmetic_expansion] = STATE(488), + [sym_string_expansion] = STATE(488), + [sym_number] = ACTIONS(1086), + [sym_word] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1088), + [sym_ansii_c_string] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1092), + [anon_sym_LT_LPAREN] = ACTIONS(1094), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1098), + [anon_sym_GT_LPAREN] = ACTIONS(1094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1090), + }, + [156] = { + [sym_expansion] = STATE(565), + [sym_unary_expression] = STATE(226), + [sym_postfix_expression] = STATE(226), + [sym_concatenation] = STATE(226), + [sym_string] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym_parenthesized_expression] = STATE(226), + [aux_sym__literal_repeat1] = STATE(568), + [sym_simple_expansion] = STATE(565), + [sym__expression] = STATE(226), + [sym_binary_expression] = STATE(226), + [sym_arithmetic_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_LT_LPAREN] = ACTIONS(607), + [sym_ansii_c_string] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(611), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(615), + [aux_sym_unary_expression_token1] = ACTIONS(617), + [sym__special_character] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(623), + [sym_raw_string] = ACTIONS(609), + [sym_number] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(625), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), + [sym_test_operator] = ACTIONS(615), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(631), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [sym_word] = ACTIONS(609), + }, + [157] = { + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + }, + [158] = { + [anon_sym_BANG_EQ] = ACTIONS(1112), + [anon_sym_PLUS_EQ] = ACTIONS(1112), + [anon_sym_DASH_EQ] = ACTIONS(1112), + [anon_sym_LF] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1116), + [anon_sym_PIPE_PIPE] = ACTIONS(1112), + [anon_sym_GT_EQ] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_EQ_TILDE] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1112), + [anon_sym_SEMI_SEMI] = ACTIONS(1108), + [sym_test_operator] = ACTIONS(1112), + }, + [159] = { + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(229), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_done] = ACTIONS(1118), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), + }, + [160] = { [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), + [anon_sym_AMP_GT_GT] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1122), [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [sym_file_descriptor] = ACTIONS(1124), - [sym_word] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1120), + [sym_file_descriptor] = ACTIONS(1122), [anon_sym_GT] = ACTIONS(1120), [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), [anon_sym_GT_AMP] = ACTIONS(1120), - [ts_builtin_sym_end] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_AMP] = ACTIONS(1120), + [anon_sym_GT_GT] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1122), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), [anon_sym_SEMI_SEMI] = ACTIONS(1120), [anon_sym_PIPE_AMP] = ACTIONS(1120), }, - [156] = { - [aux_sym__literal_repeat1] = STATE(962), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), + [161] = { + [aux_sym_concatenation_repeat1] = STATE(1028), + [anon_sym_COLON_QMARK] = ACTIONS(1124), [anon_sym_LT_LPAREN] = ACTIONS(1126), [sym_ansii_c_string] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(1126), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [anon_sym_POUND] = ACTIONS(1126), + [sym__special_character] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_COLON] = ACTIONS(1124), + [anon_sym_EQ] = ACTIONS(1124), + [sym_raw_string] = ACTIONS(1126), + [anon_sym_PERCENT] = ACTIONS(1124), + [sym_number] = ACTIONS(1124), + [anon_sym_BQUOTE] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1124), + [sym__concat] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1124), [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_number] = ACTIONS(1126), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1124), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), - [sym_variable_name] = ACTIONS(1128), - [sym_file_descriptor] = ACTIONS(1128), - [sym_word] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1126), - [sym__special_character] = ACTIONS(1130), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [ts_builtin_sym_end] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1126), - [sym_raw_string] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), - }, - [157] = { - [aux_sym_concatenation_repeat1] = STATE(990), - [anon_sym_RBRACK] = ACTIONS(1132), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1134), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), + [sym_word] = ACTIONS(1124), }, - [158] = { - [anon_sym_RBRACK] = ACTIONS(1132), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1136), + [162] = { + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_EQ_TILDE] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [ts_builtin_sym_end] = ACTIONS(1132), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, - [159] = { - [aux_sym__literal_repeat1] = STATE(995), - [anon_sym_RBRACK] = ACTIONS(1138), - [sym__special_character] = ACTIONS(1140), - [sym__concat] = ACTIONS(1142), - [sym_comment] = ACTIONS(53), + [163] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(232), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(232), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1134), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1136), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PERCENT] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1134), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(1140), + [sym_word] = ACTIONS(659), }, - [160] = { - [aux_sym_concatenation_repeat1] = STATE(564), - [anon_sym_AMP_GT_GT] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1144), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1146), + [164] = { + [aux_sym__literal_repeat1] = STATE(1034), + [anon_sym_COLON_QMARK] = ACTIONS(1142), [anon_sym_LT_LPAREN] = ACTIONS(1144), [sym_ansii_c_string] = ACTIONS(1144), - [sym__concat] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_LT_AMP] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(1146), - [anon_sym_GT_LPAREN] = ACTIONS(1144), - [sym_number] = ACTIONS(1146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1144), - [sym_variable_name] = ACTIONS(1144), - [sym_file_descriptor] = ACTIONS(1144), - [sym_word] = ACTIONS(1146), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_RPAREN] = ACTIONS(1144), - [anon_sym_AMP_GT] = ACTIONS(1146), - [sym__special_character] = ACTIONS(1144), - [anon_sym_GT_AMP] = ACTIONS(1144), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1144), - [sym_raw_string] = ACTIONS(1144), - }, - [161] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1144), [anon_sym_DQUOTE] = ACTIONS(1144), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1144), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1146), - [anon_sym_LT_LPAREN] = ACTIONS(1144), - [sym_ansii_c_string] = ACTIONS(1144), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_LT_AMP] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(1146), + [anon_sym_POUND] = ACTIONS(1144), + [sym__special_character] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_COLON] = ACTIONS(1142), + [anon_sym_EQ] = ACTIONS(1142), + [sym_raw_string] = ACTIONS(1144), + [anon_sym_PERCENT] = ACTIONS(1142), + [sym_number] = ACTIONS(1142), + [anon_sym_BQUOTE] = ACTIONS(1144), + [anon_sym_DOLLAR] = ACTIONS(1142), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1142), [anon_sym_GT_LPAREN] = ACTIONS(1144), - [sym_number] = ACTIONS(1146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1142), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1144), - [sym_variable_name] = ACTIONS(1144), - [sym_file_descriptor] = ACTIONS(1144), - [sym_word] = ACTIONS(1146), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_RPAREN] = ACTIONS(1144), - [anon_sym_AMP_GT] = ACTIONS(1146), - [sym__special_character] = ACTIONS(1144), - [anon_sym_GT_AMP] = ACTIONS(1144), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1144), - [sym_raw_string] = ACTIONS(1144), - }, - [162] = { - [aux_sym__literal_repeat1] = STATE(575), - [anon_sym_AMP_GT_GT] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1150), - [anon_sym_LT_LPAREN] = ACTIONS(1148), - [sym_ansii_c_string] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_LT_AMP] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1150), - [anon_sym_GT_LPAREN] = ACTIONS(1148), - [sym_number] = ACTIONS(1150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1148), - [sym_variable_name] = ACTIONS(1148), - [sym_file_descriptor] = ACTIONS(1148), - [sym_word] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_AMP_GT] = ACTIONS(1150), - [sym__special_character] = ACTIONS(389), - [anon_sym_GT_AMP] = ACTIONS(1148), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1148), - [sym_raw_string] = ACTIONS(1148), - }, - [163] = { - [sym_compound_statement] = STATE(236), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(53), - }, - [164] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1144), + [sym_word] = ACTIONS(1142), }, [165] = { - [sym_expansion] = STATE(488), - [sym_concatenation] = STATE(237), - [sym_string] = STATE(488), - [sym_command_substitution] = STATE(488), - [sym_process_substitution] = STATE(488), - [aux_sym__literal_repeat1] = STATE(489), - [aux_sym_for_statement_repeat1] = STATE(237), - [sym_simple_expansion] = STATE(488), - [sym_arithmetic_expansion] = STATE(488), - [sym_string_expansion] = STATE(488), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1152), - [sym__special_character] = ACTIONS(1154), - [sym_number] = ACTIONS(1156), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1162), - [sym_raw_string] = ACTIONS(1164), - [sym_word] = ACTIONS(1156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), - [anon_sym_BQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1170), - [sym_ansii_c_string] = ACTIONS(1164), - [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [166] = { - [sym_do_group] = STATE(238), - [sym_comment] = ACTIONS(53), - [anon_sym_do] = ACTIONS(677), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_EQ_TILDE] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_EQ_EQ] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(1154), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [167] = { - [sym_expansion] = STATE(561), - [sym_unary_expression] = STATE(240), - [sym_postfix_expression] = STATE(240), - [sym_concatenation] = STATE(240), - [sym_string] = STATE(561), - [sym_command_substitution] = STATE(561), - [sym_process_substitution] = STATE(561), - [sym_parenthesized_expression] = STATE(240), - [aux_sym__literal_repeat1] = STATE(563), - [sym_simple_expansion] = STATE(561), - [sym__expression] = STATE(240), - [sym_binary_expression] = STATE(240), - [sym_arithmetic_expansion] = STATE(561), - [sym_string_expansion] = STATE(561), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_GT_LPAREN] = ACTIONS(653), - [sym_number] = ACTIONS(655), - [anon_sym_LF] = ACTIONS(1172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1172), - [sym_word] = ACTIONS(655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_LT_LPAREN] = ACTIONS(653), - [sym_ansii_c_string] = ACTIONS(655), - [sym__special_character] = ACTIONS(671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(673), - [sym_raw_string] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(1172), - [sym_test_operator] = ACTIONS(661), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(236), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(236), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1156), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1158), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_PERCENT] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1156), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1156), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(1162), + [sym_word] = ACTIONS(659), }, [168] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_SEMI_SEMI] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [169] = { - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1178), - [anon_sym_SEMI_SEMI] = ACTIONS(1176), - [anon_sym_DASH_EQ] = ACTIONS(1178), - [anon_sym_LF] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1178), - [anon_sym_EQ_TILDE] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [sym_test_operator] = ACTIONS(1178), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(232), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(232), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1134), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1136), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PERCENT] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(1164), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1134), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [170] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(243), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(67), - [anon_sym_typeset] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_done] = ACTIONS(1184), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(240), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(240), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1166), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1168), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_EQ] = ACTIONS(1166), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1166), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1166), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [171] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1186), - [anon_sym_AMP_GT_GT] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [sym_file_descriptor] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_AMP_GT] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [ts_builtin_sym_end] = ACTIONS(1188), - [anon_sym_LT_LT_LT] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_GT_AMP] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_LT_AMP] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_SEMI_SEMI] = ACTIONS(1186), - [anon_sym_PIPE_AMP] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(1174), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), }, [172] = { - [sym_heredoc_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [anon_sym_LT_LT_DASH] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1190), - [sym_file_descriptor] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [ts_builtin_sym_end] = ACTIONS(1192), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_GT_AMP] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_AMP] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI_SEMI] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), + [sym_expansion] = STATE(242), + [sym_concatenation] = STATE(243), + [sym_string] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__literal_repeat1] = STATE(244), + [sym_simple_expansion] = STATE(242), + [sym_arithmetic_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(1178), + [sym_number] = ACTIONS(1186), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(1186), }, [173] = { - [sym_heredoc_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [anon_sym_AMP_GT_GT] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_AMP] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(1190), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(1192), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_AMP_GT] = ACTIONS(1190), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_GT_AMP] = ACTIONS(1190), - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI_SEMI] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), + [sym_compound_statement] = STATE(245), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), }, [174] = { - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1194), - [anon_sym_LF] = ACTIONS(1194), + [sym_heredoc_redirect] = STATE(99), + [sym_file_redirect] = STATE(99), + [sym_herestring_redirect] = STATE(99), + [aux_sym_redirected_statement_repeat1] = STATE(99), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LF] = ACTIONS(1198), [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), }, [175] = { - [sym_expansion] = STATE(246), - [aux_sym_heredoc_body_repeat1] = STATE(246), - [sym_simple_expansion] = STATE(246), - [sym_command_substitution] = STATE(246), - [anon_sym_BQUOTE] = ACTIONS(1198), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), - [sym__heredoc_body_end] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(1204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [sym__heredoc_body_middle] = ACTIONS(1208), + [sym_heredoc_redirect] = STATE(99), + [sym_file_redirect] = STATE(99), + [sym_herestring_redirect] = STATE(99), + [aux_sym_redirected_statement_repeat1] = STATE(99), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [ts_builtin_sym_end] = ACTIONS(1198), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), }, [176] = { + [anon_sym_AMP] = ACTIONS(1200), + [ts_builtin_sym_end] = ACTIONS(1202), + [anon_sym_LF] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_SEMI_SEMI] = ACTIONS(1200), [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1210), - [anon_sym_LF] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_SEMI_SEMI] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), }, [177] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1216), - [anon_sym_AMP_GT_GT] = ACTIONS(1216), - [anon_sym_LF] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_LT_LT] = ACTIONS(1216), - [sym_file_descriptor] = ACTIONS(1218), - [anon_sym_GT] = ACTIONS(1216), - [anon_sym_AMP_GT] = ACTIONS(1216), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), - [ts_builtin_sym_end] = ACTIONS(1218), - [anon_sym_LT_LT_LT] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_GT_AMP] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_LT_AMP] = ACTIONS(1216), - [anon_sym_GT_GT] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(1216), + [sym_expansion] = STATE(248), + [aux_sym_heredoc_body_repeat1] = STATE(248), + [sym_simple_expansion] = STATE(248), + [sym_command_substitution] = STATE(248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [sym__heredoc_body_end] = ACTIONS(1210), + [anon_sym_BQUOTE] = ACTIONS(1212), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1214), }, [178] = { - [sym_heredoc_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [anon_sym_AMP_GT_GT] = ACTIONS(1220), - [anon_sym_LF] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_LT_LT] = ACTIONS(1220), - [sym_file_descriptor] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [ts_builtin_sym_end] = ACTIONS(1222), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(341), - [anon_sym_GT_AMP] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_LT_AMP] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(1216), + [ts_builtin_sym_end] = ACTIONS(1218), + [anon_sym_LF] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), }, [179] = { - [sym_heredoc_redirect] = STATE(98), - [sym_file_redirect] = STATE(98), - [sym_herestring_redirect] = STATE(98), - [aux_sym_redirected_statement_repeat1] = STATE(98), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(1222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(1220), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(341), + [anon_sym_LT_LT_DASH] = ACTIONS(1222), + [anon_sym_AMP_GT_GT] = ACTIONS(1222), + [anon_sym_LF] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [sym_file_descriptor] = ACTIONS(1224), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_AMP_GT] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_LT_LT_LT] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_GT_AMP] = ACTIONS(1222), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_LT_AMP] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_SEMI_SEMI] = ACTIONS(1222), + [anon_sym_PIPE_AMP] = ACTIONS(1222), }, [180] = { - [aux_sym_concatenation_repeat1] = STATE(1056), - [anon_sym_LT_LT_DASH] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1224), - [sym_file_descriptor] = ACTIONS(1226), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [ts_builtin_sym_end] = ACTIONS(1226), - [anon_sym_LT_LT_LT] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [sym__concat] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), + [sym_heredoc_redirect] = STATE(99), + [sym_file_redirect] = STATE(99), + [sym_herestring_redirect] = STATE(99), + [aux_sym_redirected_statement_repeat1] = STATE(99), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_AMP_GT_GT] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LT_LT] = ACTIONS(1226), + [sym_file_descriptor] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_AMP_GT] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_LT_AMP] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1226), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(345), }, [181] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1224), - [sym_file_descriptor] = ACTIONS(1226), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [ts_builtin_sym_end] = ACTIONS(1226), - [anon_sym_LT_LT_LT] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), + [sym_heredoc_redirect] = STATE(99), + [sym_file_redirect] = STATE(99), + [sym_herestring_redirect] = STATE(99), + [aux_sym_redirected_statement_repeat1] = STATE(99), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(345), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_GT_AMP] = ACTIONS(347), + [ts_builtin_sym_end] = ACTIONS(1228), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(345), }, [182] = { - [aux_sym__literal_repeat1] = STATE(1061), + [aux_sym_concatenation_repeat1] = STATE(1061), [anon_sym_LT_LT_DASH] = ACTIONS(1230), [anon_sym_AMP_GT_GT] = ACTIONS(1230), [anon_sym_LF] = ACTIONS(1232), @@ -12991,550 +12925,535 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1230), [anon_sym_AMP_GT] = ACTIONS(1230), [anon_sym_PIPE_PIPE] = ACTIONS(1230), - [ts_builtin_sym_end] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1230), [anon_sym_LT_LT_LT] = ACTIONS(1230), [anon_sym_PIPE] = ACTIONS(1230), [anon_sym_GT_AMP] = ACTIONS(1230), [anon_sym_LT] = ACTIONS(1230), [anon_sym_LT_AMP] = ACTIONS(1230), [anon_sym_GT_GT] = ACTIONS(1230), - [sym__special_character] = ACTIONS(1234), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym__concat] = ACTIONS(1234), [sym_comment] = ACTIONS(3), [anon_sym_AMP_AMP] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), [anon_sym_SEMI_SEMI] = ACTIONS(1230), [anon_sym_PIPE_AMP] = ACTIONS(1230), }, [183] = { - [sym_heredoc_redirect] = STATE(183), - [sym_file_redirect] = STATE(183), - [sym_herestring_redirect] = STATE(183), - [aux_sym_redirected_statement_repeat1] = STATE(183), - [anon_sym_LT_LT_DASH] = ACTIONS(1236), - [anon_sym_AMP_GT_GT] = ACTIONS(1239), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1236), - [sym_file_descriptor] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_AMP_GT] = ACTIONS(1239), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [ts_builtin_sym_end] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_GT_AMP] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_LT_AMP] = ACTIONS(1239), - [anon_sym_GT_GT] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI_SEMI] = ACTIONS(1244), - [anon_sym_PIPE_AMP] = ACTIONS(1244), + [anon_sym_LT_LT_DASH] = ACTIONS(1230), + [anon_sym_AMP_GT_GT] = ACTIONS(1230), + [anon_sym_LF] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_LT_LT] = ACTIONS(1230), + [sym_file_descriptor] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_AMP_GT] = ACTIONS(1230), + [anon_sym_PIPE_PIPE] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_LT_LT_LT] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_GT_AMP] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_AMP] = ACTIONS(1230), + [anon_sym_GT_GT] = ACTIONS(1230), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1230), + [anon_sym_SEMI_SEMI] = ACTIONS(1230), + [anon_sym_PIPE_AMP] = ACTIONS(1230), }, [184] = { - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [ts_builtin_sym_end] = ACTIONS(1210), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [aux_sym__literal_repeat1] = STATE(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(1236), + [anon_sym_AMP_GT_GT] = ACTIONS(1236), + [anon_sym_LF] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1236), + [sym__special_character] = ACTIONS(1240), + [anon_sym_LT_LT] = ACTIONS(1236), + [sym_file_descriptor] = ACTIONS(1238), + [anon_sym_GT] = ACTIONS(1236), + [anon_sym_AMP_GT] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_LT_LT_LT] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_GT_AMP] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_AMP] = ACTIONS(1236), + [anon_sym_GT_GT] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_SEMI_SEMI] = ACTIONS(1236), + [anon_sym_PIPE_AMP] = ACTIONS(1236), }, [185] = { - [sym_heredoc_body] = STATE(248), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [ts_builtin_sym_end] = ACTIONS(1210), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [sym_heredoc_redirect] = STATE(185), + [sym_file_redirect] = STATE(185), + [sym_herestring_redirect] = STATE(185), + [aux_sym_redirected_statement_repeat1] = STATE(185), + [anon_sym_LT_LT_DASH] = ACTIONS(1242), + [anon_sym_AMP_GT_GT] = ACTIONS(1245), + [anon_sym_LF] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_LT_LT] = ACTIONS(1242), + [sym_file_descriptor] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_AMP_GT] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_LT_LT_LT] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_GT_AMP] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_LT_AMP] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1250), + [anon_sym_SEMI_SEMI] = ACTIONS(1250), + [anon_sym_PIPE_AMP] = ACTIONS(1250), }, [186] = { - [sym_expansion] = STATE(106), - [sym_string_expansion] = STATE(106), - [sym_concatenation] = STATE(190), - [sym_string] = STATE(106), - [aux_sym__literal_repeat1] = STATE(109), - [sym_command_substitution] = STATE(106), - [sym_process_substitution] = STATE(106), - [sym_simple_expansion] = STATE(106), - [sym_arithmetic_expansion] = STATE(106), - [aux_sym_command_repeat2] = STATE(190), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(17), - [anon_sym_LT_LPAREN] = ACTIONS(365), - [sym_ansii_c_string] = ACTIONS(367), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(29), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(365), - [sym_number] = ACTIONS(367), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [sym_file_descriptor] = ACTIONS(1254), - [sym_word] = ACTIONS(367), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(369), - [ts_builtin_sym_end] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [sym__special_character] = ACTIONS(51), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(375), - [sym_raw_string] = ACTIONS(367), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [ts_builtin_sym_end] = ACTIONS(1218), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [187] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(1256), - [sym_ansii_c_string] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(1256), - [sym_number] = ACTIONS(1256), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), - [sym_file_descriptor] = ACTIONS(1258), - [sym_word] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [sym__special_character] = ACTIONS(1256), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1256), - [sym_raw_string] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), + [sym_heredoc_body] = STATE(250), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(697), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [ts_builtin_sym_end] = ACTIONS(1218), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [188] = { - [aux_sym_concatenation_repeat1] = STATE(61), - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(1256), - [sym_ansii_c_string] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [sym__concat] = ACTIONS(227), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(1256), - [sym_number] = ACTIONS(1256), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), - [sym_file_descriptor] = ACTIONS(1258), - [sym_word] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [sym__special_character] = ACTIONS(1256), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1256), - [sym_raw_string] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), + [sym_expansion] = STATE(107), + [sym_string_expansion] = STATE(107), + [sym_concatenation] = STATE(192), + [sym_string] = STATE(107), + [aux_sym__literal_repeat1] = STATE(110), + [sym_command_substitution] = STATE(107), + [sym_process_substitution] = STATE(107), + [sym_simple_expansion] = STATE(107), + [sym_arithmetic_expansion] = STATE(107), + [aux_sym_command_repeat2] = STATE(192), + [sym_word] = ACTIONS(363), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [sym__special_character] = ACTIONS(13), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(367), + [sym_raw_string] = ACTIONS(363), + [sym_number] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_EQ_TILDE] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(371), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(373), + [sym_ansii_c_string] = ACTIONS(363), + [anon_sym_LF] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(377), + [sym_file_descriptor] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(1260), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_GT_AMP] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_GT_LPAREN] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_SEMI_SEMI] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1258), }, [189] = { - [aux_sym__literal_repeat1] = STATE(103), - [anon_sym_AMP_GT_GT] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1260), - [anon_sym_LT_LPAREN] = ACTIONS(1260), - [sym_ansii_c_string] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_LT_AMP] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_EQ_TILDE] = ACTIONS(1260), - [anon_sym_DOLLAR] = ACTIONS(1260), - [anon_sym_LT_LT_DASH] = ACTIONS(1260), - [anon_sym_GT_LPAREN] = ACTIONS(1260), - [sym_number] = ACTIONS(1260), - [anon_sym_LF] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), - [sym_file_descriptor] = ACTIONS(1262), - [sym_word] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_AMP_GT] = ACTIONS(1260), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [sym__special_character] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(1260), - [anon_sym_GT_AMP] = ACTIONS(1260), - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1260), - [sym_raw_string] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI_SEMI] = ACTIONS(1260), - [anon_sym_PIPE_AMP] = ACTIONS(1260), + [aux_sym_concatenation_repeat1] = STATE(49), + [sym_word] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [sym_raw_string] = ACTIONS(1262), + [sym_number] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [sym__concat] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1262), + [sym_ansii_c_string] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [ts_builtin_sym_end] = ACTIONS(1264), + [anon_sym_GT_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), }, [190] = { - [sym_expansion] = STATE(106), - [sym_string_expansion] = STATE(106), - [sym_concatenation] = STATE(190), - [sym_string] = STATE(106), - [aux_sym__literal_repeat1] = STATE(109), - [sym_command_substitution] = STATE(106), - [sym_process_substitution] = STATE(106), - [sym_simple_expansion] = STATE(106), - [sym_arithmetic_expansion] = STATE(106), - [aux_sym_command_repeat2] = STATE(190), - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1267), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1273), - [sym_ansii_c_string] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(1273), - [sym_number] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1285), - [sym_file_descriptor] = ACTIONS(1258), - [sym_word] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1279), - [sym__special_character] = ACTIONS(1288), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1291), - [sym_raw_string] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), + [sym_word] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [sym_raw_string] = ACTIONS(1262), + [sym_number] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1262), + [sym_ansii_c_string] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [ts_builtin_sym_end] = ACTIONS(1264), + [anon_sym_GT_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), }, [191] = { - [sym__string_content] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), + [aux_sym__literal_repeat1] = STATE(104), + [sym_word] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [sym__special_character] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [sym_raw_string] = ACTIONS(1266), + [sym_number] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [anon_sym_LT_LPAREN] = ACTIONS(1266), + [sym_ansii_c_string] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_file_descriptor] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [ts_builtin_sym_end] = ACTIONS(1268), + [anon_sym_GT_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), }, [192] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [sym_expansion] = STATE(107), + [sym_string_expansion] = STATE(107), + [sym_concatenation] = STATE(192), + [sym_string] = STATE(107), + [aux_sym__literal_repeat1] = STATE(110), + [sym_command_substitution] = STATE(107), + [sym_process_substitution] = STATE(107), + [sym_simple_expansion] = STATE(107), + [sym_arithmetic_expansion] = STATE(107), + [aux_sym_command_repeat2] = STATE(192), + [sym_word] = ACTIONS(1270), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1276), + [sym_raw_string] = ACTIONS(1270), + [sym_number] = ACTIONS(1270), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1282), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1285), + [sym_ansii_c_string] = ACTIONS(1270), + [anon_sym_LF] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1291), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [ts_builtin_sym_end] = ACTIONS(1264), + [anon_sym_GT_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), }, [193] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), - }, - [194] = { - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [sym_string] = STATE(80), + [sym_word] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(281), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(281), + [sym__special_character] = ACTIONS(1300), [anon_sym_LT_LT] = ACTIONS(1300), [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(1304), + [sym_number] = ACTIONS(1300), [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), [anon_sym_GT_GT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), [anon_sym_EQ_TILDE] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [sym_file_descriptor] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(281), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(281), + [anon_sym_AMP_GT] = ACTIONS(1300), [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1302), - [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(1302), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), [anon_sym_AMP_AMP] = ACTIONS(1300), - [sym_test_operator] = ACTIONS(1300), - }, - [195] = { - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [sym_test_operator] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, - [196] = { - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [sym_test_operator] = ACTIONS(1304), + [194] = { + [sym_compound_statement] = STATE(251), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), }, - [197] = { - [sym_string] = STATE(69), - [anon_sym_0] = ACTIONS(237), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(361), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(237), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym__] = ACTIONS(237), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1310), - [sym_file_descriptor] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(237), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1308), + [195] = { [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_LF] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1308), [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_compound_statement] = STATE(249), - [anon_sym_LBRACE] = ACTIONS(25), - [sym_comment] = ACTIONS(53), + [196] = { + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1312), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1312), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1314), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [sym_test_operator] = ACTIONS(1312), }, - [199] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_SEMI_SEMI] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), + [197] = { + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_LT_LT] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1316), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_RPAREN] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [sym_test_operator] = ACTIONS(1316), }, - [200] = { + [198] = { + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_LT_LT] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1316), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_RPAREN] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [sym_test_operator] = ACTIONS(1316), + }, + [199] = { [anon_sym_LT_LT_DASH] = ACTIONS(1320), [anon_sym_AMP_GT_GT] = ACTIONS(1320), [anon_sym_LF] = ACTIONS(1322), @@ -13544,2611 +13463,2650 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1320), [anon_sym_AMP_GT] = ACTIONS(1320), [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [ts_builtin_sym_end] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1320), [anon_sym_LT_LT_LT] = ACTIONS(1320), [anon_sym_PIPE] = ACTIONS(1320), [anon_sym_GT_AMP] = ACTIONS(1320), [anon_sym_LT] = ACTIONS(1320), [anon_sym_LT_AMP] = ACTIONS(1320), [anon_sym_GT_GT] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1322), [sym_comment] = ACTIONS(3), [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), [anon_sym_SEMI_SEMI] = ACTIONS(1320), [anon_sym_PIPE_AMP] = ACTIONS(1320), }, - [201] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(251), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [200] = { + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(253), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), + [sym__special_character] = ACTIONS(71), [anon_sym_fi] = ACTIONS(1324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [202] = { - [sym__terminated_statement] = STATE(252), - [sym_if_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_negated_command] = STATE(71), - [sym_test_command] = STATE(71), - [sym_variable_assignment] = STATE(72), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_compound_statement] = STATE(71), - [sym_subshell] = STATE(71), - [sym_declaration_command] = STATE(71), - [sym_unset_command] = STATE(71), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_case_statement] = STATE(71), - [sym_pipeline] = STATE(71), - [sym_list] = STATE(71), - [sym_command] = STATE(71), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [201] = { + [sym__terminated_statement] = STATE(254), + [sym_if_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_variable_assignment] = STATE(64), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_compound_statement] = STATE(63), + [sym_subshell] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), + }, + [202] = { + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LF] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1326), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_AMP_GT] = ACTIONS(451), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(1326), + [anon_sym_PIPE_AMP] = ACTIONS(449), }, [203] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_LF] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1328), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(1328), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1326), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(1326), + [anon_sym_PIPE_AMP] = ACTIONS(449), }, [204] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(1326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(1328), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(1328), - [anon_sym_PIPE_AMP] = ACTIONS(487), - }, - [205] = { - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), [anon_sym_fi] = ACTIONS(1330), }, - [206] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_elif_clause] = STATE(258), - [sym_else_clause] = STATE(256), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(257), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [aux_sym_if_statement_repeat1] = STATE(258), + [205] = { + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_elif_clause] = STATE(260), + [sym_else_clause] = STATE(258), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(259), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [aux_sym_if_statement_repeat1] = STATE(260), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [sym__special_character] = ACTIONS(71), [anon_sym_fi] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1004), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_else] = ACTIONS(978), + [sym_raw_string] = ACTIONS(75), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_elif] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_BQUOTE] = ACTIONS(105), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_elif] = ACTIONS(980), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [sym_word] = ACTIONS(113), }, - [207] = { - [sym_elif_clause] = STATE(259), - [aux_sym_if_statement_repeat1] = STATE(259), - [sym_else_clause] = STATE(256), + [206] = { + [sym_elif_clause] = STATE(261), + [aux_sym_if_statement_repeat1] = STATE(261), + [sym_else_clause] = STATE(258), [anon_sym_elif] = ACTIONS(1334), [anon_sym_fi] = ACTIONS(1330), + [sym_comment] = ACTIONS(23), [anon_sym_else] = ACTIONS(1336), - [sym_comment] = ACTIONS(53), }, - [208] = { + [207] = { + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_LF] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_SEMI_SEMI] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), }, - [209] = { - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(263), - [sym_string_expansion] = STATE(262), - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [aux_sym__literal_repeat1] = STATE(265), - [sym_last_case_item] = STATE(266), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(263), - [sym_arithmetic_expansion] = STATE(262), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), + [208] = { + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(265), + [sym_string_expansion] = STATE(263), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [aux_sym__literal_repeat1] = STATE(267), + [sym_last_case_item] = STATE(268), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(265), + [sym_arithmetic_expansion] = STATE(263), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), [anon_sym_esac] = ACTIONS(1348), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, - [210] = { + [209] = { + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_LF] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_SEMI_SEMI] = ACTIONS(1350), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_SEMI_SEMI] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), }, - [211] = { - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(269), - [sym_string_expansion] = STATE(262), - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [aux_sym__literal_repeat1] = STATE(265), - [sym_last_case_item] = STATE(270), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(269), - [sym_arithmetic_expansion] = STATE(262), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), + [210] = { + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(271), + [sym_string_expansion] = STATE(263), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [aux_sym__literal_repeat1] = STATE(267), + [sym_last_case_item] = STATE(272), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(271), + [sym_arithmetic_expansion] = STATE(263), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), [anon_sym_esac] = ACTIONS(1354), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, - [212] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [211] = { + [anon_sym_DOLLAR] = ACTIONS(1356), [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), + [sym__string_content] = ACTIONS(1356), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + }, + [212] = { + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), }, [213] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(272), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(272), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1360), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1360), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [214] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym_concatenation_repeat1] = STATE(1160), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [sym_ansii_c_string] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym__special_character] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [sym_raw_string] = ACTIONS(1362), + [sym_number] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [sym__concat] = ACTIONS(1366), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1362), + [sym_word] = ACTIONS(1364), }, [215] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1366), - [anon_sym_GT_LPAREN] = ACTIONS(1369), - [sym_number] = ACTIONS(1372), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_COLON_QMARK] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1366), - [sym_ansii_c_string] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1389), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1392), - [sym__special_character] = ACTIONS(1395), - [anon_sym_LT_LPAREN] = ACTIONS(1369), - [sym_word] = ACTIONS(1372), - [anon_sym_PERCENT] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1398), - [sym_raw_string] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1401), + [sym_word] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1368), + [sym_number] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [sym_ansii_c_string] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_variable_name] = ACTIONS(1370), + [sym_file_descriptor] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [ts_builtin_sym_end] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), }, [216] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(272), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(272), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1360), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1360), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(1404), + [aux_sym__literal_repeat1] = STATE(1166), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [sym_ansii_c_string] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym__special_character] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [sym_raw_string] = ACTIONS(1372), + [sym_number] = ACTIONS(1376), + [anon_sym_DOLLAR] = ACTIONS(1376), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1376), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1372), + [sym_word] = ACTIONS(1376), }, [217] = { - [sym_expansion] = STATE(274), - [sym_concatenation] = STATE(275), - [sym_string] = STATE(274), - [sym_command_substitution] = STATE(274), - [sym_process_substitution] = STATE(274), - [aux_sym__literal_repeat1] = STATE(276), - [sym_simple_expansion] = STATE(274), - [sym_arithmetic_expansion] = STATE(274), - [sym_string_expansion] = STATE(274), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(1406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1364), - [sym_word] = ACTIONS(1406), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(1408), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(1408), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(274), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(274), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [218] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [sym_file_descriptor] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_AMP_GT] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [anon_sym_PLUS_EQ] = ACTIONS(1380), + [sym__concat] = ACTIONS(1382), + [anon_sym_EQ] = ACTIONS(1380), + [sym_comment] = ACTIONS(23), }, [219] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(279), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(279), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1414), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1414), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PERCENT] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(1420), + [sym_expansion] = STATE(969), + [sym_string_expansion] = STATE(969), + [sym_simple_expansion] = STATE(969), + [sym_string] = STATE(969), + [sym_command_substitution] = STATE(969), + [sym_process_substitution] = STATE(969), + [sym_arithmetic_expansion] = STATE(969), + [anon_sym_LT_LPAREN] = ACTIONS(567), + [sym_ansii_c_string] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(565), + [sym__special_character] = ACTIONS(1386), + [anon_sym_RBRACK] = ACTIONS(1388), + [anon_sym_BQUOTE] = ACTIONS(575), + [sym_raw_string] = ACTIONS(1384), + [sym_number] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(561), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(567), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [sym_word] = ACTIONS(1386), }, [220] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_RBRACK] = ACTIONS(1388), + [sym_comment] = ACTIONS(23), }, [221] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1364), - [sym__concat] = ACTIONS(1422), + [anon_sym_PLUS_EQ] = ACTIONS(1390), + [sym__concat] = ACTIONS(1392), + [anon_sym_EQ] = ACTIONS(1390), + [sym_comment] = ACTIONS(23), }, [222] = { - [anon_sym_RBRACE] = ACTIONS(1364), - [sym_comment] = ACTIONS(53), + [anon_sym_RBRACK] = ACTIONS(1394), + [sym_comment] = ACTIONS(23), }, [223] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [224] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_EQ_TILDE] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [ts_builtin_sym_end] = ACTIONS(1430), + [sym_expansion] = STATE(488), + [sym_concatenation] = STATE(508), + [sym_string] = STATE(488), + [sym_command_substitution] = STATE(488), + [sym_process_substitution] = STATE(488), + [aux_sym__literal_repeat1] = STATE(490), + [aux_sym_for_statement_repeat1] = STATE(508), + [sym_simple_expansion] = STATE(488), + [sym_arithmetic_expansion] = STATE(488), + [sym_string_expansion] = STATE(488), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1402), + [anon_sym_LF] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1406), + [sym__special_character] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_DOLLAR] = ACTIONS(1088), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1414), + [anon_sym_SEMI_SEMI] = ACTIONS(1406), + [sym_word] = ACTIONS(1086), }, [225] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(282), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(282), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1432), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(281), + [sym_postfix_expression] = STATE(281), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(281), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(281), + [sym_binary_expression] = STATE(281), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [226] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(1112), + [anon_sym_PLUS_EQ] = ACTIONS(1112), + [anon_sym_DASH_EQ] = ACTIONS(1112), + [anon_sym_LF] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1116), + [anon_sym_PIPE_PIPE] = ACTIONS(1112), + [anon_sym_GT_EQ] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_EQ_TILDE] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1112), + [anon_sym_SEMI_SEMI] = ACTIONS(1418), + [sym_test_operator] = ACTIONS(1112), }, [227] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LPAREN] = ACTIONS(1438), - [sym_ansii_c_string] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LT_AMP] = ACTIONS(1438), - [anon_sym_GT_GT] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1438), - [anon_sym_LT_LT_DASH] = ACTIONS(1438), - [anon_sym_GT_LPAREN] = ACTIONS(1438), - [sym_number] = ACTIONS(1438), - [anon_sym_LF] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), - [sym_variable_name] = ACTIONS(1440), - [sym_file_descriptor] = ACTIONS(1440), - [sym_word] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_AMP_GT] = ACTIONS(1438), - [sym__special_character] = ACTIONS(1438), - [anon_sym_LT_LT_LT] = ACTIONS(1438), - [anon_sym_GT_AMP] = ACTIONS(1438), - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_raw_string] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI_SEMI] = ACTIONS(1438), - [anon_sym_PIPE_AMP] = ACTIONS(1438), + [sym_expansion] = STATE(565), + [sym_unary_expression] = STATE(283), + [sym_postfix_expression] = STATE(283), + [sym_concatenation] = STATE(283), + [sym_string] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym_parenthesized_expression] = STATE(283), + [aux_sym__literal_repeat1] = STATE(568), + [sym_simple_expansion] = STATE(565), + [sym__expression] = STATE(283), + [sym_binary_expression] = STATE(283), + [sym_arithmetic_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_LT_LPAREN] = ACTIONS(607), + [sym_ansii_c_string] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(611), + [anon_sym_LF] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(615), + [aux_sym_unary_expression_token1] = ACTIONS(617), + [sym__special_character] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_BQUOTE] = ACTIONS(623), + [sym_raw_string] = ACTIONS(609), + [sym_number] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_DOLLAR] = ACTIONS(625), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), + [sym_test_operator] = ACTIONS(615), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(631), + [anon_sym_SEMI_SEMI] = ACTIONS(1418), + [sym_word] = ACTIONS(609), }, [228] = { - [aux_sym_concatenation_repeat1] = STATE(1188), - [anon_sym_GT_LPAREN] = ACTIONS(1442), - [sym_number] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1442), - [anon_sym_RPAREN] = ACTIONS(1442), - [sym_word] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1444), - [anon_sym_LT_LPAREN] = ACTIONS(1442), - [sym_ansii_c_string] = ACTIONS(1442), - [sym__special_character] = ACTIONS(1442), - [sym__concat] = ACTIONS(1446), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1442), - [sym_raw_string] = ACTIONS(1442), - [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_LT_LT_DASH] = ACTIONS(1420), + [anon_sym_AMP_GT_GT] = ACTIONS(1420), + [anon_sym_LF] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LT_LT] = ACTIONS(1420), + [sym_file_descriptor] = ACTIONS(1422), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_AMP_GT] = ACTIONS(1420), + [anon_sym_PIPE_PIPE] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_LT_LT_LT] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_GT_AMP] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_LT_AMP] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_SEMI_SEMI] = ACTIONS(1420), + [anon_sym_PIPE_AMP] = ACTIONS(1420), }, [229] = { - [aux_sym__literal_repeat1] = STATE(1193), - [anon_sym_GT_LPAREN] = ACTIONS(1448), - [sym_number] = ACTIONS(1450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [sym_word] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_LT_LPAREN] = ACTIONS(1448), - [sym_ansii_c_string] = ACTIONS(1448), - [sym__special_character] = ACTIONS(1452), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1448), - [sym_raw_string] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1450), + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(259), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_done] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [230] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(284), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(284), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(1454), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_EQ_TILDE] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_EQ_EQ] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), }, [231] = { - [anon_sym_PLUS_EQ] = ACTIONS(1456), - [sym__concat] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1456), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(286), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(286), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1430), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1432), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1430), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1430), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [232] = { - [sym_expansion] = STATE(1000), - [sym_string_expansion] = STATE(1000), - [sym_simple_expansion] = STATE(1000), - [sym_string] = STATE(1000), - [sym_command_substitution] = STATE(1000), - [sym_process_substitution] = STATE(1000), - [sym_arithmetic_expansion] = STATE(1000), - [anon_sym_GT_LPAREN] = ACTIONS(617), - [sym_number] = ACTIONS(1460), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(1462), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), - [sym_word] = ACTIONS(1460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), - [anon_sym_LT_LPAREN] = ACTIONS(617), - [sym_ansii_c_string] = ACTIONS(1464), - [sym__special_character] = ACTIONS(1460), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(633), - [sym_raw_string] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(635), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [233] = { - [anon_sym_RBRACK] = ACTIONS(1462), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1436), + [anon_sym_LT_LPAREN] = ACTIONS(1439), + [sym_ansii_c_string] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1448), + [sym__special_character] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_COLON] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [sym_raw_string] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1436), + [sym_number] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1459), + [anon_sym_DOLLAR] = ACTIONS(1462), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1436), + [anon_sym_GT_LPAREN] = ACTIONS(1439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1465), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1468), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1471), + [sym_word] = ACTIONS(1456), }, [234] = { - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [sym__concat] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1466), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_EQ_TILDE] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [ts_builtin_sym_end] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [235] = { - [anon_sym_RBRACK] = ACTIONS(1470), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(288), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(288), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1478), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1480), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1478), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [236] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1472), - [anon_sym_AMP_GT_GT] = ACTIONS(1472), - [anon_sym_LF] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_LT_LT] = ACTIONS(1472), - [sym_file_descriptor] = ACTIONS(1474), - [anon_sym_GT] = ACTIONS(1472), - [anon_sym_AMP_GT] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [ts_builtin_sym_end] = ACTIONS(1474), - [anon_sym_LT_LT_LT] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_GT_AMP] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_LT_AMP] = ACTIONS(1472), - [anon_sym_GT_GT] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_SEMI_SEMI] = ACTIONS(1472), - [anon_sym_PIPE_AMP] = ACTIONS(1472), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [237] = { - [sym_expansion] = STATE(488), - [sym_concatenation] = STATE(508), - [sym_string] = STATE(488), - [sym_command_substitution] = STATE(488), - [sym_process_substitution] = STATE(488), - [aux_sym__literal_repeat1] = STATE(489), - [aux_sym_for_statement_repeat1] = STATE(508), - [sym_simple_expansion] = STATE(488), - [sym_arithmetic_expansion] = STATE(488), - [sym_string_expansion] = STATE(488), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1156), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), - [sym_word] = ACTIONS(1156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1156), - [sym__special_character] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1490), - [sym_raw_string] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1170), - [anon_sym_SEMI_SEMI] = ACTIONS(1482), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(286), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(286), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1430), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1432), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1430), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1430), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(1484), + [sym_word] = ACTIONS(659), }, [238] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1492), - [anon_sym_AMP_GT_GT] = ACTIONS(1492), - [anon_sym_LF] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_LT_LT] = ACTIONS(1492), - [sym_file_descriptor] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_AMP_GT] = ACTIONS(1492), - [anon_sym_PIPE_PIPE] = ACTIONS(1492), - [ts_builtin_sym_end] = ACTIONS(1494), - [anon_sym_LT_LT_LT] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_GT_AMP] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_AMP] = ACTIONS(1492), - [anon_sym_GT_GT] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_SEMI_SEMI] = ACTIONS(1492), - [anon_sym_PIPE_AMP] = ACTIONS(1492), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_EQ_TILDE] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [ts_builtin_sym_end] = ACTIONS(1488), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [239] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(291), - [sym_postfix_expression] = STATE(291), - [sym_concatenation] = STATE(291), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(291), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(291), - [sym_binary_expression] = STATE(291), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1496), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(292), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(292), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1490), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1492), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1490), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(1496), + [sym_word] = ACTIONS(659), }, [240] = { - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1178), - [anon_sym_SEMI_SEMI] = ACTIONS(1498), - [anon_sym_DASH_EQ] = ACTIONS(1178), - [anon_sym_LF] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1178), - [anon_sym_EQ_TILDE] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [sym_test_operator] = ACTIONS(1178), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [241] = { - [sym_expansion] = STATE(561), - [sym_unary_expression] = STATE(293), - [sym_postfix_expression] = STATE(293), - [sym_concatenation] = STATE(293), - [sym_string] = STATE(561), - [sym_command_substitution] = STATE(561), - [sym_process_substitution] = STATE(561), - [sym_parenthesized_expression] = STATE(293), - [aux_sym__literal_repeat1] = STATE(563), - [sym_simple_expansion] = STATE(561), - [sym__expression] = STATE(293), - [sym_binary_expression] = STATE(293), - [sym_arithmetic_expansion] = STATE(561), - [sym_string_expansion] = STATE(561), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_GT_LPAREN] = ACTIONS(653), - [sym_number] = ACTIONS(655), - [anon_sym_LF] = ACTIONS(1498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1498), - [sym_word] = ACTIONS(655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_LT_LPAREN] = ACTIONS(653), - [sym_ansii_c_string] = ACTIONS(655), - [sym__special_character] = ACTIONS(671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(673), - [sym_raw_string] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(1498), - [sym_test_operator] = ACTIONS(661), + [sym_expansion] = STATE(293), + [sym_concatenation] = STATE(294), + [sym_string] = STATE(293), + [sym_command_substitution] = STATE(293), + [sym_process_substitution] = STATE(293), + [aux_sym__literal_repeat1] = STATE(295), + [sym_simple_expansion] = STATE(293), + [sym_arithmetic_expansion] = STATE(293), + [sym_string_expansion] = STATE(293), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(1498), + [sym_number] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(1500), }, [242] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1500), - [anon_sym_AMP_GT_GT] = ACTIONS(1500), - [anon_sym_LF] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1500), - [sym_file_descriptor] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1500), - [anon_sym_AMP_GT] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [ts_builtin_sym_end] = ACTIONS(1502), - [anon_sym_LT_LT_LT] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_GT_AMP] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_LT_AMP] = ACTIONS(1500), - [anon_sym_GT_GT] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SEMI_SEMI] = ACTIONS(1500), - [anon_sym_PIPE_AMP] = ACTIONS(1500), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1434), + [sym__concat] = ACTIONS(1502), }, [243] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(257), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(67), - [anon_sym_typeset] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_done] = ACTIONS(1504), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1434), }, [244] = { - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1506), - [anon_sym_LF] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_SEMI_SEMI] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1504), + [sym__special_character] = ACTIONS(1506), }, [245] = { - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_0] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1514), - [aux_sym__simple_variable_name_token1] = ACTIONS(1512), - [anon_sym__] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(1514), + [anon_sym_LT_LT_DASH] = ACTIONS(1508), + [anon_sym_AMP_GT_GT] = ACTIONS(1508), + [anon_sym_LF] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_LT_LT] = ACTIONS(1508), + [sym_file_descriptor] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_AMP_GT] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_LT_LT_LT] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_GT_AMP] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_LT_AMP] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1508), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1508), + [anon_sym_SEMI_SEMI] = ACTIONS(1508), + [anon_sym_PIPE_AMP] = ACTIONS(1508), }, [246] = { - [sym_expansion] = STATE(296), - [aux_sym_heredoc_body_repeat1] = STATE(296), - [sym_simple_expansion] = STATE(296), - [sym_command_substitution] = STATE(296), - [anon_sym_BQUOTE] = ACTIONS(1198), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), - [sym__heredoc_body_end] = ACTIONS(1516), - [anon_sym_DOLLAR] = ACTIONS(1204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [sym__heredoc_body_middle] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_AT] = ACTIONS(1512), + [sym_comment] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_0] = ACTIONS(1516), + [aux_sym__simple_variable_name_token1] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym__] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1512), }, [247] = { - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_typeset] = ACTIONS(1520), - [anon_sym_unsetenv] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1522), - [sym_ansii_c_string] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), - [sym_number] = ACTIONS(1520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_declare] = ACTIONS(1520), - [anon_sym_GT_LPAREN] = ACTIONS(1522), - [sym_file_descriptor] = ACTIONS(1522), - [sym_word] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), - [sym_variable_name] = ACTIONS(1522), - [anon_sym_AMP_GT] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_unset] = ACTIONS(1520), - [ts_builtin_sym_end] = ACTIONS(1524), - [sym__special_character] = ACTIONS(1520), - [anon_sym_GT_AMP] = ACTIONS(1522), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [sym_raw_string] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_LF] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_SEMI_SEMI] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), }, [248] = { - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1524), - [anon_sym_LF] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_SEMI_SEMI] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), + [sym_expansion] = STATE(298), + [aux_sym_heredoc_body_repeat1] = STATE(298), + [sym_simple_expansion] = STATE(298), + [sym_command_substitution] = STATE(298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [sym__heredoc_body_end] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1212), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1524), }, [249] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1530), - [anon_sym_AMP_GT_GT] = ACTIONS(1530), - [anon_sym_LF] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1530), - [sym_file_descriptor] = ACTIONS(1532), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_AMP_GT] = ACTIONS(1530), - [anon_sym_PIPE_PIPE] = ACTIONS(1530), - [ts_builtin_sym_end] = ACTIONS(1532), - [anon_sym_LT_LT_LT] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_GT_AMP] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_LT_AMP] = ACTIONS(1530), - [anon_sym_GT_GT] = ACTIONS(1530), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_SEMI_SEMI] = ACTIONS(1530), - [anon_sym_PIPE_AMP] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_AMP_GT_GT] = ACTIONS(1528), + [anon_sym_local] = ACTIONS(1526), + [anon_sym_typeset] = ACTIONS(1526), + [anon_sym_unsetenv] = ACTIONS(1526), + [sym__special_character] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1528), + [sym_raw_string] = ACTIONS(1528), + [sym_number] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_LT_AMP] = ACTIONS(1528), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_ansii_c_string] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_declare] = ACTIONS(1526), + [anon_sym_LT_LPAREN] = ACTIONS(1528), + [sym_file_descriptor] = ACTIONS(1528), + [sym_variable_name] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_AMP_GT] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_unset] = ACTIONS(1526), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_GT_AMP] = ACTIONS(1528), + [anon_sym_GT_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [sym_word] = ACTIONS(1526), }, [250] = { - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_typeset] = ACTIONS(1520), - [anon_sym_unsetenv] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1522), - [sym_ansii_c_string] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), - [sym_number] = ACTIONS(1520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_declare] = ACTIONS(1520), - [anon_sym_GT_LPAREN] = ACTIONS(1522), - [sym_file_descriptor] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [sym_word] = ACTIONS(1520), - [anon_sym_AMP_GT] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [sym_variable_name] = ACTIONS(1522), - [anon_sym_unset] = ACTIONS(1520), - [sym__special_character] = ACTIONS(1520), - [anon_sym_GT_AMP] = ACTIONS(1522), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [sym_raw_string] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1532), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_LF] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_SEMI_SEMI] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), }, [251] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(257), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [anon_sym_LT_LT_DASH] = ACTIONS(1536), + [anon_sym_AMP_GT_GT] = ACTIONS(1536), + [anon_sym_LF] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1536), + [sym_file_descriptor] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_AMP_GT] = ACTIONS(1536), + [anon_sym_PIPE_PIPE] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_LT_LT_LT] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_GT_AMP] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_AMP] = ACTIONS(1536), + [anon_sym_GT_GT] = ACTIONS(1536), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1536), + [anon_sym_SEMI_SEMI] = ACTIONS(1536), + [anon_sym_PIPE_AMP] = ACTIONS(1536), + }, + [252] = { + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_AMP_GT_GT] = ACTIONS(1528), + [anon_sym_local] = ACTIONS(1526), + [anon_sym_typeset] = ACTIONS(1526), + [anon_sym_unsetenv] = ACTIONS(1526), + [sym__special_character] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1528), + [sym_raw_string] = ACTIONS(1528), + [sym_number] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_LT_AMP] = ACTIONS(1528), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_ansii_c_string] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_declare] = ACTIONS(1526), + [anon_sym_LT_LPAREN] = ACTIONS(1528), + [sym_file_descriptor] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1526), + [sym_variable_name] = ACTIONS(1528), + [anon_sym_AMP_GT] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_unset] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_GT_AMP] = ACTIONS(1528), + [anon_sym_GT_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [sym_word] = ACTIONS(1526), + }, + [253] = { + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(259), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_fi] = ACTIONS(1534), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [252] = { - [anon_sym_then] = ACTIONS(1536), - [sym_comment] = ACTIONS(53), - }, - [253] = { - [sym_heredoc_body] = STATE(299), - [anon_sym_AMP_GT_GT] = ACTIONS(1538), - [anon_sym_typeset] = ACTIONS(1540), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1540), - [anon_sym_done] = ACTIONS(1540), - [anon_sym_LT_LPAREN] = ACTIONS(1538), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_LT_AMP] = ACTIONS(1538), - [anon_sym_export] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_GT_LPAREN] = ACTIONS(1538), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1538), - [anon_sym_declare] = ACTIONS(1540), - [sym_variable_name] = ACTIONS(1538), - [sym_word] = ACTIONS(1540), - [sym__heredoc_body_beginning] = ACTIONS(996), - [anon_sym_readonly] = ACTIONS(1540), - [anon_sym_unset] = ACTIONS(1540), - [sym__special_character] = ACTIONS(1540), - [anon_sym_GT_AMP] = ACTIONS(1538), - [sym_comment] = ACTIONS(53), - [anon_sym_elif] = ACTIONS(1540), - [sym_raw_string] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_local] = ACTIONS(1540), - [anon_sym_unsetenv] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_fi] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1540), - [sym_ansii_c_string] = ACTIONS(1538), - [anon_sym_function] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1538), - [anon_sym_case] = ACTIONS(1540), - [sym_number] = ACTIONS(1540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1538), - [anon_sym_BANG] = ACTIONS(1540), - [sym_file_descriptor] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_AMP_GT] = ACTIONS(1540), - [anon_sym_BQUOTE] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [254] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1538), - [anon_sym_typeset] = ACTIONS(1540), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1540), - [anon_sym_done] = ACTIONS(1540), - [anon_sym_LT_LPAREN] = ACTIONS(1538), - [anon_sym_LT_AMP] = ACTIONS(1538), - [anon_sym_export] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_GT_LPAREN] = ACTIONS(1538), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1538), - [anon_sym_declare] = ACTIONS(1540), - [sym_variable_name] = ACTIONS(1538), - [sym_word] = ACTIONS(1540), - [anon_sym_readonly] = ACTIONS(1540), - [anon_sym_unset] = ACTIONS(1540), - [sym__special_character] = ACTIONS(1540), - [anon_sym_GT_AMP] = ACTIONS(1538), - [sym_comment] = ACTIONS(53), - [anon_sym_elif] = ACTIONS(1540), - [sym_raw_string] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_local] = ACTIONS(1540), - [anon_sym_unsetenv] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_fi] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1540), - [sym_ansii_c_string] = ACTIONS(1538), - [anon_sym_function] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1538), - [anon_sym_case] = ACTIONS(1540), - [sym_number] = ACTIONS(1540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1538), - [anon_sym_BANG] = ACTIONS(1540), - [sym_file_descriptor] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_AMP_GT] = ACTIONS(1540), - [anon_sym_BQUOTE] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [sym_comment] = ACTIONS(23), + [anon_sym_then] = ACTIONS(1542), }, [255] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1542), - [anon_sym_AMP_GT_GT] = ACTIONS(1542), - [anon_sym_LF] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1542), + [sym_heredoc_body] = STATE(301), + [anon_sym_AMP_GT_GT] = ACTIONS(1544), + [anon_sym_typeset] = ACTIONS(1546), + [anon_sym_done] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1544), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_LT_AMP] = ACTIONS(1544), + [anon_sym_export] = ACTIONS(1546), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_LT_LPAREN] = ACTIONS(1544), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1546), + [sym_variable_name] = ACTIONS(1544), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_readonly] = ACTIONS(1546), + [anon_sym_unset] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_GT_AMP] = ACTIONS(1544), + [anon_sym_GT_LPAREN] = ACTIONS(1544), + [anon_sym_elif] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [sym_word] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_local] = ACTIONS(1546), + [anon_sym_unsetenv] = ACTIONS(1546), + [sym__special_character] = ACTIONS(1546), + [anon_sym_fi] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1546), + [sym_raw_string] = ACTIONS(1544), + [sym_number] = ACTIONS(1546), + [anon_sym_function] = ACTIONS(1546), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_case] = ACTIONS(1546), + [sym_ansii_c_string] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1546), [sym_file_descriptor] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_AMP_GT] = ACTIONS(1542), - [anon_sym_PIPE_PIPE] = ACTIONS(1542), - [ts_builtin_sym_end] = ACTIONS(1544), - [anon_sym_LT_LT_LT] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_GT_AMP] = ACTIONS(1542), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_AMP] = ACTIONS(1542), - [anon_sym_GT_GT] = ACTIONS(1542), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_SEMI_SEMI] = ACTIONS(1542), - [anon_sym_PIPE_AMP] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_AMP_GT] = ACTIONS(1546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1544), }, [256] = { - [sym_comment] = ACTIONS(53), + [anon_sym_AMP_GT_GT] = ACTIONS(1544), + [anon_sym_typeset] = ACTIONS(1546), + [anon_sym_done] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1544), + [anon_sym_LT_AMP] = ACTIONS(1544), + [anon_sym_export] = ACTIONS(1546), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_LT_LPAREN] = ACTIONS(1544), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [anon_sym_declare] = ACTIONS(1546), + [sym_variable_name] = ACTIONS(1544), + [anon_sym_readonly] = ACTIONS(1546), + [anon_sym_unset] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_GT_AMP] = ACTIONS(1544), + [anon_sym_GT_LPAREN] = ACTIONS(1544), + [anon_sym_elif] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [sym_word] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_local] = ACTIONS(1546), + [anon_sym_unsetenv] = ACTIONS(1546), + [sym__special_character] = ACTIONS(1546), [anon_sym_fi] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1546), + [sym_raw_string] = ACTIONS(1544), + [sym_number] = ACTIONS(1546), + [anon_sym_function] = ACTIONS(1546), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_case] = ACTIONS(1546), + [sym_ansii_c_string] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1546), + [sym_file_descriptor] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_AMP_GT] = ACTIONS(1546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1544), }, [257] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(257), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [anon_sym_LT_LT_DASH] = ACTIONS(1548), [anon_sym_AMP_GT_GT] = ACTIONS(1548), - [anon_sym_typeset] = ACTIONS(1551), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1554), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1557), - [anon_sym_done] = ACTIONS(1540), - [anon_sym_LT_LPAREN] = ACTIONS(1560), - [anon_sym_LT_AMP] = ACTIONS(1548), - [anon_sym_export] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_GT_LPAREN] = ACTIONS(1560), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1551), - [sym_variable_name] = ACTIONS(1572), - [sym_word] = ACTIONS(1575), - [anon_sym_readonly] = ACTIONS(1551), - [anon_sym_unset] = ACTIONS(1578), - [sym__special_character] = ACTIONS(1581), + [anon_sym_LF] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_LT_LT] = ACTIONS(1548), + [sym_file_descriptor] = ACTIONS(1550), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_AMP_GT] = ACTIONS(1548), + [anon_sym_PIPE_PIPE] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_LT_LT_LT] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), [anon_sym_GT_AMP] = ACTIONS(1548), - [sym_comment] = ACTIONS(53), - [anon_sym_elif] = ACTIONS(1540), - [sym_raw_string] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_local] = ACTIONS(1551), - [anon_sym_unsetenv] = ACTIONS(1578), - [anon_sym_DQUOTE] = ACTIONS(1593), - [anon_sym_fi] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1540), - [sym_ansii_c_string] = ACTIONS(1584), - [anon_sym_function] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_AMP] = ACTIONS(1548), [anon_sym_GT_GT] = ACTIONS(1548), - [anon_sym_case] = ACTIONS(1605), - [sym_number] = ACTIONS(1608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1614), - [sym_file_descriptor] = ACTIONS(1617), - [anon_sym_GT] = ACTIONS(1602), - [anon_sym_AMP_GT] = ACTIONS(1602), - [anon_sym_BQUOTE] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1629), + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1548), + [anon_sym_SEMI_SEMI] = ACTIONS(1548), + [anon_sym_PIPE_AMP] = ACTIONS(1548), }, [258] = { - [sym_elif_clause] = STATE(259), - [aux_sym_if_statement_repeat1] = STATE(259), - [sym_else_clause] = STATE(301), - [anon_sym_elif] = ACTIONS(1334), - [anon_sym_fi] = ACTIONS(1546), - [anon_sym_else] = ACTIONS(1336), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(1552), }, [259] = { - [sym_elif_clause] = STATE(259), - [aux_sym_if_statement_repeat1] = STATE(259), - [anon_sym_elif] = ACTIONS(1632), - [anon_sym_fi] = ACTIONS(1635), - [anon_sym_else] = ACTIONS(1635), - [sym_comment] = ACTIONS(53), + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(259), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_AMP_GT_GT] = ACTIONS(1554), + [anon_sym_typeset] = ACTIONS(1557), + [anon_sym_done] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1560), + [anon_sym_LT_AMP] = ACTIONS(1554), + [anon_sym_export] = ACTIONS(1557), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_LT_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_declare] = ACTIONS(1557), + [sym_variable_name] = ACTIONS(1578), + [anon_sym_readonly] = ACTIONS(1557), + [anon_sym_unset] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_GT_AMP] = ACTIONS(1554), + [anon_sym_GT_LPAREN] = ACTIONS(1569), + [anon_sym_elif] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1587), + [sym_word] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_local] = ACTIONS(1557), + [anon_sym_unsetenv] = ACTIONS(1581), + [sym__special_character] = ACTIONS(1596), + [anon_sym_fi] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1546), + [sym_raw_string] = ACTIONS(1599), + [sym_number] = ACTIONS(1602), + [anon_sym_function] = ACTIONS(1605), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1614), + [sym_ansii_c_string] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1617), + [sym_file_descriptor] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_AMP_GT] = ACTIONS(1611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1635), }, [260] = { - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(303), - [sym_string_expansion] = STATE(262), - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [aux_sym__literal_repeat1] = STATE(265), - [sym_last_case_item] = STATE(304), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(303), - [sym_arithmetic_expansion] = STATE(262), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), - [anon_sym_esac] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_elif_clause] = STATE(261), + [aux_sym_if_statement_repeat1] = STATE(261), + [sym_else_clause] = STATE(303), + [anon_sym_elif] = ACTIONS(1334), + [anon_sym_fi] = ACTIONS(1552), + [sym_comment] = ACTIONS(23), + [anon_sym_else] = ACTIONS(1336), }, [261] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1639), - [anon_sym_AMP_GT_GT] = ACTIONS(1639), - [anon_sym_LF] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_LT_LT] = ACTIONS(1639), - [sym_file_descriptor] = ACTIONS(1641), - [anon_sym_GT] = ACTIONS(1639), - [anon_sym_AMP_GT] = ACTIONS(1639), - [anon_sym_PIPE_PIPE] = ACTIONS(1639), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_LT_LT_LT] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_GT_AMP] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1639), - [anon_sym_LT_AMP] = ACTIONS(1639), - [anon_sym_GT_GT] = ACTIONS(1639), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_SEMI_SEMI] = ACTIONS(1639), - [anon_sym_PIPE_AMP] = ACTIONS(1639), + [sym_elif_clause] = STATE(261), + [aux_sym_if_statement_repeat1] = STATE(261), + [anon_sym_elif] = ACTIONS(1638), + [anon_sym_fi] = ACTIONS(1641), + [sym_comment] = ACTIONS(23), + [anon_sym_else] = ACTIONS(1641), }, [262] = { - [aux_sym_concatenation_repeat1] = STATE(2566), - [aux_sym_case_item_repeat1] = STATE(307), - [anon_sym_RPAREN] = ACTIONS(1643), - [sym__concat] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1645), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(305), + [sym_string_expansion] = STATE(263), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [aux_sym__literal_repeat1] = STATE(267), + [sym_last_case_item] = STATE(306), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(305), + [sym_arithmetic_expansion] = STATE(263), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_esac] = ACTIONS(1643), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, [263] = { - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(308), - [sym_string_expansion] = STATE(262), - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [aux_sym__literal_repeat1] = STATE(265), - [sym_last_case_item] = STATE(304), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(308), - [sym_arithmetic_expansion] = STATE(262), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym__special_character] = ACTIONS(1346), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1118), - [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(1098), + [aux_sym_concatenation_repeat1] = STATE(2572), + [aux_sym_case_item_repeat1] = STATE(309), + [anon_sym_RPAREN] = ACTIONS(1645), + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1647), + [sym_comment] = ACTIONS(23), }, [264] = { - [aux_sym_case_item_repeat1] = STATE(307), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1643), - [sym_comment] = ACTIONS(53), + [anon_sym_LT_LT_DASH] = ACTIONS(1649), + [anon_sym_AMP_GT_GT] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_LT_LT] = ACTIONS(1649), + [sym_file_descriptor] = ACTIONS(1651), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_AMP_GT] = ACTIONS(1649), + [anon_sym_PIPE_PIPE] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_LT_LT_LT] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1649), + [anon_sym_GT_AMP] = ACTIONS(1649), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_AMP] = ACTIONS(1649), + [anon_sym_GT_GT] = ACTIONS(1649), + [ts_builtin_sym_end] = ACTIONS(1651), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1649), + [anon_sym_SEMI_SEMI] = ACTIONS(1649), + [anon_sym_PIPE_AMP] = ACTIONS(1649), }, [265] = { - [aux_sym__literal_repeat1] = STATE(1193), - [aux_sym_case_item_repeat1] = STATE(310), - [anon_sym_RPAREN] = ACTIONS(1647), - [sym__special_character] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1645), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(310), + [sym_string_expansion] = STATE(263), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [aux_sym__literal_repeat1] = STATE(267), + [sym_last_case_item] = STATE(306), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(310), + [sym_arithmetic_expansion] = STATE(263), + [sym_number] = ACTIONS(1346), + [sym_word] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_BQUOTE] = ACTIONS(1038), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1342), }, [266] = { - [sym_comment] = ACTIONS(53), - [anon_sym_esac] = ACTIONS(1649), + [aux_sym_case_item_repeat1] = STATE(309), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1645), + [sym_comment] = ACTIONS(23), }, [267] = { - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(312), - [sym_string_expansion] = STATE(262), - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [aux_sym__literal_repeat1] = STATE(265), - [sym_last_case_item] = STATE(313), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(312), - [sym_arithmetic_expansion] = STATE(262), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), - [anon_sym_esac] = ACTIONS(1651), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1118), + [aux_sym__literal_repeat1] = STATE(1166), + [aux_sym_case_item_repeat1] = STATE(312), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1647), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1374), }, [268] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1653), - [anon_sym_AMP_GT_GT] = ACTIONS(1653), - [anon_sym_LF] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [sym_file_descriptor] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_AMP_GT] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [ts_builtin_sym_end] = ACTIONS(1655), - [anon_sym_LT_LT_LT] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_GT_AMP] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_LT_AMP] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_SEMI_SEMI] = ACTIONS(1653), - [anon_sym_PIPE_AMP] = ACTIONS(1653), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(1655), }, [269] = { - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(308), - [sym_string_expansion] = STATE(262), - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [aux_sym__literal_repeat1] = STATE(265), - [sym_last_case_item] = STATE(313), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(308), - [sym_arithmetic_expansion] = STATE(262), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym__special_character] = ACTIONS(1346), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1118), - [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - }, - [270] = { - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(314), + [sym_string_expansion] = STATE(263), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [aux_sym__literal_repeat1] = STATE(267), + [sym_last_case_item] = STATE(315), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(314), + [sym_arithmetic_expansion] = STATE(263), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), [anon_sym_esac] = ACTIONS(1657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, - [271] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_EQ_TILDE] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), + [270] = { [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), + [anon_sym_AMP_GT_GT] = ACTIONS(1659), [anon_sym_LF] = ACTIONS(1661), [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), [sym_file_descriptor] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), [anon_sym_GT] = ACTIONS(1659), [anon_sym_AMP_GT] = ACTIONS(1659), - [anon_sym_EQ_EQ] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), [anon_sym_LT_LT_LT] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), [anon_sym_GT_AMP] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_LT_AMP] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1659), [ts_builtin_sym_end] = ACTIONS(1661), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), [anon_sym_SEMI_SEMI] = ACTIONS(1659), [anon_sym_PIPE_AMP] = ACTIONS(1659), }, + [271] = { + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(310), + [sym_string_expansion] = STATE(263), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [aux_sym__literal_repeat1] = STATE(267), + [sym_last_case_item] = STATE(315), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(310), + [sym_arithmetic_expansion] = STATE(263), + [sym_number] = ACTIONS(1346), + [sym_word] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_BQUOTE] = ACTIONS(1038), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1342), + }, [272] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(1663), }, [273] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(315), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(315), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1665), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1665), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1665), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_PERCENT] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_word] = ACTIONS(1665), + [anon_sym_AMP_GT_GT] = ACTIONS(1665), + [sym__special_character] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_raw_string] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_LT_AMP] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1665), + [anon_sym_LT_LT_DASH] = ACTIONS(1665), + [anon_sym_LT_LPAREN] = ACTIONS(1665), + [sym_ansii_c_string] = ACTIONS(1665), + [anon_sym_LF] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_variable_name] = ACTIONS(1667), + [sym_file_descriptor] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_AMP_GT] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_LT_LT_LT] = ACTIONS(1665), + [anon_sym_GT_AMP] = ACTIONS(1665), + [ts_builtin_sym_end] = ACTIONS(1667), + [anon_sym_GT_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_SEMI_SEMI] = ACTIONS(1665), + [anon_sym_PIPE_AMP] = ACTIONS(1665), }, [274] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1663), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(274), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(274), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1669), + [sym_ansii_c_string] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__special_character] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1683), + [sym_raw_string] = ACTIONS(1672), + [sym_number] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1689), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1695), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1698), + [sym_word] = ACTIONS(1686), }, [275] = { - [anon_sym_RBRACE] = ACTIONS(1663), - [sym_comment] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(1701), + [anon_sym_PLUS_EQ] = ACTIONS(1701), + [sym_comment] = ACTIONS(23), }, [276] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_PLUS_EQ] = ACTIONS(1701), + [sym__concat] = ACTIONS(1703), + [anon_sym_EQ] = ACTIONS(1701), + [sym_comment] = ACTIONS(23), }, [277] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [sym_file_descriptor] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_AMP_GT] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [ts_builtin_sym_end] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1705), + [anon_sym_PLUS_EQ] = ACTIONS(1705), + [sym_comment] = ACTIONS(23), }, [278] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(318), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(318), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1675), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1675), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1675), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_PLUS_EQ] = ACTIONS(1705), + [sym__concat] = ACTIONS(1707), + [anon_sym_EQ] = ACTIONS(1705), + [sym_comment] = ACTIONS(23), }, [279] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_do_group] = STATE(318), + [sym_comment] = ACTIONS(23), + [anon_sym_do] = ACTIONS(633), }, [280] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_EQ_TILDE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [sym_file_descriptor] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), + [sym_do_group] = STATE(320), + [sym_compound_statement] = STATE(320), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(633), }, [281] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_EQ_TILDE] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [sym_file_descriptor] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_AMP_GT] = ACTIONS(1685), - [anon_sym_EQ_EQ] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1711), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [282] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(322), + [sym_postfix_expression] = STATE(322), + [sym_concatenation] = STATE(322), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(322), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(322), + [sym_binary_expression] = STATE(322), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [283] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LPAREN] = ACTIONS(1691), - [sym_ansii_c_string] = ACTIONS(1691), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_LT_AMP] = ACTIONS(1691), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_LT_LT_DASH] = ACTIONS(1691), - [anon_sym_GT_LPAREN] = ACTIONS(1691), - [sym_number] = ACTIONS(1691), - [anon_sym_LF] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), - [sym_variable_name] = ACTIONS(1693), - [sym_file_descriptor] = ACTIONS(1693), - [sym_word] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1691), - [anon_sym_AMP_GT] = ACTIONS(1691), - [sym__special_character] = ACTIONS(1691), - [anon_sym_LT_LT_LT] = ACTIONS(1691), - [anon_sym_GT_AMP] = ACTIONS(1691), - [ts_builtin_sym_end] = ACTIONS(1693), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1691), - [sym_raw_string] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI_SEMI] = ACTIONS(1691), - [anon_sym_PIPE_AMP] = ACTIONS(1691), + [anon_sym_BANG_EQ] = ACTIONS(1112), + [anon_sym_PLUS_EQ] = ACTIONS(1112), + [anon_sym_DASH_EQ] = ACTIONS(1112), + [anon_sym_LF] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1116), + [anon_sym_PIPE_PIPE] = ACTIONS(1112), + [anon_sym_GT_EQ] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1713), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_EQ_TILDE] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1112), + [anon_sym_SEMI_SEMI] = ACTIONS(1713), + [sym_test_operator] = ACTIONS(1112), }, [284] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(284), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(284), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1695), - [sym_number] = ACTIONS(1698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1710), - [sym_word] = ACTIONS(1698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1712), - [anon_sym_LT_LPAREN] = ACTIONS(1695), - [sym_ansii_c_string] = ACTIONS(1715), - [sym__special_character] = ACTIONS(1718), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1721), - [sym_raw_string] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_LT_LT_DASH] = ACTIONS(1715), + [anon_sym_AMP_GT_GT] = ACTIONS(1715), + [anon_sym_LF] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_LT_LT] = ACTIONS(1715), + [sym_file_descriptor] = ACTIONS(1717), + [anon_sym_GT] = ACTIONS(1715), + [anon_sym_AMP_GT] = ACTIONS(1715), + [anon_sym_PIPE_PIPE] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_LT_LT] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1715), + [anon_sym_GT_AMP] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_LT_AMP] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [ts_builtin_sym_end] = ACTIONS(1717), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1715), + [anon_sym_SEMI_SEMI] = ACTIONS(1715), + [anon_sym_PIPE_AMP] = ACTIONS(1715), }, [285] = { - [anon_sym_EQ] = ACTIONS(1727), - [anon_sym_PLUS_EQ] = ACTIONS(1727), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_EQ_TILDE] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_EQ_EQ] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(1721), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [286] = { - [anon_sym_PLUS_EQ] = ACTIONS(1727), - [sym__concat] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1727), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [287] = { - [anon_sym_EQ] = ACTIONS(1731), - [anon_sym_PLUS_EQ] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [ts_builtin_sym_end] = ACTIONS(1727), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [288] = { - [anon_sym_PLUS_EQ] = ACTIONS(1731), - [sym__concat] = ACTIONS(1733), - [anon_sym_EQ] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [289] = { - [sym_do_group] = STATE(322), - [sym_comment] = ACTIONS(53), - [anon_sym_do] = ACTIONS(677), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(326), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(326), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1731), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1733), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PERCENT] = ACTIONS(1731), + [anon_sym_EQ] = ACTIONS(1731), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1731), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [290] = { - [sym_do_group] = STATE(324), - [sym_compound_statement] = STATE(324), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(25), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_EQ_TILDE] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [ts_builtin_sym_end] = ACTIONS(1737), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [291] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(328), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(328), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1739), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1741), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_PERCENT] = ACTIONS(1739), + [anon_sym_EQ] = ACTIONS(1739), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1739), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [292] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(326), - [sym_postfix_expression] = STATE(326), - [sym_concatenation] = STATE(326), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(326), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(326), - [sym_binary_expression] = STATE(326), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1737), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [293] = { - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1178), - [anon_sym_SEMI_SEMI] = ACTIONS(1739), - [anon_sym_DASH_EQ] = ACTIONS(1178), - [anon_sym_LF] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1178), - [anon_sym_EQ_TILDE] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [sym_test_operator] = ACTIONS(1178), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1723), + [sym__concat] = ACTIONS(1502), }, [294] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [ts_builtin_sym_end] = ACTIONS(1743), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1723), }, [295] = { - [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(1745), - [anon_sym_LF] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1745), + [sym__special_character] = ACTIONS(1506), }, [296] = { - [sym_expansion] = STATE(296), - [aux_sym_heredoc_body_repeat1] = STATE(296), - [sym_simple_expansion] = STATE(296), - [sym_command_substitution] = STATE(296), - [anon_sym_BQUOTE] = ACTIONS(1749), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1752), - [sym__heredoc_body_end] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1760), - [sym__heredoc_body_middle] = ACTIONS(1763), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_EQ_TILDE] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_EQ_EQ] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [ts_builtin_sym_end] = ACTIONS(1749), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [297] = { - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_typeset] = ACTIONS(1520), - [anon_sym_unsetenv] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1522), - [sym_ansii_c_string] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), - [sym_number] = ACTIONS(1520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_declare] = ACTIONS(1520), - [anon_sym_GT_LPAREN] = ACTIONS(1522), - [sym_file_descriptor] = ACTIONS(1522), - [sym_word] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), - [sym_variable_name] = ACTIONS(1522), - [anon_sym_AMP_GT] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_unset] = ACTIONS(1520), - [sym__special_character] = ACTIONS(1520), - [ts_builtin_sym_end] = ACTIONS(1766), - [anon_sym_GT_AMP] = ACTIONS(1522), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [sym_raw_string] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1751), + [ts_builtin_sym_end] = ACTIONS(1753), + [anon_sym_LF] = ACTIONS(1753), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_SEMI_SEMI] = ACTIONS(1751), + [sym_comment] = ACTIONS(3), }, [298] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(328), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_expansion] = STATE(298), + [aux_sym_heredoc_body_repeat1] = STATE(298), + [sym_simple_expansion] = STATE(298), + [sym_command_substitution] = STATE(298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1755), + [anon_sym_DOLLAR] = ACTIONS(1758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), + [sym__heredoc_body_end] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1769), + }, + [299] = { + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_AMP_GT_GT] = ACTIONS(1528), + [anon_sym_local] = ACTIONS(1526), + [anon_sym_typeset] = ACTIONS(1526), + [anon_sym_unsetenv] = ACTIONS(1526), + [sym__special_character] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1528), + [sym_raw_string] = ACTIONS(1528), + [sym_number] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_LT_AMP] = ACTIONS(1528), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_ansii_c_string] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_declare] = ACTIONS(1526), + [anon_sym_LT_LPAREN] = ACTIONS(1528), + [sym_file_descriptor] = ACTIONS(1528), + [sym_variable_name] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_AMP_GT] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_unset] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [ts_builtin_sym_end] = ACTIONS(1772), + [anon_sym_GT_AMP] = ACTIONS(1528), + [anon_sym_GT_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [sym_word] = ACTIONS(1526), + }, + [300] = { + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(330), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_fi] = ACTIONS(1768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_else] = ACTIONS(1768), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_elif] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [299] = { - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_SEMI_SEMI] = ACTIONS(1772), - }, - [300] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1774), - [anon_sym_AMP_GT_GT] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LT_LT] = ACTIONS(1774), - [sym_file_descriptor] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_AMP_GT] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [ts_builtin_sym_end] = ACTIONS(1776), - [anon_sym_LT_LT_LT] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_GT_AMP] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_LT_AMP] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_elif] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [301] = { - [sym_comment] = ACTIONS(53), - [anon_sym_fi] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_LF] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI_SEMI] = ACTIONS(1776), }, [302] = { [anon_sym_LT_LT_DASH] = ACTIONS(1780), @@ -16160,826 +16118,827 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1780), [anon_sym_AMP_GT] = ACTIONS(1780), [anon_sym_PIPE_PIPE] = ACTIONS(1780), - [ts_builtin_sym_end] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1780), [anon_sym_LT_LT_LT] = ACTIONS(1780), [anon_sym_PIPE] = ACTIONS(1780), [anon_sym_GT_AMP] = ACTIONS(1780), [anon_sym_LT] = ACTIONS(1780), [anon_sym_LT_AMP] = ACTIONS(1780), [anon_sym_GT_GT] = ACTIONS(1780), + [ts_builtin_sym_end] = ACTIONS(1782), [sym_comment] = ACTIONS(3), [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), [anon_sym_SEMI_SEMI] = ACTIONS(1780), [anon_sym_PIPE_AMP] = ACTIONS(1780), }, [303] = { - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(308), - [sym_string_expansion] = STATE(262), - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [aux_sym__literal_repeat1] = STATE(265), - [sym_last_case_item] = STATE(331), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(308), - [sym_arithmetic_expansion] = STATE(262), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym__special_character] = ACTIONS(1346), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1118), - [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_comment] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(1784), }, [304] = { - [sym_comment] = ACTIONS(53), - [anon_sym_esac] = ACTIONS(1784), + [anon_sym_LT_LT_DASH] = ACTIONS(1786), + [anon_sym_AMP_GT_GT] = ACTIONS(1786), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_LT_LT] = ACTIONS(1786), + [sym_file_descriptor] = ACTIONS(1788), + [anon_sym_GT] = ACTIONS(1786), + [anon_sym_AMP_GT] = ACTIONS(1786), + [anon_sym_PIPE_PIPE] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_LT_LT_LT] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_GT_AMP] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_LT_AMP] = ACTIONS(1786), + [anon_sym_GT_GT] = ACTIONS(1786), + [ts_builtin_sym_end] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1786), + [anon_sym_SEMI_SEMI] = ACTIONS(1786), + [anon_sym_PIPE_AMP] = ACTIONS(1786), }, [305] = { - [sym_expansion] = STATE(333), - [sym_concatenation] = STATE(334), - [sym_string] = STATE(333), - [sym_command_substitution] = STATE(333), - [sym_process_substitution] = STATE(333), - [aux_sym__literal_repeat1] = STATE(335), - [sym_simple_expansion] = STATE(333), - [sym_arithmetic_expansion] = STATE(333), - [sym_string_expansion] = STATE(333), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym__special_character] = ACTIONS(1346), - [sym_number] = ACTIONS(1786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_raw_string] = ACTIONS(1788), - [sym_word] = ACTIONS(1786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1118), - [sym_ansii_c_string] = ACTIONS(1788), - [anon_sym_LT_LPAREN] = ACTIONS(1098), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(310), + [sym_string_expansion] = STATE(263), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [aux_sym__literal_repeat1] = STATE(267), + [sym_last_case_item] = STATE(333), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(310), + [sym_arithmetic_expansion] = STATE(263), + [sym_number] = ACTIONS(1346), + [sym_word] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_BQUOTE] = ACTIONS(1038), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1342), }, [306] = { - [sym_if_statement] = STATE(544), - [sym_function_definition] = STATE(544), - [sym_negated_command] = STATE(544), - [sym_test_command] = STATE(544), - [sym_variable_assignment] = STATE(641), - [sym_subscript] = STATE(2615), - [sym_arithmetic_expansion] = STATE(540), - [sym_string_expansion] = STATE(540), - [sym_expansion] = STATE(540), - [aux_sym__statements_repeat1] = STATE(642), - [aux_sym__literal_repeat1] = STATE(547), - [sym_redirected_statement] = STATE(544), - [sym_for_statement] = STATE(544), - [sym_compound_statement] = STATE(544), - [sym_subshell] = STATE(544), - [sym_declaration_command] = STATE(544), - [sym_unset_command] = STATE(544), - [sym_file_redirect] = STATE(549), - [sym_concatenation] = STATE(548), - [sym_string] = STATE(540), - [sym_command_substitution] = STATE(540), - [sym_process_substitution] = STATE(540), - [aux_sym_command_repeat1] = STATE(549), - [sym__statements] = STATE(337), - [sym_c_style_for_statement] = STATE(544), - [sym_while_statement] = STATE(544), - [sym_case_statement] = STATE(544), - [sym_pipeline] = STATE(544), - [sym_list] = STATE(544), - [sym_command] = STATE(544), - [sym_command_name] = STATE(643), - [sym_simple_expansion] = STATE(540), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(1790), + }, + [307] = { + [sym_expansion] = STATE(335), + [sym_concatenation] = STATE(336), + [sym_string] = STATE(335), + [sym_command_substitution] = STATE(335), + [sym_process_substitution] = STATE(335), + [aux_sym__literal_repeat1] = STATE(337), + [sym_simple_expansion] = STATE(335), + [sym_arithmetic_expansion] = STATE(335), + [sym_string_expansion] = STATE(335), + [sym_number] = ACTIONS(1792), + [sym_word] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_ansii_c_string] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_BQUOTE] = ACTIONS(1038), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1794), + }, + [308] = { + [sym_if_statement] = STATE(548), + [sym_function_definition] = STATE(548), + [sym_negated_command] = STATE(548), + [sym_test_command] = STATE(548), + [sym_variable_assignment] = STATE(647), + [sym_subscript] = STATE(2621), + [sym_arithmetic_expansion] = STATE(545), + [sym_string_expansion] = STATE(545), + [sym_expansion] = STATE(545), + [aux_sym__statements_repeat1] = STATE(648), + [aux_sym__literal_repeat1] = STATE(551), + [sym_redirected_statement] = STATE(548), + [sym_for_statement] = STATE(548), + [sym_compound_statement] = STATE(548), + [sym_subshell] = STATE(548), + [sym_declaration_command] = STATE(548), + [sym_unset_command] = STATE(548), + [sym_file_redirect] = STATE(553), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(545), + [sym_command_substitution] = STATE(545), + [sym_process_substitution] = STATE(545), + [aux_sym_command_repeat1] = STATE(553), + [sym__statements] = STATE(339), + [sym_c_style_for_statement] = STATE(548), + [sym_while_statement] = STATE(548), + [sym_case_statement] = STATE(548), + [sym_pipeline] = STATE(548), + [sym_list] = STATE(548), + [sym_command] = STATE(548), + [sym_command_name] = STATE(649), + [sym_simple_expansion] = STATE(545), [anon_sym_LPAREN] = ACTIONS(65), + [sym_word] = ACTIONS(1796), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1790), - [anon_sym_typeset] = ACTIONS(1790), - [anon_sym_unsetenv] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [sym_ansii_c_string] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(1798), + [anon_sym_typeset] = ACTIONS(1798), + [anon_sym_unsetenv] = ACTIONS(1800), + [sym__special_character] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_raw_string] = ACTIONS(1806), + [sym_number] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_declare] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1812), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_declare] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1816), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(1818), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(1800), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(1790), - [anon_sym_unset] = ACTIONS(1792), - [sym__special_character] = ACTIONS(1816), + [anon_sym_readonly] = ACTIONS(1798), + [anon_sym_unset] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1820), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_esac] = ACTIONS(1818), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(1802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1822), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(1822), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_SEMI_SEMI] = ACTIONS(1828), }, - [307] = { - [aux_sym_case_item_repeat1] = STATE(339), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1824), - [sym_comment] = ACTIONS(53), + [309] = { + [aux_sym_case_item_repeat1] = STATE(341), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1830), + [sym_comment] = ACTIONS(23), }, - [308] = { - [sym_expansion] = STATE(340), - [sym_case_item] = STATE(308), - [sym_string_expansion] = STATE(340), - [sym_concatenation] = STATE(341), - [sym_string] = STATE(340), - [sym_command_substitution] = STATE(340), - [sym_process_substitution] = STATE(340), - [aux_sym__literal_repeat1] = STATE(342), - [sym_simple_expansion] = STATE(340), - [aux_sym_case_statement_repeat1] = STATE(308), - [sym_arithmetic_expansion] = STATE(340), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1826), - [sym_number] = ACTIONS(1829), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1841), - [sym_raw_string] = ACTIONS(1844), - [anon_sym_BQUOTE] = ACTIONS(1847), + [310] = { + [sym_expansion] = STATE(342), + [sym_case_item] = STATE(310), + [sym_string_expansion] = STATE(342), + [sym_concatenation] = STATE(343), + [sym_string] = STATE(342), + [sym_command_substitution] = STATE(342), + [sym_process_substitution] = STATE(342), + [aux_sym__literal_repeat1] = STATE(344), + [sym_simple_expansion] = STATE(342), + [aux_sym_case_statement_repeat1] = STATE(310), + [sym_arithmetic_expansion] = STATE(342), + [sym_number] = ACTIONS(1832), + [sym_word] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1835), + [sym_ansii_c_string] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_LT_LPAREN] = ACTIONS(1844), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1847), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1850), - [sym_word] = ACTIONS(1829), - [anon_sym_DOLLAR] = ACTIONS(1853), - [sym_ansii_c_string] = ACTIONS(1844), - [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1853), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1856), + [sym_raw_string] = ACTIONS(1838), + [anon_sym_BQUOTE] = ACTIONS(1859), }, - [309] = { - [sym_if_statement] = STATE(544), - [sym_function_definition] = STATE(544), - [sym_negated_command] = STATE(544), - [sym_test_command] = STATE(544), - [sym_variable_assignment] = STATE(641), - [sym_subscript] = STATE(2615), - [sym_arithmetic_expansion] = STATE(540), - [sym_string_expansion] = STATE(540), - [sym_expansion] = STATE(540), - [aux_sym__statements_repeat1] = STATE(642), - [aux_sym__literal_repeat1] = STATE(547), - [sym_redirected_statement] = STATE(544), - [sym_for_statement] = STATE(544), - [sym_compound_statement] = STATE(544), - [sym_subshell] = STATE(544), - [sym_declaration_command] = STATE(544), - [sym_unset_command] = STATE(544), - [sym_file_redirect] = STATE(549), - [sym_concatenation] = STATE(548), - [sym_string] = STATE(540), - [sym_command_substitution] = STATE(540), - [sym_process_substitution] = STATE(540), - [aux_sym_command_repeat1] = STATE(549), - [sym__statements] = STATE(344), - [sym_c_style_for_statement] = STATE(544), - [sym_while_statement] = STATE(544), - [sym_case_statement] = STATE(544), - [sym_pipeline] = STATE(544), - [sym_list] = STATE(544), - [sym_command] = STATE(544), - [sym_command_name] = STATE(643), - [sym_simple_expansion] = STATE(540), + [311] = { + [sym_if_statement] = STATE(548), + [sym_function_definition] = STATE(548), + [sym_negated_command] = STATE(548), + [sym_test_command] = STATE(548), + [sym_variable_assignment] = STATE(647), + [sym_subscript] = STATE(2621), + [sym_arithmetic_expansion] = STATE(545), + [sym_string_expansion] = STATE(545), + [sym_expansion] = STATE(545), + [aux_sym__statements_repeat1] = STATE(648), + [aux_sym__literal_repeat1] = STATE(551), + [sym_redirected_statement] = STATE(548), + [sym_for_statement] = STATE(548), + [sym_compound_statement] = STATE(548), + [sym_subshell] = STATE(548), + [sym_declaration_command] = STATE(548), + [sym_unset_command] = STATE(548), + [sym_file_redirect] = STATE(553), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(545), + [sym_command_substitution] = STATE(545), + [sym_process_substitution] = STATE(545), + [aux_sym_command_repeat1] = STATE(553), + [sym__statements] = STATE(346), + [sym_c_style_for_statement] = STATE(548), + [sym_while_statement] = STATE(548), + [sym_case_statement] = STATE(548), + [sym_pipeline] = STATE(548), + [sym_list] = STATE(548), + [sym_command] = STATE(548), + [sym_command_name] = STATE(649), + [sym_simple_expansion] = STATE(545), [anon_sym_LPAREN] = ACTIONS(65), + [sym_word] = ACTIONS(1796), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1790), - [anon_sym_typeset] = ACTIONS(1790), - [anon_sym_unsetenv] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [sym_ansii_c_string] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(1798), + [anon_sym_typeset] = ACTIONS(1798), + [anon_sym_unsetenv] = ACTIONS(1800), + [sym__special_character] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_raw_string] = ACTIONS(1806), + [sym_number] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_declare] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1812), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_declare] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1816), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(1818), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(1800), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(1790), - [anon_sym_unset] = ACTIONS(1792), - [sym__special_character] = ACTIONS(1816), + [anon_sym_readonly] = ACTIONS(1798), + [anon_sym_unset] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1820), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_esac] = ACTIONS(1856), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(1802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1858), - [sym_comment] = ACTIONS(53), - }, - [310] = { - [aux_sym_case_item_repeat1] = STATE(339), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1860), - [sym_comment] = ACTIONS(53), - }, - [311] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1862), - [anon_sym_AMP_GT_GT] = ACTIONS(1862), - [anon_sym_LF] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_LT_LT] = ACTIONS(1862), - [sym_file_descriptor] = ACTIONS(1864), - [anon_sym_GT] = ACTIONS(1862), - [anon_sym_AMP_GT] = ACTIONS(1862), - [anon_sym_PIPE_PIPE] = ACTIONS(1862), - [ts_builtin_sym_end] = ACTIONS(1864), - [anon_sym_LT_LT_LT] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_GT_AMP] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_LT_AMP] = ACTIONS(1862), - [anon_sym_GT_GT] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_SEMI_SEMI] = ACTIONS(1862), - [anon_sym_PIPE_AMP] = ACTIONS(1862), + [anon_sym_esac] = ACTIONS(1862), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_SEMI_SEMI] = ACTIONS(1864), }, [312] = { - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(308), - [sym_string_expansion] = STATE(262), - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [aux_sym__literal_repeat1] = STATE(265), - [sym_last_case_item] = STATE(346), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(308), - [sym_arithmetic_expansion] = STATE(262), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym__special_character] = ACTIONS(1346), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_raw_string] = ACTIONS(1344), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1118), - [sym_ansii_c_string] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(1098), + [aux_sym_case_item_repeat1] = STATE(341), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1866), + [sym_comment] = ACTIONS(23), }, [313] = { - [sym_comment] = ACTIONS(53), - [anon_sym_esac] = ACTIONS(1866), - }, - [314] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), + [anon_sym_AMP_GT_GT] = ACTIONS(1868), [anon_sym_LF] = ACTIONS(1870), [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), [sym_file_descriptor] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), [anon_sym_GT] = ACTIONS(1868), [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), [anon_sym_LT_LT_LT] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), [anon_sym_GT_AMP] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_AMP] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1868), [ts_builtin_sym_end] = ACTIONS(1870), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), [anon_sym_SEMI_SEMI] = ACTIONS(1868), [anon_sym_PIPE_AMP] = ACTIONS(1868), }, + [314] = { + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(310), + [sym_string_expansion] = STATE(263), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [aux_sym__literal_repeat1] = STATE(267), + [sym_last_case_item] = STATE(348), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(310), + [sym_arithmetic_expansion] = STATE(263), + [sym_number] = ACTIONS(1346), + [sym_word] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_BQUOTE] = ACTIONS(1038), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1342), + }, [315] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(1872), }, [316] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_EQ_TILDE] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [anon_sym_EQ_EQ] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [ts_builtin_sym_end] = ACTIONS(1876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_PLUS_EQ] = ACTIONS(1874), + [sym_comment] = ACTIONS(23), }, [317] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_EQ_TILDE] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1876), + [anon_sym_PLUS_EQ] = ACTIONS(1876), + [sym_comment] = ACTIONS(23), + }, + [318] = { [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), [anon_sym_LF] = ACTIONS(1880), [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), [sym_file_descriptor] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), [anon_sym_GT] = ACTIONS(1878), [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1878), [ts_builtin_sym_end] = ACTIONS(1880), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), [anon_sym_SEMI_SEMI] = ACTIONS(1878), [anon_sym_PIPE_AMP] = ACTIONS(1878), }, - [318] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - }, [319] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_EQ_TILDE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - }, - [320] = { - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_PLUS_EQ] = ACTIONS(1888), - [sym_comment] = ACTIONS(53), - }, - [321] = { - [anon_sym_EQ] = ACTIONS(1890), - [anon_sym_PLUS_EQ] = ACTIONS(1890), - [sym_comment] = ACTIONS(53), - }, - [322] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [sym_file_descriptor] = ACTIONS(1894), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [ts_builtin_sym_end] = ACTIONS(1894), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - }, - [323] = { [sym_do_group] = STATE(350), [sym_compound_statement] = STATE(350), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_do] = ACTIONS(677), + [anon_sym_do] = ACTIONS(633), }, - [324] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1896), - [anon_sym_AMP_GT_GT] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1898), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_LT_LT] = ACTIONS(1896), - [sym_file_descriptor] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [ts_builtin_sym_end] = ACTIONS(1898), - [anon_sym_LT_LT_LT] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_GT_AMP] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_LT_AMP] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1896), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_SEMI_SEMI] = ACTIONS(1896), - [anon_sym_PIPE_AMP] = ACTIONS(1896), + [320] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_GT] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), }, - [325] = { + [321] = { [sym_do_group] = STATE(350), [sym_compound_statement] = STATE(350), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(633), }, - [326] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1902), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [322] = { + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, - [327] = { - [sym_expansion] = STATE(53), + [323] = { + [sym_expansion] = STATE(57), [sym_unary_expression] = STATE(353), [sym_postfix_expression] = STATE(353), [sym_concatenation] = STATE(353), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), [sym_parenthesized_expression] = STATE(353), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), [sym__expression] = STATE(353), [sym_binary_expression] = STATE(353), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1902), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [328] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(257), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(67), - [anon_sym_typeset] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_fi] = ACTIONS(1904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_else] = ACTIONS(1904), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_elif] = ACTIONS(1904), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [324] = { + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_EQ_EQ] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + }, + [325] = { + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_EQ_TILDE] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1896), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), + }, + [326] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [327] = { + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_EQ_TILDE] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1902), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), + }, + [328] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [329] = { + [sym_word] = ACTIONS(1906), [anon_sym_AMP_GT_GT] = ACTIONS(1906), - [anon_sym_typeset] = ACTIONS(1908), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_EQ_TILDE] = ACTIONS(1906), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1908), - [anon_sym_done] = ACTIONS(1908), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), [anon_sym_LT_LPAREN] = ACTIONS(1906), - [anon_sym_LT_AMP] = ACTIONS(1906), - [anon_sym_export] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_GT_LPAREN] = ACTIONS(1906), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1906), - [anon_sym_declare] = ACTIONS(1908), - [sym_variable_name] = ACTIONS(1906), - [sym_word] = ACTIONS(1908), - [anon_sym_readonly] = ACTIONS(1908), - [anon_sym_unset] = ACTIONS(1908), - [sym__special_character] = ACTIONS(1908), - [anon_sym_GT_AMP] = ACTIONS(1906), - [sym_comment] = ACTIONS(53), - [anon_sym_elif] = ACTIONS(1908), - [sym_raw_string] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1908), - [anon_sym_local] = ACTIONS(1908), - [anon_sym_unsetenv] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1906), - [anon_sym_fi] = ACTIONS(1908), - [anon_sym_else] = ACTIONS(1908), [sym_ansii_c_string] = ACTIONS(1906), - [anon_sym_function] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1908), - [anon_sym_GT_GT] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1908), - [sym_number] = ACTIONS(1908), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_EQ_EQ] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1908), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1908), - [sym_file_descriptor] = ACTIONS(1906), - [anon_sym_GT] = ACTIONS(1908), - [anon_sym_AMP_GT] = ACTIONS(1908), - [anon_sym_BQUOTE] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [330] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1910), - [anon_sym_AMP_GT_GT] = ACTIONS(1910), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_LT_LT] = ACTIONS(1910), - [sym_file_descriptor] = ACTIONS(1912), - [anon_sym_GT] = ACTIONS(1910), - [anon_sym_AMP_GT] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [ts_builtin_sym_end] = ACTIONS(1912), - [anon_sym_LT_LT_LT] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_GT_AMP] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_LT_AMP] = ACTIONS(1910), - [anon_sym_GT_GT] = ACTIONS(1910), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_SEMI_SEMI] = ACTIONS(1910), - [anon_sym_PIPE_AMP] = ACTIONS(1910), + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(259), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(1910), + [anon_sym_else] = ACTIONS(1910), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_elif] = ACTIONS(1910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [331] = { - [sym_comment] = ACTIONS(53), - [anon_sym_esac] = ACTIONS(1914), + [anon_sym_AMP_GT_GT] = ACTIONS(1912), + [anon_sym_typeset] = ACTIONS(1914), + [anon_sym_done] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1912), + [anon_sym_LT_AMP] = ACTIONS(1912), + [anon_sym_export] = ACTIONS(1914), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_LT_LPAREN] = ACTIONS(1912), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [anon_sym_declare] = ACTIONS(1914), + [sym_variable_name] = ACTIONS(1912), + [anon_sym_readonly] = ACTIONS(1914), + [anon_sym_unset] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_GT_AMP] = ACTIONS(1912), + [anon_sym_GT_LPAREN] = ACTIONS(1912), + [anon_sym_elif] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [sym_word] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_local] = ACTIONS(1914), + [anon_sym_unsetenv] = ACTIONS(1914), + [sym__special_character] = ACTIONS(1914), + [anon_sym_fi] = ACTIONS(1914), + [anon_sym_else] = ACTIONS(1914), + [sym_raw_string] = ACTIONS(1912), + [sym_number] = ACTIONS(1914), + [anon_sym_function] = ACTIONS(1914), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_GT_GT] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1914), + [sym_ansii_c_string] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1914), + [sym_file_descriptor] = ACTIONS(1912), + [anon_sym_GT] = ACTIONS(1914), + [anon_sym_AMP_GT] = ACTIONS(1914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1912), }, [332] = { [anon_sym_LT_LT_DASH] = ACTIONS(1916), @@ -16991,4208 +16950,4248 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1916), [anon_sym_AMP_GT] = ACTIONS(1916), [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [ts_builtin_sym_end] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1916), [anon_sym_LT_LT_LT] = ACTIONS(1916), [anon_sym_PIPE] = ACTIONS(1916), [anon_sym_GT_AMP] = ACTIONS(1916), [anon_sym_LT] = ACTIONS(1916), [anon_sym_LT_AMP] = ACTIONS(1916), [anon_sym_GT_GT] = ACTIONS(1916), + [ts_builtin_sym_end] = ACTIONS(1918), [sym_comment] = ACTIONS(3), [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), [anon_sym_SEMI_SEMI] = ACTIONS(1916), [anon_sym_PIPE_AMP] = ACTIONS(1916), }, [333] = { - [aux_sym_concatenation_repeat1] = STATE(2566), - [anon_sym_RPAREN] = ACTIONS(1920), - [sym__concat] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1920), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(1920), }, [334] = { - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [sym_comment] = ACTIONS(53), + [anon_sym_LT_LT_DASH] = ACTIONS(1922), + [anon_sym_AMP_GT_GT] = ACTIONS(1922), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_LT_LT] = ACTIONS(1922), + [sym_file_descriptor] = ACTIONS(1924), + [anon_sym_GT] = ACTIONS(1922), + [anon_sym_AMP_GT] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_LT_LT_LT] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_GT_AMP] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_LT_AMP] = ACTIONS(1922), + [anon_sym_GT_GT] = ACTIONS(1922), + [ts_builtin_sym_end] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_SEMI_SEMI] = ACTIONS(1922), + [anon_sym_PIPE_AMP] = ACTIONS(1922), }, [335] = { - [aux_sym__literal_repeat1] = STATE(1193), - [anon_sym_RPAREN] = ACTIONS(1922), - [sym__special_character] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1922), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2572), + [anon_sym_RPAREN] = ACTIONS(1926), + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1926), + [sym_comment] = ACTIONS(23), }, [336] = { - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [sym_number] = ACTIONS(1926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1924), - [sym_word] = ACTIONS(1926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1926), - [anon_sym_LT_LPAREN] = ACTIONS(1924), - [sym_ansii_c_string] = ACTIONS(1924), - [sym__special_character] = ACTIONS(1924), - [anon_sym_esac] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1924), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1926), + [sym_comment] = ACTIONS(23), }, [337] = { - [sym_comment] = ACTIONS(53), - [anon_sym_SEMI_SEMI] = ACTIONS(1930), - [anon_sym_esac] = ACTIONS(1932), + [aux_sym__literal_repeat1] = STATE(1166), + [anon_sym_RPAREN] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1374), }, [338] = { - [sym_if_statement] = STATE(544), - [sym_function_definition] = STATE(544), - [sym_negated_command] = STATE(544), - [sym_test_command] = STATE(544), - [sym_variable_assignment] = STATE(641), - [sym_subscript] = STATE(2615), - [sym_arithmetic_expansion] = STATE(540), - [sym_string_expansion] = STATE(540), - [sym_expansion] = STATE(540), - [aux_sym__statements_repeat1] = STATE(642), - [aux_sym__literal_repeat1] = STATE(547), - [sym_redirected_statement] = STATE(544), - [sym_for_statement] = STATE(544), - [sym_compound_statement] = STATE(544), - [sym_subshell] = STATE(544), - [sym_declaration_command] = STATE(544), - [sym_unset_command] = STATE(544), - [sym_file_redirect] = STATE(549), - [sym_concatenation] = STATE(548), - [sym_string] = STATE(540), - [sym_command_substitution] = STATE(540), - [sym_process_substitution] = STATE(540), - [aux_sym_command_repeat1] = STATE(549), - [sym__statements] = STATE(356), - [sym_c_style_for_statement] = STATE(544), - [sym_while_statement] = STATE(544), - [sym_case_statement] = STATE(544), - [sym_pipeline] = STATE(544), - [sym_list] = STATE(544), - [sym_command] = STATE(544), - [sym_command_name] = STATE(643), - [sym_simple_expansion] = STATE(540), + [anon_sym_LT_LPAREN] = ACTIONS(1930), + [sym_ansii_c_string] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [sym__special_character] = ACTIONS(1930), + [anon_sym_BQUOTE] = ACTIONS(1930), + [sym_raw_string] = ACTIONS(1930), + [sym_number] = ACTIONS(1932), + [anon_sym_DOLLAR] = ACTIONS(1932), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_esac] = ACTIONS(1934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1930), + [sym_word] = ACTIONS(1932), + }, + [339] = { + [sym_comment] = ACTIONS(23), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), + [anon_sym_esac] = ACTIONS(1938), + }, + [340] = { + [sym_if_statement] = STATE(548), + [sym_function_definition] = STATE(548), + [sym_negated_command] = STATE(548), + [sym_test_command] = STATE(548), + [sym_variable_assignment] = STATE(647), + [sym_subscript] = STATE(2621), + [sym_arithmetic_expansion] = STATE(545), + [sym_string_expansion] = STATE(545), + [sym_expansion] = STATE(545), + [aux_sym__statements_repeat1] = STATE(648), + [aux_sym__literal_repeat1] = STATE(551), + [sym_redirected_statement] = STATE(548), + [sym_for_statement] = STATE(548), + [sym_compound_statement] = STATE(548), + [sym_subshell] = STATE(548), + [sym_declaration_command] = STATE(548), + [sym_unset_command] = STATE(548), + [sym_file_redirect] = STATE(553), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(545), + [sym_command_substitution] = STATE(545), + [sym_process_substitution] = STATE(545), + [aux_sym_command_repeat1] = STATE(553), + [sym__statements] = STATE(358), + [sym_c_style_for_statement] = STATE(548), + [sym_while_statement] = STATE(548), + [sym_case_statement] = STATE(548), + [sym_pipeline] = STATE(548), + [sym_list] = STATE(548), + [sym_command] = STATE(548), + [sym_command_name] = STATE(649), + [sym_simple_expansion] = STATE(545), [anon_sym_LPAREN] = ACTIONS(65), + [sym_word] = ACTIONS(1796), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1790), - [anon_sym_typeset] = ACTIONS(1790), - [anon_sym_unsetenv] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [sym_ansii_c_string] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(1798), + [anon_sym_typeset] = ACTIONS(1798), + [anon_sym_unsetenv] = ACTIONS(1800), + [sym__special_character] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_raw_string] = ACTIONS(1806), + [sym_number] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_declare] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1812), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_declare] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1816), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(1818), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(1800), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(1790), - [anon_sym_unset] = ACTIONS(1792), - [sym__special_character] = ACTIONS(1816), + [anon_sym_readonly] = ACTIONS(1798), + [anon_sym_unset] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1820), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_esac] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(1802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1930), - [sym_comment] = ACTIONS(53), - }, - [339] = { - [aux_sym_case_item_repeat1] = STATE(339), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1920), - [sym_comment] = ACTIONS(53), - }, - [340] = { - [aux_sym_concatenation_repeat1] = STATE(2566), - [aux_sym_case_item_repeat1] = STATE(358), - [anon_sym_RPAREN] = ACTIONS(1937), - [sym__concat] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1645), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(1934), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), }, [341] = { - [aux_sym_case_item_repeat1] = STATE(358), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1937), - [sym_comment] = ACTIONS(53), + [aux_sym_case_item_repeat1] = STATE(341), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1926), + [sym_comment] = ACTIONS(23), }, [342] = { - [aux_sym__literal_repeat1] = STATE(1193), + [aux_sym_concatenation_repeat1] = STATE(2572), [aux_sym_case_item_repeat1] = STATE(360), - [anon_sym_RPAREN] = ACTIONS(1939), - [sym__special_character] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1645), - [sym_comment] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(1943), + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1647), + [sym_comment] = ACTIONS(23), }, [343] = { - [anon_sym_GT_LPAREN] = ACTIONS(1941), - [sym_number] = ACTIONS(1943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1941), - [sym_word] = ACTIONS(1943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1943), - [anon_sym_LT_LPAREN] = ACTIONS(1941), - [sym_ansii_c_string] = ACTIONS(1941), - [sym__special_character] = ACTIONS(1941), - [anon_sym_esac] = ACTIONS(1945), - [anon_sym_BQUOTE] = ACTIONS(1941), - [sym_raw_string] = ACTIONS(1941), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1943), + [aux_sym_case_item_repeat1] = STATE(360), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1943), + [sym_comment] = ACTIONS(23), }, [344] = { - [sym_comment] = ACTIONS(53), - [anon_sym_SEMI_SEMI] = ACTIONS(1947), - [anon_sym_esac] = ACTIONS(1949), + [aux_sym__literal_repeat1] = STATE(1166), + [aux_sym_case_item_repeat1] = STATE(362), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1647), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1374), }, [345] = { - [sym_if_statement] = STATE(544), - [sym_function_definition] = STATE(544), - [sym_negated_command] = STATE(544), - [sym_test_command] = STATE(544), - [sym_variable_assignment] = STATE(641), - [sym_subscript] = STATE(2615), - [sym_arithmetic_expansion] = STATE(540), - [sym_string_expansion] = STATE(540), - [sym_expansion] = STATE(540), - [aux_sym__statements_repeat1] = STATE(642), - [aux_sym__literal_repeat1] = STATE(547), - [sym_redirected_statement] = STATE(544), - [sym_for_statement] = STATE(544), - [sym_compound_statement] = STATE(544), - [sym_subshell] = STATE(544), - [sym_declaration_command] = STATE(544), - [sym_unset_command] = STATE(544), - [sym_file_redirect] = STATE(549), - [sym_concatenation] = STATE(548), - [sym_string] = STATE(540), - [sym_command_substitution] = STATE(540), - [sym_process_substitution] = STATE(540), - [aux_sym_command_repeat1] = STATE(549), - [sym__statements] = STATE(362), - [sym_c_style_for_statement] = STATE(544), - [sym_while_statement] = STATE(544), - [sym_case_statement] = STATE(544), - [sym_pipeline] = STATE(544), - [sym_list] = STATE(544), - [sym_command] = STATE(544), - [sym_command_name] = STATE(643), - [sym_simple_expansion] = STATE(540), + [anon_sym_LT_LPAREN] = ACTIONS(1947), + [sym_ansii_c_string] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__special_character] = ACTIONS(1947), + [anon_sym_BQUOTE] = ACTIONS(1947), + [sym_raw_string] = ACTIONS(1947), + [sym_number] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1949), + [anon_sym_esac] = ACTIONS(1951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1947), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1947), + [sym_word] = ACTIONS(1949), + }, + [346] = { + [sym_comment] = ACTIONS(23), + [anon_sym_SEMI_SEMI] = ACTIONS(1953), + [anon_sym_esac] = ACTIONS(1955), + }, + [347] = { + [sym_if_statement] = STATE(548), + [sym_function_definition] = STATE(548), + [sym_negated_command] = STATE(548), + [sym_test_command] = STATE(548), + [sym_variable_assignment] = STATE(647), + [sym_subscript] = STATE(2621), + [sym_arithmetic_expansion] = STATE(545), + [sym_string_expansion] = STATE(545), + [sym_expansion] = STATE(545), + [aux_sym__statements_repeat1] = STATE(648), + [aux_sym__literal_repeat1] = STATE(551), + [sym_redirected_statement] = STATE(548), + [sym_for_statement] = STATE(548), + [sym_compound_statement] = STATE(548), + [sym_subshell] = STATE(548), + [sym_declaration_command] = STATE(548), + [sym_unset_command] = STATE(548), + [sym_file_redirect] = STATE(553), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(545), + [sym_command_substitution] = STATE(545), + [sym_process_substitution] = STATE(545), + [aux_sym_command_repeat1] = STATE(553), + [sym__statements] = STATE(364), + [sym_c_style_for_statement] = STATE(548), + [sym_while_statement] = STATE(548), + [sym_case_statement] = STATE(548), + [sym_pipeline] = STATE(548), + [sym_list] = STATE(548), + [sym_command] = STATE(548), + [sym_command_name] = STATE(649), + [sym_simple_expansion] = STATE(545), [anon_sym_LPAREN] = ACTIONS(65), + [sym_word] = ACTIONS(1796), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1790), - [anon_sym_typeset] = ACTIONS(1790), - [anon_sym_unsetenv] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [sym_ansii_c_string] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(1798), + [anon_sym_typeset] = ACTIONS(1798), + [anon_sym_unsetenv] = ACTIONS(1800), + [sym__special_character] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_raw_string] = ACTIONS(1806), + [sym_number] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_declare] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1812), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_declare] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1816), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(1818), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(1800), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(1790), - [anon_sym_unset] = ACTIONS(1792), - [sym__special_character] = ACTIONS(1816), + [anon_sym_readonly] = ACTIONS(1798), + [anon_sym_unset] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1820), [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_esac] = ACTIONS(1945), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(1802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1947), - [sym_comment] = ACTIONS(53), - }, - [346] = { - [sym_comment] = ACTIONS(53), [anon_sym_esac] = ACTIONS(1951), - }, - [347] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1953), - [anon_sym_AMP_GT_GT] = ACTIONS(1953), - [anon_sym_LF] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_LT_LT] = ACTIONS(1953), - [sym_file_descriptor] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1953), - [anon_sym_AMP_GT] = ACTIONS(1953), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [ts_builtin_sym_end] = ACTIONS(1955), - [anon_sym_LT_LT_LT] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_GT_AMP] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1953), - [anon_sym_LT_AMP] = ACTIONS(1953), - [anon_sym_GT_GT] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), [anon_sym_SEMI_SEMI] = ACTIONS(1953), - [anon_sym_PIPE_AMP] = ACTIONS(1953), }, [348] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_EQ_TILDE] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [sym_file_descriptor] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_AMP_GT] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(1957), }, [349] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_EQ_TILDE] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [sym_file_descriptor] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_EQ_EQ] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [ts_builtin_sym_end] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1959), + [anon_sym_AMP_GT_GT] = ACTIONS(1959), + [anon_sym_LF] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [sym_file_descriptor] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_LT_LT_LT] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_GT_AMP] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_AMP] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [ts_builtin_sym_end] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), }, [350] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1965), - [anon_sym_AMP_GT_GT] = ACTIONS(1965), - [anon_sym_LF] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_LT_LT] = ACTIONS(1965), - [sym_file_descriptor] = ACTIONS(1967), - [anon_sym_GT] = ACTIONS(1965), - [anon_sym_AMP_GT] = ACTIONS(1965), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [ts_builtin_sym_end] = ACTIONS(1967), - [anon_sym_LT_LT_LT] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_GT_AMP] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_LT_AMP] = ACTIONS(1965), - [anon_sym_GT_GT] = ACTIONS(1965), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_SEMI_SEMI] = ACTIONS(1965), - [anon_sym_PIPE_AMP] = ACTIONS(1965), + [anon_sym_LT_LT_DASH] = ACTIONS(1963), + [anon_sym_AMP_GT_GT] = ACTIONS(1963), + [anon_sym_LF] = ACTIONS(1965), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_LT_LT] = ACTIONS(1963), + [sym_file_descriptor] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1963), + [anon_sym_AMP_GT] = ACTIONS(1963), + [anon_sym_PIPE_PIPE] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_LT_LT_LT] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_GT_AMP] = ACTIONS(1963), + [anon_sym_LT] = ACTIONS(1963), + [anon_sym_LT_AMP] = ACTIONS(1963), + [anon_sym_GT_GT] = ACTIONS(1963), + [ts_builtin_sym_end] = ACTIONS(1965), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1963), + [anon_sym_SEMI_SEMI] = ACTIONS(1963), + [anon_sym_PIPE_AMP] = ACTIONS(1963), }, [351] = { - [sym_do_group] = STATE(364), - [sym_compound_statement] = STATE(364), - [sym_comment] = ACTIONS(53), + [sym_do_group] = STATE(366), + [sym_compound_statement] = STATE(366), + [sym_comment] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_do] = ACTIONS(677), + [anon_sym_do] = ACTIONS(633), }, [352] = { - [sym_do_group] = STATE(364), - [sym_compound_statement] = STATE(364), - [sym_comment] = ACTIONS(53), + [sym_do_group] = STATE(366), + [sym_compound_statement] = STATE(366), + [sym_comment] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_do] = ACTIONS(633), }, [353] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1969), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [354] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1973), - [anon_sym_AMP_GT_GT] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_LT_LT] = ACTIONS(1973), - [sym_file_descriptor] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1973), - [anon_sym_AMP_GT] = ACTIONS(1973), - [anon_sym_PIPE_PIPE] = ACTIONS(1973), - [ts_builtin_sym_end] = ACTIONS(1975), - [anon_sym_LT_LT_LT] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_GT_AMP] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_AMP] = ACTIONS(1973), - [anon_sym_GT_GT] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - [anon_sym_SEMI_SEMI] = ACTIONS(1973), - [anon_sym_PIPE_AMP] = ACTIONS(1973), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_EQ_TILDE] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [ts_builtin_sym_end] = ACTIONS(1973), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [355] = { - [anon_sym_GT_LPAREN] = ACTIONS(1977), - [sym_number] = ACTIONS(1979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1977), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1977), - [sym_word] = ACTIONS(1979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1979), - [anon_sym_LT_LPAREN] = ACTIONS(1977), - [sym_ansii_c_string] = ACTIONS(1977), - [sym__special_character] = ACTIONS(1977), - [anon_sym_esac] = ACTIONS(1981), - [anon_sym_BQUOTE] = ACTIONS(1977), - [sym_raw_string] = ACTIONS(1977), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1979), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_EQ_TILDE] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [ts_builtin_sym_end] = ACTIONS(1977), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [356] = { - [sym_comment] = ACTIONS(53), - [anon_sym_SEMI_SEMI] = ACTIONS(1983), - [anon_sym_esac] = ACTIONS(1985), + [anon_sym_LT_LT_DASH] = ACTIONS(1979), + [anon_sym_AMP_GT_GT] = ACTIONS(1979), + [anon_sym_LF] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_LT_LT] = ACTIONS(1979), + [sym_file_descriptor] = ACTIONS(1981), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_AMP_GT] = ACTIONS(1979), + [anon_sym_PIPE_PIPE] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1979), + [anon_sym_LT_LT_LT] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_GT_AMP] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_LT_AMP] = ACTIONS(1979), + [anon_sym_GT_GT] = ACTIONS(1979), + [ts_builtin_sym_end] = ACTIONS(1981), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1979), + [anon_sym_SEMI_SEMI] = ACTIONS(1979), + [anon_sym_PIPE_AMP] = ACTIONS(1979), }, [357] = { - [sym_if_statement] = STATE(640), - [sym_function_definition] = STATE(640), - [sym_negated_command] = STATE(640), - [sym_test_command] = STATE(640), - [sym_variable_assignment] = STATE(702), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(1527), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_compound_statement] = STATE(640), - [sym_subshell] = STATE(640), - [sym_declaration_command] = STATE(640), - [sym_unset_command] = STATE(640), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(369), - [sym_c_style_for_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_case_statement] = STATE(640), - [sym_pipeline] = STATE(640), - [sym_list] = STATE(640), - [sym_command] = STATE(640), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [anon_sym_LT_LPAREN] = ACTIONS(1983), + [sym_ansii_c_string] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(1983), + [sym__special_character] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(1983), + [sym_raw_string] = ACTIONS(1983), + [sym_number] = ACTIONS(1985), + [anon_sym_DOLLAR] = ACTIONS(1985), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1983), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1985), + [anon_sym_esac] = ACTIONS(1987), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1983), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1983), + [sym_word] = ACTIONS(1985), + }, + [358] = { + [sym_comment] = ACTIONS(23), + [anon_sym_SEMI_SEMI] = ACTIONS(1989), + [anon_sym_esac] = ACTIONS(1991), + }, + [359] = { + [sym_if_statement] = STATE(646), + [sym_function_definition] = STATE(646), + [sym_negated_command] = STATE(646), + [sym_test_command] = STATE(646), + [sym_variable_assignment] = STATE(708), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(1533), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(646), + [sym_for_statement] = STATE(646), + [sym_compound_statement] = STATE(646), + [sym_subshell] = STATE(646), + [sym_declaration_command] = STATE(646), + [sym_unset_command] = STATE(646), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(371), + [sym_c_style_for_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_case_statement] = STATE(646), + [sym_pipeline] = STATE(646), + [sym_list] = STATE(646), + [sym_command] = STATE(646), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1987), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_SEMI_SEMI] = ACTIONS(1993), + [sym_word] = ACTIONS(113), }, - [358] = { - [aux_sym_case_item_repeat1] = STATE(339), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1989), - [sym_comment] = ACTIONS(53), + [360] = { + [aux_sym_case_item_repeat1] = STATE(341), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1995), + [sym_comment] = ACTIONS(23), }, - [359] = { - [sym_if_statement] = STATE(640), - [sym_function_definition] = STATE(640), - [sym_negated_command] = STATE(640), - [sym_test_command] = STATE(640), - [sym_variable_assignment] = STATE(702), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(1527), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_compound_statement] = STATE(640), - [sym_subshell] = STATE(640), - [sym_declaration_command] = STATE(640), - [sym_unset_command] = STATE(640), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(372), - [sym_c_style_for_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_case_statement] = STATE(640), - [sym_pipeline] = STATE(640), - [sym_list] = STATE(640), - [sym_command] = STATE(640), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [361] = { + [sym_if_statement] = STATE(646), + [sym_function_definition] = STATE(646), + [sym_negated_command] = STATE(646), + [sym_test_command] = STATE(646), + [sym_variable_assignment] = STATE(708), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(1533), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(646), + [sym_for_statement] = STATE(646), + [sym_compound_statement] = STATE(646), + [sym_subshell] = STATE(646), + [sym_declaration_command] = STATE(646), + [sym_unset_command] = STATE(646), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(374), + [sym_c_style_for_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_case_statement] = STATE(646), + [sym_pipeline] = STATE(646), + [sym_list] = STATE(646), + [sym_command] = STATE(646), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(1991), - }, - [360] = { - [aux_sym_case_item_repeat1] = STATE(339), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1993), - [sym_comment] = ACTIONS(53), - }, - [361] = { - [anon_sym_GT_LPAREN] = ACTIONS(1995), - [sym_number] = ACTIONS(1997), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1995), - [sym_word] = ACTIONS(1997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1997), - [anon_sym_LT_LPAREN] = ACTIONS(1995), - [sym_ansii_c_string] = ACTIONS(1995), - [sym__special_character] = ACTIONS(1995), - [anon_sym_esac] = ACTIONS(1999), - [anon_sym_BQUOTE] = ACTIONS(1995), - [sym_raw_string] = ACTIONS(1995), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_SEMI_SEMI] = ACTIONS(1997), + [sym_word] = ACTIONS(113), }, [362] = { - [sym_comment] = ACTIONS(53), - [anon_sym_SEMI_SEMI] = ACTIONS(2001), - [anon_sym_esac] = ACTIONS(2003), + [aux_sym_case_item_repeat1] = STATE(341), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1999), + [sym_comment] = ACTIONS(23), }, [363] = { - [anon_sym_LT_LT_DASH] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_LT_LT] = ACTIONS(2005), - [sym_file_descriptor] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_PIPE_PIPE] = ACTIONS(2005), - [ts_builtin_sym_end] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_GT_AMP] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_LT_AMP] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2005), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(2005), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_SEMI_SEMI] = ACTIONS(2005), - [anon_sym_PIPE_AMP] = ACTIONS(2005), + [anon_sym_LT_LPAREN] = ACTIONS(2001), + [sym_ansii_c_string] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [sym__special_character] = ACTIONS(2001), + [anon_sym_BQUOTE] = ACTIONS(2001), + [sym_raw_string] = ACTIONS(2001), + [sym_number] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2003), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), + [anon_sym_esac] = ACTIONS(2005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2001), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2001), + [sym_word] = ACTIONS(2003), }, [364] = { - [anon_sym_LT_LT_DASH] = ACTIONS(2009), - [anon_sym_AMP_GT_GT] = ACTIONS(2009), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(2009), - [sym_file_descriptor] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2009), - [anon_sym_AMP_GT] = ACTIONS(2009), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [ts_builtin_sym_end] = ACTIONS(2011), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_GT_AMP] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_LT_AMP] = ACTIONS(2009), - [anon_sym_GT_GT] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2009), - [anon_sym_SEMI_SEMI] = ACTIONS(2009), - [anon_sym_PIPE_AMP] = ACTIONS(2009), + [sym_comment] = ACTIONS(23), + [anon_sym_SEMI_SEMI] = ACTIONS(2007), + [anon_sym_esac] = ACTIONS(2009), }, [365] = { - [sym_do_group] = STATE(375), - [sym_compound_statement] = STATE(375), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_do] = ACTIONS(677), + [anon_sym_LT_LT_DASH] = ACTIONS(2011), + [anon_sym_AMP_GT_GT] = ACTIONS(2011), + [anon_sym_LF] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_LT_LT] = ACTIONS(2011), + [sym_file_descriptor] = ACTIONS(2013), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_AMP_GT] = ACTIONS(2011), + [anon_sym_PIPE_PIPE] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_LT_LT_LT] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_GT_AMP] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_LT_AMP] = ACTIONS(2011), + [anon_sym_GT_GT] = ACTIONS(2011), + [ts_builtin_sym_end] = ACTIONS(2013), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2011), + [anon_sym_SEMI_SEMI] = ACTIONS(2011), + [anon_sym_PIPE_AMP] = ACTIONS(2011), }, [366] = { - [sym_do_group] = STATE(375), - [sym_compound_statement] = STATE(375), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(677), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LF] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2015), + [sym_file_descriptor] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_GT] = ACTIONS(2015), + [ts_builtin_sym_end] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), }, [367] = { - [anon_sym_GT_LPAREN] = ACTIONS(2015), - [sym_number] = ACTIONS(2017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2015), - [sym_word] = ACTIONS(2017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2017), - [anon_sym_LT_LPAREN] = ACTIONS(2015), - [sym_ansii_c_string] = ACTIONS(2015), - [sym__special_character] = ACTIONS(2015), - [anon_sym_esac] = ACTIONS(2019), - [anon_sym_BQUOTE] = ACTIONS(2015), - [sym_raw_string] = ACTIONS(2015), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(2017), + [sym_do_group] = STATE(377), + [sym_compound_statement] = STATE(377), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_do] = ACTIONS(633), }, [368] = { - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1924), - [sym_number] = ACTIONS(1926), - [anon_sym_GT_LPAREN] = ACTIONS(1924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1924), - [sym_raw_string] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1926), - [sym_word] = ACTIONS(1926), - [anon_sym_DOLLAR] = ACTIONS(1926), - [sym_ansii_c_string] = ACTIONS(1924), - [anon_sym_LT_LPAREN] = ACTIONS(1924), + [sym_do_group] = STATE(377), + [sym_compound_statement] = STATE(377), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_do] = ACTIONS(633), }, [369] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2021), - [sym_comment] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(2021), + [sym_ansii_c_string] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2021), + [sym__special_character] = ACTIONS(2021), + [anon_sym_BQUOTE] = ACTIONS(2021), + [sym_raw_string] = ACTIONS(2021), + [sym_number] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2023), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2023), + [anon_sym_esac] = ACTIONS(2025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2021), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2021), + [sym_word] = ACTIONS(2023), }, [370] = { - [sym_if_statement] = STATE(640), - [sym_function_definition] = STATE(640), - [sym_negated_command] = STATE(640), - [sym_test_command] = STATE(640), - [sym_variable_assignment] = STATE(702), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(1527), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_compound_statement] = STATE(640), - [sym_subshell] = STATE(640), - [sym_declaration_command] = STATE(640), - [sym_unset_command] = STATE(640), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(378), - [sym_c_style_for_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_case_statement] = STATE(640), - [sym_pipeline] = STATE(640), - [sym_list] = STATE(640), - [sym_command] = STATE(640), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_number] = ACTIONS(1932), + [sym_word] = ACTIONS(1932), + [anon_sym_DOLLAR] = ACTIONS(1932), + [sym_ansii_c_string] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_LT_LPAREN] = ACTIONS(1930), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_GT_LPAREN] = ACTIONS(1930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1930), + [sym_raw_string] = ACTIONS(1930), + [anon_sym_BQUOTE] = ACTIONS(1930), + }, + [371] = { + [sym_comment] = ACTIONS(23), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + }, + [372] = { + [sym_if_statement] = STATE(646), + [sym_function_definition] = STATE(646), + [sym_negated_command] = STATE(646), + [sym_test_command] = STATE(646), + [sym_variable_assignment] = STATE(708), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(1533), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(646), + [sym_for_statement] = STATE(646), + [sym_compound_statement] = STATE(646), + [sym_subshell] = STATE(646), + [sym_declaration_command] = STATE(646), + [sym_unset_command] = STATE(646), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(380), + [sym_c_style_for_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_case_statement] = STATE(646), + [sym_pipeline] = STATE(646), + [sym_list] = STATE(646), + [sym_command] = STATE(646), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(2021), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [sym_word] = ACTIONS(113), }, - [371] = { - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1941), - [sym_number] = ACTIONS(1943), - [anon_sym_GT_LPAREN] = ACTIONS(1941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1941), - [sym_raw_string] = ACTIONS(1941), - [anon_sym_BQUOTE] = ACTIONS(1941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1943), - [sym_word] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1943), - [sym_ansii_c_string] = ACTIONS(1941), - [anon_sym_LT_LPAREN] = ACTIONS(1941), + [373] = { + [sym_number] = ACTIONS(1949), + [sym_word] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [sym_ansii_c_string] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [anon_sym_LT_LPAREN] = ACTIONS(1947), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1949), + [anon_sym_GT_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1947), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1947), + [sym_raw_string] = ACTIONS(1947), + [anon_sym_BQUOTE] = ACTIONS(1947), }, - [372] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [sym_comment] = ACTIONS(53), + [374] = { + [sym_comment] = ACTIONS(23), + [anon_sym_SEMI_SEMI] = ACTIONS(2029), }, - [373] = { - [sym_if_statement] = STATE(640), - [sym_function_definition] = STATE(640), - [sym_negated_command] = STATE(640), - [sym_test_command] = STATE(640), - [sym_variable_assignment] = STATE(702), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(1527), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_compound_statement] = STATE(640), - [sym_subshell] = STATE(640), - [sym_declaration_command] = STATE(640), - [sym_unset_command] = STATE(640), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(380), - [sym_c_style_for_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_case_statement] = STATE(640), - [sym_pipeline] = STATE(640), - [sym_list] = STATE(640), - [sym_command] = STATE(640), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [375] = { + [sym_if_statement] = STATE(646), + [sym_function_definition] = STATE(646), + [sym_negated_command] = STATE(646), + [sym_test_command] = STATE(646), + [sym_variable_assignment] = STATE(708), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(1533), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(646), + [sym_for_statement] = STATE(646), + [sym_compound_statement] = STATE(646), + [sym_subshell] = STATE(646), + [sym_declaration_command] = STATE(646), + [sym_unset_command] = STATE(646), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(382), + [sym_c_style_for_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_case_statement] = STATE(646), + [sym_pipeline] = STATE(646), + [sym_list] = STATE(646), + [sym_command] = STATE(646), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - }, - [374] = { - [anon_sym_GT_LPAREN] = ACTIONS(2025), - [sym_number] = ACTIONS(2027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2025), - [sym_word] = ACTIONS(2027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2027), - [anon_sym_LT_LPAREN] = ACTIONS(2025), - [sym_ansii_c_string] = ACTIONS(2025), - [sym__special_character] = ACTIONS(2025), - [anon_sym_esac] = ACTIONS(2029), - [anon_sym_BQUOTE] = ACTIONS(2025), - [sym_raw_string] = ACTIONS(2025), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(2027), - }, - [375] = { - [anon_sym_LT_LT_DASH] = ACTIONS(2031), - [anon_sym_AMP_GT_GT] = ACTIONS(2031), - [anon_sym_LF] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [sym_file_descriptor] = ACTIONS(2033), - [anon_sym_GT] = ACTIONS(2031), - [anon_sym_AMP_GT] = ACTIONS(2031), - [anon_sym_PIPE_PIPE] = ACTIONS(2031), - [ts_builtin_sym_end] = ACTIONS(2033), - [anon_sym_LT_LT_LT] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_GT_AMP] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_LT_AMP] = ACTIONS(2031), - [anon_sym_GT_GT] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2031), - [anon_sym_SEMI_SEMI] = ACTIONS(2031), - [anon_sym_PIPE_AMP] = ACTIONS(2031), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_SEMI_SEMI] = ACTIONS(2029), + [sym_word] = ACTIONS(113), }, [376] = { - [sym_do_group] = STATE(381), - [sym_compound_statement] = STATE(381), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_do] = ACTIONS(677), + [anon_sym_LT_LPAREN] = ACTIONS(2031), + [sym_ansii_c_string] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__special_character] = ACTIONS(2031), + [anon_sym_BQUOTE] = ACTIONS(2031), + [sym_raw_string] = ACTIONS(2031), + [sym_number] = ACTIONS(2033), + [anon_sym_DOLLAR] = ACTIONS(2033), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2033), + [anon_sym_esac] = ACTIONS(2035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2031), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2031), + [sym_word] = ACTIONS(2033), }, [377] = { - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1977), - [sym_number] = ACTIONS(1979), - [anon_sym_GT_LPAREN] = ACTIONS(1977), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1977), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1977), - [sym_raw_string] = ACTIONS(1977), - [anon_sym_BQUOTE] = ACTIONS(1977), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1979), - [sym_word] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1979), - [sym_ansii_c_string] = ACTIONS(1977), - [anon_sym_LT_LPAREN] = ACTIONS(1977), + [anon_sym_LT_LT_DASH] = ACTIONS(2037), + [anon_sym_AMP_GT_GT] = ACTIONS(2037), + [anon_sym_LF] = ACTIONS(2039), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_LT_LT] = ACTIONS(2037), + [sym_file_descriptor] = ACTIONS(2039), + [anon_sym_GT] = ACTIONS(2037), + [anon_sym_AMP_GT] = ACTIONS(2037), + [anon_sym_PIPE_PIPE] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2037), + [anon_sym_GT_AMP] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2037), + [anon_sym_LT_AMP] = ACTIONS(2037), + [anon_sym_GT_GT] = ACTIONS(2037), + [ts_builtin_sym_end] = ACTIONS(2039), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2037), + [anon_sym_SEMI_SEMI] = ACTIONS(2037), + [anon_sym_PIPE_AMP] = ACTIONS(2037), }, [378] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2035), - [sym_comment] = ACTIONS(53), + [sym_do_group] = STATE(383), + [sym_compound_statement] = STATE(383), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_do] = ACTIONS(633), }, [379] = { - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1995), - [sym_number] = ACTIONS(1997), - [anon_sym_GT_LPAREN] = ACTIONS(1995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1995), - [sym_raw_string] = ACTIONS(1995), - [anon_sym_BQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1997), - [sym_word] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [sym_ansii_c_string] = ACTIONS(1995), - [anon_sym_LT_LPAREN] = ACTIONS(1995), + [sym_number] = ACTIONS(1985), + [sym_word] = ACTIONS(1985), + [anon_sym_DOLLAR] = ACTIONS(1985), + [sym_ansii_c_string] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(1983), + [anon_sym_LT_LPAREN] = ACTIONS(1983), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1983), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1985), + [anon_sym_GT_LPAREN] = ACTIONS(1983), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1983), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1983), + [sym_raw_string] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(1983), }, [380] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2037), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_SEMI_SEMI] = ACTIONS(2041), }, [381] = { - [anon_sym_LT_LT_DASH] = ACTIONS(2039), - [anon_sym_AMP_GT_GT] = ACTIONS(2039), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_LT_LT] = ACTIONS(2039), - [sym_file_descriptor] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2039), - [anon_sym_AMP_GT] = ACTIONS(2039), - [anon_sym_PIPE_PIPE] = ACTIONS(2039), - [ts_builtin_sym_end] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_GT_AMP] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_LT_AMP] = ACTIONS(2039), - [anon_sym_GT_GT] = ACTIONS(2039), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(2039), - [anon_sym_AMP] = ACTIONS(2039), - [anon_sym_SEMI_SEMI] = ACTIONS(2039), - [anon_sym_PIPE_AMP] = ACTIONS(2039), + [sym_number] = ACTIONS(2003), + [sym_word] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2003), + [sym_ansii_c_string] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [anon_sym_LT_LPAREN] = ACTIONS(2001), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(2001), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), + [anon_sym_GT_LPAREN] = ACTIONS(2001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2001), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2001), + [sym_raw_string] = ACTIONS(2001), + [anon_sym_BQUOTE] = ACTIONS(2001), }, [382] = { - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(2015), - [sym_number] = ACTIONS(2017), - [anon_sym_GT_LPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2015), - [sym_raw_string] = ACTIONS(2015), - [anon_sym_BQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2017), - [sym_word] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2017), - [sym_ansii_c_string] = ACTIONS(2015), - [anon_sym_LT_LPAREN] = ACTIONS(2015), + [sym_comment] = ACTIONS(23), + [anon_sym_SEMI_SEMI] = ACTIONS(2043), }, [383] = { - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(2025), - [sym_number] = ACTIONS(2027), - [anon_sym_GT_LPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2025), - [sym_raw_string] = ACTIONS(2025), - [anon_sym_BQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2027), - [sym_word] = ACTIONS(2027), - [anon_sym_DOLLAR] = ACTIONS(2027), - [sym_ansii_c_string] = ACTIONS(2025), - [anon_sym_LT_LPAREN] = ACTIONS(2025), + [anon_sym_LT_LT_DASH] = ACTIONS(2045), + [anon_sym_AMP_GT_GT] = ACTIONS(2045), + [anon_sym_LF] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(2045), + [sym_file_descriptor] = ACTIONS(2047), + [anon_sym_GT] = ACTIONS(2045), + [anon_sym_AMP_GT] = ACTIONS(2045), + [anon_sym_PIPE_PIPE] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_LT_LT_LT] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_GT_AMP] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_LT_AMP] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2045), + [ts_builtin_sym_end] = ACTIONS(2047), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2045), + [anon_sym_SEMI_SEMI] = ACTIONS(2045), + [anon_sym_PIPE_AMP] = ACTIONS(2045), }, [384] = { - [sym_concatenation] = STATE(402), - [sym_string] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [sym_variable_assignment] = STATE(402), - [sym_subscript] = STATE(2595), - [sym_arithmetic_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [aux_sym_declaration_command_repeat1] = STATE(402), - [aux_sym__literal_repeat1] = STATE(401), - [sym_simple_expansion] = STATE(400), - [anon_sym_AMP_GT_GT] = ACTIONS(135), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(135), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), - [anon_sym_LT_LPAREN] = ACTIONS(2049), - [sym_ansii_c_string] = ACTIONS(2051), - [anon_sym_PIPE_PIPE] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [aux_sym__simple_variable_name_token1] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_LT_AMP] = ACTIONS(135), - [anon_sym_GT_GT] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_LT_LT_DASH] = ACTIONS(135), - [anon_sym_GT_LPAREN] = ACTIONS(2049), - [sym_number] = ACTIONS(2051), - [anon_sym_LF] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2057), - [sym_variable_name] = ACTIONS(2059), - [anon_sym_RPAREN] = ACTIONS(135), - [sym_file_descriptor] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(135), - [sym_word] = ACTIONS(2051), - [anon_sym_AMP_GT] = ACTIONS(135), - [sym__special_character] = ACTIONS(2061), - [anon_sym_LT_LT_LT] = ACTIONS(135), - [anon_sym_GT_AMP] = ACTIONS(135), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2063), - [sym_raw_string] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(135), - [anon_sym_AMP] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(135), - [anon_sym_PIPE_AMP] = ACTIONS(135), + [sym_number] = ACTIONS(2023), + [sym_word] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2023), + [sym_ansii_c_string] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2021), + [anon_sym_LT_LPAREN] = ACTIONS(2021), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(2021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2023), + [anon_sym_GT_LPAREN] = ACTIONS(2021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2021), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2021), + [sym_raw_string] = ACTIONS(2021), + [anon_sym_BQUOTE] = ACTIONS(2021), }, [385] = { - [sym_concatenation] = STATE(405), - [sym_string] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym_unset_command_repeat1] = STATE(405), - [sym_arithmetic_expansion] = STATE(403), - [sym_string_expansion] = STATE(403), - [sym_expansion] = STATE(403), - [aux_sym__literal_repeat1] = STATE(404), - [sym_simple_expansion] = STATE(403), - [anon_sym_AMP_GT_GT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(2065), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), - [anon_sym_LT_LPAREN] = ACTIONS(2071), - [sym_ansii_c_string] = ACTIONS(2073), - [anon_sym_PIPE_PIPE] = ACTIONS(161), - [anon_sym_PIPE] = ACTIONS(161), - [aux_sym__simple_variable_name_token1] = ACTIONS(2075), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_LT_AMP] = ACTIONS(161), - [anon_sym_GT_GT] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_LT_LT_DASH] = ACTIONS(161), - [anon_sym_GT_LPAREN] = ACTIONS(2071), - [sym_number] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2079), - [anon_sym_RPAREN] = ACTIONS(161), - [sym_file_descriptor] = ACTIONS(177), - [anon_sym_GT] = ACTIONS(161), - [sym_word] = ACTIONS(2073), - [anon_sym_AMP_GT] = ACTIONS(161), - [sym__special_character] = ACTIONS(2081), - [anon_sym_LT_LT_LT] = ACTIONS(161), - [anon_sym_GT_AMP] = ACTIONS(161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_raw_string] = ACTIONS(2073), - [anon_sym_AMP_AMP] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(161), - [anon_sym_SEMI_SEMI] = ACTIONS(161), - [anon_sym_PIPE_AMP] = ACTIONS(161), + [sym_number] = ACTIONS(2033), + [sym_word] = ACTIONS(2033), + [anon_sym_DOLLAR] = ACTIONS(2033), + [sym_ansii_c_string] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [anon_sym_LT_LPAREN] = ACTIONS(2031), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(2031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2033), + [anon_sym_GT_LPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2031), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2031), + [sym_raw_string] = ACTIONS(2031), + [anon_sym_BQUOTE] = ACTIONS(2031), }, [386] = { - [aux_sym_concatenation_repeat1] = STATE(410), - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [sym_ansii_c_string] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [sym__concat] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_number] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [anon_sym_RPAREN] = ACTIONS(225), - [sym_word] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [sym_file_descriptor] = ACTIONS(229), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [sym__special_character] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), + [sym_concatenation] = STATE(404), + [sym_string] = STATE(402), + [sym_command_substitution] = STATE(402), + [sym_process_substitution] = STATE(402), + [sym_variable_assignment] = STATE(404), + [sym_subscript] = STATE(2601), + [sym_arithmetic_expansion] = STATE(402), + [sym_string_expansion] = STATE(402), + [sym_expansion] = STATE(402), + [aux_sym_declaration_command_repeat1] = STATE(404), + [aux_sym__literal_repeat1] = STATE(403), + [sym_simple_expansion] = STATE(402), + [sym_word] = ACTIONS(2049), + [anon_sym_AMP_GT_GT] = ACTIONS(137), + [sym__special_character] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(137), + [anon_sym_BQUOTE] = ACTIONS(2053), + [sym_raw_string] = ACTIONS(2049), + [sym_number] = ACTIONS(2049), + [anon_sym_PIPE_PIPE] = ACTIONS(137), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT_AMP] = ACTIONS(137), + [anon_sym_GT_GT] = ACTIONS(137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2055), + [anon_sym_LT_LT_DASH] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(2057), + [sym_ansii_c_string] = ACTIONS(2049), + [anon_sym_LF] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(2059), + [sym_variable_name] = ACTIONS(2061), + [anon_sym_RPAREN] = ACTIONS(137), + [sym_file_descriptor] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(137), + [aux_sym__simple_variable_name_token1] = ACTIONS(2063), + [anon_sym_AMP_GT] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_LT_LT_LT] = ACTIONS(137), + [anon_sym_GT_AMP] = ACTIONS(137), + [anon_sym_GT_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2069), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(137), + [anon_sym_PIPE_AMP] = ACTIONS(137), }, [387] = { - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), + [sym_concatenation] = STATE(407), + [sym_string] = STATE(405), + [sym_command_substitution] = STATE(405), + [sym_process_substitution] = STATE(405), + [aux_sym_unset_command_repeat1] = STATE(407), + [sym_arithmetic_expansion] = STATE(405), + [sym_string_expansion] = STATE(405), + [sym_expansion] = STATE(405), + [aux_sym__literal_repeat1] = STATE(406), + [sym_simple_expansion] = STATE(405), + [sym_word] = ACTIONS(2071), + [anon_sym_AMP_GT_GT] = ACTIONS(163), + [sym__special_character] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(163), + [anon_sym_BQUOTE] = ACTIONS(2075), + [sym_raw_string] = ACTIONS(2071), + [sym_number] = ACTIONS(2071), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(163), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_LT_AMP] = ACTIONS(163), + [anon_sym_GT_GT] = ACTIONS(163), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2077), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(2079), + [sym_ansii_c_string] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(2081), + [anon_sym_RPAREN] = ACTIONS(163), + [sym_file_descriptor] = ACTIONS(173), + [anon_sym_GT] = ACTIONS(163), + [aux_sym__simple_variable_name_token1] = ACTIONS(2083), + [anon_sym_AMP_GT] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_LT_LT_LT] = ACTIONS(163), + [anon_sym_GT_AMP] = ACTIONS(163), + [anon_sym_GT_LPAREN] = ACTIONS(2079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_SEMI_SEMI] = ACTIONS(163), + [anon_sym_PIPE_AMP] = ACTIONS(163), + }, + [388] = { + [aux_sym_concatenation_repeat1] = STATE(408), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), + }, + [389] = { + [aux_sym_concatenation_repeat1] = STATE(408), + [sym_word] = ACTIONS(197), + [anon_sym_AMP_GT_GT] = ACTIONS(197), + [sym__special_character] = ACTIONS(197), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(197), + [sym_number] = ACTIONS(197), + [anon_sym_PIPE_PIPE] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [sym__concat] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LT_AMP] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(197), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LT_LPAREN] = ACTIONS(197), + [sym_ansii_c_string] = ACTIONS(197), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_RPAREN] = ACTIONS(197), + [sym_file_descriptor] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_AMP_GT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_LT_LT_LT] = ACTIONS(197), + [anon_sym_GT_AMP] = ACTIONS(197), + [anon_sym_GT_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_AMP_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI] = ACTIONS(197), + [anon_sym_PIPE_AMP] = ACTIONS(197), + }, + [390] = { + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), [sym_test_command] = STATE(415), - [sym_variable_assignment] = STATE(395), - [aux_sym_command_repeat1] = STATE(395), - [sym_subscript] = STATE(2585), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), + [sym_variable_assignment] = STATE(397), + [aux_sym_command_repeat1] = STATE(397), + [sym_subscript] = STATE(2591), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), [sym_command] = STATE(415), - [sym_command_name] = STATE(396), - [aux_sym__literal_repeat1] = STATE(393), - [sym_simple_expansion] = STATE(386), + [sym_command_name] = STATE(398), + [aux_sym__literal_repeat1] = STATE(395), + [sym_simple_expansion] = STATE(389), [sym_subshell] = STATE(415), - [sym_file_redirect] = STATE(395), + [sym_file_redirect] = STATE(397), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [sym_comment] = ACTIONS(23), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [sym_variable_name] = ACTIONS(273), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(93), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_variable_name] = ACTIONS(267), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [388] = { - [aux_sym_concatenation_repeat1] = STATE(410), - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [sym__concat] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_RPAREN] = ACTIONS(225), - [sym_word] = ACTIONS(225), - [sym__special_character] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [sym_ansii_c_string] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [sym_number] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(229), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [sym_file_descriptor] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), - }, - [389] = { - [aux_sym_concatenation_repeat1] = STATE(410), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_EQ_TILDE] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_AMP_GT] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), - }, - [390] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_SEMI_SEMI] = ACTIONS(2089), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LF] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2093), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(77), }, [391] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(2091), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(2089), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(2093), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_file_descriptor] = ACTIONS(345), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(2089), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [aux_sym_concatenation_repeat1] = STATE(408), + [anon_sym_AMP_GT_GT] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [sym__concat] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_LT_AMP] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(197), + [anon_sym_LT_LPAREN] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_RPAREN] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_GT_AMP] = ACTIONS(197), + [anon_sym_GT_LPAREN] = ACTIONS(197), + [anon_sym_AMP_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI] = ACTIONS(197), + [sym_word] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(2093), + [sym__special_character] = ACTIONS(197), + [anon_sym_LT_LT] = ACTIONS(197), + [sym_raw_string] = ACTIONS(197), + [sym_number] = ACTIONS(197), + [anon_sym_PIPE_PIPE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [sym_ansii_c_string] = ACTIONS(197), + [anon_sym_LF] = ACTIONS(199), + [sym_file_descriptor] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_AMP_GT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_LT_LT_LT] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_PIPE_AMP] = ACTIONS(197), }, [392] = { - [sym_if_statement] = STATE(421), - [sym_function_definition] = STATE(421), - [sym_negated_command] = STATE(421), - [sym_test_command] = STATE(421), - [sym_variable_assignment] = STATE(422), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(101), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(421), - [sym_for_statement] = STATE(421), - [sym_compound_statement] = STATE(421), - [sym_subshell] = STATE(421), - [sym_declaration_command] = STATE(421), - [sym_unset_command] = STATE(421), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(421), - [sym_while_statement] = STATE(421), - [sym_case_statement] = STATE(421), - [sym_pipeline] = STATE(421), - [sym_list] = STATE(421), - [sym_command] = STATE(421), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_SEMI_SEMI] = ACTIONS(2095), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2099), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_AMP_GT] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_PIPE_AMP] = ACTIONS(449), + }, + [393] = { + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2095), + [sym_variable_name] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(2099), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(2095), + [anon_sym_PIPE_AMP] = ACTIONS(449), + }, + [394] = { + [sym_if_statement] = STATE(424), + [sym_function_definition] = STATE(424), + [sym_negated_command] = STATE(424), + [sym_test_command] = STATE(424), + [sym_variable_assignment] = STATE(425), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(102), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(424), + [sym_for_statement] = STATE(424), + [sym_compound_statement] = STATE(424), + [sym_subshell] = STATE(424), + [sym_declaration_command] = STATE(424), + [sym_unset_command] = STATE(424), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(424), + [sym_while_statement] = STATE(424), + [sym_case_statement] = STATE(424), + [sym_pipeline] = STATE(424), + [sym_list] = STATE(424), + [sym_command] = STATE(424), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [393] = { - [aux_sym__literal_repeat1] = STATE(425), - [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_DQUOTE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), - [anon_sym_LT_LPAREN] = ACTIONS(347), - [sym_ansii_c_string] = ACTIONS(347), - [anon_sym_PIPE_PIPE] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_LT_AMP] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_EQ_TILDE] = ACTIONS(347), - [anon_sym_DOLLAR] = ACTIONS(347), - [anon_sym_LT_LT_DASH] = ACTIONS(347), - [anon_sym_GT_LPAREN] = ACTIONS(347), - [sym_number] = ACTIONS(347), - [anon_sym_LF] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_RPAREN] = ACTIONS(347), - [sym_word] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(347), - [sym_file_descriptor] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(347), - [sym__special_character] = ACTIONS(2095), - [anon_sym_LT_LT_LT] = ACTIONS(347), - [anon_sym_GT_AMP] = ACTIONS(347), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(347), - [sym_raw_string] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(347), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_SEMI_SEMI] = ACTIONS(347), - [anon_sym_PIPE_AMP] = ACTIONS(347), + [395] = { + [aux_sym__literal_repeat1] = STATE(428), + [sym_word] = ACTIONS(351), + [anon_sym_AMP_GT_GT] = ACTIONS(351), + [sym__special_character] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_BQUOTE] = ACTIONS(351), + [sym_raw_string] = ACTIONS(351), + [sym_number] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_AMP] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_EQ_TILDE] = ACTIONS(351), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LPAREN] = ACTIONS(351), + [sym_ansii_c_string] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym_file_descriptor] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_AMP_GT] = ACTIONS(351), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(351), + [anon_sym_GT_AMP] = ACTIONS(351), + [anon_sym_GT_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(351), + [anon_sym_SEMI_SEMI] = ACTIONS(351), + [anon_sym_PIPE_AMP] = ACTIONS(351), }, - [394] = { - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [sym_ansii_c_string] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_number] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [anon_sym_RPAREN] = ACTIONS(225), - [sym_word] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [sym_file_descriptor] = ACTIONS(229), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [sym__special_character] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), + [396] = { + [sym_word] = ACTIONS(197), + [anon_sym_AMP_GT_GT] = ACTIONS(197), + [sym__special_character] = ACTIONS(197), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(197), + [sym_number] = ACTIONS(197), + [anon_sym_PIPE_PIPE] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LT_AMP] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(197), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LT_LPAREN] = ACTIONS(197), + [sym_ansii_c_string] = ACTIONS(197), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_RPAREN] = ACTIONS(197), + [sym_file_descriptor] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_AMP_GT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_LT_LT_LT] = ACTIONS(197), + [anon_sym_GT_AMP] = ACTIONS(197), + [anon_sym_GT_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_AMP_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI] = ACTIONS(197), + [anon_sym_PIPE_AMP] = ACTIONS(197), }, - [395] = { - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [sym_variable_assignment] = STATE(105), - [sym_subscript] = STATE(2585), - [aux_sym_command_repeat1] = STATE(105), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [sym_command_name] = STATE(426), - [aux_sym__literal_repeat1] = STATE(393), - [sym_simple_expansion] = STATE(386), - [sym_file_redirect] = STATE(105), + [397] = { + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [sym_variable_assignment] = STATE(106), + [sym_subscript] = STATE(2591), + [aux_sym_command_repeat1] = STATE(106), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [sym_command_name] = STATE(429), + [aux_sym__literal_repeat1] = STATE(395), + [sym_simple_expansion] = STATE(389), + [sym_file_redirect] = STATE(106), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), + [sym__special_character] = ACTIONS(2103), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [sym_comment] = ACTIONS(23), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [sym_variable_name] = ACTIONS(273), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(93), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_variable_name] = ACTIONS(267), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [sym__special_character] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [sym_raw_string] = ACTIONS(79), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [sym_word] = ACTIONS(77), }, - [396] = { - [sym_concatenation] = STATE(429), - [sym_string] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_arithmetic_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [aux_sym__literal_repeat1] = STATE(430), - [sym_simple_expansion] = STATE(427), - [aux_sym_command_repeat2] = STATE(429), - [anon_sym_AMP_GT_GT] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(2103), - [sym_ansii_c_string] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(359), - [anon_sym_LT_AMP] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_EQ_TILDE] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(359), - [anon_sym_GT_LPAREN] = ACTIONS(2103), - [sym_number] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(359), - [sym_file_descriptor] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(359), + [398] = { + [sym_concatenation] = STATE(432), + [sym_string] = STATE(430), + [sym_command_substitution] = STATE(430), + [sym_process_substitution] = STATE(430), + [sym_arithmetic_expansion] = STATE(430), + [sym_string_expansion] = STATE(430), + [sym_expansion] = STATE(430), + [aux_sym__literal_repeat1] = STATE(433), + [sym_simple_expansion] = STATE(430), + [aux_sym_command_repeat2] = STATE(432), [sym_word] = ACTIONS(2105), - [anon_sym_AMP_GT] = ACTIONS(359), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [sym__special_character] = ACTIONS(103), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [anon_sym_GT_AMP] = ACTIONS(359), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), + [anon_sym_AMP_GT_GT] = ACTIONS(365), + [sym__special_character] = ACTIONS(71), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_BQUOTE] = ACTIONS(2107), [sym_raw_string] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(359), - [anon_sym_SEMI_SEMI] = ACTIONS(359), - [anon_sym_PIPE_AMP] = ACTIONS(359), - }, - [397] = { - [aux_sym_concatenation_repeat1] = STATE(1056), - [anon_sym_LT_LT_DASH] = ACTIONS(381), - [anon_sym_AMP_GT_GT] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(381), - [sym_file_descriptor] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_AMP_GT] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [ts_builtin_sym_end] = ACTIONS(379), - [anon_sym_LT_LT_LT] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_GT_AMP] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_LT_AMP] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [sym__concat] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_SEMI_SEMI] = ACTIONS(381), - [anon_sym_PIPE_AMP] = ACTIONS(381), - }, - [398] = { - [anon_sym_LT_LT_DASH] = ACTIONS(381), - [anon_sym_AMP_GT_GT] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(381), - [sym_file_descriptor] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_AMP_GT] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [ts_builtin_sym_end] = ACTIONS(379), - [anon_sym_LT_LT_LT] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_GT_AMP] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_LT_AMP] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_SEMI_SEMI] = ACTIONS(381), - [anon_sym_PIPE_AMP] = ACTIONS(381), + [sym_number] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(365), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(365), + [anon_sym_LT_AMP] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_EQ_TILDE] = ACTIONS(2109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2111), + [anon_sym_LT_LT_DASH] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(2113), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(365), + [sym_file_descriptor] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_AMP_GT] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(365), + [anon_sym_GT_AMP] = ACTIONS(365), + [anon_sym_GT_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_SEMI_SEMI] = ACTIONS(365), + [anon_sym_PIPE_AMP] = ACTIONS(365), }, [399] = { - [aux_sym__literal_repeat1] = STATE(1061), - [anon_sym_LT_LT_DASH] = ACTIONS(387), - [anon_sym_AMP_GT_GT] = ACTIONS(387), - [anon_sym_LF] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(387), - [sym_file_descriptor] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_AMP_GT] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [ts_builtin_sym_end] = ACTIONS(385), - [anon_sym_LT_LT_LT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_GT_AMP] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_LT_AMP] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [sym__special_character] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_SEMI_SEMI] = ACTIONS(387), - [anon_sym_PIPE_AMP] = ACTIONS(387), + [aux_sym_concatenation_repeat1] = STATE(1061), + [anon_sym_LT_LT_DASH] = ACTIONS(385), + [anon_sym_AMP_GT_GT] = ACTIONS(385), + [anon_sym_LF] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [sym_file_descriptor] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_LT_LT_LT] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [ts_builtin_sym_end] = ACTIONS(383), + [sym__concat] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_SEMI_SEMI] = ACTIONS(385), + [anon_sym_PIPE_AMP] = ACTIONS(385), }, [400] = { - [aux_sym_concatenation_repeat1] = STATE(858), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(391), - [sym_ansii_c_string] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [sym__concat] = ACTIONS(2113), - [anon_sym_PIPE] = ACTIONS(391), - [aux_sym__simple_variable_name_token1] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_LT_LT_DASH] = ACTIONS(391), - [anon_sym_GT_LPAREN] = ACTIONS(391), - [sym_number] = ACTIONS(391), - [anon_sym_LF] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), - [sym_variable_name] = ACTIONS(395), - [anon_sym_RPAREN] = ACTIONS(391), - [sym_word] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [sym_file_descriptor] = ACTIONS(395), - [anon_sym_AMP_GT] = ACTIONS(391), - [sym__special_character] = ACTIONS(391), - [anon_sym_LT_LT_LT] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_LT_LT_DASH] = ACTIONS(385), + [anon_sym_AMP_GT_GT] = ACTIONS(385), + [anon_sym_LF] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [sym_file_descriptor] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_LT_LT_LT] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [ts_builtin_sym_end] = ACTIONS(383), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_raw_string] = ACTIONS(391), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_SEMI_SEMI] = ACTIONS(391), - [anon_sym_PIPE_AMP] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_SEMI_SEMI] = ACTIONS(385), + [anon_sym_PIPE_AMP] = ACTIONS(385), }, [401] = { - [aux_sym__literal_repeat1] = STATE(863), - [anon_sym_AMP_GT_GT] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), - [anon_sym_LT_LPAREN] = ACTIONS(397), - [sym_ansii_c_string] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [aux_sym__simple_variable_name_token1] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_LT_LT_DASH] = ACTIONS(397), - [anon_sym_GT_LPAREN] = ACTIONS(397), - [sym_number] = ACTIONS(397), + [aux_sym__literal_repeat1] = STATE(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(393), + [anon_sym_LF] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(393), + [sym__special_character] = ACTIONS(1240), + [anon_sym_LT_LT] = ACTIONS(393), + [sym_file_descriptor] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_LT_LT_LT] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_GT_AMP] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_AMP] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [ts_builtin_sym_end] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_SEMI_SEMI] = ACTIONS(393), + [anon_sym_PIPE_AMP] = ACTIONS(393), + }, + [402] = { + [aux_sym_concatenation_repeat1] = STATE(863), + [sym_word] = ACTIONS(395), + [anon_sym_AMP_GT_GT] = ACTIONS(395), + [sym__special_character] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(395), + [sym_raw_string] = ACTIONS(395), + [sym_number] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(395), + [sym__concat] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(395), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_LT_AMP] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(395), + [anon_sym_LT_LT_DASH] = ACTIONS(395), + [anon_sym_LT_LPAREN] = ACTIONS(395), + [sym_ansii_c_string] = ACTIONS(395), [anon_sym_LF] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), [sym_variable_name] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(397), - [sym_word] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(395), + [aux_sym__simple_variable_name_token1] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), [sym_file_descriptor] = ACTIONS(399), - [anon_sym_AMP_GT] = ACTIONS(397), - [sym__special_character] = ACTIONS(2115), - [anon_sym_LT_LT_LT] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(397), - [sym_raw_string] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_SEMI_SEMI] = ACTIONS(397), - [anon_sym_PIPE_AMP] = ACTIONS(397), - }, - [402] = { - [sym_concatenation] = STATE(432), - [sym_string] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [sym_variable_assignment] = STATE(432), - [sym_subscript] = STATE(2595), - [sym_arithmetic_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [aux_sym_declaration_command_repeat1] = STATE(432), - [aux_sym__literal_repeat1] = STATE(401), - [sym_simple_expansion] = STATE(400), - [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), - [anon_sym_LT_LPAREN] = ACTIONS(2049), - [sym_ansii_c_string] = ACTIONS(2051), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [aux_sym__simple_variable_name_token1] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_LT_AMP] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_LT_LT_DASH] = ACTIONS(403), - [anon_sym_GT_LPAREN] = ACTIONS(2049), - [sym_number] = ACTIONS(2051), - [anon_sym_LF] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2057), - [sym_variable_name] = ACTIONS(2059), - [anon_sym_RPAREN] = ACTIONS(403), - [sym_file_descriptor] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(403), - [sym_word] = ACTIONS(2051), - [anon_sym_AMP_GT] = ACTIONS(403), - [sym__special_character] = ACTIONS(2061), - [anon_sym_LT_LT_LT] = ACTIONS(403), - [anon_sym_GT_AMP] = ACTIONS(403), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2063), - [sym_raw_string] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_SEMI_SEMI] = ACTIONS(403), - [anon_sym_PIPE_AMP] = ACTIONS(403), + [anon_sym_AMP_GT] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_LT_LT_LT] = ACTIONS(395), + [anon_sym_GT_AMP] = ACTIONS(395), + [anon_sym_GT_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_SEMI_SEMI] = ACTIONS(395), + [anon_sym_PIPE_AMP] = ACTIONS(395), }, [403] = { - [aux_sym_concatenation_repeat1] = STATE(891), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(409), - [aux_sym__simple_variable_name_token1] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [anon_sym_RPAREN] = ACTIONS(409), - [sym_word] = ACTIONS(409), - [anon_sym_GT] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(413), - [anon_sym_AMP_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [aux_sym__literal_repeat1] = STATE(869), + [sym_word] = ACTIONS(401), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [sym__special_character] = ACTIONS(2121), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_BQUOTE] = ACTIONS(401), + [sym_raw_string] = ACTIONS(401), + [sym_number] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(401), + [anon_sym_LT_LT_DASH] = ACTIONS(401), + [anon_sym_LT_LPAREN] = ACTIONS(401), + [sym_ansii_c_string] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_DQUOTE] = ACTIONS(401), + [sym_variable_name] = ACTIONS(405), + [anon_sym_RPAREN] = ACTIONS(401), + [aux_sym__simple_variable_name_token1] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [sym_file_descriptor] = ACTIONS(405), + [anon_sym_AMP_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_LPAREN] = ACTIONS(401), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_SEMI_SEMI] = ACTIONS(401), + [anon_sym_PIPE_AMP] = ACTIONS(401), }, [404] = { - [aux_sym__literal_repeat1] = STATE(896), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(415), - [aux_sym__simple_variable_name_token1] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_number] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [anon_sym_RPAREN] = ACTIONS(415), - [sym_word] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(2121), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [sym_concatenation] = STATE(435), + [sym_string] = STATE(402), + [sym_command_substitution] = STATE(402), + [sym_process_substitution] = STATE(402), + [sym_variable_assignment] = STATE(435), + [sym_subscript] = STATE(2601), + [sym_arithmetic_expansion] = STATE(402), + [sym_string_expansion] = STATE(402), + [sym_expansion] = STATE(402), + [aux_sym_declaration_command_repeat1] = STATE(435), + [aux_sym__literal_repeat1] = STATE(403), + [sym_simple_expansion] = STATE(402), + [sym_word] = ACTIONS(2049), + [anon_sym_AMP_GT_GT] = ACTIONS(407), + [sym__special_character] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_BQUOTE] = ACTIONS(2053), + [sym_raw_string] = ACTIONS(2049), + [sym_number] = ACTIONS(2049), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_LT_AMP] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2055), + [anon_sym_LT_LT_DASH] = ACTIONS(407), + [anon_sym_LT_LPAREN] = ACTIONS(2057), + [sym_ansii_c_string] = ACTIONS(2049), + [anon_sym_LF] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(2059), + [sym_variable_name] = ACTIONS(2061), + [anon_sym_RPAREN] = ACTIONS(407), + [sym_file_descriptor] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(407), + [aux_sym__simple_variable_name_token1] = ACTIONS(2123), + [anon_sym_AMP_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_LT_LT_LT] = ACTIONS(407), + [anon_sym_GT_AMP] = ACTIONS(407), + [anon_sym_GT_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2069), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_SEMI_SEMI] = ACTIONS(407), + [anon_sym_PIPE_AMP] = ACTIONS(407), }, [405] = { - [sym_concatenation] = STATE(433), - [sym_string] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym_unset_command_repeat1] = STATE(433), - [sym_arithmetic_expansion] = STATE(403), - [sym_string_expansion] = STATE(403), - [sym_expansion] = STATE(403), - [aux_sym__literal_repeat1] = STATE(404), - [sym_simple_expansion] = STATE(403), - [anon_sym_AMP_GT_GT] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(2065), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), - [anon_sym_LT_LPAREN] = ACTIONS(2071), - [sym_ansii_c_string] = ACTIONS(2073), - [anon_sym_PIPE_PIPE] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(421), - [aux_sym__simple_variable_name_token1] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_LT_AMP] = ACTIONS(421), - [anon_sym_GT_GT] = ACTIONS(421), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_LT_LT_DASH] = ACTIONS(421), - [anon_sym_GT_LPAREN] = ACTIONS(2071), - [sym_number] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2079), - [anon_sym_RPAREN] = ACTIONS(421), - [sym_file_descriptor] = ACTIONS(425), - [anon_sym_GT] = ACTIONS(421), - [sym_word] = ACTIONS(2073), - [anon_sym_AMP_GT] = ACTIONS(421), - [sym__special_character] = ACTIONS(2081), - [anon_sym_LT_LT_LT] = ACTIONS(421), - [anon_sym_GT_AMP] = ACTIONS(421), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_raw_string] = ACTIONS(2073), - [anon_sym_AMP_AMP] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_SEMI_SEMI] = ACTIONS(421), - [anon_sym_PIPE_AMP] = ACTIONS(421), + [aux_sym_concatenation_repeat1] = STATE(896), + [sym_word] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(413), + [sym__concat] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(413), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_LF] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [aux_sym__simple_variable_name_token1] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(417), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [406] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_EQ_TILDE] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [anon_sym_RPAREN] = ACTIONS(439), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [sym_file_descriptor] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(439), - [anon_sym_EQ_EQ] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [aux_sym__literal_repeat1] = STATE(902), + [sym_word] = ACTIONS(419), + [anon_sym_AMP_GT_GT] = ACTIONS(419), + [sym__special_character] = ACTIONS(2127), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_raw_string] = ACTIONS(419), + [sym_number] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_LT_AMP] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(419), + [anon_sym_LT_LT_DASH] = ACTIONS(419), + [anon_sym_LT_LPAREN] = ACTIONS(419), + [sym_ansii_c_string] = ACTIONS(419), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [aux_sym__simple_variable_name_token1] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(423), + [anon_sym_AMP_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_LT_LT_LT] = ACTIONS(419), + [anon_sym_GT_AMP] = ACTIONS(419), + [anon_sym_GT_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_SEMI_SEMI] = ACTIONS(419), + [anon_sym_PIPE_AMP] = ACTIONS(419), }, [407] = { - [aux_sym_concatenation_repeat1] = STATE(820), - [anon_sym_BANG_EQ] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(445), - [sym_test_operator] = ACTIONS(445), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_RBRACK] = ACTIONS(445), - [anon_sym_LT_LT] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(445), - [anon_sym_PIPE_PIPE] = ACTIONS(445), - [anon_sym_GT_EQ] = ACTIONS(445), - [sym__concat] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(447), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(445), - [anon_sym_EQ_TILDE] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), - [anon_sym_AMP_AMP] = ACTIONS(445), - [anon_sym_LT_EQ] = ACTIONS(445), - [anon_sym_DASH_EQ] = ACTIONS(445), + [sym_concatenation] = STATE(436), + [sym_string] = STATE(405), + [sym_command_substitution] = STATE(405), + [sym_process_substitution] = STATE(405), + [aux_sym_unset_command_repeat1] = STATE(436), + [sym_arithmetic_expansion] = STATE(405), + [sym_string_expansion] = STATE(405), + [sym_expansion] = STATE(405), + [aux_sym__literal_repeat1] = STATE(406), + [sym_simple_expansion] = STATE(405), + [sym_word] = ACTIONS(2071), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [sym__special_character] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(2075), + [sym_raw_string] = ACTIONS(2071), + [sym_number] = ACTIONS(2071), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_PIPE] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(425), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2077), + [anon_sym_LT_LT_DASH] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(2079), + [sym_ansii_c_string] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_DQUOTE] = ACTIONS(2081), + [anon_sym_RPAREN] = ACTIONS(425), + [sym_file_descriptor] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(425), + [aux_sym__simple_variable_name_token1] = ACTIONS(2129), + [anon_sym_AMP_GT] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_LT_LT_LT] = ACTIONS(425), + [anon_sym_GT_AMP] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(2079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_SEMI_SEMI] = ACTIONS(425), + [anon_sym_PIPE_AMP] = ACTIONS(425), }, [408] = { - [sym_expansion] = STATE(407), - [sym_unary_expression] = STATE(435), - [sym_postfix_expression] = STATE(435), - [sym_concatenation] = STATE(435), - [sym_string] = STATE(407), - [sym_command_substitution] = STATE(407), - [sym_process_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(435), - [aux_sym__literal_repeat1] = STATE(409), - [sym_simple_expansion] = STATE(407), - [sym__expression] = STATE(435), - [sym_binary_expression] = STATE(435), - [sym_arithmetic_expansion] = STATE(407), - [sym_string_expansion] = STATE(407), - [anon_sym_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_number] = ACTIONS(303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), - [sym_word] = ACTIONS(303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [sym_ansii_c_string] = ACTIONS(315), - [sym__special_character] = ACTIONS(317), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(319), - [sym_raw_string] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_test_operator] = ACTIONS(323), + [aux_sym_concatenation_repeat1] = STATE(439), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_EQ_TILDE] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [anon_sym_RPAREN] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [409] = { - [aux_sym__literal_repeat1] = STATE(825), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [sym_test_operator] = ACTIONS(451), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_RBRACK] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(451), - [sym__special_character] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(453), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(451), - [anon_sym_EQ_TILDE] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), + [anon_sym_AMP_GT_GT] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(445), + [anon_sym_BQUOTE] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PIPE] = ACTIONS(445), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_LT_AMP] = ACTIONS(445), + [anon_sym_GT_GT] = ACTIONS(445), + [anon_sym_LT_LT_DASH] = ACTIONS(445), + [anon_sym_LF] = ACTIONS(447), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_RPAREN] = ACTIONS(445), + [sym_file_descriptor] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_AMP_GT] = ACTIONS(445), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_GT_AMP] = ACTIONS(445), + [anon_sym_esac] = ACTIONS(445), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_SEMI_SEMI] = ACTIONS(445), + [anon_sym_PIPE_AMP] = ACTIONS(445), }, [410] = { - [aux_sym_concatenation_repeat1] = STATE(444), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_EQ_TILDE] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(475), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_AMP_GT] = ACTIONS(475), - [anon_sym_EQ_EQ] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [aux_sym_concatenation_repeat1] = STATE(825), + [anon_sym_BANG_EQ] = ACTIONS(467), + [anon_sym_PLUS_EQ] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_GT_EQ] = ACTIONS(467), + [sym__concat] = ACTIONS(2133), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_EQ_TILDE] = ACTIONS(467), + [anon_sym_PLUS_PLUS] = ACTIONS(467), + [anon_sym_AMP_AMP] = ACTIONS(467), + [anon_sym_LT_EQ] = ACTIONS(467), + [sym_test_operator] = ACTIONS(467), + [anon_sym_DASH_EQ] = ACTIONS(467), }, [411] = { - [anon_sym_AMP_GT_GT] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(483), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_AMP] = ACTIONS(483), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_LT_LT_DASH] = ACTIONS(483), - [anon_sym_LF] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(483), - [anon_sym_RPAREN] = ACTIONS(483), - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_AMP_GT] = ACTIONS(483), - [anon_sym_LT_LT_LT] = ACTIONS(483), - [anon_sym_GT_AMP] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(483), - [anon_sym_esac] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_SEMI_SEMI] = ACTIONS(483), - [anon_sym_PIPE_AMP] = ACTIONS(483), + [sym_expansion] = STATE(410), + [sym_unary_expression] = STATE(445), + [sym_postfix_expression] = STATE(445), + [sym_concatenation] = STATE(445), + [sym_string] = STATE(410), + [sym_command_substitution] = STATE(410), + [sym_process_substitution] = STATE(410), + [sym_parenthesized_expression] = STATE(445), + [aux_sym__literal_repeat1] = STATE(413), + [sym_simple_expansion] = STATE(410), + [sym__expression] = STATE(445), + [sym_binary_expression] = STATE(445), + [sym_arithmetic_expansion] = STATE(410), + [sym_string_expansion] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [sym_ansii_c_string] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(297), + [sym__special_character] = ACTIONS(299), + [aux_sym_unary_expression_token1] = ACTIONS(301), + [anon_sym_BQUOTE] = ACTIONS(303), + [sym_raw_string] = ACTIONS(293), + [sym_number] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(307), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), + [sym_test_operator] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(315), + [sym_word] = ACTIONS(305), }, [412] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_EQ_TILDE] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [anon_sym_RPAREN] = ACTIONS(505), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [sym_file_descriptor] = ACTIONS(507), - [anon_sym_AMP_GT] = ACTIONS(505), - [anon_sym_EQ_EQ] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [sym_expansion] = STATE(410), + [sym_unary_expression] = STATE(446), + [sym_postfix_expression] = STATE(446), + [sym_concatenation] = STATE(446), + [sym_string] = STATE(410), + [sym_command_substitution] = STATE(410), + [sym_process_substitution] = STATE(410), + [sym_parenthesized_expression] = STATE(446), + [aux_sym__literal_repeat1] = STATE(413), + [sym_simple_expansion] = STATE(410), + [sym__expression] = STATE(446), + [sym_binary_expression] = STATE(446), + [sym_arithmetic_expansion] = STATE(410), + [sym_string_expansion] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [sym_ansii_c_string] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(297), + [sym__special_character] = ACTIONS(299), + [aux_sym_unary_expression_token1] = ACTIONS(301), + [anon_sym_BQUOTE] = ACTIONS(303), + [sym_raw_string] = ACTIONS(293), + [sym_number] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(307), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), + [sym_test_operator] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(315), + [sym_word] = ACTIONS(305), }, [413] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_EQ_TILDE] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_AMP_GT] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [aux_sym__literal_repeat1] = STATE(831), + [anon_sym_BANG_EQ] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [sym__special_character] = ACTIONS(2135), + [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(473), + [anon_sym_EQ_EQ] = ACTIONS(473), + [anon_sym_PIPE_PIPE] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_EQ_TILDE] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(473), + [anon_sym_AMP_AMP] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(473), + [sym_test_operator] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), }, [414] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [anon_sym_RPAREN] = ACTIONS(513), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_EQ_TILDE] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_EQ_EQ] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [415] = { + [anon_sym_AMP_GT_GT] = ACTIONS(531), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_BQUOTE] = ACTIONS(531), + [anon_sym_PIPE_PIPE] = ACTIONS(531), + [anon_sym_AMP] = ACTIONS(531), + [anon_sym_PIPE] = ACTIONS(531), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_LT_AMP] = ACTIONS(531), + [anon_sym_GT_GT] = ACTIONS(531), + [anon_sym_LT_LT_DASH] = ACTIONS(531), + [anon_sym_LF] = ACTIONS(533), + [anon_sym_SEMI] = ACTIONS(531), + [anon_sym_RPAREN] = ACTIONS(531), + [sym_file_descriptor] = ACTIONS(533), + [anon_sym_GT] = ACTIONS(531), + [anon_sym_AMP_GT] = ACTIONS(531), + [anon_sym_LT_LT_LT] = ACTIONS(531), + [anon_sym_GT_AMP] = ACTIONS(531), + [anon_sym_esac] = ACTIONS(531), + [anon_sym_AMP_AMP] = ACTIONS(531), + [anon_sym_SEMI_SEMI] = ACTIONS(531), + [anon_sym_PIPE_AMP] = ACTIONS(531), + }, + [416] = { + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_EQ_TILDE] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), + }, + [417] = { + [sym_word] = ACTIONS(589), [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), [anon_sym_LT] = ACTIONS(589), [anon_sym_LT_AMP] = ACTIONS(589), [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_EQ_TILDE] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), [anon_sym_LF] = ACTIONS(591), [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), [anon_sym_RPAREN] = ACTIONS(589), [sym_file_descriptor] = ACTIONS(591), [anon_sym_GT] = ACTIONS(589), [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), [anon_sym_LT_LT_LT] = ACTIONS(589), [anon_sym_GT_AMP] = ACTIONS(589), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(589), - [anon_sym_esac] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(589), [anon_sym_SEMI_SEMI] = ACTIONS(589), [anon_sym_PIPE_AMP] = ACTIONS(589), }, - [416] = { - [sym_if_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_negated_command] = STATE(460), - [sym_test_command] = STATE(460), - [sym_variable_assignment] = STATE(461), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_subshell] = STATE(460), - [sym_declaration_command] = STATE(460), - [sym_unset_command] = STATE(460), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_case_statement] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_command] = STATE(460), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [418] = { + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_EQ_TILDE] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [anon_sym_RPAREN] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), + }, + [419] = { + [sym_if_statement] = STATE(464), + [sym_function_definition] = STATE(464), + [sym_negated_command] = STATE(464), + [sym_test_command] = STATE(464), + [sym_variable_assignment] = STATE(465), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_subshell] = STATE(464), + [sym_declaration_command] = STATE(464), + [sym_unset_command] = STATE(464), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(464), + [sym_while_statement] = STATE(464), + [sym_case_statement] = STATE(464), + [sym_pipeline] = STATE(464), + [sym_list] = STATE(464), + [sym_command] = STATE(464), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [417] = { - [sym_heredoc_body] = STATE(463), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(695), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_file_descriptor] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(996), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [420] = { + [sym_heredoc_body] = STATE(467), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(701), + [sym_file_descriptor] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym_variable_name] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, - [418] = { - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_declare] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(695), - [sym_word] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(689), - [anon_sym_while] = ACTIONS(687), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_local] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_case] = ACTIONS(687), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [sym_file_descriptor] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [421] = { + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(693), + [sym_variable_name] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(701), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_while] = ACTIONS(693), + [anon_sym_SEMI_SEMI] = ACTIONS(701), + [sym_word] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_local] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_case] = ACTIONS(693), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [sym_file_descriptor] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), }, - [419] = { - [sym_if_statement] = STATE(465), - [sym_function_definition] = STATE(465), - [sym_negated_command] = STATE(465), - [sym_test_command] = STATE(465), - [sym_variable_assignment] = STATE(466), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(465), - [sym_for_statement] = STATE(465), - [sym_compound_statement] = STATE(465), - [sym_subshell] = STATE(465), - [sym_declaration_command] = STATE(465), - [sym_unset_command] = STATE(465), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(465), - [sym_while_statement] = STATE(465), - [sym_case_statement] = STATE(465), - [sym_pipeline] = STATE(465), - [sym_list] = STATE(465), - [sym_command] = STATE(465), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [422] = { + [sym_if_statement] = STATE(469), + [sym_function_definition] = STATE(469), + [sym_negated_command] = STATE(469), + [sym_test_command] = STATE(469), + [sym_variable_assignment] = STATE(470), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(469), + [sym_for_statement] = STATE(469), + [sym_compound_statement] = STATE(469), + [sym_subshell] = STATE(469), + [sym_declaration_command] = STATE(469), + [sym_unset_command] = STATE(469), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(469), + [sym_while_statement] = STATE(469), + [sym_case_statement] = STATE(469), + [sym_pipeline] = STATE(469), + [sym_list] = STATE(469), + [sym_command] = STATE(469), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [420] = { - [sym_heredoc_redirect] = STATE(470), - [sym_file_redirect] = STATE(470), - [sym_herestring_redirect] = STATE(470), - [aux_sym_redirected_statement_repeat1] = STATE(470), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_PIPE_PIPE] = ACTIONS(721), - [anon_sym_PIPE] = ACTIONS(721), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_LF] = ACTIONS(719), - [anon_sym_SEMI] = ACTIONS(721), - [anon_sym_RPAREN] = ACTIONS(721), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_AMP_AMP] = ACTIONS(721), - [anon_sym_AMP] = ACTIONS(721), - [anon_sym_SEMI_SEMI] = ACTIONS(721), - [anon_sym_PIPE_AMP] = ACTIONS(721), + [423] = { + [sym_heredoc_redirect] = STATE(474), + [sym_file_redirect] = STATE(474), + [sym_herestring_redirect] = STATE(474), + [aux_sym_redirected_statement_repeat1] = STATE(474), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(727), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_AMP_GT] = ACTIONS(451), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_SEMI_SEMI] = ACTIONS(727), + [anon_sym_PIPE_AMP] = ACTIONS(727), }, - [421] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_PIPE_AMP] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LF] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2135), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_SEMI_SEMI] = ACTIONS(2133), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [424] = { + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_PIPE_AMP] = ACTIONS(449), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_RPAREN] = ACTIONS(2141), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_AMP_GT] = ACTIONS(451), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(2139), + [anon_sym_LT_LT_DASH] = ACTIONS(459), }, - [422] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(2131), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(2133), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(2135), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_SEMI_SEMI] = ACTIONS(2133), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [425] = { + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_PIPE_AMP] = ACTIONS(449), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2139), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(2141), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(2139), + [sym_word] = ACTIONS(347), }, - [423] = { - [sym_if_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_negated_command] = STATE(64), - [sym_test_command] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_compound_statement] = STATE(64), - [sym_subshell] = STATE(64), - [sym_declaration_command] = STATE(64), - [sym_unset_command] = STATE(64), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_case_statement] = STATE(64), - [sym_pipeline] = STATE(64), - [sym_list] = STATE(64), - [sym_command] = STATE(64), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_AMP_GT_GT] = ACTIONS(730), - [anon_sym_local] = ACTIONS(733), - [anon_sym_typeset] = ACTIONS(733), - [anon_sym_unsetenv] = ACTIONS(736), - [anon_sym_DQUOTE] = ACTIONS(739), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), - [anon_sym_LT_LPAREN] = ACTIONS(748), + [426] = { + [sym_if_statement] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_negated_command] = STATE(53), + [sym_test_command] = STATE(53), + [sym_variable_assignment] = STATE(54), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_compound_statement] = STATE(53), + [sym_subshell] = STATE(53), + [sym_declaration_command] = STATE(53), + [sym_unset_command] = STATE(53), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_pipeline] = STATE(53), + [sym_list] = STATE(53), + [sym_command] = STATE(53), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_AMP_GT_GT] = ACTIONS(736), + [anon_sym_local] = ACTIONS(739), + [anon_sym_typeset] = ACTIONS(739), + [anon_sym_unsetenv] = ACTIONS(742), + [sym__special_character] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(748), + [sym_raw_string] = ACTIONS(751), + [sym_number] = ACTIONS(754), + [anon_sym_function] = ACTIONS(757), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_AMP] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(736), + [anon_sym_export] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(766), + [anon_sym_if] = ACTIONS(769), + [anon_sym_case] = ACTIONS(772), + [anon_sym_LPAREN_LPAREN] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(778), [sym_ansii_c_string] = ACTIONS(751), - [anon_sym_function] = ACTIONS(754), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_LT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(730), - [anon_sym_GT_GT] = ACTIONS(730), - [anon_sym_export] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_if] = ACTIONS(766), - [anon_sym_case] = ACTIONS(769), - [anon_sym_LPAREN_LPAREN] = ACTIONS(772), - [sym_number] = ACTIONS(775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), [anon_sym_BANG] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(748), - [sym_file_descriptor] = ACTIONS(784), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(760), - [sym_word] = ACTIONS(787), - [anon_sym_AMP_GT] = ACTIONS(760), - [anon_sym_readonly] = ACTIONS(733), + [anon_sym_declare] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(784), + [sym_file_descriptor] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(763), [sym_variable_name] = ACTIONS(790), - [anon_sym_unset] = ACTIONS(736), - [sym__special_character] = ACTIONS(793), - [anon_sym_GT_AMP] = ACTIONS(730), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_AMP_GT] = ACTIONS(763), + [anon_sym_readonly] = ACTIONS(739), + [anon_sym_unset] = ACTIONS(742), + [anon_sym_DOLLAR] = ACTIONS(793), + [anon_sym_GT_AMP] = ACTIONS(736), + [anon_sym_GT_LPAREN] = ACTIONS(784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), [anon_sym_for] = ACTIONS(799), [anon_sym_while] = ACTIONS(802), [anon_sym_LBRACK] = ACTIONS(805), - [sym_raw_string] = ACTIONS(751), - [anon_sym_LBRACK_LBRACK] = ACTIONS(808), - }, - [424] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_EQ_TILDE] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_AMP_GT] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), - }, - [425] = { - [aux_sym__literal_repeat1] = STATE(425), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [sym__special_character] = ACTIONS(2137), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - }, - [426] = { - [sym_concatenation] = STATE(473), - [sym_string] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_arithmetic_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [aux_sym__literal_repeat1] = STATE(430), - [sym_simple_expansion] = STATE(427), - [aux_sym_command_repeat2] = STATE(473), - [anon_sym_AMP_GT_GT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(2103), - [sym_ansii_c_string] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_LT_AMP] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_EQ_TILDE] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(818), - [anon_sym_GT_LPAREN] = ACTIONS(2103), - [sym_number] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(818), - [sym_file_descriptor] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(818), - [sym_word] = ACTIONS(2105), - [anon_sym_AMP_GT] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [sym__special_character] = ACTIONS(103), - [anon_sym_LT_LT_LT] = ACTIONS(818), - [anon_sym_GT_AMP] = ACTIONS(818), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_raw_string] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_SEMI_SEMI] = ACTIONS(818), - [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_LBRACK_LBRACK] = ACTIONS(811), + [sym_word] = ACTIONS(814), }, [427] = { - [aux_sym_concatenation_repeat1] = STATE(410), - [anon_sym_AMP_GT_GT] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(838), - [anon_sym_LT_LT] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), - [anon_sym_LT_LPAREN] = ACTIONS(838), - [sym_ansii_c_string] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(838), - [sym__concat] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(838), - [anon_sym_LT] = ACTIONS(838), - [anon_sym_LT_AMP] = ACTIONS(838), - [anon_sym_GT_GT] = ACTIONS(838), - [anon_sym_EQ_TILDE] = ACTIONS(838), - [anon_sym_DOLLAR] = ACTIONS(838), - [anon_sym_LT_LT_DASH] = ACTIONS(838), - [anon_sym_GT_LPAREN] = ACTIONS(838), - [sym_number] = ACTIONS(838), - [anon_sym_LF] = ACTIONS(840), - [anon_sym_SEMI] = ACTIONS(838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [anon_sym_RPAREN] = ACTIONS(838), - [sym_word] = ACTIONS(838), - [anon_sym_GT] = ACTIONS(838), - [sym_file_descriptor] = ACTIONS(840), - [anon_sym_AMP_GT] = ACTIONS(838), - [anon_sym_EQ_EQ] = ACTIONS(838), - [sym__special_character] = ACTIONS(838), - [anon_sym_LT_LT_LT] = ACTIONS(838), - [anon_sym_GT_AMP] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(838), - [sym_raw_string] = ACTIONS(838), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_SEMI_SEMI] = ACTIONS(838), - [anon_sym_PIPE_AMP] = ACTIONS(838), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [428] = { - [sym_expansion] = STATE(475), - [sym_concatenation] = STATE(474), - [sym_string] = STATE(475), - [sym_command_substitution] = STATE(475), - [sym_process_substitution] = STATE(475), - [aux_sym__literal_repeat1] = STATE(476), - [sym_simple_expansion] = STATE(475), - [sym_arithmetic_expansion] = STATE(475), - [sym_string_expansion] = STATE(475), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [sym_number] = ACTIONS(2140), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(2140), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(2142), - [sym__special_character] = ACTIONS(2097), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [sym_raw_string] = ACTIONS(2142), - [sym_regex] = ACTIONS(2144), - [anon_sym_DOLLAR] = ACTIONS(85), + [aux_sym__literal_repeat1] = STATE(428), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(2143), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [429] = { [sym_concatenation] = STATE(477), - [sym_string] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_arithmetic_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [aux_sym__literal_repeat1] = STATE(430), - [sym_simple_expansion] = STATE(427), + [sym_string] = STATE(430), + [sym_command_substitution] = STATE(430), + [sym_process_substitution] = STATE(430), + [sym_arithmetic_expansion] = STATE(430), + [sym_string_expansion] = STATE(430), + [sym_expansion] = STATE(430), + [aux_sym__literal_repeat1] = STATE(433), + [sym_simple_expansion] = STATE(430), [aux_sym_command_repeat2] = STATE(477), - [anon_sym_AMP_GT_GT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(2103), - [sym_ansii_c_string] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_LT_AMP] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_EQ_TILDE] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(818), - [anon_sym_GT_LPAREN] = ACTIONS(2103), - [sym_number] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(818), - [sym_file_descriptor] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(818), [sym_word] = ACTIONS(2105), - [anon_sym_AMP_GT] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [sym__special_character] = ACTIONS(103), - [anon_sym_LT_LT_LT] = ACTIONS(818), - [anon_sym_GT_AMP] = ACTIONS(818), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [sym__special_character] = ACTIONS(71), + [anon_sym_LT_LT] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(2107), [sym_raw_string] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_SEMI_SEMI] = ACTIONS(818), - [anon_sym_PIPE_AMP] = ACTIONS(818), + [sym_number] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(2109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2111), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(2113), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(824), + [sym_file_descriptor] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_SEMI_SEMI] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), }, [430] = { - [aux_sym__literal_repeat1] = STATE(425), - [anon_sym_AMP_GT_GT] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(848), - [anon_sym_LT_LT] = ACTIONS(848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(848), - [anon_sym_LT_LPAREN] = ACTIONS(848), - [sym_ansii_c_string] = ACTIONS(848), - [anon_sym_PIPE_PIPE] = ACTIONS(848), - [anon_sym_PIPE] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(848), - [anon_sym_LT_AMP] = ACTIONS(848), - [anon_sym_GT_GT] = ACTIONS(848), - [anon_sym_EQ_TILDE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(848), - [anon_sym_LT_LT_DASH] = ACTIONS(848), - [anon_sym_GT_LPAREN] = ACTIONS(848), - [sym_number] = ACTIONS(848), - [anon_sym_LF] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(848), - [anon_sym_RPAREN] = ACTIONS(848), - [sym_word] = ACTIONS(848), - [anon_sym_GT] = ACTIONS(848), - [sym_file_descriptor] = ACTIONS(850), - [anon_sym_AMP_GT] = ACTIONS(848), - [anon_sym_EQ_EQ] = ACTIONS(848), - [sym__special_character] = ACTIONS(2095), - [anon_sym_LT_LT_LT] = ACTIONS(848), - [anon_sym_GT_AMP] = ACTIONS(848), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(848), - [sym_raw_string] = ACTIONS(848), - [anon_sym_AMP_AMP] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_SEMI_SEMI] = ACTIONS(848), - [anon_sym_PIPE_AMP] = ACTIONS(848), + [aux_sym_concatenation_repeat1] = STATE(408), + [sym_word] = ACTIONS(844), + [anon_sym_AMP_GT_GT] = ACTIONS(844), + [sym__special_character] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [sym_raw_string] = ACTIONS(844), + [sym_number] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(844), + [sym__concat] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(844), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_LT_AMP] = ACTIONS(844), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_EQ_TILDE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(844), + [anon_sym_LT_LT_DASH] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [sym_ansii_c_string] = ACTIONS(844), + [anon_sym_LF] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [sym_file_descriptor] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_AMP_GT] = ACTIONS(844), + [anon_sym_EQ_EQ] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(844), + [anon_sym_LT_LT_LT] = ACTIONS(844), + [anon_sym_GT_AMP] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_SEMI_SEMI] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), }, [431] = { - [anon_sym_AMP_GT_GT] = ACTIONS(852), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PIPE_PIPE] = ACTIONS(852), - [anon_sym_PIPE] = ACTIONS(852), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_LT_AMP] = ACTIONS(852), - [anon_sym_GT_GT] = ACTIONS(852), - [anon_sym_LT_LT_DASH] = ACTIONS(852), - [anon_sym_LF] = ACTIONS(854), - [anon_sym_SEMI] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(852), - [sym_file_descriptor] = ACTIONS(854), - [anon_sym_GT] = ACTIONS(852), - [anon_sym_AMP_GT] = ACTIONS(852), - [anon_sym_LT_LT_LT] = ACTIONS(852), - [anon_sym_GT_AMP] = ACTIONS(852), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(852), - [anon_sym_esac] = ACTIONS(852), - [anon_sym_AMP_AMP] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(852), - [anon_sym_SEMI_SEMI] = ACTIONS(852), - [anon_sym_PIPE_AMP] = ACTIONS(852), + [sym_expansion] = STATE(478), + [sym_concatenation] = STATE(479), + [sym_string] = STATE(478), + [sym_command_substitution] = STATE(478), + [sym_process_substitution] = STATE(478), + [aux_sym__literal_repeat1] = STATE(480), + [sym_simple_expansion] = STATE(478), + [sym_arithmetic_expansion] = STATE(478), + [sym_string_expansion] = STATE(478), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [sym_ansii_c_string] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym__special_character] = ACTIONS(2103), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(2146), + [sym_number] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(99), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [sym_regex] = ACTIONS(2150), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [sym_word] = ACTIONS(2148), }, [432] = { - [sym_concatenation] = STATE(432), - [sym_string] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [sym_variable_assignment] = STATE(432), - [sym_subscript] = STATE(2595), - [sym_arithmetic_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [aux_sym_declaration_command_repeat1] = STATE(432), - [aux_sym__literal_repeat1] = STATE(401), - [sym_simple_expansion] = STATE(400), - [anon_sym_AMP_GT_GT] = ACTIONS(856), - [anon_sym_DQUOTE] = ACTIONS(2146), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2152), - [anon_sym_LT_LPAREN] = ACTIONS(2155), - [sym_ansii_c_string] = ACTIONS(2158), - [anon_sym_PIPE_PIPE] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(856), - [aux_sym__simple_variable_name_token1] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(856), - [anon_sym_LT_AMP] = ACTIONS(856), - [anon_sym_GT_GT] = ACTIONS(856), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_LT_LT_DASH] = ACTIONS(856), - [anon_sym_GT_LPAREN] = ACTIONS(2155), - [sym_number] = ACTIONS(2158), - [anon_sym_LF] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2167), - [sym_variable_name] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(856), - [sym_word] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(856), - [sym_file_descriptor] = ACTIONS(879), - [anon_sym_AMP_GT] = ACTIONS(856), - [sym__special_character] = ACTIONS(2173), - [anon_sym_LT_LT_LT] = ACTIONS(856), - [anon_sym_GT_AMP] = ACTIONS(856), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_raw_string] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [anon_sym_PIPE_AMP] = ACTIONS(856), + [sym_concatenation] = STATE(481), + [sym_string] = STATE(430), + [sym_command_substitution] = STATE(430), + [sym_process_substitution] = STATE(430), + [sym_arithmetic_expansion] = STATE(430), + [sym_string_expansion] = STATE(430), + [sym_expansion] = STATE(430), + [aux_sym__literal_repeat1] = STATE(433), + [sym_simple_expansion] = STATE(430), + [aux_sym_command_repeat2] = STATE(481), + [sym_word] = ACTIONS(2105), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [sym__special_character] = ACTIONS(71), + [anon_sym_LT_LT] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(2107), + [sym_raw_string] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(2109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2111), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(2113), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(824), + [sym_file_descriptor] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_SEMI_SEMI] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), }, [433] = { - [sym_concatenation] = STATE(433), - [sym_string] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym_unset_command_repeat1] = STATE(433), - [sym_arithmetic_expansion] = STATE(403), - [sym_string_expansion] = STATE(403), - [sym_expansion] = STATE(403), - [aux_sym__literal_repeat1] = STATE(404), - [sym_simple_expansion] = STATE(403), - [anon_sym_AMP_GT_GT] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(2179), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2182), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2185), - [anon_sym_LT_LPAREN] = ACTIONS(2188), - [sym_ansii_c_string] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(893), - [aux_sym__simple_variable_name_token1] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_LT_AMP] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(893), - [anon_sym_DOLLAR] = ACTIONS(2197), - [anon_sym_LT_LT_DASH] = ACTIONS(893), - [anon_sym_GT_LPAREN] = ACTIONS(2188), - [sym_number] = ACTIONS(2191), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2200), - [anon_sym_RPAREN] = ACTIONS(893), - [sym_word] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(893), - [sym_file_descriptor] = ACTIONS(916), - [anon_sym_AMP_GT] = ACTIONS(893), - [sym__special_character] = ACTIONS(2203), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [anon_sym_GT_AMP] = ACTIONS(893), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2206), - [sym_raw_string] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(893), - [anon_sym_SEMI_SEMI] = ACTIONS(893), - [anon_sym_PIPE_AMP] = ACTIONS(893), + [aux_sym__literal_repeat1] = STATE(428), + [sym_word] = ACTIONS(854), + [anon_sym_AMP_GT_GT] = ACTIONS(854), + [sym__special_character] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [sym_raw_string] = ACTIONS(854), + [sym_number] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_AMP] = ACTIONS(854), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_EQ_TILDE] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(854), + [anon_sym_LT_LT_DASH] = ACTIONS(854), + [anon_sym_LT_LPAREN] = ACTIONS(854), + [sym_ansii_c_string] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [sym_file_descriptor] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_AMP_GT] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_LT_LT_LT] = ACTIONS(854), + [anon_sym_GT_AMP] = ACTIONS(854), + [anon_sym_GT_LPAREN] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_SEMI_SEMI] = ACTIONS(854), + [anon_sym_PIPE_AMP] = ACTIONS(854), }, [434] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_EQ_TILDE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [sym_file_descriptor] = ACTIONS(933), - [anon_sym_AMP_GT] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(858), + [anon_sym_LT_LT] = ACTIONS(858), + [anon_sym_BQUOTE] = ACTIONS(858), + [anon_sym_PIPE_PIPE] = ACTIONS(858), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_LT_AMP] = ACTIONS(858), + [anon_sym_GT_GT] = ACTIONS(858), + [anon_sym_LT_LT_DASH] = ACTIONS(858), + [anon_sym_LF] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_RPAREN] = ACTIONS(858), + [sym_file_descriptor] = ACTIONS(860), + [anon_sym_GT] = ACTIONS(858), + [anon_sym_AMP_GT] = ACTIONS(858), + [anon_sym_LT_LT_LT] = ACTIONS(858), + [anon_sym_GT_AMP] = ACTIONS(858), + [anon_sym_esac] = ACTIONS(858), + [anon_sym_AMP_AMP] = ACTIONS(858), + [anon_sym_SEMI_SEMI] = ACTIONS(858), + [anon_sym_PIPE_AMP] = ACTIONS(858), }, [435] = { - [anon_sym_BANG_EQ] = ACTIONS(679), - [anon_sym_PLUS_EQ] = ACTIONS(679), - [sym_test_operator] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_GT_EQ] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(683), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_EQ_TILDE] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_LT_EQ] = ACTIONS(679), - [anon_sym_DASH_EQ] = ACTIONS(679), + [sym_concatenation] = STATE(435), + [sym_string] = STATE(402), + [sym_command_substitution] = STATE(402), + [sym_process_substitution] = STATE(402), + [sym_variable_assignment] = STATE(435), + [sym_subscript] = STATE(2601), + [sym_arithmetic_expansion] = STATE(402), + [sym_string_expansion] = STATE(402), + [sym_expansion] = STATE(402), + [aux_sym_declaration_command_repeat1] = STATE(435), + [aux_sym__literal_repeat1] = STATE(403), + [sym_simple_expansion] = STATE(402), + [sym_word] = ACTIONS(2152), + [anon_sym_AMP_GT_GT] = ACTIONS(865), + [sym__special_character] = ACTIONS(2155), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(2158), + [sym_raw_string] = ACTIONS(2152), + [sym_number] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_LT_AMP] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2161), + [anon_sym_LT_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LPAREN] = ACTIONS(2164), + [sym_ansii_c_string] = ACTIONS(2152), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(2167), + [sym_variable_name] = ACTIONS(2170), + [anon_sym_RPAREN] = ACTIONS(865), + [aux_sym__simple_variable_name_token1] = ACTIONS(2173), + [anon_sym_GT] = ACTIONS(865), + [sym_file_descriptor] = ACTIONS(879), + [anon_sym_AMP_GT] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(865), + [anon_sym_GT_AMP] = ACTIONS(865), + [anon_sym_GT_LPAREN] = ACTIONS(2164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2179), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2182), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_SEMI_SEMI] = ACTIONS(865), + [anon_sym_PIPE_AMP] = ACTIONS(865), }, [436] = { - [sym_expansion] = STATE(407), - [sym_unary_expression] = STATE(480), - [sym_postfix_expression] = STATE(480), - [sym_concatenation] = STATE(480), - [sym_string] = STATE(407), - [sym_command_substitution] = STATE(407), - [sym_process_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(480), - [aux_sym__literal_repeat1] = STATE(409), - [sym_simple_expansion] = STATE(407), - [sym__expression] = STATE(480), - [sym_binary_expression] = STATE(480), - [sym_arithmetic_expansion] = STATE(407), - [sym_string_expansion] = STATE(407), - [anon_sym_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_number] = ACTIONS(303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), - [sym_word] = ACTIONS(303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [sym_ansii_c_string] = ACTIONS(315), - [sym__special_character] = ACTIONS(317), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(319), - [sym_raw_string] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_test_operator] = ACTIONS(323), + [sym_concatenation] = STATE(436), + [sym_string] = STATE(405), + [sym_command_substitution] = STATE(405), + [sym_process_substitution] = STATE(405), + [aux_sym_unset_command_repeat1] = STATE(436), + [sym_arithmetic_expansion] = STATE(405), + [sym_string_expansion] = STATE(405), + [sym_expansion] = STATE(405), + [aux_sym__literal_repeat1] = STATE(406), + [sym_simple_expansion] = STATE(405), + [sym_word] = ACTIONS(2185), + [anon_sym_AMP_GT_GT] = ACTIONS(902), + [sym__special_character] = ACTIONS(2188), + [anon_sym_LT_LT] = ACTIONS(902), + [anon_sym_BQUOTE] = ACTIONS(2191), + [sym_raw_string] = ACTIONS(2185), + [sym_number] = ACTIONS(2185), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_PIPE] = ACTIONS(902), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_AMP] = ACTIONS(902), + [anon_sym_GT_GT] = ACTIONS(902), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2194), + [anon_sym_LT_LT_DASH] = ACTIONS(902), + [anon_sym_LT_LPAREN] = ACTIONS(2197), + [sym_ansii_c_string] = ACTIONS(2185), + [anon_sym_LF] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(902), + [aux_sym__simple_variable_name_token1] = ACTIONS(2203), + [anon_sym_GT] = ACTIONS(902), + [sym_file_descriptor] = ACTIONS(916), + [anon_sym_AMP_GT] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(2206), + [anon_sym_LT_LT_LT] = ACTIONS(902), + [anon_sym_GT_AMP] = ACTIONS(902), + [anon_sym_GT_LPAREN] = ACTIONS(2197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_SEMI_SEMI] = ACTIONS(902), + [anon_sym_PIPE_AMP] = ACTIONS(902), }, [437] = { - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [sym_test_operator] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_EQ_TILDE] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [438] = { - [sym_expansion] = STATE(407), - [sym_unary_expression] = STATE(480), - [sym_postfix_expression] = STATE(480), - [sym_concatenation] = STATE(480), - [sym_string] = STATE(407), - [sym_command_substitution] = STATE(407), - [sym_process_substitution] = STATE(407), - [sym_parenthesized_expression] = STATE(480), - [aux_sym__literal_repeat1] = STATE(409), - [sym_simple_expansion] = STATE(407), - [sym__expression] = STATE(480), - [sym_binary_expression] = STATE(480), - [sym_arithmetic_expansion] = STATE(407), - [sym_string_expansion] = STATE(407), - [anon_sym_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_number] = ACTIONS(303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), - [sym_word] = ACTIONS(303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [sym_ansii_c_string] = ACTIONS(315), - [sym__special_character] = ACTIONS(317), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(319), - [sym_raw_string] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_regex] = ACTIONS(2209), - [sym_test_operator] = ACTIONS(323), + [sym_expansion] = STATE(437), + [sym_string] = STATE(437), + [sym_command_substitution] = STATE(437), + [sym_process_substitution] = STATE(437), + [sym_simple_expansion] = STATE(437), + [sym_arithmetic_expansion] = STATE(437), + [sym_string_expansion] = STATE(437), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [sym_ansii_c_string] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym__special_character] = ACTIONS(2215), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(2215), + [sym_number] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [sym_word] = ACTIONS(2217), }, [439] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [aux_sym_concatenation_repeat1] = STATE(439), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [440] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [441] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [sym_file_descriptor] = ACTIONS(977), - [anon_sym_AMP_GT] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(948), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_BQUOTE] = ACTIONS(948), + [anon_sym_PIPE_PIPE] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(948), + [anon_sym_LT_AMP] = ACTIONS(948), + [anon_sym_GT_GT] = ACTIONS(948), + [anon_sym_LT_LT_DASH] = ACTIONS(948), + [anon_sym_LF] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [sym_file_descriptor] = ACTIONS(950), + [anon_sym_GT] = ACTIONS(948), + [anon_sym_AMP_GT] = ACTIONS(948), + [anon_sym_LT_LT_LT] = ACTIONS(948), + [anon_sym_GT_AMP] = ACTIONS(948), + [anon_sym_esac] = ACTIONS(948), + [anon_sym_AMP_AMP] = ACTIONS(948), + [anon_sym_SEMI_SEMI] = ACTIONS(948), + [anon_sym_PIPE_AMP] = ACTIONS(948), }, [442] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [443] = { - [sym_expansion] = STATE(442), - [sym_string] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_arithmetic_expansion] = STATE(442), - [sym_string_expansion] = STATE(442), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [sym_number] = ACTIONS(2211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(2211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(2213), - [sym__special_character] = ACTIONS(2213), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [sym_raw_string] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2215), + [sym_heredoc_body] = STATE(1478), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [444] = { - [aux_sym_concatenation_repeat1] = STATE(444), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [anon_sym_AMP_GT_GT] = ACTIONS(956), + [anon_sym_LT_LT] = ACTIONS(956), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_PIPE_PIPE] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_LT_AMP] = ACTIONS(956), + [anon_sym_GT_GT] = ACTIONS(956), + [anon_sym_LT_LT_DASH] = ACTIONS(956), + [anon_sym_LF] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [sym_file_descriptor] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_AMP_GT] = ACTIONS(956), + [anon_sym_LT_LT_LT] = ACTIONS(956), + [anon_sym_GT_AMP] = ACTIONS(956), + [anon_sym_esac] = ACTIONS(956), + [anon_sym_AMP_AMP] = ACTIONS(956), + [anon_sym_SEMI_SEMI] = ACTIONS(956), + [anon_sym_PIPE_AMP] = ACTIONS(956), }, [445] = { - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(990), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_LT_LT_DASH] = ACTIONS(990), - [anon_sym_LF] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [sym_file_descriptor] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_LT_LT_LT] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(990), - [anon_sym_esac] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI_SEMI] = ACTIONS(990), - [anon_sym_PIPE_AMP] = ACTIONS(990), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_RBRACK] = ACTIONS(962), + [anon_sym_LT_LT] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(639), + [anon_sym_DASH_DASH] = ACTIONS(637), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(635), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_GT_GT] = ACTIONS(635), + [anon_sym_EQ_TILDE] = ACTIONS(641), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(635), + [sym_test_operator] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), }, [446] = { - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_BANG_EQ] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(962), + [anon_sym_RBRACK] = ACTIONS(962), + [anon_sym_LT_LT] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_EQ_EQ] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), + [anon_sym_GT_EQ] = ACTIONS(962), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(962), + [anon_sym_EQ_TILDE] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_AMP_AMP] = ACTIONS(962), + [anon_sym_LT_EQ] = ACTIONS(962), + [sym_test_operator] = ACTIONS(962), + [anon_sym_DASH_EQ] = ACTIONS(962), }, [447] = { - [sym_heredoc_body] = STATE(1472), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(996), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [sym_expansion] = STATE(410), + [sym_unary_expression] = STATE(484), + [sym_postfix_expression] = STATE(484), + [sym_concatenation] = STATE(484), + [sym_string] = STATE(410), + [sym_command_substitution] = STATE(410), + [sym_process_substitution] = STATE(410), + [sym_parenthesized_expression] = STATE(484), + [aux_sym__literal_repeat1] = STATE(413), + [sym_simple_expansion] = STATE(410), + [sym__expression] = STATE(484), + [sym_binary_expression] = STATE(484), + [sym_arithmetic_expansion] = STATE(410), + [sym_string_expansion] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [sym_ansii_c_string] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(297), + [sym__special_character] = ACTIONS(299), + [aux_sym_unary_expression_token1] = ACTIONS(301), + [anon_sym_BQUOTE] = ACTIONS(303), + [sym_raw_string] = ACTIONS(293), + [sym_number] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(307), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), + [sym_test_operator] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(315), + [sym_word] = ACTIONS(305), }, [448] = { - [anon_sym_AMP_GT_GT] = ACTIONS(998), - [anon_sym_LT_LT] = ACTIONS(998), - [anon_sym_PIPE_PIPE] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_LT_AMP] = ACTIONS(998), - [anon_sym_GT_GT] = ACTIONS(998), - [anon_sym_LT_LT_DASH] = ACTIONS(998), - [anon_sym_LF] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [sym_file_descriptor] = ACTIONS(1000), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_AMP_GT] = ACTIONS(998), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [anon_sym_GT_AMP] = ACTIONS(998), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(998), - [anon_sym_esac] = ACTIONS(998), - [anon_sym_AMP_AMP] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI_SEMI] = ACTIONS(998), - [anon_sym_PIPE_AMP] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_RBRACK] = ACTIONS(966), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [sym_test_operator] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), }, [449] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1022), - [anon_sym_LT_LT] = ACTIONS(1022), - [anon_sym_PIPE_PIPE] = ACTIONS(1022), - [anon_sym_PIPE] = ACTIONS(1022), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_LT_AMP] = ACTIONS(1022), - [anon_sym_GT_GT] = ACTIONS(1022), - [anon_sym_LT_LT_DASH] = ACTIONS(1022), - [anon_sym_LF] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_RPAREN] = ACTIONS(1022), - [sym_file_descriptor] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1022), - [anon_sym_AMP_GT] = ACTIONS(1022), - [anon_sym_LT_LT_LT] = ACTIONS(1022), - [anon_sym_GT_AMP] = ACTIONS(1022), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1022), - [anon_sym_esac] = ACTIONS(1022), - [anon_sym_AMP_AMP] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI_SEMI] = ACTIONS(1022), - [anon_sym_PIPE_AMP] = ACTIONS(1022), + [sym_expansion] = STATE(410), + [sym_unary_expression] = STATE(484), + [sym_postfix_expression] = STATE(484), + [sym_concatenation] = STATE(484), + [sym_string] = STATE(410), + [sym_command_substitution] = STATE(410), + [sym_process_substitution] = STATE(410), + [sym_parenthesized_expression] = STATE(484), + [aux_sym__literal_repeat1] = STATE(413), + [sym_simple_expansion] = STATE(410), + [sym__expression] = STATE(484), + [sym_binary_expression] = STATE(484), + [sym_arithmetic_expansion] = STATE(410), + [sym_string_expansion] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [sym_ansii_c_string] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(297), + [sym__special_character] = ACTIONS(299), + [aux_sym_unary_expression_token1] = ACTIONS(301), + [anon_sym_BQUOTE] = ACTIONS(303), + [sym_raw_string] = ACTIONS(293), + [sym_number] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(307), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), + [sym_test_operator] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(315), + [sym_regex] = ACTIONS(2224), + [sym_word] = ACTIONS(305), }, [450] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_EQ_TILDE] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [451] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_EQ_TILDE] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1086), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [sym_file_descriptor] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [anon_sym_AMP_GT_GT] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(996), + [anon_sym_BQUOTE] = ACTIONS(996), + [anon_sym_PIPE_PIPE] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(996), + [anon_sym_LT_AMP] = ACTIONS(996), + [anon_sym_GT_GT] = ACTIONS(996), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LF] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [sym_file_descriptor] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(996), + [anon_sym_AMP_GT] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(996), + [anon_sym_GT_AMP] = ACTIONS(996), + [anon_sym_esac] = ACTIONS(996), + [anon_sym_AMP_AMP] = ACTIONS(996), + [anon_sym_SEMI_SEMI] = ACTIONS(996), + [anon_sym_PIPE_AMP] = ACTIONS(996), }, [452] = { - [aux_sym_concatenation_repeat1] = STATE(1089), - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [sym__concat] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), - [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1120), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_GT_AMP] = ACTIONS(1120), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [453] = { + [aux_sym_concatenation_repeat1] = STATE(1094), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [sym__concat] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1050), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), + }, + [454] = { + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1050), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), + }, + [455] = { + [aux_sym__literal_repeat1] = STATE(1100), + [sym_word] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1056), + [sym__special_character] = ACTIONS(2228), + [anon_sym_LT_LT] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [sym_raw_string] = ACTIONS(1056), + [sym_number] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_LT_AMP] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(1056), + [anon_sym_LT_LPAREN] = ACTIONS(1056), + [sym_ansii_c_string] = ACTIONS(1056), + [anon_sym_LF] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_variable_name] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1056), + [sym_file_descriptor] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_LT_LT_LT] = ACTIONS(1056), + [anon_sym_GT_AMP] = ACTIONS(1056), + [anon_sym_GT_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_SEMI_SEMI] = ACTIONS(1056), + [anon_sym_PIPE_AMP] = ACTIONS(1056), + }, + [456] = { + [aux_sym_concatenation_repeat1] = STATE(1061), + [anon_sym_LT_LT_DASH] = ACTIONS(1076), + [anon_sym_AMP_GT_GT] = ACTIONS(1076), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_LT_LT] = ACTIONS(1076), + [sym_file_descriptor] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_AMP_GT] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_LT_LT_LT] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_GT_AMP] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_LT_AMP] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1076), + [ts_builtin_sym_end] = ACTIONS(1074), + [sym__concat] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_SEMI_SEMI] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(1076), + }, + [457] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1076), + [anon_sym_AMP_GT_GT] = ACTIONS(1076), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_LT_LT] = ACTIONS(1076), + [sym_file_descriptor] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_AMP_GT] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_LT_LT_LT] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_GT_AMP] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_LT_AMP] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1076), + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_SEMI_SEMI] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(1076), + }, + [458] = { + [aux_sym__literal_repeat1] = STATE(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(1080), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [sym__special_character] = ACTIONS(1240), + [anon_sym_LT_LT] = ACTIONS(1080), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_PIPE_PIPE] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_LT_LT_LT] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [ts_builtin_sym_end] = ACTIONS(1078), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1080), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), + [anon_sym_PIPE_AMP] = ACTIONS(1080), + }, + [459] = { + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), + }, + [460] = { + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), + }, + [461] = { [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(1120), [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), [anon_sym_PIPE] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), [anon_sym_LT] = ACTIONS(1120), [anon_sym_LT_AMP] = ACTIONS(1120), [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), + [anon_sym_LF] = ACTIONS(1122), [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), [anon_sym_RPAREN] = ACTIONS(1120), - [sym_word] = ACTIONS(1120), + [sym_file_descriptor] = ACTIONS(1122), [anon_sym_GT] = ACTIONS(1120), - [sym_file_descriptor] = ACTIONS(1124), [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), [anon_sym_LT_LT_LT] = ACTIONS(1120), [anon_sym_GT_AMP] = ACTIONS(1120), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), + [anon_sym_esac] = ACTIONS(1120), [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), [anon_sym_SEMI_SEMI] = ACTIONS(1120), [anon_sym_PIPE_AMP] = ACTIONS(1120), }, - [454] = { - [aux_sym__literal_repeat1] = STATE(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [sym_ansii_c_string] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(1126), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_number] = ACTIONS(1126), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1126), - [sym_word] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), - [sym_file_descriptor] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1126), - [sym__special_character] = ACTIONS(2222), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1126), - [sym_raw_string] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), - }, - [455] = { - [aux_sym_concatenation_repeat1] = STATE(1056), - [anon_sym_LT_LT_DASH] = ACTIONS(1146), - [anon_sym_AMP_GT_GT] = ACTIONS(1146), - [anon_sym_LF] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_LT_LT] = ACTIONS(1146), - [sym_file_descriptor] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_AMP_GT] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [ts_builtin_sym_end] = ACTIONS(1144), - [anon_sym_LT_LT_LT] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_GT_AMP] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_LT_AMP] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1146), - [sym__concat] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), - [anon_sym_PIPE_AMP] = ACTIONS(1146), - }, - [456] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1146), - [anon_sym_AMP_GT_GT] = ACTIONS(1146), - [anon_sym_LF] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_LT_LT] = ACTIONS(1146), - [sym_file_descriptor] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_AMP_GT] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [ts_builtin_sym_end] = ACTIONS(1144), - [anon_sym_LT_LT_LT] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_GT_AMP] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_LT_AMP] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), - [anon_sym_PIPE_AMP] = ACTIONS(1146), - }, - [457] = { - [aux_sym__literal_repeat1] = STATE(1061), - [anon_sym_LT_LT_DASH] = ACTIONS(1150), - [anon_sym_AMP_GT_GT] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LT_LT] = ACTIONS(1150), - [sym_file_descriptor] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_AMP_GT] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [ts_builtin_sym_end] = ACTIONS(1148), - [anon_sym_LT_LT_LT] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_GT_AMP] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_LT_AMP] = ACTIONS(1150), - [anon_sym_GT_GT] = ACTIONS(1150), - [sym__special_character] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - }, - [458] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), - }, - [459] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_LT_AMP] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT_DASH] = ACTIONS(1186), - [anon_sym_LF] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [sym_file_descriptor] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_AMP_GT] = ACTIONS(1186), - [anon_sym_LT_LT_LT] = ACTIONS(1186), - [anon_sym_GT_AMP] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1186), - [anon_sym_esac] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_SEMI_SEMI] = ACTIONS(1186), - [anon_sym_PIPE_AMP] = ACTIONS(1186), - }, - [460] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_AMP] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_LT_LT_DASH] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [sym_file_descriptor] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_GT_AMP] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI_SEMI] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), - }, - [461] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_AMP] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(1190), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(1192), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_AMP_GT] = ACTIONS(1190), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_GT_AMP] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI_SEMI] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), - }, [462] = { - [anon_sym_LF] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1196), - [anon_sym_RPAREN] = ACTIONS(1196), - [anon_sym_esac] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_EQ_TILDE] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [463] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2224), - [anon_sym_LF] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_SEMI_SEMI] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2228), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_EQ_TILDE] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_EQ_EQ] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [464] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1216), - [anon_sym_LT_LT] = ACTIONS(1216), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_LT_AMP] = ACTIONS(1216), - [anon_sym_GT_GT] = ACTIONS(1216), - [anon_sym_LT_LT_DASH] = ACTIONS(1216), - [anon_sym_LF] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_RPAREN] = ACTIONS(1216), - [sym_file_descriptor] = ACTIONS(1218), - [anon_sym_GT] = ACTIONS(1216), - [anon_sym_AMP_GT] = ACTIONS(1216), - [anon_sym_LT_LT_LT] = ACTIONS(1216), - [anon_sym_GT_AMP] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_esac] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(1216), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), }, [465] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(1220), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_LT_AMP] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [anon_sym_LF] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [sym_file_descriptor] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), }, [466] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(1222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(1220), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_LF] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1200), + [sym_comment] = ACTIONS(3), + [anon_sym_esac] = ACTIONS(1200), + [anon_sym_RPAREN] = ACTIONS(1200), + [anon_sym_BQUOTE] = ACTIONS(1200), + [anon_sym_SEMI_SEMI] = ACTIONS(1200), }, [467] = { - [aux_sym_concatenation_repeat1] = STATE(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [sym__concat] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_LT_LT_DASH] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [sym_file_descriptor] = ACTIONS(1226), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_LT_LT_LT] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_SEMI_SEMI] = ACTIONS(2232), + [sym_comment] = ACTIONS(3), }, [468] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_LT_LT_DASH] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [sym_file_descriptor] = ACTIONS(1226), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_LT_LT_LT] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1224), - [anon_sym_esac] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), + [anon_sym_AMP_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_BQUOTE] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_LT_AMP] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT_DASH] = ACTIONS(1222), + [anon_sym_LF] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_RPAREN] = ACTIONS(1222), + [sym_file_descriptor] = ACTIONS(1224), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_AMP_GT] = ACTIONS(1222), + [anon_sym_LT_LT_LT] = ACTIONS(1222), + [anon_sym_GT_AMP] = ACTIONS(1222), + [anon_sym_esac] = ACTIONS(1222), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_SEMI_SEMI] = ACTIONS(1222), + [anon_sym_PIPE_AMP] = ACTIONS(1222), }, [469] = { - [aux_sym__literal_repeat1] = STATE(1127), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_AMP_GT_GT] = ACTIONS(1226), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_LT_AMP] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1226), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [sym_file_descriptor] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_AMP_GT] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_GT_AMP] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(449), + }, + [470] = { + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(449), + }, + [471] = { + [aux_sym_concatenation_repeat1] = STATE(1127), [anon_sym_AMP_GT_GT] = ACTIONS(1230), [anon_sym_LT_LT] = ACTIONS(1230), + [anon_sym_BQUOTE] = ACTIONS(1230), [anon_sym_PIPE_PIPE] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [sym__concat] = ACTIONS(2236), [anon_sym_PIPE] = ACTIONS(1230), + [sym_comment] = ACTIONS(3), [anon_sym_LT] = ACTIONS(1230), [anon_sym_LT_AMP] = ACTIONS(1230), [anon_sym_GT_GT] = ACTIONS(1230), @@ -21203,511 +21202,522 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(1232), [anon_sym_GT] = ACTIONS(1230), [anon_sym_AMP_GT] = ACTIONS(1230), - [sym__special_character] = ACTIONS(2232), [anon_sym_LT_LT_LT] = ACTIONS(1230), [anon_sym_GT_AMP] = ACTIONS(1230), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [anon_sym_esac] = ACTIONS(1230), [anon_sym_AMP_AMP] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), [anon_sym_SEMI_SEMI] = ACTIONS(1230), [anon_sym_PIPE_AMP] = ACTIONS(1230), }, - [470] = { - [sym_heredoc_redirect] = STATE(470), - [sym_file_redirect] = STATE(470), - [sym_herestring_redirect] = STATE(470), - [aux_sym_redirected_statement_repeat1] = STATE(470), - [anon_sym_AMP_GT_GT] = ACTIONS(2234), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_LT_AMP] = ACTIONS(2234), - [anon_sym_GT_GT] = ACTIONS(2234), - [anon_sym_LT_LT_DASH] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1244), - [sym_file_descriptor] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2234), - [anon_sym_AMP_GT] = ACTIONS(2234), - [anon_sym_LT_LT_LT] = ACTIONS(2243), - [anon_sym_GT_AMP] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI_SEMI] = ACTIONS(1244), - [anon_sym_PIPE_AMP] = ACTIONS(1244), - }, - [471] = { - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_declare] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(1210), - [sym_word] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(689), - [anon_sym_while] = ACTIONS(687), - [anon_sym_SEMI_SEMI] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_local] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_case] = ACTIONS(687), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [sym_file_descriptor] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), - }, [472] = { - [sym_heredoc_body] = STATE(497), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(1210), - [anon_sym_unset] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(996), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(1230), + [anon_sym_LT_LT] = ACTIONS(1230), + [anon_sym_BQUOTE] = ACTIONS(1230), + [anon_sym_PIPE_PIPE] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_AMP] = ACTIONS(1230), + [anon_sym_GT_GT] = ACTIONS(1230), + [anon_sym_LT_LT_DASH] = ACTIONS(1230), + [anon_sym_LF] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_RPAREN] = ACTIONS(1230), + [sym_file_descriptor] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_AMP_GT] = ACTIONS(1230), + [anon_sym_LT_LT_LT] = ACTIONS(1230), + [anon_sym_GT_AMP] = ACTIONS(1230), + [anon_sym_esac] = ACTIONS(1230), + [anon_sym_AMP_AMP] = ACTIONS(1230), + [anon_sym_SEMI_SEMI] = ACTIONS(1230), + [anon_sym_PIPE_AMP] = ACTIONS(1230), }, [473] = { - [sym_concatenation] = STATE(477), - [sym_string] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_arithmetic_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [aux_sym__literal_repeat1] = STATE(430), - [sym_simple_expansion] = STATE(427), - [aux_sym_command_repeat2] = STATE(477), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(2103), - [sym_ansii_c_string] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(2103), - [sym_number] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [anon_sym_GT] = ACTIONS(1252), - [sym_word] = ACTIONS(2105), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [sym__special_character] = ACTIONS(103), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_raw_string] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [aux_sym__literal_repeat1] = STATE(1133), + [anon_sym_AMP_GT_GT] = ACTIONS(1236), + [sym__special_character] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(1236), + [anon_sym_BQUOTE] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_LT_AMP] = ACTIONS(1236), + [anon_sym_GT_GT] = ACTIONS(1236), + [anon_sym_LT_LT_DASH] = ACTIONS(1236), + [anon_sym_LF] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_RPAREN] = ACTIONS(1236), + [sym_file_descriptor] = ACTIONS(1238), + [anon_sym_GT] = ACTIONS(1236), + [anon_sym_AMP_GT] = ACTIONS(1236), + [anon_sym_LT_LT_LT] = ACTIONS(1236), + [anon_sym_GT_AMP] = ACTIONS(1236), + [anon_sym_esac] = ACTIONS(1236), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_SEMI_SEMI] = ACTIONS(1236), + [anon_sym_PIPE_AMP] = ACTIONS(1236), }, [474] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(1256), - [sym_ansii_c_string] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(1256), - [sym_number] = ACTIONS(1256), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), - [anon_sym_RPAREN] = ACTIONS(1256), - [sym_word] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [sym_file_descriptor] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [sym__special_character] = ACTIONS(1256), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1256), - [sym_raw_string] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), + [sym_heredoc_redirect] = STATE(474), + [sym_file_redirect] = STATE(474), + [sym_herestring_redirect] = STATE(474), + [aux_sym_redirected_statement_repeat1] = STATE(474), + [anon_sym_AMP_GT_GT] = ACTIONS(2240), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_BQUOTE] = ACTIONS(1250), + [anon_sym_PIPE_PIPE] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_LT_AMP] = ACTIONS(2240), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_LT_LT_DASH] = ACTIONS(2243), + [anon_sym_LF] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_RPAREN] = ACTIONS(1250), + [sym_file_descriptor] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2240), + [anon_sym_AMP_GT] = ACTIONS(2240), + [anon_sym_LT_LT_LT] = ACTIONS(2249), + [anon_sym_GT_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(1250), + [anon_sym_SEMI_SEMI] = ACTIONS(1250), + [anon_sym_PIPE_AMP] = ACTIONS(1250), }, [475] = { - [aux_sym_concatenation_repeat1] = STATE(410), - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(1256), - [sym_ansii_c_string] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [sym__concat] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(1256), - [sym_number] = ACTIONS(1256), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), - [anon_sym_RPAREN] = ACTIONS(1256), - [sym_word] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [sym_file_descriptor] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [sym__special_character] = ACTIONS(1256), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1256), - [sym_raw_string] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(693), + [sym_variable_name] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_while] = ACTIONS(693), + [anon_sym_SEMI_SEMI] = ACTIONS(1218), + [sym_word] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_local] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_case] = ACTIONS(693), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [sym_file_descriptor] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), }, [476] = { - [aux_sym__literal_repeat1] = STATE(425), - [anon_sym_AMP_GT_GT] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1260), - [anon_sym_LT_LPAREN] = ACTIONS(1260), - [sym_ansii_c_string] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_LT_AMP] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_EQ_TILDE] = ACTIONS(1260), - [anon_sym_DOLLAR] = ACTIONS(1260), - [anon_sym_LT_LT_DASH] = ACTIONS(1260), - [anon_sym_GT_LPAREN] = ACTIONS(1260), - [sym_number] = ACTIONS(1260), - [anon_sym_LF] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), - [anon_sym_RPAREN] = ACTIONS(1260), - [sym_word] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [sym_file_descriptor] = ACTIONS(1262), - [anon_sym_AMP_GT] = ACTIONS(1260), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [sym__special_character] = ACTIONS(2095), - [anon_sym_LT_LT_LT] = ACTIONS(1260), - [anon_sym_GT_AMP] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1260), - [sym_raw_string] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI_SEMI] = ACTIONS(1260), - [anon_sym_PIPE_AMP] = ACTIONS(1260), + [sym_heredoc_body] = STATE(501), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [477] = { - [sym_concatenation] = STATE(477), - [sym_string] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_arithmetic_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [aux_sym__literal_repeat1] = STATE(430), - [sym_simple_expansion] = STATE(427), - [aux_sym_command_repeat2] = STATE(477), - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2252), - [anon_sym_LT_LPAREN] = ACTIONS(2255), - [sym_ansii_c_string] = ACTIONS(2258), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2264), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(2255), - [sym_number] = ACTIONS(2258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2267), - [anon_sym_RPAREN] = ACTIONS(1256), - [sym_word] = ACTIONS(2258), - [anon_sym_GT] = ACTIONS(1256), - [sym_file_descriptor] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(2261), - [sym__special_character] = ACTIONS(2270), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2273), - [sym_raw_string] = ACTIONS(2258), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), + [sym_concatenation] = STATE(481), + [sym_string] = STATE(430), + [sym_command_substitution] = STATE(430), + [sym_process_substitution] = STATE(430), + [sym_arithmetic_expansion] = STATE(430), + [sym_string_expansion] = STATE(430), + [sym_expansion] = STATE(430), + [aux_sym__literal_repeat1] = STATE(433), + [sym_simple_expansion] = STATE(430), + [aux_sym_command_repeat2] = STATE(481), + [sym_word] = ACTIONS(2105), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [sym__special_character] = ACTIONS(71), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(2107), + [sym_raw_string] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_EQ_TILDE] = ACTIONS(2109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2111), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(2113), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(1258), + [sym_file_descriptor] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_GT_AMP] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_SEMI_SEMI] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1258), }, [478] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [aux_sym_concatenation_repeat1] = STATE(408), + [sym_word] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [sym_raw_string] = ACTIONS(1262), + [sym_number] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [sym__concat] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1262), + [sym_ansii_c_string] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_GT_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), }, [479] = { - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [sym_test_operator] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1302), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), + [sym_word] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [sym_raw_string] = ACTIONS(1262), + [sym_number] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1262), + [sym_ansii_c_string] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_GT_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), }, [480] = { - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [sym_test_operator] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1306), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), + [aux_sym__literal_repeat1] = STATE(428), + [sym_word] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [sym__special_character] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [sym_raw_string] = ACTIONS(1266), + [sym_number] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [anon_sym_LT_LPAREN] = ACTIONS(1266), + [sym_ansii_c_string] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [sym_file_descriptor] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [anon_sym_GT_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), }, [481] = { - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [sym_test_operator] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1306), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), + [sym_concatenation] = STATE(481), + [sym_string] = STATE(430), + [sym_command_substitution] = STATE(430), + [sym_process_substitution] = STATE(430), + [sym_arithmetic_expansion] = STATE(430), + [sym_string_expansion] = STATE(430), + [sym_expansion] = STATE(430), + [aux_sym__literal_repeat1] = STATE(433), + [sym_simple_expansion] = STATE(430), + [aux_sym_command_repeat2] = STATE(481), + [sym_word] = ACTIONS(2252), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [sym__special_character] = ACTIONS(2255), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(2258), + [sym_raw_string] = ACTIONS(2252), + [sym_number] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(2261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2264), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(2267), + [sym_ansii_c_string] = ACTIONS(2252), + [anon_sym_LF] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2273), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_GT_LPAREN] = ACTIONS(2267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2279), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), }, [482] = { - [sym_string] = STATE(414), - [anon_sym_0] = ACTIONS(2276), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym__] = ACTIONS(2276), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(2278), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [sym_word] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), + [sym_string] = STATE(418), + [anon_sym_QMARK] = ACTIONS(2282), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2282), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(2282), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2282), + [anon_sym_DOLLAR] = ACTIONS(2284), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(2286), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2278), - [sym_file_descriptor] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [sym_file_descriptor] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(2282), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [483] = { + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(1312), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1312), + [sym_test_operator] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + }, + [484] = { + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_RBRACK] = ACTIONS(1316), + [anon_sym_LT_LT] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [sym_test_operator] = ACTIONS(1316), + [anon_sym_DASH_EQ] = ACTIONS(1316), + }, + [485] = { + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_RBRACK] = ACTIONS(1316), + [anon_sym_LT_LT] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [sym_test_operator] = ACTIONS(1316), + [anon_sym_DASH_EQ] = ACTIONS(1316), + }, + [486] = { [anon_sym_AMP_GT_GT] = ACTIONS(1320), [anon_sym_LT_LT] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), [anon_sym_PIPE_PIPE] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), [anon_sym_PIPE] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), [anon_sym_LT] = ACTIONS(1320), [anon_sym_LT_AMP] = ACTIONS(1320), [anon_sym_GT_GT] = ACTIONS(1320), @@ -21720,736 +21730,616 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT] = ACTIONS(1320), [anon_sym_LT_LT_LT] = ACTIONS(1320), [anon_sym_GT_AMP] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1320), [anon_sym_esac] = ACTIONS(1320), [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), [anon_sym_SEMI_SEMI] = ACTIONS(1320), [anon_sym_PIPE_AMP] = ACTIONS(1320), }, - [484] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [anon_sym_RPAREN] = ACTIONS(1356), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1358), - [anon_sym_AMP_GT] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), + [487] = { + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), - }, - [485] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [sym_file_descriptor] = ACTIONS(1412), - [anon_sym_AMP_GT] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), - }, - [486] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_EQ_TILDE] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [anon_sym_RPAREN] = ACTIONS(1428), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [anon_sym_AMP_GT] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), - }, - [487] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LPAREN] = ACTIONS(1438), - [sym_ansii_c_string] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LT_AMP] = ACTIONS(1438), - [anon_sym_GT_GT] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1438), - [anon_sym_LT_LT_DASH] = ACTIONS(1438), - [anon_sym_GT_LPAREN] = ACTIONS(1438), - [sym_number] = ACTIONS(1438), - [anon_sym_LF] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), - [sym_variable_name] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1438), - [sym_word] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [sym_file_descriptor] = ACTIONS(1440), - [anon_sym_AMP_GT] = ACTIONS(1438), - [sym__special_character] = ACTIONS(1438), - [anon_sym_LT_LT_LT] = ACTIONS(1438), - [anon_sym_GT_AMP] = ACTIONS(1438), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_raw_string] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI_SEMI] = ACTIONS(1438), - [anon_sym_PIPE_AMP] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), }, [488] = { - [aux_sym_concatenation_repeat1] = STATE(1221), - [anon_sym_GT_LPAREN] = ACTIONS(1444), - [sym_number] = ACTIONS(1444), - [anon_sym_LF] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1444), - [sym_word] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1444), - [anon_sym_LT_LPAREN] = ACTIONS(1444), - [sym_ansii_c_string] = ACTIONS(1444), - [sym__special_character] = ACTIONS(1444), - [sym__concat] = ACTIONS(2282), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1444), - [sym_raw_string] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_SEMI_SEMI] = ACTIONS(1444), + [aux_sym_concatenation_repeat1] = STATE(1193), + [anon_sym_LT_LPAREN] = ACTIONS(1364), + [sym_ansii_c_string] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [anon_sym_LF] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1364), + [sym__special_character] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [sym_raw_string] = ACTIONS(1364), + [sym_number] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [sym__concat] = ACTIONS(2288), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1364), + [anon_sym_SEMI_SEMI] = ACTIONS(1364), + [sym_word] = ACTIONS(1364), }, [489] = { - [aux_sym__literal_repeat1] = STATE(1226), - [anon_sym_GT_LPAREN] = ACTIONS(1450), - [sym_number] = ACTIONS(1450), - [anon_sym_LF] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1450), - [sym_word] = ACTIONS(1450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), - [anon_sym_LT_LPAREN] = ACTIONS(1450), - [sym_ansii_c_string] = ACTIONS(1450), - [sym__special_character] = ACTIONS(2284), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_raw_string] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(1450), - [anon_sym_SEMI_SEMI] = ACTIONS(1450), + [sym_word] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1368), + [sym_number] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [sym_ansii_c_string] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_variable_name] = ACTIONS(1370), + [anon_sym_RPAREN] = ACTIONS(1368), + [sym_file_descriptor] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), }, [490] = { - [anon_sym_COLON_DASH] = ACTIONS(2286), - [anon_sym_GT_LPAREN] = ACTIONS(1456), - [sym_number] = ACTIONS(2286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(2286), - [anon_sym_EQ] = ACTIONS(2286), - [anon_sym_COLON_QMARK] = ACTIONS(2286), - [sym_ansii_c_string] = ACTIONS(1456), - [anon_sym_COLON] = ACTIONS(2286), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), - [sym__special_character] = ACTIONS(2286), - [anon_sym_LT_LPAREN] = ACTIONS(1456), - [sym_word] = ACTIONS(2286), - [sym__concat] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2286), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1456), - [sym_raw_string] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1456), - [anon_sym_DOLLAR] = ACTIONS(2286), + [aux_sym__literal_repeat1] = STATE(1199), + [anon_sym_LT_LPAREN] = ACTIONS(1376), + [sym_ansii_c_string] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [anon_sym_LF] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1376), + [sym__special_character] = ACTIONS(2290), + [anon_sym_BQUOTE] = ACTIONS(1376), + [sym_raw_string] = ACTIONS(1376), + [sym_number] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_DOLLAR] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1376), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1376), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1376), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1376), + [anon_sym_SEMI_SEMI] = ACTIONS(1376), + [sym_word] = ACTIONS(1376), }, [491] = { - [anon_sym_COLON_DASH] = ACTIONS(2290), - [anon_sym_GT_LPAREN] = ACTIONS(1466), - [sym_number] = ACTIONS(2290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(2290), - [anon_sym_EQ] = ACTIONS(2290), - [anon_sym_COLON_QMARK] = ACTIONS(2290), - [sym_ansii_c_string] = ACTIONS(1466), - [anon_sym_COLON] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(1466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2290), - [sym__special_character] = ACTIONS(2290), - [anon_sym_LT_LPAREN] = ACTIONS(1466), - [sym_word] = ACTIONS(2290), - [sym__concat] = ACTIONS(2292), - [anon_sym_PERCENT] = ACTIONS(2290), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1466), - [sym_raw_string] = ACTIONS(1466), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(2290), + [anon_sym_COLON_QMARK] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(1380), + [sym_ansii_c_string] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [anon_sym_POUND] = ACTIONS(1380), + [sym__special_character] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2292), + [sym_raw_string] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(1380), + [sym_number] = ACTIONS(2292), + [anon_sym_PERCENT] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(1380), + [sym__concat] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(2292), + [anon_sym_GT_LPAREN] = ACTIONS(1380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1380), + [sym_word] = ACTIONS(2292), }, [492] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1472), - [anon_sym_LT_LT] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_LT_AMP] = ACTIONS(1472), - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_LT_LT_DASH] = ACTIONS(1472), - [anon_sym_LF] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [sym_file_descriptor] = ACTIONS(1474), - [anon_sym_GT] = ACTIONS(1472), - [anon_sym_AMP_GT] = ACTIONS(1472), - [anon_sym_LT_LT_LT] = ACTIONS(1472), - [anon_sym_GT_AMP] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1472), - [anon_sym_esac] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_SEMI_SEMI] = ACTIONS(1472), - [anon_sym_PIPE_AMP] = ACTIONS(1472), + [anon_sym_COLON_QMARK] = ACTIONS(2296), + [anon_sym_LT_LPAREN] = ACTIONS(1390), + [sym_ansii_c_string] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(1390), + [sym__special_character] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_COLON] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(2296), + [sym_raw_string] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(1390), + [sym_number] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_DOLLAR] = ACTIONS(2296), + [anon_sym_BQUOTE] = ACTIONS(1390), + [sym__concat] = ACTIONS(2298), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(2296), + [anon_sym_GT_LPAREN] = ACTIONS(1390), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1390), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1390), + [sym_word] = ACTIONS(2296), }, [493] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1492), - [anon_sym_LT_LT] = ACTIONS(1492), - [anon_sym_PIPE_PIPE] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_AMP] = ACTIONS(1492), - [anon_sym_GT_GT] = ACTIONS(1492), - [anon_sym_LT_LT_DASH] = ACTIONS(1492), - [anon_sym_LF] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [sym_file_descriptor] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_AMP_GT] = ACTIONS(1492), - [anon_sym_LT_LT_LT] = ACTIONS(1492), - [anon_sym_GT_AMP] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1492), - [anon_sym_esac] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_SEMI_SEMI] = ACTIONS(1492), - [anon_sym_PIPE_AMP] = ACTIONS(1492), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [anon_sym_LF] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1396), + [sym_file_descriptor] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_AMP_GT] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_GT_AMP] = ACTIONS(1396), + [anon_sym_esac] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_SEMI_SEMI] = ACTIONS(1396), + [anon_sym_PIPE_AMP] = ACTIONS(1396), }, [494] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1500), - [anon_sym_PIPE_PIPE] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_LT_AMP] = ACTIONS(1500), - [anon_sym_GT_GT] = ACTIONS(1500), - [anon_sym_LT_LT_DASH] = ACTIONS(1500), - [anon_sym_LF] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_RPAREN] = ACTIONS(1500), - [sym_file_descriptor] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1500), - [anon_sym_AMP_GT] = ACTIONS(1500), - [anon_sym_LT_LT_LT] = ACTIONS(1500), - [anon_sym_GT_AMP] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1500), - [anon_sym_esac] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SEMI_SEMI] = ACTIONS(1500), - [anon_sym_PIPE_AMP] = ACTIONS(1500), + [anon_sym_AMP_GT_GT] = ACTIONS(1420), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), + [anon_sym_PIPE_PIPE] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_LT_AMP] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_LT_LT_DASH] = ACTIONS(1420), + [anon_sym_LF] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1420), + [sym_file_descriptor] = ACTIONS(1422), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_AMP_GT] = ACTIONS(1420), + [anon_sym_LT_LT_LT] = ACTIONS(1420), + [anon_sym_GT_AMP] = ACTIONS(1420), + [anon_sym_esac] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_SEMI_SEMI] = ACTIONS(1420), + [anon_sym_PIPE_AMP] = ACTIONS(1420), }, [495] = { - [anon_sym_LF] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1508), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1508), - [anon_sym_esac] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_SEMI_SEMI] = ACTIONS(1508), + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_EQ_TILDE] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_EQ_EQ] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), }, [496] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_typeset] = ACTIONS(1520), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1522), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_GT_LPAREN] = ACTIONS(1522), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_declare] = ACTIONS(1520), - [sym_variable_name] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1524), - [sym_word] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_unset] = ACTIONS(1520), - [sym__special_character] = ACTIONS(1520), - [anon_sym_GT_AMP] = ACTIONS(1522), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_SEMI_SEMI] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_unsetenv] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [sym_ansii_c_string] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_case] = ACTIONS(1520), - [sym_number] = ACTIONS(1520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [sym_file_descriptor] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_AMP_GT] = ACTIONS(1520), - [anon_sym_BQUOTE] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_EQ_TILDE] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [497] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2294), - [anon_sym_LF] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_SEMI_SEMI] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2298), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_EQ_TILDE] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [498] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_PIPE_PIPE] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_LT_AMP] = ACTIONS(1530), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_LT_LT_DASH] = ACTIONS(1530), - [anon_sym_LF] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [sym_file_descriptor] = ACTIONS(1532), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_AMP_GT] = ACTIONS(1530), - [anon_sym_LT_LT_LT] = ACTIONS(1530), - [anon_sym_GT_AMP] = ACTIONS(1530), + [anon_sym_AMP_GT_GT] = ACTIONS(1508), + [anon_sym_LT_LT] = ACTIONS(1508), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1530), - [anon_sym_esac] = ACTIONS(1530), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_SEMI_SEMI] = ACTIONS(1530), - [anon_sym_PIPE_AMP] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_LT_AMP] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1508), + [anon_sym_LT_LT_DASH] = ACTIONS(1508), + [anon_sym_LF] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [sym_file_descriptor] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_AMP_GT] = ACTIONS(1508), + [anon_sym_LT_LT_LT] = ACTIONS(1508), + [anon_sym_GT_AMP] = ACTIONS(1508), + [anon_sym_esac] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1508), + [anon_sym_SEMI_SEMI] = ACTIONS(1508), + [anon_sym_PIPE_AMP] = ACTIONS(1508), }, [499] = { - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_typeset] = ACTIONS(1520), - [anon_sym_unsetenv] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1522), - [sym_ansii_c_string] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), - [sym_number] = ACTIONS(1520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_declare] = ACTIONS(1520), - [anon_sym_GT_LPAREN] = ACTIONS(1522), - [sym_file_descriptor] = ACTIONS(1522), - [sym_word] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), - [sym_variable_name] = ACTIONS(1522), - [anon_sym_AMP_GT] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_unset] = ACTIONS(1520), - [sym__special_character] = ACTIONS(1520), - [anon_sym_GT_AMP] = ACTIONS(1522), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [sym_raw_string] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_LF] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + [anon_sym_esac] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_SEMI_SEMI] = ACTIONS(1518), }, [500] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1542), - [anon_sym_PIPE_PIPE] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_AMP] = ACTIONS(1542), - [anon_sym_GT_GT] = ACTIONS(1542), - [anon_sym_LT_LT_DASH] = ACTIONS(1542), - [anon_sym_LF] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [sym_file_descriptor] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_AMP_GT] = ACTIONS(1542), - [anon_sym_LT_LT_LT] = ACTIONS(1542), - [anon_sym_GT_AMP] = ACTIONS(1542), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1542), - [anon_sym_esac] = ACTIONS(1542), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_SEMI_SEMI] = ACTIONS(1542), - [anon_sym_PIPE_AMP] = ACTIONS(1542), + [anon_sym_AMP_GT_GT] = ACTIONS(1528), + [anon_sym_typeset] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1528), + [anon_sym_LT_AMP] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_LT_LPAREN] = ACTIONS(1528), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [anon_sym_declare] = ACTIONS(1526), + [sym_variable_name] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_unset] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_GT_AMP] = ACTIONS(1528), + [anon_sym_GT_LPAREN] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_SEMI_SEMI] = ACTIONS(1530), + [sym_word] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_local] = ACTIONS(1526), + [anon_sym_unsetenv] = ACTIONS(1526), + [sym__special_character] = ACTIONS(1526), + [sym_raw_string] = ACTIONS(1528), + [sym_number] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1526), + [sym_ansii_c_string] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [sym_file_descriptor] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_AMP_GT] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), }, [501] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1639), - [anon_sym_LT_LT] = ACTIONS(1639), - [anon_sym_PIPE_PIPE] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1639), - [anon_sym_LT_AMP] = ACTIONS(1639), - [anon_sym_GT_GT] = ACTIONS(1639), - [anon_sym_LT_LT_DASH] = ACTIONS(1639), - [anon_sym_LF] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [sym_file_descriptor] = ACTIONS(1641), - [anon_sym_GT] = ACTIONS(1639), - [anon_sym_AMP_GT] = ACTIONS(1639), - [anon_sym_LT_LT_LT] = ACTIONS(1639), - [anon_sym_GT_AMP] = ACTIONS(1639), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_esac] = ACTIONS(1639), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_SEMI_SEMI] = ACTIONS(1639), - [anon_sym_PIPE_AMP] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(2300), + [anon_sym_AMP] = ACTIONS(2302), + [anon_sym_LF] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_SEMI_SEMI] = ACTIONS(2302), + [sym_comment] = ACTIONS(3), }, [502] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_LT_AMP] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1653), - [anon_sym_LT_LT_DASH] = ACTIONS(1653), - [anon_sym_LF] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_RPAREN] = ACTIONS(1653), - [sym_file_descriptor] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_AMP_GT] = ACTIONS(1653), - [anon_sym_LT_LT_LT] = ACTIONS(1653), - [anon_sym_GT_AMP] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1653), - [anon_sym_esac] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_SEMI_SEMI] = ACTIONS(1653), - [anon_sym_PIPE_AMP] = ACTIONS(1653), + [anon_sym_AMP_GT_GT] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1536), + [anon_sym_BQUOTE] = ACTIONS(1536), + [anon_sym_PIPE_PIPE] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_AMP] = ACTIONS(1536), + [anon_sym_GT_GT] = ACTIONS(1536), + [anon_sym_LT_LT_DASH] = ACTIONS(1536), + [anon_sym_LF] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [sym_file_descriptor] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_AMP_GT] = ACTIONS(1536), + [anon_sym_LT_LT_LT] = ACTIONS(1536), + [anon_sym_GT_AMP] = ACTIONS(1536), + [anon_sym_esac] = ACTIONS(1536), + [anon_sym_AMP_AMP] = ACTIONS(1536), + [anon_sym_SEMI_SEMI] = ACTIONS(1536), + [anon_sym_PIPE_AMP] = ACTIONS(1536), }, [503] = { + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_AMP_GT_GT] = ACTIONS(1528), + [anon_sym_local] = ACTIONS(1526), + [anon_sym_typeset] = ACTIONS(1526), + [anon_sym_unsetenv] = ACTIONS(1526), + [sym__special_character] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1528), + [sym_raw_string] = ACTIONS(1528), + [sym_number] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_LT_AMP] = ACTIONS(1528), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_ansii_c_string] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_declare] = ACTIONS(1526), + [anon_sym_LT_LPAREN] = ACTIONS(1528), + [sym_file_descriptor] = ACTIONS(1528), + [sym_variable_name] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_AMP_GT] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_unset] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_GT_AMP] = ACTIONS(1528), + [anon_sym_GT_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [sym_word] = ACTIONS(1526), + }, + [504] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1548), + [anon_sym_LT_LT] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_PIPE_PIPE] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_AMP] = ACTIONS(1548), + [anon_sym_GT_GT] = ACTIONS(1548), + [anon_sym_LT_LT_DASH] = ACTIONS(1548), + [anon_sym_LF] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [sym_file_descriptor] = ACTIONS(1550), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_AMP_GT] = ACTIONS(1548), + [anon_sym_LT_LT_LT] = ACTIONS(1548), + [anon_sym_GT_AMP] = ACTIONS(1548), + [anon_sym_esac] = ACTIONS(1548), + [anon_sym_AMP_AMP] = ACTIONS(1548), + [anon_sym_SEMI_SEMI] = ACTIONS(1548), + [anon_sym_PIPE_AMP] = ACTIONS(1548), + }, + [505] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1649), + [anon_sym_LT_LT] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1649), + [anon_sym_PIPE_PIPE] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1649), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_AMP] = ACTIONS(1649), + [anon_sym_GT_GT] = ACTIONS(1649), + [anon_sym_LT_LT_DASH] = ACTIONS(1649), + [anon_sym_LF] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1649), + [sym_file_descriptor] = ACTIONS(1651), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_AMP_GT] = ACTIONS(1649), + [anon_sym_LT_LT_LT] = ACTIONS(1649), + [anon_sym_GT_AMP] = ACTIONS(1649), + [anon_sym_esac] = ACTIONS(1649), + [anon_sym_AMP_AMP] = ACTIONS(1649), + [anon_sym_SEMI_SEMI] = ACTIONS(1649), + [anon_sym_PIPE_AMP] = ACTIONS(1649), + }, + [506] = { [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), + [anon_sym_BQUOTE] = ACTIONS(1659), [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1659), [anon_sym_PIPE] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), [anon_sym_LT] = ACTIONS(1659), [anon_sym_LT_AMP] = ACTIONS(1659), [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_EQ_TILDE] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), [anon_sym_LF] = ACTIONS(1661), [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), [anon_sym_RPAREN] = ACTIONS(1659), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), [sym_file_descriptor] = ACTIONS(1661), + [anon_sym_GT] = ACTIONS(1659), [anon_sym_AMP_GT] = ACTIONS(1659), - [anon_sym_EQ_EQ] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), [anon_sym_LT_LT_LT] = ACTIONS(1659), [anon_sym_GT_AMP] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), + [anon_sym_esac] = ACTIONS(1659), [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), [anon_sym_SEMI_SEMI] = ACTIONS(1659), [anon_sym_PIPE_AMP] = ACTIONS(1659), }, - [504] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [sym_file_descriptor] = ACTIONS(1673), - [anon_sym_AMP_GT] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), - }, - [505] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_EQ_TILDE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [sym_file_descriptor] = ACTIONS(1683), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - }, - [506] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_EQ_TILDE] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [anon_sym_RPAREN] = ACTIONS(1685), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [sym_file_descriptor] = ACTIONS(1687), - [anon_sym_AMP_GT] = ACTIONS(1685), - [anon_sym_EQ_EQ] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), - }, [507] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LPAREN] = ACTIONS(1691), - [sym_ansii_c_string] = ACTIONS(1691), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_LT_AMP] = ACTIONS(1691), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_LT_LT_DASH] = ACTIONS(1691), - [anon_sym_GT_LPAREN] = ACTIONS(1691), - [sym_number] = ACTIONS(1691), - [anon_sym_LF] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), - [sym_variable_name] = ACTIONS(1693), - [anon_sym_RPAREN] = ACTIONS(1691), - [sym_word] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1691), - [sym_file_descriptor] = ACTIONS(1693), - [anon_sym_AMP_GT] = ACTIONS(1691), - [sym__special_character] = ACTIONS(1691), - [anon_sym_LT_LT_LT] = ACTIONS(1691), - [anon_sym_GT_AMP] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1691), - [sym_raw_string] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI_SEMI] = ACTIONS(1691), - [anon_sym_PIPE_AMP] = ACTIONS(1691), + [sym_word] = ACTIONS(1665), + [anon_sym_AMP_GT_GT] = ACTIONS(1665), + [sym__special_character] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_raw_string] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_LT_AMP] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1665), + [anon_sym_LT_LT_DASH] = ACTIONS(1665), + [anon_sym_LT_LPAREN] = ACTIONS(1665), + [sym_ansii_c_string] = ACTIONS(1665), + [anon_sym_LF] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_variable_name] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1665), + [sym_file_descriptor] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_AMP_GT] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_LT_LT_LT] = ACTIONS(1665), + [anon_sym_GT_AMP] = ACTIONS(1665), + [anon_sym_GT_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_SEMI_SEMI] = ACTIONS(1665), + [anon_sym_PIPE_AMP] = ACTIONS(1665), }, [508] = { [sym_expansion] = STATE(488), @@ -22457,242 +22347,376 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = STATE(488), [sym_command_substitution] = STATE(488), [sym_process_substitution] = STATE(488), - [aux_sym__literal_repeat1] = STATE(489), + [aux_sym__literal_repeat1] = STATE(490), [aux_sym_for_statement_repeat1] = STATE(508), [sym_simple_expansion] = STATE(488), [sym_arithmetic_expansion] = STATE(488), [sym_string_expansion] = STATE(488), - [anon_sym_GT_LPAREN] = ACTIONS(2300), - [sym_number] = ACTIONS(2303), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2308), - [anon_sym_DQUOTE] = ACTIONS(2311), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2314), - [sym_word] = ACTIONS(2303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2317), - [anon_sym_LT_LPAREN] = ACTIONS(2300), - [sym_ansii_c_string] = ACTIONS(2303), - [sym__special_character] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_AMP] = ACTIONS(2306), - [anon_sym_DOLLAR] = ACTIONS(2326), - [anon_sym_SEMI_SEMI] = ACTIONS(2306), + [anon_sym_LT_LPAREN] = ACTIONS(2306), + [sym_ansii_c_string] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2312), + [anon_sym_LF] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(2315), + [sym__special_character] = ACTIONS(2317), + [anon_sym_BQUOTE] = ACTIONS(2320), + [sym_raw_string] = ACTIONS(2309), + [sym_number] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2323), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(2306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2329), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2332), + [anon_sym_SEMI_SEMI] = ACTIONS(2315), + [sym_word] = ACTIONS(2309), }, [509] = { - [anon_sym_COLON_DASH] = ACTIONS(2329), - [anon_sym_GT_LPAREN] = ACTIONS(1727), - [sym_number] = ACTIONS(2329), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_EQ] = ACTIONS(2329), - [anon_sym_COLON_QMARK] = ACTIONS(2329), - [sym_ansii_c_string] = ACTIONS(1727), - [anon_sym_COLON] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(1727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2329), - [sym__special_character] = ACTIONS(2329), - [anon_sym_LT_LPAREN] = ACTIONS(1727), - [sym_word] = ACTIONS(2329), - [anon_sym_PERCENT] = ACTIONS(2329), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1727), - [sym_raw_string] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(2329), + [anon_sym_COLON_QMARK] = ACTIONS(2335), + [anon_sym_LT_LPAREN] = ACTIONS(1701), + [sym_ansii_c_string] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(1701), + [sym__special_character] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_EQ] = ACTIONS(2335), + [sym_raw_string] = ACTIONS(1701), + [anon_sym_SLASH] = ACTIONS(1701), + [sym_number] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2335), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_BQUOTE] = ACTIONS(1701), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(2335), + [anon_sym_GT_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1701), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1701), + [sym_word] = ACTIONS(2335), }, [510] = { - [anon_sym_COLON_DASH] = ACTIONS(2329), - [anon_sym_GT_LPAREN] = ACTIONS(1727), - [sym_number] = ACTIONS(2329), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_EQ] = ACTIONS(2329), - [anon_sym_COLON_QMARK] = ACTIONS(2329), - [sym_ansii_c_string] = ACTIONS(1727), - [anon_sym_COLON] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(1727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2329), - [sym__special_character] = ACTIONS(2329), - [anon_sym_LT_LPAREN] = ACTIONS(1727), - [sym_word] = ACTIONS(2329), - [sym__concat] = ACTIONS(2331), - [anon_sym_PERCENT] = ACTIONS(2329), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1727), - [sym_raw_string] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(2329), + [anon_sym_COLON_QMARK] = ACTIONS(2335), + [anon_sym_LT_LPAREN] = ACTIONS(1701), + [sym_ansii_c_string] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(1701), + [sym__special_character] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_EQ] = ACTIONS(2335), + [sym_raw_string] = ACTIONS(1701), + [anon_sym_SLASH] = ACTIONS(1701), + [sym_number] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2335), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_BQUOTE] = ACTIONS(1701), + [sym__concat] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(2335), + [anon_sym_GT_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1701), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1701), + [sym_word] = ACTIONS(2335), }, [511] = { - [anon_sym_COLON_DASH] = ACTIONS(2333), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_number] = ACTIONS(2333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_EQ] = ACTIONS(2333), - [anon_sym_COLON_QMARK] = ACTIONS(2333), - [sym_ansii_c_string] = ACTIONS(1731), - [anon_sym_COLON] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2333), - [sym__special_character] = ACTIONS(2333), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [sym_word] = ACTIONS(2333), - [anon_sym_PERCENT] = ACTIONS(2333), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1731), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(2333), + [anon_sym_COLON_QMARK] = ACTIONS(2339), + [anon_sym_LT_LPAREN] = ACTIONS(1705), + [sym_ansii_c_string] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(1705), + [sym__special_character] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_COLON] = ACTIONS(2339), + [anon_sym_EQ] = ACTIONS(2339), + [sym_raw_string] = ACTIONS(1705), + [anon_sym_SLASH] = ACTIONS(1705), + [sym_number] = ACTIONS(2339), + [anon_sym_PERCENT] = ACTIONS(2339), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_BQUOTE] = ACTIONS(1705), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(2339), + [anon_sym_GT_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1705), + [sym_word] = ACTIONS(2339), }, [512] = { - [anon_sym_COLON_DASH] = ACTIONS(2333), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_number] = ACTIONS(2333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_EQ] = ACTIONS(2333), - [anon_sym_COLON_QMARK] = ACTIONS(2333), - [sym_ansii_c_string] = ACTIONS(1731), - [anon_sym_COLON] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2333), - [sym__special_character] = ACTIONS(2333), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [sym_word] = ACTIONS(2333), - [sym__concat] = ACTIONS(2335), - [anon_sym_PERCENT] = ACTIONS(2333), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1731), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(2333), + [anon_sym_COLON_QMARK] = ACTIONS(2339), + [anon_sym_LT_LPAREN] = ACTIONS(1705), + [sym_ansii_c_string] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(1705), + [sym__special_character] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_COLON] = ACTIONS(2339), + [anon_sym_EQ] = ACTIONS(2339), + [sym_raw_string] = ACTIONS(1705), + [anon_sym_SLASH] = ACTIONS(1705), + [sym_number] = ACTIONS(2339), + [anon_sym_PERCENT] = ACTIONS(2339), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_BQUOTE] = ACTIONS(1705), + [sym__concat] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(2339), + [anon_sym_GT_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1705), + [sym_word] = ACTIONS(2339), }, [513] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_AMP] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [anon_sym_LT_LT_DASH] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [sym_file_descriptor] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_AMP_GT] = ACTIONS(1741), - [anon_sym_LT_LT_LT] = ACTIONS(1741), - [anon_sym_GT_AMP] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_esac] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_SEMI_SEMI] = ACTIONS(1741), - [anon_sym_PIPE_AMP] = ACTIONS(1741), + [anon_sym_AMP_GT_GT] = ACTIONS(1715), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_BQUOTE] = ACTIONS(1715), + [anon_sym_PIPE_PIPE] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1715), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_LT_AMP] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_LT_LT_DASH] = ACTIONS(1715), + [anon_sym_LF] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_RPAREN] = ACTIONS(1715), + [sym_file_descriptor] = ACTIONS(1717), + [anon_sym_GT] = ACTIONS(1715), + [anon_sym_AMP_GT] = ACTIONS(1715), + [anon_sym_LT_LT_LT] = ACTIONS(1715), + [anon_sym_GT_AMP] = ACTIONS(1715), + [anon_sym_esac] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1715), + [anon_sym_SEMI_SEMI] = ACTIONS(1715), + [anon_sym_PIPE_AMP] = ACTIONS(1715), }, [514] = { - [anon_sym_LF] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_esac] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_EQ_TILDE] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_EQ_EQ] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [515] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_typeset] = ACTIONS(1520), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1522), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_GT_LPAREN] = ACTIONS(1522), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_declare] = ACTIONS(1520), - [sym_variable_name] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1766), - [sym_word] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_unset] = ACTIONS(1520), - [sym__special_character] = ACTIONS(1520), - [anon_sym_GT_AMP] = ACTIONS(1522), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_unsetenv] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [sym_ansii_c_string] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_case] = ACTIONS(1520), - [sym_number] = ACTIONS(1520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [sym_file_descriptor] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_AMP_GT] = ACTIONS(1520), - [anon_sym_BQUOTE] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [anon_sym_RPAREN] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [516] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1774), - [anon_sym_LT_LT] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_LT_AMP] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1774), - [anon_sym_LT_LT_DASH] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [sym_file_descriptor] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_AMP_GT] = ACTIONS(1774), - [anon_sym_LT_LT_LT] = ACTIONS(1774), - [anon_sym_GT_AMP] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_esac] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_EQ_TILDE] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [517] = { + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_EQ_TILDE] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_RPAREN] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_EQ_EQ] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), + }, + [518] = { + [anon_sym_AMP] = ACTIONS(1751), + [anon_sym_LF] = ACTIONS(1753), + [anon_sym_SEMI] = ACTIONS(1751), + [sym_comment] = ACTIONS(3), + [anon_sym_esac] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_BQUOTE] = ACTIONS(1751), + [anon_sym_SEMI_SEMI] = ACTIONS(1751), + }, + [519] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1528), + [anon_sym_typeset] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1528), + [anon_sym_LT_AMP] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_LT_LPAREN] = ACTIONS(1528), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [anon_sym_declare] = ACTIONS(1526), + [sym_variable_name] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_unset] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_GT_AMP] = ACTIONS(1528), + [anon_sym_GT_LPAREN] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_SEMI_SEMI] = ACTIONS(1772), + [sym_word] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_local] = ACTIONS(1526), + [anon_sym_unsetenv] = ACTIONS(1526), + [sym__special_character] = ACTIONS(1526), + [sym_raw_string] = ACTIONS(1528), + [sym_number] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1526), + [sym_ansii_c_string] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [sym_file_descriptor] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_AMP_GT] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + }, + [520] = { [anon_sym_AMP_GT_GT] = ACTIONS(1780), [anon_sym_LT_LT] = ACTIONS(1780), + [anon_sym_BQUOTE] = ACTIONS(1780), [anon_sym_PIPE_PIPE] = ACTIONS(1780), + [anon_sym_AMP] = ACTIONS(1780), [anon_sym_PIPE] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), [anon_sym_LT] = ACTIONS(1780), [anon_sym_LT_AMP] = ACTIONS(1780), [anon_sym_GT_GT] = ACTIONS(1780), @@ -22705,325 +22729,325 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT] = ACTIONS(1780), [anon_sym_LT_LT_LT] = ACTIONS(1780), [anon_sym_GT_AMP] = ACTIONS(1780), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1780), [anon_sym_esac] = ACTIONS(1780), [anon_sym_AMP_AMP] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), [anon_sym_SEMI_SEMI] = ACTIONS(1780), [anon_sym_PIPE_AMP] = ACTIONS(1780), }, - [518] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1862), - [anon_sym_LT_LT] = ACTIONS(1862), - [anon_sym_PIPE_PIPE] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_LT_AMP] = ACTIONS(1862), - [anon_sym_GT_GT] = ACTIONS(1862), - [anon_sym_LT_LT_DASH] = ACTIONS(1862), - [anon_sym_LF] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [sym_file_descriptor] = ACTIONS(1864), - [anon_sym_GT] = ACTIONS(1862), - [anon_sym_AMP_GT] = ACTIONS(1862), - [anon_sym_LT_LT_LT] = ACTIONS(1862), - [anon_sym_GT_AMP] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1862), - [anon_sym_esac] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_SEMI_SEMI] = ACTIONS(1862), - [anon_sym_PIPE_AMP] = ACTIONS(1862), + [521] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1786), + [anon_sym_LT_LT] = ACTIONS(1786), + [anon_sym_BQUOTE] = ACTIONS(1786), + [anon_sym_PIPE_PIPE] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_LT_AMP] = ACTIONS(1786), + [anon_sym_GT_GT] = ACTIONS(1786), + [anon_sym_LT_LT_DASH] = ACTIONS(1786), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1786), + [sym_file_descriptor] = ACTIONS(1788), + [anon_sym_GT] = ACTIONS(1786), + [anon_sym_AMP_GT] = ACTIONS(1786), + [anon_sym_LT_LT_LT] = ACTIONS(1786), + [anon_sym_GT_AMP] = ACTIONS(1786), + [anon_sym_esac] = ACTIONS(1786), + [anon_sym_AMP_AMP] = ACTIONS(1786), + [anon_sym_SEMI_SEMI] = ACTIONS(1786), + [anon_sym_PIPE_AMP] = ACTIONS(1786), }, - [519] = { + [522] = { [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), + [anon_sym_BQUOTE] = ACTIONS(1868), [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1868), [anon_sym_PIPE] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), [anon_sym_LT] = ACTIONS(1868), [anon_sym_LT_AMP] = ACTIONS(1868), [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), [anon_sym_LF] = ACTIONS(1870), [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), [anon_sym_RPAREN] = ACTIONS(1868), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), [sym_file_descriptor] = ACTIONS(1870), + [anon_sym_GT] = ACTIONS(1868), [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), [anon_sym_LT_LT_LT] = ACTIONS(1868), [anon_sym_GT_AMP] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), + [anon_sym_esac] = ACTIONS(1868), [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), [anon_sym_SEMI_SEMI] = ACTIONS(1868), [anon_sym_PIPE_AMP] = ACTIONS(1868), }, - [520] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), + [523] = { + [anon_sym_COLON_QMARK] = ACTIONS(2343), [anon_sym_LT_LPAREN] = ACTIONS(1874), [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_EQ_TILDE] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1874), + [sym__special_character] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(2343), + [anon_sym_COLON] = ACTIONS(2343), + [anon_sym_EQ] = ACTIONS(2343), + [sym_raw_string] = ACTIONS(1874), + [anon_sym_SLASH] = ACTIONS(1874), + [sym_number] = ACTIONS(2343), + [anon_sym_PERCENT] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2343), + [anon_sym_BQUOTE] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(2343), [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2343), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1874), - [anon_sym_EQ_EQ] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), + [sym_word] = ACTIONS(2343), + }, + [524] = { + [anon_sym_COLON_QMARK] = ACTIONS(2345), + [anon_sym_LT_LPAREN] = ACTIONS(1876), + [sym_ansii_c_string] = ACTIONS(1876), + [anon_sym_DQUOTE] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(1876), + [sym__special_character] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_COLON] = ACTIONS(2345), + [anon_sym_EQ] = ACTIONS(2345), + [sym_raw_string] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1876), + [sym_number] = ACTIONS(2345), + [anon_sym_PERCENT] = ACTIONS(2345), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_BQUOTE] = ACTIONS(1876), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [anon_sym_COLON_DASH] = ACTIONS(2345), + [anon_sym_GT_LPAREN] = ACTIONS(1876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1876), + [sym_word] = ACTIONS(2345), }, - [521] = { + [525] = { [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1878), [anon_sym_PIPE] = ACTIONS(1878), + [sym_comment] = ACTIONS(3), [anon_sym_LT] = ACTIONS(1878), [anon_sym_LT_AMP] = ACTIONS(1878), [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_EQ_TILDE] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), [anon_sym_LF] = ACTIONS(1880), [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), [anon_sym_RPAREN] = ACTIONS(1878), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), [sym_file_descriptor] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1878), [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), [anon_sym_LT_LT_LT] = ACTIONS(1878), [anon_sym_GT_AMP] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1878), [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), [anon_sym_SEMI_SEMI] = ACTIONS(1878), [anon_sym_PIPE_AMP] = ACTIONS(1878), }, - [522] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_EQ_TILDE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - }, - [523] = { - [anon_sym_COLON_DASH] = ACTIONS(2337), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_number] = ACTIONS(2337), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_EQ] = ACTIONS(2337), - [anon_sym_COLON_QMARK] = ACTIONS(2337), - [sym_ansii_c_string] = ACTIONS(1888), - [anon_sym_COLON] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2337), - [sym__special_character] = ACTIONS(2337), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [sym_word] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_SLASH] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(2337), + [526] = { + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_esac] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), }, - [524] = { - [anon_sym_COLON_DASH] = ACTIONS(2339), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_number] = ACTIONS(2339), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(2339), - [anon_sym_EQ] = ACTIONS(2339), - [anon_sym_COLON_QMARK] = ACTIONS(2339), - [sym_ansii_c_string] = ACTIONS(1890), - [anon_sym_COLON] = ACTIONS(2339), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2339), - [sym__special_character] = ACTIONS(2339), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [sym_word] = ACTIONS(2339), - [anon_sym_PERCENT] = ACTIONS(2339), - [sym_comment] = ACTIONS(3), + [527] = { + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), [anon_sym_BQUOTE] = ACTIONS(1890), [sym_raw_string] = ACTIONS(1890), - [anon_sym_SLASH] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(2339), - }, - [525] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [sym_file_descriptor] = ACTIONS(1894), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_EQ_EQ] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, - [526] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1896), - [anon_sym_LT_LT] = ACTIONS(1896), - [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_LT_AMP] = ACTIONS(1896), - [anon_sym_GT_GT] = ACTIONS(1896), - [anon_sym_LT_LT_DASH] = ACTIONS(1896), - [anon_sym_LF] = ACTIONS(1898), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [sym_file_descriptor] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_AMP_GT] = ACTIONS(1896), - [anon_sym_LT_LT_LT] = ACTIONS(1896), - [anon_sym_GT_AMP] = ACTIONS(1896), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1896), - [anon_sym_esac] = ACTIONS(1896), - [anon_sym_AMP_AMP] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_SEMI_SEMI] = ACTIONS(1896), - [anon_sym_PIPE_AMP] = ACTIONS(1896), + [528] = { + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_EQ_TILDE] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, - [527] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1910), - [anon_sym_LT_LT] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_LT_AMP] = ACTIONS(1910), - [anon_sym_GT_GT] = ACTIONS(1910), - [anon_sym_LT_LT_DASH] = ACTIONS(1910), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_RPAREN] = ACTIONS(1910), - [sym_file_descriptor] = ACTIONS(1912), - [anon_sym_GT] = ACTIONS(1910), - [anon_sym_AMP_GT] = ACTIONS(1910), - [anon_sym_LT_LT_LT] = ACTIONS(1910), - [anon_sym_GT_AMP] = ACTIONS(1910), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_esac] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_SEMI_SEMI] = ACTIONS(1910), - [anon_sym_PIPE_AMP] = ACTIONS(1910), + [529] = { + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_EQ_TILDE] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, - [528] = { + [530] = { + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_EQ_TILDE] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_EQ_EQ] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), + }, + [531] = { [anon_sym_AMP_GT_GT] = ACTIONS(1916), [anon_sym_LT_LT] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), [anon_sym_PIPE_PIPE] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), [anon_sym_PIPE] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), [anon_sym_LT] = ACTIONS(1916), [anon_sym_LT_AMP] = ACTIONS(1916), [anon_sym_GT_GT] = ACTIONS(1916), @@ -23036,61461 +23060,61581 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT] = ACTIONS(1916), [anon_sym_LT_LT_LT] = ACTIONS(1916), [anon_sym_GT_AMP] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1916), [anon_sym_esac] = ACTIONS(1916), [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), [anon_sym_SEMI_SEMI] = ACTIONS(1916), [anon_sym_PIPE_AMP] = ACTIONS(1916), }, - [529] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1953), - [anon_sym_LT_LT] = ACTIONS(1953), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1953), - [anon_sym_LT_AMP] = ACTIONS(1953), - [anon_sym_GT_GT] = ACTIONS(1953), - [anon_sym_LT_LT_DASH] = ACTIONS(1953), - [anon_sym_LF] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [sym_file_descriptor] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1953), - [anon_sym_AMP_GT] = ACTIONS(1953), - [anon_sym_LT_LT_LT] = ACTIONS(1953), - [anon_sym_GT_AMP] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1953), - [anon_sym_esac] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_AMP] = ACTIONS(1953), - [anon_sym_SEMI_SEMI] = ACTIONS(1953), - [anon_sym_PIPE_AMP] = ACTIONS(1953), - }, - [530] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_EQ_TILDE] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [anon_sym_RPAREN] = ACTIONS(1957), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [sym_file_descriptor] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), - }, - [531] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_EQ_TILDE] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1961), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [sym_file_descriptor] = ACTIONS(1963), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_EQ_EQ] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), - }, [532] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1965), - [anon_sym_LT_LT] = ACTIONS(1965), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_LT_AMP] = ACTIONS(1965), - [anon_sym_GT_GT] = ACTIONS(1965), - [anon_sym_LT_LT_DASH] = ACTIONS(1965), - [anon_sym_LF] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_RPAREN] = ACTIONS(1965), - [sym_file_descriptor] = ACTIONS(1967), - [anon_sym_GT] = ACTIONS(1965), - [anon_sym_AMP_GT] = ACTIONS(1965), - [anon_sym_LT_LT_LT] = ACTIONS(1965), - [anon_sym_GT_AMP] = ACTIONS(1965), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1965), - [anon_sym_esac] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_SEMI_SEMI] = ACTIONS(1965), - [anon_sym_PIPE_AMP] = ACTIONS(1965), + [anon_sym_AMP_GT_GT] = ACTIONS(1922), + [anon_sym_LT_LT] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_LT_AMP] = ACTIONS(1922), + [anon_sym_GT_GT] = ACTIONS(1922), + [anon_sym_LT_LT_DASH] = ACTIONS(1922), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_RPAREN] = ACTIONS(1922), + [sym_file_descriptor] = ACTIONS(1924), + [anon_sym_GT] = ACTIONS(1922), + [anon_sym_AMP_GT] = ACTIONS(1922), + [anon_sym_LT_LT_LT] = ACTIONS(1922), + [anon_sym_GT_AMP] = ACTIONS(1922), + [anon_sym_esac] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_SEMI_SEMI] = ACTIONS(1922), + [anon_sym_PIPE_AMP] = ACTIONS(1922), }, [533] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1973), - [anon_sym_LT_LT] = ACTIONS(1973), - [anon_sym_PIPE_PIPE] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_AMP] = ACTIONS(1973), - [anon_sym_GT_GT] = ACTIONS(1973), - [anon_sym_LT_LT_DASH] = ACTIONS(1973), - [anon_sym_LF] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [sym_file_descriptor] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1973), - [anon_sym_AMP_GT] = ACTIONS(1973), - [anon_sym_LT_LT_LT] = ACTIONS(1973), - [anon_sym_GT_AMP] = ACTIONS(1973), + [anon_sym_AMP_GT_GT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_esac] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - [anon_sym_SEMI_SEMI] = ACTIONS(1973), - [anon_sym_PIPE_AMP] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_AMP] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_LT_LT_DASH] = ACTIONS(1959), + [anon_sym_LF] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1959), + [sym_file_descriptor] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1959), + [anon_sym_LT_LT_LT] = ACTIONS(1959), + [anon_sym_GT_AMP] = ACTIONS(1959), + [anon_sym_esac] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), }, [534] = { - [anon_sym_AMP_GT_GT] = ACTIONS(2005), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_PIPE_PIPE] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_LT_AMP] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2005), - [sym_file_descriptor] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_GT_AMP] = ACTIONS(2005), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2005), - [anon_sym_esac] = ACTIONS(2005), - [anon_sym_AMP_AMP] = ACTIONS(2005), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_SEMI_SEMI] = ACTIONS(2005), - [anon_sym_PIPE_AMP] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(1963), + [anon_sym_LT_LT] = ACTIONS(1963), + [anon_sym_BQUOTE] = ACTIONS(1963), + [anon_sym_PIPE_PIPE] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1963), + [anon_sym_LT_AMP] = ACTIONS(1963), + [anon_sym_GT_GT] = ACTIONS(1963), + [anon_sym_LT_LT_DASH] = ACTIONS(1963), + [anon_sym_LF] = ACTIONS(1965), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [sym_file_descriptor] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1963), + [anon_sym_AMP_GT] = ACTIONS(1963), + [anon_sym_LT_LT_LT] = ACTIONS(1963), + [anon_sym_GT_AMP] = ACTIONS(1963), + [anon_sym_esac] = ACTIONS(1963), + [anon_sym_AMP_AMP] = ACTIONS(1963), + [anon_sym_SEMI_SEMI] = ACTIONS(1963), + [anon_sym_PIPE_AMP] = ACTIONS(1963), }, [535] = { - [anon_sym_AMP_GT_GT] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(2009), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_LT_AMP] = ACTIONS(2009), - [anon_sym_GT_GT] = ACTIONS(2009), - [anon_sym_LT_LT_DASH] = ACTIONS(2009), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2009), - [sym_file_descriptor] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2009), - [anon_sym_AMP_GT] = ACTIONS(2009), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_GT_AMP] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2009), - [anon_sym_esac] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2009), - [anon_sym_SEMI_SEMI] = ACTIONS(2009), - [anon_sym_PIPE_AMP] = ACTIONS(2009), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_EQ_TILDE] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [536] = { - [anon_sym_AMP_GT_GT] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_PIPE_PIPE] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_LT_AMP] = ACTIONS(2031), - [anon_sym_GT_GT] = ACTIONS(2031), - [anon_sym_LT_LT_DASH] = ACTIONS(2031), - [anon_sym_LF] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_RPAREN] = ACTIONS(2031), - [sym_file_descriptor] = ACTIONS(2033), - [anon_sym_GT] = ACTIONS(2031), - [anon_sym_AMP_GT] = ACTIONS(2031), - [anon_sym_LT_LT_LT] = ACTIONS(2031), - [anon_sym_GT_AMP] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2031), - [anon_sym_esac] = ACTIONS(2031), - [anon_sym_AMP_AMP] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2031), - [anon_sym_SEMI_SEMI] = ACTIONS(2031), - [anon_sym_PIPE_AMP] = ACTIONS(2031), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_EQ_TILDE] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [537] = { - [anon_sym_AMP_GT_GT] = ACTIONS(2039), - [anon_sym_LT_LT] = ACTIONS(2039), - [anon_sym_PIPE_PIPE] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_LT_AMP] = ACTIONS(2039), - [anon_sym_GT_GT] = ACTIONS(2039), - [anon_sym_LT_LT_DASH] = ACTIONS(2039), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_RPAREN] = ACTIONS(2039), - [sym_file_descriptor] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2039), - [anon_sym_AMP_GT] = ACTIONS(2039), - [anon_sym_LT_LT_LT] = ACTIONS(2039), - [anon_sym_GT_AMP] = ACTIONS(2039), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2039), - [anon_sym_esac] = ACTIONS(2039), - [anon_sym_AMP_AMP] = ACTIONS(2039), - [anon_sym_AMP] = ACTIONS(2039), - [anon_sym_SEMI_SEMI] = ACTIONS(2039), - [anon_sym_PIPE_AMP] = ACTIONS(2039), + [anon_sym_AMP_GT_GT] = ACTIONS(1979), + [anon_sym_LT_LT] = ACTIONS(1979), + [anon_sym_BQUOTE] = ACTIONS(1979), + [anon_sym_PIPE_PIPE] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_LT_AMP] = ACTIONS(1979), + [anon_sym_GT_GT] = ACTIONS(1979), + [anon_sym_LT_LT_DASH] = ACTIONS(1979), + [anon_sym_LF] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_RPAREN] = ACTIONS(1979), + [sym_file_descriptor] = ACTIONS(1981), + [anon_sym_GT] = ACTIONS(1979), + [anon_sym_AMP_GT] = ACTIONS(1979), + [anon_sym_LT_LT_LT] = ACTIONS(1979), + [anon_sym_GT_AMP] = ACTIONS(1979), + [anon_sym_esac] = ACTIONS(1979), + [anon_sym_AMP_AMP] = ACTIONS(1979), + [anon_sym_SEMI_SEMI] = ACTIONS(1979), + [anon_sym_PIPE_AMP] = ACTIONS(1979), }, [538] = { - [sym_expansion] = STATE(400), - [sym_concatenation] = STATE(556), - [aux_sym_declaration_command_repeat1] = STATE(556), - [sym_string] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), - [sym_variable_assignment] = STATE(556), - [sym_subscript] = STATE(2595), - [sym_simple_expansion] = STATE(400), - [sym_arithmetic_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [anon_sym_AMP_GT_GT] = ACTIONS(135), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(135), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), - [anon_sym_LT_LPAREN] = ACTIONS(2049), - [sym_ansii_c_string] = ACTIONS(2051), - [anon_sym_PIPE_PIPE] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [aux_sym__simple_variable_name_token1] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_LT_AMP] = ACTIONS(135), - [anon_sym_GT_GT] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_LT_LT_DASH] = ACTIONS(135), - [anon_sym_GT_LPAREN] = ACTIONS(2049), - [sym_number] = ACTIONS(2051), - [anon_sym_LF] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2057), - [sym_variable_name] = ACTIONS(2059), - [sym_file_descriptor] = ACTIONS(151), - [sym_word] = ACTIONS(2051), - [anon_sym_GT] = ACTIONS(135), - [anon_sym_AMP_GT] = ACTIONS(135), - [sym__special_character] = ACTIONS(2061), - [anon_sym_LT_LT_LT] = ACTIONS(135), - [anon_sym_GT_AMP] = ACTIONS(135), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(135), - [sym_raw_string] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(135), - [anon_sym_AMP] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(135), - [anon_sym_PIPE_AMP] = ACTIONS(135), + [anon_sym_AMP_GT_GT] = ACTIONS(2011), + [anon_sym_LT_LT] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [anon_sym_PIPE_PIPE] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_LT_AMP] = ACTIONS(2011), + [anon_sym_GT_GT] = ACTIONS(2011), + [anon_sym_LT_LT_DASH] = ACTIONS(2011), + [anon_sym_LF] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [sym_file_descriptor] = ACTIONS(2013), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_AMP_GT] = ACTIONS(2011), + [anon_sym_LT_LT_LT] = ACTIONS(2011), + [anon_sym_GT_AMP] = ACTIONS(2011), + [anon_sym_esac] = ACTIONS(2011), + [anon_sym_AMP_AMP] = ACTIONS(2011), + [anon_sym_SEMI_SEMI] = ACTIONS(2011), + [anon_sym_PIPE_AMP] = ACTIONS(2011), }, [539] = { - [sym_expansion] = STATE(403), - [sym_concatenation] = STATE(559), - [sym_string] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym__literal_repeat1] = STATE(404), - [aux_sym_unset_command_repeat1] = STATE(559), - [sym_simple_expansion] = STATE(403), - [sym_arithmetic_expansion] = STATE(403), - [sym_string_expansion] = STATE(403), - [anon_sym_AMP_GT_GT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(2065), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), - [anon_sym_LT_LPAREN] = ACTIONS(2071), - [sym_ansii_c_string] = ACTIONS(2073), - [anon_sym_PIPE_PIPE] = ACTIONS(161), - [anon_sym_PIPE] = ACTIONS(161), - [aux_sym__simple_variable_name_token1] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_LT_AMP] = ACTIONS(161), - [anon_sym_GT_GT] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_LT_LT_DASH] = ACTIONS(161), - [anon_sym_GT_LPAREN] = ACTIONS(2071), - [sym_number] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2079), - [sym_file_descriptor] = ACTIONS(177), - [sym_word] = ACTIONS(2073), - [anon_sym_GT] = ACTIONS(161), - [anon_sym_AMP_GT] = ACTIONS(161), - [sym__special_character] = ACTIONS(2081), - [anon_sym_LT_LT_LT] = ACTIONS(161), - [anon_sym_GT_AMP] = ACTIONS(161), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_raw_string] = ACTIONS(2073), - [anon_sym_AMP_AMP] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(161), - [anon_sym_SEMI_SEMI] = ACTIONS(161), - [anon_sym_PIPE_AMP] = ACTIONS(161), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2015), + [anon_sym_BQUOTE] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LF] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_RPAREN] = ACTIONS(2015), + [sym_file_descriptor] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_esac] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), }, [540] = { - [aux_sym_concatenation_repeat1] = STATE(1254), - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [sym_ansii_c_string] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [sym__concat] = ACTIONS(2345), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_number] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [sym_file_descriptor] = ACTIONS(229), - [sym_word] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [sym__special_character] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), + [anon_sym_AMP_GT_GT] = ACTIONS(2037), + [anon_sym_LT_LT] = ACTIONS(2037), + [anon_sym_BQUOTE] = ACTIONS(2037), + [anon_sym_PIPE_PIPE] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(2037), + [anon_sym_LT_AMP] = ACTIONS(2037), + [anon_sym_GT_GT] = ACTIONS(2037), + [anon_sym_LT_LT_DASH] = ACTIONS(2037), + [anon_sym_LF] = ACTIONS(2039), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2037), + [sym_file_descriptor] = ACTIONS(2039), + [anon_sym_GT] = ACTIONS(2037), + [anon_sym_AMP_GT] = ACTIONS(2037), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_GT_AMP] = ACTIONS(2037), + [anon_sym_esac] = ACTIONS(2037), + [anon_sym_AMP_AMP] = ACTIONS(2037), + [anon_sym_SEMI_SEMI] = ACTIONS(2037), + [anon_sym_PIPE_AMP] = ACTIONS(2037), }, [541] = { - [sym_concatenation] = STATE(548), - [sym_string] = STATE(540), - [sym_command_substitution] = STATE(540), - [sym_process_substitution] = STATE(540), - [sym_test_command] = STATE(415), - [sym_variable_assignment] = STATE(549), - [aux_sym_command_repeat1] = STATE(549), - [sym_subscript] = STATE(2585), - [sym_arithmetic_expansion] = STATE(540), - [sym_string_expansion] = STATE(540), - [sym_expansion] = STATE(540), - [sym_command] = STATE(415), - [sym_command_name] = STATE(643), - [aux_sym__literal_repeat1] = STATE(547), - [sym_simple_expansion] = STATE(540), - [sym_subshell] = STATE(415), - [sym_file_redirect] = STATE(549), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_GT_LPAREN] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym_variable_name] = ACTIONS(273), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [anon_sym_AMP_GT] = ACTIONS(27), - [sym_ansii_c_string] = ACTIONS(1802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [sym__special_character] = ACTIONS(1816), - [anon_sym_GT_AMP] = ACTIONS(7), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [sym_raw_string] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_AMP_GT_GT] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(2045), + [anon_sym_BQUOTE] = ACTIONS(2045), + [anon_sym_PIPE_PIPE] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_LT_AMP] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2045), + [anon_sym_LT_LT_DASH] = ACTIONS(2045), + [anon_sym_LF] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_RPAREN] = ACTIONS(2045), + [sym_file_descriptor] = ACTIONS(2047), + [anon_sym_GT] = ACTIONS(2045), + [anon_sym_AMP_GT] = ACTIONS(2045), + [anon_sym_LT_LT_LT] = ACTIONS(2045), + [anon_sym_GT_AMP] = ACTIONS(2045), + [anon_sym_esac] = ACTIONS(2045), + [anon_sym_AMP_AMP] = ACTIONS(2045), + [anon_sym_SEMI_SEMI] = ACTIONS(2045), + [anon_sym_PIPE_AMP] = ACTIONS(2045), }, [542] = { - [aux_sym_concatenation_repeat1] = STATE(1254), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [sym_ansii_c_string] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [sym__concat] = ACTIONS(2345), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_number] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [sym_file_descriptor] = ACTIONS(229), - [sym_word] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [sym__special_character] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), + [sym_expansion] = STATE(402), + [sym_concatenation] = STATE(560), + [aux_sym_declaration_command_repeat1] = STATE(560), + [sym_string] = STATE(402), + [sym_command_substitution] = STATE(402), + [sym_process_substitution] = STATE(402), + [aux_sym__literal_repeat1] = STATE(403), + [sym_variable_assignment] = STATE(560), + [sym_subscript] = STATE(2601), + [sym_simple_expansion] = STATE(402), + [sym_arithmetic_expansion] = STATE(402), + [sym_string_expansion] = STATE(402), + [sym_word] = ACTIONS(2049), + [anon_sym_AMP_GT_GT] = ACTIONS(137), + [sym__special_character] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(137), + [anon_sym_BQUOTE] = ACTIONS(137), + [sym_raw_string] = ACTIONS(2049), + [sym_number] = ACTIONS(2049), + [anon_sym_PIPE_PIPE] = ACTIONS(137), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT_AMP] = ACTIONS(137), + [anon_sym_GT_GT] = ACTIONS(137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2055), + [anon_sym_LT_LT_DASH] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(2057), + [sym_ansii_c_string] = ACTIONS(2049), + [anon_sym_LF] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(2059), + [sym_variable_name] = ACTIONS(2061), + [sym_file_descriptor] = ACTIONS(147), + [aux_sym__simple_variable_name_token1] = ACTIONS(2347), + [anon_sym_GT] = ACTIONS(137), + [anon_sym_AMP_GT] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_LT_LT_LT] = ACTIONS(137), + [anon_sym_GT_AMP] = ACTIONS(137), + [anon_sym_GT_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2069), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(137), + [anon_sym_PIPE_AMP] = ACTIONS(137), }, [543] = { - [aux_sym_concatenation_repeat1] = STATE(564), - [anon_sym_AMP_GT_GT] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(287), - [sym_ansii_c_string] = ACTIONS(287), - [sym__concat] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(287), - [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(287), - [sym_number] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), - [sym_variable_name] = ACTIONS(287), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(287), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(287), - [anon_sym_GT_AMP] = ACTIONS(287), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(287), - [sym_raw_string] = ACTIONS(287), + [sym_expansion] = STATE(405), + [sym_concatenation] = STATE(563), + [sym_string] = STATE(405), + [sym_command_substitution] = STATE(405), + [sym_process_substitution] = STATE(405), + [aux_sym__literal_repeat1] = STATE(406), + [aux_sym_unset_command_repeat1] = STATE(563), + [sym_simple_expansion] = STATE(405), + [sym_arithmetic_expansion] = STATE(405), + [sym_string_expansion] = STATE(405), + [sym_word] = ACTIONS(2071), + [anon_sym_AMP_GT_GT] = ACTIONS(163), + [sym__special_character] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(163), + [anon_sym_BQUOTE] = ACTIONS(163), + [sym_raw_string] = ACTIONS(2071), + [sym_number] = ACTIONS(2071), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(163), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_LT_AMP] = ACTIONS(163), + [anon_sym_GT_GT] = ACTIONS(163), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2077), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(2079), + [sym_ansii_c_string] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(2081), + [sym_file_descriptor] = ACTIONS(173), + [aux_sym__simple_variable_name_token1] = ACTIONS(2349), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_AMP_GT] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_LT_LT_LT] = ACTIONS(163), + [anon_sym_GT_AMP] = ACTIONS(163), + [anon_sym_GT_LPAREN] = ACTIONS(2079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_SEMI_SEMI] = ACTIONS(163), + [anon_sym_PIPE_AMP] = ACTIONS(163), }, [544] = { - [sym_heredoc_redirect] = STATE(2796), - [sym_file_redirect] = STATE(2796), - [sym_herestring_redirect] = STATE(2796), - [aux_sym_redirected_statement_repeat1] = STATE(2796), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_AMP_GT_GT] = ACTIONS(2347), - [anon_sym_LF] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2351), - [sym_file_descriptor] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_AMP_GT] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_LT_LT_LT] = ACTIONS(2357), - [anon_sym_GT_AMP] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_esac] = ACTIONS(2093), - [anon_sym_LT_AMP] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_SEMI_SEMI] = ACTIONS(2093), - [anon_sym_PIPE_AMP] = ACTIONS(2359), + [aux_sym_concatenation_repeat1] = STATE(564), + [anon_sym_AMP_GT_GT] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [sym_number] = ACTIONS(185), + [sym__concat] = ACTIONS(387), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym_variable_name] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(185), }, [545] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(2361), - [anon_sym_PIPE] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(2365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(2367), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(2367), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_SEMI_SEMI] = ACTIONS(2367), - [anon_sym_PIPE_AMP] = ACTIONS(2363), + [aux_sym_concatenation_repeat1] = STATE(1259), + [sym_word] = ACTIONS(197), + [anon_sym_AMP_GT_GT] = ACTIONS(197), + [sym__special_character] = ACTIONS(197), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(197), + [sym_number] = ACTIONS(197), + [anon_sym_PIPE_PIPE] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [sym__concat] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LT_AMP] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(197), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LT_LPAREN] = ACTIONS(197), + [sym_ansii_c_string] = ACTIONS(197), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_file_descriptor] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_AMP_GT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_LT_LT_LT] = ACTIONS(197), + [anon_sym_GT_AMP] = ACTIONS(197), + [anon_sym_esac] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_GT_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_AMP_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI] = ACTIONS(197), + [anon_sym_PIPE_AMP] = ACTIONS(197), }, [546] = { - [sym_if_statement] = STATE(572), - [sym_function_definition] = STATE(572), - [sym_negated_command] = STATE(572), - [sym_test_command] = STATE(572), - [sym_variable_assignment] = STATE(573), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(101), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(572), - [sym_for_statement] = STATE(572), - [sym_compound_statement] = STATE(572), - [sym_subshell] = STATE(572), - [sym_declaration_command] = STATE(572), - [sym_unset_command] = STATE(572), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym_c_style_for_statement] = STATE(572), - [sym_while_statement] = STATE(572), - [sym_case_statement] = STATE(572), - [sym_pipeline] = STATE(572), - [sym_list] = STATE(572), - [sym_command] = STATE(572), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(545), + [sym_command_substitution] = STATE(545), + [sym_process_substitution] = STATE(545), + [sym_test_command] = STATE(415), + [sym_variable_assignment] = STATE(553), + [aux_sym_command_repeat1] = STATE(553), + [sym_subscript] = STATE(2591), + [sym_arithmetic_expansion] = STATE(545), + [sym_string_expansion] = STATE(545), + [sym_expansion] = STATE(545), + [sym_command] = STATE(415), + [sym_command_name] = STATE(649), + [aux_sym__literal_repeat1] = STATE(551), + [sym_simple_expansion] = STATE(545), + [sym_subshell] = STATE(415), + [sym_file_redirect] = STATE(553), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [sym__special_character] = ACTIONS(1802), + [sym_variable_name] = ACTIONS(267), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [sym_raw_string] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_number] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1820), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [sym_word] = ACTIONS(1808), }, [547] = { - [aux_sym__literal_repeat1] = STATE(1259), + [aux_sym_concatenation_repeat1] = STATE(1259), + [sym_word] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_AMP_GT_GT] = ACTIONS(197), + [sym__special_character] = ACTIONS(197), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(197), + [sym_number] = ACTIONS(197), + [anon_sym_PIPE_PIPE] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [sym__concat] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LT_AMP] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(197), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LT_LPAREN] = ACTIONS(197), + [sym_ansii_c_string] = ACTIONS(197), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_file_descriptor] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_AMP_GT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_LT_LT_LT] = ACTIONS(197), + [anon_sym_GT_AMP] = ACTIONS(197), + [anon_sym_esac] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_GT_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_AMP_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI] = ACTIONS(197), + [anon_sym_PIPE_AMP] = ACTIONS(197), + }, + [548] = { + [sym_heredoc_redirect] = STATE(2802), + [sym_file_redirect] = STATE(2802), + [sym_herestring_redirect] = STATE(2802), + [aux_sym_redirected_statement_repeat1] = STATE(2802), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(2353), + [anon_sym_LF] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2357), + [sym_file_descriptor] = ACTIONS(2359), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(2353), + [anon_sym_AMP_GT] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_PIPE_PIPE] = ACTIONS(2361), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_GT_AMP] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_esac] = ACTIONS(2099), + [anon_sym_LT_AMP] = ACTIONS(2353), + [anon_sym_GT_GT] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_SEMI_SEMI] = ACTIONS(2099), + [anon_sym_PIPE_AMP] = ACTIONS(2365), + }, + [549] = { + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [sym_word] = ACTIONS(347), [anon_sym_AMP_GT_GT] = ACTIONS(347), - [anon_sym_DQUOTE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), - [anon_sym_LT_LPAREN] = ACTIONS(347), - [sym_ansii_c_string] = ACTIONS(347), - [anon_sym_PIPE_PIPE] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(2099), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_PIPE_PIPE] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2371), + [sym_comment] = ACTIONS(3), [anon_sym_LT] = ACTIONS(347), [anon_sym_LT_AMP] = ACTIONS(347), [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_EQ_TILDE] = ACTIONS(347), - [anon_sym_DOLLAR] = ACTIONS(347), - [anon_sym_LT_LT_DASH] = ACTIONS(347), - [anon_sym_GT_LPAREN] = ACTIONS(347), - [sym_number] = ACTIONS(347), - [anon_sym_LF] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2367), + [sym_variable_name] = ACTIONS(349), [sym_file_descriptor] = ACTIONS(349), - [sym_word] = ACTIONS(347), [anon_sym_GT] = ACTIONS(347), [anon_sym_AMP_GT] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(347), - [sym__special_character] = ACTIONS(2369), - [anon_sym_LT_LT_LT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(463), [anon_sym_GT_AMP] = ACTIONS(347), - [anon_sym_esac] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(347), - [sym_raw_string] = ACTIONS(347), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(347), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_SEMI_SEMI] = ACTIONS(347), - [anon_sym_PIPE_AMP] = ACTIONS(347), - }, - [548] = { - [anon_sym_AMP_GT_GT] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(225), - [anon_sym_LT_LT] = ACTIONS(225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [sym_ansii_c_string] = ACTIONS(225), - [anon_sym_PIPE_PIPE] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_LT_AMP] = ACTIONS(225), - [anon_sym_GT_GT] = ACTIONS(225), - [anon_sym_EQ_TILDE] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(225), - [anon_sym_LT_LT_DASH] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_number] = ACTIONS(225), - [anon_sym_LF] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), - [sym_file_descriptor] = ACTIONS(229), - [sym_word] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_AMP_GT] = ACTIONS(225), - [anon_sym_EQ_EQ] = ACTIONS(225), - [sym__special_character] = ACTIONS(225), - [anon_sym_LT_LT_LT] = ACTIONS(225), - [anon_sym_GT_AMP] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(225), - [anon_sym_BQUOTE] = ACTIONS(225), - [sym_raw_string] = ACTIONS(225), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(225), - [anon_sym_PIPE_AMP] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(2369), + [anon_sym_SEMI_SEMI] = ACTIONS(2367), + [anon_sym_PIPE_AMP] = ACTIONS(2371), }, - [549] = { - [sym_expansion] = STATE(540), - [sym_string_expansion] = STATE(540), - [sym_concatenation] = STATE(548), - [sym_string] = STATE(540), - [aux_sym__literal_repeat1] = STATE(547), - [sym_command_substitution] = STATE(540), - [sym_process_substitution] = STATE(540), - [sym_command_name] = STATE(659), - [sym_variable_assignment] = STATE(105), - [sym_simple_expansion] = STATE(540), - [sym_subscript] = STATE(2585), - [aux_sym_command_repeat1] = STATE(105), - [sym_arithmetic_expansion] = STATE(540), - [sym_file_redirect] = STATE(105), - [anon_sym_GT_LPAREN] = ACTIONS(1800), + [550] = { + [sym_if_statement] = STATE(577), + [sym_function_definition] = STATE(577), + [sym_negated_command] = STATE(577), + [sym_test_command] = STATE(577), + [sym_variable_assignment] = STATE(578), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(102), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(577), + [sym_for_statement] = STATE(577), + [sym_compound_statement] = STATE(577), + [sym_subshell] = STATE(577), + [sym_declaration_command] = STATE(577), + [sym_unset_command] = STATE(577), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym_c_style_for_statement] = STATE(577), + [sym_while_statement] = STATE(577), + [sym_case_statement] = STATE(577), + [sym_pipeline] = STATE(577), + [sym_list] = STATE(577), + [sym_command] = STATE(577), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [sym_number] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [sym_variable_name] = ACTIONS(273), - [sym_word] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(27), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [anon_sym_AMP_GT] = ACTIONS(27), - [sym_ansii_c_string] = ACTIONS(1802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [sym__special_character] = ACTIONS(2371), - [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym_raw_string] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1820), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1804), - }, - [550] = { - [sym_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_concatenation] = STATE(579), - [sym_string] = STATE(427), - [aux_sym__literal_repeat1] = STATE(430), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_arithmetic_expansion] = STATE(427), - [aux_sym_command_repeat2] = STATE(579), - [anon_sym_AMP_GT_GT] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(2103), - [sym_ansii_c_string] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(359), - [anon_sym_LT_AMP] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_EQ_TILDE] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(359), - [anon_sym_GT_LPAREN] = ACTIONS(2103), - [sym_number] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), - [sym_file_descriptor] = ACTIONS(371), - [sym_word] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_AMP_GT] = ACTIONS(359), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [sym__special_character] = ACTIONS(103), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [anon_sym_GT_AMP] = ACTIONS(359), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(359), - [sym_raw_string] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(359), - [anon_sym_SEMI_SEMI] = ACTIONS(359), - [anon_sym_PIPE_AMP] = ACTIONS(359), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [551] = { - [aux_sym_concatenation_repeat1] = STATE(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [sym__concat] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_LT_AMP] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_LT_LT_DASH] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_RPAREN] = ACTIONS(381), - [sym_file_descriptor] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_AMP_GT] = ACTIONS(381), - [anon_sym_LT_LT_LT] = ACTIONS(381), - [anon_sym_GT_AMP] = ACTIONS(381), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_SEMI_SEMI] = ACTIONS(381), - [anon_sym_PIPE_AMP] = ACTIONS(381), + [aux_sym__literal_repeat1] = STATE(1265), + [sym_word] = ACTIONS(351), + [anon_sym_AMP_GT_GT] = ACTIONS(351), + [sym__special_character] = ACTIONS(2375), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_BQUOTE] = ACTIONS(351), + [sym_raw_string] = ACTIONS(351), + [sym_number] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_AMP] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_EQ_TILDE] = ACTIONS(351), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), + [anon_sym_LT_LT_DASH] = ACTIONS(351), + [anon_sym_LT_LPAREN] = ACTIONS(351), + [sym_ansii_c_string] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_DQUOTE] = ACTIONS(351), + [sym_file_descriptor] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_AMP_GT] = ACTIONS(351), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(351), + [anon_sym_GT_AMP] = ACTIONS(351), + [anon_sym_esac] = ACTIONS(351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(351), + [anon_sym_GT_LPAREN] = ACTIONS(351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(351), + [anon_sym_SEMI_SEMI] = ACTIONS(351), + [anon_sym_PIPE_AMP] = ACTIONS(351), }, [552] = { - [anon_sym_AMP_GT_GT] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_LT_AMP] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_LT_LT_DASH] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_RPAREN] = ACTIONS(381), - [sym_file_descriptor] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_AMP_GT] = ACTIONS(381), - [anon_sym_LT_LT_LT] = ACTIONS(381), - [anon_sym_GT_AMP] = ACTIONS(381), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(381), - [anon_sym_esac] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_SEMI_SEMI] = ACTIONS(381), - [anon_sym_PIPE_AMP] = ACTIONS(381), + [sym_word] = ACTIONS(197), + [anon_sym_AMP_GT_GT] = ACTIONS(197), + [sym__special_character] = ACTIONS(197), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(197), + [sym_number] = ACTIONS(197), + [anon_sym_PIPE_PIPE] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_PIPE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LT_AMP] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(197), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LT_LPAREN] = ACTIONS(197), + [sym_ansii_c_string] = ACTIONS(197), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_file_descriptor] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_AMP_GT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(197), + [anon_sym_LT_LT_LT] = ACTIONS(197), + [anon_sym_GT_AMP] = ACTIONS(197), + [anon_sym_esac] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_GT_LPAREN] = ACTIONS(197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_AMP_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI] = ACTIONS(197), + [anon_sym_PIPE_AMP] = ACTIONS(197), }, [553] = { - [aux_sym__literal_repeat1] = STATE(1127), - [anon_sym_AMP_GT_GT] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_LT_AMP] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_LT_LT_DASH] = ACTIONS(387), - [anon_sym_LF] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_RPAREN] = ACTIONS(387), - [sym_file_descriptor] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_AMP_GT] = ACTIONS(387), - [sym__special_character] = ACTIONS(2232), - [anon_sym_LT_LT_LT] = ACTIONS(387), - [anon_sym_GT_AMP] = ACTIONS(387), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(387), - [anon_sym_esac] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_SEMI_SEMI] = ACTIONS(387), - [anon_sym_PIPE_AMP] = ACTIONS(387), + [sym_expansion] = STATE(545), + [sym_string_expansion] = STATE(545), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(545), + [aux_sym__literal_repeat1] = STATE(551), + [sym_command_substitution] = STATE(545), + [sym_process_substitution] = STATE(545), + [sym_command_name] = STATE(665), + [sym_variable_assignment] = STATE(106), + [sym_simple_expansion] = STATE(545), + [sym_subscript] = STATE(2591), + [aux_sym_command_repeat1] = STATE(106), + [sym_arithmetic_expansion] = STATE(545), + [sym_file_redirect] = STATE(106), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [sym_ansii_c_string] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [sym__special_character] = ACTIONS(2377), + [sym_variable_name] = ACTIONS(267), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [sym_raw_string] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_number] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [sym_word] = ACTIONS(1808), }, [554] = { - [aux_sym_concatenation_repeat1] = STATE(1287), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(391), - [sym_ansii_c_string] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [sym__concat] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(391), - [aux_sym__simple_variable_name_token1] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_LT_LT_DASH] = ACTIONS(391), - [anon_sym_GT_LPAREN] = ACTIONS(391), - [sym_number] = ACTIONS(391), - [anon_sym_LF] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(391), - [sym_variable_name] = ACTIONS(395), - [sym_file_descriptor] = ACTIONS(395), - [sym_word] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_AMP_GT] = ACTIONS(391), - [sym__special_character] = ACTIONS(391), - [anon_sym_LT_LT_LT] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_esac] = ACTIONS(391), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_raw_string] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_SEMI_SEMI] = ACTIONS(391), - [anon_sym_PIPE_AMP] = ACTIONS(391), + [sym_expansion] = STATE(430), + [sym_string_expansion] = STATE(430), + [sym_concatenation] = STATE(584), + [sym_string] = STATE(430), + [aux_sym__literal_repeat1] = STATE(433), + [sym_command_substitution] = STATE(430), + [sym_process_substitution] = STATE(430), + [sym_simple_expansion] = STATE(430), + [sym_arithmetic_expansion] = STATE(430), + [aux_sym_command_repeat2] = STATE(584), + [sym_word] = ACTIONS(2105), + [anon_sym_AMP_GT_GT] = ACTIONS(365), + [sym__special_character] = ACTIONS(71), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_BQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(365), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(365), + [anon_sym_LT_AMP] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_EQ_TILDE] = ACTIONS(2109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2111), + [anon_sym_LT_LT_DASH] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(2113), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(2115), + [sym_file_descriptor] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_AMP_GT] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(365), + [anon_sym_GT_AMP] = ACTIONS(365), + [anon_sym_GT_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_SEMI_SEMI] = ACTIONS(365), + [anon_sym_PIPE_AMP] = ACTIONS(365), }, [555] = { - [aux_sym__literal_repeat1] = STATE(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), - [anon_sym_LT_LPAREN] = ACTIONS(397), - [sym_ansii_c_string] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [aux_sym__simple_variable_name_token1] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_LT_LT_DASH] = ACTIONS(397), - [anon_sym_GT_LPAREN] = ACTIONS(397), - [sym_number] = ACTIONS(397), - [anon_sym_LF] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(397), - [sym_variable_name] = ACTIONS(399), - [sym_file_descriptor] = ACTIONS(399), - [sym_word] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_AMP_GT] = ACTIONS(397), - [sym__special_character] = ACTIONS(2375), - [anon_sym_LT_LT_LT] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [anon_sym_esac] = ACTIONS(397), - [anon_sym_BQUOTE] = ACTIONS(397), - [sym_raw_string] = ACTIONS(397), + [aux_sym_concatenation_repeat1] = STATE(1127), + [anon_sym_AMP_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(385), + [sym__concat] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(385), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_SEMI_SEMI] = ACTIONS(397), - [anon_sym_PIPE_AMP] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_DASH] = ACTIONS(385), + [anon_sym_LF] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(385), + [sym_file_descriptor] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [anon_sym_LT_LT_LT] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_SEMI_SEMI] = ACTIONS(385), + [anon_sym_PIPE_AMP] = ACTIONS(385), }, [556] = { - [sym_expansion] = STATE(400), - [sym_concatenation] = STATE(432), - [aux_sym_declaration_command_repeat1] = STATE(432), - [sym_string] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym__literal_repeat1] = STATE(401), - [sym_variable_assignment] = STATE(432), - [sym_subscript] = STATE(2595), - [sym_simple_expansion] = STATE(400), - [sym_arithmetic_expansion] = STATE(400), - [sym_string_expansion] = STATE(400), - [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), - [anon_sym_LT_LPAREN] = ACTIONS(2049), - [sym_ansii_c_string] = ACTIONS(2051), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [aux_sym__simple_variable_name_token1] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_LT_AMP] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_LT_LT_DASH] = ACTIONS(403), - [anon_sym_GT_LPAREN] = ACTIONS(2049), - [sym_number] = ACTIONS(2051), - [anon_sym_LF] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2057), - [sym_variable_name] = ACTIONS(2059), - [sym_file_descriptor] = ACTIONS(407), - [sym_word] = ACTIONS(2051), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_AMP_GT] = ACTIONS(403), - [sym__special_character] = ACTIONS(2061), - [anon_sym_LT_LT_LT] = ACTIONS(403), - [anon_sym_GT_AMP] = ACTIONS(403), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_raw_string] = ACTIONS(2051), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_SEMI_SEMI] = ACTIONS(403), - [anon_sym_PIPE_AMP] = ACTIONS(403), + [anon_sym_AMP_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_DASH] = ACTIONS(385), + [anon_sym_LF] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(385), + [sym_file_descriptor] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [anon_sym_LT_LT_LT] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(385), + [anon_sym_esac] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_SEMI_SEMI] = ACTIONS(385), + [anon_sym_PIPE_AMP] = ACTIONS(385), }, [557] = { - [aux_sym_concatenation_repeat1] = STATE(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(409), - [anon_sym_LT_LPAREN] = ACTIONS(409), - [sym_ansii_c_string] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [sym__concat] = ACTIONS(2377), - [anon_sym_PIPE] = ACTIONS(409), - [aux_sym__simple_variable_name_token1] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(409), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_DOLLAR] = ACTIONS(409), - [anon_sym_LT_LT_DASH] = ACTIONS(409), - [anon_sym_GT_LPAREN] = ACTIONS(409), - [sym_number] = ACTIONS(409), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(409), - [sym_file_descriptor] = ACTIONS(413), - [sym_word] = ACTIONS(409), - [anon_sym_GT] = ACTIONS(409), - [anon_sym_AMP_GT] = ACTIONS(409), - [sym__special_character] = ACTIONS(409), - [anon_sym_LT_LT_LT] = ACTIONS(409), - [anon_sym_GT_AMP] = ACTIONS(409), - [anon_sym_esac] = ACTIONS(409), - [anon_sym_BQUOTE] = ACTIONS(409), - [sym_raw_string] = ACTIONS(409), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_SEMI_SEMI] = ACTIONS(409), - [anon_sym_PIPE_AMP] = ACTIONS(409), + [aux_sym__literal_repeat1] = STATE(1133), + [anon_sym_AMP_GT_GT] = ACTIONS(393), + [sym__special_character] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_AMP] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_LT_LT_DASH] = ACTIONS(393), + [anon_sym_LF] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(393), + [sym_file_descriptor] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_LT_LT_LT] = ACTIONS(393), + [anon_sym_GT_AMP] = ACTIONS(393), + [anon_sym_esac] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_SEMI_SEMI] = ACTIONS(393), + [anon_sym_PIPE_AMP] = ACTIONS(393), }, [558] = { - [aux_sym__literal_repeat1] = STATE(1325), - [anon_sym_AMP_GT_GT] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(415), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(415), - [anon_sym_LT_LPAREN] = ACTIONS(415), - [sym_ansii_c_string] = ACTIONS(415), - [anon_sym_PIPE_PIPE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(415), - [aux_sym__simple_variable_name_token1] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_AMP] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_LT_LT_DASH] = ACTIONS(415), - [anon_sym_GT_LPAREN] = ACTIONS(415), - [sym_number] = ACTIONS(415), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(415), - [sym_file_descriptor] = ACTIONS(417), - [sym_word] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_AMP_GT] = ACTIONS(415), - [sym__special_character] = ACTIONS(2379), - [anon_sym_LT_LT_LT] = ACTIONS(415), - [anon_sym_GT_AMP] = ACTIONS(415), - [anon_sym_esac] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [sym_raw_string] = ACTIONS(415), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [anon_sym_PIPE_AMP] = ACTIONS(415), + [aux_sym_concatenation_repeat1] = STATE(1292), + [sym_word] = ACTIONS(395), + [anon_sym_AMP_GT_GT] = ACTIONS(395), + [sym__special_character] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(395), + [sym_raw_string] = ACTIONS(395), + [sym_number] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(395), + [sym__concat] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(395), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_LT_AMP] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(395), + [anon_sym_LT_LT_DASH] = ACTIONS(395), + [anon_sym_LT_LPAREN] = ACTIONS(395), + [sym_ansii_c_string] = ACTIONS(395), + [anon_sym_LF] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), + [sym_variable_name] = ACTIONS(399), + [aux_sym__simple_variable_name_token1] = ACTIONS(395), + [sym_file_descriptor] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_AMP_GT] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_LT_LT_LT] = ACTIONS(395), + [anon_sym_GT_AMP] = ACTIONS(395), + [anon_sym_esac] = ACTIONS(395), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), + [anon_sym_GT_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_SEMI_SEMI] = ACTIONS(395), + [anon_sym_PIPE_AMP] = ACTIONS(395), }, [559] = { - [sym_expansion] = STATE(403), - [sym_concatenation] = STATE(433), - [sym_string] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym__literal_repeat1] = STATE(404), - [aux_sym_unset_command_repeat1] = STATE(433), - [sym_simple_expansion] = STATE(403), - [sym_arithmetic_expansion] = STATE(403), - [sym_string_expansion] = STATE(403), - [anon_sym_AMP_GT_GT] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(2065), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), - [anon_sym_LT_LPAREN] = ACTIONS(2071), - [sym_ansii_c_string] = ACTIONS(2073), - [anon_sym_PIPE_PIPE] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(421), - [aux_sym__simple_variable_name_token1] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_LT_AMP] = ACTIONS(421), - [anon_sym_GT_GT] = ACTIONS(421), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_LT_LT_DASH] = ACTIONS(421), - [anon_sym_GT_LPAREN] = ACTIONS(2071), - [sym_number] = ACTIONS(2073), - [anon_sym_LF] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2079), - [sym_file_descriptor] = ACTIONS(425), - [sym_word] = ACTIONS(2073), - [anon_sym_GT] = ACTIONS(421), - [anon_sym_AMP_GT] = ACTIONS(421), - [sym__special_character] = ACTIONS(2081), - [anon_sym_LT_LT_LT] = ACTIONS(421), - [anon_sym_GT_AMP] = ACTIONS(421), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(421), - [sym_raw_string] = ACTIONS(2073), - [anon_sym_AMP_AMP] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_SEMI_SEMI] = ACTIONS(421), - [anon_sym_PIPE_AMP] = ACTIONS(421), + [aux_sym__literal_repeat1] = STATE(1298), + [sym_word] = ACTIONS(401), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [sym__special_character] = ACTIONS(2381), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_BQUOTE] = ACTIONS(401), + [sym_raw_string] = ACTIONS(401), + [sym_number] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(401), + [anon_sym_LT_LT_DASH] = ACTIONS(401), + [anon_sym_LT_LPAREN] = ACTIONS(401), + [sym_ansii_c_string] = ACTIONS(401), + [anon_sym_LF] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_DQUOTE] = ACTIONS(401), + [sym_variable_name] = ACTIONS(405), + [aux_sym__simple_variable_name_token1] = ACTIONS(401), + [sym_file_descriptor] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_esac] = ACTIONS(401), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), + [anon_sym_GT_LPAREN] = ACTIONS(401), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_SEMI_SEMI] = ACTIONS(401), + [anon_sym_PIPE_AMP] = ACTIONS(401), }, [560] = { - [anon_sym_AMP_GT_GT] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(441), - [sym_ansii_c_string] = ACTIONS(441), - [sym__concat] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(441), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(441), - [sym_number] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [sym_variable_name] = ACTIONS(441), - [sym_file_descriptor] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_RPAREN] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(439), - [sym__special_character] = ACTIONS(441), - [anon_sym_GT_AMP] = ACTIONS(441), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(441), - [sym_raw_string] = ACTIONS(441), + [sym_expansion] = STATE(402), + [sym_concatenation] = STATE(435), + [aux_sym_declaration_command_repeat1] = STATE(435), + [sym_string] = STATE(402), + [sym_command_substitution] = STATE(402), + [sym_process_substitution] = STATE(402), + [aux_sym__literal_repeat1] = STATE(403), + [sym_variable_assignment] = STATE(435), + [sym_subscript] = STATE(2601), + [sym_simple_expansion] = STATE(402), + [sym_arithmetic_expansion] = STATE(402), + [sym_string_expansion] = STATE(402), + [sym_word] = ACTIONS(2049), + [anon_sym_AMP_GT_GT] = ACTIONS(407), + [sym__special_character] = ACTIONS(2051), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_raw_string] = ACTIONS(2049), + [sym_number] = ACTIONS(2049), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_LT_AMP] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2055), + [anon_sym_LT_LT_DASH] = ACTIONS(407), + [anon_sym_LT_LPAREN] = ACTIONS(2057), + [sym_ansii_c_string] = ACTIONS(2049), + [anon_sym_LF] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(2059), + [sym_variable_name] = ACTIONS(2061), + [sym_file_descriptor] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(2123), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_LT_LT_LT] = ACTIONS(407), + [anon_sym_GT_AMP] = ACTIONS(407), + [anon_sym_GT_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2069), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_SEMI_SEMI] = ACTIONS(407), + [anon_sym_PIPE_AMP] = ACTIONS(407), }, [561] = { - [aux_sym_concatenation_repeat1] = STATE(1023), - [anon_sym_BANG_EQ] = ACTIONS(447), - [anon_sym_PLUS_EQ] = ACTIONS(447), - [sym_test_operator] = ACTIONS(447), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_LF] = ACTIONS(447), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(447), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(447), - [anon_sym_EQ_EQ] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(447), - [sym__concat] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(447), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(447), - [anon_sym_EQ_TILDE] = ACTIONS(447), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_AMP_AMP] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(447), - [anon_sym_SEMI_SEMI] = ACTIONS(447), - [anon_sym_DASH_EQ] = ACTIONS(447), + [aux_sym_concatenation_repeat1] = STATE(1325), + [sym_word] = ACTIONS(413), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [sym__special_character] = ACTIONS(413), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_BQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(413), + [sym_number] = ACTIONS(413), + [anon_sym_PIPE_PIPE] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(413), + [sym__concat] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(413), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(413), + [anon_sym_LT_LT_DASH] = ACTIONS(413), + [anon_sym_LT_LPAREN] = ACTIONS(413), + [sym_ansii_c_string] = ACTIONS(413), + [anon_sym_LF] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(413), + [aux_sym__simple_variable_name_token1] = ACTIONS(413), + [sym_file_descriptor] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_AMP_GT] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_LT_LT_LT] = ACTIONS(413), + [anon_sym_GT_AMP] = ACTIONS(413), + [anon_sym_esac] = ACTIONS(413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(413), + [anon_sym_GT_LPAREN] = ACTIONS(413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(413), + [anon_sym_SEMI_SEMI] = ACTIONS(413), + [anon_sym_PIPE_AMP] = ACTIONS(413), }, [562] = { - [sym_expansion] = STATE(561), - [sym_unary_expression] = STATE(584), - [sym_postfix_expression] = STATE(584), - [sym_concatenation] = STATE(584), - [sym_string] = STATE(561), - [sym_command_substitution] = STATE(561), - [sym_process_substitution] = STATE(561), - [sym_parenthesized_expression] = STATE(584), - [aux_sym__literal_repeat1] = STATE(563), - [sym_simple_expansion] = STATE(561), - [sym__expression] = STATE(584), - [sym_binary_expression] = STATE(584), - [sym_arithmetic_expansion] = STATE(561), - [sym_string_expansion] = STATE(561), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_GT_LPAREN] = ACTIONS(2385), - [sym_number] = ACTIONS(655), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(2389), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2391), - [sym_word] = ACTIONS(655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_LT_LPAREN] = ACTIONS(2385), - [sym_ansii_c_string] = ACTIONS(2393), - [sym__special_character] = ACTIONS(2395), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2397), - [sym_raw_string] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_test_operator] = ACTIONS(2399), + [aux_sym__literal_repeat1] = STATE(1331), + [sym_word] = ACTIONS(419), + [anon_sym_AMP_GT_GT] = ACTIONS(419), + [sym__special_character] = ACTIONS(2385), + [anon_sym_LT_LT] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_raw_string] = ACTIONS(419), + [sym_number] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_LT_AMP] = ACTIONS(419), + [anon_sym_GT_GT] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(419), + [anon_sym_LT_LT_DASH] = ACTIONS(419), + [anon_sym_LT_LPAREN] = ACTIONS(419), + [sym_ansii_c_string] = ACTIONS(419), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [aux_sym__simple_variable_name_token1] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_AMP_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_LT_LT_LT] = ACTIONS(419), + [anon_sym_GT_AMP] = ACTIONS(419), + [anon_sym_esac] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_GT_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_SEMI_SEMI] = ACTIONS(419), + [anon_sym_PIPE_AMP] = ACTIONS(419), }, [563] = { - [aux_sym__literal_repeat1] = STATE(1028), - [anon_sym_BANG_EQ] = ACTIONS(453), - [anon_sym_PLUS_EQ] = ACTIONS(453), - [sym_test_operator] = ACTIONS(453), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_LF] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_PLUS_PLUS] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [sym__special_character] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(453), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_EQ_TILDE] = ACTIONS(453), - [anon_sym_DASH_DASH] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_SEMI_SEMI] = ACTIONS(453), - [anon_sym_DASH_EQ] = ACTIONS(453), + [sym_expansion] = STATE(405), + [sym_concatenation] = STATE(436), + [sym_string] = STATE(405), + [sym_command_substitution] = STATE(405), + [sym_process_substitution] = STATE(405), + [aux_sym__literal_repeat1] = STATE(406), + [aux_sym_unset_command_repeat1] = STATE(436), + [sym_simple_expansion] = STATE(405), + [sym_arithmetic_expansion] = STATE(405), + [sym_string_expansion] = STATE(405), + [sym_word] = ACTIONS(2071), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [sym__special_character] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(425), + [sym_raw_string] = ACTIONS(2071), + [sym_number] = ACTIONS(2071), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_PIPE] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(425), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2077), + [anon_sym_LT_LT_DASH] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(2079), + [sym_ansii_c_string] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_DQUOTE] = ACTIONS(2081), + [sym_file_descriptor] = ACTIONS(427), + [aux_sym__simple_variable_name_token1] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_AMP_GT] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_LT_LT_LT] = ACTIONS(425), + [anon_sym_GT_AMP] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(2079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_SEMI_SEMI] = ACTIONS(425), + [anon_sym_PIPE_AMP] = ACTIONS(425), }, [564] = { - [aux_sym_concatenation_repeat1] = STATE(593), - [anon_sym_AMP_GT_GT] = ACTIONS(479), - [anon_sym_DQUOTE] = ACTIONS(479), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(479), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(479), - [sym_ansii_c_string] = ACTIONS(479), - [sym__concat] = ACTIONS(2403), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(479), - [anon_sym_GT_GT] = ACTIONS(479), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(479), - [sym_number] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(479), - [sym_variable_name] = ACTIONS(479), - [sym_file_descriptor] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(479), - [anon_sym_AMP_GT] = ACTIONS(475), - [sym__special_character] = ACTIONS(479), - [anon_sym_GT_AMP] = ACTIONS(479), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_raw_string] = ACTIONS(479), + [aux_sym_concatenation_repeat1] = STATE(590), + [anon_sym_AMP_GT_GT] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [sym_number] = ACTIONS(435), + [sym__concat] = ACTIONS(2387), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(439), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym_variable_name] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [sym_word] = ACTIONS(435), }, [565] = { - [anon_sym_AMP_GT_GT] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(507), - [sym__concat] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_number] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [sym_variable_name] = ACTIONS(507), - [sym_file_descriptor] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_RPAREN] = ACTIONS(507), - [anon_sym_AMP_GT] = ACTIONS(505), - [sym__special_character] = ACTIONS(507), - [anon_sym_GT_AMP] = ACTIONS(507), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_raw_string] = ACTIONS(507), + [aux_sym_concatenation_repeat1] = STATE(995), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(469), + [sym_test_operator] = ACTIONS(469), + [anon_sym_LF] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_PIPE_PIPE] = ACTIONS(469), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(469), + [sym__concat] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(469), + [anon_sym_EQ_TILDE] = ACTIONS(469), + [anon_sym_PLUS_PLUS] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(469), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_SEMI_SEMI] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(469), }, [566] = { - [anon_sym_AMP_GT_GT] = ACTIONS(511), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(511), - [sym_ansii_c_string] = ACTIONS(511), - [sym__concat] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(511), - [anon_sym_GT_GT] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(511), - [sym_number] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(511), - [sym_variable_name] = ACTIONS(511), - [sym_file_descriptor] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(511), - [anon_sym_AMP_GT] = ACTIONS(509), - [sym__special_character] = ACTIONS(511), - [anon_sym_GT_AMP] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(511), - [sym_raw_string] = ACTIONS(511), + [sym_expansion] = STATE(565), + [sym_unary_expression] = STATE(592), + [sym_postfix_expression] = STATE(592), + [sym_concatenation] = STATE(592), + [sym_string] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym_parenthesized_expression] = STATE(592), + [aux_sym__literal_repeat1] = STATE(568), + [sym_simple_expansion] = STATE(565), + [sym__expression] = STATE(592), + [sym_binary_expression] = STATE(592), + [sym_arithmetic_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_LT_LPAREN] = ACTIONS(2393), + [sym_ansii_c_string] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(615), + [sym__special_character] = ACTIONS(2399), + [aux_sym_unary_expression_token1] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(2401), + [sym_raw_string] = ACTIONS(2395), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(625), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2403), + [sym_test_operator] = ACTIONS(2405), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2407), + [sym_word] = ACTIONS(609), }, [567] = { - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_DQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(515), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [sym_ansii_c_string] = ACTIONS(515), - [sym__concat] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(515), - [sym_number] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(515), - [sym_variable_name] = ACTIONS(515), - [sym_file_descriptor] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_RPAREN] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(513), - [sym__special_character] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(515), - [sym_raw_string] = ACTIONS(515), + [sym_expansion] = STATE(565), + [sym_unary_expression] = STATE(593), + [sym_postfix_expression] = STATE(593), + [sym_concatenation] = STATE(593), + [sym_string] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym_parenthesized_expression] = STATE(593), + [aux_sym__literal_repeat1] = STATE(568), + [sym_simple_expansion] = STATE(565), + [sym__expression] = STATE(593), + [sym_binary_expression] = STATE(593), + [sym_arithmetic_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_LT_LPAREN] = ACTIONS(2393), + [sym_ansii_c_string] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(615), + [sym__special_character] = ACTIONS(2399), + [aux_sym_unary_expression_token1] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(2401), + [sym_raw_string] = ACTIONS(2395), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(625), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2403), + [sym_test_operator] = ACTIONS(2405), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2407), + [sym_word] = ACTIONS(609), }, [568] = { - [sym_if_statement] = STATE(460), - [sym_function_definition] = STATE(460), - [sym_negated_command] = STATE(460), - [sym_test_command] = STATE(460), - [sym_variable_assignment] = STATE(603), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_subshell] = STATE(460), - [sym_declaration_command] = STATE(460), - [sym_unset_command] = STATE(460), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym_c_style_for_statement] = STATE(460), - [sym_while_statement] = STATE(460), - [sym_case_statement] = STATE(460), - [sym_pipeline] = STATE(460), - [sym_list] = STATE(460), - [sym_command] = STATE(460), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [aux_sym__literal_repeat1] = STATE(1001), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [sym_test_operator] = ACTIONS(477), + [anon_sym_LF] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(477), + [sym__special_character] = ACTIONS(2409), + [anon_sym_DASH_DASH] = ACTIONS(477), + [anon_sym_LT_LT] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_GT_EQ] = ACTIONS(477), + [anon_sym_AMP] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_EQ_TILDE] = ACTIONS(477), + [anon_sym_PLUS_PLUS] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_LT_EQ] = ACTIONS(477), + [anon_sym_SEMI_SEMI] = ACTIONS(477), + [anon_sym_DASH_EQ] = ACTIONS(477), }, [569] = { - [sym_heredoc_body] = STATE(1530), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(996), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(527), + [sym__special_character] = ACTIONS(527), + [anon_sym_BQUOTE] = ACTIONS(527), + [sym_raw_string] = ACTIONS(527), + [sym_number] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(527), + [anon_sym_GT_GT] = ACTIONS(527), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(527), + [anon_sym_LT_LPAREN] = ACTIONS(527), + [sym_ansii_c_string] = ACTIONS(527), + [anon_sym_DQUOTE] = ACTIONS(527), + [sym_variable_name] = ACTIONS(527), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(527), + [anon_sym_GT_LPAREN] = ACTIONS(527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(527), + [sym_word] = ACTIONS(525), }, [570] = { - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(587), + [sym__special_character] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(587), + [sym_raw_string] = ACTIONS(587), + [sym_number] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(587), + [anon_sym_GT_GT] = ACTIONS(587), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(587), + [anon_sym_LT_LPAREN] = ACTIONS(587), + [sym_ansii_c_string] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(587), + [sym_variable_name] = ACTIONS(587), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(587), + [anon_sym_GT_LPAREN] = ACTIONS(587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(587), + [sym_word] = ACTIONS(585), }, [571] = { - [sym_if_statement] = STATE(605), - [sym_function_definition] = STATE(605), - [sym_negated_command] = STATE(605), - [sym_test_command] = STATE(605), - [sym_variable_assignment] = STATE(606), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(605), - [sym_for_statement] = STATE(605), - [sym_compound_statement] = STATE(605), - [sym_subshell] = STATE(605), - [sym_declaration_command] = STATE(605), - [sym_unset_command] = STATE(605), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym_c_style_for_statement] = STATE(605), - [sym_while_statement] = STATE(605), - [sym_case_statement] = STATE(605), - [sym_pipeline] = STATE(605), - [sym_list] = STATE(605), - [sym_command] = STATE(605), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [sym__special_character] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(591), + [sym_raw_string] = ACTIONS(591), + [sym_number] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(591), + [anon_sym_LT_LPAREN] = ACTIONS(591), + [sym_ansii_c_string] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(591), + [sym_variable_name] = ACTIONS(591), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(591), + [sym_word] = ACTIONS(589), + }, + [572] = { + [anon_sym_AMP_GT_GT] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_number] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [sym_variable_name] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [sym_word] = ACTIONS(593), + }, + [573] = { + [sym_if_statement] = STATE(464), + [sym_function_definition] = STATE(464), + [sym_negated_command] = STATE(464), + [sym_test_command] = STATE(464), + [sym_variable_assignment] = STATE(609), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_subshell] = STATE(464), + [sym_declaration_command] = STATE(464), + [sym_unset_command] = STATE(464), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym_c_style_for_statement] = STATE(464), + [sym_while_statement] = STATE(464), + [sym_case_statement] = STATE(464), + [sym_pipeline] = STATE(464), + [sym_list] = STATE(464), + [sym_command] = STATE(464), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [572] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_PIPE_AMP] = ACTIONS(2363), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LF] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(2361), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(2135), - [anon_sym_GT_GT] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI_SEMI] = ACTIONS(2407), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - }, - [573] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(2361), - [anon_sym_PIPE] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(2405), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(2407), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI_SEMI] = ACTIONS(2407), - [anon_sym_PIPE_AMP] = ACTIONS(2363), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [574] = { - [anon_sym_AMP_GT_GT] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(287), - [sym_ansii_c_string] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(287), - [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(287), - [sym_number] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), - [sym_variable_name] = ACTIONS(287), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(287), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(287), - [anon_sym_GT_AMP] = ACTIONS(287), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(287), - [sym_raw_string] = ACTIONS(287), + [sym_heredoc_body] = STATE(1536), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(701), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [575] = { - [aux_sym__literal_repeat1] = STATE(575), - [anon_sym_AMP_GT_GT] = ACTIONS(813), - [anon_sym_DQUOTE] = ACTIONS(813), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(813), - [sym_ansii_c_string] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(813), - [sym_number] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), - [sym_variable_name] = ACTIONS(813), - [sym_file_descriptor] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(2409), - [anon_sym_GT_AMP] = ACTIONS(813), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(813), - [sym_raw_string] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(701), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [576] = { - [sym_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_concatenation] = STATE(609), - [sym_string] = STATE(427), - [aux_sym__literal_repeat1] = STATE(430), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_arithmetic_expansion] = STATE(427), - [aux_sym_command_repeat2] = STATE(609), - [anon_sym_AMP_GT_GT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(2103), - [sym_ansii_c_string] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_LT_AMP] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_EQ_TILDE] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(818), - [anon_sym_GT_LPAREN] = ACTIONS(2103), - [sym_number] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), - [sym_file_descriptor] = ACTIONS(820), - [sym_word] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_AMP_GT] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [sym__special_character] = ACTIONS(103), - [anon_sym_LT_LT_LT] = ACTIONS(818), - [anon_sym_GT_AMP] = ACTIONS(818), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_raw_string] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_SEMI_SEMI] = ACTIONS(818), - [anon_sym_PIPE_AMP] = ACTIONS(818), + [sym_if_statement] = STATE(611), + [sym_function_definition] = STATE(611), + [sym_negated_command] = STATE(611), + [sym_test_command] = STATE(611), + [sym_variable_assignment] = STATE(612), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(611), + [sym_for_statement] = STATE(611), + [sym_compound_statement] = STATE(611), + [sym_subshell] = STATE(611), + [sym_declaration_command] = STATE(611), + [sym_unset_command] = STATE(611), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym_c_style_for_statement] = STATE(611), + [sym_while_statement] = STATE(611), + [sym_case_statement] = STATE(611), + [sym_pipeline] = STATE(611), + [sym_list] = STATE(611), + [sym_command] = STATE(611), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [577] = { - [aux_sym_concatenation_repeat1] = STATE(1254), - [anon_sym_AMP_GT_GT] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(838), - [anon_sym_LT_LT] = ACTIONS(838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(838), - [anon_sym_LT_LPAREN] = ACTIONS(838), - [sym_ansii_c_string] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(838), - [sym__concat] = ACTIONS(2345), - [anon_sym_PIPE] = ACTIONS(838), - [anon_sym_LT] = ACTIONS(838), - [anon_sym_LT_AMP] = ACTIONS(838), - [anon_sym_GT_GT] = ACTIONS(838), - [anon_sym_EQ_TILDE] = ACTIONS(838), - [anon_sym_DOLLAR] = ACTIONS(838), - [anon_sym_LT_LT_DASH] = ACTIONS(838), - [anon_sym_GT_LPAREN] = ACTIONS(838), - [sym_number] = ACTIONS(838), - [anon_sym_LF] = ACTIONS(840), - [anon_sym_SEMI] = ACTIONS(838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), - [sym_file_descriptor] = ACTIONS(840), - [sym_word] = ACTIONS(838), - [anon_sym_GT] = ACTIONS(838), - [anon_sym_AMP_GT] = ACTIONS(838), - [anon_sym_EQ_EQ] = ACTIONS(838), - [sym__special_character] = ACTIONS(838), - [anon_sym_LT_LT_LT] = ACTIONS(838), - [anon_sym_GT_AMP] = ACTIONS(838), - [anon_sym_esac] = ACTIONS(838), - [anon_sym_BQUOTE] = ACTIONS(838), - [sym_raw_string] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_SEMI_SEMI] = ACTIONS(838), - [anon_sym_PIPE_AMP] = ACTIONS(838), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_PIPE_AMP] = ACTIONS(2371), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_BQUOTE] = ACTIONS(2141), + [anon_sym_AMP_GT] = ACTIONS(451), + [anon_sym_PIPE_PIPE] = ACTIONS(2369), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2369), + [anon_sym_SEMI_SEMI] = ACTIONS(2413), + [anon_sym_LT_LT_DASH] = ACTIONS(459), }, [578] = { - [sym_expansion] = STATE(611), - [sym_concatenation] = STATE(610), - [sym_string] = STATE(611), - [sym_command_substitution] = STATE(611), - [sym_process_substitution] = STATE(611), - [aux_sym__literal_repeat1] = STATE(612), - [sym_simple_expansion] = STATE(611), - [sym_arithmetic_expansion] = STATE(611), - [sym_string_expansion] = STATE(611), - [anon_sym_GT_LPAREN] = ACTIONS(1800), - [sym_number] = ACTIONS(2412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [sym_word] = ACTIONS(2412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [sym_ansii_c_string] = ACTIONS(2414), - [sym__special_character] = ACTIONS(2371), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(2414), - [sym_regex] = ACTIONS(2416), - [anon_sym_DOLLAR] = ACTIONS(1804), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_PIPE_AMP] = ACTIONS(2371), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(2141), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(2369), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_PIPE] = ACTIONS(2371), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(2369), + [anon_sym_SEMI_SEMI] = ACTIONS(2413), + [sym_word] = ACTIONS(347), }, [579] = { - [sym_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_concatenation] = STATE(477), - [sym_string] = STATE(427), - [aux_sym__literal_repeat1] = STATE(430), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_arithmetic_expansion] = STATE(427), - [aux_sym_command_repeat2] = STATE(477), - [anon_sym_AMP_GT_GT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(2103), - [sym_ansii_c_string] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_LT_AMP] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_EQ_TILDE] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(818), - [anon_sym_GT_LPAREN] = ACTIONS(2103), - [sym_number] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), - [sym_file_descriptor] = ACTIONS(820), - [sym_word] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_AMP_GT] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [sym__special_character] = ACTIONS(103), - [anon_sym_LT_LT_LT] = ACTIONS(818), - [anon_sym_GT_AMP] = ACTIONS(818), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_raw_string] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_SEMI_SEMI] = ACTIONS(818), - [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_GT_GT] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [sym_number] = ACTIONS(185), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym_variable_name] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [sym_word] = ACTIONS(185), }, [580] = { - [aux_sym__literal_repeat1] = STATE(1259), - [anon_sym_AMP_GT_GT] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(848), - [anon_sym_LT_LT] = ACTIONS(848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(848), - [anon_sym_LT_LPAREN] = ACTIONS(848), - [sym_ansii_c_string] = ACTIONS(848), - [anon_sym_PIPE_PIPE] = ACTIONS(848), - [anon_sym_PIPE] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(848), - [anon_sym_LT_AMP] = ACTIONS(848), - [anon_sym_GT_GT] = ACTIONS(848), - [anon_sym_EQ_TILDE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(848), - [anon_sym_LT_LT_DASH] = ACTIONS(848), - [anon_sym_GT_LPAREN] = ACTIONS(848), - [sym_number] = ACTIONS(848), - [anon_sym_LF] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(848), - [sym_file_descriptor] = ACTIONS(850), - [sym_word] = ACTIONS(848), - [anon_sym_GT] = ACTIONS(848), - [anon_sym_AMP_GT] = ACTIONS(848), - [anon_sym_EQ_EQ] = ACTIONS(848), - [sym__special_character] = ACTIONS(2369), - [anon_sym_LT_LT_LT] = ACTIONS(848), - [anon_sym_GT_AMP] = ACTIONS(848), - [anon_sym_esac] = ACTIONS(848), - [anon_sym_BQUOTE] = ACTIONS(848), - [sym_raw_string] = ACTIONS(848), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_SEMI_SEMI] = ACTIONS(848), - [anon_sym_PIPE_AMP] = ACTIONS(848), + [aux_sym__literal_repeat1] = STATE(580), + [anon_sym_AMP_GT_GT] = ACTIONS(822), + [sym__special_character] = ACTIONS(2415), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_raw_string] = ACTIONS(822), + [sym_number] = ACTIONS(817), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(822), + [anon_sym_LT_LPAREN] = ACTIONS(822), + [sym_ansii_c_string] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym_variable_name] = ACTIONS(822), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(822), + [anon_sym_GT_LPAREN] = ACTIONS(822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(822), + [sym_word] = ACTIONS(817), }, [581] = { - [sym_expansion] = STATE(554), - [sym_concatenation] = STATE(581), - [aux_sym_declaration_command_repeat1] = STATE(581), - [sym_string] = STATE(554), - [sym_command_substitution] = STATE(554), - [sym_process_substitution] = STATE(554), - [aux_sym__literal_repeat1] = STATE(555), - [sym_variable_assignment] = STATE(581), - [sym_subscript] = STATE(2625), - [sym_simple_expansion] = STATE(554), - [sym_arithmetic_expansion] = STATE(554), - [sym_string_expansion] = STATE(554), - [anon_sym_AMP_GT_GT] = ACTIONS(856), - [anon_sym_DQUOTE] = ACTIONS(2418), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2421), - [anon_sym_LT_LT] = ACTIONS(856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2424), - [anon_sym_LT_LPAREN] = ACTIONS(2427), - [sym_ansii_c_string] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(856), - [anon_sym_PIPE] = ACTIONS(856), - [aux_sym__simple_variable_name_token1] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(856), - [anon_sym_LT_AMP] = ACTIONS(856), - [anon_sym_GT_GT] = ACTIONS(856), - [anon_sym_DOLLAR] = ACTIONS(2436), - [anon_sym_LT_LT_DASH] = ACTIONS(856), - [anon_sym_GT_LPAREN] = ACTIONS(2427), - [sym_number] = ACTIONS(2430), - [anon_sym_LF] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2439), - [sym_variable_name] = ACTIONS(2442), - [sym_file_descriptor] = ACTIONS(879), - [sym_word] = ACTIONS(2430), - [anon_sym_GT] = ACTIONS(856), - [anon_sym_AMP_GT] = ACTIONS(856), - [sym__special_character] = ACTIONS(2445), - [anon_sym_LT_LT_LT] = ACTIONS(856), - [anon_sym_GT_AMP] = ACTIONS(856), - [anon_sym_esac] = ACTIONS(856), - [anon_sym_BQUOTE] = ACTIONS(2448), - [sym_raw_string] = ACTIONS(2430), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [anon_sym_PIPE_AMP] = ACTIONS(856), + [sym_expansion] = STATE(430), + [sym_string_expansion] = STATE(430), + [sym_concatenation] = STATE(615), + [sym_string] = STATE(430), + [aux_sym__literal_repeat1] = STATE(433), + [sym_command_substitution] = STATE(430), + [sym_process_substitution] = STATE(430), + [sym_simple_expansion] = STATE(430), + [sym_arithmetic_expansion] = STATE(430), + [aux_sym_command_repeat2] = STATE(615), + [sym_word] = ACTIONS(2105), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [sym__special_character] = ACTIONS(71), + [anon_sym_LT_LT] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_raw_string] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(2109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2111), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(2113), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(2115), + [sym_file_descriptor] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_SEMI_SEMI] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), }, [582] = { - [sym_expansion] = STATE(557), - [sym_concatenation] = STATE(582), - [sym_string] = STATE(557), - [sym_command_substitution] = STATE(557), - [sym_process_substitution] = STATE(557), - [aux_sym__literal_repeat1] = STATE(558), - [aux_sym_unset_command_repeat1] = STATE(582), - [sym_simple_expansion] = STATE(557), - [sym_arithmetic_expansion] = STATE(557), - [sym_string_expansion] = STATE(557), - [anon_sym_AMP_GT_GT] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(2451), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2454), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2457), - [anon_sym_LT_LPAREN] = ACTIONS(2460), - [sym_ansii_c_string] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(893), - [aux_sym__simple_variable_name_token1] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_LT_AMP] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(893), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_LT_LT_DASH] = ACTIONS(893), - [anon_sym_GT_LPAREN] = ACTIONS(2460), - [sym_number] = ACTIONS(2463), - [anon_sym_LF] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2472), - [sym_file_descriptor] = ACTIONS(916), - [sym_word] = ACTIONS(2463), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_AMP_GT] = ACTIONS(893), - [sym__special_character] = ACTIONS(2475), - [anon_sym_LT_LT_LT] = ACTIONS(893), - [anon_sym_GT_AMP] = ACTIONS(893), - [anon_sym_esac] = ACTIONS(893), - [anon_sym_BQUOTE] = ACTIONS(2478), - [sym_raw_string] = ACTIONS(2463), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(893), - [anon_sym_SEMI_SEMI] = ACTIONS(893), - [anon_sym_PIPE_AMP] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1259), + [sym_word] = ACTIONS(844), + [anon_sym_AMP_GT_GT] = ACTIONS(844), + [sym__special_character] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [sym_raw_string] = ACTIONS(844), + [sym_number] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(844), + [sym__concat] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(844), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_LT_AMP] = ACTIONS(844), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_EQ_TILDE] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(844), + [anon_sym_LT_LT_DASH] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [sym_ansii_c_string] = ACTIONS(844), + [anon_sym_LF] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [sym_file_descriptor] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_AMP_GT] = ACTIONS(844), + [anon_sym_EQ_EQ] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(844), + [anon_sym_LT_LT_LT] = ACTIONS(844), + [anon_sym_GT_AMP] = ACTIONS(844), + [anon_sym_esac] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(844), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_SEMI_SEMI] = ACTIONS(844), + [anon_sym_PIPE_AMP] = ACTIONS(844), }, [583] = { - [anon_sym_AMP_GT_GT] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(933), - [sym_ansii_c_string] = ACTIONS(933), - [sym__concat] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(933), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(933), - [sym_number] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [sym_variable_name] = ACTIONS(933), - [sym_file_descriptor] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_AMP_GT] = ACTIONS(931), - [sym__special_character] = ACTIONS(933), - [anon_sym_GT_AMP] = ACTIONS(933), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(933), - [sym_raw_string] = ACTIONS(933), + [sym_expansion] = STATE(616), + [sym_concatenation] = STATE(617), + [sym_string] = STATE(616), + [sym_command_substitution] = STATE(616), + [sym_process_substitution] = STATE(616), + [aux_sym__literal_repeat1] = STATE(618), + [sym_simple_expansion] = STATE(616), + [sym_arithmetic_expansion] = STATE(616), + [sym_string_expansion] = STATE(616), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [sym_ansii_c_string] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(1812), + [sym__special_character] = ACTIONS(2377), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_raw_string] = ACTIONS(2418), + [sym_number] = ACTIONS(2420), + [anon_sym_DOLLAR] = ACTIONS(1820), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [sym_regex] = ACTIONS(2422), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [sym_word] = ACTIONS(2420), }, [584] = { - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1178), - [sym_test_operator] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1178), - [anon_sym_EQ_TILDE] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_DASH_EQ] = ACTIONS(1178), + [sym_expansion] = STATE(430), + [sym_string_expansion] = STATE(430), + [sym_concatenation] = STATE(481), + [sym_string] = STATE(430), + [aux_sym__literal_repeat1] = STATE(433), + [sym_command_substitution] = STATE(430), + [sym_process_substitution] = STATE(430), + [sym_simple_expansion] = STATE(430), + [sym_arithmetic_expansion] = STATE(430), + [aux_sym_command_repeat2] = STATE(481), + [sym_word] = ACTIONS(2105), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [sym__special_character] = ACTIONS(71), + [anon_sym_LT_LT] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_raw_string] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(2109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2111), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(2113), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(2115), + [sym_file_descriptor] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_SEMI_SEMI] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), }, [585] = { - [sym_expansion] = STATE(561), - [sym_unary_expression] = STATE(616), - [sym_postfix_expression] = STATE(616), - [sym_concatenation] = STATE(616), - [sym_string] = STATE(561), - [sym_command_substitution] = STATE(561), - [sym_process_substitution] = STATE(561), - [sym_parenthesized_expression] = STATE(616), - [aux_sym__literal_repeat1] = STATE(563), - [sym_simple_expansion] = STATE(561), - [sym__expression] = STATE(616), - [sym_binary_expression] = STATE(616), - [sym_arithmetic_expansion] = STATE(561), - [sym_string_expansion] = STATE(561), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_GT_LPAREN] = ACTIONS(2385), - [sym_number] = ACTIONS(655), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(2389), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2391), - [sym_word] = ACTIONS(655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_LT_LPAREN] = ACTIONS(2385), - [sym_ansii_c_string] = ACTIONS(2393), - [sym__special_character] = ACTIONS(2395), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2397), - [sym_raw_string] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_test_operator] = ACTIONS(2399), + [aux_sym__literal_repeat1] = STATE(1265), + [sym_word] = ACTIONS(854), + [anon_sym_AMP_GT_GT] = ACTIONS(854), + [sym__special_character] = ACTIONS(2375), + [anon_sym_LT_LT] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [sym_raw_string] = ACTIONS(854), + [sym_number] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_AMP] = ACTIONS(854), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_EQ_TILDE] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(854), + [anon_sym_LT_LT_DASH] = ACTIONS(854), + [anon_sym_LT_LPAREN] = ACTIONS(854), + [sym_ansii_c_string] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym_file_descriptor] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_AMP_GT] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_LT_LT_LT] = ACTIONS(854), + [anon_sym_GT_AMP] = ACTIONS(854), + [anon_sym_esac] = ACTIONS(854), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), + [anon_sym_GT_LPAREN] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_SEMI_SEMI] = ACTIONS(854), + [anon_sym_PIPE_AMP] = ACTIONS(854), }, [586] = { - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [sym_test_operator] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_LF] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_LT_LT] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_EQ_TILDE] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_SEMI_SEMI] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), + [sym_expansion] = STATE(558), + [sym_concatenation] = STATE(586), + [aux_sym_declaration_command_repeat1] = STATE(586), + [sym_string] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym__literal_repeat1] = STATE(559), + [sym_variable_assignment] = STATE(586), + [sym_subscript] = STATE(2631), + [sym_simple_expansion] = STATE(558), + [sym_arithmetic_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_word] = ACTIONS(2424), + [anon_sym_AMP_GT_GT] = ACTIONS(865), + [sym__special_character] = ACTIONS(2427), + [anon_sym_LT_LT] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_raw_string] = ACTIONS(2424), + [sym_number] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_LT_AMP] = ACTIONS(865), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2433), + [anon_sym_LT_LT_DASH] = ACTIONS(865), + [anon_sym_LT_LPAREN] = ACTIONS(2436), + [sym_ansii_c_string] = ACTIONS(2424), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym_variable_name] = ACTIONS(2442), + [aux_sym__simple_variable_name_token1] = ACTIONS(2445), + [sym_file_descriptor] = ACTIONS(879), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_AMP_GT] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_LT_LT_LT] = ACTIONS(865), + [anon_sym_GT_AMP] = ACTIONS(865), + [anon_sym_esac] = ACTIONS(865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2451), + [anon_sym_GT_LPAREN] = ACTIONS(2436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_SEMI_SEMI] = ACTIONS(865), + [anon_sym_PIPE_AMP] = ACTIONS(865), }, [587] = { [sym_expansion] = STATE(561), - [sym_unary_expression] = STATE(616), - [sym_postfix_expression] = STATE(616), - [sym_concatenation] = STATE(616), + [sym_concatenation] = STATE(587), [sym_string] = STATE(561), [sym_command_substitution] = STATE(561), [sym_process_substitution] = STATE(561), - [sym_parenthesized_expression] = STATE(616), - [aux_sym__literal_repeat1] = STATE(563), + [aux_sym__literal_repeat1] = STATE(562), + [aux_sym_unset_command_repeat1] = STATE(587), [sym_simple_expansion] = STATE(561), - [sym__expression] = STATE(616), - [sym_binary_expression] = STATE(616), [sym_arithmetic_expansion] = STATE(561), [sym_string_expansion] = STATE(561), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_GT_LPAREN] = ACTIONS(2385), - [sym_number] = ACTIONS(655), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(2389), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2391), - [sym_word] = ACTIONS(655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_LT_LPAREN] = ACTIONS(2385), - [sym_ansii_c_string] = ACTIONS(2393), - [sym__special_character] = ACTIONS(2395), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2397), - [sym_raw_string] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_regex] = ACTIONS(2481), - [sym_test_operator] = ACTIONS(2399), + [sym_word] = ACTIONS(2457), + [anon_sym_AMP_GT_GT] = ACTIONS(902), + [sym__special_character] = ACTIONS(2460), + [anon_sym_LT_LT] = ACTIONS(902), + [anon_sym_BQUOTE] = ACTIONS(2463), + [sym_raw_string] = ACTIONS(2457), + [sym_number] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_PIPE] = ACTIONS(902), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_LT_AMP] = ACTIONS(902), + [anon_sym_GT_GT] = ACTIONS(902), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2466), + [anon_sym_LT_LT_DASH] = ACTIONS(902), + [anon_sym_LT_LPAREN] = ACTIONS(2469), + [sym_ansii_c_string] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(2472), + [aux_sym__simple_variable_name_token1] = ACTIONS(2475), + [sym_file_descriptor] = ACTIONS(916), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_AMP_GT] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(2478), + [anon_sym_LT_LT_LT] = ACTIONS(902), + [anon_sym_GT_AMP] = ACTIONS(902), + [anon_sym_esac] = ACTIONS(902), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2481), + [anon_sym_GT_LPAREN] = ACTIONS(2469), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2484), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_SEMI_SEMI] = ACTIONS(902), + [anon_sym_PIPE_AMP] = ACTIONS(902), }, [588] = { - [anon_sym_AMP_GT_GT] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(969), - [sym_ansii_c_string] = ACTIONS(969), - [sym__concat] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(969), - [sym_number] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(969), - [sym_variable_name] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(967), - [sym__special_character] = ACTIONS(969), - [anon_sym_GT_AMP] = ACTIONS(969), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(969), - [sym_raw_string] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [sym__special_character] = ACTIONS(935), + [anon_sym_BQUOTE] = ACTIONS(935), + [sym_raw_string] = ACTIONS(935), + [sym_number] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(935), + [anon_sym_LT_LPAREN] = ACTIONS(935), + [sym_ansii_c_string] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_variable_name] = ACTIONS(935), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(935), + [sym_word] = ACTIONS(933), }, [589] = { - [anon_sym_AMP_GT_GT] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(973), - [sym_ansii_c_string] = ACTIONS(973), - [sym__concat] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(973), - [sym_number] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), - [sym_variable_name] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(973), - [anon_sym_GT_AMP] = ACTIONS(973), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(973), - [sym_raw_string] = ACTIONS(973), + [sym_expansion] = STATE(588), + [sym_string] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_arithmetic_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [sym_ansii_c_string] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym__special_character] = ACTIONS(2487), + [anon_sym_BQUOTE] = ACTIONS(123), + [sym_raw_string] = ACTIONS(2487), + [sym_number] = ACTIONS(2489), + [anon_sym_DOLLAR] = ACTIONS(2491), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(2489), }, [590] = { - [anon_sym_AMP_GT_GT] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(977), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(977), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(977), - [sym_ansii_c_string] = ACTIONS(977), - [sym__concat] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(977), - [sym_number] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(977), - [sym_variable_name] = ACTIONS(977), - [sym_file_descriptor] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_AMP_GT] = ACTIONS(975), - [sym__special_character] = ACTIONS(977), - [anon_sym_GT_AMP] = ACTIONS(977), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(977), - [sym_raw_string] = ACTIONS(977), + [aux_sym_concatenation_repeat1] = STATE(590), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [sym__special_character] = ACTIONS(935), + [anon_sym_BQUOTE] = ACTIONS(935), + [sym_raw_string] = ACTIONS(935), + [sym_number] = ACTIONS(933), + [sym__concat] = ACTIONS(2493), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(935), + [anon_sym_LT_LPAREN] = ACTIONS(935), + [sym_ansii_c_string] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym_variable_name] = ACTIONS(935), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(935), + [sym_word] = ACTIONS(933), }, [591] = { - [anon_sym_AMP_GT_GT] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(981), - [sym_ansii_c_string] = ACTIONS(981), - [sym__concat] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(981), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(981), - [sym_number] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [sym_variable_name] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(981), - [anon_sym_GT_AMP] = ACTIONS(981), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(981), - [sym_raw_string] = ACTIONS(981), + [anon_sym_AMP_GT_GT] = ACTIONS(944), + [sym__special_character] = ACTIONS(944), + [anon_sym_BQUOTE] = ACTIONS(944), + [sym_raw_string] = ACTIONS(944), + [sym_number] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), + [anon_sym_LT_LPAREN] = ACTIONS(944), + [sym_ansii_c_string] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym_variable_name] = ACTIONS(944), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(944), + [sym_word] = ACTIONS(942), }, [592] = { - [sym_expansion] = STATE(591), - [sym_string] = STATE(591), - [sym_command_substitution] = STATE(591), - [sym_process_substitution] = STATE(591), - [sym_simple_expansion] = STATE(591), - [sym_arithmetic_expansion] = STATE(591), - [sym_string_expansion] = STATE(591), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_number] = ACTIONS(2483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(123), - [sym_word] = ACTIONS(2483), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [sym_ansii_c_string] = ACTIONS(2485), - [sym__special_character] = ACTIONS(2485), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(131), - [sym_raw_string] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), + [anon_sym_BANG_EQ] = ACTIONS(1112), + [anon_sym_PLUS_EQ] = ACTIONS(1112), + [sym_test_operator] = ACTIONS(1112), + [anon_sym_LF] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1116), + [anon_sym_PIPE_PIPE] = ACTIONS(1112), + [anon_sym_GT_EQ] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_EQ_TILDE] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1112), + [anon_sym_SEMI_SEMI] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(1112), }, [593] = { - [aux_sym_concatenation_repeat1] = STATE(593), - [anon_sym_AMP_GT_GT] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(981), - [sym_ansii_c_string] = ACTIONS(981), - [sym__concat] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(981), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(981), - [sym_number] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [sym_variable_name] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(981), - [anon_sym_GT_AMP] = ACTIONS(981), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(981), - [sym_raw_string] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [sym_test_operator] = ACTIONS(964), + [anon_sym_LF] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(964), + [anon_sym_PIPE_PIPE] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(964), + [anon_sym_EQ_TILDE] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_AMP_AMP] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(964), + [anon_sym_SEMI_SEMI] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), }, [594] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1034), - [sym_ansii_c_string] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1034), - [anon_sym_GT_GT] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1034), - [sym_number] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1034), - [anon_sym_GT_AMP] = ACTIONS(1034), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1034), + [sym_expansion] = STATE(565), + [sym_unary_expression] = STATE(622), + [sym_postfix_expression] = STATE(622), + [sym_concatenation] = STATE(622), + [sym_string] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym_parenthesized_expression] = STATE(622), + [aux_sym__literal_repeat1] = STATE(568), + [sym_simple_expansion] = STATE(565), + [sym__expression] = STATE(622), + [sym_binary_expression] = STATE(622), + [sym_arithmetic_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_LT_LPAREN] = ACTIONS(2393), + [sym_ansii_c_string] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(615), + [sym__special_character] = ACTIONS(2399), + [aux_sym_unary_expression_token1] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(2401), + [sym_raw_string] = ACTIONS(2395), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(625), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2403), + [sym_test_operator] = ACTIONS(2405), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2407), + [sym_word] = ACTIONS(609), }, [595] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1088), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1088), - [sym_ansii_c_string] = ACTIONS(1088), - [sym__concat] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1088), - [sym_number] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1088), - [sym_variable_name] = ACTIONS(1088), - [sym_file_descriptor] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_raw_string] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [sym_test_operator] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_SEMI_SEMI] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), }, [596] = { - [aux_sym_concatenation_repeat1] = STATE(647), - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [sym__concat] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(1120), - [aux_sym__simple_variable_name_token1] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), - [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [sym_file_descriptor] = ACTIONS(1124), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_GT_AMP] = ACTIONS(1120), - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), + [sym_expansion] = STATE(565), + [sym_unary_expression] = STATE(622), + [sym_postfix_expression] = STATE(622), + [sym_concatenation] = STATE(622), + [sym_string] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym_parenthesized_expression] = STATE(622), + [aux_sym__literal_repeat1] = STATE(568), + [sym_simple_expansion] = STATE(565), + [sym__expression] = STATE(622), + [sym_binary_expression] = STATE(622), + [sym_arithmetic_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_LT_LPAREN] = ACTIONS(2393), + [sym_ansii_c_string] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(615), + [sym__special_character] = ACTIONS(2399), + [aux_sym_unary_expression_token1] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(2401), + [sym_raw_string] = ACTIONS(2395), + [sym_number] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(625), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2403), + [sym_test_operator] = ACTIONS(2405), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2407), + [sym_regex] = ACTIONS(2496), + [sym_word] = ACTIONS(609), }, [597] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1120), - [aux_sym__simple_variable_name_token1] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), - [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [sym_file_descriptor] = ACTIONS(1124), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_GT_AMP] = ACTIONS(1120), - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), + [anon_sym_AMP_GT_GT] = ACTIONS(974), + [sym__special_character] = ACTIONS(974), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_raw_string] = ACTIONS(974), + [sym_number] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(974), + [anon_sym_GT_GT] = ACTIONS(974), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(974), + [anon_sym_LT_LPAREN] = ACTIONS(974), + [sym_ansii_c_string] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_variable_name] = ACTIONS(974), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(974), + [anon_sym_GT_LPAREN] = ACTIONS(974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), + [sym_word] = ACTIONS(972), }, [598] = { - [aux_sym__literal_repeat1] = STATE(658), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [sym_ansii_c_string] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [aux_sym__simple_variable_name_token1] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(1126), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_number] = ACTIONS(1126), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), - [sym_variable_name] = ACTIONS(1128), - [sym_file_descriptor] = ACTIONS(1128), - [sym_word] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1126), - [sym__special_character] = ACTIONS(401), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [ts_builtin_sym_end] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1126), - [sym_raw_string] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), + [anon_sym_AMP_GT_GT] = ACTIONS(1004), + [sym__special_character] = ACTIONS(1004), + [anon_sym_BQUOTE] = ACTIONS(1004), + [sym_raw_string] = ACTIONS(1004), + [sym_number] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1004), + [anon_sym_GT_GT] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1004), + [anon_sym_LT_LPAREN] = ACTIONS(1004), + [sym_ansii_c_string] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym_variable_name] = ACTIONS(1004), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1004), + [anon_sym_GT_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [sym_word] = ACTIONS(1002), }, [599] = { - [aux_sym_concatenation_repeat1] = STATE(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(1146), - [anon_sym_LT_LT] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [sym__concat] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_LT_AMP] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1146), - [anon_sym_LT_LT_DASH] = ACTIONS(1146), - [anon_sym_LF] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_RPAREN] = ACTIONS(1146), - [sym_file_descriptor] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_AMP_GT] = ACTIONS(1146), - [anon_sym_LT_LT_LT] = ACTIONS(1146), - [anon_sym_GT_AMP] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), - [anon_sym_PIPE_AMP] = ACTIONS(1146), + [aux_sym_concatenation_repeat1] = STATE(652), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [sym__concat] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [aux_sym__simple_variable_name_token1] = ACTIONS(1050), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [ts_builtin_sym_end] = ACTIONS(1054), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), }, [600] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1146), - [anon_sym_LT_LT] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_LT_AMP] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1146), - [anon_sym_LT_LT_DASH] = ACTIONS(1146), - [anon_sym_LF] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_RPAREN] = ACTIONS(1146), - [sym_file_descriptor] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_AMP_GT] = ACTIONS(1146), - [anon_sym_LT_LT_LT] = ACTIONS(1146), - [anon_sym_GT_AMP] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1146), - [anon_sym_esac] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), - [anon_sym_PIPE_AMP] = ACTIONS(1146), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [aux_sym__simple_variable_name_token1] = ACTIONS(1050), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [ts_builtin_sym_end] = ACTIONS(1054), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), }, [601] = { - [aux_sym__literal_repeat1] = STATE(1127), - [anon_sym_AMP_GT_GT] = ACTIONS(1150), - [anon_sym_LT_LT] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_LT_AMP] = ACTIONS(1150), - [anon_sym_GT_GT] = ACTIONS(1150), - [anon_sym_LT_LT_DASH] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [sym_file_descriptor] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_AMP_GT] = ACTIONS(1150), - [sym__special_character] = ACTIONS(2232), - [anon_sym_LT_LT_LT] = ACTIONS(1150), - [anon_sym_GT_AMP] = ACTIONS(1150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1150), - [anon_sym_esac] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), + [aux_sym__literal_repeat1] = STATE(664), + [sym_word] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1056), + [sym__special_character] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [sym_raw_string] = ACTIONS(1056), + [sym_number] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_LT_AMP] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(1056), + [anon_sym_LT_LPAREN] = ACTIONS(1056), + [sym_ansii_c_string] = ACTIONS(1056), + [anon_sym_LF] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_variable_name] = ACTIONS(1060), + [aux_sym__simple_variable_name_token1] = ACTIONS(1056), + [sym_file_descriptor] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_LT_LT_LT] = ACTIONS(1056), + [anon_sym_GT_AMP] = ACTIONS(1056), + [ts_builtin_sym_end] = ACTIONS(1060), + [anon_sym_GT_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_SEMI_SEMI] = ACTIONS(1056), + [anon_sym_PIPE_AMP] = ACTIONS(1056), }, [602] = { - [anon_sym_AMP_GT_GT] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(973), - [sym_ansii_c_string] = ACTIONS(973), - [sym__concat] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(973), - [sym_number] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), - [sym_variable_name] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(973), - [anon_sym_GT_AMP] = ACTIONS(973), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(973), - [sym_raw_string] = ACTIONS(973), + [aux_sym_concatenation_repeat1] = STATE(1127), + [anon_sym_AMP_GT_GT] = ACTIONS(1076), + [anon_sym_LT_LT] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [sym__concat] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_LT_AMP] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1076), + [anon_sym_LT_LT_DASH] = ACTIONS(1076), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [sym_file_descriptor] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_AMP_GT] = ACTIONS(1076), + [anon_sym_LT_LT_LT] = ACTIONS(1076), + [anon_sym_GT_AMP] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_SEMI_SEMI] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(1076), }, [603] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_AMP] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(1190), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(1192), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_AMP_GT] = ACTIONS(1190), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_GT_AMP] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1190), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI_SEMI] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1076), + [anon_sym_LT_LT] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_LT_AMP] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1076), + [anon_sym_LT_LT_DASH] = ACTIONS(1076), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [sym_file_descriptor] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_AMP_GT] = ACTIONS(1076), + [anon_sym_LT_LT_LT] = ACTIONS(1076), + [anon_sym_GT_AMP] = ACTIONS(1076), + [anon_sym_esac] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_SEMI_SEMI] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(1076), }, [604] = { - [anon_sym_AMP] = ACTIONS(2492), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2494), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_SEMI_SEMI] = ACTIONS(2224), - [anon_sym_esac] = ACTIONS(2224), + [aux_sym__literal_repeat1] = STATE(1133), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [sym__special_character] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_PIPE_PIPE] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_LT_LT_DASH] = ACTIONS(1080), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1080), + [anon_sym_LT_LT_LT] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [anon_sym_esac] = ACTIONS(1080), + [anon_sym_AMP_AMP] = ACTIONS(1080), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), + [anon_sym_PIPE_AMP] = ACTIONS(1080), }, [605] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [anon_sym_AMP_GT_GT] = ACTIONS(1220), - [anon_sym_LF] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_LT_LT] = ACTIONS(1220), - [sym_file_descriptor] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(2363), - [anon_sym_GT_AMP] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_LT_AMP] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(2363), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [sym__special_character] = ACTIONS(1084), + [anon_sym_BQUOTE] = ACTIONS(1084), + [sym_raw_string] = ACTIONS(1084), + [sym_number] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1084), + [anon_sym_LT_LPAREN] = ACTIONS(1084), + [sym_ansii_c_string] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_variable_name] = ACTIONS(1084), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_GT_LPAREN] = ACTIONS(1084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1084), + [sym_word] = ACTIONS(1082), }, [606] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(1222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(1220), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(2363), + [anon_sym_AMP_GT_GT] = ACTIONS(944), + [sym__special_character] = ACTIONS(944), + [anon_sym_BQUOTE] = ACTIONS(944), + [sym_raw_string] = ACTIONS(944), + [sym_number] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), + [anon_sym_LT_LPAREN] = ACTIONS(944), + [sym_ansii_c_string] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym_variable_name] = ACTIONS(944), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(944), + [sym_word] = ACTIONS(942), }, [607] = { - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(1132), + [sym__special_character] = ACTIONS(1132), + [anon_sym_BQUOTE] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1132), + [sym_number] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1132), + [anon_sym_LT_LPAREN] = ACTIONS(1132), + [sym_ansii_c_string] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym_variable_name] = ACTIONS(1132), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1132), + [anon_sym_GT_LPAREN] = ACTIONS(1132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), + [sym_word] = ACTIONS(1130), }, [608] = { - [sym_heredoc_body] = STATE(1532), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(996), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(1154), + [sym__special_character] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1154), + [sym_raw_string] = ACTIONS(1154), + [sym_number] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1154), + [anon_sym_GT_GT] = ACTIONS(1154), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1154), + [anon_sym_LT_LPAREN] = ACTIONS(1154), + [sym_ansii_c_string] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(1154), + [sym_variable_name] = ACTIONS(1154), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1154), + [anon_sym_GT_LPAREN] = ACTIONS(1154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1154), + [sym_word] = ACTIONS(1152), }, [609] = { - [sym_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_concatenation] = STATE(477), - [sym_string] = STATE(427), - [aux_sym__literal_repeat1] = STATE(430), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_arithmetic_expansion] = STATE(427), - [aux_sym_command_repeat2] = STATE(477), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(2103), - [sym_ansii_c_string] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(2103), - [sym_number] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2109), - [sym_file_descriptor] = ACTIONS(1254), - [sym_word] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [sym__special_character] = ACTIONS(103), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), }, [610] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(1256), - [sym_ansii_c_string] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(1256), - [sym_number] = ACTIONS(1256), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), - [sym_file_descriptor] = ACTIONS(1258), - [sym_word] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [sym__special_character] = ACTIONS(1256), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [anon_sym_esac] = ACTIONS(1256), - [anon_sym_BQUOTE] = ACTIONS(1256), - [sym_raw_string] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2498), + [anon_sym_LF] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_esac] = ACTIONS(2230), }, [611] = { - [aux_sym_concatenation_repeat1] = STATE(1254), - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(1256), - [sym_ansii_c_string] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [sym__concat] = ACTIONS(2345), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(1256), - [sym_number] = ACTIONS(1256), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), - [sym_file_descriptor] = ACTIONS(1258), - [sym_word] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [sym__special_character] = ACTIONS(1256), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [anon_sym_esac] = ACTIONS(1256), - [anon_sym_BQUOTE] = ACTIONS(1256), - [sym_raw_string] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_AMP_GT_GT] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LT_LT] = ACTIONS(1226), + [sym_file_descriptor] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_AMP_GT] = ACTIONS(1226), + [anon_sym_BQUOTE] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_GT_AMP] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_LT_AMP] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(2371), }, [612] = { - [aux_sym__literal_repeat1] = STATE(1259), - [anon_sym_AMP_GT_GT] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1260), - [anon_sym_LT_LPAREN] = ACTIONS(1260), - [sym_ansii_c_string] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_LT_AMP] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_EQ_TILDE] = ACTIONS(1260), - [anon_sym_DOLLAR] = ACTIONS(1260), - [anon_sym_LT_LT_DASH] = ACTIONS(1260), - [anon_sym_GT_LPAREN] = ACTIONS(1260), - [sym_number] = ACTIONS(1260), - [anon_sym_LF] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), - [sym_file_descriptor] = ACTIONS(1262), - [sym_word] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_AMP_GT] = ACTIONS(1260), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [sym__special_character] = ACTIONS(2369), - [anon_sym_LT_LT_LT] = ACTIONS(1260), - [anon_sym_GT_AMP] = ACTIONS(1260), - [anon_sym_esac] = ACTIONS(1260), - [anon_sym_BQUOTE] = ACTIONS(1260), - [sym_raw_string] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_SEMI_SEMI] = ACTIONS(1260), - [anon_sym_PIPE_AMP] = ACTIONS(1260), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(2371), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(2371), }, [613] = { - [sym_expansion] = STATE(577), - [sym_string_expansion] = STATE(577), - [sym_concatenation] = STATE(613), - [sym_string] = STATE(577), - [aux_sym__literal_repeat1] = STATE(580), - [sym_command_substitution] = STATE(577), - [sym_process_substitution] = STATE(577), - [sym_simple_expansion] = STATE(577), - [sym_arithmetic_expansion] = STATE(577), - [aux_sym_command_repeat2] = STATE(613), - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(2496), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2499), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2502), - [anon_sym_LT_LPAREN] = ACTIONS(2505), - [sym_ansii_c_string] = ACTIONS(2508), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(2511), - [anon_sym_DOLLAR] = ACTIONS(2514), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(2505), - [sym_number] = ACTIONS(2508), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2517), - [sym_file_descriptor] = ACTIONS(1258), - [sym_word] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(2511), - [sym__special_character] = ACTIONS(2520), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [anon_sym_esac] = ACTIONS(1256), - [anon_sym_BQUOTE] = ACTIONS(2523), - [sym_raw_string] = ACTIONS(2508), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(1218), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [614] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [sym_ansii_c_string] = ACTIONS(1298), - [sym__concat] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1298), - [sym_number] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [sym_variable_name] = ACTIONS(1298), - [sym_file_descriptor] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1298), - [anon_sym_GT_AMP] = ACTIONS(1298), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), + [sym_heredoc_body] = STATE(1538), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(1218), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [sym_word] = ACTIONS(693), }, [615] = { - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [sym_test_operator] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_SEMI_SEMI] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), + [sym_expansion] = STATE(430), + [sym_string_expansion] = STATE(430), + [sym_concatenation] = STATE(481), + [sym_string] = STATE(430), + [aux_sym__literal_repeat1] = STATE(433), + [sym_command_substitution] = STATE(430), + [sym_process_substitution] = STATE(430), + [sym_simple_expansion] = STATE(430), + [sym_arithmetic_expansion] = STATE(430), + [aux_sym_command_repeat2] = STATE(481), + [sym_word] = ACTIONS(2105), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [sym__special_character] = ACTIONS(71), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(1258), + [sym_raw_string] = ACTIONS(2105), + [sym_number] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_EQ_TILDE] = ACTIONS(2109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2111), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(2113), + [sym_ansii_c_string] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(2115), + [sym_file_descriptor] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_GT_AMP] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_SEMI_SEMI] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1258), }, [616] = { - [anon_sym_BANG_EQ] = ACTIONS(1306), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [sym_test_operator] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_EQ_TILDE] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_AMP_AMP] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1306), - [anon_sym_SEMI_SEMI] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), + [aux_sym_concatenation_repeat1] = STATE(1259), + [sym_word] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [sym_raw_string] = ACTIONS(1262), + [sym_number] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [sym__concat] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1262), + [sym_ansii_c_string] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_esac] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_GT_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), }, [617] = { - [anon_sym_BANG_EQ] = ACTIONS(1306), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [sym_test_operator] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_LF] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_EQ_TILDE] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_AMP_AMP] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1306), - [anon_sym_SEMI_SEMI] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), + [sym_word] = ACTIONS(1262), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [sym__special_character] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [sym_raw_string] = ACTIONS(1262), + [sym_number] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(1262), + [sym_ansii_c_string] = ACTIONS(1262), + [anon_sym_LF] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_esac] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), + [anon_sym_GT_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), }, [618] = { - [sym_string] = STATE(567), - [anon_sym_0] = ACTIONS(2526), - [anon_sym_AMP_GT_GT] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1312), - [sym_ansii_c_string] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(2530), - [anon_sym_QMARK] = ACTIONS(2526), - [aux_sym__simple_variable_name_token1] = ACTIONS(2526), - [anon_sym__] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_GT_LPAREN] = ACTIONS(1312), - [sym_number] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(2528), - [sym_variable_name] = ACTIONS(1312), - [sym_file_descriptor] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1312), - [sym__special_character] = ACTIONS(1312), - [anon_sym_GT_AMP] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1312), - [sym_raw_string] = ACTIONS(2532), - [anon_sym_AT] = ACTIONS(2526), + [aux_sym__literal_repeat1] = STATE(1265), + [sym_word] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [sym__special_character] = ACTIONS(2375), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [sym_raw_string] = ACTIONS(1266), + [sym_number] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [anon_sym_LT_LPAREN] = ACTIONS(1266), + [sym_ansii_c_string] = ACTIONS(1266), + [anon_sym_LF] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_file_descriptor] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [anon_sym_esac] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_GT_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), }, [619] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1358), - [sym_ansii_c_string] = ACTIONS(1358), - [sym__concat] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1358), - [anon_sym_GT_GT] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1358), - [sym_number] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), - [sym_variable_name] = ACTIONS(1358), - [sym_file_descriptor] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_AMP_GT] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1358), - [anon_sym_GT_AMP] = ACTIONS(1358), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1358), - [sym_raw_string] = ACTIONS(1358), + [sym_expansion] = STATE(582), + [sym_string_expansion] = STATE(582), + [sym_concatenation] = STATE(619), + [sym_string] = STATE(582), + [aux_sym__literal_repeat1] = STATE(585), + [sym_command_substitution] = STATE(582), + [sym_process_substitution] = STATE(582), + [sym_simple_expansion] = STATE(582), + [sym_arithmetic_expansion] = STATE(582), + [aux_sym_command_repeat2] = STATE(619), + [sym_word] = ACTIONS(2502), + [anon_sym_AMP_GT_GT] = ACTIONS(1262), + [sym__special_character] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(2508), + [sym_raw_string] = ACTIONS(2502), + [sym_number] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_LT_AMP] = ACTIONS(1262), + [anon_sym_GT_GT] = ACTIONS(1262), + [anon_sym_EQ_TILDE] = ACTIONS(2511), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2514), + [anon_sym_LT_LT_DASH] = ACTIONS(1262), + [anon_sym_LT_LPAREN] = ACTIONS(2517), + [sym_ansii_c_string] = ACTIONS(2502), + [anon_sym_LF] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(2520), + [sym_file_descriptor] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1262), + [anon_sym_AMP_GT] = ACTIONS(1262), + [anon_sym_EQ_EQ] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2523), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_GT_AMP] = ACTIONS(1262), + [anon_sym_esac] = ACTIONS(1262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2526), + [anon_sym_GT_LPAREN] = ACTIONS(2517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2529), + [anon_sym_AMP_AMP] = ACTIONS(1262), + [anon_sym_SEMI_SEMI] = ACTIONS(1262), + [anon_sym_PIPE_AMP] = ACTIONS(1262), }, [620] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1412), - [sym_ansii_c_string] = ACTIONS(1412), - [sym__concat] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1412), - [sym_number] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), - [sym_variable_name] = ACTIONS(1412), - [sym_file_descriptor] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1412), - [anon_sym_AMP_GT] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1412), - [anon_sym_GT_AMP] = ACTIONS(1412), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_raw_string] = ACTIONS(1412), + [sym_string] = STATE(572), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_AMP_GT_GT] = ACTIONS(1306), + [sym__special_character] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_BQUOTE] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(2536), + [sym_number] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1306), + [anon_sym_GT_GT] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [sym_ansii_c_string] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2534), + [sym_variable_name] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(2532), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2532), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(2534), + [anon_sym_GT_AMP] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(2532), + [sym_word] = ACTIONS(1300), }, [621] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1430), - [sym_ansii_c_string] = ACTIONS(1430), - [sym__concat] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1430), - [sym_number] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1430), - [sym_variable_name] = ACTIONS(1430), - [sym_file_descriptor] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_RPAREN] = ACTIONS(1430), - [anon_sym_AMP_GT] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1430), - [anon_sym_GT_AMP] = ACTIONS(1430), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_raw_string] = ACTIONS(1430), + [anon_sym_BANG_EQ] = ACTIONS(1314), + [anon_sym_PLUS_EQ] = ACTIONS(1314), + [sym_test_operator] = ACTIONS(1314), + [anon_sym_LF] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1314), + [anon_sym_EQ_TILDE] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_LT_EQ] = ACTIONS(1314), + [anon_sym_SEMI_SEMI] = ACTIONS(1314), + [anon_sym_DASH_EQ] = ACTIONS(1314), }, [622] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LPAREN] = ACTIONS(1438), - [sym_ansii_c_string] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [aux_sym__simple_variable_name_token1] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LT_AMP] = ACTIONS(1438), - [anon_sym_GT_GT] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1438), - [anon_sym_LT_LT_DASH] = ACTIONS(1438), - [anon_sym_GT_LPAREN] = ACTIONS(1438), - [sym_number] = ACTIONS(1438), - [anon_sym_LF] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), - [sym_variable_name] = ACTIONS(1440), - [sym_file_descriptor] = ACTIONS(1440), - [sym_word] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_AMP_GT] = ACTIONS(1438), - [sym__special_character] = ACTIONS(1438), - [anon_sym_LT_LT_LT] = ACTIONS(1438), - [anon_sym_GT_AMP] = ACTIONS(1438), - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_raw_string] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI_SEMI] = ACTIONS(1438), - [anon_sym_PIPE_AMP] = ACTIONS(1438), + [anon_sym_BANG_EQ] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1318), + [sym_test_operator] = ACTIONS(1318), + [anon_sym_LF] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_LT_LT] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_EQ_EQ] = ACTIONS(1318), + [anon_sym_PIPE_PIPE] = ACTIONS(1318), + [anon_sym_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1318), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1318), + [anon_sym_LT_EQ] = ACTIONS(1318), + [anon_sym_SEMI_SEMI] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1318), }, [623] = { - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_typeset] = ACTIONS(1520), - [anon_sym_unsetenv] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1522), - [sym_ansii_c_string] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), - [sym_number] = ACTIONS(1520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_declare] = ACTIONS(1520), - [anon_sym_GT_LPAREN] = ACTIONS(1522), - [sym_file_descriptor] = ACTIONS(1522), - [sym_word] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), - [sym_variable_name] = ACTIONS(1522), - [anon_sym_AMP_GT] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_unset] = ACTIONS(1520), - [sym__special_character] = ACTIONS(1520), - [anon_sym_GT_AMP] = ACTIONS(1522), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [sym_raw_string] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1318), + [sym_test_operator] = ACTIONS(1318), + [anon_sym_LF] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_LT_LT] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_EQ_EQ] = ACTIONS(1318), + [anon_sym_PIPE_PIPE] = ACTIONS(1318), + [anon_sym_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1318), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1318), + [anon_sym_LT_EQ] = ACTIONS(1318), + [anon_sym_SEMI_SEMI] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1318), }, [624] = { - [anon_sym_AMP] = ACTIONS(2534), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_SEMI_SEMI] = ACTIONS(2294), - [anon_sym_esac] = ACTIONS(2294), + [anon_sym_AMP_GT_GT] = ACTIONS(1360), + [sym__special_character] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [sym_raw_string] = ACTIONS(1360), + [sym_number] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1360), + [anon_sym_LT_LPAREN] = ACTIONS(1360), + [sym_ansii_c_string] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_variable_name] = ACTIONS(1360), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1360), + [sym_word] = ACTIONS(1358), }, [625] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1661), - [sym_ansii_c_string] = ACTIONS(1661), - [sym__concat] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1661), - [anon_sym_GT_GT] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1661), - [sym_number] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1661), - [sym_variable_name] = ACTIONS(1661), - [sym_file_descriptor] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1661), - [anon_sym_GT_AMP] = ACTIONS(1661), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1661), - [sym_raw_string] = ACTIONS(1661), + [sym_word] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1368), + [sym_number] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [sym_ansii_c_string] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_variable_name] = ACTIONS(1370), + [aux_sym__simple_variable_name_token1] = ACTIONS(1368), + [sym_file_descriptor] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [ts_builtin_sym_end] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), }, [626] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1673), - [sym_ansii_c_string] = ACTIONS(1673), - [sym__concat] = ACTIONS(1673), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1673), - [anon_sym_GT_GT] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1673), - [sym_number] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1673), - [sym_variable_name] = ACTIONS(1673), - [sym_file_descriptor] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1673), - [anon_sym_AMP_GT] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1673), - [anon_sym_GT_AMP] = ACTIONS(1673), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1673), - [sym_raw_string] = ACTIONS(1673), + [anon_sym_AMP_GT_GT] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [sym_number] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_variable_name] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym_word] = ACTIONS(1426), }, [627] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1683), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1683), - [sym_ansii_c_string] = ACTIONS(1683), - [sym__concat] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1683), - [anon_sym_GT_GT] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1683), - [sym_number] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), - [sym_variable_name] = ACTIONS(1683), - [sym_file_descriptor] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_AMP_GT] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1683), - [anon_sym_GT_AMP] = ACTIONS(1683), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1683), - [sym_raw_string] = ACTIONS(1683), + [anon_sym_AMP_GT_GT] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_number] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1476), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_variable_name] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [sym_word] = ACTIONS(1474), }, [628] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1687), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1687), - [sym_ansii_c_string] = ACTIONS(1687), - [sym__concat] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1687), - [anon_sym_GT_GT] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1687), - [sym_number] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [sym_variable_name] = ACTIONS(1687), - [sym_file_descriptor] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_AMP_GT] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1687), - [anon_sym_GT_AMP] = ACTIONS(1687), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1687), - [sym_raw_string] = ACTIONS(1687), + [anon_sym_AMP_GT_GT] = ACTIONS(1488), + [sym__special_character] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [sym_raw_string] = ACTIONS(1488), + [sym_number] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1488), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1488), + [anon_sym_LT_LPAREN] = ACTIONS(1488), + [sym_ansii_c_string] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_variable_name] = ACTIONS(1488), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1488), + [anon_sym_GT_LPAREN] = ACTIONS(1488), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1488), + [sym_word] = ACTIONS(1486), }, [629] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LPAREN] = ACTIONS(1691), - [sym_ansii_c_string] = ACTIONS(1691), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [aux_sym__simple_variable_name_token1] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_LT_AMP] = ACTIONS(1691), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_LT_LT_DASH] = ACTIONS(1691), - [anon_sym_GT_LPAREN] = ACTIONS(1691), - [sym_number] = ACTIONS(1691), - [anon_sym_LF] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), - [sym_variable_name] = ACTIONS(1693), - [sym_file_descriptor] = ACTIONS(1693), - [sym_word] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1691), - [anon_sym_AMP_GT] = ACTIONS(1691), - [sym__special_character] = ACTIONS(1691), - [anon_sym_LT_LT_LT] = ACTIONS(1691), - [anon_sym_GT_AMP] = ACTIONS(1691), - [ts_builtin_sym_end] = ACTIONS(1693), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1691), - [sym_raw_string] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI_SEMI] = ACTIONS(1691), - [anon_sym_PIPE_AMP] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_AMP_GT_GT] = ACTIONS(1528), + [anon_sym_local] = ACTIONS(1526), + [anon_sym_typeset] = ACTIONS(1526), + [anon_sym_unsetenv] = ACTIONS(1526), + [sym__special_character] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1530), + [sym_raw_string] = ACTIONS(1528), + [sym_number] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_LT_AMP] = ACTIONS(1528), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_ansii_c_string] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_declare] = ACTIONS(1526), + [anon_sym_LT_LPAREN] = ACTIONS(1528), + [sym_file_descriptor] = ACTIONS(1528), + [sym_variable_name] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_AMP_GT] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_unset] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_GT_AMP] = ACTIONS(1528), + [anon_sym_GT_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [sym_word] = ACTIONS(1526), }, [630] = { - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_typeset] = ACTIONS(1520), - [anon_sym_unsetenv] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1522), - [sym_ansii_c_string] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), - [sym_number] = ACTIONS(1520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_declare] = ACTIONS(1520), - [anon_sym_GT_LPAREN] = ACTIONS(1522), - [sym_file_descriptor] = ACTIONS(1522), - [sym_word] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), - [sym_variable_name] = ACTIONS(1522), - [anon_sym_AMP_GT] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_unset] = ACTIONS(1520), - [sym__special_character] = ACTIONS(1520), - [anon_sym_GT_AMP] = ACTIONS(1522), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [sym_raw_string] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_LF] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_SEMI_SEMI] = ACTIONS(2300), + [anon_sym_esac] = ACTIONS(2300), }, [631] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1870), - [anon_sym_DQUOTE] = ACTIONS(1870), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1870), - [sym_ansii_c_string] = ACTIONS(1870), - [sym__concat] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1870), - [anon_sym_GT_GT] = ACTIONS(1870), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1870), - [sym_number] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1870), - [sym_variable_name] = ACTIONS(1870), - [sym_file_descriptor] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_AMP_GT] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1870), - [anon_sym_GT_AMP] = ACTIONS(1870), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1870), - [sym_raw_string] = ACTIONS(1870), + [sym_word] = ACTIONS(1665), + [anon_sym_AMP_GT_GT] = ACTIONS(1665), + [sym__special_character] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_raw_string] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_LT_AMP] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1665), + [anon_sym_LT_LT_DASH] = ACTIONS(1665), + [anon_sym_LT_LPAREN] = ACTIONS(1665), + [sym_ansii_c_string] = ACTIONS(1665), + [anon_sym_LF] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_variable_name] = ACTIONS(1667), + [aux_sym__simple_variable_name_token1] = ACTIONS(1665), + [sym_file_descriptor] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_AMP_GT] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_LT_LT_LT] = ACTIONS(1665), + [anon_sym_GT_AMP] = ACTIONS(1665), + [ts_builtin_sym_end] = ACTIONS(1667), + [anon_sym_GT_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_SEMI_SEMI] = ACTIONS(1665), + [anon_sym_PIPE_AMP] = ACTIONS(1665), }, [632] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [sym_ansii_c_string] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_number] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [sym_variable_name] = ACTIONS(1876), - [sym_file_descriptor] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1876), - [anon_sym_GT_AMP] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1876), - [sym_raw_string] = ACTIONS(1876), + [anon_sym_AMP_GT_GT] = ACTIONS(1721), + [sym__special_character] = ACTIONS(1721), + [anon_sym_BQUOTE] = ACTIONS(1721), + [sym_raw_string] = ACTIONS(1721), + [sym_number] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1721), + [anon_sym_GT_GT] = ACTIONS(1721), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1721), + [anon_sym_LT_LPAREN] = ACTIONS(1721), + [sym_ansii_c_string] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym_variable_name] = ACTIONS(1721), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1721), + [anon_sym_GT_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1721), + [sym_word] = ACTIONS(1719), }, [633] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1880), - [anon_sym_DQUOTE] = ACTIONS(1880), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1880), - [sym_ansii_c_string] = ACTIONS(1880), - [sym__concat] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1880), - [anon_sym_GT_GT] = ACTIONS(1880), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1880), - [sym_number] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1880), - [sym_variable_name] = ACTIONS(1880), - [sym_file_descriptor] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1880), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1880), - [anon_sym_GT_AMP] = ACTIONS(1880), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1880), - [sym_raw_string] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1727), + [sym__special_character] = ACTIONS(1727), + [anon_sym_BQUOTE] = ACTIONS(1727), + [sym_raw_string] = ACTIONS(1727), + [sym_number] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1727), + [anon_sym_LT_LPAREN] = ACTIONS(1727), + [sym_ansii_c_string] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym_variable_name] = ACTIONS(1727), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1727), + [anon_sym_GT_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1727), + [sym_word] = ACTIONS(1725), }, [634] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [sym_ansii_c_string] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_number] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1886), + [anon_sym_AMP_GT_GT] = ACTIONS(1737), + [sym__special_character] = ACTIONS(1737), + [anon_sym_BQUOTE] = ACTIONS(1737), + [sym_raw_string] = ACTIONS(1737), + [sym_number] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1737), + [anon_sym_GT_GT] = ACTIONS(1737), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1737), + [anon_sym_LT_LPAREN] = ACTIONS(1737), + [sym_ansii_c_string] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym_variable_name] = ACTIONS(1737), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1737), + [anon_sym_GT_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), + [sym_word] = ACTIONS(1735), }, [635] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [sym_ansii_c_string] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_number] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [sym_variable_name] = ACTIONS(1959), - [sym_file_descriptor] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1959), - [anon_sym_GT_AMP] = ACTIONS(1959), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1959), - [sym_raw_string] = ACTIONS(1959), + [anon_sym_AMP_GT_GT] = ACTIONS(1749), + [sym__special_character] = ACTIONS(1749), + [anon_sym_BQUOTE] = ACTIONS(1749), + [sym_raw_string] = ACTIONS(1749), + [sym_number] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1749), + [anon_sym_GT_GT] = ACTIONS(1749), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1749), + [anon_sym_LT_LPAREN] = ACTIONS(1749), + [sym_ansii_c_string] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym_variable_name] = ACTIONS(1749), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1749), + [anon_sym_GT_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1749), + [sym_word] = ACTIONS(1747), }, [636] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1963), - [sym_ansii_c_string] = ACTIONS(1963), - [sym__concat] = ACTIONS(1963), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1963), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1963), - [sym_number] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1963), - [sym_variable_name] = ACTIONS(1963), - [sym_file_descriptor] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_AMP_GT] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1963), - [anon_sym_GT_AMP] = ACTIONS(1963), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1963), - [sym_raw_string] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_AMP_GT_GT] = ACTIONS(1528), + [anon_sym_local] = ACTIONS(1526), + [anon_sym_typeset] = ACTIONS(1526), + [anon_sym_unsetenv] = ACTIONS(1526), + [sym__special_character] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1528), + [sym_number] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_LT_AMP] = ACTIONS(1528), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_ansii_c_string] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_declare] = ACTIONS(1526), + [anon_sym_LT_LPAREN] = ACTIONS(1528), + [sym_file_descriptor] = ACTIONS(1528), + [sym_variable_name] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_AMP_GT] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_unset] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_GT_AMP] = ACTIONS(1528), + [anon_sym_GT_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [sym_word] = ACTIONS(1526), }, [637] = { - [sym_expansion] = STATE(554), - [sym_concatenation] = STATE(644), - [aux_sym_declaration_command_repeat1] = STATE(644), - [sym_string] = STATE(554), - [sym_command_substitution] = STATE(554), - [sym_process_substitution] = STATE(554), - [aux_sym__literal_repeat1] = STATE(555), - [sym_variable_assignment] = STATE(644), - [sym_subscript] = STATE(2625), - [sym_simple_expansion] = STATE(554), - [sym_arithmetic_expansion] = STATE(554), - [sym_string_expansion] = STATE(554), - [anon_sym_AMP_GT_GT] = ACTIONS(135), - [anon_sym_DQUOTE] = ACTIONS(2538), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(135), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2542), - [anon_sym_LT_LPAREN] = ACTIONS(2544), - [sym_ansii_c_string] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [aux_sym__simple_variable_name_token1] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_LT_AMP] = ACTIONS(135), - [anon_sym_GT_GT] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(2550), - [anon_sym_LT_LT_DASH] = ACTIONS(135), - [anon_sym_GT_LPAREN] = ACTIONS(2544), - [sym_number] = ACTIONS(2546), - [anon_sym_LF] = ACTIONS(151), - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2552), - [sym_variable_name] = ACTIONS(2554), - [sym_file_descriptor] = ACTIONS(151), - [sym_word] = ACTIONS(2546), - [anon_sym_GT] = ACTIONS(135), - [anon_sym_AMP_GT] = ACTIONS(135), - [sym__special_character] = ACTIONS(2556), - [anon_sym_LT_LT_LT] = ACTIONS(135), - [anon_sym_GT_AMP] = ACTIONS(135), - [anon_sym_esac] = ACTIONS(135), - [anon_sym_BQUOTE] = ACTIONS(2558), - [sym_raw_string] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(135), - [anon_sym_AMP] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(135), - [anon_sym_PIPE_AMP] = ACTIONS(135), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [sym__special_character] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [sym_number] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [sym_ansii_c_string] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym_variable_name] = ACTIONS(1892), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [sym_word] = ACTIONS(1890), }, [638] = { - [sym_expansion] = STATE(557), - [sym_concatenation] = STATE(645), - [sym_string] = STATE(557), - [sym_command_substitution] = STATE(557), - [sym_process_substitution] = STATE(557), - [aux_sym__literal_repeat1] = STATE(558), - [aux_sym_unset_command_repeat1] = STATE(645), - [sym_simple_expansion] = STATE(557), - [sym_arithmetic_expansion] = STATE(557), - [sym_string_expansion] = STATE(557), - [anon_sym_AMP_GT_GT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2562), - [anon_sym_LT_LT] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), - [anon_sym_LT_LPAREN] = ACTIONS(2566), - [sym_ansii_c_string] = ACTIONS(2568), - [anon_sym_PIPE_PIPE] = ACTIONS(161), - [anon_sym_PIPE] = ACTIONS(161), - [aux_sym__simple_variable_name_token1] = ACTIONS(2570), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_LT_AMP] = ACTIONS(161), - [anon_sym_GT_GT] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(2572), - [anon_sym_LT_LT_DASH] = ACTIONS(161), - [anon_sym_GT_LPAREN] = ACTIONS(2566), - [sym_number] = ACTIONS(2568), - [anon_sym_LF] = ACTIONS(177), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2574), - [sym_file_descriptor] = ACTIONS(177), - [sym_word] = ACTIONS(2568), - [anon_sym_GT] = ACTIONS(161), - [anon_sym_AMP_GT] = ACTIONS(161), - [sym__special_character] = ACTIONS(2576), - [anon_sym_LT_LT_LT] = ACTIONS(161), - [anon_sym_GT_AMP] = ACTIONS(161), - [anon_sym_esac] = ACTIONS(161), - [anon_sym_BQUOTE] = ACTIONS(2578), - [sym_raw_string] = ACTIONS(2568), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(161), - [anon_sym_SEMI_SEMI] = ACTIONS(161), - [anon_sym_PIPE_AMP] = ACTIONS(161), + [anon_sym_AMP_GT_GT] = ACTIONS(1896), + [sym__special_character] = ACTIONS(1896), + [anon_sym_BQUOTE] = ACTIONS(1896), + [sym_raw_string] = ACTIONS(1896), + [sym_number] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1896), + [anon_sym_GT_GT] = ACTIONS(1896), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1896), + [anon_sym_LT_LPAREN] = ACTIONS(1896), + [sym_ansii_c_string] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym_variable_name] = ACTIONS(1896), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_RPAREN] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1896), + [anon_sym_GT_LPAREN] = ACTIONS(1896), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), + [sym_word] = ACTIONS(1894), }, [639] = { - [aux_sym_concatenation_repeat1] = STATE(647), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [ts_builtin_sym_end] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_AMP_GT_GT] = ACTIONS(1902), + [sym__special_character] = ACTIONS(1902), + [anon_sym_BQUOTE] = ACTIONS(1902), + [sym_raw_string] = ACTIONS(1902), + [sym_number] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1902), + [anon_sym_GT_GT] = ACTIONS(1902), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1902), + [anon_sym_LT_LPAREN] = ACTIONS(1902), + [sym_ansii_c_string] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym_variable_name] = ACTIONS(1902), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1902), + [anon_sym_GT_LPAREN] = ACTIONS(1902), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1902), + [sym_word] = ACTIONS(1900), }, [640] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LF] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2089), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(2093), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [anon_sym_AMP_GT_GT] = ACTIONS(1908), + [sym__special_character] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1908), + [sym_raw_string] = ACTIONS(1908), + [sym_number] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1908), + [anon_sym_GT_GT] = ACTIONS(1908), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1908), + [anon_sym_LT_LPAREN] = ACTIONS(1908), + [sym_ansii_c_string] = ACTIONS(1908), + [anon_sym_DQUOTE] = ACTIONS(1908), + [sym_variable_name] = ACTIONS(1908), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1908), + [anon_sym_GT_LPAREN] = ACTIONS(1908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1908), + [sym_word] = ACTIONS(1906), }, [641] = { - [sym_heredoc_redirect] = STATE(2796), - [sym_file_redirect] = STATE(2796), - [sym_herestring_redirect] = STATE(2796), - [aux_sym_redirected_statement_repeat1] = STATE(2796), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(2349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(2351), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(2357), - [anon_sym_GT_AMP] = ACTIONS(343), - [anon_sym_esac] = ACTIONS(2093), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_SEMI_SEMI] = ACTIONS(2093), - [anon_sym_PIPE_AMP] = ACTIONS(2359), + [anon_sym_AMP_GT_GT] = ACTIONS(1973), + [sym__special_character] = ACTIONS(1973), + [anon_sym_BQUOTE] = ACTIONS(1973), + [sym_raw_string] = ACTIONS(1973), + [sym_number] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1973), + [anon_sym_LT_LPAREN] = ACTIONS(1973), + [sym_ansii_c_string] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [sym_variable_name] = ACTIONS(1973), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1973), + [anon_sym_GT_LPAREN] = ACTIONS(1973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1973), + [sym_word] = ACTIONS(1971), }, [642] = { - [sym_if_statement] = STATE(655), - [sym_function_definition] = STATE(655), - [sym_negated_command] = STATE(655), - [sym_test_command] = STATE(655), - [sym_variable_assignment] = STATE(656), - [sym_subscript] = STATE(2615), - [sym_arithmetic_expansion] = STATE(540), - [sym_string_expansion] = STATE(540), - [sym_expansion] = STATE(540), - [aux_sym__statements_repeat1] = STATE(101), - [aux_sym__literal_repeat1] = STATE(547), - [sym_redirected_statement] = STATE(655), - [sym_for_statement] = STATE(655), - [sym_compound_statement] = STATE(655), - [sym_subshell] = STATE(655), - [sym_declaration_command] = STATE(655), - [sym_unset_command] = STATE(655), - [sym_file_redirect] = STATE(549), - [sym_concatenation] = STATE(548), - [sym_string] = STATE(540), - [sym_command_substitution] = STATE(540), - [sym_process_substitution] = STATE(540), - [aux_sym_command_repeat1] = STATE(549), - [sym_c_style_for_statement] = STATE(655), - [sym_while_statement] = STATE(655), - [sym_case_statement] = STATE(655), - [sym_pipeline] = STATE(655), - [sym_list] = STATE(655), - [sym_command] = STATE(655), - [sym_command_name] = STATE(643), - [sym_simple_expansion] = STATE(540), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1790), - [anon_sym_typeset] = ACTIONS(1790), - [anon_sym_unsetenv] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [sym_ansii_c_string] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_declare] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1812), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(1814), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(1800), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(1790), - [anon_sym_unset] = ACTIONS(1792), - [sym__special_character] = ACTIONS(1816), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(1802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_AMP_GT_GT] = ACTIONS(1977), + [sym__special_character] = ACTIONS(1977), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_raw_string] = ACTIONS(1977), + [sym_number] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1977), + [anon_sym_GT_GT] = ACTIONS(1977), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1977), + [anon_sym_LT_LPAREN] = ACTIONS(1977), + [sym_ansii_c_string] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1977), + [sym_variable_name] = ACTIONS(1977), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1977), + [anon_sym_GT_LPAREN] = ACTIONS(1977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1977), + [sym_word] = ACTIONS(1975), }, [643] = { - [sym_expansion] = STATE(577), - [sym_string_expansion] = STATE(577), - [sym_concatenation] = STATE(660), - [sym_string] = STATE(577), - [aux_sym__literal_repeat1] = STATE(580), - [sym_command_substitution] = STATE(577), - [sym_process_substitution] = STATE(577), - [sym_simple_expansion] = STATE(577), - [sym_arithmetic_expansion] = STATE(577), - [aux_sym_command_repeat2] = STATE(660), - [anon_sym_AMP_GT_GT] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(2582), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2584), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(2586), - [sym_ansii_c_string] = ACTIONS(2588), - [anon_sym_PIPE_PIPE] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(359), - [anon_sym_LT_AMP] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_EQ_TILDE] = ACTIONS(2590), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_LT_LT_DASH] = ACTIONS(359), - [anon_sym_GT_LPAREN] = ACTIONS(2586), - [sym_number] = ACTIONS(2588), - [anon_sym_LF] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), - [sym_file_descriptor] = ACTIONS(371), - [sym_word] = ACTIONS(2588), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_AMP_GT] = ACTIONS(359), - [anon_sym_EQ_EQ] = ACTIONS(2590), - [sym__special_character] = ACTIONS(1816), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [anon_sym_GT_AMP] = ACTIONS(359), - [anon_sym_esac] = ACTIONS(359), - [anon_sym_BQUOTE] = ACTIONS(2594), - [sym_raw_string] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(359), - [anon_sym_SEMI_SEMI] = ACTIONS(359), - [anon_sym_PIPE_AMP] = ACTIONS(359), + [sym_expansion] = STATE(558), + [sym_concatenation] = STATE(650), + [aux_sym_declaration_command_repeat1] = STATE(650), + [sym_string] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym__literal_repeat1] = STATE(559), + [sym_variable_assignment] = STATE(650), + [sym_subscript] = STATE(2631), + [sym_simple_expansion] = STATE(558), + [sym_arithmetic_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_word] = ACTIONS(2544), + [anon_sym_AMP_GT_GT] = ACTIONS(137), + [sym__special_character] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(137), + [anon_sym_BQUOTE] = ACTIONS(2548), + [sym_raw_string] = ACTIONS(2544), + [sym_number] = ACTIONS(2544), + [anon_sym_PIPE_PIPE] = ACTIONS(137), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT_AMP] = ACTIONS(137), + [anon_sym_GT_GT] = ACTIONS(137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2550), + [anon_sym_LT_LT_DASH] = ACTIONS(137), + [anon_sym_LT_LPAREN] = ACTIONS(2552), + [sym_ansii_c_string] = ACTIONS(2544), + [anon_sym_LF] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(2554), + [sym_variable_name] = ACTIONS(2556), + [sym_file_descriptor] = ACTIONS(147), + [aux_sym__simple_variable_name_token1] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(137), + [anon_sym_AMP_GT] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(2560), + [anon_sym_LT_LT_LT] = ACTIONS(137), + [anon_sym_GT_AMP] = ACTIONS(137), + [anon_sym_esac] = ACTIONS(137), + [anon_sym_GT_LPAREN] = ACTIONS(2552), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(137), + [anon_sym_PIPE_AMP] = ACTIONS(137), }, [644] = { - [sym_expansion] = STATE(554), - [sym_concatenation] = STATE(581), - [aux_sym_declaration_command_repeat1] = STATE(581), - [sym_string] = STATE(554), - [sym_command_substitution] = STATE(554), - [sym_process_substitution] = STATE(554), - [aux_sym__literal_repeat1] = STATE(555), - [sym_variable_assignment] = STATE(581), - [sym_subscript] = STATE(2625), - [sym_simple_expansion] = STATE(554), - [sym_arithmetic_expansion] = STATE(554), - [sym_string_expansion] = STATE(554), - [anon_sym_AMP_GT_GT] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(2538), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2542), - [anon_sym_LT_LPAREN] = ACTIONS(2544), - [sym_ansii_c_string] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [aux_sym__simple_variable_name_token1] = ACTIONS(2596), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_LT_AMP] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(2550), - [anon_sym_LT_LT_DASH] = ACTIONS(403), - [anon_sym_GT_LPAREN] = ACTIONS(2544), - [sym_number] = ACTIONS(2546), - [anon_sym_LF] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2552), - [sym_variable_name] = ACTIONS(2554), - [sym_file_descriptor] = ACTIONS(407), - [sym_word] = ACTIONS(2546), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_AMP_GT] = ACTIONS(403), - [sym__special_character] = ACTIONS(2556), - [anon_sym_LT_LT_LT] = ACTIONS(403), - [anon_sym_GT_AMP] = ACTIONS(403), - [anon_sym_esac] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(2558), - [sym_raw_string] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_SEMI_SEMI] = ACTIONS(403), - [anon_sym_PIPE_AMP] = ACTIONS(403), + [sym_expansion] = STATE(561), + [sym_concatenation] = STATE(651), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [aux_sym__literal_repeat1] = STATE(562), + [aux_sym_unset_command_repeat1] = STATE(651), + [sym_simple_expansion] = STATE(561), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [sym_word] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(163), + [sym__special_character] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(163), + [anon_sym_BQUOTE] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2566), + [sym_number] = ACTIONS(2566), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(163), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_LT_AMP] = ACTIONS(163), + [anon_sym_GT_GT] = ACTIONS(163), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2572), + [anon_sym_LT_LT_DASH] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(2574), + [sym_ansii_c_string] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(2576), + [sym_file_descriptor] = ACTIONS(173), + [aux_sym__simple_variable_name_token1] = ACTIONS(2578), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_AMP_GT] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(2580), + [anon_sym_LT_LT_LT] = ACTIONS(163), + [anon_sym_GT_AMP] = ACTIONS(163), + [anon_sym_esac] = ACTIONS(163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2582), + [anon_sym_GT_LPAREN] = ACTIONS(2574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_SEMI_SEMI] = ACTIONS(163), + [anon_sym_PIPE_AMP] = ACTIONS(163), }, [645] = { - [sym_expansion] = STATE(557), - [sym_concatenation] = STATE(582), - [sym_string] = STATE(557), - [sym_command_substitution] = STATE(557), - [sym_process_substitution] = STATE(557), - [aux_sym__literal_repeat1] = STATE(558), - [aux_sym_unset_command_repeat1] = STATE(582), - [sym_simple_expansion] = STATE(557), - [sym_arithmetic_expansion] = STATE(557), - [sym_string_expansion] = STATE(557), - [anon_sym_AMP_GT_GT] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2562), - [anon_sym_LT_LT] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), - [anon_sym_LT_LPAREN] = ACTIONS(2566), - [sym_ansii_c_string] = ACTIONS(2568), - [anon_sym_PIPE_PIPE] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(421), - [aux_sym__simple_variable_name_token1] = ACTIONS(2598), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_LT_AMP] = ACTIONS(421), - [anon_sym_GT_GT] = ACTIONS(421), - [anon_sym_DOLLAR] = ACTIONS(2572), - [anon_sym_LT_LT_DASH] = ACTIONS(421), - [anon_sym_GT_LPAREN] = ACTIONS(2566), - [sym_number] = ACTIONS(2568), - [anon_sym_LF] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2574), - [sym_file_descriptor] = ACTIONS(425), - [sym_word] = ACTIONS(2568), - [anon_sym_GT] = ACTIONS(421), - [anon_sym_AMP_GT] = ACTIONS(421), - [sym__special_character] = ACTIONS(2576), - [anon_sym_LT_LT_LT] = ACTIONS(421), - [anon_sym_GT_AMP] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(421), - [anon_sym_BQUOTE] = ACTIONS(2578), - [sym_raw_string] = ACTIONS(2568), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_SEMI_SEMI] = ACTIONS(421), - [anon_sym_PIPE_AMP] = ACTIONS(421), + [aux_sym_concatenation_repeat1] = STATE(652), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [646] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [aux_sym__simple_variable_name_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [sym_variable_name] = ACTIONS(441), - [sym_file_descriptor] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [ts_builtin_sym_end] = ACTIONS(441), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2095), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_AMP_GT] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(2099), + [anon_sym_PIPE_AMP] = ACTIONS(449), }, [647] = { - [aux_sym_concatenation_repeat1] = STATE(667), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(2600), - [anon_sym_PIPE] = ACTIONS(475), - [aux_sym__simple_variable_name_token1] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [sym_variable_name] = ACTIONS(479), - [sym_file_descriptor] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [ts_builtin_sym_end] = ACTIONS(479), + [sym_heredoc_redirect] = STATE(2802), + [sym_file_redirect] = STATE(2802), + [sym_herestring_redirect] = STATE(2802), + [aux_sym_redirected_statement_repeat1] = STATE(2802), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_PIPE_PIPE] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2365), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2357), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_esac] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_SEMI_SEMI] = ACTIONS(2099), + [anon_sym_PIPE_AMP] = ACTIONS(2365), }, [648] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [aux_sym__simple_variable_name_token1] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [sym_variable_name] = ACTIONS(507), - [sym_file_descriptor] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_AMP_GT] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [ts_builtin_sym_end] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), - }, - [649] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [aux_sym__simple_variable_name_token1] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [sym_variable_name] = ACTIONS(511), - [sym_file_descriptor] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_AMP_GT] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [ts_builtin_sym_end] = ACTIONS(511), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), - }, - [650] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [aux_sym__simple_variable_name_token1] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [sym_variable_name] = ACTIONS(515), - [sym_file_descriptor] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_AMP_GT] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [ts_builtin_sym_end] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), - }, - [651] = { - [sym_if_statement] = STATE(2797), - [sym_function_definition] = STATE(2797), - [sym_negated_command] = STATE(2797), - [sym_test_command] = STATE(2797), - [sym_variable_assignment] = STATE(674), - [sym_subscript] = STATE(2615), - [sym_arithmetic_expansion] = STATE(540), - [sym_string_expansion] = STATE(540), - [sym_expansion] = STATE(540), - [aux_sym__literal_repeat1] = STATE(547), - [sym_redirected_statement] = STATE(2797), - [sym_for_statement] = STATE(2797), - [sym_compound_statement] = STATE(2797), - [sym_subshell] = STATE(2797), - [sym_declaration_command] = STATE(2797), - [sym_unset_command] = STATE(2797), - [sym_file_redirect] = STATE(549), - [sym_concatenation] = STATE(548), - [sym_string] = STATE(540), - [sym_command_substitution] = STATE(540), - [sym_process_substitution] = STATE(540), - [aux_sym_command_repeat1] = STATE(549), - [sym_c_style_for_statement] = STATE(2797), - [sym_while_statement] = STATE(2797), - [sym_case_statement] = STATE(2797), - [sym_pipeline] = STATE(2797), - [sym_list] = STATE(2797), - [sym_command] = STATE(2797), - [sym_command_name] = STATE(643), - [sym_simple_expansion] = STATE(540), + [sym_if_statement] = STATE(661), + [sym_function_definition] = STATE(661), + [sym_negated_command] = STATE(661), + [sym_test_command] = STATE(661), + [sym_variable_assignment] = STATE(662), + [sym_subscript] = STATE(2621), + [sym_arithmetic_expansion] = STATE(545), + [sym_string_expansion] = STATE(545), + [sym_expansion] = STATE(545), + [aux_sym__statements_repeat1] = STATE(102), + [aux_sym__literal_repeat1] = STATE(551), + [sym_redirected_statement] = STATE(661), + [sym_for_statement] = STATE(661), + [sym_compound_statement] = STATE(661), + [sym_subshell] = STATE(661), + [sym_declaration_command] = STATE(661), + [sym_unset_command] = STATE(661), + [sym_file_redirect] = STATE(553), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(545), + [sym_command_substitution] = STATE(545), + [sym_process_substitution] = STATE(545), + [aux_sym_command_repeat1] = STATE(553), + [sym_c_style_for_statement] = STATE(661), + [sym_while_statement] = STATE(661), + [sym_case_statement] = STATE(661), + [sym_pipeline] = STATE(661), + [sym_list] = STATE(661), + [sym_command] = STATE(661), + [sym_command_name] = STATE(649), + [sym_simple_expansion] = STATE(545), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1790), - [anon_sym_typeset] = ACTIONS(1790), - [anon_sym_unsetenv] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [sym_ansii_c_string] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(1798), + [anon_sym_typeset] = ACTIONS(1798), + [anon_sym_unsetenv] = ACTIONS(1800), + [sym__special_character] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_raw_string] = ACTIONS(1806), + [sym_number] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_declare] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1812), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_declare] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1816), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(1818), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(1800), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(1790), - [anon_sym_unset] = ACTIONS(1792), - [sym__special_character] = ACTIONS(1816), + [anon_sym_readonly] = ACTIONS(1798), + [anon_sym_unset] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1820), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(1802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(1796), + }, + [649] = { + [sym_expansion] = STATE(582), + [sym_string_expansion] = STATE(582), + [sym_concatenation] = STATE(666), + [sym_string] = STATE(582), + [aux_sym__literal_repeat1] = STATE(585), + [sym_command_substitution] = STATE(582), + [sym_process_substitution] = STATE(582), + [sym_simple_expansion] = STATE(582), + [sym_arithmetic_expansion] = STATE(582), + [aux_sym_command_repeat2] = STATE(666), + [sym_word] = ACTIONS(2588), + [anon_sym_AMP_GT_GT] = ACTIONS(365), + [sym__special_character] = ACTIONS(1802), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_raw_string] = ACTIONS(2588), + [sym_number] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(365), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(365), + [anon_sym_LT_AMP] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2594), + [anon_sym_LT_LT_DASH] = ACTIONS(365), + [anon_sym_LT_LPAREN] = ACTIONS(2596), + [sym_ansii_c_string] = ACTIONS(2588), + [anon_sym_LF] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(2598), + [sym_file_descriptor] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_AMP_GT] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_LT_LT_LT] = ACTIONS(365), + [anon_sym_GT_AMP] = ACTIONS(365), + [anon_sym_esac] = ACTIONS(365), + [anon_sym_GT_LPAREN] = ACTIONS(2596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2600), + [anon_sym_AMP_AMP] = ACTIONS(365), + [anon_sym_SEMI_SEMI] = ACTIONS(365), + [anon_sym_PIPE_AMP] = ACTIONS(365), + }, + [650] = { + [sym_expansion] = STATE(558), + [sym_concatenation] = STATE(586), + [aux_sym_declaration_command_repeat1] = STATE(586), + [sym_string] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym__literal_repeat1] = STATE(559), + [sym_variable_assignment] = STATE(586), + [sym_subscript] = STATE(2631), + [sym_simple_expansion] = STATE(558), + [sym_arithmetic_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_word] = ACTIONS(2544), + [anon_sym_AMP_GT_GT] = ACTIONS(407), + [sym__special_character] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_BQUOTE] = ACTIONS(2548), + [sym_raw_string] = ACTIONS(2544), + [sym_number] = ACTIONS(2544), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_LT_AMP] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2550), + [anon_sym_LT_LT_DASH] = ACTIONS(407), + [anon_sym_LT_LPAREN] = ACTIONS(2552), + [sym_ansii_c_string] = ACTIONS(2544), + [anon_sym_LF] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(2554), + [sym_variable_name] = ACTIONS(2556), + [sym_file_descriptor] = ACTIONS(409), + [aux_sym__simple_variable_name_token1] = ACTIONS(2602), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(2560), + [anon_sym_LT_LT_LT] = ACTIONS(407), + [anon_sym_GT_AMP] = ACTIONS(407), + [anon_sym_esac] = ACTIONS(407), + [anon_sym_GT_LPAREN] = ACTIONS(2552), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_SEMI_SEMI] = ACTIONS(407), + [anon_sym_PIPE_AMP] = ACTIONS(407), + }, + [651] = { + [sym_expansion] = STATE(561), + [sym_concatenation] = STATE(587), + [sym_string] = STATE(561), + [sym_command_substitution] = STATE(561), + [sym_process_substitution] = STATE(561), + [aux_sym__literal_repeat1] = STATE(562), + [aux_sym_unset_command_repeat1] = STATE(587), + [sym_simple_expansion] = STATE(561), + [sym_arithmetic_expansion] = STATE(561), + [sym_string_expansion] = STATE(561), + [sym_word] = ACTIONS(2566), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [sym__special_character] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(2570), + [sym_raw_string] = ACTIONS(2566), + [sym_number] = ACTIONS(2566), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_PIPE] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(425), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2572), + [anon_sym_LT_LT_DASH] = ACTIONS(425), + [anon_sym_LT_LPAREN] = ACTIONS(2574), + [sym_ansii_c_string] = ACTIONS(2566), + [anon_sym_LF] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_DQUOTE] = ACTIONS(2576), + [sym_file_descriptor] = ACTIONS(427), + [aux_sym__simple_variable_name_token1] = ACTIONS(2604), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_AMP_GT] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(2580), + [anon_sym_LT_LT_LT] = ACTIONS(425), + [anon_sym_GT_AMP] = ACTIONS(425), + [anon_sym_esac] = ACTIONS(425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2582), + [anon_sym_GT_LPAREN] = ACTIONS(2574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_SEMI_SEMI] = ACTIONS(425), + [anon_sym_PIPE_AMP] = ACTIONS(425), }, [652] = { - [sym_heredoc_body] = STATE(604), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(996), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [anon_sym_esac] = ACTIONS(2135), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(669), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym_variable_name] = ACTIONS(439), + [aux_sym__simple_variable_name_token1] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [ts_builtin_sym_end] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [653] = { - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [anon_sym_esac] = ACTIONS(2135), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [sym_variable_name] = ACTIONS(527), + [aux_sym__simple_variable_name_token1] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [ts_builtin_sym_end] = ACTIONS(527), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [654] = { - [sym_if_statement] = STATE(676), - [sym_function_definition] = STATE(676), - [sym_negated_command] = STATE(676), - [sym_test_command] = STATE(676), - [sym_variable_assignment] = STATE(677), - [sym_subscript] = STATE(2615), - [sym_arithmetic_expansion] = STATE(540), - [sym_string_expansion] = STATE(540), - [sym_expansion] = STATE(540), - [aux_sym__literal_repeat1] = STATE(547), - [sym_redirected_statement] = STATE(676), - [sym_for_statement] = STATE(676), - [sym_compound_statement] = STATE(676), - [sym_subshell] = STATE(676), - [sym_declaration_command] = STATE(676), - [sym_unset_command] = STATE(676), - [sym_file_redirect] = STATE(549), - [sym_concatenation] = STATE(548), - [sym_string] = STATE(540), - [sym_command_substitution] = STATE(540), - [sym_process_substitution] = STATE(540), - [aux_sym_command_repeat1] = STATE(549), - [sym_c_style_for_statement] = STATE(676), - [sym_while_statement] = STATE(676), - [sym_case_statement] = STATE(676), - [sym_pipeline] = STATE(676), - [sym_list] = STATE(676), - [sym_command] = STATE(676), - [sym_command_name] = STATE(643), - [sym_simple_expansion] = STATE(540), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(1790), - [anon_sym_typeset] = ACTIONS(1790), - [anon_sym_unsetenv] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [sym_ansii_c_string] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_declare] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1812), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(1814), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(1800), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(1790), - [anon_sym_unset] = ACTIONS(1792), - [sym__special_character] = ACTIONS(1816), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(1802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [sym_variable_name] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [ts_builtin_sym_end] = ACTIONS(587), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [655] = { - [sym_heredoc_redirect] = STATE(2796), - [sym_file_redirect] = STATE(2796), - [sym_herestring_redirect] = STATE(2796), - [aux_sym_redirected_statement_repeat1] = STATE(2796), - [anon_sym_PIPE_AMP] = ACTIONS(2359), - [anon_sym_AMP_GT_GT] = ACTIONS(2347), - [anon_sym_LF] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2604), - [sym_file_descriptor] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_AMP_GT] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_LT_LT_LT] = ACTIONS(2357), - [anon_sym_GT_AMP] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_esac] = ACTIONS(2135), - [anon_sym_LT_AMP] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_SEMI_SEMI] = ACTIONS(2135), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [sym_word] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [sym_variable_name] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [ts_builtin_sym_end] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [656] = { - [sym_heredoc_redirect] = STATE(2796), - [sym_file_redirect] = STATE(2796), - [sym_herestring_redirect] = STATE(2796), - [aux_sym_redirected_statement_repeat1] = STATE(2796), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(2602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(2604), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(2357), - [anon_sym_GT_AMP] = ACTIONS(343), - [anon_sym_esac] = ACTIONS(2135), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_SEMI_SEMI] = ACTIONS(2135), - [anon_sym_PIPE_AMP] = ACTIONS(2359), + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [sym_variable_name] = ACTIONS(595), + [aux_sym__simple_variable_name_token1] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [ts_builtin_sym_end] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [657] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [ts_builtin_sym_end] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [sym_if_statement] = STATE(2803), + [sym_function_definition] = STATE(2803), + [sym_negated_command] = STATE(2803), + [sym_test_command] = STATE(2803), + [sym_variable_assignment] = STATE(680), + [sym_subscript] = STATE(2621), + [sym_arithmetic_expansion] = STATE(545), + [sym_string_expansion] = STATE(545), + [sym_expansion] = STATE(545), + [aux_sym__literal_repeat1] = STATE(551), + [sym_redirected_statement] = STATE(2803), + [sym_for_statement] = STATE(2803), + [sym_compound_statement] = STATE(2803), + [sym_subshell] = STATE(2803), + [sym_declaration_command] = STATE(2803), + [sym_unset_command] = STATE(2803), + [sym_file_redirect] = STATE(553), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(545), + [sym_command_substitution] = STATE(545), + [sym_process_substitution] = STATE(545), + [aux_sym_command_repeat1] = STATE(553), + [sym_c_style_for_statement] = STATE(2803), + [sym_while_statement] = STATE(2803), + [sym_case_statement] = STATE(2803), + [sym_pipeline] = STATE(2803), + [sym_list] = STATE(2803), + [sym_command] = STATE(2803), + [sym_command_name] = STATE(649), + [sym_simple_expansion] = STATE(545), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1798), + [anon_sym_typeset] = ACTIONS(1798), + [anon_sym_unsetenv] = ACTIONS(1800), + [sym__special_character] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_raw_string] = ACTIONS(1806), + [sym_number] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_declare] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1816), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(1798), + [anon_sym_unset] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(1796), }, [658] = { - [aux_sym__literal_repeat1] = STATE(658), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [aux_sym__simple_variable_name_token1] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_variable_name] = ACTIONS(813), - [sym_file_descriptor] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(2606), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [sym_heredoc_body] = STATE(610), + [anon_sym_LPAREN] = ACTIONS(693), + [sym_word] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_esac] = ACTIONS(2141), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(701), + [anon_sym_GT_LPAREN] = ACTIONS(695), }, [659] = { - [sym_expansion] = STATE(577), - [sym_string_expansion] = STATE(577), - [sym_concatenation] = STATE(680), - [sym_string] = STATE(577), - [aux_sym__literal_repeat1] = STATE(580), - [sym_command_substitution] = STATE(577), - [sym_process_substitution] = STATE(577), - [sym_simple_expansion] = STATE(577), - [sym_arithmetic_expansion] = STATE(577), - [aux_sym_command_repeat2] = STATE(680), - [anon_sym_AMP_GT_GT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(2582), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2584), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(2586), - [sym_ansii_c_string] = ACTIONS(2588), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_LT_AMP] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_EQ_TILDE] = ACTIONS(2590), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_LT_LT_DASH] = ACTIONS(818), - [anon_sym_GT_LPAREN] = ACTIONS(2586), - [sym_number] = ACTIONS(2588), - [anon_sym_LF] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), - [sym_file_descriptor] = ACTIONS(820), - [sym_word] = ACTIONS(2588), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_AMP_GT] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(2590), - [sym__special_character] = ACTIONS(1816), - [anon_sym_LT_LT_LT] = ACTIONS(818), - [anon_sym_GT_AMP] = ACTIONS(818), - [anon_sym_esac] = ACTIONS(818), - [anon_sym_BQUOTE] = ACTIONS(2594), - [sym_raw_string] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_SEMI_SEMI] = ACTIONS(818), - [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(693), + [sym_word] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_esac] = ACTIONS(2141), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(701), + [anon_sym_GT_LPAREN] = ACTIONS(695), }, [660] = { - [sym_expansion] = STATE(577), - [sym_string_expansion] = STATE(577), - [sym_concatenation] = STATE(613), - [sym_string] = STATE(577), - [aux_sym__literal_repeat1] = STATE(580), - [sym_command_substitution] = STATE(577), - [sym_process_substitution] = STATE(577), - [sym_simple_expansion] = STATE(577), - [sym_arithmetic_expansion] = STATE(577), - [aux_sym_command_repeat2] = STATE(613), - [anon_sym_AMP_GT_GT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(2582), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2584), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(2586), - [sym_ansii_c_string] = ACTIONS(2588), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_LT_AMP] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_EQ_TILDE] = ACTIONS(2590), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_LT_LT_DASH] = ACTIONS(818), - [anon_sym_GT_LPAREN] = ACTIONS(2586), - [sym_number] = ACTIONS(2588), - [anon_sym_LF] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), - [sym_file_descriptor] = ACTIONS(820), - [sym_word] = ACTIONS(2588), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_AMP_GT] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(2590), - [sym__special_character] = ACTIONS(1816), - [anon_sym_LT_LT_LT] = ACTIONS(818), - [anon_sym_GT_AMP] = ACTIONS(818), - [anon_sym_esac] = ACTIONS(818), - [anon_sym_BQUOTE] = ACTIONS(2594), - [sym_raw_string] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_SEMI_SEMI] = ACTIONS(818), - [anon_sym_PIPE_AMP] = ACTIONS(818), + [sym_if_statement] = STATE(682), + [sym_function_definition] = STATE(682), + [sym_negated_command] = STATE(682), + [sym_test_command] = STATE(682), + [sym_variable_assignment] = STATE(683), + [sym_subscript] = STATE(2621), + [sym_arithmetic_expansion] = STATE(545), + [sym_string_expansion] = STATE(545), + [sym_expansion] = STATE(545), + [aux_sym__literal_repeat1] = STATE(551), + [sym_redirected_statement] = STATE(682), + [sym_for_statement] = STATE(682), + [sym_compound_statement] = STATE(682), + [sym_subshell] = STATE(682), + [sym_declaration_command] = STATE(682), + [sym_unset_command] = STATE(682), + [sym_file_redirect] = STATE(553), + [sym_concatenation] = STATE(552), + [sym_string] = STATE(545), + [sym_command_substitution] = STATE(545), + [sym_process_substitution] = STATE(545), + [aux_sym_command_repeat1] = STATE(553), + [sym_c_style_for_statement] = STATE(682), + [sym_while_statement] = STATE(682), + [sym_case_statement] = STATE(682), + [sym_pipeline] = STATE(682), + [sym_list] = STATE(682), + [sym_command] = STATE(682), + [sym_command_name] = STATE(649), + [sym_simple_expansion] = STATE(545), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(1798), + [anon_sym_typeset] = ACTIONS(1798), + [anon_sym_unsetenv] = ACTIONS(1800), + [sym__special_character] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_raw_string] = ACTIONS(1806), + [sym_number] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_declare] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1816), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(1798), + [anon_sym_unset] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(1796), }, [661] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [aux_sym__simple_variable_name_token1] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [sym_variable_name] = ACTIONS(933), - [sym_file_descriptor] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [ts_builtin_sym_end] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [sym_heredoc_redirect] = STATE(2802), + [sym_file_redirect] = STATE(2802), + [sym_herestring_redirect] = STATE(2802), + [aux_sym_redirected_statement_repeat1] = STATE(2802), + [anon_sym_PIPE_AMP] = ACTIONS(2365), + [anon_sym_AMP_GT_GT] = ACTIONS(2353), + [anon_sym_LF] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2610), + [sym_file_descriptor] = ACTIONS(2359), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(2353), + [anon_sym_AMP_GT] = ACTIONS(2353), + [anon_sym_PIPE_PIPE] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2610), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_GT_AMP] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_esac] = ACTIONS(2141), + [anon_sym_LT_AMP] = ACTIONS(2353), + [anon_sym_GT_GT] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_SEMI_SEMI] = ACTIONS(2141), + [anon_sym_LT_LT_DASH] = ACTIONS(459), }, [662] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [aux_sym__simple_variable_name_token1] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [sym_variable_name] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [ts_builtin_sym_end] = ACTIONS(969), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [sym_heredoc_redirect] = STATE(2802), + [sym_file_redirect] = STATE(2802), + [sym_herestring_redirect] = STATE(2802), + [aux_sym_redirected_statement_repeat1] = STATE(2802), + [anon_sym_PIPE_AMP] = ACTIONS(2365), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2610), + [anon_sym_PIPE] = ACTIONS(2365), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2610), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_esac] = ACTIONS(2141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_SEMI_SEMI] = ACTIONS(2141), + [sym_word] = ACTIONS(347), }, [663] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [664] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [aux_sym__simple_variable_name_token1] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [sym_variable_name] = ACTIONS(977), - [sym_file_descriptor] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_AMP_GT] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [ts_builtin_sym_end] = ACTIONS(977), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [aux_sym__literal_repeat1] = STATE(664), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(2612), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym_variable_name] = ACTIONS(822), + [aux_sym__simple_variable_name_token1] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [ts_builtin_sym_end] = ACTIONS(822), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [665] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_expansion] = STATE(582), + [sym_string_expansion] = STATE(582), + [sym_concatenation] = STATE(686), + [sym_string] = STATE(582), + [aux_sym__literal_repeat1] = STATE(585), + [sym_command_substitution] = STATE(582), + [sym_process_substitution] = STATE(582), + [sym_simple_expansion] = STATE(582), + [sym_arithmetic_expansion] = STATE(582), + [aux_sym_command_repeat2] = STATE(686), + [sym_word] = ACTIONS(2588), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [sym__special_character] = ACTIONS(1802), + [anon_sym_LT_LT] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_raw_string] = ACTIONS(2588), + [sym_number] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2594), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(2596), + [sym_ansii_c_string] = ACTIONS(2588), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(2598), + [sym_file_descriptor] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_esac] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(2596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2600), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_SEMI_SEMI] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), }, [666] = { - [sym_expansion] = STATE(665), - [sym_string_expansion] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_string] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [sym_arithmetic_expansion] = STATE(665), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(2609), - [sym_number] = ACTIONS(2611), - [sym__special_character] = ACTIONS(2613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2619), - [anon_sym_BQUOTE] = ACTIONS(2621), - [sym_raw_string] = ACTIONS(2613), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), - [sym_word] = ACTIONS(2611), - [anon_sym_LT_LPAREN] = ACTIONS(2609), - [anon_sym_DOLLAR] = ACTIONS(2623), - [sym_ansii_c_string] = ACTIONS(2613), + [sym_expansion] = STATE(582), + [sym_string_expansion] = STATE(582), + [sym_concatenation] = STATE(619), + [sym_string] = STATE(582), + [aux_sym__literal_repeat1] = STATE(585), + [sym_command_substitution] = STATE(582), + [sym_process_substitution] = STATE(582), + [sym_simple_expansion] = STATE(582), + [sym_arithmetic_expansion] = STATE(582), + [aux_sym_command_repeat2] = STATE(619), + [sym_word] = ACTIONS(2588), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [sym__special_character] = ACTIONS(1802), + [anon_sym_LT_LT] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_raw_string] = ACTIONS(2588), + [sym_number] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2594), + [anon_sym_LT_LT_DASH] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(2596), + [sym_ansii_c_string] = ACTIONS(2588), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(2598), + [sym_file_descriptor] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_LT_LT_LT] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [anon_sym_esac] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(2596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2600), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_SEMI_SEMI] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), }, [667] = { - [aux_sym_concatenation_repeat1] = STATE(667), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [668] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_expansion] = STATE(667), + [sym_string_expansion] = STATE(667), + [sym_simple_expansion] = STATE(667), + [sym_string] = STATE(667), + [sym_command_substitution] = STATE(667), + [sym_process_substitution] = STATE(667), + [sym_arithmetic_expansion] = STATE(667), + [sym_number] = ACTIONS(2615), + [sym_raw_string] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_LT_LPAREN] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2623), + [sym_ansii_c_string] = ACTIONS(2617), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym__special_character] = ACTIONS(2617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2625), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2627), + [anon_sym_BQUOTE] = ACTIONS(2629), + [sym_word] = ACTIONS(2615), }, [669] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [aux_sym__simple_variable_name_token1] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [sym_variable_name] = ACTIONS(1088), - [sym_file_descriptor] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_AMP_GT] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [ts_builtin_sym_end] = ACTIONS(1088), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(669), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [670] = { - [aux_sym_concatenation_repeat1] = STATE(564), - [anon_sym_AMP_GT_GT] = ACTIONS(1124), - [sym_number] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1124), - [sym_file_descriptor] = ACTIONS(1124), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1124), - [sym_variable_name] = ACTIONS(1124), - [sym__special_character] = ACTIONS(1124), - [sym__concat] = ACTIONS(383), - [anon_sym_GT_AMP] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [sym_raw_string] = ACTIONS(1124), - [anon_sym_BQUOTE] = ACTIONS(1124), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1120), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [671] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1124), - [sym_number] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1124), - [sym_file_descriptor] = ACTIONS(1124), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1124), - [sym_variable_name] = ACTIONS(1124), - [sym__special_character] = ACTIONS(1124), - [anon_sym_GT_AMP] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [sym_raw_string] = ACTIONS(1124), - [anon_sym_BQUOTE] = ACTIONS(1124), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1120), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym_variable_name] = ACTIONS(974), + [aux_sym__simple_variable_name_token1] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [ts_builtin_sym_end] = ACTIONS(974), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [672] = { - [aux_sym__literal_repeat1] = STATE(575), - [anon_sym_AMP_GT_GT] = ACTIONS(1128), - [sym_number] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1128), - [sym_file_descriptor] = ACTIONS(1128), - [sym_word] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1126), - [sym_ansii_c_string] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [sym_variable_name] = ACTIONS(1128), - [sym__special_character] = ACTIONS(389), - [anon_sym_GT_AMP] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1128), - [anon_sym_GT_GT] = ACTIONS(1128), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1126), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_variable_name] = ACTIONS(1004), + [aux_sym__simple_variable_name_token1] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [673] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [aux_sym_concatenation_repeat1] = STATE(564), + [anon_sym_AMP_GT_GT] = ACTIONS(1054), + [sym_ansii_c_string] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [anon_sym_LT_LPAREN] = ACTIONS(1054), + [sym__special_character] = ACTIONS(1054), + [sym_variable_name] = ACTIONS(1054), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1054), + [sym_number] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [sym__concat] = ACTIONS(387), + [anon_sym_GT_AMP] = ACTIONS(1054), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1054), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1054), + [anon_sym_GT_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1054), + [sym_word] = ACTIONS(1050), }, [674] = { - [sym_heredoc_redirect] = STATE(2796), - [sym_file_redirect] = STATE(2796), - [sym_herestring_redirect] = STATE(2796), - [aux_sym_redirected_statement_repeat1] = STATE(2796), - [anon_sym_AMP_GT_GT] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_AMP] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(1190), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(1190), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(1192), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_AMP_GT] = ACTIONS(1190), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_GT_AMP] = ACTIONS(1190), - [anon_sym_esac] = ACTIONS(1190), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI_SEMI] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1054), + [sym_ansii_c_string] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [anon_sym_LT_LPAREN] = ACTIONS(1054), + [sym__special_character] = ACTIONS(1054), + [sym_variable_name] = ACTIONS(1054), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1054), + [sym_number] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1054), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1054), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1054), + [anon_sym_GT_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1054), + [sym_word] = ACTIONS(1050), }, [675] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_SEMI_SEMI] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2228), + [aux_sym__literal_repeat1] = STATE(580), + [anon_sym_AMP_GT_GT] = ACTIONS(1060), + [sym_ansii_c_string] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [anon_sym_LT_LPAREN] = ACTIONS(1060), + [sym__special_character] = ACTIONS(391), + [sym_variable_name] = ACTIONS(1060), + [sym_file_descriptor] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_AMP_GT] = ACTIONS(1056), + [sym_raw_string] = ACTIONS(1060), + [anon_sym_BQUOTE] = ACTIONS(1060), + [sym_number] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_GT_AMP] = ACTIONS(1060), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_LT_AMP] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1060), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1060), + [anon_sym_GT_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1060), + [sym_word] = ACTIONS(1056), }, [676] = { - [sym_heredoc_redirect] = STATE(2796), - [sym_file_redirect] = STATE(2796), - [sym_herestring_redirect] = STATE(2796), - [aux_sym_redirected_statement_repeat1] = STATE(2796), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [anon_sym_AMP_GT_GT] = ACTIONS(1220), - [anon_sym_LF] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_LT_LT] = ACTIONS(1220), - [sym_file_descriptor] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_GT_AMP] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_esac] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_LT_AMP] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(2359), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_variable_name] = ACTIONS(1084), + [aux_sym__simple_variable_name_token1] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [677] = { - [sym_heredoc_redirect] = STATE(2796), - [sym_file_redirect] = STATE(2796), - [sym_herestring_redirect] = STATE(2796), - [aux_sym_redirected_statement_repeat1] = STATE(2796), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(1222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(1220), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(343), - [anon_sym_esac] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(2359), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [678] = { - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [anon_sym_esac] = ACTIONS(2224), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(1210), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1132), + [aux_sym__simple_variable_name_token1] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [ts_builtin_sym_end] = ACTIONS(1132), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [679] = { - [sym_heredoc_body] = STATE(624), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(996), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [anon_sym_esac] = ACTIONS(2224), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(1210), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1154), + [aux_sym__simple_variable_name_token1] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(1154), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [680] = { - [sym_expansion] = STATE(577), - [sym_string_expansion] = STATE(577), - [sym_concatenation] = STATE(613), - [sym_string] = STATE(577), - [aux_sym__literal_repeat1] = STATE(580), - [sym_command_substitution] = STATE(577), - [sym_process_substitution] = STATE(577), - [sym_simple_expansion] = STATE(577), - [sym_arithmetic_expansion] = STATE(577), - [aux_sym_command_repeat2] = STATE(613), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(2582), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2584), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [anon_sym_LT_LPAREN] = ACTIONS(2586), - [sym_ansii_c_string] = ACTIONS(2588), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(2590), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(2586), - [sym_number] = ACTIONS(2588), - [anon_sym_LF] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2592), - [sym_file_descriptor] = ACTIONS(1254), - [sym_word] = ACTIONS(2588), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(2590), - [sym__special_character] = ACTIONS(1816), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_esac] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(2594), - [sym_raw_string] = ACTIONS(2588), + [sym_heredoc_redirect] = STATE(2802), + [sym_file_redirect] = STATE(2802), + [sym_herestring_redirect] = STATE(2802), + [aux_sym_redirected_statement_repeat1] = STATE(2802), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_esac] = ACTIONS(1196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), }, [681] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [aux_sym__simple_variable_name_token1] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_variable_name] = ACTIONS(1298), - [sym_file_descriptor] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [sym_comment] = ACTIONS(3), }, [682] = { - [sym_string] = STATE(650), - [anon_sym_0] = ACTIONS(2628), - [anon_sym_AT] = ACTIONS(2628), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(2630), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(2628), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym__] = ACTIONS(2628), - [anon_sym_DOLLAR] = ACTIONS(2630), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2630), - [sym_variable_name] = ACTIONS(1312), - [sym_file_descriptor] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_AMP_GT] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [sym_heredoc_redirect] = STATE(2802), + [sym_file_redirect] = STATE(2802), + [sym_herestring_redirect] = STATE(2802), + [aux_sym_redirected_statement_repeat1] = STATE(2802), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_AMP_GT_GT] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LT_LT] = ACTIONS(1226), + [sym_file_descriptor] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_AMP_GT] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(2365), + [anon_sym_GT_AMP] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_esac] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1226), + [anon_sym_LT_AMP] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(2365), }, [683] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [aux_sym__simple_variable_name_token1] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [sym_variable_name] = ACTIONS(1358), - [sym_file_descriptor] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [ts_builtin_sym_end] = ACTIONS(1358), + [sym_heredoc_redirect] = STATE(2802), + [sym_file_redirect] = STATE(2802), + [sym_herestring_redirect] = STATE(2802), + [aux_sym_redirected_statement_repeat1] = STATE(2802), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(2365), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_esac] = ACTIONS(1226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(2365), }, [684] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [aux_sym__simple_variable_name_token1] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [sym_variable_name] = ACTIONS(1412), - [sym_file_descriptor] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_AMP_GT] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_SEMI_SEMI] = ACTIONS(1218), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_esac] = ACTIONS(2230), + [sym_word] = ACTIONS(693), }, [685] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [aux_sym__simple_variable_name_token1] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [sym_variable_name] = ACTIONS(1430), - [sym_file_descriptor] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [sym_heredoc_body] = STATE(630), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_SEMI_SEMI] = ACTIONS(1218), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_esac] = ACTIONS(2230), + [sym_word] = ACTIONS(693), }, [686] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1440), - [sym_number] = ACTIONS(1438), - [anon_sym_GT_LPAREN] = ACTIONS(1440), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1440), - [sym_file_descriptor] = ACTIONS(1440), - [sym_word] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), - [anon_sym_AMP_GT] = ACTIONS(1438), - [sym_ansii_c_string] = ACTIONS(1440), - [anon_sym_LT_LPAREN] = ACTIONS(1440), - [sym_variable_name] = ACTIONS(1440), - [sym__special_character] = ACTIONS(1440), - [anon_sym_GT_AMP] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LT_AMP] = ACTIONS(1440), - [anon_sym_GT_GT] = ACTIONS(1440), - [sym_raw_string] = ACTIONS(1440), - [anon_sym_BQUOTE] = ACTIONS(1440), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1438), + [sym_expansion] = STATE(582), + [sym_string_expansion] = STATE(582), + [sym_concatenation] = STATE(619), + [sym_string] = STATE(582), + [aux_sym__literal_repeat1] = STATE(585), + [sym_command_substitution] = STATE(582), + [sym_process_substitution] = STATE(582), + [sym_simple_expansion] = STATE(582), + [sym_arithmetic_expansion] = STATE(582), + [aux_sym_command_repeat2] = STATE(619), + [sym_word] = ACTIONS(2588), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [sym__special_character] = ACTIONS(1802), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_raw_string] = ACTIONS(2588), + [sym_number] = ACTIONS(2588), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_EQ_TILDE] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2594), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(2596), + [sym_ansii_c_string] = ACTIONS(2588), + [anon_sym_LF] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(2598), + [sym_file_descriptor] = ACTIONS(1260), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_AMP_GT] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_GT_AMP] = ACTIONS(1258), + [anon_sym_esac] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(2596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2600), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_SEMI_SEMI] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1258), }, [687] = { - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_typeset] = ACTIONS(1520), - [anon_sym_unsetenv] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1522), - [sym_ansii_c_string] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), - [sym_number] = ACTIONS(1520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_declare] = ACTIONS(1520), - [anon_sym_GT_LPAREN] = ACTIONS(1522), - [sym_file_descriptor] = ACTIONS(1522), - [sym_word] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), - [sym_variable_name] = ACTIONS(1522), - [anon_sym_AMP_GT] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_unset] = ACTIONS(1520), - [sym__special_character] = ACTIONS(1520), - [anon_sym_GT_AMP] = ACTIONS(1522), - [anon_sym_esac] = ACTIONS(2294), - [anon_sym_BQUOTE] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [sym_raw_string] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), - [anon_sym_SEMI_SEMI] = ACTIONS(1524), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(656), + [sym_word] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(2634), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(2634), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(2638), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2634), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(2634), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(2636), + [sym_variable_name] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(2634), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2634), + [anon_sym_DOLLAR] = ACTIONS(2636), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [688] = { + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_SEMI_SEMI] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_variable_name] = ACTIONS(1360), + [aux_sym__simple_variable_name_token1] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), }, [689] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [aux_sym__simple_variable_name_token1] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [sym_variable_name] = ACTIONS(1661), - [sym_file_descriptor] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [ts_builtin_sym_end] = ACTIONS(1661), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [anon_sym_AMP_GT_GT] = ACTIONS(1370), + [sym_ansii_c_string] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_LT_LPAREN] = ACTIONS(1370), + [sym__special_character] = ACTIONS(1370), + [sym_variable_name] = ACTIONS(1370), + [sym_file_descriptor] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_number] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1370), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1370), + [sym_word] = ACTIONS(1368), }, [690] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [aux_sym__simple_variable_name_token1] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [sym_variable_name] = ACTIONS(1673), - [sym_file_descriptor] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_AMP_GT] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [ts_builtin_sym_end] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_variable_name] = ACTIONS(1428), + [aux_sym__simple_variable_name_token1] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), }, [691] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [aux_sym__simple_variable_name_token1] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [sym_variable_name] = ACTIONS(1683), - [sym_file_descriptor] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_variable_name] = ACTIONS(1476), + [aux_sym__simple_variable_name_token1] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [ts_builtin_sym_end] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [692] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [aux_sym__simple_variable_name_token1] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [sym_variable_name] = ACTIONS(1687), - [sym_file_descriptor] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_AMP_GT] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_variable_name] = ACTIONS(1488), + [aux_sym__simple_variable_name_token1] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [ts_builtin_sym_end] = ACTIONS(1488), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [693] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1693), - [sym_number] = ACTIONS(1691), - [anon_sym_GT_LPAREN] = ACTIONS(1693), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1693), - [sym_file_descriptor] = ACTIONS(1693), - [sym_word] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), - [anon_sym_AMP_GT] = ACTIONS(1691), - [sym_ansii_c_string] = ACTIONS(1693), - [anon_sym_LT_LPAREN] = ACTIONS(1693), - [sym_variable_name] = ACTIONS(1693), - [sym__special_character] = ACTIONS(1693), - [anon_sym_GT_AMP] = ACTIONS(1693), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_LT_AMP] = ACTIONS(1693), - [anon_sym_GT_GT] = ACTIONS(1693), - [sym_raw_string] = ACTIONS(1693), - [anon_sym_BQUOTE] = ACTIONS(1693), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1526), + [sym_word] = ACTIONS(1526), + [anon_sym_AMP_GT_GT] = ACTIONS(1528), + [anon_sym_local] = ACTIONS(1526), + [anon_sym_typeset] = ACTIONS(1526), + [anon_sym_unsetenv] = ACTIONS(1526), + [sym__special_character] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1528), + [sym_raw_string] = ACTIONS(1528), + [sym_number] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_LT_AMP] = ACTIONS(1528), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_ansii_c_string] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_declare] = ACTIONS(1526), + [anon_sym_LT_LPAREN] = ACTIONS(1528), + [sym_file_descriptor] = ACTIONS(1528), + [sym_variable_name] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_AMP_GT] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_unset] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_GT_AMP] = ACTIONS(1528), + [anon_sym_esac] = ACTIONS(2300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_SEMI_SEMI] = ACTIONS(1530), + [anon_sym_GT_LPAREN] = ACTIONS(1528), }, [694] = { - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_typeset] = ACTIONS(1520), - [anon_sym_unsetenv] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), - [anon_sym_LT_LPAREN] = ACTIONS(1522), - [sym_ansii_c_string] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1522), - [sym_number] = ACTIONS(1520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_declare] = ACTIONS(1520), - [anon_sym_GT_LPAREN] = ACTIONS(1522), - [sym_file_descriptor] = ACTIONS(1522), - [sym_word] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), - [sym_variable_name] = ACTIONS(1522), - [anon_sym_AMP_GT] = ACTIONS(1520), - [anon_sym_readonly] = ACTIONS(1520), - [anon_sym_unset] = ACTIONS(1520), - [sym__special_character] = ACTIONS(1520), - [anon_sym_GT_AMP] = ACTIONS(1522), - [anon_sym_esac] = ACTIONS(2634), - [anon_sym_BQUOTE] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [sym_raw_string] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), - [anon_sym_SEMI_SEMI] = ACTIONS(1766), - [sym_comment] = ACTIONS(53), + [anon_sym_AMP] = ACTIONS(2302), + [anon_sym_LF] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_SEMI_SEMI] = ACTIONS(2300), + [sym_comment] = ACTIONS(3), }, [695] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [aux_sym__simple_variable_name_token1] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [sym_variable_name] = ACTIONS(1870), - [sym_file_descriptor] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [anon_sym_AMP_GT_GT] = ACTIONS(1667), + [sym_ansii_c_string] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [anon_sym_LT_LPAREN] = ACTIONS(1667), + [sym__special_character] = ACTIONS(1667), + [sym_variable_name] = ACTIONS(1667), + [sym_file_descriptor] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_AMP_GT] = ACTIONS(1665), + [sym_raw_string] = ACTIONS(1667), + [anon_sym_BQUOTE] = ACTIONS(1667), + [sym_number] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_GT_AMP] = ACTIONS(1667), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_LT_AMP] = ACTIONS(1667), + [anon_sym_GT_GT] = ACTIONS(1667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1667), + [anon_sym_GT_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1667), + [sym_word] = ACTIONS(1665), }, [696] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [aux_sym__simple_variable_name_token1] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [sym_variable_name] = ACTIONS(1876), - [sym_file_descriptor] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [ts_builtin_sym_end] = ACTIONS(1876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym_variable_name] = ACTIONS(1721), + [aux_sym__simple_variable_name_token1] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(1721), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [697] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [aux_sym__simple_variable_name_token1] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [sym_variable_name] = ACTIONS(1880), - [sym_file_descriptor] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [ts_builtin_sym_end] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_variable_name] = ACTIONS(1727), + [aux_sym__simple_variable_name_token1] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [ts_builtin_sym_end] = ACTIONS(1727), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [698] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [aux_sym__simple_variable_name_token1] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym_variable_name] = ACTIONS(1737), + [aux_sym__simple_variable_name_token1] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [ts_builtin_sym_end] = ACTIONS(1737), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [699] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [aux_sym__simple_variable_name_token1] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [sym_variable_name] = ACTIONS(1959), - [sym_file_descriptor] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_AMP_GT] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym_variable_name] = ACTIONS(1749), + [aux_sym__simple_variable_name_token1] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [ts_builtin_sym_end] = ACTIONS(1749), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [700] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [aux_sym__simple_variable_name_token1] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [sym_variable_name] = ACTIONS(1963), - [sym_file_descriptor] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_AMP_GT] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [ts_builtin_sym_end] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_SEMI_SEMI] = ACTIONS(1772), + [anon_sym_AMP_GT_GT] = ACTIONS(1528), + [anon_sym_local] = ACTIONS(1526), + [anon_sym_typeset] = ACTIONS(1526), + [anon_sym_unsetenv] = ACTIONS(1526), + [sym__special_character] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1528), + [sym_raw_string] = ACTIONS(1528), + [sym_number] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_LT_AMP] = ACTIONS(1528), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_ansii_c_string] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_declare] = ACTIONS(1526), + [anon_sym_LT_LPAREN] = ACTIONS(1528), + [sym_file_descriptor] = ACTIONS(1528), + [sym_variable_name] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_AMP_GT] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_unset] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_GT_AMP] = ACTIONS(1528), + [anon_sym_GT_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_esac] = ACTIONS(2640), + [sym_word] = ACTIONS(1526), }, [701] = { - [aux_sym_concatenation_repeat1] = STATE(704), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [ts_builtin_sym_end] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1892), + [aux_sym__simple_variable_name_token1] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [702] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(2580), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(2089), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_SEMI_SEMI] = ACTIONS(2093), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_variable_name] = ACTIONS(1896), + [aux_sym__simple_variable_name_token1] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1896), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [703] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [aux_sym__simple_variable_name_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [sym_file_descriptor] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [ts_builtin_sym_end] = ACTIONS(441), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym_variable_name] = ACTIONS(1902), + [aux_sym__simple_variable_name_token1] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1902), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [704] = { - [aux_sym_concatenation_repeat1] = STATE(718), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(475), - [aux_sym__simple_variable_name_token1] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [ts_builtin_sym_end] = ACTIONS(479), + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_variable_name] = ACTIONS(1908), + [aux_sym__simple_variable_name_token1] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1908), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [705] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [aux_sym__simple_variable_name_token1] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [sym_file_descriptor] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_AMP_GT] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [ts_builtin_sym_end] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_variable_name] = ACTIONS(1973), + [aux_sym__simple_variable_name_token1] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [ts_builtin_sym_end] = ACTIONS(1973), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [706] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [aux_sym__simple_variable_name_token1] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [sym_file_descriptor] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_AMP_GT] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [ts_builtin_sym_end] = ACTIONS(511), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym_variable_name] = ACTIONS(1977), + [aux_sym__simple_variable_name_token1] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [ts_builtin_sym_end] = ACTIONS(1977), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [707] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [aux_sym__simple_variable_name_token1] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_AMP_GT] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [ts_builtin_sym_end] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [aux_sym_concatenation_repeat1] = STATE(709), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [708] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_PIPE_AMP] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LF] = ACTIONS(2638), - [anon_sym_SEMI] = ACTIONS(2133), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_SEMI_SEMI] = ACTIONS(2135), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [sym_word] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2095), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(2099), + [anon_sym_PIPE_AMP] = ACTIONS(449), }, [709] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(2638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(2133), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_SEMI_SEMI] = ACTIONS(2135), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [aux_sym_concatenation_repeat1] = STATE(720), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(2642), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [aux_sym__simple_variable_name_token1] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [ts_builtin_sym_end] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [710] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [ts_builtin_sym_end] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [aux_sym__simple_variable_name_token1] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [ts_builtin_sym_end] = ACTIONS(527), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [711] = { - [aux_sym__literal_repeat1] = STATE(711), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [aux_sym__simple_variable_name_token1] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(2640), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [aux_sym__simple_variable_name_token1] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [ts_builtin_sym_end] = ACTIONS(587), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [712] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [aux_sym__simple_variable_name_token1] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [sym_file_descriptor] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [ts_builtin_sym_end] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [sym_word] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym__simple_variable_name_token1] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [ts_builtin_sym_end] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [713] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [aux_sym__simple_variable_name_token1] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [sym_file_descriptor] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [ts_builtin_sym_end] = ACTIONS(969), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [aux_sym__simple_variable_name_token1] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [ts_builtin_sym_end] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [714] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_PIPE_AMP] = ACTIONS(449), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2139), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_AMP_GT] = ACTIONS(451), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(2141), + [anon_sym_LT_LT_DASH] = ACTIONS(459), }, [715] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [aux_sym__simple_variable_name_token1] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [sym_file_descriptor] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_AMP_GT] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [ts_builtin_sym_end] = ACTIONS(977), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_PIPE_AMP] = ACTIONS(449), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2139), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(2141), + [sym_word] = ACTIONS(347), }, [716] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [717] = { - [sym_expansion] = STATE(716), - [sym_string_expansion] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_string] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [sym_arithmetic_expansion] = STATE(716), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(2643), - [sym_number] = ACTIONS(2645), - [sym__special_character] = ACTIONS(2647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2653), - [anon_sym_BQUOTE] = ACTIONS(2655), - [sym_raw_string] = ACTIONS(2647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), - [sym_word] = ACTIONS(2645), - [anon_sym_LT_LPAREN] = ACTIONS(2643), - [anon_sym_DOLLAR] = ACTIONS(2657), - [sym_ansii_c_string] = ACTIONS(2647), + [aux_sym__literal_repeat1] = STATE(717), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(2646), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [aux_sym__simple_variable_name_token1] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [ts_builtin_sym_end] = ACTIONS(822), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [718] = { - [aux_sym_concatenation_repeat1] = STATE(718), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [719] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_expansion] = STATE(718), + [sym_string_expansion] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_string] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [sym_arithmetic_expansion] = STATE(718), + [sym_number] = ACTIONS(2649), + [sym_raw_string] = ACTIONS(2651), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_LT_LPAREN] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_ansii_c_string] = ACTIONS(2651), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(181), + [sym__special_character] = ACTIONS(2651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2661), + [anon_sym_BQUOTE] = ACTIONS(2663), + [sym_word] = ACTIONS(2649), }, [720] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [aux_sym__simple_variable_name_token1] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [sym_file_descriptor] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_AMP_GT] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [ts_builtin_sym_end] = ACTIONS(1088), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(720), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(2665), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [721] = { - [aux_sym_concatenation_repeat1] = STATE(858), - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [sym__concat] = ACTIONS(2113), - [anon_sym_PIPE] = ACTIONS(1120), - [aux_sym__simple_variable_name_token1] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), - [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1120), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_GT_AMP] = ACTIONS(1120), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [722] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1120), - [aux_sym__simple_variable_name_token1] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), - [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1120), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [sym_file_descriptor] = ACTIONS(1124), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_GT_AMP] = ACTIONS(1120), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [aux_sym__simple_variable_name_token1] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [ts_builtin_sym_end] = ACTIONS(974), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [723] = { - [aux_sym__literal_repeat1] = STATE(863), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [sym_ansii_c_string] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [aux_sym__simple_variable_name_token1] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(1126), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_number] = ACTIONS(1126), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1126), - [sym_word] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), - [sym_file_descriptor] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1126), - [sym__special_character] = ACTIONS(2115), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1126), - [sym_raw_string] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [aux_sym__simple_variable_name_token1] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [724] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [aux_sym_concatenation_repeat1] = STATE(863), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [sym__concat] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1050), + [aux_sym__simple_variable_name_token1] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1050), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), }, [725] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [aux_sym__simple_variable_name_token1] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1050), + [aux_sym__simple_variable_name_token1] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1050), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), }, [726] = { - [sym_string] = STATE(707), - [anon_sym_0] = ACTIONS(2662), - [anon_sym_AT] = ACTIONS(2662), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2664), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(2664), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym__] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2664), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2664), - [sym_file_descriptor] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(2662), - [anon_sym_AMP_GT] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [aux_sym__literal_repeat1] = STATE(869), + [sym_word] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1056), + [sym__special_character] = ACTIONS(2121), + [anon_sym_LT_LT] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [sym_raw_string] = ACTIONS(1056), + [sym_number] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_LT_AMP] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(1056), + [anon_sym_LT_LPAREN] = ACTIONS(1056), + [sym_ansii_c_string] = ACTIONS(1056), + [anon_sym_LF] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_variable_name] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1056), + [aux_sym__simple_variable_name_token1] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1056), + [sym_file_descriptor] = ACTIONS(1060), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_LT_LT_LT] = ACTIONS(1056), + [anon_sym_GT_AMP] = ACTIONS(1056), + [anon_sym_GT_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_SEMI_SEMI] = ACTIONS(1056), + [anon_sym_PIPE_AMP] = ACTIONS(1056), }, [727] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [aux_sym__simple_variable_name_token1] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [aux_sym__simple_variable_name_token1] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [728] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [aux_sym__simple_variable_name_token1] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [sym_file_descriptor] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_AMP_GT] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [729] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [aux_sym__simple_variable_name_token1] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [aux_sym__simple_variable_name_token1] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [ts_builtin_sym_end] = ACTIONS(1132), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [730] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LPAREN] = ACTIONS(1438), - [sym_ansii_c_string] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [aux_sym__simple_variable_name_token1] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LT_AMP] = ACTIONS(1438), - [anon_sym_GT_GT] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1438), - [anon_sym_LT_LT_DASH] = ACTIONS(1438), - [anon_sym_GT_LPAREN] = ACTIONS(1438), - [sym_number] = ACTIONS(1438), - [anon_sym_LF] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), - [sym_variable_name] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1438), - [sym_word] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [sym_file_descriptor] = ACTIONS(1440), - [anon_sym_AMP_GT] = ACTIONS(1438), - [sym__special_character] = ACTIONS(1438), - [anon_sym_LT_LT_LT] = ACTIONS(1438), - [anon_sym_GT_AMP] = ACTIONS(1438), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_raw_string] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI_SEMI] = ACTIONS(1438), - [anon_sym_PIPE_AMP] = ACTIONS(1438), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [aux_sym__simple_variable_name_token1] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(1154), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [731] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [aux_sym__simple_variable_name_token1] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [sym_file_descriptor] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [ts_builtin_sym_end] = ACTIONS(1661), + [sym_string] = STATE(713), + [sym_word] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(2668), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(2668), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(2672), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2670), + [aux_sym__simple_variable_name_token1] = ACTIONS(2668), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2668), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [732] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [aux_sym__simple_variable_name_token1] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [sym_file_descriptor] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_AMP_GT] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [ts_builtin_sym_end] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [aux_sym__simple_variable_name_token1] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), }, [733] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [aux_sym__simple_variable_name_token1] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [sym_file_descriptor] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), + [sym_word] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1368), + [sym_number] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [sym_ansii_c_string] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_variable_name] = ACTIONS(1370), + [anon_sym_RPAREN] = ACTIONS(1368), + [aux_sym__simple_variable_name_token1] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [sym_file_descriptor] = ACTIONS(1370), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), }, [734] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [aux_sym__simple_variable_name_token1] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [sym_file_descriptor] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_AMP_GT] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [aux_sym__simple_variable_name_token1] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), }, [735] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LPAREN] = ACTIONS(1691), - [sym_ansii_c_string] = ACTIONS(1691), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [aux_sym__simple_variable_name_token1] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_LT_AMP] = ACTIONS(1691), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_LT_LT_DASH] = ACTIONS(1691), - [anon_sym_GT_LPAREN] = ACTIONS(1691), - [sym_number] = ACTIONS(1691), - [anon_sym_LF] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), - [sym_variable_name] = ACTIONS(1693), - [anon_sym_RPAREN] = ACTIONS(1691), - [sym_word] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1691), - [sym_file_descriptor] = ACTIONS(1693), - [anon_sym_AMP_GT] = ACTIONS(1691), - [sym__special_character] = ACTIONS(1691), - [anon_sym_LT_LT_LT] = ACTIONS(1691), - [anon_sym_GT_AMP] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1691), - [sym_raw_string] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI_SEMI] = ACTIONS(1691), - [anon_sym_PIPE_AMP] = ACTIONS(1691), + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [aux_sym__simple_variable_name_token1] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [ts_builtin_sym_end] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [736] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [aux_sym__simple_variable_name_token1] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [sym_file_descriptor] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [aux_sym__simple_variable_name_token1] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [ts_builtin_sym_end] = ACTIONS(1488), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [737] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [aux_sym__simple_variable_name_token1] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [ts_builtin_sym_end] = ACTIONS(1876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [sym_word] = ACTIONS(1665), + [anon_sym_AMP_GT_GT] = ACTIONS(1665), + [sym__special_character] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_raw_string] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_LT_AMP] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1665), + [anon_sym_LT_LT_DASH] = ACTIONS(1665), + [anon_sym_LT_LPAREN] = ACTIONS(1665), + [sym_ansii_c_string] = ACTIONS(1665), + [anon_sym_LF] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_variable_name] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1665), + [aux_sym__simple_variable_name_token1] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1665), + [sym_file_descriptor] = ACTIONS(1667), + [anon_sym_AMP_GT] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_LT_LT_LT] = ACTIONS(1665), + [anon_sym_GT_AMP] = ACTIONS(1665), + [anon_sym_GT_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_SEMI_SEMI] = ACTIONS(1665), + [anon_sym_PIPE_AMP] = ACTIONS(1665), }, [738] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [aux_sym__simple_variable_name_token1] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [ts_builtin_sym_end] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [aux_sym__simple_variable_name_token1] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(1721), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [739] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [aux_sym__simple_variable_name_token1] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [aux_sym__simple_variable_name_token1] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [ts_builtin_sym_end] = ACTIONS(1727), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [740] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [aux_sym__simple_variable_name_token1] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [sym_file_descriptor] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_AMP_GT] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [aux_sym__simple_variable_name_token1] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [ts_builtin_sym_end] = ACTIONS(1737), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [741] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [aux_sym__simple_variable_name_token1] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [sym_file_descriptor] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_AMP_GT] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [ts_builtin_sym_end] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [aux_sym__simple_variable_name_token1] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [ts_builtin_sym_end] = ACTIONS(1749), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [742] = { - [aux_sym_concatenation_repeat1] = STATE(744), - [anon_sym_PLUS_EQ] = ACTIONS(287), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_RPAREN_RPAREN] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_RBRACK_RBRACK] = ACTIONS(287), - [sym__concat] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_EQ_TILDE] = ACTIONS(287), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_LT_EQ] = ACTIONS(287), - [anon_sym_DASH_EQ] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(287), - [sym__special_character] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(287), - [sym_test_operator] = ACTIONS(287), + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [aux_sym__simple_variable_name_token1] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [743] = { - [anon_sym_PLUS_EQ] = ACTIONS(441), - [anon_sym_PLUS_PLUS] = ACTIONS(441), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_RPAREN_RPAREN] = ACTIONS(441), - [anon_sym_PIPE_PIPE] = ACTIONS(441), - [anon_sym_RBRACK_RBRACK] = ACTIONS(441), - [sym__concat] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_EQ_TILDE] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(441), - [anon_sym_LT_EQ] = ACTIONS(441), - [anon_sym_DASH_EQ] = ACTIONS(441), - [anon_sym_BANG_EQ] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ] = ACTIONS(441), - [anon_sym_GT_EQ] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(439), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(441), - [sym_test_operator] = ACTIONS(441), + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [aux_sym__simple_variable_name_token1] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1896), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [744] = { - [aux_sym_concatenation_repeat1] = STATE(756), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_RPAREN_RPAREN] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_RBRACK_RBRACK] = ACTIONS(479), - [sym__concat] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(479), - [anon_sym_EQ_TILDE] = ACTIONS(479), - [anon_sym_DASH_DASH] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_RPAREN] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_EQ] = ACTIONS(475), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_PLUS] = ACTIONS(475), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(479), - [sym_test_operator] = ACTIONS(479), + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [aux_sym__simple_variable_name_token1] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1902), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [745] = { - [sym__concat] = ACTIONS(507), - [sym__string_content] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_BQUOTE] = ACTIONS(505), + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [aux_sym__simple_variable_name_token1] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1908), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [746] = { - [sym__concat] = ACTIONS(511), - [sym__string_content] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [aux_sym__simple_variable_name_token1] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [ts_builtin_sym_end] = ACTIONS(1973), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [747] = { - [anon_sym_PLUS_EQ] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(513), - [anon_sym_RPAREN_RPAREN] = ACTIONS(515), - [anon_sym_PIPE_PIPE] = ACTIONS(515), - [anon_sym_RBRACK_RBRACK] = ACTIONS(515), - [sym__concat] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_EQ_TILDE] = ACTIONS(515), - [anon_sym_DASH_DASH] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(515), - [anon_sym_DASH_EQ] = ACTIONS(515), - [anon_sym_BANG_EQ] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(515), - [anon_sym_GT_EQ] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(513), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(515), - [sym_test_operator] = ACTIONS(515), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [aux_sym__simple_variable_name_token1] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [ts_builtin_sym_end] = ACTIONS(1977), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [748] = { - [anon_sym_PLUS_EQ] = ACTIONS(287), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_RPAREN_RPAREN] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_RBRACK_RBRACK] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_EQ_TILDE] = ACTIONS(287), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_LT_EQ] = ACTIONS(287), - [anon_sym_DASH_EQ] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(287), - [sym__special_character] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(287), - [sym_test_operator] = ACTIONS(287), + [aux_sym_concatenation_repeat1] = STATE(749), + [anon_sym_PLUS_EQ] = ACTIONS(189), + [sym__special_character] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_RPAREN_RPAREN] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_RBRACK_RBRACK] = ACTIONS(189), + [sym__concat] = ACTIONS(471), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_DASH_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(189), + [sym_test_operator] = ACTIONS(189), }, [749] = { - [aux_sym__literal_repeat1] = STATE(749), - [anon_sym_PLUS_EQ] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_RPAREN_RPAREN] = ACTIONS(813), - [anon_sym_PIPE_PIPE] = ACTIONS(813), - [anon_sym_RBRACK_RBRACK] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_EQ_TILDE] = ACTIONS(813), - [anon_sym_DASH_DASH] = ACTIONS(813), - [anon_sym_LT_EQ] = ACTIONS(813), - [anon_sym_DASH_EQ] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(813), - [anon_sym_GT_EQ] = ACTIONS(813), - [sym__special_character] = ACTIONS(2670), - [anon_sym_PLUS] = ACTIONS(811), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(813), - [sym_test_operator] = ACTIONS(813), + [aux_sym_concatenation_repeat1] = STATE(758), + [anon_sym_PLUS_EQ] = ACTIONS(439), + [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_RPAREN_RPAREN] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [anon_sym_RBRACK_RBRACK] = ACTIONS(439), + [sym__concat] = ACTIONS(2674), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_EQ_TILDE] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(439), + [anon_sym_LT_EQ] = ACTIONS(439), + [anon_sym_DASH_EQ] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(439), + [sym_test_operator] = ACTIONS(439), }, [750] = { - [anon_sym_PLUS_EQ] = ACTIONS(933), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_RPAREN_RPAREN] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [anon_sym_RBRACK_RBRACK] = ACTIONS(933), - [sym__concat] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_EQ_TILDE] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_LT_EQ] = ACTIONS(933), - [anon_sym_DASH_EQ] = ACTIONS(933), - [anon_sym_BANG_EQ] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(933), - [anon_sym_GT_EQ] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(931), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(933), - [sym_test_operator] = ACTIONS(933), + [anon_sym_PLUS_EQ] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_RPAREN_RPAREN] = ACTIONS(527), + [anon_sym_PIPE_PIPE] = ACTIONS(527), + [anon_sym_RBRACK_RBRACK] = ACTIONS(527), + [sym__concat] = ACTIONS(527), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(527), + [anon_sym_EQ_TILDE] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_LT_EQ] = ACTIONS(527), + [anon_sym_DASH_EQ] = ACTIONS(527), + [anon_sym_BANG_EQ] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(525), + [anon_sym_EQ_EQ] = ACTIONS(527), + [anon_sym_GT_EQ] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(527), + [sym_test_operator] = ACTIONS(527), }, [751] = { - [sym__concat] = ACTIONS(969), - [sym__string_content] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_DASH] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_RPAREN_RPAREN] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_RBRACK_RBRACK] = ACTIONS(587), + [sym__concat] = ACTIONS(587), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(587), + [anon_sym_EQ_TILDE] = ACTIONS(587), + [anon_sym_PLUS_PLUS] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(587), + [sym_test_operator] = ACTIONS(587), }, [752] = { - [sym__concat] = ACTIONS(973), - [sym__string_content] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(591), + [anon_sym_DASH_DASH] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_RPAREN_RPAREN] = ACTIONS(591), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_RBRACK_RBRACK] = ACTIONS(591), + [sym__concat] = ACTIONS(591), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_EQ_TILDE] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(591), + [anon_sym_LT_EQ] = ACTIONS(591), + [anon_sym_DASH_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_GT_EQ] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(591), + [sym_test_operator] = ACTIONS(591), }, [753] = { - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_RPAREN_RPAREN] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_RBRACK_RBRACK] = ACTIONS(977), - [sym__concat] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_EQ_TILDE] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(977), - [sym_test_operator] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_RPAREN_RPAREN] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_RBRACK_RBRACK] = ACTIONS(595), + [sym__concat] = ACTIONS(595), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(595), + [anon_sym_EQ_TILDE] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [sym_test_operator] = ACTIONS(595), }, [754] = { - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_RPAREN_RPAREN] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_RBRACK_RBRACK] = ACTIONS(981), - [sym__concat] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_EQ_TILDE] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(979), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(981), - [sym_test_operator] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(189), + [sym__special_character] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_RPAREN_RPAREN] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_RBRACK_RBRACK] = ACTIONS(189), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_DASH_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(189), + [sym_test_operator] = ACTIONS(189), }, [755] = { - [sym_expansion] = STATE(754), - [sym_string] = STATE(754), - [sym_command_substitution] = STATE(754), - [sym_process_substitution] = STATE(754), - [sym_simple_expansion] = STATE(754), - [sym_arithmetic_expansion] = STATE(754), - [sym_string_expansion] = STATE(754), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(2673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(2673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(2675), - [sym__special_character] = ACTIONS(2675), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), + [aux_sym__literal_repeat1] = STATE(755), + [anon_sym_PLUS_EQ] = ACTIONS(822), + [sym__special_character] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(822), + [anon_sym_LT_LT] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_RPAREN_RPAREN] = ACTIONS(822), + [anon_sym_PIPE_PIPE] = ACTIONS(822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(822), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_EQ_TILDE] = ACTIONS(822), + [anon_sym_PLUS_PLUS] = ACTIONS(822), + [anon_sym_LT_EQ] = ACTIONS(822), + [anon_sym_DASH_EQ] = ACTIONS(822), + [anon_sym_BANG_EQ] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(822), + [sym_test_operator] = ACTIONS(822), }, [756] = { - [aux_sym_concatenation_repeat1] = STATE(756), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_RPAREN_RPAREN] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_RBRACK_RBRACK] = ACTIONS(981), - [sym__concat] = ACTIONS(2679), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_EQ_TILDE] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(979), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(981), - [sym_test_operator] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_RPAREN_RPAREN] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_RBRACK_RBRACK] = ACTIONS(935), + [sym__concat] = ACTIONS(935), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_DASH_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(935), + [sym_test_operator] = ACTIONS(935), }, [757] = { - [sym__concat] = ACTIONS(1034), - [sym__string_content] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), + [sym_expansion] = STATE(756), + [sym_string] = STATE(756), + [sym_command_substitution] = STATE(756), + [sym_process_substitution] = STATE(756), + [sym_simple_expansion] = STATE(756), + [sym_arithmetic_expansion] = STATE(756), + [sym_string_expansion] = STATE(756), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(211), + [sym__special_character] = ACTIONS(2679), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(2679), + [sym_number] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2683), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(2681), }, [758] = { - [sym__concat] = ACTIONS(1088), - [sym__string_content] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(758), + [anon_sym_PLUS_EQ] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_RPAREN_RPAREN] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_RBRACK_RBRACK] = ACTIONS(935), + [sym__concat] = ACTIONS(2685), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_DASH_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(935), + [sym_test_operator] = ACTIONS(935), }, [759] = { - [aux_sym_concatenation_repeat1] = STATE(2564), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(525), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_PLUS_EQ] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_LT_LT] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_RPAREN_RPAREN] = ACTIONS(944), + [anon_sym_PIPE_PIPE] = ACTIONS(944), + [anon_sym_RBRACK_RBRACK] = ACTIONS(944), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_EQ_TILDE] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_LT_EQ] = ACTIONS(944), + [anon_sym_DASH_EQ] = ACTIONS(944), + [anon_sym_BANG_EQ] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(944), + [sym_test_operator] = ACTIONS(944), }, [760] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_PLUS_EQ] = ACTIONS(974), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_RPAREN_RPAREN] = ACTIONS(974), + [anon_sym_PIPE_PIPE] = ACTIONS(974), + [anon_sym_RBRACK_RBRACK] = ACTIONS(974), + [sym__concat] = ACTIONS(974), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(974), + [anon_sym_EQ_TILDE] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_LT_EQ] = ACTIONS(974), + [anon_sym_DASH_EQ] = ACTIONS(974), + [anon_sym_BANG_EQ] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(974), + [anon_sym_GT_EQ] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(974), + [sym_test_operator] = ACTIONS(974), }, [761] = { - [aux_sym__literal_repeat1] = STATE(787), - [sym_comment] = ACTIONS(3), - [sym__special_character] = ACTIONS(533), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_LT_LT] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1004), + [anon_sym_PIPE_PIPE] = ACTIONS(1004), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1004), + [sym__concat] = ACTIONS(1004), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1004), + [sym_test_operator] = ACTIONS(1004), }, [762] = { - [sym__concat] = ACTIONS(973), - [sym__string_content] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), + [aux_sym_concatenation_repeat1] = STATE(2570), + [anon_sym_AMP] = ACTIONS(1050), + [sym__concat] = ACTIONS(497), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), }, [763] = { - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1298), - [sym__concat] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_DASH_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1296), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [sym_test_operator] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), }, [764] = { - [sym_string] = STATE(747), - [anon_sym_0] = ACTIONS(2682), - [anon_sym_PLUS_EQ] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(2686), - [anon_sym_QMARK] = ACTIONS(2688), - [aux_sym__simple_variable_name_token1] = ACTIONS(2682), - [anon_sym__] = ACTIONS(2682), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1308), + [aux_sym__literal_repeat1] = STATE(793), [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2690), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_AT] = ACTIONS(2688), - [sym_test_operator] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_LF] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_SEMI_SEMI] = ACTIONS(1056), + [sym__special_character] = ACTIONS(503), }, [765] = { - [sym__concat] = ACTIONS(1358), - [sym__string_content] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1084), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1084), + [sym__concat] = ACTIONS(1084), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_EQ_TILDE] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym_DASH_EQ] = ACTIONS(1084), + [anon_sym_BANG_EQ] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1084), + [anon_sym_GT_EQ] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1084), + [sym_test_operator] = ACTIONS(1084), }, [766] = { - [sym__concat] = ACTIONS(1412), - [sym__string_content] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_PLUS_EQ] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_LT_LT] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_RPAREN_RPAREN] = ACTIONS(944), + [anon_sym_PIPE_PIPE] = ACTIONS(944), + [anon_sym_RBRACK_RBRACK] = ACTIONS(944), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_EQ_TILDE] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_LT_EQ] = ACTIONS(944), + [anon_sym_DASH_EQ] = ACTIONS(944), + [anon_sym_BANG_EQ] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(944), + [sym_test_operator] = ACTIONS(944), }, [767] = { - [sym__concat] = ACTIONS(1430), - [sym__string_content] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PLUS_EQ] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1132), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1132), + [sym__concat] = ACTIONS(1132), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_EQ_TILDE] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_LT_EQ] = ACTIONS(1132), + [anon_sym_DASH_EQ] = ACTIONS(1132), + [anon_sym_BANG_EQ] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1132), + [sym_test_operator] = ACTIONS(1132), }, [768] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_SEMI_SEMI] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_PLUS_EQ] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1154), + [anon_sym_LT_LT] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1154), + [anon_sym_PIPE_PIPE] = ACTIONS(1154), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1154), + [sym__concat] = ACTIONS(1154), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1154), + [anon_sym_EQ_TILDE] = ACTIONS(1154), + [anon_sym_PLUS_PLUS] = ACTIONS(1154), + [anon_sym_LT_EQ] = ACTIONS(1154), + [anon_sym_DASH_EQ] = ACTIONS(1154), + [anon_sym_BANG_EQ] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1152), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_EQ] = ACTIONS(1152), + [anon_sym_EQ_EQ] = ACTIONS(1154), + [anon_sym_GT_EQ] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [sym_test_operator] = ACTIONS(1154), }, [769] = { - [sym__concat] = ACTIONS(1661), - [sym__string_content] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_string] = STATE(753), + [anon_sym_QMARK] = ACTIONS(2688), + [anon_sym_PLUS_EQ] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(2690), + [sym_raw_string] = ACTIONS(2692), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1306), + [anon_sym_AT] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_0] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1306), + [anon_sym_EQ_TILDE] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_DASH_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2690), + [aux_sym__simple_variable_name_token1] = ACTIONS(2694), + [anon_sym__] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [sym_test_operator] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(2688), }, [770] = { - [sym__concat] = ACTIONS(1673), - [sym__string_content] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1360), + [sym__concat] = ACTIONS(1360), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_EQ_TILDE] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [sym_test_operator] = ACTIONS(1360), }, [771] = { - [sym__concat] = ACTIONS(1683), - [sym__string_content] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), }, [772] = { - [sym__concat] = ACTIONS(1687), - [sym__string_content] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_PLUS_EQ] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1428), + [sym__concat] = ACTIONS(1428), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_EQ_TILDE] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_LT_EQ] = ACTIONS(1428), + [anon_sym_DASH_EQ] = ACTIONS(1428), + [anon_sym_BANG_EQ] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_EQ_EQ] = ACTIONS(1428), + [anon_sym_GT_EQ] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [sym_test_operator] = ACTIONS(1428), }, [773] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_SEMI_SEMI] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_PLUS_EQ] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1476), + [sym__concat] = ACTIONS(1476), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_EQ_TILDE] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_DASH_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [sym_test_operator] = ACTIONS(1476), }, [774] = { - [sym__concat] = ACTIONS(1870), - [sym__string_content] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_PLUS_EQ] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1488), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1488), + [sym__concat] = ACTIONS(1488), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_EQ_TILDE] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_LT_EQ] = ACTIONS(1488), + [anon_sym_DASH_EQ] = ACTIONS(1488), + [anon_sym_BANG_EQ] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_EQ_EQ] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1488), + [sym_test_operator] = ACTIONS(1488), }, [775] = { - [sym__concat] = ACTIONS(1876), - [sym__string_content] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_BQUOTE] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_LF] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_SEMI_SEMI] = ACTIONS(1665), [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), }, [776] = { - [sym__concat] = ACTIONS(1880), - [sym__string_content] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1721), + [anon_sym_LT_LT] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1721), + [anon_sym_PIPE_PIPE] = ACTIONS(1721), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1721), + [sym__concat] = ACTIONS(1721), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1721), + [anon_sym_EQ_TILDE] = ACTIONS(1721), + [anon_sym_PLUS_PLUS] = ACTIONS(1721), + [anon_sym_LT_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_BANG_EQ] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1719), + [anon_sym_EQ_EQ] = ACTIONS(1721), + [anon_sym_GT_EQ] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1721), + [sym_test_operator] = ACTIONS(1721), }, [777] = { - [sym__concat] = ACTIONS(1886), - [sym__string_content] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_PLUS_EQ] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1727), + [anon_sym_PIPE_PIPE] = ACTIONS(1727), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1727), + [sym__concat] = ACTIONS(1727), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_EQ_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1727), + [anon_sym_DASH_EQ] = ACTIONS(1727), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_EQ] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1727), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1727), + [sym_test_operator] = ACTIONS(1727), }, [778] = { - [sym__concat] = ACTIONS(1959), - [sym__string_content] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_LT_LT] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1737), + [anon_sym_PIPE_PIPE] = ACTIONS(1737), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1737), + [sym__concat] = ACTIONS(1737), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1737), + [anon_sym_EQ_TILDE] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_LT_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_BANG_EQ] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1737), + [anon_sym_GT_EQ] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1737), + [sym_test_operator] = ACTIONS(1737), }, [779] = { - [sym__concat] = ACTIONS(1963), - [sym__string_content] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_PLUS_EQ] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_LT_LT] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1749), + [anon_sym_PIPE_PIPE] = ACTIONS(1749), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1749), + [sym__concat] = ACTIONS(1749), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1749), + [anon_sym_EQ_TILDE] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1749), + [anon_sym_LT_EQ] = ACTIONS(1749), + [anon_sym_DASH_EQ] = ACTIONS(1749), + [anon_sym_BANG_EQ] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1747), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_EQ] = ACTIONS(1747), + [anon_sym_EQ_EQ] = ACTIONS(1749), + [anon_sym_GT_EQ] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1749), + [sym_test_operator] = ACTIONS(1749), }, [780] = { - [aux_sym_concatenation_repeat1] = STATE(782), - [sym__special_character] = ACTIONS(285), - [sym__concat] = ACTIONS(525), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_in] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_PLUS_EQ] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1892), + [sym__concat] = ACTIONS(1892), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_EQ_TILDE] = ACTIONS(1892), + [anon_sym_PLUS_PLUS] = ACTIONS(1892), + [anon_sym_LT_EQ] = ACTIONS(1892), + [anon_sym_DASH_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_GT_EQ] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [sym_test_operator] = ACTIONS(1892), }, [781] = { - [sym__concat] = ACTIONS(441), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(1896), + [anon_sym_DASH_DASH] = ACTIONS(1896), + [anon_sym_LT_LT] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1896), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1896), + [sym__concat] = ACTIONS(1896), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1896), + [anon_sym_EQ_TILDE] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(1896), + [anon_sym_LT_EQ] = ACTIONS(1896), + [anon_sym_DASH_EQ] = ACTIONS(1896), + [anon_sym_BANG_EQ] = ACTIONS(1896), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1896), + [sym_test_operator] = ACTIONS(1896), }, [782] = { - [aux_sym_concatenation_repeat1] = STATE(794), - [anon_sym_AMP] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(2692), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_in] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_PLUS_EQ] = ACTIONS(1902), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_LT_LT] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1902), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1902), + [sym__concat] = ACTIONS(1902), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1902), + [anon_sym_EQ_TILDE] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_DASH_EQ] = ACTIONS(1902), + [anon_sym_BANG_EQ] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1902), + [sym_test_operator] = ACTIONS(1902), }, [783] = { - [anon_sym_PLUS_EQ] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_RPAREN_RPAREN] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_RBRACK_RBRACK] = ACTIONS(507), - [sym__concat] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_EQ_TILDE] = ACTIONS(507), - [anon_sym_DASH_DASH] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(507), - [anon_sym_DASH_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_RPAREN] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_EQ] = ACTIONS(505), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_GT_EQ] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(505), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(507), - [sym_test_operator] = ACTIONS(507), + [anon_sym_PLUS_EQ] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1908), + [anon_sym_LT_LT] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1908), + [anon_sym_PIPE_PIPE] = ACTIONS(1908), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1908), + [sym__concat] = ACTIONS(1908), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1908), + [anon_sym_EQ_TILDE] = ACTIONS(1908), + [anon_sym_PLUS_PLUS] = ACTIONS(1908), + [anon_sym_LT_EQ] = ACTIONS(1908), + [anon_sym_DASH_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(1906), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_GT_EQ] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1908), + [sym_test_operator] = ACTIONS(1908), }, [784] = { - [anon_sym_PLUS_EQ] = ACTIONS(511), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_LT_LT] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_RPAREN_RPAREN] = ACTIONS(511), - [anon_sym_PIPE_PIPE] = ACTIONS(511), - [anon_sym_RBRACK_RBRACK] = ACTIONS(511), - [sym__concat] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(511), - [anon_sym_EQ_TILDE] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(511), - [anon_sym_DASH_EQ] = ACTIONS(511), - [anon_sym_BANG_EQ] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(511), - [anon_sym_GT_EQ] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(509), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(511), - [sym_test_operator] = ACTIONS(511), + [anon_sym_PLUS_EQ] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1973), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1973), + [sym__concat] = ACTIONS(1973), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_EQ_TILDE] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(1973), + [anon_sym_DASH_EQ] = ACTIONS(1973), + [anon_sym_BANG_EQ] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1973), + [sym_test_operator] = ACTIONS(1973), }, [785] = { - [sym__concat] = ACTIONS(515), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_in] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_LT_LT] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1977), + [anon_sym_PIPE_PIPE] = ACTIONS(1977), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1977), + [sym__concat] = ACTIONS(1977), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1977), + [anon_sym_EQ_TILDE] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_LT_EQ] = ACTIONS(1977), + [anon_sym_DASH_EQ] = ACTIONS(1977), + [anon_sym_BANG_EQ] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1977), + [anon_sym_GT_EQ] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1977), + [sym_test_operator] = ACTIONS(1977), }, [786] = { - [sym__special_character] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(787), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(497), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_in] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), + [sym__special_character] = ACTIONS(185), + [anon_sym_in] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), }, [787] = { - [aux_sym__literal_repeat1] = STATE(787), - [sym__special_character] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(796), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_in] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(2698), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_in] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), }, [788] = { - [sym__concat] = ACTIONS(933), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_in] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_in] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), }, [789] = { - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_RPAREN_RPAREN] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_RBRACK_RBRACK] = ACTIONS(969), - [sym__concat] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(969), - [sym_test_operator] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), }, [790] = { - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_PLUS_PLUS] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_RPAREN_RPAREN] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_RBRACK_RBRACK] = ACTIONS(973), - [sym__concat] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_EQ_TILDE] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(971), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(973), - [sym_test_operator] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_in] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), }, [791] = { - [sym__concat] = ACTIONS(977), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_in] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_in] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), }, [792] = { - [sym__concat] = ACTIONS(981), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(185), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_in] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), }, [793] = { - [sym_expansion] = STATE(792), - [sym_string_expansion] = STATE(792), - [sym_simple_expansion] = STATE(792), - [sym_string] = STATE(792), - [sym_command_substitution] = STATE(792), - [sym_process_substitution] = STATE(792), - [sym_arithmetic_expansion] = STATE(792), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(243), - [sym_number] = ACTIONS(2697), - [sym__special_character] = ACTIONS(2699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_raw_string] = ACTIONS(2699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), - [sym_word] = ACTIONS(2697), - [anon_sym_LT_LPAREN] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_ansii_c_string] = ACTIONS(2699), + [aux_sym__literal_repeat1] = STATE(793), + [anon_sym_AMP] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [sym__special_character] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), }, [794] = { - [aux_sym_concatenation_repeat1] = STATE(794), - [sym__concat] = ACTIONS(2703), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_in] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), }, [795] = { - [anon_sym_PLUS_EQ] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_LT_LT] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1034), - [anon_sym_EQ_TILDE] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_LT_EQ] = ACTIONS(1034), - [anon_sym_DASH_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1032), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [sym_test_operator] = ACTIONS(1034), + [sym_expansion] = STATE(794), + [sym_string_expansion] = STATE(794), + [sym_simple_expansion] = STATE(794), + [sym_string] = STATE(794), + [sym_command_substitution] = STATE(794), + [sym_process_substitution] = STATE(794), + [sym_arithmetic_expansion] = STATE(794), + [sym_number] = ACTIONS(2703), + [sym_raw_string] = ACTIONS(2705), + [anon_sym_DOLLAR] = ACTIONS(2707), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(2705), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(245), + [sym__special_character] = ACTIONS(2705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(249), + [sym_word] = ACTIONS(2703), }, [796] = { - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1088), - [sym__concat] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_EQ_TILDE] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_RPAREN] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_GT_EQ] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1086), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [sym_test_operator] = ACTIONS(1088), + [aux_sym_concatenation_repeat1] = STATE(796), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_in] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), }, [797] = { - [aux_sym_concatenation_repeat1] = STATE(1353), - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [sym__concat] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), - [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [sym_file_descriptor] = ACTIONS(1124), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_GT_AMP] = ACTIONS(1120), - [anon_sym_esac] = ACTIONS(1120), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), }, [798] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), - [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [sym_file_descriptor] = ACTIONS(1124), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_GT_AMP] = ACTIONS(1120), - [anon_sym_esac] = ACTIONS(1120), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_in] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), }, [799] = { - [aux_sym__literal_repeat1] = STATE(1358), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [sym_ansii_c_string] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(1126), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_number] = ACTIONS(1126), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), - [sym_variable_name] = ACTIONS(1128), - [sym_file_descriptor] = ACTIONS(1128), - [sym_word] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1126), - [sym__special_character] = ACTIONS(2708), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [anon_sym_esac] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(1126), - [sym_raw_string] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), }, [800] = { - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_PLUS_PLUS] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_RPAREN_RPAREN] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_RBRACK_RBRACK] = ACTIONS(973), - [sym__concat] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_EQ_TILDE] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(971), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(973), - [sym_test_operator] = ACTIONS(973), + [aux_sym_concatenation_repeat1] = STATE(1358), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [sym__concat] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_esac] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), }, [801] = { - [sym__concat] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_in] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_esac] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), }, [802] = { - [sym_string] = STATE(785), - [anon_sym_0] = ACTIONS(2710), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(2712), - [anon_sym_QMARK] = ACTIONS(2710), - [aux_sym__simple_variable_name_token1] = ACTIONS(2710), - [anon_sym__] = ACTIONS(2710), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2716), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(2712), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(2710), + [aux_sym__literal_repeat1] = STATE(1364), + [sym_word] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1056), + [sym__special_character] = ACTIONS(2714), + [anon_sym_LT_LT] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [sym_raw_string] = ACTIONS(1056), + [sym_number] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_LT_AMP] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(1056), + [anon_sym_LT_LPAREN] = ACTIONS(1056), + [sym_ansii_c_string] = ACTIONS(1056), + [anon_sym_LF] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_variable_name] = ACTIONS(1060), + [sym_file_descriptor] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_LT_LT_LT] = ACTIONS(1056), + [anon_sym_GT_AMP] = ACTIONS(1056), + [anon_sym_esac] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1056), + [anon_sym_GT_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_SEMI_SEMI] = ACTIONS(1056), + [anon_sym_PIPE_AMP] = ACTIONS(1056), }, [803] = { - [anon_sym_PLUS_EQ] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1358), - [sym__concat] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_DASH_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1356), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [sym_test_operator] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), }, [804] = { - [anon_sym_PLUS_EQ] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1412), - [anon_sym_PIPE_PIPE] = ACTIONS(1412), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1412), - [sym__concat] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_EQ_TILDE] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_DASH_EQ] = ACTIONS(1412), - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1410), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [sym_test_operator] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_in] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), }, [805] = { - [anon_sym_PLUS_EQ] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1430), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1430), - [sym__concat] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_EQ_TILDE] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_LT_EQ] = ACTIONS(1430), - [anon_sym_DASH_EQ] = ACTIONS(1430), - [anon_sym_BANG_EQ] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1428), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [sym_test_operator] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_in] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), }, [806] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LPAREN] = ACTIONS(1438), - [sym_ansii_c_string] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LT_AMP] = ACTIONS(1438), - [anon_sym_GT_GT] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1438), - [anon_sym_LT_LT_DASH] = ACTIONS(1438), - [anon_sym_GT_LPAREN] = ACTIONS(1438), - [sym_number] = ACTIONS(1438), - [anon_sym_LF] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), - [sym_variable_name] = ACTIONS(1440), - [sym_file_descriptor] = ACTIONS(1440), - [sym_word] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_AMP_GT] = ACTIONS(1438), - [sym__special_character] = ACTIONS(1438), - [anon_sym_LT_LT_LT] = ACTIONS(1438), - [anon_sym_GT_AMP] = ACTIONS(1438), - [anon_sym_esac] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_raw_string] = ACTIONS(1438), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI_SEMI] = ACTIONS(1438), - [anon_sym_PIPE_AMP] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_in] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), }, [807] = { - [anon_sym_PLUS_EQ] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_LT_LT] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1661), - [anon_sym_PIPE_PIPE] = ACTIONS(1661), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1661), - [sym__concat] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1661), - [anon_sym_EQ_TILDE] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1661), - [anon_sym_DASH_EQ] = ACTIONS(1661), - [anon_sym_BANG_EQ] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1659), - [anon_sym_EQ_EQ] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1661), - [sym_test_operator] = ACTIONS(1661), + [sym_string] = STATE(791), + [anon_sym_QMARK] = ACTIONS(2716), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(2720), + [anon_sym_BANG] = ACTIONS(2720), + [aux_sym__simple_variable_name_token1] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym__] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2716), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(2716), }, [808] = { - [anon_sym_PLUS_EQ] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_LT_LT] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1673), - [anon_sym_PIPE_PIPE] = ACTIONS(1673), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1673), - [sym__concat] = ACTIONS(1673), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1673), - [anon_sym_EQ_TILDE] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1673), - [anon_sym_DASH_EQ] = ACTIONS(1673), - [anon_sym_BANG_EQ] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1671), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1673), - [sym_test_operator] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_in] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), }, [809] = { - [anon_sym_PLUS_EQ] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_LT_LT] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1683), - [anon_sym_PIPE_PIPE] = ACTIONS(1683), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1683), - [sym__concat] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_DASH_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_EQ] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1683), - [sym_test_operator] = ACTIONS(1683), + [sym_word] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1368), + [sym_number] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [sym_ansii_c_string] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_variable_name] = ACTIONS(1370), + [sym_file_descriptor] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_esac] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), }, [810] = { - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_LT_LT] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1687), - [anon_sym_PIPE_PIPE] = ACTIONS(1687), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1687), - [sym__concat] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1687), - [anon_sym_EQ_TILDE] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_LT_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_BANG_EQ] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_EQ] = ACTIONS(1685), - [anon_sym_EQ_EQ] = ACTIONS(1687), - [anon_sym_GT_EQ] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1685), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1687), - [sym_test_operator] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), }, [811] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LPAREN] = ACTIONS(1691), - [sym_ansii_c_string] = ACTIONS(1691), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_LT_AMP] = ACTIONS(1691), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_LT_LT_DASH] = ACTIONS(1691), - [anon_sym_GT_LPAREN] = ACTIONS(1691), - [sym_number] = ACTIONS(1691), - [anon_sym_LF] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), - [sym_variable_name] = ACTIONS(1693), - [sym_file_descriptor] = ACTIONS(1693), - [sym_word] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1691), - [anon_sym_AMP_GT] = ACTIONS(1691), - [sym__special_character] = ACTIONS(1691), - [anon_sym_LT_LT_LT] = ACTIONS(1691), - [anon_sym_GT_AMP] = ACTIONS(1691), - [anon_sym_esac] = ACTIONS(1691), - [anon_sym_BQUOTE] = ACTIONS(1691), - [sym_raw_string] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI_SEMI] = ACTIONS(1691), - [anon_sym_PIPE_AMP] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_in] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), }, [812] = { - [anon_sym_PLUS_EQ] = ACTIONS(1870), - [anon_sym_PLUS_PLUS] = ACTIONS(1870), - [anon_sym_LT_LT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1870), - [anon_sym_PIPE_PIPE] = ACTIONS(1870), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1870), - [sym__concat] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1870), - [anon_sym_EQ_TILDE] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1870), - [anon_sym_DASH_EQ] = ACTIONS(1870), - [anon_sym_BANG_EQ] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1870), - [anon_sym_GT_EQ] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1868), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1870), - [sym_test_operator] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), }, [813] = { - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [anon_sym_PLUS_PLUS] = ACTIONS(1876), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_EQ_TILDE] = ACTIONS(1876), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_EQ] = ACTIONS(1874), - [anon_sym_EQ_EQ] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_PLUS] = ACTIONS(1874), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [sym_test_operator] = ACTIONS(1876), + [sym_word] = ACTIONS(1665), + [anon_sym_AMP_GT_GT] = ACTIONS(1665), + [sym__special_character] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_raw_string] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_LT_AMP] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1665), + [anon_sym_LT_LT_DASH] = ACTIONS(1665), + [anon_sym_LT_LPAREN] = ACTIONS(1665), + [sym_ansii_c_string] = ACTIONS(1665), + [anon_sym_LF] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_variable_name] = ACTIONS(1667), + [sym_file_descriptor] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_AMP_GT] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_LT_LT_LT] = ACTIONS(1665), + [anon_sym_GT_AMP] = ACTIONS(1665), + [anon_sym_esac] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1665), + [anon_sym_GT_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_SEMI_SEMI] = ACTIONS(1665), + [anon_sym_PIPE_AMP] = ACTIONS(1665), }, [814] = { - [anon_sym_PLUS_EQ] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1880), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1880), - [sym__concat] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1880), - [anon_sym_EQ_TILDE] = ACTIONS(1880), - [anon_sym_DASH_DASH] = ACTIONS(1880), - [anon_sym_LT_EQ] = ACTIONS(1880), - [anon_sym_DASH_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1880), - [anon_sym_GT_EQ] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1878), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [sym_test_operator] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_in] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), }, [815] = { - [anon_sym_PLUS_EQ] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1886), - [anon_sym_DASH_EQ] = ACTIONS(1886), - [anon_sym_BANG_EQ] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_GT_EQ] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [sym_test_operator] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), }, [816] = { - [anon_sym_PLUS_EQ] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_EQ_TILDE] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [anon_sym_LT_EQ] = ACTIONS(1959), - [anon_sym_DASH_EQ] = ACTIONS(1959), - [anon_sym_BANG_EQ] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_EQ] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1957), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [sym_test_operator] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_in] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), }, [817] = { - [anon_sym_PLUS_EQ] = ACTIONS(1963), - [anon_sym_PLUS_PLUS] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1963), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1963), - [sym__concat] = ACTIONS(1963), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_EQ_TILDE] = ACTIONS(1963), - [anon_sym_DASH_DASH] = ACTIONS(1963), - [anon_sym_LT_EQ] = ACTIONS(1963), - [anon_sym_DASH_EQ] = ACTIONS(1963), - [anon_sym_BANG_EQ] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_EQ] = ACTIONS(1961), - [anon_sym_EQ_EQ] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1961), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(1963), - [sym_test_operator] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_in] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), }, [818] = { - [aux_sym_concatenation_repeat1] = STATE(820), - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(287), - [sym_test_operator] = ACTIONS(287), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_RBRACK] = ACTIONS(287), - [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(287), - [sym__special_character] = ACTIONS(285), - [sym__concat] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_EQ_TILDE] = ACTIONS(287), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_LT_EQ] = ACTIONS(287), - [anon_sym_DASH_EQ] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), }, [819] = { - [anon_sym_BANG_EQ] = ACTIONS(441), - [anon_sym_PLUS_EQ] = ACTIONS(441), - [sym_test_operator] = ACTIONS(441), - [anon_sym_PLUS_PLUS] = ACTIONS(441), - [anon_sym_RBRACK] = ACTIONS(441), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ] = ACTIONS(441), - [anon_sym_PIPE_PIPE] = ACTIONS(441), - [anon_sym_GT_EQ] = ACTIONS(441), - [sym__concat] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_EQ_TILDE] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(441), - [anon_sym_AMP_AMP] = ACTIONS(441), - [anon_sym_LT_EQ] = ACTIONS(441), - [anon_sym_DASH_EQ] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_in] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), }, [820] = { - [aux_sym_concatenation_repeat1] = STATE(832), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [sym_test_operator] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(479), - [anon_sym_RBRACK] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_EQ] = ACTIONS(475), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [sym__concat] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(479), - [anon_sym_EQ_TILDE] = ACTIONS(479), - [anon_sym_DASH_DASH] = ACTIONS(479), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), }, [821] = { - [sym__concat] = ACTIONS(507), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_in] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_in] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), }, [822] = { - [sym__concat] = ACTIONS(511), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_in] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_in] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), }, [823] = { - [anon_sym_BANG_EQ] = ACTIONS(515), - [anon_sym_PLUS_EQ] = ACTIONS(515), - [sym_test_operator] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(515), - [anon_sym_RBRACK] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(515), - [anon_sym_PIPE_PIPE] = ACTIONS(515), - [anon_sym_GT_EQ] = ACTIONS(515), - [sym__concat] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_EQ_TILDE] = ACTIONS(515), - [anon_sym_DASH_DASH] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(515), - [anon_sym_DASH_EQ] = ACTIONS(515), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_in] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), }, [824] = { - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(287), - [sym_test_operator] = ACTIONS(287), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_RBRACK] = ACTIONS(287), - [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(287), - [sym__special_character] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_EQ_TILDE] = ACTIONS(287), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_LT_EQ] = ACTIONS(287), - [anon_sym_DASH_EQ] = ACTIONS(287), + [aux_sym_concatenation_repeat1] = STATE(825), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_PLUS_EQ] = ACTIONS(189), + [sym__special_character] = ACTIONS(185), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [sym__concat] = ACTIONS(2133), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_LT_EQ] = ACTIONS(189), + [sym_test_operator] = ACTIONS(189), + [anon_sym_DASH_EQ] = ACTIONS(189), }, [825] = { - [aux_sym__literal_repeat1] = STATE(825), - [anon_sym_BANG_EQ] = ACTIONS(813), - [anon_sym_PLUS_EQ] = ACTIONS(813), - [sym_test_operator] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(813), - [anon_sym_PIPE_PIPE] = ACTIONS(813), - [anon_sym_GT_EQ] = ACTIONS(813), - [sym__special_character] = ACTIONS(2720), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_EQ_TILDE] = ACTIONS(813), - [anon_sym_DASH_DASH] = ACTIONS(813), - [anon_sym_AMP_AMP] = ACTIONS(813), - [anon_sym_LT_EQ] = ACTIONS(813), - [anon_sym_DASH_EQ] = ACTIONS(813), + [aux_sym_concatenation_repeat1] = STATE(834), + [anon_sym_BANG_EQ] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(439), + [anon_sym_RBRACK] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_DASH_DASH] = ACTIONS(439), + [anon_sym_EQ_EQ] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(439), + [sym__concat] = ACTIONS(2724), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_EQ_TILDE] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(439), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_LT_EQ] = ACTIONS(439), + [sym_test_operator] = ACTIONS(439), + [anon_sym_DASH_EQ] = ACTIONS(439), }, [826] = { - [anon_sym_BANG_EQ] = ACTIONS(933), - [anon_sym_PLUS_EQ] = ACTIONS(933), - [sym_test_operator] = ACTIONS(933), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_RBRACK] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [anon_sym_GT_EQ] = ACTIONS(933), - [sym__concat] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_EQ_TILDE] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_LT_EQ] = ACTIONS(933), - [anon_sym_DASH_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(527), + [anon_sym_PLUS_EQ] = ACTIONS(527), + [anon_sym_RBRACK] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(527), + [anon_sym_PIPE_PIPE] = ACTIONS(527), + [anon_sym_GT_EQ] = ACTIONS(527), + [sym__concat] = ACTIONS(527), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(527), + [anon_sym_EQ_TILDE] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(527), + [anon_sym_LT_EQ] = ACTIONS(527), + [sym_test_operator] = ACTIONS(527), + [anon_sym_DASH_EQ] = ACTIONS(527), }, [827] = { - [sym__concat] = ACTIONS(969), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(585), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_in] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [sym__string_content] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), }, [828] = { - [sym__concat] = ACTIONS(973), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_in] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [sym__string_content] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), }, [829] = { - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [sym_test_operator] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [sym__concat] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_EQ_TILDE] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [sym__concat] = ACTIONS(595), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(595), + [anon_sym_EQ_TILDE] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [sym_test_operator] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), }, [830] = { - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [sym_test_operator] = ACTIONS(981), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_RBRACK] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(981), - [sym__concat] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_EQ_TILDE] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_AMP_AMP] = ACTIONS(981), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(189), + [anon_sym_PLUS_EQ] = ACTIONS(189), + [sym__special_character] = ACTIONS(185), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(189), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_GT_EQ] = ACTIONS(189), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_PLUS_PLUS] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_LT_EQ] = ACTIONS(189), + [sym_test_operator] = ACTIONS(189), + [anon_sym_DASH_EQ] = ACTIONS(189), }, [831] = { - [sym_expansion] = STATE(830), - [sym_string_expansion] = STATE(830), - [sym_simple_expansion] = STATE(830), - [sym_string] = STATE(830), - [sym_command_substitution] = STATE(830), - [sym_process_substitution] = STATE(830), - [sym_arithmetic_expansion] = STATE(830), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_number] = ACTIONS(2723), - [sym__special_character] = ACTIONS(2725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_BQUOTE] = ACTIONS(319), - [sym_raw_string] = ACTIONS(2725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), - [sym_word] = ACTIONS(2723), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(2727), - [sym_ansii_c_string] = ACTIONS(2725), + [aux_sym__literal_repeat1] = STATE(831), + [anon_sym_BANG_EQ] = ACTIONS(822), + [anon_sym_PLUS_EQ] = ACTIONS(822), + [sym__special_character] = ACTIONS(2726), + [anon_sym_RBRACK] = ACTIONS(822), + [anon_sym_LT_LT] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(817), + [anon_sym_DASH_DASH] = ACTIONS(822), + [anon_sym_EQ_EQ] = ACTIONS(822), + [anon_sym_PIPE_PIPE] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(822), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_EQ_TILDE] = ACTIONS(822), + [anon_sym_PLUS_PLUS] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(822), + [anon_sym_LT_EQ] = ACTIONS(822), + [sym_test_operator] = ACTIONS(822), + [anon_sym_DASH_EQ] = ACTIONS(822), }, [832] = { - [aux_sym_concatenation_repeat1] = STATE(832), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [sym_test_operator] = ACTIONS(981), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_RBRACK] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(981), - [sym__concat] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_EQ_TILDE] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_AMP_AMP] = ACTIONS(981), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(935), + [anon_sym_RBRACK] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [sym__concat] = ACTIONS(935), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [sym_test_operator] = ACTIONS(935), + [anon_sym_DASH_EQ] = ACTIONS(935), }, [833] = { - [sym__concat] = ACTIONS(1034), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_in] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [sym_expansion] = STATE(832), + [sym_string_expansion] = STATE(832), + [sym_simple_expansion] = STATE(832), + [sym_string] = STATE(832), + [sym_command_substitution] = STATE(832), + [sym_process_substitution] = STATE(832), + [sym_arithmetic_expansion] = STATE(832), + [sym_number] = ACTIONS(2729), + [sym_raw_string] = ACTIONS(2731), + [anon_sym_DOLLAR] = ACTIONS(2733), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(2731), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(309), + [sym__special_character] = ACTIONS(2731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(303), + [sym_word] = ACTIONS(2729), }, [834] = { - [sym__concat] = ACTIONS(1088), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_in] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(834), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(935), + [anon_sym_RBRACK] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [sym__concat] = ACTIONS(2735), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [sym_test_operator] = ACTIONS(935), + [anon_sym_DASH_EQ] = ACTIONS(935), }, [835] = { - [aux_sym_concatenation_repeat1] = STATE(1287), - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [sym__concat] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(1120), - [aux_sym__simple_variable_name_token1] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), - [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [sym_file_descriptor] = ACTIONS(1124), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_GT_AMP] = ACTIONS(1120), - [anon_sym_esac] = ACTIONS(1120), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [sym__string_content] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), }, [836] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1120), - [anon_sym_LT_LPAREN] = ACTIONS(1120), - [sym_ansii_c_string] = ACTIONS(1120), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1120), - [aux_sym__simple_variable_name_token1] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_AMP] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1120), - [anon_sym_LT_LT_DASH] = ACTIONS(1120), - [anon_sym_GT_LPAREN] = ACTIONS(1120), - [sym_number] = ACTIONS(1120), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [sym_variable_name] = ACTIONS(1124), - [sym_file_descriptor] = ACTIONS(1124), - [sym_word] = ACTIONS(1120), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_AMP_GT] = ACTIONS(1120), - [sym__special_character] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_GT_AMP] = ACTIONS(1120), - [anon_sym_esac] = ACTIONS(1120), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(972), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1120), - [anon_sym_PIPE_AMP] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [sym__string_content] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), }, [837] = { - [aux_sym__literal_repeat1] = STATE(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [sym_ansii_c_string] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [aux_sym__simple_variable_name_token1] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_AMP] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(1126), - [anon_sym_LT_LT_DASH] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_number] = ACTIONS(1126), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), - [sym_variable_name] = ACTIONS(1128), - [sym_file_descriptor] = ACTIONS(1128), - [sym_word] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_AMP_GT] = ACTIONS(1126), - [sym__special_character] = ACTIONS(2375), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_GT_AMP] = ACTIONS(1126), - [anon_sym_esac] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(1126), - [sym_raw_string] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_RBRACK] = ACTIONS(1004), + [anon_sym_LT_LT] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_PIPE_PIPE] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1004), + [sym__concat] = ACTIONS(1004), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_AMP_AMP] = ACTIONS(1004), + [anon_sym_LT_EQ] = ACTIONS(1004), + [sym_test_operator] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), }, [838] = { - [sym__concat] = ACTIONS(973), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_in] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), + [aux_sym_concatenation_repeat1] = STATE(1292), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [sym__concat] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [aux_sym__simple_variable_name_token1] = ACTIONS(1050), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_esac] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), }, [839] = { - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [sym_test_operator] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [sym__concat] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_DASH_EQ] = ACTIONS(1298), + [sym_word] = ACTIONS(1050), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [sym__special_character] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_number] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [sym_ansii_c_string] = ACTIONS(1050), + [anon_sym_LF] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_variable_name] = ACTIONS(1054), + [aux_sym__simple_variable_name_token1] = ACTIONS(1050), + [sym_file_descriptor] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [anon_sym_esac] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI_SEMI] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), }, [840] = { - [sym_string] = STATE(823), - [anon_sym_0] = ACTIONS(2732), - [anon_sym_PLUS_EQ] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(2738), - [aux_sym__simple_variable_name_token1] = ACTIONS(2732), - [anon_sym__] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_DASH_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_RBRACK] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_AT] = ACTIONS(2738), - [sym_test_operator] = ACTIONS(1312), + [aux_sym__literal_repeat1] = STATE(1298), + [sym_word] = ACTIONS(1056), + [anon_sym_AMP_GT_GT] = ACTIONS(1056), + [sym__special_character] = ACTIONS(2381), + [anon_sym_LT_LT] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [sym_raw_string] = ACTIONS(1056), + [sym_number] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_LT_AMP] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(1056), + [anon_sym_LT_LPAREN] = ACTIONS(1056), + [sym_ansii_c_string] = ACTIONS(1056), + [anon_sym_LF] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_variable_name] = ACTIONS(1060), + [aux_sym__simple_variable_name_token1] = ACTIONS(1056), + [sym_file_descriptor] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1056), + [anon_sym_AMP_GT] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_LT_LT_LT] = ACTIONS(1056), + [anon_sym_GT_AMP] = ACTIONS(1056), + [anon_sym_esac] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1056), + [anon_sym_GT_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_SEMI_SEMI] = ACTIONS(1056), + [anon_sym_PIPE_AMP] = ACTIONS(1056), }, [841] = { - [sym__concat] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_in] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1084), + [anon_sym_PLUS_EQ] = ACTIONS(1084), + [anon_sym_RBRACK] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1084), + [anon_sym_GT_EQ] = ACTIONS(1084), + [sym__concat] = ACTIONS(1084), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_EQ_TILDE] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_AMP_AMP] = ACTIONS(1084), + [anon_sym_LT_EQ] = ACTIONS(1084), + [sym_test_operator] = ACTIONS(1084), + [anon_sym_DASH_EQ] = ACTIONS(1084), }, [842] = { - [sym__concat] = ACTIONS(1412), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [sym__string_content] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), }, [843] = { - [sym__concat] = ACTIONS(1430), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1130), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_in] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [sym__string_content] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), }, [844] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1438), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), - [anon_sym_LT_LPAREN] = ACTIONS(1438), - [sym_ansii_c_string] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [aux_sym__simple_variable_name_token1] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LT_AMP] = ACTIONS(1438), - [anon_sym_GT_GT] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1438), - [anon_sym_LT_LT_DASH] = ACTIONS(1438), - [anon_sym_GT_LPAREN] = ACTIONS(1438), - [sym_number] = ACTIONS(1438), - [anon_sym_LF] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1438), - [sym_variable_name] = ACTIONS(1440), - [sym_file_descriptor] = ACTIONS(1440), - [sym_word] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_AMP_GT] = ACTIONS(1438), - [sym__special_character] = ACTIONS(1438), - [anon_sym_LT_LT_LT] = ACTIONS(1438), - [anon_sym_GT_AMP] = ACTIONS(1438), - [anon_sym_esac] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_raw_string] = ACTIONS(1438), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI_SEMI] = ACTIONS(1438), - [anon_sym_PIPE_AMP] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [sym__string_content] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), }, [845] = { - [sym__concat] = ACTIONS(1661), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), + [sym_string] = STATE(829), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_PLUS_EQ] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(2740), + [sym_raw_string] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_AT] = ACTIONS(2738), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [anon_sym_0] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1306), + [anon_sym_EQ_TILDE] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_DASH_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_POUND] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_RBRACK] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(2744), + [anon_sym__] = ACTIONS(2744), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(2746), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [sym_test_operator] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(2738), }, [846] = { - [sym__concat] = ACTIONS(1673), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [sym__concat] = ACTIONS(1360), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_EQ_TILDE] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [sym_test_operator] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), }, [847] = { - [sym__concat] = ACTIONS(1683), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_in] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [sym_word] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1368), + [sym_number] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [sym_ansii_c_string] = ACTIONS(1368), + [anon_sym_LF] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_variable_name] = ACTIONS(1370), + [aux_sym__simple_variable_name_token1] = ACTIONS(1368), + [sym_file_descriptor] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_esac] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), }, [848] = { - [sym__concat] = ACTIONS(1687), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1426), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_in] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [sym__string_content] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), }, [849] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1691), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), - [anon_sym_LT_LPAREN] = ACTIONS(1691), - [sym_ansii_c_string] = ACTIONS(1691), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [aux_sym__simple_variable_name_token1] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_LT_AMP] = ACTIONS(1691), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_LT_LT_DASH] = ACTIONS(1691), - [anon_sym_GT_LPAREN] = ACTIONS(1691), - [sym_number] = ACTIONS(1691), - [anon_sym_LF] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1691), - [sym_variable_name] = ACTIONS(1693), - [sym_file_descriptor] = ACTIONS(1693), - [sym_word] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1691), - [anon_sym_AMP_GT] = ACTIONS(1691), - [sym__special_character] = ACTIONS(1691), - [anon_sym_LT_LT_LT] = ACTIONS(1691), - [anon_sym_GT_AMP] = ACTIONS(1691), - [anon_sym_esac] = ACTIONS(1691), - [anon_sym_BQUOTE] = ACTIONS(1691), - [sym_raw_string] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI_SEMI] = ACTIONS(1691), - [anon_sym_PIPE_AMP] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [sym__string_content] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), }, [850] = { - [sym__concat] = ACTIONS(1870), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1486), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [sym__string_content] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), }, [851] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [sym_word] = ACTIONS(1665), + [anon_sym_AMP_GT_GT] = ACTIONS(1665), + [sym__special_character] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_raw_string] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_LT_AMP] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1665), + [anon_sym_LT_LT_DASH] = ACTIONS(1665), + [anon_sym_LT_LPAREN] = ACTIONS(1665), + [sym_ansii_c_string] = ACTIONS(1665), + [anon_sym_LF] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym_variable_name] = ACTIONS(1667), + [aux_sym__simple_variable_name_token1] = ACTIONS(1665), + [sym_file_descriptor] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_AMP_GT] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_LT_LT_LT] = ACTIONS(1665), + [anon_sym_GT_AMP] = ACTIONS(1665), + [anon_sym_esac] = ACTIONS(1665), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1665), + [anon_sym_GT_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_SEMI_SEMI] = ACTIONS(1665), + [anon_sym_PIPE_AMP] = ACTIONS(1665), }, [852] = { - [sym__concat] = ACTIONS(1880), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1719), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [sym__string_content] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), }, [853] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1725), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_in] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [sym__string_content] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), }, [854] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1735), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_in] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [sym__string_content] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), }, [855] = { - [sym__concat] = ACTIONS(1963), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [sym__string_content] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), }, [856] = { - [aux_sym_concatenation_repeat1] = STATE(858), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(2113), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(285), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [sym__string_content] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), }, [857] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [aux_sym__simple_variable_name_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [sym_variable_name] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(439), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [sym_file_descriptor] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1894), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [sym__string_content] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), }, [858] = { - [aux_sym_concatenation_repeat1] = STATE(870), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(475), - [aux_sym__simple_variable_name_token1] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [sym_variable_name] = ACTIONS(479), - [anon_sym_RPAREN] = ACTIONS(475), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_AMP_GT] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), + [anon_sym_DOLLAR] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1900), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [sym__string_content] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), }, [859] = { - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_PLUS_EQ] = ACTIONS(507), - [sym_test_operator] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(507), - [anon_sym_RBRACK] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_EQ] = ACTIONS(505), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_EQ] = ACTIONS(507), - [sym__concat] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_EQ_TILDE] = ACTIONS(507), - [anon_sym_DASH_DASH] = ACTIONS(507), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(507), - [anon_sym_DASH_EQ] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [sym__string_content] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), }, [860] = { - [anon_sym_BANG_EQ] = ACTIONS(511), - [anon_sym_PLUS_EQ] = ACTIONS(511), - [sym_test_operator] = ACTIONS(511), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(511), - [anon_sym_LT_LT] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(511), - [anon_sym_PIPE_PIPE] = ACTIONS(511), - [anon_sym_GT_EQ] = ACTIONS(511), - [sym__concat] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(511), - [anon_sym_EQ_TILDE] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_AMP_AMP] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(511), - [anon_sym_DASH_EQ] = ACTIONS(511), + [anon_sym_DOLLAR] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [sym__string_content] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), }, [861] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [aux_sym__simple_variable_name_token1] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [sym_variable_name] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(513), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1975), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [sym__string_content] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), }, [862] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(285), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(863), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(185), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [863] = { - [aux_sym__literal_repeat1] = STATE(863), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [aux_sym__simple_variable_name_token1] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_variable_name] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(811), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(2744), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(872), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym_variable_name] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(435), + [aux_sym__simple_variable_name_token1] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [864] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [aux_sym__simple_variable_name_token1] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [sym_variable_name] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(931), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [sym_file_descriptor] = ACTIONS(933), - [anon_sym_AMP_GT] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [sym_variable_name] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(525), + [aux_sym__simple_variable_name_token1] = ACTIONS(525), + [anon_sym_GT] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [865] = { - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [sym_test_operator] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(969), - [sym__concat] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_EQ_TILDE] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_RBRACK] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(587), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_GT_EQ] = ACTIONS(587), + [sym__concat] = ACTIONS(587), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(587), + [anon_sym_EQ_TILDE] = ACTIONS(587), + [anon_sym_PLUS_PLUS] = ACTIONS(587), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [sym_test_operator] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), }, [866] = { - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [sym_test_operator] = ACTIONS(973), - [anon_sym_PLUS_PLUS] = ACTIONS(973), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(973), - [sym__concat] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_EQ_TILDE] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(973), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_PLUS_EQ] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_GT_EQ] = ACTIONS(591), + [sym__concat] = ACTIONS(591), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_EQ_TILDE] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(591), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_LT_EQ] = ACTIONS(591), + [sym_test_operator] = ACTIONS(591), + [anon_sym_DASH_EQ] = ACTIONS(591), }, [867] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [aux_sym__simple_variable_name_token1] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [sym_variable_name] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(975), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [sym_file_descriptor] = ACTIONS(977), - [anon_sym_AMP_GT] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [sym_variable_name] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(593), + [aux_sym__simple_variable_name_token1] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [868] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(979), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(185), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [869] = { - [sym_expansion] = STATE(868), - [sym_string] = STATE(868), - [sym_command_substitution] = STATE(868), - [sym_process_substitution] = STATE(868), - [sym_simple_expansion] = STATE(868), - [sym_arithmetic_expansion] = STATE(868), - [sym_string_expansion] = STATE(868), - [anon_sym_GT_LPAREN] = ACTIONS(2747), - [sym_number] = ACTIONS(2749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2753), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2755), - [sym_word] = ACTIONS(2749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), - [anon_sym_LT_LPAREN] = ACTIONS(2747), - [sym_ansii_c_string] = ACTIONS(2757), - [sym__special_character] = ACTIONS(2757), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2759), - [sym_raw_string] = ACTIONS(2757), - [anon_sym_DOLLAR] = ACTIONS(2761), + [aux_sym__literal_repeat1] = STATE(869), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym_variable_name] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(817), + [aux_sym__simple_variable_name_token1] = ACTIONS(817), + [anon_sym_GT] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [870] = { - [aux_sym_concatenation_repeat1] = STATE(870), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(2763), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(979), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(933), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [871] = { - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1034), - [sym_test_operator] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_RBRACK] = ACTIONS(1034), - [anon_sym_LT_LT] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1034), - [anon_sym_EQ_TILDE] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_LT_EQ] = ACTIONS(1034), - [anon_sym_DASH_EQ] = ACTIONS(1034), + [sym_expansion] = STATE(870), + [sym_string] = STATE(870), + [sym_command_substitution] = STATE(870), + [sym_process_substitution] = STATE(870), + [sym_simple_expansion] = STATE(870), + [sym_arithmetic_expansion] = STATE(870), + [sym_string_expansion] = STATE(870), + [anon_sym_LT_LPAREN] = ACTIONS(2753), + [sym_ansii_c_string] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2757), + [sym__special_character] = ACTIONS(2755), + [anon_sym_BQUOTE] = ACTIONS(2759), + [sym_raw_string] = ACTIONS(2755), + [sym_number] = ACTIONS(2761), + [anon_sym_DOLLAR] = ACTIONS(2763), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2765), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2767), + [sym_word] = ACTIONS(2761), }, [872] = { - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [sym_test_operator] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1088), - [anon_sym_RBRACK] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_GT_EQ] = ACTIONS(1088), - [sym__concat] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_EQ_TILDE] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), + [aux_sym_concatenation_repeat1] = STATE(872), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(2769), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(933), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [873] = { - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [sym_test_operator] = ACTIONS(973), - [anon_sym_PLUS_PLUS] = ACTIONS(973), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(973), - [sym__concat] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_EQ_TILDE] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(973), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(944), + [anon_sym_PLUS_EQ] = ACTIONS(944), + [anon_sym_RBRACK] = ACTIONS(944), + [anon_sym_LT_LT] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_EQ_EQ] = ACTIONS(944), + [anon_sym_PIPE_PIPE] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(944), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_EQ_TILDE] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_AMP_AMP] = ACTIONS(944), + [anon_sym_LT_EQ] = ACTIONS(944), + [sym_test_operator] = ACTIONS(944), + [anon_sym_DASH_EQ] = ACTIONS(944), }, [874] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [aux_sym__simple_variable_name_token1] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_variable_name] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1296), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(974), + [anon_sym_PLUS_EQ] = ACTIONS(974), + [anon_sym_RBRACK] = ACTIONS(974), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_EQ_EQ] = ACTIONS(974), + [anon_sym_PIPE_PIPE] = ACTIONS(974), + [anon_sym_GT_EQ] = ACTIONS(974), + [sym__concat] = ACTIONS(974), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(974), + [anon_sym_EQ_TILDE] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_AMP_AMP] = ACTIONS(974), + [anon_sym_LT_EQ] = ACTIONS(974), + [sym_test_operator] = ACTIONS(974), + [anon_sym_DASH_EQ] = ACTIONS(974), }, [875] = { - [sym_string] = STATE(861), - [anon_sym_0] = ACTIONS(2766), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym__] = ACTIONS(2766), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(2768), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [sym_variable_name] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1308), - [sym_word] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2768), - [sym_file_descriptor] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(2766), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_variable_name] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1002), + [aux_sym__simple_variable_name_token1] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [876] = { - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_PLUS_EQ] = ACTIONS(1358), - [sym_test_operator] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_RBRACK] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [sym__concat] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_DASH_EQ] = ACTIONS(1358), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_variable_name] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(1082), + [aux_sym__simple_variable_name_token1] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [877] = { - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_PLUS_EQ] = ACTIONS(1412), - [sym_test_operator] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(1412), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_PIPE_PIPE] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1412), - [sym__concat] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_EQ_TILDE] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_DASH_EQ] = ACTIONS(1412), + [anon_sym_BANG_EQ] = ACTIONS(944), + [anon_sym_PLUS_EQ] = ACTIONS(944), + [anon_sym_RBRACK] = ACTIONS(944), + [anon_sym_LT_LT] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_EQ_EQ] = ACTIONS(944), + [anon_sym_PIPE_PIPE] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(944), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_EQ_TILDE] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_AMP_AMP] = ACTIONS(944), + [anon_sym_LT_EQ] = ACTIONS(944), + [sym_test_operator] = ACTIONS(944), + [anon_sym_DASH_EQ] = ACTIONS(944), }, [878] = { - [anon_sym_BANG_EQ] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1430), - [sym_test_operator] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_RBRACK] = ACTIONS(1430), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1430), - [sym__concat] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_EQ_TILDE] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_LT_EQ] = ACTIONS(1430), - [anon_sym_DASH_EQ] = ACTIONS(1430), + [anon_sym_BANG_EQ] = ACTIONS(1132), + [anon_sym_PLUS_EQ] = ACTIONS(1132), + [anon_sym_RBRACK] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [sym__concat] = ACTIONS(1132), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_EQ_TILDE] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_AMP_AMP] = ACTIONS(1132), + [anon_sym_LT_EQ] = ACTIONS(1132), + [sym_test_operator] = ACTIONS(1132), + [anon_sym_DASH_EQ] = ACTIONS(1132), }, [879] = { - [anon_sym_BANG_EQ] = ACTIONS(1661), - [anon_sym_PLUS_EQ] = ACTIONS(1661), - [sym_test_operator] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_RBRACK] = ACTIONS(1661), - [anon_sym_LT_LT] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1659), - [anon_sym_EQ_EQ] = ACTIONS(1661), - [anon_sym_PIPE_PIPE] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1661), - [sym__concat] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1661), - [anon_sym_EQ_TILDE] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1661), - [anon_sym_DASH_EQ] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1154), + [anon_sym_PLUS_EQ] = ACTIONS(1154), + [anon_sym_RBRACK] = ACTIONS(1154), + [anon_sym_LT_LT] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_EQ] = ACTIONS(1152), + [anon_sym_DASH_DASH] = ACTIONS(1154), + [anon_sym_EQ_EQ] = ACTIONS(1154), + [anon_sym_PIPE_PIPE] = ACTIONS(1154), + [anon_sym_GT_EQ] = ACTIONS(1154), + [sym__concat] = ACTIONS(1154), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1154), + [anon_sym_EQ_TILDE] = ACTIONS(1154), + [anon_sym_PLUS_PLUS] = ACTIONS(1154), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_LT_EQ] = ACTIONS(1154), + [sym_test_operator] = ACTIONS(1154), + [anon_sym_DASH_EQ] = ACTIONS(1154), }, [880] = { - [anon_sym_BANG_EQ] = ACTIONS(1673), - [anon_sym_PLUS_EQ] = ACTIONS(1673), - [sym_test_operator] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_RBRACK] = ACTIONS(1673), - [anon_sym_LT_LT] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1673), - [anon_sym_PIPE_PIPE] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1673), - [sym__concat] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1673), - [anon_sym_EQ_TILDE] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_AMP_AMP] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1673), - [anon_sym_DASH_EQ] = ACTIONS(1673), + [sym_string] = STATE(867), + [anon_sym_QMARK] = ACTIONS(2772), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(2772), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_variable_name] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2772), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(2776), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [aux_sym__simple_variable_name_token1] = ACTIONS(2772), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [881] = { - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_PLUS_EQ] = ACTIONS(1683), - [sym_test_operator] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_LT_LT] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_EQ] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_PIPE_PIPE] = ACTIONS(1683), - [anon_sym_GT_EQ] = ACTIONS(1683), - [sym__concat] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1683), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_DASH_EQ] = ACTIONS(1683), - }, + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_variable_name] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1358), + [aux_sym__simple_variable_name_token1] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), + }, [882] = { - [anon_sym_BANG_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [sym_test_operator] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_RBRACK] = ACTIONS(1687), - [anon_sym_LT_LT] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_EQ] = ACTIONS(1685), - [anon_sym_EQ_EQ] = ACTIONS(1687), - [anon_sym_PIPE_PIPE] = ACTIONS(1687), - [anon_sym_GT_EQ] = ACTIONS(1687), - [sym__concat] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1687), - [anon_sym_EQ_TILDE] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_AMP_AMP] = ACTIONS(1687), - [anon_sym_LT_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1428), + [anon_sym_PLUS_EQ] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_EQ_EQ] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [anon_sym_GT_EQ] = ACTIONS(1428), + [sym__concat] = ACTIONS(1428), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_EQ_TILDE] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_LT_EQ] = ACTIONS(1428), + [sym_test_operator] = ACTIONS(1428), + [anon_sym_DASH_EQ] = ACTIONS(1428), }, [883] = { - [anon_sym_BANG_EQ] = ACTIONS(1870), - [anon_sym_PLUS_EQ] = ACTIONS(1870), - [sym_test_operator] = ACTIONS(1870), - [anon_sym_PLUS_PLUS] = ACTIONS(1870), - [anon_sym_RBRACK] = ACTIONS(1870), - [anon_sym_LT_LT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1870), - [anon_sym_PIPE_PIPE] = ACTIONS(1870), - [anon_sym_GT_EQ] = ACTIONS(1870), - [sym__concat] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1870), - [anon_sym_EQ_TILDE] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1870), - [anon_sym_AMP_AMP] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1870), - [anon_sym_DASH_EQ] = ACTIONS(1870), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_PLUS_EQ] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [anon_sym_GT_EQ] = ACTIONS(1476), + [sym__concat] = ACTIONS(1476), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_EQ_TILDE] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1476), + [sym_test_operator] = ACTIONS(1476), + [anon_sym_DASH_EQ] = ACTIONS(1476), }, [884] = { - [anon_sym_BANG_EQ] = ACTIONS(1876), - [anon_sym_PLUS_EQ] = ACTIONS(1876), - [sym_test_operator] = ACTIONS(1876), - [anon_sym_PLUS_PLUS] = ACTIONS(1876), - [anon_sym_RBRACK] = ACTIONS(1876), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_EQ] = ACTIONS(1874), - [anon_sym_EQ_EQ] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_EQ_TILDE] = ACTIONS(1876), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_DASH_EQ] = ACTIONS(1876), + [anon_sym_BANG_EQ] = ACTIONS(1488), + [anon_sym_PLUS_EQ] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_EQ_EQ] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1488), + [sym__concat] = ACTIONS(1488), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_EQ_TILDE] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_AMP_AMP] = ACTIONS(1488), + [anon_sym_LT_EQ] = ACTIONS(1488), + [sym_test_operator] = ACTIONS(1488), + [anon_sym_DASH_EQ] = ACTIONS(1488), }, [885] = { - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_PLUS_EQ] = ACTIONS(1880), - [sym_test_operator] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1880), - [anon_sym_RBRACK] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1880), - [anon_sym_GT_EQ] = ACTIONS(1880), - [sym__concat] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1880), - [anon_sym_EQ_TILDE] = ACTIONS(1880), - [anon_sym_DASH_DASH] = ACTIONS(1880), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_LT_EQ] = ACTIONS(1880), - [anon_sym_DASH_EQ] = ACTIONS(1880), + [anon_sym_BANG_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_RBRACK] = ACTIONS(1721), + [anon_sym_LT_LT] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1719), + [anon_sym_DASH_DASH] = ACTIONS(1721), + [anon_sym_EQ_EQ] = ACTIONS(1721), + [anon_sym_PIPE_PIPE] = ACTIONS(1721), + [anon_sym_GT_EQ] = ACTIONS(1721), + [sym__concat] = ACTIONS(1721), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1721), + [anon_sym_EQ_TILDE] = ACTIONS(1721), + [anon_sym_PLUS_PLUS] = ACTIONS(1721), + [anon_sym_AMP_AMP] = ACTIONS(1721), + [anon_sym_LT_EQ] = ACTIONS(1721), + [sym_test_operator] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), }, [886] = { - [anon_sym_BANG_EQ] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1886), - [sym_test_operator] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1886), - [anon_sym_RBRACK] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_GT_EQ] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1886), - [anon_sym_DASH_EQ] = ACTIONS(1886), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_PLUS_EQ] = ACTIONS(1727), + [anon_sym_RBRACK] = ACTIONS(1727), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_EQ] = ACTIONS(1725), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_EQ_EQ] = ACTIONS(1727), + [anon_sym_PIPE_PIPE] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1727), + [sym__concat] = ACTIONS(1727), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_EQ_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1727), + [sym_test_operator] = ACTIONS(1727), + [anon_sym_DASH_EQ] = ACTIONS(1727), }, [887] = { - [anon_sym_BANG_EQ] = ACTIONS(1959), - [anon_sym_PLUS_EQ] = ACTIONS(1959), - [sym_test_operator] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_EQ] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_EQ_TILDE] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_LT_EQ] = ACTIONS(1959), - [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_RBRACK] = ACTIONS(1737), + [anon_sym_LT_LT] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_EQ_EQ] = ACTIONS(1737), + [anon_sym_PIPE_PIPE] = ACTIONS(1737), + [anon_sym_GT_EQ] = ACTIONS(1737), + [sym__concat] = ACTIONS(1737), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1737), + [anon_sym_EQ_TILDE] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_AMP_AMP] = ACTIONS(1737), + [anon_sym_LT_EQ] = ACTIONS(1737), + [sym_test_operator] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), }, [888] = { - [anon_sym_BANG_EQ] = ACTIONS(1963), - [anon_sym_PLUS_EQ] = ACTIONS(1963), - [sym_test_operator] = ACTIONS(1963), - [anon_sym_PLUS_PLUS] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_EQ] = ACTIONS(1961), - [anon_sym_EQ_EQ] = ACTIONS(1963), - [anon_sym_PIPE_PIPE] = ACTIONS(1963), - [anon_sym_GT_EQ] = ACTIONS(1963), - [sym__concat] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(1963), - [anon_sym_EQ_TILDE] = ACTIONS(1963), - [anon_sym_DASH_DASH] = ACTIONS(1963), - [anon_sym_AMP_AMP] = ACTIONS(1963), - [anon_sym_LT_EQ] = ACTIONS(1963), - [anon_sym_DASH_EQ] = ACTIONS(1963), + [anon_sym_BANG_EQ] = ACTIONS(1749), + [anon_sym_PLUS_EQ] = ACTIONS(1749), + [anon_sym_RBRACK] = ACTIONS(1749), + [anon_sym_LT_LT] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_EQ] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_EQ_EQ] = ACTIONS(1749), + [anon_sym_PIPE_PIPE] = ACTIONS(1749), + [anon_sym_GT_EQ] = ACTIONS(1749), + [sym__concat] = ACTIONS(1749), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1749), + [anon_sym_EQ_TILDE] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1749), + [anon_sym_AMP_AMP] = ACTIONS(1749), + [anon_sym_LT_EQ] = ACTIONS(1749), + [sym_test_operator] = ACTIONS(1749), + [anon_sym_DASH_EQ] = ACTIONS(1749), }, [889] = { - [aux_sym_concatenation_repeat1] = STATE(891), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_PLUS_EQ] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_GT_EQ] = ACTIONS(1892), + [sym__concat] = ACTIONS(1892), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_EQ_TILDE] = ACTIONS(1892), + [anon_sym_PLUS_PLUS] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_LT_EQ] = ACTIONS(1892), + [sym_test_operator] = ACTIONS(1892), + [anon_sym_DASH_EQ] = ACTIONS(1892), }, [890] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [aux_sym__simple_variable_name_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [anon_sym_RPAREN] = ACTIONS(439), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [sym_file_descriptor] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(1896), + [anon_sym_PLUS_EQ] = ACTIONS(1896), + [anon_sym_RBRACK] = ACTIONS(1896), + [anon_sym_LT_LT] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_EQ] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(1896), + [anon_sym_EQ_EQ] = ACTIONS(1896), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1896), + [sym__concat] = ACTIONS(1896), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1896), + [anon_sym_EQ_TILDE] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(1896), + [anon_sym_AMP_AMP] = ACTIONS(1896), + [anon_sym_LT_EQ] = ACTIONS(1896), + [sym_test_operator] = ACTIONS(1896), + [anon_sym_DASH_EQ] = ACTIONS(1896), }, [891] = { - [aux_sym_concatenation_repeat1] = STATE(903), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(475), - [aux_sym__simple_variable_name_token1] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(475), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_AMP_GT] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_BANG_EQ] = ACTIONS(1902), + [anon_sym_PLUS_EQ] = ACTIONS(1902), + [anon_sym_RBRACK] = ACTIONS(1902), + [anon_sym_LT_LT] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_EQ] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_EQ_EQ] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [sym__concat] = ACTIONS(1902), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1902), + [anon_sym_EQ_TILDE] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1902), + [anon_sym_LT_EQ] = ACTIONS(1902), + [sym_test_operator] = ACTIONS(1902), + [anon_sym_DASH_EQ] = ACTIONS(1902), }, [892] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [aux_sym__simple_variable_name_token1] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [sym_variable_name] = ACTIONS(507), - [anon_sym_RPAREN] = ACTIONS(505), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [sym_file_descriptor] = ACTIONS(507), - [anon_sym_AMP_GT] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_PLUS_EQ] = ACTIONS(1908), + [anon_sym_RBRACK] = ACTIONS(1908), + [anon_sym_LT_LT] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1908), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_PIPE_PIPE] = ACTIONS(1908), + [anon_sym_GT_EQ] = ACTIONS(1908), + [sym__concat] = ACTIONS(1908), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1908), + [anon_sym_EQ_TILDE] = ACTIONS(1908), + [anon_sym_PLUS_PLUS] = ACTIONS(1908), + [anon_sym_AMP_AMP] = ACTIONS(1908), + [anon_sym_LT_EQ] = ACTIONS(1908), + [sym_test_operator] = ACTIONS(1908), + [anon_sym_DASH_EQ] = ACTIONS(1908), }, [893] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [aux_sym__simple_variable_name_token1] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [sym_variable_name] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(509), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_AMP_GT] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(1973), + [anon_sym_RBRACK] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1973), + [sym__concat] = ACTIONS(1973), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_EQ_TILDE] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1973), + [anon_sym_AMP_AMP] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(1973), + [sym_test_operator] = ACTIONS(1973), + [anon_sym_DASH_EQ] = ACTIONS(1973), }, [894] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [aux_sym__simple_variable_name_token1] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [anon_sym_RPAREN] = ACTIONS(513), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(1977), + [anon_sym_PLUS_EQ] = ACTIONS(1977), + [anon_sym_RBRACK] = ACTIONS(1977), + [anon_sym_LT_LT] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1977), + [anon_sym_EQ_EQ] = ACTIONS(1977), + [anon_sym_PIPE_PIPE] = ACTIONS(1977), + [anon_sym_GT_EQ] = ACTIONS(1977), + [sym__concat] = ACTIONS(1977), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1977), + [anon_sym_EQ_TILDE] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1977), + [anon_sym_AMP_AMP] = ACTIONS(1977), + [anon_sym_LT_EQ] = ACTIONS(1977), + [sym_test_operator] = ACTIONS(1977), + [anon_sym_DASH_EQ] = ACTIONS(1977), }, [895] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(896), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(185), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [896] = { - [aux_sym__literal_repeat1] = STATE(896), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [aux_sym__simple_variable_name_token1] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(2774), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(905), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [anon_sym_RPAREN] = ACTIONS(435), + [aux_sym__simple_variable_name_token1] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [897] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [aux_sym__simple_variable_name_token1] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [sym_file_descriptor] = ACTIONS(933), - [anon_sym_AMP_GT] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(525), + [aux_sym__simple_variable_name_token1] = ACTIONS(525), + [anon_sym_GT] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [898] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [aux_sym__simple_variable_name_token1] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [sym_variable_name] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(967), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [sym_variable_name] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(585), + [aux_sym__simple_variable_name_token1] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [899] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [sym_variable_name] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(589), + [aux_sym__simple_variable_name_token1] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [900] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [aux_sym__simple_variable_name_token1] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [sym_file_descriptor] = ACTIONS(977), - [anon_sym_AMP_GT] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [anon_sym_RPAREN] = ACTIONS(593), + [aux_sym__simple_variable_name_token1] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [901] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(185), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [902] = { - [sym_expansion] = STATE(901), - [sym_string] = STATE(901), - [sym_command_substitution] = STATE(901), - [sym_process_substitution] = STATE(901), - [sym_simple_expansion] = STATE(901), - [sym_arithmetic_expansion] = STATE(901), - [sym_string_expansion] = STATE(901), - [anon_sym_GT_LPAREN] = ACTIONS(2777), - [sym_number] = ACTIONS(2779), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2783), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2785), - [sym_word] = ACTIONS(2779), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), - [anon_sym_LT_LPAREN] = ACTIONS(2777), - [sym_ansii_c_string] = ACTIONS(2787), - [sym__special_character] = ACTIONS(2787), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2789), - [sym_raw_string] = ACTIONS(2787), - [anon_sym_DOLLAR] = ACTIONS(2791), + [aux_sym__literal_repeat1] = STATE(902), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(2780), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(817), + [aux_sym__simple_variable_name_token1] = ACTIONS(817), + [anon_sym_GT] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [903] = { - [aux_sym_concatenation_repeat1] = STATE(903), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(2793), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [904] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1032), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_expansion] = STATE(903), + [sym_string] = STATE(903), + [sym_command_substitution] = STATE(903), + [sym_process_substitution] = STATE(903), + [sym_simple_expansion] = STATE(903), + [sym_arithmetic_expansion] = STATE(903), + [sym_string_expansion] = STATE(903), + [anon_sym_LT_LPAREN] = ACTIONS(2783), + [sym_ansii_c_string] = ACTIONS(2785), + [anon_sym_DQUOTE] = ACTIONS(2787), + [sym__special_character] = ACTIONS(2785), + [anon_sym_BQUOTE] = ACTIONS(2789), + [sym_raw_string] = ACTIONS(2785), + [sym_number] = ACTIONS(2791), + [anon_sym_DOLLAR] = ACTIONS(2793), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2797), + [sym_word] = ACTIONS(2791), }, [905] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [aux_sym__simple_variable_name_token1] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [sym_variable_name] = ACTIONS(1088), - [anon_sym_RPAREN] = ACTIONS(1086), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [sym_file_descriptor] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(905), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(2799), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [906] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(942), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [907] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [aux_sym__simple_variable_name_token1] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym_variable_name] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(972), + [aux_sym__simple_variable_name_token1] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [908] = { - [sym_string] = STATE(894), - [anon_sym_0] = ACTIONS(2796), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym__] = ACTIONS(2796), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [sym_word] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2798), - [sym_file_descriptor] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [aux_sym__simple_variable_name_token1] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [909] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [aux_sym__simple_variable_name_token1] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [sym_variable_name] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1356), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1358), - [anon_sym_AMP_GT] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [aux_sym__simple_variable_name_token1] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [910] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [aux_sym__simple_variable_name_token1] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [sym_variable_name] = ACTIONS(1412), - [anon_sym_RPAREN] = ACTIONS(1410), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [sym_file_descriptor] = ACTIONS(1412), - [anon_sym_AMP_GT] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(942), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [911] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [aux_sym__simple_variable_name_token1] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [sym_variable_name] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1428), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [anon_sym_AMP_GT] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1130), + [aux_sym__simple_variable_name_token1] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [912] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [aux_sym__simple_variable_name_token1] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [sym_variable_name] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1659), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [sym_file_descriptor] = ACTIONS(1661), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1152), + [aux_sym__simple_variable_name_token1] = ACTIONS(1152), + [anon_sym_GT] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [913] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [aux_sym__simple_variable_name_token1] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [sym_variable_name] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1671), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [sym_file_descriptor] = ACTIONS(1673), - [anon_sym_AMP_GT] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [sym_string] = STATE(900), + [anon_sym_QMARK] = ACTIONS(2802), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(2802), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2081), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2802), + [anon_sym_DOLLAR] = ACTIONS(2804), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(2806), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(2804), + [anon_sym_BANG] = ACTIONS(2804), + [aux_sym__simple_variable_name_token1] = ACTIONS(2802), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [914] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [aux_sym__simple_variable_name_token1] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [sym_variable_name] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [sym_file_descriptor] = ACTIONS(1683), - [anon_sym_AMP_GT] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - }, - [915] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [aux_sym__simple_variable_name_token1] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [sym_variable_name] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1685), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [sym_file_descriptor] = ACTIONS(1687), - [anon_sym_AMP_GT] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), - }, - [916] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [aux_sym__simple_variable_name_token1] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [sym_variable_name] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1868), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [sym_file_descriptor] = ACTIONS(1870), - [anon_sym_AMP_GT] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [aux_sym__simple_variable_name_token1] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), + }, + [915] = { + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_variable_name] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1426), + [aux_sym__simple_variable_name_token1] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), + }, + [916] = { + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_variable_name] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1474), + [aux_sym__simple_variable_name_token1] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [917] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [aux_sym__simple_variable_name_token1] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [sym_variable_name] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1874), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_variable_name] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1486), + [aux_sym__simple_variable_name_token1] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [918] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [aux_sym__simple_variable_name_token1] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [sym_variable_name] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1878), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym_variable_name] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1719), + [aux_sym__simple_variable_name_token1] = ACTIONS(1719), + [anon_sym_GT] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [919] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [aux_sym__simple_variable_name_token1] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1884), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_variable_name] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1725), + [aux_sym__simple_variable_name_token1] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [920] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [aux_sym__simple_variable_name_token1] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [sym_variable_name] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1957), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [sym_file_descriptor] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym_variable_name] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1735), + [aux_sym__simple_variable_name_token1] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [921] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [aux_sym__simple_variable_name_token1] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [sym_variable_name] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1961), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [sym_file_descriptor] = ACTIONS(1963), - [anon_sym_AMP_GT] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym_variable_name] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1747), + [aux_sym__simple_variable_name_token1] = ACTIONS(1747), + [anon_sym_GT] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [922] = { - [aux_sym_concatenation_repeat1] = STATE(924), - [anon_sym_COLON_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(287), - [sym_number] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), - [anon_sym_RBRACE] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_COLON_QMARK] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(285), - [anon_sym_POUND] = ACTIONS(287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [sym__concat] = ACTIONS(1030), - [anon_sym_PERCENT] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(287), - [sym_raw_string] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(285), + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1890), + [aux_sym__simple_variable_name_token1] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [923] = { - [anon_sym_COLON_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(441), - [sym_number] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_COLON_QMARK] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(441), - [anon_sym_COLON] = ACTIONS(439), - [anon_sym_POUND] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(441), - [sym_raw_string] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(439), + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_variable_name] = ACTIONS(1896), + [anon_sym_RPAREN] = ACTIONS(1894), + [aux_sym__simple_variable_name_token1] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [924] = { - [aux_sym_concatenation_repeat1] = STATE(936), - [anon_sym_COLON_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(479), - [sym_number] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(479), - [anon_sym_DQUOTE] = ACTIONS(479), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(479), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_COLON_QMARK] = ACTIONS(475), - [anon_sym_EQ] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(479), - [anon_sym_COLON] = ACTIONS(475), - [anon_sym_POUND] = ACTIONS(479), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [sym__concat] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_raw_string] = ACTIONS(479), - [anon_sym_DOLLAR] = ACTIONS(475), + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym_variable_name] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1900), + [aux_sym__simple_variable_name_token1] = ACTIONS(1900), + [anon_sym_GT] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [925] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [aux_sym__simple_variable_name_token1] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [anon_sym_RPAREN] = ACTIONS(505), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [sym_file_descriptor] = ACTIONS(507), - [anon_sym_AMP_GT] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_variable_name] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1906), + [aux_sym__simple_variable_name_token1] = ACTIONS(1906), + [anon_sym_GT] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [926] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [aux_sym__simple_variable_name_token1] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_AMP_GT] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_variable_name] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1971), + [aux_sym__simple_variable_name_token1] = ACTIONS(1971), + [anon_sym_GT] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [927] = { - [anon_sym_COLON_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(515), - [sym_number] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(515), - [anon_sym_DQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(515), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(513), - [anon_sym_COLON_QMARK] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(513), - [anon_sym_POUND] = ACTIONS(515), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PERCENT] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [sym_raw_string] = ACTIONS(515), - [anon_sym_DOLLAR] = ACTIONS(513), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym_variable_name] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1975), + [aux_sym__simple_variable_name_token1] = ACTIONS(1975), + [anon_sym_GT] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [928] = { - [anon_sym_COLON_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(287), - [sym_number] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), - [anon_sym_RBRACE] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_COLON_QMARK] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(285), - [anon_sym_POUND] = ACTIONS(287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(287), - [sym_raw_string] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(929), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [929] = { - [aux_sym__literal_repeat1] = STATE(929), - [anon_sym_COLON_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(813), - [sym_number] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), - [anon_sym_DQUOTE] = ACTIONS(813), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(813), - [anon_sym_RBRACE] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_COLON_QMARK] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_POUND] = ACTIONS(813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [sym__special_character] = ACTIONS(2804), - [anon_sym_LT_LPAREN] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_PERCENT] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(813), - [sym_raw_string] = ACTIONS(813), - [anon_sym_DOLLAR] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(938), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(2808), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym_variable_name] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [ts_builtin_sym_end] = ACTIONS(439), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [930] = { - [anon_sym_COLON_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(933), - [sym_number] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_COLON_QMARK] = ACTIONS(931), - [anon_sym_EQ] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_POUND] = ACTIONS(933), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(933), - [sym_raw_string] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(931), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [sym_variable_name] = ACTIONS(527), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [ts_builtin_sym_end] = ACTIONS(527), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [931] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [aux_sym__simple_variable_name_token1] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [aux_sym__simple_variable_name_token1] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [932] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(589), + [aux_sym__simple_variable_name_token1] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [933] = { - [anon_sym_COLON_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(977), - [sym_number] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(977), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_COLON_QMARK] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(977), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PERCENT] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(977), - [sym_raw_string] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(975), + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [sym_variable_name] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [ts_builtin_sym_end] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [934] = { - [anon_sym_COLON_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(981), - [sym_number] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_COLON_QMARK] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(981), - [anon_sym_COLON] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(981), - [sym_raw_string] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [ts_builtin_sym_end] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [935] = { - [sym_expansion] = STATE(934), - [sym_string_expansion] = STATE(934), - [sym_simple_expansion] = STATE(934), - [sym_string] = STATE(934), - [sym_command_substitution] = STATE(934), - [sym_process_substitution] = STATE(934), - [sym_arithmetic_expansion] = STATE(934), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(2807), - [sym__special_character] = ACTIONS(2809), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(2809), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [sym_word] = ACTIONS(2807), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(2811), - [sym_ansii_c_string] = ACTIONS(2809), + [aux_sym__literal_repeat1] = STATE(935), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(2810), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym_variable_name] = ACTIONS(822), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [ts_builtin_sym_end] = ACTIONS(822), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [936] = { - [aux_sym_concatenation_repeat1] = STATE(936), - [anon_sym_COLON_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(981), - [sym_number] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_COLON_QMARK] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(981), - [anon_sym_COLON] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [sym__concat] = ACTIONS(2813), - [anon_sym_PERCENT] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(981), - [sym_raw_string] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [937] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_expansion] = STATE(936), + [sym_string_expansion] = STATE(936), + [sym_simple_expansion] = STATE(936), + [sym_string] = STATE(936), + [sym_command_substitution] = STATE(936), + [sym_process_substitution] = STATE(936), + [sym_arithmetic_expansion] = STATE(936), + [sym_number] = ACTIONS(2813), + [sym_raw_string] = ACTIONS(2815), + [anon_sym_DOLLAR] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(541), + [sym_ansii_c_string] = ACTIONS(2815), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(551), + [sym__special_character] = ACTIONS(2815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(553), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(555), + [anon_sym_BQUOTE] = ACTIONS(545), + [sym_word] = ACTIONS(2813), }, [938] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [aux_sym__simple_variable_name_token1] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1086), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [sym_file_descriptor] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(938), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [939] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [940] = { - [anon_sym_COLON_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1298), - [sym_number] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_COLON_QMARK] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1298), - [anon_sym_COLON] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [aux_sym__simple_variable_name_token1] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [941] = { - [sym_string] = STATE(927), - [anon_sym_0] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_COLON_QMARK] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1312), - [sym_ansii_c_string] = ACTIONS(1312), - [anon_sym_COLON] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2816), - [aux_sym__simple_variable_name_token1] = ACTIONS(2816), - [anon_sym__] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_COLON_DASH] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1312), - [sym_number] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1312), - [sym_raw_string] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2816), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_variable_name] = ACTIONS(1004), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [942] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [aux_sym__simple_variable_name_token1] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [anon_sym_RPAREN] = ACTIONS(1356), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1358), - [anon_sym_AMP_GT] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_variable_name] = ACTIONS(1084), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [ts_builtin_sym_end] = ACTIONS(1084), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [943] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [aux_sym__simple_variable_name_token1] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [sym_file_descriptor] = ACTIONS(1412), - [anon_sym_AMP_GT] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [944] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [aux_sym__simple_variable_name_token1] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [anon_sym_RPAREN] = ACTIONS(1428), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [anon_sym_AMP_GT] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [aux_sym__simple_variable_name_token1] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [945] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [aux_sym__simple_variable_name_token1] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1659), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [sym_file_descriptor] = ACTIONS(1661), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1152), + [aux_sym__simple_variable_name_token1] = ACTIONS(1152), + [anon_sym_GT] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [946] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [aux_sym__simple_variable_name_token1] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [sym_file_descriptor] = ACTIONS(1673), - [anon_sym_AMP_GT] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [sym_string] = STATE(933), + [sym_word] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(2822), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(2822), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(2826), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2824), + [sym_variable_name] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_GT] = ACTIONS(1300), + [aux_sym__simple_variable_name_token1] = ACTIONS(2822), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2822), + [anon_sym_DOLLAR] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [947] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [aux_sym__simple_variable_name_token1] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [sym_file_descriptor] = ACTIONS(1683), - [anon_sym_AMP_GT] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - }, - [948] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [aux_sym__simple_variable_name_token1] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [anon_sym_RPAREN] = ACTIONS(1685), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [sym_file_descriptor] = ACTIONS(1687), - [anon_sym_AMP_GT] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), - }, - [949] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [aux_sym__simple_variable_name_token1] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [sym_file_descriptor] = ACTIONS(1870), - [anon_sym_AMP_GT] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_variable_name] = ACTIONS(1360), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), + }, + [948] = { + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [aux_sym__simple_variable_name_token1] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), + }, + [949] = { + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [aux_sym__simple_variable_name_token1] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [950] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [aux_sym__simple_variable_name_token1] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [aux_sym__simple_variable_name_token1] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [951] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [aux_sym__simple_variable_name_token1] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1878), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [aux_sym__simple_variable_name_token1] = ACTIONS(1719), + [anon_sym_GT] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [952] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [aux_sym__simple_variable_name_token1] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [anon_sym_RPAREN] = ACTIONS(1725), + [aux_sym__simple_variable_name_token1] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [953] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [aux_sym__simple_variable_name_token1] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [anon_sym_RPAREN] = ACTIONS(1957), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [sym_file_descriptor] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1735), + [aux_sym__simple_variable_name_token1] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [954] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [aux_sym__simple_variable_name_token1] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1961), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [sym_file_descriptor] = ACTIONS(1963), - [anon_sym_AMP_GT] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_RPAREN] = ACTIONS(1747), + [aux_sym__simple_variable_name_token1] = ACTIONS(1747), + [anon_sym_GT] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [955] = { - [aux_sym_concatenation_repeat1] = STATE(957), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [ts_builtin_sym_end] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [aux_sym__simple_variable_name_token1] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [956] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [sym_variable_name] = ACTIONS(441), - [sym_file_descriptor] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [ts_builtin_sym_end] = ACTIONS(441), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1894), + [aux_sym__simple_variable_name_token1] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [957] = { - [aux_sym_concatenation_repeat1] = STATE(969), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [sym_variable_name] = ACTIONS(479), - [sym_file_descriptor] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [ts_builtin_sym_end] = ACTIONS(479), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1900), + [aux_sym__simple_variable_name_token1] = ACTIONS(1900), + [anon_sym_GT] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [958] = { - [anon_sym_COLON_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_number] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(507), - [anon_sym_RBRACE] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_COLON_QMARK] = ACTIONS(505), - [anon_sym_EQ] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(505), - [anon_sym_POUND] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_raw_string] = ACTIONS(507), - [anon_sym_DOLLAR] = ACTIONS(505), + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1906), + [aux_sym__simple_variable_name_token1] = ACTIONS(1906), + [anon_sym_GT] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [959] = { - [anon_sym_COLON_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(511), - [sym_number] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(511), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_COLON_QMARK] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(509), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(511), - [sym_raw_string] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(509), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [aux_sym__simple_variable_name_token1] = ACTIONS(1971), + [anon_sym_GT] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [960] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [sym_variable_name] = ACTIONS(515), - [sym_file_descriptor] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_AMP_GT] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [ts_builtin_sym_end] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [aux_sym__simple_variable_name_token1] = ACTIONS(1975), + [anon_sym_GT] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [961] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [ts_builtin_sym_end] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(962), + [anon_sym_RBRACK] = ACTIONS(189), + [sym__concat] = ACTIONS(189), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(185), }, [962] = { - [aux_sym__literal_repeat1] = STATE(962), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_variable_name] = ACTIONS(813), - [sym_file_descriptor] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(2826), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(971), + [anon_sym_RBRACK] = ACTIONS(439), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(2830), }, [963] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [sym_variable_name] = ACTIONS(933), - [sym_file_descriptor] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [ts_builtin_sym_end] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [anon_sym_RBRACK] = ACTIONS(527), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(527), }, [964] = { - [anon_sym_COLON_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(969), - [sym_number] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_COLON_QMARK] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(969), - [sym_raw_string] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [sym_variable_name] = ACTIONS(587), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [ts_builtin_sym_end] = ACTIONS(587), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [965] = { - [anon_sym_COLON_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(973), - [sym_number] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_COLON_QMARK] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(973), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PERCENT] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(973), - [sym_raw_string] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), + [sym_word] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [sym_variable_name] = ACTIONS(591), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [ts_builtin_sym_end] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [966] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [sym_variable_name] = ACTIONS(977), - [sym_file_descriptor] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_AMP_GT] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [ts_builtin_sym_end] = ACTIONS(977), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_RBRACK] = ACTIONS(595), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(595), }, [967] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(189), + [sym__concat] = ACTIONS(189), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(185), }, [968] = { - [sym_expansion] = STATE(967), - [sym_string_expansion] = STATE(967), - [sym_simple_expansion] = STATE(967), - [sym_string] = STATE(967), - [sym_command_substitution] = STATE(967), - [sym_process_substitution] = STATE(967), - [sym_arithmetic_expansion] = STATE(967), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(2829), - [sym__special_character] = ACTIONS(2831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), - [anon_sym_DQUOTE] = ACTIONS(601), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(611), - [sym_raw_string] = ACTIONS(2831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(605), - [sym_word] = ACTIONS(2829), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(2833), - [sym_ansii_c_string] = ACTIONS(2831), + [aux_sym__literal_repeat1] = STATE(968), + [anon_sym_RBRACK] = ACTIONS(822), + [sym__concat] = ACTIONS(822), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(2832), }, [969] = { - [aux_sym_concatenation_repeat1] = STATE(969), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(2835), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(935), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(935), }, [970] = { - [anon_sym_COLON_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1034), - [sym_number] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_QMARK] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1034), - [anon_sym_COLON] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(1034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PERCENT] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1032), + [sym_expansion] = STATE(969), + [sym_string_expansion] = STATE(969), + [sym_simple_expansion] = STATE(969), + [sym_string] = STATE(969), + [sym_command_substitution] = STATE(969), + [sym_process_substitution] = STATE(969), + [sym_arithmetic_expansion] = STATE(969), + [sym_number] = ACTIONS(1386), + [sym_raw_string] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(2835), + [anon_sym_LT_LPAREN] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(565), + [sym_ansii_c_string] = ACTIONS(1384), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(567), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), + [sym__special_character] = ACTIONS(1384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [anon_sym_BQUOTE] = ACTIONS(575), + [sym_word] = ACTIONS(1386), }, [971] = { - [anon_sym_COLON_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1088), - [sym_number] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_COLON_QMARK] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1086), - [anon_sym_POUND] = ACTIONS(1088), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_raw_string] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(971), + [anon_sym_RBRACK] = ACTIONS(935), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(2837), }, [972] = { - [anon_sym_COLON_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(973), - [sym_number] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_COLON_QMARK] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(973), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PERCENT] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(973), - [sym_raw_string] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [973] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_variable_name] = ACTIONS(1298), - [sym_file_descriptor] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym_variable_name] = ACTIONS(974), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [ts_builtin_sym_end] = ACTIONS(974), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [974] = { - [sym_string] = STATE(960), - [anon_sym_0] = ACTIONS(2838), - [anon_sym_AT] = ACTIONS(2838), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym__] = ACTIONS(2838), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2842), - [sym_variable_name] = ACTIONS(1312), - [sym_file_descriptor] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_AMP_GT] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [anon_sym_RBRACK] = ACTIONS(1004), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1004), }, [975] = { - [anon_sym_COLON_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1358), - [sym_number] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_COLON_QMARK] = ACTIONS(1356), - [anon_sym_EQ] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1358), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1358), - [sym_raw_string] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1084), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1084), }, [976] = { - [anon_sym_COLON_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1412), - [sym_number] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_COLON_QMARK] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1412), - [anon_sym_COLON] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_raw_string] = ACTIONS(1412), - [anon_sym_DOLLAR] = ACTIONS(1410), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [977] = { - [anon_sym_COLON_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1430), - [sym_number] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_COLON_QMARK] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1430), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_raw_string] = ACTIONS(1430), - [anon_sym_DOLLAR] = ACTIONS(1428), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1132), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [ts_builtin_sym_end] = ACTIONS(1132), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [978] = { - [anon_sym_COLON_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1661), - [sym_number] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_COLON_QMARK] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1661), - [anon_sym_COLON] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(1661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PERCENT] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1661), - [sym_raw_string] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1154), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(1154), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [979] = { - [anon_sym_COLON_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1673), - [sym_number] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_COLON_QMARK] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1673), - [anon_sym_COLON] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(1673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PERCENT] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1673), - [sym_raw_string] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1671), + [sym_string] = STATE(966), + [anon_sym_QMARK] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_RBRACK] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym__] = ACTIONS(2844), + [sym_raw_string] = ACTIONS(2846), + [anon_sym_DOLLAR] = ACTIONS(2842), + [sym__concat] = ACTIONS(1306), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_0] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(2840), }, [980] = { - [anon_sym_COLON_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1683), - [sym_number] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_COLON_QMARK] = ACTIONS(1681), - [anon_sym_EQ] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1683), - [anon_sym_COLON] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(1683), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PERCENT] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1683), - [sym_raw_string] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_RBRACK] = ACTIONS(1360), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1360), }, [981] = { - [anon_sym_COLON_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1687), - [sym_number] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_COLON_QMARK] = ACTIONS(1685), - [anon_sym_EQ] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1687), - [anon_sym_COLON] = ACTIONS(1685), - [anon_sym_POUND] = ACTIONS(1687), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PERCENT] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1687), - [sym_raw_string] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_variable_name] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), }, [982] = { - [anon_sym_COLON_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1870), - [sym_number] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1870), - [anon_sym_DQUOTE] = ACTIONS(1870), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_COLON_QMARK] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1870), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PERCENT] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1870), - [sym_raw_string] = ACTIONS(1870), - [anon_sym_DOLLAR] = ACTIONS(1868), + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_variable_name] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [ts_builtin_sym_end] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [983] = { - [anon_sym_COLON_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_number] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_COLON_QMARK] = ACTIONS(1874), - [anon_sym_EQ] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1876), - [anon_sym_COLON] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PERCENT] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1876), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1874), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_variable_name] = ACTIONS(1488), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [ts_builtin_sym_end] = ACTIONS(1488), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [984] = { - [anon_sym_COLON_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1880), - [sym_number] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1880), - [anon_sym_DQUOTE] = ACTIONS(1880), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_COLON_QMARK] = ACTIONS(1878), - [anon_sym_EQ] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1880), - [anon_sym_COLON] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1880), - [sym_raw_string] = ACTIONS(1880), - [anon_sym_DOLLAR] = ACTIONS(1878), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym_variable_name] = ACTIONS(1721), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(1721), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [985] = { - [anon_sym_COLON_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_number] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_COLON_QMARK] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_variable_name] = ACTIONS(1727), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [ts_builtin_sym_end] = ACTIONS(1727), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [986] = { - [anon_sym_COLON_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_number] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_COLON_QMARK] = ACTIONS(1957), - [anon_sym_EQ] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1959), - [anon_sym_COLON] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1959), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym_variable_name] = ACTIONS(1737), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [ts_builtin_sym_end] = ACTIONS(1737), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [987] = { - [anon_sym_COLON_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1963), - [sym_number] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_COLON_QMARK] = ACTIONS(1961), - [anon_sym_EQ] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(1963), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1963), - [sym_raw_string] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym_variable_name] = ACTIONS(1749), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [ts_builtin_sym_end] = ACTIONS(1749), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [988] = { - [aux_sym_concatenation_repeat1] = STATE(990), - [anon_sym_RBRACK] = ACTIONS(287), - [sym__special_character] = ACTIONS(285), - [sym__concat] = ACTIONS(287), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1892), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [989] = { - [anon_sym_RBRACK] = ACTIONS(441), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(441), + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_variable_name] = ACTIONS(1896), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1896), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [990] = { - [aux_sym_concatenation_repeat1] = STATE(1002), - [anon_sym_RBRACK] = ACTIONS(479), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(2846), + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym_variable_name] = ACTIONS(1902), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1902), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [991] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [sym_variable_name] = ACTIONS(507), - [sym_file_descriptor] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_AMP_GT] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [ts_builtin_sym_end] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_variable_name] = ACTIONS(1908), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1908), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [992] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [sym_variable_name] = ACTIONS(511), - [sym_file_descriptor] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_AMP_GT] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [ts_builtin_sym_end] = ACTIONS(511), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_variable_name] = ACTIONS(1973), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [ts_builtin_sym_end] = ACTIONS(1973), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [993] = { - [anon_sym_RBRACK] = ACTIONS(515), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(515), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym_variable_name] = ACTIONS(1977), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [ts_builtin_sym_end] = ACTIONS(1977), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [994] = { - [anon_sym_RBRACK] = ACTIONS(287), - [sym__special_character] = ACTIONS(285), - [sym__concat] = ACTIONS(287), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(995), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [sym_test_operator] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_GT_EQ] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), }, [995] = { - [aux_sym__literal_repeat1] = STATE(995), - [anon_sym_RBRACK] = ACTIONS(813), - [sym__special_character] = ACTIONS(2848), - [sym__concat] = ACTIONS(813), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1004), + [anon_sym_BANG_EQ] = ACTIONS(435), + [anon_sym_PLUS_EQ] = ACTIONS(435), + [sym_test_operator] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(435), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DASH_DASH] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_EQ_TILDE] = ACTIONS(435), + [anon_sym_PLUS_PLUS] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_LT_EQ] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(435), }, [996] = { - [anon_sym_RBRACK] = ACTIONS(933), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(525), + [sym_test_operator] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(525), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(525), + [anon_sym_EQ_EQ] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_GT_EQ] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_EQ_TILDE] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_LT_EQ] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_DASH_EQ] = ACTIONS(525), }, [997] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [sym_variable_name] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [ts_builtin_sym_end] = ACTIONS(969), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(587), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(587), }, [998] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_RBRACK] = ACTIONS(591), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(591), }, [999] = { - [anon_sym_RBRACK] = ACTIONS(977), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(977), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(593), + [sym_test_operator] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(593), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_GT_EQ] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_EQ_TILDE] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_DASH_EQ] = ACTIONS(593), }, [1000] = { - [anon_sym_RBRACK] = ACTIONS(981), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [sym_test_operator] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_GT_EQ] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), }, [1001] = { - [sym_expansion] = STATE(1000), - [sym_string_expansion] = STATE(1000), - [sym_simple_expansion] = STATE(1000), - [sym_string] = STATE(1000), - [sym_command_substitution] = STATE(1000), - [sym_process_substitution] = STATE(1000), - [sym_arithmetic_expansion] = STATE(1000), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(617), - [sym_number] = ACTIONS(1460), - [sym__special_character] = ACTIONS(1464), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), - [anon_sym_BQUOTE] = ACTIONS(633), - [sym_raw_string] = ACTIONS(1464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), - [sym_word] = ACTIONS(1460), - [anon_sym_LT_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(2851), - [sym_ansii_c_string] = ACTIONS(1464), + [aux_sym__literal_repeat1] = STATE(1001), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_PLUS_EQ] = ACTIONS(817), + [sym_test_operator] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(817), + [sym__special_character] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_DASH_EQ] = ACTIONS(817), }, [1002] = { - [aux_sym_concatenation_repeat1] = STATE(1002), - [anon_sym_RBRACK] = ACTIONS(981), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(2853), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_PLUS_EQ] = ACTIONS(933), + [sym_test_operator] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_DASH_EQ] = ACTIONS(933), }, [1003] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_expansion] = STATE(1002), + [sym_string_expansion] = STATE(1002), + [sym_simple_expansion] = STATE(1002), + [sym_string] = STATE(1002), + [sym_command_substitution] = STATE(1002), + [sym_process_substitution] = STATE(1002), + [sym_arithmetic_expansion] = STATE(1002), + [sym_number] = ACTIONS(2853), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [anon_sym_LT_LPAREN] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_ansii_c_string] = ACTIONS(2855), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [sym__special_character] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2403), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2407), + [anon_sym_BQUOTE] = ACTIONS(2401), + [sym_word] = ACTIONS(2853), }, [1004] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [sym_variable_name] = ACTIONS(1088), - [sym_file_descriptor] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_AMP_GT] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [ts_builtin_sym_end] = ACTIONS(1088), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), - }, - [1005] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), - }, - [1006] = { - [anon_sym_RBRACK] = ACTIONS(1298), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1298), - }, + [aux_sym_concatenation_repeat1] = STATE(1004), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_PLUS_EQ] = ACTIONS(933), + [sym_test_operator] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_DASH_EQ] = ACTIONS(933), + }, + [1005] = { + [anon_sym_RBRACK] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(944), + }, + [1006] = { + [anon_sym_RBRACK] = ACTIONS(974), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(974), + }, [1007] = { - [sym_string] = STATE(993), - [anon_sym_0] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [sym__concat] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(2860), - [aux_sym__simple_variable_name_token1] = ACTIONS(2856), - [anon_sym__] = ACTIONS(2856), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_PLUS_EQ] = ACTIONS(1002), + [sym_test_operator] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_LT] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_DASH_EQ] = ACTIONS(1002), }, [1008] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [sym_variable_name] = ACTIONS(1358), - [sym_file_descriptor] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1082), + [anon_sym_PLUS_EQ] = ACTIONS(1082), + [sym_test_operator] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_GT_EQ] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_DASH_EQ] = ACTIONS(1082), }, [1009] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [sym_variable_name] = ACTIONS(1412), - [sym_file_descriptor] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_AMP_GT] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [anon_sym_RBRACK] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(944), }, [1010] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [sym_variable_name] = ACTIONS(1430), - [sym_file_descriptor] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1132), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1132), }, [1011] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [sym_variable_name] = ACTIONS(1661), - [sym_file_descriptor] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [ts_builtin_sym_end] = ACTIONS(1661), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [anon_sym_RBRACK] = ACTIONS(1154), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1154), }, [1012] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [sym_variable_name] = ACTIONS(1673), - [sym_file_descriptor] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_AMP_GT] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [ts_builtin_sym_end] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [sym_string] = STATE(999), + [anon_sym_QMARK] = ACTIONS(2862), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2864), + [sym_raw_string] = ACTIONS(2866), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(611), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_BANG] = ACTIONS(2864), + [aux_sym__simple_variable_name_token1] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(1300), + [sym_test_operator] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(2862), }, [1013] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [sym_variable_name] = ACTIONS(1683), - [sym_file_descriptor] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), }, [1014] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [sym_variable_name] = ACTIONS(1687), - [sym_file_descriptor] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_AMP_GT] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_RBRACK] = ACTIONS(1428), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1428), }, [1015] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [sym_variable_name] = ACTIONS(1870), - [sym_file_descriptor] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [anon_sym_RBRACK] = ACTIONS(1476), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1476), }, [1016] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [sym_variable_name] = ACTIONS(1876), - [sym_file_descriptor] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [ts_builtin_sym_end] = ACTIONS(1876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [anon_sym_RBRACK] = ACTIONS(1488), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1488), }, [1017] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [sym_variable_name] = ACTIONS(1880), - [sym_file_descriptor] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [ts_builtin_sym_end] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_RBRACK] = ACTIONS(1721), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1721), }, [1018] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1727), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1727), }, [1019] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [sym_variable_name] = ACTIONS(1959), - [sym_file_descriptor] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_AMP_GT] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [anon_sym_RBRACK] = ACTIONS(1737), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1737), }, [1020] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [sym_variable_name] = ACTIONS(1963), - [sym_file_descriptor] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_AMP_GT] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [ts_builtin_sym_end] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1749), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1749), }, [1021] = { - [aux_sym_concatenation_repeat1] = STATE(1023), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [sym_test_operator] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(285), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_GT_EQ] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [sym__concat] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_EQ_TILDE] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), + [anon_sym_RBRACK] = ACTIONS(1892), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1892), }, [1022] = { - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [sym_test_operator] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_EQ_TILDE] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), + [anon_sym_RBRACK] = ACTIONS(1896), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1896), }, [1023] = { - [aux_sym_concatenation_repeat1] = STATE(1035), - [anon_sym_BANG_EQ] = ACTIONS(475), - [anon_sym_PLUS_EQ] = ACTIONS(475), - [sym_test_operator] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(475), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_PLUS_PLUS] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_EQ] = ACTIONS(475), - [anon_sym_EQ_EQ] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_GT_EQ] = ACTIONS(475), - [sym__concat] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_EQ_TILDE] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_LT_EQ] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_DASH_EQ] = ACTIONS(475), + [anon_sym_RBRACK] = ACTIONS(1902), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1902), }, [1024] = { - [anon_sym_RBRACK] = ACTIONS(507), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(1908), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1908), }, [1025] = { - [anon_sym_RBRACK] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(1973), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1973), }, [1026] = { - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_PLUS_EQ] = ACTIONS(513), - [sym_test_operator] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(513), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_PLUS_PLUS] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DASH] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_DASH_DASH] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_DASH_EQ] = ACTIONS(513), + [anon_sym_RBRACK] = ACTIONS(1977), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(1977), }, [1027] = { - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_PLUS_EQ] = ACTIONS(285), - [sym_test_operator] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(285), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_GT_EQ] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_EQ_TILDE] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_DASH_EQ] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1028), + [anon_sym_COLON_QMARK] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_POUND] = ACTIONS(189), + [sym__special_character] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(185), + [sym_raw_string] = ACTIONS(189), + [anon_sym_PERCENT] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(185), + [sym__concat] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [sym_word] = ACTIONS(185), }, [1028] = { - [aux_sym__literal_repeat1] = STATE(1028), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_PLUS_EQ] = ACTIONS(811), - [sym_test_operator] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_PLUS_PLUS] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [sym__special_character] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(811), - [anon_sym_DASH_DASH] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_DASH_EQ] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1037), + [anon_sym_COLON_QMARK] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(439), + [sym__special_character] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_COLON] = ACTIONS(435), + [anon_sym_EQ] = ACTIONS(435), + [sym_raw_string] = ACTIONS(439), + [anon_sym_PERCENT] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(435), + [sym__concat] = ACTIONS(2868), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(435), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [sym_word] = ACTIONS(435), }, [1029] = { - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [sym_test_operator] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_EQ_TILDE] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_COLON_QMARK] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(527), + [sym_ansii_c_string] = ACTIONS(527), + [anon_sym_DQUOTE] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(527), + [sym__special_character] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_COLON] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(525), + [sym_raw_string] = ACTIONS(527), + [anon_sym_PERCENT] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(527), + [anon_sym_DOLLAR] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(525), + [anon_sym_GT_LPAREN] = ACTIONS(527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(527), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(527), + [sym_word] = ACTIONS(525), }, [1030] = { - [anon_sym_RBRACK] = ACTIONS(969), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(969), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), + [sym_test_operator] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_EQ_TILDE] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_DASH_EQ] = ACTIONS(585), }, [1031] = { - [anon_sym_RBRACK] = ACTIONS(973), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(589), + [sym_test_operator] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_EQ_TILDE] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_DASH_EQ] = ACTIONS(589), }, [1032] = { - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [sym_test_operator] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), + [anon_sym_COLON_QMARK] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_POUND] = ACTIONS(595), + [sym__special_character] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_COLON] = ACTIONS(593), + [anon_sym_EQ] = ACTIONS(593), + [sym_raw_string] = ACTIONS(595), + [anon_sym_PERCENT] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(593), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [sym_word] = ACTIONS(593), }, [1033] = { - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_PLUS_EQ] = ACTIONS(979), - [sym_test_operator] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_COLON_QMARK] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_POUND] = ACTIONS(189), + [sym__special_character] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(185), + [sym_raw_string] = ACTIONS(189), + [anon_sym_PERCENT] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [sym_word] = ACTIONS(185), }, [1034] = { - [sym_expansion] = STATE(1033), - [sym_string_expansion] = STATE(1033), - [sym_simple_expansion] = STATE(1033), - [sym_string] = STATE(1033), - [sym_command_substitution] = STATE(1033), - [sym_process_substitution] = STATE(1033), - [sym_arithmetic_expansion] = STATE(1033), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(2385), - [sym_number] = ACTIONS(2869), - [sym__special_character] = ACTIONS(2871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2389), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2391), - [anon_sym_BQUOTE] = ACTIONS(2397), - [sym_raw_string] = ACTIONS(2871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [sym_word] = ACTIONS(2869), - [anon_sym_LT_LPAREN] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2873), - [sym_ansii_c_string] = ACTIONS(2871), + [aux_sym__literal_repeat1] = STATE(1034), + [anon_sym_COLON_QMARK] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(822), + [sym_ansii_c_string] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(822), + [sym__special_character] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_COLON] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(817), + [sym_raw_string] = ACTIONS(822), + [anon_sym_PERCENT] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(822), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(822), + [sym_word] = ACTIONS(817), }, [1035] = { - [aux_sym_concatenation_repeat1] = STATE(1035), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_PLUS_EQ] = ACTIONS(979), - [sym_test_operator] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(979), - [sym__concat] = ACTIONS(2875), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_COLON_QMARK] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(935), + [sym_ansii_c_string] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + [sym__special_character] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_COLON] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(933), + [sym_raw_string] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(935), + [sym_word] = ACTIONS(933), }, [1036] = { - [anon_sym_RBRACK] = ACTIONS(1034), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1034), + [sym_expansion] = STATE(1035), + [sym_string_expansion] = STATE(1035), + [sym_simple_expansion] = STATE(1035), + [sym_string] = STATE(1035), + [sym_command_substitution] = STATE(1035), + [sym_process_substitution] = STATE(1035), + [sym_arithmetic_expansion] = STATE(1035), + [sym_number] = ACTIONS(2873), + [sym_raw_string] = ACTIONS(2875), + [anon_sym_DOLLAR] = ACTIONS(2877), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_ansii_c_string] = ACTIONS(2875), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [sym__special_character] = ACTIONS(2875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_word] = ACTIONS(2873), }, [1037] = { - [anon_sym_RBRACK] = ACTIONS(1088), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1088), + [aux_sym_concatenation_repeat1] = STATE(1037), + [anon_sym_COLON_QMARK] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(935), + [sym_ansii_c_string] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + [sym__special_character] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_COLON] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(933), + [sym_raw_string] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(933), + [sym__concat] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(935), + [sym_word] = ACTIONS(933), }, [1038] = { - [anon_sym_RBRACK] = ACTIONS(973), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_PLUS_EQ] = ACTIONS(942), + [sym_test_operator] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_DASH_EQ] = ACTIONS(942), }, [1039] = { - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [sym_test_operator] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(972), + [anon_sym_PLUS_EQ] = ACTIONS(972), + [sym_test_operator] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_LT] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_EQ_TILDE] = ACTIONS(972), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_LT_EQ] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_DASH_EQ] = ACTIONS(972), }, [1040] = { - [sym_string] = STATE(1026), - [anon_sym_0] = ACTIONS(2878), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_POUND] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2878), - [aux_sym__simple_variable_name_token1] = ACTIONS(2878), - [anon_sym__] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(2880), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [sym_test_operator] = ACTIONS(1308), + [anon_sym_COLON_QMARK] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1004), + [sym_ansii_c_string] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(1004), + [sym__special_character] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_COLON] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1004), + [anon_sym_PERCENT] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1002), + [anon_sym_GT_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1004), + [sym_word] = ACTIONS(1002), }, [1041] = { - [anon_sym_RBRACK] = ACTIONS(1358), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1358), + [anon_sym_COLON_QMARK] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1084), + [sym_ansii_c_string] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1084), + [sym__special_character] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_COLON] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1084), + [anon_sym_PERCENT] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1082), + [anon_sym_GT_LPAREN] = ACTIONS(1084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1084), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1084), + [sym_word] = ACTIONS(1082), }, [1042] = { - [anon_sym_RBRACK] = ACTIONS(1412), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1412), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_PLUS_EQ] = ACTIONS(942), + [sym_test_operator] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_DASH_EQ] = ACTIONS(942), }, [1043] = { - [anon_sym_RBRACK] = ACTIONS(1430), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1430), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [sym_test_operator] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_EQ_TILDE] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), }, [1044] = { - [anon_sym_RBRACK] = ACTIONS(1661), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1152), + [anon_sym_PLUS_EQ] = ACTIONS(1152), + [sym_test_operator] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_EQ] = ACTIONS(1152), + [anon_sym_EQ_EQ] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_GT_EQ] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_EQ_TILDE] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_LT_EQ] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_DASH_EQ] = ACTIONS(1152), }, [1045] = { - [anon_sym_RBRACK] = ACTIONS(1673), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1673), + [sym_string] = STATE(1032), + [anon_sym_QMARK] = ACTIONS(2882), + [sym__special_character] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_COLON] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(2886), + [sym_number] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2882), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2882), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_COLON_QMARK] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [sym_ansii_c_string] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2884), + [aux_sym__simple_variable_name_token1] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym__] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_COLON_DASH] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(2882), + [sym_word] = ACTIONS(1300), }, [1046] = { - [anon_sym_RBRACK] = ACTIONS(1683), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1683), + [anon_sym_COLON_QMARK] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1360), + [sym_ansii_c_string] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1360), + [sym__special_character] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1360), + [sym_word] = ACTIONS(1358), }, [1047] = { - [anon_sym_RBRACK] = ACTIONS(1687), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1426), + [anon_sym_PLUS_EQ] = ACTIONS(1426), + [sym_test_operator] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_EQ_EQ] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_GT_EQ] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_EQ_TILDE] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_LT_EQ] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_DASH_EQ] = ACTIONS(1426), }, [1048] = { - [anon_sym_RBRACK] = ACTIONS(1870), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1870), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [sym_test_operator] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_EQ_TILDE] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), }, [1049] = { - [anon_sym_RBRACK] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1876), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [sym_test_operator] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_EQ_TILDE] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), }, [1050] = { - [anon_sym_RBRACK] = ACTIONS(1880), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1880), + [anon_sym_BANG_EQ] = ACTIONS(1719), + [anon_sym_PLUS_EQ] = ACTIONS(1719), + [sym_test_operator] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1719), + [anon_sym_EQ_EQ] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_GT_EQ] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_EQ_TILDE] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_LT_EQ] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_DASH_EQ] = ACTIONS(1719), }, [1051] = { - [anon_sym_RBRACK] = ACTIONS(1886), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1886), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_PLUS_EQ] = ACTIONS(1725), + [sym_test_operator] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DASH_DASH] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_EQ] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_DASH_EQ] = ACTIONS(1725), }, [1052] = { - [anon_sym_RBRACK] = ACTIONS(1959), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_PLUS_EQ] = ACTIONS(1735), + [sym_test_operator] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_EQ_TILDE] = ACTIONS(1735), + [anon_sym_PLUS_PLUS] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_DASH_EQ] = ACTIONS(1735), }, [1053] = { - [anon_sym_RBRACK] = ACTIONS(1963), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(1963), + [anon_sym_BANG_EQ] = ACTIONS(1747), + [anon_sym_PLUS_EQ] = ACTIONS(1747), + [sym_test_operator] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_EQ] = ACTIONS(1747), + [anon_sym_EQ_EQ] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_GT_EQ] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_EQ_TILDE] = ACTIONS(1747), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_LT_EQ] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_DASH_EQ] = ACTIONS(1747), }, [1054] = { - [aux_sym_concatenation_repeat1] = STATE(1056), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [ts_builtin_sym_end] = ACTIONS(287), - [sym__concat] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(1890), + [anon_sym_PLUS_EQ] = ACTIONS(1890), + [sym_test_operator] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_EQ_EQ] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_GT_EQ] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_LT_EQ] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_DASH_EQ] = ACTIONS(1890), }, [1055] = { - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [sym_file_descriptor] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [ts_builtin_sym_end] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(1894), + [anon_sym_PLUS_EQ] = ACTIONS(1894), + [sym_test_operator] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_GT_EQ] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_EQ_TILDE] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_DASH_EQ] = ACTIONS(1894), }, [1056] = { - [aux_sym_concatenation_repeat1] = STATE(1068), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [ts_builtin_sym_end] = ACTIONS(479), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [sym__concat] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_BANG_EQ] = ACTIONS(1900), + [anon_sym_PLUS_EQ] = ACTIONS(1900), + [sym_test_operator] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_GT_EQ] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_EQ_TILDE] = ACTIONS(1900), + [anon_sym_PLUS_PLUS] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_DASH_EQ] = ACTIONS(1900), }, [1057] = { - [anon_sym_BANG_EQ] = ACTIONS(505), - [anon_sym_PLUS_EQ] = ACTIONS(505), - [sym_test_operator] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_EQ] = ACTIONS(505), - [anon_sym_EQ_EQ] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_GT_EQ] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_EQ_TILDE] = ACTIONS(505), - [anon_sym_DASH_DASH] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_LT_EQ] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_DASH_EQ] = ACTIONS(505), + [anon_sym_BANG_EQ] = ACTIONS(1906), + [anon_sym_PLUS_EQ] = ACTIONS(1906), + [sym_test_operator] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(1906), + [anon_sym_EQ_EQ] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_GT_EQ] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_EQ_TILDE] = ACTIONS(1906), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_LT_EQ] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_DASH_EQ] = ACTIONS(1906), }, [1058] = { - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(509), - [sym_test_operator] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_EQ_TILDE] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_DASH_EQ] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(1971), + [anon_sym_PLUS_EQ] = ACTIONS(1971), + [sym_test_operator] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_EQ_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_LT_EQ] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_DASH_EQ] = ACTIONS(1971), }, [1059] = { - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_AMP_GT] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [ts_builtin_sym_end] = ACTIONS(515), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [sym_test_operator] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_EQ_TILDE] = ACTIONS(1975), + [anon_sym_PLUS_PLUS] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_LT_EQ] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), }, [1060] = { - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [ts_builtin_sym_end] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1061), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [ts_builtin_sym_end] = ACTIONS(189), + [sym__concat] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1061] = { - [aux_sym__literal_repeat1] = STATE(1061), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [sym__special_character] = ACTIONS(2886), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1070), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [ts_builtin_sym_end] = ACTIONS(439), + [sym__concat] = ACTIONS(2890), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [1062] = { - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [sym_file_descriptor] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [ts_builtin_sym_end] = ACTIONS(933), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_PIPE] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [ts_builtin_sym_end] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [1063] = { - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [sym_test_operator] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_COLON_QMARK] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(587), + [sym_ansii_c_string] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [sym__special_character] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_COLON] = ACTIONS(585), + [anon_sym_EQ] = ACTIONS(585), + [sym_raw_string] = ACTIONS(587), + [anon_sym_PERCENT] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(585), + [anon_sym_GT_LPAREN] = ACTIONS(587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(587), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(587), + [sym_word] = ACTIONS(585), }, [1064] = { - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [sym_test_operator] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_COLON_QMARK] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(591), + [sym_ansii_c_string] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(591), + [anon_sym_POUND] = ACTIONS(591), + [sym__special_character] = ACTIONS(589), + [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_COLON] = ACTIONS(589), + [anon_sym_EQ] = ACTIONS(589), + [sym_raw_string] = ACTIONS(591), + [anon_sym_PERCENT] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(591), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(591), + [sym_word] = ACTIONS(589), }, [1065] = { - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [sym_file_descriptor] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_AMP_GT] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [1066] = { - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [ts_builtin_sym_end] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1067] = { - [sym_expansion] = STATE(1066), - [sym_string_expansion] = STATE(1066), - [sym_simple_expansion] = STATE(1066), - [sym_string] = STATE(1066), - [sym_command_substitution] = STATE(1066), - [sym_process_substitution] = STATE(1066), - [sym_arithmetic_expansion] = STATE(1066), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym_number] = ACTIONS(2889), - [sym__special_character] = ACTIONS(2891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), - [anon_sym_BQUOTE] = ACTIONS(715), - [sym_raw_string] = ACTIONS(2891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), - [sym_word] = ACTIONS(2889), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(2893), - [sym_ansii_c_string] = ACTIONS(2891), + [aux_sym__literal_repeat1] = STATE(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [sym__special_character] = ACTIONS(2892), + [anon_sym_LT_LT] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [ts_builtin_sym_end] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [1068] = { - [aux_sym_concatenation_repeat1] = STATE(1068), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [sym__concat] = ACTIONS(2895), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [ts_builtin_sym_end] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1069] = { - [anon_sym_BANG_EQ] = ACTIONS(1032), - [anon_sym_PLUS_EQ] = ACTIONS(1032), - [sym_test_operator] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [anon_sym_GT_EQ] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_LT_EQ] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_DASH_EQ] = ACTIONS(1032), + [sym_expansion] = STATE(1068), + [sym_string_expansion] = STATE(1068), + [sym_simple_expansion] = STATE(1068), + [sym_string] = STATE(1068), + [sym_command_substitution] = STATE(1068), + [sym_process_substitution] = STATE(1068), + [sym_arithmetic_expansion] = STATE(1068), + [sym_number] = ACTIONS(2895), + [sym_raw_string] = ACTIONS(2897), + [anon_sym_DOLLAR] = ACTIONS(2899), + [anon_sym_LT_LPAREN] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(711), + [sym_ansii_c_string] = ACTIONS(2897), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(713), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(717), + [sym__special_character] = ACTIONS(2897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(721), + [sym_word] = ACTIONS(2895), }, [1070] = { - [anon_sym_BANG_EQ] = ACTIONS(1086), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [sym_test_operator] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [anon_sym_GT_EQ] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_EQ_TILDE] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_LT_EQ] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - }, - [1071] = { - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [sym_test_operator] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), - }, - [1072] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [ts_builtin_sym_end] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), - }, - [1073] = { - [sym_string] = STATE(1059), - [anon_sym_0] = ACTIONS(2898), - [anon_sym_AT] = ACTIONS(2898), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym__] = ACTIONS(2898), - [anon_sym_DOLLAR] = ACTIONS(2902), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2902), - [sym_file_descriptor] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [ts_builtin_sym_end] = ACTIONS(1312), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [aux_sym_concatenation_repeat1] = STATE(1070), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [sym__concat] = ACTIONS(2901), + [ts_builtin_sym_end] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + }, + [1071] = { + [anon_sym_COLON_QMARK] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(944), + [sym_ansii_c_string] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [anon_sym_POUND] = ACTIONS(944), + [sym__special_character] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [sym_raw_string] = ACTIONS(944), + [anon_sym_PERCENT] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), + [sym_word] = ACTIONS(942), + }, + [1072] = { + [anon_sym_COLON_QMARK] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(974), + [sym_ansii_c_string] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(974), + [sym__special_character] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_COLON] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(972), + [sym_raw_string] = ACTIONS(974), + [anon_sym_PERCENT] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(974), + [sym_word] = ACTIONS(972), + }, + [1073] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [ts_builtin_sym_end] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [1074] = { - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1356), - [sym_test_operator] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_DASH_EQ] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [1075] = { - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_PLUS_EQ] = ACTIONS(1410), - [sym_test_operator] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_DASH_EQ] = ACTIONS(1410), + [anon_sym_COLON_QMARK] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(944), + [sym_ansii_c_string] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [anon_sym_POUND] = ACTIONS(944), + [sym__special_character] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(942), + [sym_raw_string] = ACTIONS(944), + [anon_sym_PERCENT] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), + [sym_word] = ACTIONS(942), }, [1076] = { - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [sym_test_operator] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_GT_EQ] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_EQ_TILDE] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), + [anon_sym_COLON_QMARK] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1132), + [sym_ansii_c_string] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [anon_sym_POUND] = ACTIONS(1132), + [sym__special_character] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_COLON] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1132), + [anon_sym_PERCENT] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1132), + [anon_sym_DOLLAR] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1132), + [sym_word] = ACTIONS(1130), }, [1077] = { - [anon_sym_BANG_EQ] = ACTIONS(1659), - [anon_sym_PLUS_EQ] = ACTIONS(1659), - [sym_test_operator] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(1659), - [anon_sym_EQ_EQ] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [anon_sym_GT_EQ] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_EQ_TILDE] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_LT_EQ] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_DASH_EQ] = ACTIONS(1659), + [anon_sym_COLON_QMARK] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1154), + [sym_ansii_c_string] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(1154), + [anon_sym_POUND] = ACTIONS(1154), + [sym__special_character] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_COLON] = ACTIONS(1152), + [anon_sym_EQ] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1154), + [anon_sym_PERCENT] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1152), + [anon_sym_GT_LPAREN] = ACTIONS(1154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1154), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1154), + [sym_word] = ACTIONS(1152), }, [1078] = { - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_PLUS_EQ] = ACTIONS(1671), - [sym_test_operator] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [anon_sym_GT_EQ] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_DASH_EQ] = ACTIONS(1671), + [sym_string] = STATE(1065), + [anon_sym_QMARK] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2906), + [sym_raw_string] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2904), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [sym_file_descriptor] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(2904), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2904), + [anon_sym_AMP_GT] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1079] = { - [anon_sym_BANG_EQ] = ACTIONS(1681), - [anon_sym_PLUS_EQ] = ACTIONS(1681), - [sym_test_operator] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PLUS_PLUS] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_EQ] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_EQ_TILDE] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_DASH_EQ] = ACTIONS(1681), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), }, [1080] = { - [anon_sym_BANG_EQ] = ACTIONS(1685), - [anon_sym_PLUS_EQ] = ACTIONS(1685), - [sym_test_operator] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1685), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_PLUS_PLUS] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_EQ] = ACTIONS(1685), - [anon_sym_EQ_EQ] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [anon_sym_GT_EQ] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_EQ_TILDE] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_LT_EQ] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_DASH_EQ] = ACTIONS(1685), + [anon_sym_COLON_QMARK] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_COLON] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1426), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [sym_word] = ACTIONS(1426), }, [1081] = { - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_PLUS_EQ] = ACTIONS(1868), - [sym_test_operator] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_GT_EQ] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_DASH_EQ] = ACTIONS(1868), + [anon_sym_COLON_QMARK] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_COLON] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1474), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1476), + [sym_word] = ACTIONS(1474), }, [1082] = { - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_PLUS_EQ] = ACTIONS(1874), - [sym_test_operator] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_EQ] = ACTIONS(1874), - [anon_sym_EQ_EQ] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [anon_sym_GT_EQ] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_EQ_TILDE] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_LT_EQ] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_DASH_EQ] = ACTIONS(1874), + [anon_sym_COLON_QMARK] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1488), + [sym_ansii_c_string] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [sym__special_character] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_COLON] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1488), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1488), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1488), + [sym_word] = ACTIONS(1486), }, [1083] = { - [anon_sym_BANG_EQ] = ACTIONS(1878), - [anon_sym_PLUS_EQ] = ACTIONS(1878), - [sym_test_operator] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PLUS_PLUS] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [anon_sym_GT_EQ] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1721), + [sym_ansii_c_string] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(1721), + [sym__special_character] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1721), + [anon_sym_PERCENT] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_EQ_TILDE] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_LT_EQ] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_DASH_EQ] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1721), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1721), + [sym_word] = ACTIONS(1719), }, [1084] = { - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_PLUS_EQ] = ACTIONS(1884), - [sym_test_operator] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_GT_EQ] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_EQ_TILDE] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_LT_EQ] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_DASH_EQ] = ACTIONS(1884), + [anon_sym_COLON_QMARK] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1727), + [sym_ansii_c_string] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(1727), + [sym__special_character] = ACTIONS(1725), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_COLON] = ACTIONS(1725), + [anon_sym_EQ] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1725), + [anon_sym_GT_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1727), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1727), + [sym_word] = ACTIONS(1725), }, [1085] = { - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_PLUS_EQ] = ACTIONS(1957), - [sym_test_operator] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_EQ] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_EQ_TILDE] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_DASH_EQ] = ACTIONS(1957), + [anon_sym_COLON_QMARK] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1737), + [sym_ansii_c_string] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(1737), + [sym__special_character] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1737), + [anon_sym_PERCENT] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1735), + [anon_sym_GT_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1737), + [sym_word] = ACTIONS(1735), }, [1086] = { - [anon_sym_BANG_EQ] = ACTIONS(1961), - [anon_sym_PLUS_EQ] = ACTIONS(1961), - [sym_test_operator] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_EQ] = ACTIONS(1961), - [anon_sym_EQ_EQ] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [anon_sym_GT_EQ] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_EQ_TILDE] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_LT_EQ] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_DASH_EQ] = ACTIONS(1961), + [anon_sym_COLON_QMARK] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1749), + [sym_ansii_c_string] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(1749), + [sym__special_character] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_COLON] = ACTIONS(1747), + [anon_sym_EQ] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1749), + [anon_sym_PERCENT] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1747), + [anon_sym_GT_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1749), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1749), + [sym_word] = ACTIONS(1747), }, [1087] = { - [aux_sym_concatenation_repeat1] = STATE(1089), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(285), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_COLON_QMARK] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [sym_ansii_c_string] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(1892), + [sym__special_character] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_COLON] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_PERCENT] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1892), + [sym_word] = ACTIONS(1890), }, [1088] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [sym_variable_name] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(439), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [sym_file_descriptor] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), + [anon_sym_COLON_QMARK] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1896), + [sym_ansii_c_string] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1896), + [sym__special_character] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_EQ] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [anon_sym_COLON_DASH] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1896), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1896), + [sym_word] = ACTIONS(1894), }, [1089] = { - [aux_sym_concatenation_repeat1] = STATE(1101), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [sym_variable_name] = ACTIONS(479), - [anon_sym_RPAREN] = ACTIONS(475), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_AMP_GT] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_COLON_QMARK] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1902), + [sym_ansii_c_string] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1902), + [sym__special_character] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_COLON] = ACTIONS(1900), + [anon_sym_EQ] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1900), + [anon_sym_GT_LPAREN] = ACTIONS(1902), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1902), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1902), + [sym_word] = ACTIONS(1900), }, [1090] = { - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [sym_file_descriptor] = ACTIONS(507), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_AMP_GT] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [ts_builtin_sym_end] = ACTIONS(507), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [anon_sym_COLON_QMARK] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1908), + [sym_ansii_c_string] = ACTIONS(1908), + [anon_sym_DQUOTE] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [sym__special_character] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_COLON] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1908), + [anon_sym_DOLLAR] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1906), + [anon_sym_GT_LPAREN] = ACTIONS(1908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1908), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1908), + [sym_word] = ACTIONS(1906), }, [1091] = { - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_AMP_GT] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [ts_builtin_sym_end] = ACTIONS(511), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [anon_sym_COLON_QMARK] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1973), + [sym_ansii_c_string] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1973), + [sym__special_character] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_COLON] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1973), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1973), + [sym_word] = ACTIONS(1971), }, [1092] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [sym_variable_name] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(513), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), + [anon_sym_COLON_QMARK] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1977), + [sym_ansii_c_string] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(1977), + [sym__special_character] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_COLON] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1977), + [anon_sym_PERCENT] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1977), + [anon_sym_DOLLAR] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [anon_sym_COLON_DASH] = ACTIONS(1975), + [anon_sym_GT_LPAREN] = ACTIONS(1977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1977), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1977), + [sym_word] = ACTIONS(1975), }, [1093] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(285), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1094), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1094] = { - [aux_sym__literal_repeat1] = STATE(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_variable_name] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(811), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(2908), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1103), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(2912), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym_variable_name] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [1095] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [sym_variable_name] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(931), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [sym_file_descriptor] = ACTIONS(933), - [anon_sym_AMP_GT] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [sym_variable_name] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [1096] = { - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [ts_builtin_sym_end] = ACTIONS(969), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [ts_builtin_sym_end] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [1097] = { - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [ts_builtin_sym_end] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [1098] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [sym_variable_name] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(975), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [sym_file_descriptor] = ACTIONS(977), - [anon_sym_AMP_GT] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [sym_variable_name] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [1099] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(979), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1100] = { - [sym_expansion] = STATE(1099), - [sym_string] = STATE(1099), - [sym_command_substitution] = STATE(1099), - [sym_process_substitution] = STATE(1099), - [sym_simple_expansion] = STATE(1099), - [sym_arithmetic_expansion] = STATE(1099), - [sym_string_expansion] = STATE(1099), - [anon_sym_GT_LPAREN] = ACTIONS(2911), - [sym_number] = ACTIONS(2913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2919), - [sym_word] = ACTIONS(2913), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_LT_LPAREN] = ACTIONS(2911), - [sym_ansii_c_string] = ACTIONS(2923), - [sym__special_character] = ACTIONS(2923), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2925), - [sym_raw_string] = ACTIONS(2923), - [anon_sym_DOLLAR] = ACTIONS(2927), + [aux_sym__literal_repeat1] = STATE(1100), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym_variable_name] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [1101] = { - [aux_sym_concatenation_repeat1] = STATE(1101), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(979), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1102] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [ts_builtin_sym_end] = ACTIONS(1034), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_expansion] = STATE(1101), + [sym_string] = STATE(1101), + [sym_command_substitution] = STATE(1101), + [sym_process_substitution] = STATE(1101), + [sym_simple_expansion] = STATE(1101), + [sym_arithmetic_expansion] = STATE(1101), + [sym_string_expansion] = STATE(1101), + [anon_sym_LT_LPAREN] = ACTIONS(2917), + [sym_ansii_c_string] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__special_character] = ACTIONS(2919), + [anon_sym_BQUOTE] = ACTIONS(2923), + [sym_raw_string] = ACTIONS(2919), + [sym_number] = ACTIONS(2925), + [anon_sym_DOLLAR] = ACTIONS(2927), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2917), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2933), + [sym_word] = ACTIONS(2925), }, [1103] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [sym_file_descriptor] = ACTIONS(1088), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_AMP_GT] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [ts_builtin_sym_end] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(1103), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1104] = { - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [ts_builtin_sym_end] = ACTIONS(973), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [ts_builtin_sym_end] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1105] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_variable_name] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1296), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [ts_builtin_sym_end] = ACTIONS(974), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [1106] = { - [sym_string] = STATE(1092), - [anon_sym_0] = ACTIONS(2932), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2932), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym__] = ACTIONS(2932), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(2934), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [sym_variable_name] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1308), - [sym_word] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2938), - [anon_sym_LT_LT] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(2932), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2934), - [sym_file_descriptor] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(2932), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(2932), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_variable_name] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [1107] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [ts_builtin_sym_end] = ACTIONS(1358), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_variable_name] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [1108] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [sym_file_descriptor] = ACTIONS(1412), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_AMP_GT] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [ts_builtin_sym_end] = ACTIONS(1412), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [ts_builtin_sym_end] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1109] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [1110] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [sym_file_descriptor] = ACTIONS(1661), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_AMP_GT] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [ts_builtin_sym_end] = ACTIONS(1661), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [1111] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [sym_file_descriptor] = ACTIONS(1673), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_AMP_GT] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [ts_builtin_sym_end] = ACTIONS(1673), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), - }, - [1112] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [sym_file_descriptor] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [ts_builtin_sym_end] = ACTIONS(1683), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - }, - [1113] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [sym_file_descriptor] = ACTIONS(1687), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_AMP_GT] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [ts_builtin_sym_end] = ACTIONS(1687), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), - }, - [1114] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [sym_file_descriptor] = ACTIONS(1870), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), + [sym_string] = STATE(1098), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2938), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(2938), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2942), + [anon_sym_SEMI] = ACTIONS(1300), + [sym_variable_name] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2938), + [anon_sym_DOLLAR] = ACTIONS(2940), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(2944), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2940), + [sym_file_descriptor] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(2938), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + }, + [1112] = { + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_variable_name] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), + }, + [1113] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), + }, + [1114] = { + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [1115] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [ts_builtin_sym_end] = ACTIONS(1876), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [1116] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [ts_builtin_sym_end] = ACTIONS(1880), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [ts_builtin_sym_end] = ACTIONS(1721), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [1117] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [ts_builtin_sym_end] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [1118] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [sym_file_descriptor] = ACTIONS(1959), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_AMP_GT] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [ts_builtin_sym_end] = ACTIONS(1959), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [1119] = { - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [sym_file_descriptor] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [ts_builtin_sym_end] = ACTIONS(1963), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_PIPE] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [ts_builtin_sym_end] = ACTIONS(1749), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [1120] = { - [aux_sym_concatenation_repeat1] = STATE(1122), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [1121] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_RPAREN] = ACTIONS(439), - [sym_file_descriptor] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [anon_sym_esac] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [1122] = { - [aux_sym_concatenation_repeat1] = STATE(1134), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(2940), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_RPAREN] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(1902), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [1123] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [sym_variable_name] = ACTIONS(507), - [anon_sym_RPAREN] = ACTIONS(505), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [sym_file_descriptor] = ACTIONS(507), - [anon_sym_AMP_GT] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [1124] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [sym_variable_name] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(509), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_AMP_GT] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [ts_builtin_sym_end] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [1125] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_RPAREN] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_AMP_GT] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(513), - [anon_sym_esac] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [ts_builtin_sym_end] = ACTIONS(1977), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [1126] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_RPAREN] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [anon_sym_esac] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1127), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1127] = { - [aux_sym__literal_repeat1] = STATE(1127), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(2942), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_esac] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1136), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_RPAREN] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [1128] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [sym_file_descriptor] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_esac] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [anon_sym_esac] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [1129] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [sym_variable_name] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(967), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_AMP_GT] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [sym_variable_name] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [1130] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [sym_variable_name] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [1131] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [sym_file_descriptor] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_AMP_GT] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_esac] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_RPAREN] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [anon_sym_esac] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [1132] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [anon_sym_esac] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1133] = { - [sym_expansion] = STATE(1132), - [sym_string] = STATE(1132), - [sym_command_substitution] = STATE(1132), - [sym_process_substitution] = STATE(1132), - [sym_simple_expansion] = STATE(1132), - [sym_arithmetic_expansion] = STATE(1132), - [sym_string_expansion] = STATE(1132), - [anon_sym_GT_LPAREN] = ACTIONS(2945), - [sym_number] = ACTIONS(2947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), - [sym_word] = ACTIONS(2947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [anon_sym_LT_LPAREN] = ACTIONS(2945), - [sym_ansii_c_string] = ACTIONS(2957), - [sym__special_character] = ACTIONS(2957), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2959), - [sym_raw_string] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2961), + [aux_sym__literal_repeat1] = STATE(1133), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(2948), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_esac] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [1134] = { - [aux_sym_concatenation_repeat1] = STATE(1134), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [anon_sym_esac] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_esac] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1135] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1032), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_expansion] = STATE(1134), + [sym_string] = STATE(1134), + [sym_command_substitution] = STATE(1134), + [sym_process_substitution] = STATE(1134), + [sym_simple_expansion] = STATE(1134), + [sym_arithmetic_expansion] = STATE(1134), + [sym_string_expansion] = STATE(1134), + [anon_sym_LT_LPAREN] = ACTIONS(2951), + [sym_ansii_c_string] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym__special_character] = ACTIONS(2953), + [anon_sym_BQUOTE] = ACTIONS(2957), + [sym_raw_string] = ACTIONS(2953), + [sym_number] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2965), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2967), + [sym_word] = ACTIONS(2959), }, [1136] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [sym_variable_name] = ACTIONS(1088), - [anon_sym_RPAREN] = ACTIONS(1086), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [sym_file_descriptor] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(1136), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_esac] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1137] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1138] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [anon_sym_esac] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym_variable_name] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [1139] = { - [sym_string] = STATE(1125), - [anon_sym_0] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2966), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym__] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(1308), - [sym_file_descriptor] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_esac] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [1140] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [sym_variable_name] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1356), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1358), - [anon_sym_AMP_GT] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_esac] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [1141] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [sym_variable_name] = ACTIONS(1412), - [anon_sym_RPAREN] = ACTIONS(1410), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [sym_file_descriptor] = ACTIONS(1412), - [anon_sym_AMP_GT] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1142] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [sym_variable_name] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1428), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [anon_sym_AMP_GT] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [1143] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [sym_variable_name] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1659), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [sym_file_descriptor] = ACTIONS(1661), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [1144] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [sym_variable_name] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1671), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [sym_file_descriptor] = ACTIONS(1673), - [anon_sym_AMP_GT] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [sym_string] = STATE(1131), + [anon_sym_QMARK] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(2976), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2972), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_POUND] = ACTIONS(2974), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_RPAREN] = ACTIONS(1300), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1300), + [aux_sym__simple_variable_name_token1] = ACTIONS(2972), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1145] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [sym_variable_name] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [sym_file_descriptor] = ACTIONS(1683), - [anon_sym_AMP_GT] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_esac] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), }, [1146] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [sym_variable_name] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1685), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [sym_file_descriptor] = ACTIONS(1687), - [anon_sym_AMP_GT] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_variable_name] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), }, [1147] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [sym_variable_name] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1868), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [sym_file_descriptor] = ACTIONS(1870), - [anon_sym_AMP_GT] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_variable_name] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [1148] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [sym_variable_name] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1874), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_variable_name] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [1149] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [sym_variable_name] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1878), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym_variable_name] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [1150] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1884), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_variable_name] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [1151] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [sym_variable_name] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1957), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [sym_file_descriptor] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym_variable_name] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [1152] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [sym_variable_name] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1961), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [sym_file_descriptor] = ACTIONS(1963), - [anon_sym_AMP_GT] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym_variable_name] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [1153] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(287), - [sym__concat] = ACTIONS(1422), - [sym__special_character] = ACTIONS(285), - [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [1154] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(441), - [sym__concat] = ACTIONS(441), + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_variable_name] = ACTIONS(1896), + [anon_sym_RPAREN] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [1155] = { - [aux_sym_concatenation_repeat1] = STATE(1167), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(479), - [sym__concat] = ACTIONS(2974), + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym_variable_name] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [1156] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_RPAREN] = ACTIONS(505), - [sym_file_descriptor] = ACTIONS(507), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_AMP_GT] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [anon_sym_esac] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_variable_name] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [1157] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [sym_file_descriptor] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_AMP_GT] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(509), - [anon_sym_esac] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_variable_name] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [1158] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(515), - [sym__concat] = ACTIONS(515), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym_variable_name] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [1159] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(287), - [sym__special_character] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1160), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [sym_number] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [sym__concat] = ACTIONS(1366), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [sym_word] = ACTIONS(185), }, [1160] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(813), - [sym__special_character] = ACTIONS(2976), + [aux_sym_concatenation_repeat1] = STATE(1169), + [anon_sym_LT_LPAREN] = ACTIONS(439), + [sym_ansii_c_string] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__special_character] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_BQUOTE] = ACTIONS(439), + [sym_raw_string] = ACTIONS(439), + [sym_number] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [sym__concat] = ACTIONS(2980), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), + [sym_word] = ACTIONS(435), }, [1161] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(933), - [sym__concat] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(527), + [sym_ansii_c_string] = ACTIONS(527), + [anon_sym_DQUOTE] = ACTIONS(527), + [sym__special_character] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_BQUOTE] = ACTIONS(527), + [sym_raw_string] = ACTIONS(527), + [sym_number] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(527), + [anon_sym_GT_LPAREN] = ACTIONS(527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(527), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(527), + [sym_word] = ACTIONS(525), }, [1162] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [sym_file_descriptor] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [anon_sym_esac] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [anon_sym_esac] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [1163] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [anon_sym_esac] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [1164] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(977), - [sym__concat] = ACTIONS(977), + [anon_sym_LT_LPAREN] = ACTIONS(595), + [sym_ansii_c_string] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [sym__special_character] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [sym_raw_string] = ACTIONS(595), + [sym_number] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_GT_LPAREN] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(595), + [sym_word] = ACTIONS(593), }, [1165] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(981), - [sym__concat] = ACTIONS(981), + [anon_sym_LT_LPAREN] = ACTIONS(189), + [sym_ansii_c_string] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(189), + [sym__special_character] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(189), + [sym_raw_string] = ACTIONS(189), + [sym_number] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_GT_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [sym_word] = ACTIONS(185), }, [1166] = { - [sym_expansion] = STATE(1165), - [sym_string_expansion] = STATE(1165), - [sym_simple_expansion] = STATE(1165), - [sym_string] = STATE(1165), - [sym_command_substitution] = STATE(1165), - [sym_process_substitution] = STATE(1165), - [sym_arithmetic_expansion] = STATE(1165), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(2979), - [sym__special_character] = ACTIONS(2981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(2981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [sym_word] = ACTIONS(2979), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(2983), - [sym_ansii_c_string] = ACTIONS(2981), + [aux_sym__literal_repeat1] = STATE(1166), + [anon_sym_LT_LPAREN] = ACTIONS(822), + [sym_ansii_c_string] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__special_character] = ACTIONS(2982), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_raw_string] = ACTIONS(822), + [sym_number] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_GT_LPAREN] = ACTIONS(822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(822), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(822), + [sym_word] = ACTIONS(817), }, [1167] = { - [aux_sym_concatenation_repeat1] = STATE(1167), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(981), - [sym__concat] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(935), + [sym_ansii_c_string] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__special_character] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_BQUOTE] = ACTIONS(935), + [sym_raw_string] = ACTIONS(935), + [sym_number] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(935), + [sym_word] = ACTIONS(933), }, [1168] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_expansion] = STATE(1167), + [sym_string_expansion] = STATE(1167), + [sym_simple_expansion] = STATE(1167), + [sym_string] = STATE(1167), + [sym_command_substitution] = STATE(1167), + [sym_process_substitution] = STATE(1167), + [sym_arithmetic_expansion] = STATE(1167), + [sym_number] = ACTIONS(2985), + [sym_raw_string] = ACTIONS(2987), + [anon_sym_DOLLAR] = ACTIONS(2989), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(2987), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [sym__special_character] = ACTIONS(2987), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_word] = ACTIONS(2985), }, [1169] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1086), - [sym_file_descriptor] = ACTIONS(1088), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_AMP_GT] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1086), - [anon_sym_esac] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(1169), + [anon_sym_LT_LPAREN] = ACTIONS(935), + [sym_ansii_c_string] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__special_character] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_BQUOTE] = ACTIONS(935), + [sym_raw_string] = ACTIONS(935), + [sym_number] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [sym__concat] = ACTIONS(2991), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_GT_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(935), + [sym_word] = ACTIONS(933), }, [1170] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_esac] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1171] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1298), - [sym__concat] = ACTIONS(1298), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_esac] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [1172] = { - [sym_string] = STATE(1158), - [anon_sym_POUND] = ACTIONS(2988), - [anon_sym_0] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2992), - [aux_sym__simple_variable_name_token1] = ACTIONS(2990), - [anon_sym__] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(2988), - [sym_raw_string] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_AT] = ACTIONS(2992), + [anon_sym_LT_LPAREN] = ACTIONS(1004), + [sym_ansii_c_string] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__special_character] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_BQUOTE] = ACTIONS(1004), + [sym_raw_string] = ACTIONS(1004), + [sym_number] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_GT_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1004), + [sym_word] = ACTIONS(1002), }, [1173] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_RPAREN] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1356), - [anon_sym_esac] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1084), + [sym_ansii_c_string] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym__special_character] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(1084), + [anon_sym_BQUOTE] = ACTIONS(1084), + [sym_raw_string] = ACTIONS(1084), + [sym_number] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_GT_LPAREN] = ACTIONS(1084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1084), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1084), + [sym_word] = ACTIONS(1082), }, [1174] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [sym_file_descriptor] = ACTIONS(1412), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_AMP_GT] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1410), - [anon_sym_esac] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_esac] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1175] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_RPAREN] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [anon_sym_esac] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [anon_sym_esac] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [1176] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1659), - [sym_file_descriptor] = ACTIONS(1661), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_AMP_GT] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1659), - [anon_sym_esac] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_esac] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [1177] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [sym_file_descriptor] = ACTIONS(1673), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_AMP_GT] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1671), - [anon_sym_esac] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [sym_string] = STATE(1164), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [sym_ansii_c_string] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2998), + [sym__special_character] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym__] = ACTIONS(2994), + [anon_sym_BQUOTE] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(3000), + [sym_number] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(2998), + [anon_sym_AT] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2994), + [anon_sym_GT_LPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(2994), + [sym_word] = ACTIONS(1300), }, [1178] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [sym_file_descriptor] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1681), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(1360), + [sym_ansii_c_string] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym__special_character] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [sym_raw_string] = ACTIONS(1360), + [sym_number] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1360), + [sym_word] = ACTIONS(1358), }, [1179] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_RPAREN] = ACTIONS(1685), - [sym_file_descriptor] = ACTIONS(1687), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_AMP_GT] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1685), - [anon_sym_esac] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), }, [1180] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [sym_file_descriptor] = ACTIONS(1870), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1868), - [anon_sym_esac] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [anon_sym_esac] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [1181] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1874), - [anon_sym_esac] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_esac] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [1182] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [anon_sym_esac] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [1183] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_esac] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_RPAREN] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [anon_sym_esac] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [1184] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_RPAREN] = ACTIONS(1957), - [sym_file_descriptor] = ACTIONS(1959), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_AMP_GT] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1957), - [anon_sym_esac] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [anon_sym_esac] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [1185] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1961), - [sym_file_descriptor] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1961), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_RPAREN] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [anon_sym_esac] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [1186] = { - [aux_sym_concatenation_repeat1] = STATE(1188), - [anon_sym_GT_LPAREN] = ACTIONS(287), - [sym_number] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(287), - [sym_ansii_c_string] = ACTIONS(287), - [sym__special_character] = ACTIONS(287), - [sym__concat] = ACTIONS(1446), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(287), - [sym_raw_string] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [1187] = { - [anon_sym_GT_LPAREN] = ACTIONS(441), - [sym_number] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(441), - [sym_ansii_c_string] = ACTIONS(441), - [sym__special_character] = ACTIONS(441), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(441), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(441), - [sym_raw_string] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(439), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [anon_sym_esac] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [1188] = { - [aux_sym_concatenation_repeat1] = STATE(1200), - [anon_sym_GT_LPAREN] = ACTIONS(479), - [sym_number] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(479), - [anon_sym_DQUOTE] = ACTIONS(479), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(479), - [anon_sym_RPAREN] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(479), - [sym_ansii_c_string] = ACTIONS(479), - [sym__special_character] = ACTIONS(479), - [sym__concat] = ACTIONS(2996), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(479), - [sym_raw_string] = ACTIONS(479), - [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_esac] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [1189] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(507), - [sym__concat] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [anon_sym_esac] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [1190] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(511), - [sym__concat] = ACTIONS(511), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_esac] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [1191] = { - [anon_sym_GT_LPAREN] = ACTIONS(515), - [sym_number] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(515), - [anon_sym_DQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [sym_ansii_c_string] = ACTIONS(515), - [sym__special_character] = ACTIONS(515), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(515), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(515), - [sym_raw_string] = ACTIONS(515), - [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [anon_sym_esac] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [1192] = { - [anon_sym_GT_LPAREN] = ACTIONS(287), - [sym_number] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(287), - [sym_ansii_c_string] = ACTIONS(287), - [sym__special_character] = ACTIONS(287), - [anon_sym_PIPE] = ACTIONS(287), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(287), - [sym_raw_string] = ACTIONS(287), - [anon_sym_DOLLAR] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1193), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [sym__concat] = ACTIONS(2288), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [sym_word] = ACTIONS(185), }, [1193] = { - [aux_sym__literal_repeat1] = STATE(1193), - [anon_sym_GT_LPAREN] = ACTIONS(813), - [sym_number] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), - [anon_sym_DQUOTE] = ACTIONS(813), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(813), - [sym_ansii_c_string] = ACTIONS(813), - [sym__special_character] = ACTIONS(2998), - [anon_sym_PIPE] = ACTIONS(813), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(813), - [sym_raw_string] = ACTIONS(813), - [anon_sym_DOLLAR] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1202), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [sym__concat] = ACTIONS(3002), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [sym_word] = ACTIONS(435), }, [1194] = { - [anon_sym_GT_LPAREN] = ACTIONS(933), - [sym_number] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(933), - [sym_ansii_c_string] = ACTIONS(933), - [sym__special_character] = ACTIONS(933), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(933), - [sym_raw_string] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [sym_word] = ACTIONS(525), }, [1195] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(969), - [sym__concat] = ACTIONS(969), + [anon_sym_LT_LPAREN] = ACTIONS(587), + [sym_ansii_c_string] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(587), + [sym__special_character] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(587), + [sym_raw_string] = ACTIONS(587), + [sym_number] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_GT_LPAREN] = ACTIONS(587), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(587), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(587), + [sym_word] = ACTIONS(585), }, [1196] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(973), - [sym__concat] = ACTIONS(973), + [anon_sym_LT_LPAREN] = ACTIONS(591), + [sym_ansii_c_string] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(591), + [sym__special_character] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(591), + [sym_raw_string] = ACTIONS(591), + [sym_number] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_GT_LPAREN] = ACTIONS(591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(591), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(591), + [sym_word] = ACTIONS(589), }, [1197] = { - [anon_sym_GT_LPAREN] = ACTIONS(977), - [sym_number] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(977), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(977), - [sym_ansii_c_string] = ACTIONS(977), - [sym__special_character] = ACTIONS(977), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(977), - [sym_raw_string] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [sym_word] = ACTIONS(593), }, [1198] = { - [anon_sym_GT_LPAREN] = ACTIONS(981), - [sym_number] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(981), - [sym_ansii_c_string] = ACTIONS(981), - [sym__special_character] = ACTIONS(981), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(981), - [sym_raw_string] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [sym_word] = ACTIONS(185), }, [1199] = { - [sym_expansion] = STATE(1198), - [sym_string_expansion] = STATE(1198), - [sym_simple_expansion] = STATE(1198), - [sym_string] = STATE(1198), - [sym_command_substitution] = STATE(1198), - [sym_process_substitution] = STATE(1198), - [sym_arithmetic_expansion] = STATE(1198), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(3001), - [sym__special_character] = ACTIONS(3003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(3003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [sym_word] = ACTIONS(3001), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(3005), - [sym_ansii_c_string] = ACTIONS(3003), + [aux_sym__literal_repeat1] = STATE(1199), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [sym__special_character] = ACTIONS(3004), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [sym_word] = ACTIONS(817), }, [1200] = { - [aux_sym_concatenation_repeat1] = STATE(1200), - [anon_sym_GT_LPAREN] = ACTIONS(981), - [sym_number] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(981), - [sym_ansii_c_string] = ACTIONS(981), - [sym__special_character] = ACTIONS(981), - [sym__concat] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(981), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(981), - [sym_raw_string] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [sym_word] = ACTIONS(933), }, [1201] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), + [sym_expansion] = STATE(1200), + [sym_string_expansion] = STATE(1200), + [sym_simple_expansion] = STATE(1200), + [sym_string] = STATE(1200), + [sym_command_substitution] = STATE(1200), + [sym_process_substitution] = STATE(1200), + [sym_arithmetic_expansion] = STATE(1200), + [sym_number] = ACTIONS(3007), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [anon_sym_LT_LPAREN] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_ansii_c_string] = ACTIONS(3009), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1094), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1098), + [sym__special_character] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1104), + [anon_sym_BQUOTE] = ACTIONS(1102), + [sym_word] = ACTIONS(3007), }, [1202] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1088), - [sym__concat] = ACTIONS(1088), - }, - [1203] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(973), - [sym__concat] = ACTIONS(973), - }, - [1204] = { - [anon_sym_GT_LPAREN] = ACTIONS(1298), - [sym_number] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [sym_ansii_c_string] = ACTIONS(1298), - [sym__special_character] = ACTIONS(1298), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - }, - [1205] = { - [sym_string] = STATE(1191), - [anon_sym_0] = ACTIONS(3010), - [anon_sym_GT_LPAREN] = ACTIONS(1312), - [sym_number] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_LT_LPAREN] = ACTIONS(1312), - [sym_ansii_c_string] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(3012), - [anon_sym_POUND] = ACTIONS(3014), - [sym__special_character] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(3010), - [aux_sym__simple_variable_name_token1] = ACTIONS(3010), - [anon_sym__] = ACTIONS(3010), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1312), - [sym_raw_string] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3010), - }, + [aux_sym_concatenation_repeat1] = STATE(1202), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [sym__concat] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [sym_word] = ACTIONS(933), + }, + [1203] = { + [anon_sym_LT_LPAREN] = ACTIONS(944), + [sym_ansii_c_string] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__special_character] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_BQUOTE] = ACTIONS(944), + [sym_raw_string] = ACTIONS(944), + [sym_number] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), + [sym_word] = ACTIONS(942), + }, + [1204] = { + [anon_sym_LT_LPAREN] = ACTIONS(974), + [sym_ansii_c_string] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__special_character] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_BQUOTE] = ACTIONS(974), + [sym_raw_string] = ACTIONS(974), + [sym_number] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_GT_LPAREN] = ACTIONS(974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(974), + [sym_word] = ACTIONS(972), + }, + [1205] = { + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [sym_word] = ACTIONS(1002), + }, [1206] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1358), - [sym__concat] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [sym_word] = ACTIONS(1082), }, [1207] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1412), - [sym__concat] = ACTIONS(1412), + [anon_sym_LT_LPAREN] = ACTIONS(944), + [sym_ansii_c_string] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__special_character] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_BQUOTE] = ACTIONS(944), + [sym_raw_string] = ACTIONS(944), + [sym_number] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), + [sym_word] = ACTIONS(942), }, [1208] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1430), - [sym__concat] = ACTIONS(1430), + [anon_sym_LT_LPAREN] = ACTIONS(1132), + [sym_ansii_c_string] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [sym__special_character] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_BQUOTE] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1132), + [sym_number] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_GT_LPAREN] = ACTIONS(1132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1132), + [sym_word] = ACTIONS(1130), }, [1209] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1661), - [sym__concat] = ACTIONS(1661), + [anon_sym_LT_LPAREN] = ACTIONS(1154), + [sym_ansii_c_string] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(1154), + [sym__special_character] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1154), + [sym_raw_string] = ACTIONS(1154), + [sym_number] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1154), + [anon_sym_GT_LPAREN] = ACTIONS(1154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1154), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1154), + [sym_word] = ACTIONS(1152), }, [1210] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1673), - [sym__concat] = ACTIONS(1673), + [sym_string] = STATE(1197), + [anon_sym_QMARK] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1402), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [aux_sym__simple_variable_name_token1] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3018), + [anon_sym__] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(3020), + [sym_number] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(3018), + [anon_sym_AT] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(3016), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [sym_word] = ACTIONS(1300), }, [1211] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1683), - [sym__concat] = ACTIONS(1683), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [sym_word] = ACTIONS(1358), }, [1212] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1687), - [sym__concat] = ACTIONS(1687), + [anon_sym_LT_LPAREN] = ACTIONS(1428), + [sym_ansii_c_string] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym__special_character] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_raw_string] = ACTIONS(1428), + [sym_number] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_GT_LPAREN] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), + [sym_word] = ACTIONS(1426), }, [1213] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1870), - [sym__concat] = ACTIONS(1870), + [anon_sym_LT_LPAREN] = ACTIONS(1476), + [sym_ansii_c_string] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym__special_character] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [sym_raw_string] = ACTIONS(1476), + [sym_number] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_GT_LPAREN] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1476), + [sym_word] = ACTIONS(1474), }, [1214] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), + [anon_sym_LT_LPAREN] = ACTIONS(1488), + [sym_ansii_c_string] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym__special_character] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [sym_raw_string] = ACTIONS(1488), + [sym_number] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_GT_LPAREN] = ACTIONS(1488), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1488), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1488), + [sym_word] = ACTIONS(1486), }, [1215] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1880), - [sym__concat] = ACTIONS(1880), + [anon_sym_LT_LPAREN] = ACTIONS(1721), + [sym_ansii_c_string] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__special_character] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1721), + [anon_sym_BQUOTE] = ACTIONS(1721), + [sym_raw_string] = ACTIONS(1721), + [sym_number] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_GT_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1721), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1721), + [sym_word] = ACTIONS(1719), }, [1216] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1727), + [sym_ansii_c_string] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym__special_character] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1727), + [anon_sym_BQUOTE] = ACTIONS(1727), + [sym_raw_string] = ACTIONS(1727), + [sym_number] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_GT_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1727), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1727), + [sym_word] = ACTIONS(1725), }, [1217] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1737), + [sym_ansii_c_string] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__special_character] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_BQUOTE] = ACTIONS(1737), + [sym_raw_string] = ACTIONS(1737), + [sym_number] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_GT_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1737), + [sym_word] = ACTIONS(1735), }, [1218] = { - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(1963), - [sym__concat] = ACTIONS(1963), + [anon_sym_LT_LPAREN] = ACTIONS(1749), + [sym_ansii_c_string] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__special_character] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_BQUOTE] = ACTIONS(1749), + [sym_raw_string] = ACTIONS(1749), + [sym_number] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_GT_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1749), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1749), + [sym_word] = ACTIONS(1747), }, [1219] = { - [aux_sym_concatenation_repeat1] = STATE(1221), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [sym_word] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [sym__concat] = ACTIONS(2282), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [sym_ansii_c_string] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__special_character] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [sym_number] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1892), + [sym_word] = ACTIONS(1890), }, [1220] = { - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [sym_word] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(1896), + [sym_ansii_c_string] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym__special_character] = ACTIONS(1896), + [anon_sym_RPAREN] = ACTIONS(1896), + [anon_sym_BQUOTE] = ACTIONS(1896), + [sym_raw_string] = ACTIONS(1896), + [sym_number] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_GT_LPAREN] = ACTIONS(1896), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1896), + [sym_word] = ACTIONS(1894), }, [1221] = { - [aux_sym_concatenation_repeat1] = STATE(1233), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [sym_word] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [sym__concat] = ACTIONS(3018), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(1902), + [sym_ansii_c_string] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym__special_character] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1902), + [anon_sym_BQUOTE] = ACTIONS(1902), + [sym_raw_string] = ACTIONS(1902), + [sym_number] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_GT_LPAREN] = ACTIONS(1902), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1902), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1902), + [sym_word] = ACTIONS(1900), }, [1222] = { - [anon_sym_GT_LPAREN] = ACTIONS(507), - [sym_number] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(507), - [anon_sym_RPAREN] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(507), - [sym_ansii_c_string] = ACTIONS(507), - [sym__special_character] = ACTIONS(507), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_raw_string] = ACTIONS(507), - [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(1908), + [sym_ansii_c_string] = ACTIONS(1908), + [anon_sym_DQUOTE] = ACTIONS(1908), + [sym__special_character] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1908), + [sym_raw_string] = ACTIONS(1908), + [sym_number] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_GT_LPAREN] = ACTIONS(1908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1908), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1908), + [sym_word] = ACTIONS(1906), }, [1223] = { - [anon_sym_GT_LPAREN] = ACTIONS(511), - [sym_number] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(511), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(511), - [sym_ansii_c_string] = ACTIONS(511), - [sym__special_character] = ACTIONS(511), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(511), - [sym_raw_string] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(1973), + [sym_ansii_c_string] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [sym__special_character] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_BQUOTE] = ACTIONS(1973), + [sym_raw_string] = ACTIONS(1973), + [sym_number] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_GT_LPAREN] = ACTIONS(1973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1973), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1973), + [sym_word] = ACTIONS(1971), }, [1224] = { - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [sym_word] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(1977), + [sym_ansii_c_string] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1977), + [sym__special_character] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_raw_string] = ACTIONS(1977), + [sym_number] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [sym_comment] = ACTIONS(23), + [anon_sym_PIPE] = ACTIONS(1977), + [anon_sym_GT_LPAREN] = ACTIONS(1977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1977), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1977), + [sym_word] = ACTIONS(1975), }, [1225] = { - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [sym_word] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(189), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(185), }, [1226] = { - [aux_sym__literal_repeat1] = STATE(1226), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [sym_word] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [sym__special_character] = ACTIONS(3020), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(439), + [sym__concat] = ACTIONS(3022), }, [1227] = { - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [sym_word] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(527), + [sym__concat] = ACTIONS(527), }, [1228] = { - [anon_sym_GT_LPAREN] = ACTIONS(969), - [sym_number] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(969), - [sym_ansii_c_string] = ACTIONS(969), - [sym__special_character] = ACTIONS(969), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(969), - [sym_raw_string] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [sym_word] = ACTIONS(585), }, [1229] = { - [anon_sym_GT_LPAREN] = ACTIONS(973), - [sym_number] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(973), - [sym_ansii_c_string] = ACTIONS(973), - [sym__special_character] = ACTIONS(973), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(973), - [sym_raw_string] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [sym_word] = ACTIONS(589), }, [1230] = { - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [sym_word] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(595), + [sym__concat] = ACTIONS(595), }, [1231] = { - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [sym_word] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(189), + [sym__special_character] = ACTIONS(185), }, [1232] = { - [sym_expansion] = STATE(1231), - [sym_string_expansion] = STATE(1231), - [sym_simple_expansion] = STATE(1231), - [sym_string] = STATE(1231), - [sym_command_substitution] = STATE(1231), - [sym_process_substitution] = STATE(1231), - [sym_arithmetic_expansion] = STATE(1231), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1152), - [sym_number] = ACTIONS(3023), - [sym__special_character] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1162), - [anon_sym_BQUOTE] = ACTIONS(1168), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), - [sym_word] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(1152), - [anon_sym_DOLLAR] = ACTIONS(3027), - [sym_ansii_c_string] = ACTIONS(3025), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(822), + [sym__special_character] = ACTIONS(3024), }, [1233] = { - [aux_sym_concatenation_repeat1] = STATE(1233), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [sym_word] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [sym__concat] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(935), + [sym__concat] = ACTIONS(935), }, [1234] = { - [anon_sym_GT_LPAREN] = ACTIONS(1034), - [sym_number] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1034), - [sym_ansii_c_string] = ACTIONS(1034), - [sym__special_character] = ACTIONS(1034), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1034), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1032), + [sym_expansion] = STATE(1233), + [sym_string_expansion] = STATE(1233), + [sym_simple_expansion] = STATE(1233), + [sym_string] = STATE(1233), + [sym_command_substitution] = STATE(1233), + [sym_process_substitution] = STATE(1233), + [sym_arithmetic_expansion] = STATE(1233), + [sym_number] = ACTIONS(3027), + [sym_raw_string] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_ansii_c_string] = ACTIONS(3029), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [sym__special_character] = ACTIONS(3029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_word] = ACTIONS(3027), }, [1235] = { - [anon_sym_GT_LPAREN] = ACTIONS(1088), - [sym_number] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1088), - [anon_sym_RPAREN] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1088), - [sym_ansii_c_string] = ACTIONS(1088), - [sym__special_character] = ACTIONS(1088), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_raw_string] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(1235), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(935), + [sym__concat] = ACTIONS(3033), }, [1236] = { - [anon_sym_GT_LPAREN] = ACTIONS(973), - [sym_number] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(973), - [sym_ansii_c_string] = ACTIONS(973), - [sym__special_character] = ACTIONS(973), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(973), - [sym_raw_string] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [sym_word] = ACTIONS(942), }, [1237] = { - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [sym_word] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [sym_word] = ACTIONS(972), }, [1238] = { - [sym_string] = STATE(1224), - [anon_sym_0] = ACTIONS(3032), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(3034), - [sym_word] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(3032), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3034), - [sym__special_character] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(3032), - [aux_sym__simple_variable_name_token1] = ACTIONS(3032), - [anon_sym__] = ACTIONS(3032), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(3036), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(3034), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(3032), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1004), + [sym__concat] = ACTIONS(1004), }, [1239] = { - [anon_sym_GT_LPAREN] = ACTIONS(1358), - [sym_number] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1358), - [sym_ansii_c_string] = ACTIONS(1358), - [sym__special_character] = ACTIONS(1358), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1358), - [sym_raw_string] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1356), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1084), + [sym__concat] = ACTIONS(1084), }, [1240] = { - [anon_sym_GT_LPAREN] = ACTIONS(1412), - [sym_number] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1412), - [anon_sym_RPAREN] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1412), - [sym_ansii_c_string] = ACTIONS(1412), - [sym__special_character] = ACTIONS(1412), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_raw_string] = ACTIONS(1412), - [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [sym_word] = ACTIONS(942), }, [1241] = { - [anon_sym_GT_LPAREN] = ACTIONS(1430), - [sym_number] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1430), - [sym_ansii_c_string] = ACTIONS(1430), - [sym__special_character] = ACTIONS(1430), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_raw_string] = ACTIONS(1430), - [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [sym_word] = ACTIONS(1130), }, [1242] = { - [anon_sym_GT_LPAREN] = ACTIONS(1661), - [sym_number] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1661), - [sym_ansii_c_string] = ACTIONS(1661), - [sym__special_character] = ACTIONS(1661), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1661), - [sym_raw_string] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [sym_word] = ACTIONS(1152), }, [1243] = { - [anon_sym_GT_LPAREN] = ACTIONS(1673), - [sym_number] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1673), - [sym_ansii_c_string] = ACTIONS(1673), - [sym__special_character] = ACTIONS(1673), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1673), - [sym_raw_string] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1671), + [sym_string] = STATE(1230), + [anon_sym_QMARK] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [anon_sym_AT] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(1180), + [anon_sym_POUND] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_0] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(3040), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym__] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3042), }, [1244] = { - [anon_sym_GT_LPAREN] = ACTIONS(1683), - [sym_number] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1683), - [sym_ansii_c_string] = ACTIONS(1683), - [sym__special_character] = ACTIONS(1683), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1683), - [sym_raw_string] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1360), + [sym__concat] = ACTIONS(1360), }, [1245] = { - [anon_sym_GT_LPAREN] = ACTIONS(1687), - [sym_number] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1687), - [sym_ansii_c_string] = ACTIONS(1687), - [sym__special_character] = ACTIONS(1687), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1687), - [sym_raw_string] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [sym_word] = ACTIONS(1426), }, [1246] = { - [anon_sym_GT_LPAREN] = ACTIONS(1870), - [sym_number] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1870), - [anon_sym_DQUOTE] = ACTIONS(1870), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1870), - [sym_ansii_c_string] = ACTIONS(1870), - [sym__special_character] = ACTIONS(1870), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1870), - [sym_raw_string] = ACTIONS(1870), - [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [sym_word] = ACTIONS(1474), }, [1247] = { - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_number] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [sym_ansii_c_string] = ACTIONS(1876), - [sym__special_character] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1876), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [sym_word] = ACTIONS(1486), }, [1248] = { - [anon_sym_GT_LPAREN] = ACTIONS(1880), - [sym_number] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1880), - [anon_sym_DQUOTE] = ACTIONS(1880), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1880), - [sym_ansii_c_string] = ACTIONS(1880), - [sym__special_character] = ACTIONS(1880), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1880), - [sym_raw_string] = ACTIONS(1880), - [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [sym_word] = ACTIONS(1719), }, [1249] = { - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_number] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [sym_ansii_c_string] = ACTIONS(1886), - [sym__special_character] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [sym_word] = ACTIONS(1725), }, [1250] = { - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_number] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [sym_ansii_c_string] = ACTIONS(1959), - [sym__special_character] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1959), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [sym_word] = ACTIONS(1735), }, [1251] = { - [anon_sym_GT_LPAREN] = ACTIONS(1963), - [sym_number] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1963), - [sym_ansii_c_string] = ACTIONS(1963), - [sym__special_character] = ACTIONS(1963), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1963), - [sym_raw_string] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [sym_word] = ACTIONS(1747), }, [1252] = { - [aux_sym_concatenation_repeat1] = STATE(1254), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(2345), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_EQ_TILDE] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_esac] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [sym_word] = ACTIONS(1890), }, [1253] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_EQ_TILDE] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [sym_file_descriptor] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(439), - [anon_sym_EQ_EQ] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [anon_sym_esac] = ACTIONS(439), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [sym_word] = ACTIONS(1894), }, [1254] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_EQ_TILDE] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [anon_sym_EQ_EQ] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [anon_sym_esac] = ACTIONS(475), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [sym_word] = ACTIONS(1900), }, [1255] = { - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [sym_word] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [sym_word] = ACTIONS(1906), }, [1256] = { - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [sym_word] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [sym_word] = ACTIONS(1971), }, [1257] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_EQ_TILDE] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_AMP_GT] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [anon_sym_esac] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [sym_word] = ACTIONS(1975), }, [1258] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_EQ_TILDE] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_esac] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1259), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1259] = { - [aux_sym__literal_repeat1] = STATE(1259), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [sym__special_character] = ACTIONS(3040), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_esac] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1268), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_EQ_TILDE] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_esac] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [1260] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_EQ_TILDE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [sym_file_descriptor] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_esac] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_EQ_TILDE] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_EQ_EQ] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [anon_sym_esac] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [1261] = { - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [sym_word] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(587), + [sym__concat] = ACTIONS(587), }, [1262] = { - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [sym_word] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(591), + [sym__concat] = ACTIONS(591), }, [1263] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_EQ_TILDE] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [sym_file_descriptor] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_AMP_GT] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [anon_sym_esac] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_EQ_TILDE] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [anon_sym_esac] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [1264] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_esac] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1265] = { - [sym_expansion] = STATE(1264), - [sym_string_expansion] = STATE(1264), - [sym_simple_expansion] = STATE(1264), - [sym_string] = STATE(1264), - [sym_command_substitution] = STATE(1264), - [sym_process_substitution] = STATE(1264), - [sym_arithmetic_expansion] = STATE(1264), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1800), - [sym_number] = ACTIONS(3043), - [sym__special_character] = ACTIONS(3045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [anon_sym_BQUOTE] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(3045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [sym_word] = ACTIONS(3043), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [anon_sym_DOLLAR] = ACTIONS(3047), - [sym_ansii_c_string] = ACTIONS(3045), + [aux_sym__literal_repeat1] = STATE(1265), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(3046), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_esac] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [1266] = { - [aux_sym_concatenation_repeat1] = STATE(1266), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_esac] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_esac] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1267] = { - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [sym_word] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [sym_expansion] = STATE(1266), + [sym_string_expansion] = STATE(1266), + [sym_simple_expansion] = STATE(1266), + [sym_string] = STATE(1266), + [sym_command_substitution] = STATE(1266), + [sym_process_substitution] = STATE(1266), + [sym_arithmetic_expansion] = STATE(1266), + [sym_number] = ACTIONS(3049), + [sym_raw_string] = ACTIONS(3051), + [anon_sym_DOLLAR] = ACTIONS(3053), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1812), + [sym_ansii_c_string] = ACTIONS(3051), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [sym__special_character] = ACTIONS(3051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_word] = ACTIONS(3049), }, [1268] = { - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [sym_word] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), + [aux_sym_concatenation_repeat1] = STATE(1268), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(3055), + [anon_sym_PIPE] = ACTIONS(933), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_EQ_TILDE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_esac] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1269] = { - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [sym_word] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(944), + [sym__concat] = ACTIONS(944), }, [1270] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_esac] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(974), + [sym__concat] = ACTIONS(974), }, [1271] = { - [sym_string] = STATE(1191), - [anon_sym_0] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(1312), - [aux_sym__simple_variable_name_token1] = ACTIONS(3010), - [anon_sym__] = ACTIONS(3010), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_AT] = ACTIONS(3052), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_esac] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [1272] = { - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [sym_word] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_EQ_TILDE] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_EQ_EQ] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_esac] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [1273] = { - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [sym_word] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(944), + [sym__concat] = ACTIONS(944), }, [1274] = { - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [sym_word] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1132), + [sym__concat] = ACTIONS(1132), }, [1275] = { - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [sym_word] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1154), + [sym__concat] = ACTIONS(1154), }, [1276] = { - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [sym_word] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [sym_string] = STATE(1164), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2996), + [anon_sym_RPAREN] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym__] = ACTIONS(2994), + [sym_raw_string] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2996), + [anon_sym_AT] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_0] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(3058), }, [1277] = { - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [sym_word] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_esac] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), }, [1278] = { - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [sym_word] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1428), + [sym__concat] = ACTIONS(1428), }, [1279] = { - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [sym_word] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1476), + [sym__concat] = ACTIONS(1476), }, [1280] = { - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [sym_word] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1488), + [sym__concat] = ACTIONS(1488), }, [1281] = { - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [sym_word] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1721), + [sym__concat] = ACTIONS(1721), }, [1282] = { - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [sym_word] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1727), + [sym__concat] = ACTIONS(1727), }, [1283] = { - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [sym_word] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1737), + [sym__concat] = ACTIONS(1737), }, [1284] = { - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [sym_word] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1749), + [sym__concat] = ACTIONS(1749), }, [1285] = { - [aux_sym_concatenation_repeat1] = STATE(1287), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_esac] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1892), + [sym__concat] = ACTIONS(1892), }, [1286] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [aux_sym__simple_variable_name_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [sym_variable_name] = ACTIONS(441), - [sym_file_descriptor] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [anon_sym_esac] = ACTIONS(439), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1896), + [sym__concat] = ACTIONS(1896), }, [1287] = { - [aux_sym_concatenation_repeat1] = STATE(1299), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(475), - [aux_sym__simple_variable_name_token1] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [sym_variable_name] = ACTIONS(479), - [sym_file_descriptor] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [anon_sym_esac] = ACTIONS(475), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1902), + [sym__concat] = ACTIONS(1902), }, [1288] = { - [anon_sym_BQUOTE] = ACTIONS(507), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(507), - [sym__heredoc_body_end] = ACTIONS(507), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [sym__heredoc_body_middle] = ACTIONS(507), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1908), + [sym__concat] = ACTIONS(1908), }, [1289] = { - [anon_sym_BQUOTE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(511), - [sym__heredoc_body_end] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(511), - [sym__heredoc_body_middle] = ACTIONS(511), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1973), + [sym__concat] = ACTIONS(1973), }, [1290] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [aux_sym__simple_variable_name_token1] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [sym_variable_name] = ACTIONS(515), - [sym_file_descriptor] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_AMP_GT] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [anon_sym_esac] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1977), + [sym__concat] = ACTIONS(1977), }, [1291] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_esac] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1292), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1292] = { - [aux_sym__literal_repeat1] = STATE(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [aux_sym__simple_variable_name_token1] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_variable_name] = ACTIONS(813), - [sym_file_descriptor] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(3056), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_esac] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1301), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym_variable_name] = ACTIONS(439), + [aux_sym__simple_variable_name_token1] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_esac] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [1293] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [aux_sym__simple_variable_name_token1] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [sym_variable_name] = ACTIONS(933), - [sym_file_descriptor] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_esac] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [sym_variable_name] = ACTIONS(527), + [aux_sym__simple_variable_name_token1] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [anon_sym_esac] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [1294] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [sym_file_descriptor] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [anon_sym_esac] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(587), + [sym__heredoc_body_end] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(587), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(587), }, [1295] = { - [anon_sym_BQUOTE] = ACTIONS(973), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), - [sym__heredoc_body_end] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), - [sym__heredoc_body_middle] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(591), + [sym__heredoc_body_end] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(591), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(591), }, [1296] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [aux_sym__simple_variable_name_token1] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [sym_variable_name] = ACTIONS(977), - [sym_file_descriptor] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_AMP_GT] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [anon_sym_esac] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [sym_variable_name] = ACTIONS(595), + [aux_sym__simple_variable_name_token1] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [anon_sym_esac] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [1297] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_esac] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1298] = { - [sym_expansion] = STATE(1297), - [sym_string_expansion] = STATE(1297), - [sym_simple_expansion] = STATE(1297), - [sym_string] = STATE(1297), - [sym_command_substitution] = STATE(1297), - [sym_process_substitution] = STATE(1297), - [sym_arithmetic_expansion] = STATE(1297), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(3059), - [sym_number] = ACTIONS(3061), - [sym__special_character] = ACTIONS(3063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(3063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2542), - [sym_word] = ACTIONS(3061), - [anon_sym_LT_LPAREN] = ACTIONS(3059), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_ansii_c_string] = ACTIONS(3063), + [aux_sym__literal_repeat1] = STATE(1298), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(3062), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym_variable_name] = ACTIONS(822), + [aux_sym__simple_variable_name_token1] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_esac] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [1299] = { - [aux_sym_concatenation_repeat1] = STATE(1299), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_esac] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_esac] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1300] = { - [anon_sym_BQUOTE] = ACTIONS(1034), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1034), - [sym__heredoc_body_end] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), - [sym__heredoc_body_middle] = ACTIONS(1034), + [sym_expansion] = STATE(1299), + [sym_string_expansion] = STATE(1299), + [sym_simple_expansion] = STATE(1299), + [sym_string] = STATE(1299), + [sym_command_substitution] = STATE(1299), + [sym_process_substitution] = STATE(1299), + [sym_arithmetic_expansion] = STATE(1299), + [sym_number] = ACTIONS(3065), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_LT_LPAREN] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(3073), + [sym_ansii_c_string] = ACTIONS(3067), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(3071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), + [sym__special_character] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3075), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3077), + [anon_sym_BQUOTE] = ACTIONS(3079), + [sym_word] = ACTIONS(3065), }, [1301] = { - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1088), - [sym__heredoc_body_end] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1088), - [sym__heredoc_body_middle] = ACTIONS(1088), + [aux_sym_concatenation_repeat1] = STATE(1301), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(3081), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_esac] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1302] = { - [anon_sym_BQUOTE] = ACTIONS(973), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), - [sym__heredoc_body_end] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(973), - [sym__heredoc_body_middle] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(944), + [sym__heredoc_body_end] = ACTIONS(944), + [anon_sym_BQUOTE] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(944), }, [1303] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [aux_sym__simple_variable_name_token1] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_variable_name] = ACTIONS(1298), - [sym_file_descriptor] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_esac] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_EQ_TILDE] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_esac] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [1304] = { - [sym_string] = STATE(785), - [anon_sym_0] = ACTIONS(2710), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(2712), - [anon_sym_QMARK] = ACTIONS(2710), - [aux_sym__simple_variable_name_token1] = ACTIONS(2710), - [anon_sym__] = ACTIONS(2710), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2716), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(2712), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(2710), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_variable_name] = ACTIONS(1004), + [aux_sym__simple_variable_name_token1] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_esac] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [1305] = { - [anon_sym_BQUOTE] = ACTIONS(1358), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), - [sym__heredoc_body_end] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), - [sym__heredoc_body_middle] = ACTIONS(1358), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_variable_name] = ACTIONS(1084), + [aux_sym__simple_variable_name_token1] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_esac] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [1306] = { - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1412), - [sym__heredoc_body_end] = ACTIONS(1412), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), - [sym__heredoc_body_middle] = ACTIONS(1412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(944), + [sym__heredoc_body_end] = ACTIONS(944), + [anon_sym_BQUOTE] = ACTIONS(944), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(944), }, [1307] = { - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1430), - [sym__heredoc_body_end] = ACTIONS(1430), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1430), - [sym__heredoc_body_middle] = ACTIONS(1430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1132), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1132), + [sym__heredoc_body_end] = ACTIONS(1132), + [anon_sym_BQUOTE] = ACTIONS(1132), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1132), }, [1308] = { - [anon_sym_BQUOTE] = ACTIONS(1661), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1661), - [sym__heredoc_body_end] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1661), - [sym__heredoc_body_middle] = ACTIONS(1661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1154), + [sym__heredoc_body_end] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1154), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1154), }, [1309] = { - [anon_sym_BQUOTE] = ACTIONS(1673), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1673), - [sym__heredoc_body_end] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1673), - [sym__heredoc_body_middle] = ACTIONS(1673), + [sym_string] = STATE(791), + [anon_sym_QMARK] = ACTIONS(2716), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(2720), + [anon_sym_BANG] = ACTIONS(2720), + [aux_sym__simple_variable_name_token1] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym__] = ACTIONS(2716), + [sym_raw_string] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2716), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(2716), }, [1310] = { - [anon_sym_BQUOTE] = ACTIONS(1683), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), - [sym__heredoc_body_end] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), - [sym__heredoc_body_middle] = ACTIONS(1683), + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_variable_name] = ACTIONS(1360), + [aux_sym__simple_variable_name_token1] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_esac] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), }, [1311] = { - [anon_sym_BQUOTE] = ACTIONS(1687), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1687), - [sym__heredoc_body_end] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1687), - [sym__heredoc_body_middle] = ACTIONS(1687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), + [sym__heredoc_body_end] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1428), }, [1312] = { - [anon_sym_BQUOTE] = ACTIONS(1870), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1870), - [sym__heredoc_body_end] = ACTIONS(1870), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1870), - [sym__heredoc_body_middle] = ACTIONS(1870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1476), + [sym__heredoc_body_end] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1476), }, [1313] = { - [anon_sym_BQUOTE] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [sym__heredoc_body_end] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [sym__heredoc_body_middle] = ACTIONS(1876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1488), + [sym__heredoc_body_end] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1488), }, [1314] = { - [anon_sym_BQUOTE] = ACTIONS(1880), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1880), - [sym__heredoc_body_end] = ACTIONS(1880), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1880), - [sym__heredoc_body_middle] = ACTIONS(1880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1721), + [sym__heredoc_body_end] = ACTIONS(1721), + [anon_sym_BQUOTE] = ACTIONS(1721), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1721), }, [1315] = { - [anon_sym_BQUOTE] = ACTIONS(1886), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [sym__heredoc_body_end] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [sym__heredoc_body_middle] = ACTIONS(1886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1727), + [sym__heredoc_body_end] = ACTIONS(1727), + [anon_sym_BQUOTE] = ACTIONS(1727), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1727), }, [1316] = { - [anon_sym_BQUOTE] = ACTIONS(1959), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [sym__heredoc_body_end] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [sym__heredoc_body_middle] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), + [sym__heredoc_body_end] = ACTIONS(1737), + [anon_sym_BQUOTE] = ACTIONS(1737), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1737), }, [1317] = { - [anon_sym_BQUOTE] = ACTIONS(1963), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1963), - [sym__heredoc_body_end] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1963), - [sym__heredoc_body_middle] = ACTIONS(1963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1749), + [sym__heredoc_body_end] = ACTIONS(1749), + [anon_sym_BQUOTE] = ACTIONS(1749), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1749), }, [1318] = { - [aux_sym_concatenation_repeat1] = STATE(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(2377), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_esac] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [sym__heredoc_body_end] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1892), }, [1319] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [aux_sym__simple_variable_name_token1] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [sym_file_descriptor] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [anon_sym_esac] = ACTIONS(439), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1896), + [sym__heredoc_body_end] = ACTIONS(1896), + [anon_sym_BQUOTE] = ACTIONS(1896), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1896), }, [1320] = { - [aux_sym_concatenation_repeat1] = STATE(1332), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(475), - [aux_sym__simple_variable_name_token1] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [anon_sym_esac] = ACTIONS(475), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1902), + [sym__heredoc_body_end] = ACTIONS(1902), + [anon_sym_BQUOTE] = ACTIONS(1902), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1902), }, [1321] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_EQ_TILDE] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [sym_file_descriptor] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_AMP_GT] = ACTIONS(505), - [anon_sym_EQ_EQ] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [anon_sym_esac] = ACTIONS(505), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1908), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1908), + [sym__heredoc_body_end] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1908), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1908), }, [1322] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_EQ_TILDE] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [sym_file_descriptor] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_AMP_GT] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [anon_sym_esac] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1973), + [sym__heredoc_body_end] = ACTIONS(1973), + [anon_sym_BQUOTE] = ACTIONS(1973), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1973), }, [1323] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [aux_sym__simple_variable_name_token1] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_AMP_GT] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [anon_sym_esac] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1977), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1977), + [sym__heredoc_body_end] = ACTIONS(1977), + [anon_sym_BQUOTE] = ACTIONS(1977), + [sym_comment] = ACTIONS(23), + [sym__heredoc_body_middle] = ACTIONS(1977), }, [1324] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [aux_sym__simple_variable_name_token1] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_esac] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1325), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1325] = { - [aux_sym__literal_repeat1] = STATE(1325), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [aux_sym__simple_variable_name_token1] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(3080), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_esac] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1334), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(3084), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [aux_sym__simple_variable_name_token1] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_esac] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [1326] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [aux_sym__simple_variable_name_token1] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [sym_file_descriptor] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_esac] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [aux_sym__simple_variable_name_token1] = ACTIONS(525), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [anon_sym_esac] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [1327] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [aux_sym__simple_variable_name_token1] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [sym_variable_name] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [anon_sym_esac] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_EQ_TILDE] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [anon_sym_esac] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [1328] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_EQ_TILDE] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [anon_sym_esac] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [1329] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [aux_sym__simple_variable_name_token1] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [sym_file_descriptor] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_AMP_GT] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [anon_sym_esac] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [aux_sym__simple_variable_name_token1] = ACTIONS(593), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [anon_sym_esac] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [1330] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_esac] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [aux_sym__simple_variable_name_token1] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1331] = { - [sym_expansion] = STATE(1330), - [sym_string_expansion] = STATE(1330), - [sym_simple_expansion] = STATE(1330), - [sym_string] = STATE(1330), - [sym_command_substitution] = STATE(1330), - [sym_process_substitution] = STATE(1330), - [sym_arithmetic_expansion] = STATE(1330), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(3083), - [sym_number] = ACTIONS(3085), - [sym__special_character] = ACTIONS(3087), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3091), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(3087), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), - [sym_word] = ACTIONS(3085), - [anon_sym_LT_LPAREN] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3097), - [sym_ansii_c_string] = ACTIONS(3087), + [aux_sym__literal_repeat1] = STATE(1331), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(3086), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [aux_sym__simple_variable_name_token1] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_esac] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [1332] = { - [aux_sym_concatenation_repeat1] = STATE(1332), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(979), - [aux_sym__simple_variable_name_token1] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_esac] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), - }, - [1333] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - }, - [1334] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_EQ_TILDE] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [sym_file_descriptor] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_AMP_GT] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [anon_sym_esac] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), - }, + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_esac] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + }, + [1333] = { + [sym_expansion] = STATE(1332), + [sym_string_expansion] = STATE(1332), + [sym_simple_expansion] = STATE(1332), + [sym_string] = STATE(1332), + [sym_command_substitution] = STATE(1332), + [sym_process_substitution] = STATE(1332), + [sym_arithmetic_expansion] = STATE(1332), + [sym_number] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [anon_sym_LT_LPAREN] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_ansii_c_string] = ACTIONS(3091), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2582), + [sym__special_character] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3099), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3101), + [anon_sym_BQUOTE] = ACTIONS(3103), + [sym_word] = ACTIONS(3089), + }, + [1334] = { + [aux_sym_concatenation_repeat1] = STATE(1334), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [aux_sym__simple_variable_name_token1] = ACTIONS(933), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_esac] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), + }, [1335] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_esac] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1336] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [aux_sym__simple_variable_name_token1] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_esac] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym_variable_name] = ACTIONS(974), + [aux_sym__simple_variable_name_token1] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_esac] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [1337] = { - [sym_string] = STATE(1257), - [anon_sym_0] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2582), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(3104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(3102), - [anon_sym_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym__] = ACTIONS(3102), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(3104), - [sym_file_descriptor] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_esac] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(3106), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [aux_sym__simple_variable_name_token1] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_esac] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [1338] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [anon_sym_esac] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [aux_sym__simple_variable_name_token1] = ACTIONS(1082), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_esac] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [1339] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_EQ_TILDE] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [sym_file_descriptor] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_AMP_GT] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [anon_sym_esac] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_EQ_TILDE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_esac] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1340] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_EQ_TILDE] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [anon_sym_esac] = ACTIONS(1428), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_EQ_TILDE] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [anon_sym_esac] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [1341] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_EQ_TILDE] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [sym_file_descriptor] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_AMP_GT] = ACTIONS(1659), - [anon_sym_EQ_EQ] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [anon_sym_esac] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_EQ_TILDE] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_EQ_EQ] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_esac] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [1342] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [sym_file_descriptor] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_AMP_GT] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [anon_sym_esac] = ACTIONS(1671), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [sym_string] = STATE(1263), + [sym_word] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(3108), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(3112), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [sym_file_descriptor] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(3108), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(3110), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1343] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_EQ_TILDE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [sym_file_descriptor] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [aux_sym__simple_variable_name_token1] = ACTIONS(1358), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_esac] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), }, [1344] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_EQ_TILDE] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [sym_file_descriptor] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_AMP_GT] = ACTIONS(1685), - [anon_sym_EQ_EQ] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [anon_sym_esac] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_EQ_TILDE] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_EQ_EQ] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), }, [1345] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [sym_file_descriptor] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [anon_sym_esac] = ACTIONS(1868), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_EQ_TILDE] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [anon_sym_esac] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [1346] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_EQ_TILDE] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [anon_sym_EQ_EQ] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [anon_sym_esac] = ACTIONS(1874), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_EQ_TILDE] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_esac] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [1347] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_EQ_TILDE] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_EQ_TILDE] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_EQ_EQ] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [anon_sym_esac] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [1348] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_EQ_TILDE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_esac] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [anon_sym_esac] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [1349] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_EQ_TILDE] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [sym_file_descriptor] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_AMP_GT] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [anon_sym_esac] = ACTIONS(1957), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_EQ_TILDE] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [anon_sym_esac] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [1350] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_EQ_TILDE] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [sym_file_descriptor] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_EQ_EQ] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1961), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_EQ_TILDE] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_EQ_EQ] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [anon_sym_esac] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [1351] = { - [aux_sym_concatenation_repeat1] = STATE(1353), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__concat] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_esac] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_EQ_EQ] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [1352] = { - [anon_sym_AMP_GT_GT] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(439), - [anon_sym_LT_LPAREN] = ACTIONS(439), - [sym_ansii_c_string] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [sym__concat] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_LT_AMP] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_DOLLAR] = ACTIONS(439), - [anon_sym_LT_LT_DASH] = ACTIONS(439), - [anon_sym_GT_LPAREN] = ACTIONS(439), - [sym_number] = ACTIONS(439), - [anon_sym_LF] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(439), - [sym_variable_name] = ACTIONS(441), - [sym_file_descriptor] = ACTIONS(441), - [sym_word] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(439), - [sym__special_character] = ACTIONS(439), - [anon_sym_LT_LT_LT] = ACTIONS(439), - [anon_sym_GT_AMP] = ACTIONS(439), - [anon_sym_esac] = ACTIONS(439), - [anon_sym_BQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_SEMI_SEMI] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(439), + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_EQ_TILDE] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [anon_sym_esac] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [1353] = { - [aux_sym_concatenation_repeat1] = STATE(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), - [anon_sym_LT_LPAREN] = ACTIONS(475), - [sym_ansii_c_string] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym__concat] = ACTIONS(3108), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_GT_LPAREN] = ACTIONS(475), - [sym_number] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(475), - [sym_variable_name] = ACTIONS(479), - [sym_file_descriptor] = ACTIONS(479), - [sym_word] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [sym__special_character] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [anon_sym_esac] = ACTIONS(475), - [anon_sym_BQUOTE] = ACTIONS(475), - [sym_raw_string] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_EQ_TILDE] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_esac] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [1354] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [aux_sym__simple_variable_name_token1] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [sym_variable_name] = ACTIONS(507), - [sym_file_descriptor] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_AMP_GT] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [anon_sym_esac] = ACTIONS(505), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_EQ_TILDE] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_EQ_EQ] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [anon_sym_esac] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [1355] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [aux_sym__simple_variable_name_token1] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [sym_variable_name] = ACTIONS(511), - [sym_file_descriptor] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_AMP_GT] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [anon_sym_esac] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_EQ_TILDE] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_esac] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [1356] = { - [anon_sym_AMP_GT_GT] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(513), - [sym_ansii_c_string] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [sym__concat] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_LT_AMP] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(513), - [anon_sym_LT_LT_DASH] = ACTIONS(513), - [anon_sym_GT_LPAREN] = ACTIONS(513), - [sym_number] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(513), - [sym_variable_name] = ACTIONS(515), - [sym_file_descriptor] = ACTIONS(515), - [sym_word] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_AMP_GT] = ACTIONS(513), - [sym__special_character] = ACTIONS(513), - [anon_sym_LT_LT_LT] = ACTIONS(513), - [anon_sym_GT_AMP] = ACTIONS(513), - [anon_sym_esac] = ACTIONS(513), - [anon_sym_BQUOTE] = ACTIONS(513), - [sym_raw_string] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_PIPE_AMP] = ACTIONS(513), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_EQ_TILDE] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [anon_sym_esac] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [1357] = { - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT_LPAREN] = ACTIONS(285), - [sym_ansii_c_string] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_DOLLAR] = ACTIONS(285), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_GT_LPAREN] = ACTIONS(285), - [sym_number] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), - [sym_variable_name] = ACTIONS(287), - [sym_file_descriptor] = ACTIONS(287), - [sym_word] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_esac] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(285), - [sym_raw_string] = ACTIONS(285), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(1358), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1358] = { - [aux_sym__literal_repeat1] = STATE(1358), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [sym_ansii_c_string] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_number] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_variable_name] = ACTIONS(813), - [sym_file_descriptor] = ACTIONS(813), - [sym_word] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(811), - [sym__special_character] = ACTIONS(3110), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_esac] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_raw_string] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), + [aux_sym_concatenation_repeat1] = STATE(1367), + [sym_word] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [sym__special_character] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [anon_sym_BQUOTE] = ACTIONS(435), + [sym_raw_string] = ACTIONS(435), + [sym_number] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(435), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_LT_LPAREN] = ACTIONS(435), + [sym_ansii_c_string] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym_variable_name] = ACTIONS(439), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_DOLLAR] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_esac] = ACTIONS(435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(435), + [anon_sym_GT_LPAREN] = ACTIONS(435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(435), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [1359] = { - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [sym_ansii_c_string] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [sym__concat] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_number] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [sym_variable_name] = ACTIONS(933), - [sym_file_descriptor] = ACTIONS(933), - [sym_word] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(931), - [sym__special_character] = ACTIONS(931), - [anon_sym_LT_LT_LT] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_esac] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), + [sym_word] = ACTIONS(525), + [anon_sym_AMP_GT_GT] = ACTIONS(525), + [sym__special_character] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(525), + [sym_raw_string] = ACTIONS(525), + [sym_number] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(525), + [sym__concat] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(525), + [anon_sym_LT_AMP] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(525), + [anon_sym_LT_LT_DASH] = ACTIONS(525), + [anon_sym_LT_LPAREN] = ACTIONS(525), + [sym_ansii_c_string] = ACTIONS(525), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_DQUOTE] = ACTIONS(525), + [sym_variable_name] = ACTIONS(527), + [sym_file_descriptor] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(525), + [anon_sym_AMP_GT] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_LT_LT_LT] = ACTIONS(525), + [anon_sym_GT_AMP] = ACTIONS(525), + [anon_sym_esac] = ACTIONS(525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(525), + [anon_sym_GT_LPAREN] = ACTIONS(525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI] = ACTIONS(525), + [anon_sym_PIPE_AMP] = ACTIONS(525), }, [1360] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [aux_sym__simple_variable_name_token1] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [sym_file_descriptor] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [anon_sym_esac] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [sym_variable_name] = ACTIONS(587), + [aux_sym__simple_variable_name_token1] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [anon_sym_esac] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [1361] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [sym_variable_name] = ACTIONS(591), + [aux_sym__simple_variable_name_token1] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [anon_sym_esac] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [1362] = { - [anon_sym_AMP_GT_GT] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(975), - [anon_sym_LT_LPAREN] = ACTIONS(975), - [sym_ansii_c_string] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__concat] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_AMP] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_LT_LT_DASH] = ACTIONS(975), - [anon_sym_GT_LPAREN] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(975), - [sym_variable_name] = ACTIONS(977), - [sym_file_descriptor] = ACTIONS(977), - [sym_word] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_AMP_GT] = ACTIONS(975), - [sym__special_character] = ACTIONS(975), - [anon_sym_LT_LT_LT] = ACTIONS(975), - [anon_sym_GT_AMP] = ACTIONS(975), - [anon_sym_esac] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_raw_string] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), + [sym_word] = ACTIONS(593), + [anon_sym_AMP_GT_GT] = ACTIONS(593), + [sym__special_character] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_raw_string] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(593), + [sym__concat] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_AMP] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LPAREN] = ACTIONS(593), + [sym_ansii_c_string] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [sym_variable_name] = ACTIONS(595), + [sym_file_descriptor] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_AMP_GT] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_LT_LT_LT] = ACTIONS(593), + [anon_sym_GT_AMP] = ACTIONS(593), + [anon_sym_esac] = ACTIONS(593), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(593), + [anon_sym_GT_LPAREN] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_SEMI_SEMI] = ACTIONS(593), + [anon_sym_PIPE_AMP] = ACTIONS(593), }, [1363] = { - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_esac] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(185), + [sym_number] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_LT_LPAREN] = ACTIONS(185), + [sym_ansii_c_string] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_variable_name] = ACTIONS(189), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), + [anon_sym_GT_LPAREN] = ACTIONS(185), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [1364] = { - [sym_expansion] = STATE(1363), - [sym_string_expansion] = STATE(1363), - [sym_simple_expansion] = STATE(1363), - [sym_string] = STATE(1363), - [sym_command_substitution] = STATE(1363), - [sym_process_substitution] = STATE(1363), - [sym_arithmetic_expansion] = STATE(1363), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(3113), - [sym_number] = ACTIONS(3115), - [sym__special_character] = ACTIONS(3117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3123), - [anon_sym_BQUOTE] = ACTIONS(3125), - [sym_raw_string] = ACTIONS(3117), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3127), - [sym_word] = ACTIONS(3115), - [anon_sym_LT_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3129), - [sym_ansii_c_string] = ACTIONS(3117), + [aux_sym__literal_repeat1] = STATE(1364), + [sym_word] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [sym__special_character] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [sym_raw_string] = ACTIONS(817), + [sym_number] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(817), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [sym_ansii_c_string] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym_variable_name] = ACTIONS(822), + [sym_file_descriptor] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_esac] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), }, [1365] = { - [aux_sym_concatenation_repeat1] = STATE(1365), - [anon_sym_AMP_GT_GT] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [sym_ansii_c_string] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [sym__concat] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_AMP] = ACTIONS(979), - [anon_sym_GT_GT] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_LT_LT_DASH] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(979), - [sym_variable_name] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym_word] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_AMP_GT] = ACTIONS(979), - [sym__special_character] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_GT_AMP] = ACTIONS(979), - [anon_sym_esac] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_raw_string] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(979), - [anon_sym_SEMI_SEMI] = ACTIONS(979), - [anon_sym_PIPE_AMP] = ACTIONS(979), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_esac] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1366] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_expansion] = STATE(1365), + [sym_string_expansion] = STATE(1365), + [sym_simple_expansion] = STATE(1365), + [sym_string] = STATE(1365), + [sym_command_substitution] = STATE(1365), + [sym_process_substitution] = STATE(1365), + [sym_arithmetic_expansion] = STATE(1365), + [sym_number] = ACTIONS(3119), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_LT_LPAREN] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym_ansii_c_string] = ACTIONS(3121), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(3125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3129), + [sym__special_character] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3133), + [anon_sym_BQUOTE] = ACTIONS(3135), + [sym_word] = ACTIONS(3119), }, [1367] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [aux_sym__simple_variable_name_token1] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [sym_variable_name] = ACTIONS(1088), - [sym_file_descriptor] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_AMP_GT] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [anon_sym_esac] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(1367), + [sym_word] = ACTIONS(933), + [anon_sym_AMP_GT_GT] = ACTIONS(933), + [sym__special_character] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_raw_string] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [sym__concat] = ACTIONS(3137), + [anon_sym_PIPE] = ACTIONS(933), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_LT_AMP] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(933), + [anon_sym_LT_LT_DASH] = ACTIONS(933), + [anon_sym_LT_LPAREN] = ACTIONS(933), + [sym_ansii_c_string] = ACTIONS(933), + [anon_sym_LF] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_variable_name] = ACTIONS(935), + [sym_file_descriptor] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_AMP_GT] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_GT_AMP] = ACTIONS(933), + [anon_sym_esac] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), + [anon_sym_GT_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_SEMI_SEMI] = ACTIONS(933), + [anon_sym_PIPE_AMP] = ACTIONS(933), }, [1368] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_esac] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1369] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [sym_ansii_c_string] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [sym__concat] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [sym_variable_name] = ACTIONS(1298), - [sym_file_descriptor] = ACTIONS(1298), - [sym_word] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_esac] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [aux_sym__simple_variable_name_token1] = ACTIONS(972), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_esac] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [1370] = { - [sym_string] = STATE(1290), - [anon_sym_0] = ACTIONS(3134), - [anon_sym_AT] = ACTIONS(3134), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2538), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(3136), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(3134), - [anon_sym_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym__] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(3136), - [sym_variable_name] = ACTIONS(1312), - [sym_file_descriptor] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(3134), - [anon_sym_AMP_GT] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_esac] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [sym_word] = ACTIONS(1002), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [sym__special_character] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_number] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [sym__concat] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1002), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [sym_ansii_c_string] = ACTIONS(1002), + [anon_sym_LF] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_variable_name] = ACTIONS(1004), + [sym_file_descriptor] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_AMP_GT] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_GT_AMP] = ACTIONS(1002), + [anon_sym_esac] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_SEMI_SEMI] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), }, [1371] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [aux_sym__simple_variable_name_token1] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [sym_variable_name] = ACTIONS(1358), - [sym_file_descriptor] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [anon_sym_esac] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [sym_word] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1082), + [sym__special_character] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1082), + [sym_number] = ACTIONS(1082), + [anon_sym_PIPE_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [sym__concat] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_AMP] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LT_DASH] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1082), + [sym_ansii_c_string] = ACTIONS(1082), + [anon_sym_LF] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_variable_name] = ACTIONS(1084), + [sym_file_descriptor] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_GT_AMP] = ACTIONS(1082), + [anon_sym_esac] = ACTIONS(1082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), + [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), + [anon_sym_AMP_AMP] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1082), + [anon_sym_PIPE_AMP] = ACTIONS(1082), }, [1372] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [aux_sym__simple_variable_name_token1] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [sym_variable_name] = ACTIONS(1412), - [sym_file_descriptor] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_AMP_GT] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [anon_sym_esac] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_esac] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1373] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [aux_sym__simple_variable_name_token1] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [sym_variable_name] = ACTIONS(1430), - [sym_file_descriptor] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [anon_sym_esac] = ACTIONS(1428), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1132), + [aux_sym__simple_variable_name_token1] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [anon_sym_esac] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [1374] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [aux_sym__simple_variable_name_token1] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [sym_variable_name] = ACTIONS(1661), - [sym_file_descriptor] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [anon_sym_esac] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1154), + [aux_sym__simple_variable_name_token1] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_esac] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [1375] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [aux_sym__simple_variable_name_token1] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [sym_variable_name] = ACTIONS(1673), - [sym_file_descriptor] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_AMP_GT] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [anon_sym_esac] = ACTIONS(1671), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), - }, - [1376] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [aux_sym__simple_variable_name_token1] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [sym_variable_name] = ACTIONS(1683), - [sym_file_descriptor] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - }, - [1377] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [aux_sym__simple_variable_name_token1] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [sym_variable_name] = ACTIONS(1687), - [sym_file_descriptor] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_AMP_GT] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [anon_sym_esac] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), - }, - [1378] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [aux_sym__simple_variable_name_token1] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [sym_variable_name] = ACTIONS(1870), - [sym_file_descriptor] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [anon_sym_esac] = ACTIONS(1868), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - }, - [1379] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [aux_sym__simple_variable_name_token1] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [sym_variable_name] = ACTIONS(1876), - [sym_file_descriptor] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [anon_sym_esac] = ACTIONS(1874), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), + [sym_string] = STATE(1296), + [sym_word] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(3140), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(3144), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(3142), + [sym_variable_name] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(3140), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(3140), + [anon_sym_DOLLAR] = ACTIONS(3142), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, - [1380] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [aux_sym__simple_variable_name_token1] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [sym_variable_name] = ACTIONS(1880), - [sym_file_descriptor] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), + [1376] = { + [sym_word] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [sym__concat] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [sym_ansii_c_string] = ACTIONS(1358), + [anon_sym_LF] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_variable_name] = ACTIONS(1360), + [sym_file_descriptor] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_esac] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), + }, + [1377] = { + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_variable_name] = ACTIONS(1428), + [aux_sym__simple_variable_name_token1] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), + }, + [1378] = { + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_variable_name] = ACTIONS(1476), + [aux_sym__simple_variable_name_token1] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [anon_sym_esac] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), + }, + [1379] = { + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_variable_name] = ACTIONS(1488), + [aux_sym__simple_variable_name_token1] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_esac] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), + }, + [1380] = { + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym_variable_name] = ACTIONS(1721), + [aux_sym__simple_variable_name_token1] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [anon_sym_esac] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [1381] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [aux_sym__simple_variable_name_token1] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_esac] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_variable_name] = ACTIONS(1727), + [aux_sym__simple_variable_name_token1] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [anon_sym_esac] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [1382] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [aux_sym__simple_variable_name_token1] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [sym_variable_name] = ACTIONS(1959), - [sym_file_descriptor] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_AMP_GT] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [anon_sym_esac] = ACTIONS(1957), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym_variable_name] = ACTIONS(1737), + [aux_sym__simple_variable_name_token1] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [anon_sym_esac] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [1383] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [aux_sym__simple_variable_name_token1] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [sym_variable_name] = ACTIONS(1963), - [sym_file_descriptor] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_AMP_GT] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1961), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym_variable_name] = ACTIONS(1749), + [aux_sym__simple_variable_name_token1] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [anon_sym_esac] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [1384] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [aux_sym__simple_variable_name_token1] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [sym_file_descriptor] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_AMP_GT] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [anon_sym_esac] = ACTIONS(505), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1892), + [aux_sym__simple_variable_name_token1] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [1385] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [aux_sym__simple_variable_name_token1] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [sym_file_descriptor] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_AMP_GT] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [anon_sym_esac] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_variable_name] = ACTIONS(1896), + [aux_sym__simple_variable_name_token1] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [anon_sym_esac] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [1386] = { - [anon_sym_AMP_GT_GT] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(967), - [anon_sym_LT_LPAREN] = ACTIONS(967), - [sym_ansii_c_string] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__concat] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_LT_AMP] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_LT_LT_DASH] = ACTIONS(967), - [anon_sym_GT_LPAREN] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [anon_sym_LF] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(967), - [sym_variable_name] = ACTIONS(969), - [sym_file_descriptor] = ACTIONS(969), - [sym_word] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_AMP_GT] = ACTIONS(967), - [sym__special_character] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_GT_AMP] = ACTIONS(967), - [anon_sym_esac] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_raw_string] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_SEMI_SEMI] = ACTIONS(967), - [anon_sym_PIPE_AMP] = ACTIONS(967), + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym_variable_name] = ACTIONS(1902), + [aux_sym__simple_variable_name_token1] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_esac] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [1387] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_variable_name] = ACTIONS(1908), + [aux_sym__simple_variable_name_token1] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [anon_sym_esac] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [1388] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [aux_sym__simple_variable_name_token1] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_file_descriptor] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_variable_name] = ACTIONS(1973), + [aux_sym__simple_variable_name_token1] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_esac] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [1389] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [aux_sym__simple_variable_name_token1] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [sym_file_descriptor] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_AMP_GT] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [anon_sym_esac] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym_variable_name] = ACTIONS(1977), + [aux_sym__simple_variable_name_token1] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [anon_sym_esac] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, [1390] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [aux_sym__simple_variable_name_token1] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [aux_sym__simple_variable_name_token1] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [anon_sym_esac] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [1391] = { - [sym_string] = STATE(1323), - [anon_sym_0] = ACTIONS(3140), - [anon_sym_AT] = ACTIONS(3140), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(3142), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(3140), - [anon_sym_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym__] = ACTIONS(3140), - [anon_sym_DOLLAR] = ACTIONS(3142), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(3142), - [sym_file_descriptor] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(3140), - [anon_sym_AMP_GT] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_esac] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(3144), + [sym_word] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym__simple_variable_name_token1] = ACTIONS(589), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [anon_sym_esac] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [1392] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [aux_sym__simple_variable_name_token1] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [sym_file_descriptor] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [anon_sym_esac] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_esac] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1393] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [aux_sym__simple_variable_name_token1] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [sym_file_descriptor] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_AMP_GT] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [anon_sym_esac] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [sym_word] = ACTIONS(972), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [sym__special_character] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_BQUOTE] = ACTIONS(972), + [sym_raw_string] = ACTIONS(972), + [sym_number] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [sym__concat] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(972), + [anon_sym_LT_LT_DASH] = ACTIONS(972), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [sym_ansii_c_string] = ACTIONS(972), + [anon_sym_LF] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym_variable_name] = ACTIONS(974), + [sym_file_descriptor] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LT_LT_LT] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_esac] = ACTIONS(972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_SEMI_SEMI] = ACTIONS(972), + [anon_sym_PIPE_AMP] = ACTIONS(972), }, [1394] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [aux_sym__simple_variable_name_token1] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [sym_file_descriptor] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [anon_sym_esac] = ACTIONS(1428), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [aux_sym__simple_variable_name_token1] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_esac] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1395] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [aux_sym__simple_variable_name_token1] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [sym_file_descriptor] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [anon_sym_esac] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [aux_sym__simple_variable_name_token1] = ACTIONS(1130), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [anon_sym_esac] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [1396] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [aux_sym__simple_variable_name_token1] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [sym_file_descriptor] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_AMP_GT] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [anon_sym_esac] = ACTIONS(1671), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [aux_sym__simple_variable_name_token1] = ACTIONS(1152), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_esac] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [1397] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [aux_sym__simple_variable_name_token1] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [sym_file_descriptor] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), + [sym_string] = STATE(1329), + [sym_word] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(3146), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(3146), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(3150), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [aux_sym__simple_variable_name_token1] = ACTIONS(3146), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(3146), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(3148), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1398] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [aux_sym__simple_variable_name_token1] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [sym_file_descriptor] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_AMP_GT] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [anon_sym_esac] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [aux_sym__simple_variable_name_token1] = ACTIONS(1426), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), }, [1399] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [aux_sym__simple_variable_name_token1] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [sym_file_descriptor] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [anon_sym_esac] = ACTIONS(1868), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [aux_sym__simple_variable_name_token1] = ACTIONS(1474), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [anon_sym_esac] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [1400] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [aux_sym__simple_variable_name_token1] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [sym_file_descriptor] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [anon_sym_esac] = ACTIONS(1874), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [aux_sym__simple_variable_name_token1] = ACTIONS(1486), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_esac] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [1401] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [aux_sym__simple_variable_name_token1] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [sym_file_descriptor] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [aux_sym__simple_variable_name_token1] = ACTIONS(1719), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [anon_sym_esac] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [1402] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [aux_sym__simple_variable_name_token1] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_esac] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [aux_sym__simple_variable_name_token1] = ACTIONS(1725), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [anon_sym_esac] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [1403] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [aux_sym__simple_variable_name_token1] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [sym_file_descriptor] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_AMP_GT] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [anon_sym_esac] = ACTIONS(1957), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [aux_sym__simple_variable_name_token1] = ACTIONS(1735), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [anon_sym_esac] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [1404] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [aux_sym__simple_variable_name_token1] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [sym_file_descriptor] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_AMP_GT] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1961), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [aux_sym__simple_variable_name_token1] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [anon_sym_esac] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [1405] = { - [anon_sym_AMP_GT_GT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_LT_LPAREN] = ACTIONS(505), - [sym_ansii_c_string] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [sym__concat] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(505), - [anon_sym_LT_LT_DASH] = ACTIONS(505), - [anon_sym_GT_LPAREN] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [anon_sym_LF] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(505), - [sym_variable_name] = ACTIONS(507), - [sym_file_descriptor] = ACTIONS(507), - [sym_word] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_AMP_GT] = ACTIONS(505), - [sym__special_character] = ACTIONS(505), - [anon_sym_LT_LT_LT] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [anon_sym_esac] = ACTIONS(505), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_PIPE_AMP] = ACTIONS(505), + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [aux_sym__simple_variable_name_token1] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [1406] = { - [anon_sym_AMP_GT_GT] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(509), - [sym_ansii_c_string] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [sym__concat] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_LT_AMP] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(509), - [anon_sym_LT_LT_DASH] = ACTIONS(509), - [anon_sym_GT_LPAREN] = ACTIONS(509), - [sym_number] = ACTIONS(509), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(509), - [sym_variable_name] = ACTIONS(511), - [sym_file_descriptor] = ACTIONS(511), - [sym_word] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_AMP_GT] = ACTIONS(509), - [sym__special_character] = ACTIONS(509), - [anon_sym_LT_LT_LT] = ACTIONS(509), - [anon_sym_GT_AMP] = ACTIONS(509), - [anon_sym_esac] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(509), - [sym_raw_string] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_PIPE_AMP] = ACTIONS(509), + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [aux_sym__simple_variable_name_token1] = ACTIONS(1894), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [anon_sym_esac] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [1407] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [aux_sym__simple_variable_name_token1] = ACTIONS(1900), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_esac] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [1408] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), - [anon_sym_LT_LPAREN] = ACTIONS(1032), - [sym_ansii_c_string] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [sym__concat] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_AMP] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_LT_LT_DASH] = ACTIONS(1032), - [anon_sym_GT_LPAREN] = ACTIONS(1032), - [sym_number] = ACTIONS(1032), - [anon_sym_LF] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), - [sym_variable_name] = ACTIONS(1034), - [sym_file_descriptor] = ACTIONS(1034), - [sym_word] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_AMP_GT] = ACTIONS(1032), - [sym__special_character] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_GT_AMP] = ACTIONS(1032), - [anon_sym_esac] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [sym_raw_string] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SEMI_SEMI] = ACTIONS(1032), - [anon_sym_PIPE_AMP] = ACTIONS(1032), + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [aux_sym__simple_variable_name_token1] = ACTIONS(1906), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [anon_sym_esac] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), }, [1409] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1086), - [sym_ansii_c_string] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [sym__concat] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_AMP] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [anon_sym_GT_LPAREN] = ACTIONS(1086), - [sym_number] = ACTIONS(1086), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), - [sym_variable_name] = ACTIONS(1088), - [sym_file_descriptor] = ACTIONS(1088), - [sym_word] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_AMP_GT] = ACTIONS(1086), - [sym__special_character] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_GT_AMP] = ACTIONS(1086), - [anon_sym_esac] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI_SEMI] = ACTIONS(1086), - [anon_sym_PIPE_AMP] = ACTIONS(1086), + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [aux_sym__simple_variable_name_token1] = ACTIONS(1971), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_esac] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), }, [1410] = { - [anon_sym_AMP_GT_GT] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(971), - [anon_sym_LT_LPAREN] = ACTIONS(971), - [sym_ansii_c_string] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [sym__concat] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_AMP] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_LT_LT_DASH] = ACTIONS(971), - [anon_sym_GT_LPAREN] = ACTIONS(971), - [sym_number] = ACTIONS(971), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [sym_variable_name] = ACTIONS(973), - [sym_file_descriptor] = ACTIONS(973), - [sym_word] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_AMP_GT] = ACTIONS(971), - [sym__special_character] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_GT_AMP] = ACTIONS(971), - [anon_sym_esac] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [sym_raw_string] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SEMI_SEMI] = ACTIONS(971), - [anon_sym_PIPE_AMP] = ACTIONS(971), + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [aux_sym__simple_variable_name_token1] = ACTIONS(1975), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [anon_sym_esac] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), }, - [1411] = { - [sym_string] = STATE(1356), - [anon_sym_0] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [sym_ansii_c_string] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_PIPE] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym__] = ACTIONS(3146), - [anon_sym_DOLLAR] = ACTIONS(3150), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [sym_number] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(3150), - [sym_variable_name] = ACTIONS(1312), - [sym_file_descriptor] = ACTIONS(1312), - [sym_word] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_AMP_GT] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_esac] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [1411] = { + [sym_word] = ACTIONS(585), + [anon_sym_AMP_GT_GT] = ACTIONS(585), + [sym__special_character] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_raw_string] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), + [sym__concat] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_LT_AMP] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(585), + [anon_sym_LT_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LPAREN] = ACTIONS(585), + [sym_ansii_c_string] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [sym_variable_name] = ACTIONS(587), + [sym_file_descriptor] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_AMP_GT] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_LT_LT_LT] = ACTIONS(585), + [anon_sym_GT_AMP] = ACTIONS(585), + [anon_sym_esac] = ACTIONS(585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(585), + [anon_sym_GT_LPAREN] = ACTIONS(585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), }, [1412] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [sym_ansii_c_string] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [sym__concat] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_number] = ACTIONS(1356), - [anon_sym_LF] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [sym_variable_name] = ACTIONS(1358), - [sym_file_descriptor] = ACTIONS(1358), - [sym_word] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [anon_sym_esac] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), + [sym_word] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(589), + [sym__special_character] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(589), + [sym_raw_string] = ACTIONS(589), + [sym_number] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [sym__concat] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LT_AMP] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(589), + [anon_sym_LT_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LPAREN] = ACTIONS(589), + [sym_ansii_c_string] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [sym_variable_name] = ACTIONS(591), + [sym_file_descriptor] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_LT_LT_LT] = ACTIONS(589), + [anon_sym_GT_AMP] = ACTIONS(589), + [anon_sym_esac] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(589), + [anon_sym_GT_LPAREN] = ACTIONS(589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), }, [1413] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(1410), - [sym_ansii_c_string] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [sym__concat] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_AMP] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_LT_LT_DASH] = ACTIONS(1410), - [anon_sym_GT_LPAREN] = ACTIONS(1410), - [sym_number] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1410), - [sym_variable_name] = ACTIONS(1412), - [sym_file_descriptor] = ACTIONS(1412), - [sym_word] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_AMP_GT] = ACTIONS(1410), - [sym__special_character] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_GT_AMP] = ACTIONS(1410), - [anon_sym_esac] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_raw_string] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_esac] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1414] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), - [anon_sym_LT_LPAREN] = ACTIONS(1428), - [sym_ansii_c_string] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [sym__concat] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_AMP] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_LT_LT_DASH] = ACTIONS(1428), - [anon_sym_GT_LPAREN] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1428), - [sym_variable_name] = ACTIONS(1430), - [sym_file_descriptor] = ACTIONS(1430), - [sym_word] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_AMP_GT] = ACTIONS(1428), - [sym__special_character] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_GT_AMP] = ACTIONS(1428), - [anon_sym_esac] = ACTIONS(1428), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_raw_string] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI_SEMI] = ACTIONS(1428), - [anon_sym_PIPE_AMP] = ACTIONS(1428), + [sym_word] = ACTIONS(942), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [sym__special_character] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [sym_raw_string] = ACTIONS(942), + [sym_number] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [sym__concat] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(942), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(942), + [anon_sym_LT_LT_DASH] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [sym_ansii_c_string] = ACTIONS(942), + [anon_sym_LF] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_variable_name] = ACTIONS(944), + [sym_file_descriptor] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_LT_LT_LT] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [anon_sym_esac] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_PIPE_AMP] = ACTIONS(942), }, [1415] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), - [anon_sym_LT_LPAREN] = ACTIONS(1659), - [sym_ansii_c_string] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym__concat] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_LT_AMP] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_LT_LT_DASH] = ACTIONS(1659), - [anon_sym_GT_LPAREN] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [anon_sym_LF] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1659), - [sym_variable_name] = ACTIONS(1661), - [sym_file_descriptor] = ACTIONS(1661), - [sym_word] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_AMP_GT] = ACTIONS(1659), - [sym__special_character] = ACTIONS(1659), - [anon_sym_LT_LT_LT] = ACTIONS(1659), - [anon_sym_GT_AMP] = ACTIONS(1659), - [anon_sym_esac] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_raw_string] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI_SEMI] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), + [sym_word] = ACTIONS(1130), + [anon_sym_AMP_GT_GT] = ACTIONS(1130), + [sym__special_character] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_raw_string] = ACTIONS(1130), + [sym_number] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [sym__concat] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_AMP] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1130), + [anon_sym_LT_LT_DASH] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1130), + [sym_ansii_c_string] = ACTIONS(1130), + [anon_sym_LF] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1132), + [sym_file_descriptor] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_AMP_GT] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_GT_AMP] = ACTIONS(1130), + [anon_sym_esac] = ACTIONS(1130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1130), + [anon_sym_GT_LPAREN] = ACTIONS(1130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_SEMI_SEMI] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1130), }, [1416] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), - [anon_sym_LT_LPAREN] = ACTIONS(1671), - [sym_ansii_c_string] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1671), - [sym__concat] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_LT_AMP] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_LT_LT_DASH] = ACTIONS(1671), - [anon_sym_GT_LPAREN] = ACTIONS(1671), - [sym_number] = ACTIONS(1671), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), - [sym_variable_name] = ACTIONS(1673), - [sym_file_descriptor] = ACTIONS(1673), - [sym_word] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_AMP_GT] = ACTIONS(1671), - [sym__special_character] = ACTIONS(1671), - [anon_sym_LT_LT_LT] = ACTIONS(1671), - [anon_sym_GT_AMP] = ACTIONS(1671), - [anon_sym_esac] = ACTIONS(1671), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_raw_string] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI_SEMI] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(1671), + [sym_word] = ACTIONS(1152), + [anon_sym_AMP_GT_GT] = ACTIONS(1152), + [sym__special_character] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [sym_raw_string] = ACTIONS(1152), + [sym_number] = ACTIONS(1152), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [sym__concat] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_AMP] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_LT_LT_DASH] = ACTIONS(1152), + [anon_sym_LT_LPAREN] = ACTIONS(1152), + [sym_ansii_c_string] = ACTIONS(1152), + [anon_sym_LF] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1154), + [sym_file_descriptor] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_AMP_GT] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_GT_AMP] = ACTIONS(1152), + [anon_sym_esac] = ACTIONS(1152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1152), + [anon_sym_GT_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1152), + [anon_sym_SEMI_SEMI] = ACTIONS(1152), + [anon_sym_PIPE_AMP] = ACTIONS(1152), }, [1417] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1681), - [anon_sym_LT_LPAREN] = ACTIONS(1681), - [sym_ansii_c_string] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__concat] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_AMP] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_LT_LT_DASH] = ACTIONS(1681), - [anon_sym_GT_LPAREN] = ACTIONS(1681), - [sym_number] = ACTIONS(1681), - [anon_sym_LF] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), - [sym_variable_name] = ACTIONS(1683), - [sym_file_descriptor] = ACTIONS(1683), - [sym_word] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_AMP_GT] = ACTIONS(1681), - [sym__special_character] = ACTIONS(1681), - [anon_sym_LT_LT_LT] = ACTIONS(1681), - [anon_sym_GT_AMP] = ACTIONS(1681), - [anon_sym_esac] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_raw_string] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), + [sym_string] = STATE(1362), + [sym_word] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(3152), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(3152), + [sym__special_character] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_raw_string] = ACTIONS(3156), + [sym_number] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [sym_ansii_c_string] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_POUND] = ACTIONS(3154), + [sym_variable_name] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_GT] = ACTIONS(1300), + [aux_sym__simple_variable_name_token1] = ACTIONS(3152), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(3152), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), }, [1418] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), - [anon_sym_LT_LPAREN] = ACTIONS(1685), - [sym_ansii_c_string] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1685), - [sym__concat] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_LT_AMP] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_LT_LT_DASH] = ACTIONS(1685), - [anon_sym_GT_LPAREN] = ACTIONS(1685), - [sym_number] = ACTIONS(1685), - [anon_sym_LF] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), - [sym_variable_name] = ACTIONS(1687), - [sym_file_descriptor] = ACTIONS(1687), - [sym_word] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_AMP_GT] = ACTIONS(1685), - [sym__special_character] = ACTIONS(1685), - [anon_sym_LT_LT_LT] = ACTIONS(1685), - [anon_sym_GT_AMP] = ACTIONS(1685), - [anon_sym_esac] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_raw_string] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_SEMI_SEMI] = ACTIONS(1685), - [anon_sym_PIPE_AMP] = ACTIONS(1685), + [sym_word] = ACTIONS(1426), + [anon_sym_AMP_GT_GT] = ACTIONS(1426), + [sym__special_character] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [sym__concat] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LT_AMP] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1426), + [anon_sym_LT_LT_DASH] = ACTIONS(1426), + [anon_sym_LT_LPAREN] = ACTIONS(1426), + [sym_ansii_c_string] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_variable_name] = ACTIONS(1428), + [sym_file_descriptor] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_AMP_GT] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_GT_AMP] = ACTIONS(1426), + [anon_sym_esac] = ACTIONS(1426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), + [anon_sym_GT_LPAREN] = ACTIONS(1426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_SEMI_SEMI] = ACTIONS(1426), + [anon_sym_PIPE_AMP] = ACTIONS(1426), }, [1419] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_LT_LPAREN] = ACTIONS(1868), - [sym_ansii_c_string] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__concat] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_GT_LPAREN] = ACTIONS(1868), - [sym_number] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [sym_variable_name] = ACTIONS(1870), - [sym_file_descriptor] = ACTIONS(1870), - [sym_word] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [sym__special_character] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [anon_sym_esac] = ACTIONS(1868), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), + [sym_word] = ACTIONS(1474), + [anon_sym_AMP_GT_GT] = ACTIONS(1474), + [sym__special_character] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_raw_string] = ACTIONS(1474), + [sym_number] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [sym__concat] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_LT_AMP] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1474), + [anon_sym_LT_LT_DASH] = ACTIONS(1474), + [anon_sym_LT_LPAREN] = ACTIONS(1474), + [sym_ansii_c_string] = ACTIONS(1474), + [anon_sym_LF] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_variable_name] = ACTIONS(1476), + [sym_file_descriptor] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_AMP_GT] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_GT_AMP] = ACTIONS(1474), + [anon_sym_esac] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_GT_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_SEMI_SEMI] = ACTIONS(1474), + [anon_sym_PIPE_AMP] = ACTIONS(1474), }, [1420] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1874), - [anon_sym_LT_LPAREN] = ACTIONS(1874), - [sym_ansii_c_string] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_AMP] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_LT_LT_DASH] = ACTIONS(1874), - [anon_sym_GT_LPAREN] = ACTIONS(1874), - [sym_number] = ACTIONS(1874), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1874), - [sym_variable_name] = ACTIONS(1876), - [sym_file_descriptor] = ACTIONS(1876), - [sym_word] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_AMP_GT] = ACTIONS(1874), - [sym__special_character] = ACTIONS(1874), - [anon_sym_LT_LT_LT] = ACTIONS(1874), - [anon_sym_GT_AMP] = ACTIONS(1874), - [anon_sym_esac] = ACTIONS(1874), - [anon_sym_BQUOTE] = ACTIONS(1874), - [sym_raw_string] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_SEMI_SEMI] = ACTIONS(1874), - [anon_sym_PIPE_AMP] = ACTIONS(1874), + [sym_word] = ACTIONS(1486), + [anon_sym_AMP_GT_GT] = ACTIONS(1486), + [sym__special_character] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [sym_raw_string] = ACTIONS(1486), + [sym_number] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [sym__concat] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_LT_AMP] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), + [anon_sym_LT_LT_DASH] = ACTIONS(1486), + [anon_sym_LT_LPAREN] = ACTIONS(1486), + [sym_ansii_c_string] = ACTIONS(1486), + [anon_sym_LF] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_variable_name] = ACTIONS(1488), + [sym_file_descriptor] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_AMP_GT] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_GT_AMP] = ACTIONS(1486), + [anon_sym_esac] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_GT_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), }, [1421] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [sym_ansii_c_string] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [sym__concat] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_AMP] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [sym_variable_name] = ACTIONS(1880), - [sym_file_descriptor] = ACTIONS(1880), - [sym_word] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_AMP_GT] = ACTIONS(1878), - [sym__special_character] = ACTIONS(1878), - [anon_sym_LT_LT_LT] = ACTIONS(1878), - [anon_sym_GT_AMP] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1878), - [anon_sym_PIPE_AMP] = ACTIONS(1878), + [sym_word] = ACTIONS(1719), + [anon_sym_AMP_GT_GT] = ACTIONS(1719), + [sym__special_character] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_raw_string] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [sym__concat] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_AMP] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1719), + [anon_sym_LT_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [sym_ansii_c_string] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym_variable_name] = ACTIONS(1721), + [sym_file_descriptor] = ACTIONS(1721), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_AMP_GT] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_LT_LT_LT] = ACTIONS(1719), + [anon_sym_GT_AMP] = ACTIONS(1719), + [anon_sym_esac] = ACTIONS(1719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_SEMI_SEMI] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(1719), }, [1422] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [sym_ansii_c_string] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1886), - [sym_file_descriptor] = ACTIONS(1886), - [sym_word] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1884), - [sym__special_character] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_esac] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_raw_string] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), + [sym_word] = ACTIONS(1725), + [anon_sym_AMP_GT_GT] = ACTIONS(1725), + [sym__special_character] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_BQUOTE] = ACTIONS(1725), + [sym_raw_string] = ACTIONS(1725), + [sym_number] = ACTIONS(1725), + [anon_sym_PIPE_PIPE] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [sym__concat] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_AMP] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1725), + [anon_sym_LT_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LPAREN] = ACTIONS(1725), + [sym_ansii_c_string] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_variable_name] = ACTIONS(1727), + [sym_file_descriptor] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_AMP_GT] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_LT_LT_LT] = ACTIONS(1725), + [anon_sym_GT_AMP] = ACTIONS(1725), + [anon_sym_esac] = ACTIONS(1725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1725), + [anon_sym_GT_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1725), + [anon_sym_SEMI_SEMI] = ACTIONS(1725), + [anon_sym_PIPE_AMP] = ACTIONS(1725), }, [1423] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1957), - [anon_sym_LT_LPAREN] = ACTIONS(1957), - [sym_ansii_c_string] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_LT_AMP] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_LT_LT_DASH] = ACTIONS(1957), - [anon_sym_GT_LPAREN] = ACTIONS(1957), - [sym_number] = ACTIONS(1957), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1957), - [sym_variable_name] = ACTIONS(1959), - [sym_file_descriptor] = ACTIONS(1959), - [sym_word] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_AMP_GT] = ACTIONS(1957), - [sym__special_character] = ACTIONS(1957), - [anon_sym_LT_LT_LT] = ACTIONS(1957), - [anon_sym_GT_AMP] = ACTIONS(1957), - [anon_sym_esac] = ACTIONS(1957), - [anon_sym_BQUOTE] = ACTIONS(1957), - [sym_raw_string] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1957), - [anon_sym_PIPE_AMP] = ACTIONS(1957), + [sym_word] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1735), + [sym__special_character] = ACTIONS(1735), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1735), + [sym_number] = ACTIONS(1735), + [anon_sym_PIPE_PIPE] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [sym__concat] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_AMP] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1735), + [anon_sym_LT_LPAREN] = ACTIONS(1735), + [sym_ansii_c_string] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym_variable_name] = ACTIONS(1737), + [sym_file_descriptor] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_LT_LT_LT] = ACTIONS(1735), + [anon_sym_GT_AMP] = ACTIONS(1735), + [anon_sym_esac] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1735), + [anon_sym_GT_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1735), + [anon_sym_PIPE_AMP] = ACTIONS(1735), }, [1424] = { - [anon_sym_AMP_GT_GT] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1961), - [anon_sym_LT_LPAREN] = ACTIONS(1961), - [sym_ansii_c_string] = ACTIONS(1961), - [anon_sym_PIPE_PIPE] = ACTIONS(1961), - [sym__concat] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_LT_AMP] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1961), - [anon_sym_GT_LPAREN] = ACTIONS(1961), - [sym_number] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1961), - [sym_variable_name] = ACTIONS(1963), - [sym_file_descriptor] = ACTIONS(1963), - [sym_word] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_AMP_GT] = ACTIONS(1961), - [sym__special_character] = ACTIONS(1961), - [anon_sym_LT_LT_LT] = ACTIONS(1961), - [anon_sym_GT_AMP] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1961), - [anon_sym_BQUOTE] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1961), - [anon_sym_PIPE_AMP] = ACTIONS(1961), + [sym_word] = ACTIONS(1747), + [anon_sym_AMP_GT_GT] = ACTIONS(1747), + [sym__special_character] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_raw_string] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [sym__concat] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_LT_AMP] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1747), + [anon_sym_LT_LT_DASH] = ACTIONS(1747), + [anon_sym_LT_LPAREN] = ACTIONS(1747), + [sym_ansii_c_string] = ACTIONS(1747), + [anon_sym_LF] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym_variable_name] = ACTIONS(1749), + [sym_file_descriptor] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_AMP_GT] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_LT_LT_LT] = ACTIONS(1747), + [anon_sym_GT_AMP] = ACTIONS(1747), + [anon_sym_esac] = ACTIONS(1747), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1747), + [anon_sym_GT_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_SEMI_SEMI] = ACTIONS(1747), + [anon_sym_PIPE_AMP] = ACTIONS(1747), }, [1425] = { - [sym_string] = STATE(1125), - [anon_sym_0] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2966), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym__] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [aux_sym__simple_variable_name_token1] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [anon_sym_LF] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(2970), - [sym_file_descriptor] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_esac] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), + [sym_word] = ACTIONS(1890), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [sym__special_character] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_raw_string] = ACTIONS(1890), + [sym_number] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [sym__concat] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1890), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [sym_ansii_c_string] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1892), + [sym_file_descriptor] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), }, [1426] = { - [sym_expansion] = STATE(397), - [sym_concatenation] = STATE(398), - [sym_string] = STATE(397), - [sym_command_substitution] = STATE(397), - [sym_process_substitution] = STATE(397), - [aux_sym__literal_repeat1] = STATE(399), - [sym_simple_expansion] = STATE(397), - [sym_arithmetic_expansion] = STATE(397), - [sym_string_expansion] = STATE(397), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym__special_character] = ACTIONS(701), - [sym_number] = ACTIONS(3154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), - [sym_raw_string] = ACTIONS(3156), - [sym_word] = ACTIONS(3154), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(715), - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_ansii_c_string] = ACTIONS(3156), - [anon_sym_LT_LPAREN] = ACTIONS(699), + [sym_word] = ACTIONS(1894), + [anon_sym_AMP_GT_GT] = ACTIONS(1894), + [sym__special_character] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [sym_raw_string] = ACTIONS(1894), + [sym_number] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [sym__concat] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_AMP] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1894), + [anon_sym_LT_LT_DASH] = ACTIONS(1894), + [anon_sym_LT_LPAREN] = ACTIONS(1894), + [sym_ansii_c_string] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_variable_name] = ACTIONS(1896), + [sym_file_descriptor] = ACTIONS(1896), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_AMP_GT] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_LT_LT_LT] = ACTIONS(1894), + [anon_sym_GT_AMP] = ACTIONS(1894), + [anon_sym_esac] = ACTIONS(1894), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_GT_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_SEMI_SEMI] = ACTIONS(1894), + [anon_sym_PIPE_AMP] = ACTIONS(1894), }, [1427] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1432), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_word] = ACTIONS(1900), + [anon_sym_AMP_GT_GT] = ACTIONS(1900), + [sym__special_character] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1900), + [anon_sym_BQUOTE] = ACTIONS(1900), + [sym_raw_string] = ACTIONS(1900), + [sym_number] = ACTIONS(1900), + [anon_sym_PIPE_PIPE] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [sym__concat] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_LT_AMP] = ACTIONS(1900), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1900), + [anon_sym_LT_LT_DASH] = ACTIONS(1900), + [anon_sym_LT_LPAREN] = ACTIONS(1900), + [sym_ansii_c_string] = ACTIONS(1900), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym_variable_name] = ACTIONS(1902), + [sym_file_descriptor] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_AMP_GT] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_LT_LT_LT] = ACTIONS(1900), + [anon_sym_GT_AMP] = ACTIONS(1900), + [anon_sym_esac] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1900), + [anon_sym_GT_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1900), + [anon_sym_AMP_AMP] = ACTIONS(1900), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(1900), }, [1428] = { - [sym_if_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_negated_command] = STATE(64), - [sym_test_command] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(1441), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_compound_statement] = STATE(64), - [sym_subshell] = STATE(64), - [sym_declaration_command] = STATE(64), - [sym_unset_command] = STATE(64), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_case_statement] = STATE(64), - [sym_pipeline] = STATE(64), - [sym_list] = STATE(64), - [sym_command] = STATE(64), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_word] = ACTIONS(1906), + [anon_sym_AMP_GT_GT] = ACTIONS(1906), + [sym__special_character] = ACTIONS(1906), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_BQUOTE] = ACTIONS(1906), + [sym_raw_string] = ACTIONS(1906), + [sym_number] = ACTIONS(1906), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [sym__concat] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_LT_AMP] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1906), + [anon_sym_LT_LT_DASH] = ACTIONS(1906), + [anon_sym_LT_LPAREN] = ACTIONS(1906), + [sym_ansii_c_string] = ACTIONS(1906), + [anon_sym_LF] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_variable_name] = ACTIONS(1908), + [sym_file_descriptor] = ACTIONS(1908), + [anon_sym_GT] = ACTIONS(1906), + [anon_sym_AMP_GT] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_LT_LT_LT] = ACTIONS(1906), + [anon_sym_GT_AMP] = ACTIONS(1906), + [anon_sym_esac] = ACTIONS(1906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1906), + [anon_sym_GT_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1906), + [anon_sym_AMP_AMP] = ACTIONS(1906), + [anon_sym_SEMI_SEMI] = ACTIONS(1906), + [anon_sym_PIPE_AMP] = ACTIONS(1906), + }, + [1429] = { + [sym_word] = ACTIONS(1971), + [anon_sym_AMP_GT_GT] = ACTIONS(1971), + [sym__special_character] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_raw_string] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [sym__concat] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_AMP] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1971), + [anon_sym_LT_LT_DASH] = ACTIONS(1971), + [anon_sym_LT_LPAREN] = ACTIONS(1971), + [sym_ansii_c_string] = ACTIONS(1971), + [anon_sym_LF] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym_variable_name] = ACTIONS(1973), + [sym_file_descriptor] = ACTIONS(1973), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_AMP_GT] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_LT_LT_LT] = ACTIONS(1971), + [anon_sym_GT_AMP] = ACTIONS(1971), + [anon_sym_esac] = ACTIONS(1971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1971), + [anon_sym_GT_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(1971), + }, + [1430] = { + [sym_word] = ACTIONS(1975), + [anon_sym_AMP_GT_GT] = ACTIONS(1975), + [sym__special_character] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_raw_string] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [sym__concat] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_AMP] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1975), + [anon_sym_LT_LT_DASH] = ACTIONS(1975), + [anon_sym_LT_LPAREN] = ACTIONS(1975), + [sym_ansii_c_string] = ACTIONS(1975), + [anon_sym_LF] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym_variable_name] = ACTIONS(1977), + [sym_file_descriptor] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_AMP_GT] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_LT_LT_LT] = ACTIONS(1975), + [anon_sym_GT_AMP] = ACTIONS(1975), + [anon_sym_esac] = ACTIONS(1975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1975), + [anon_sym_GT_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), + }, + [1431] = { + [sym_string] = STATE(1131), + [anon_sym_QMARK] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(2974), + [sym_raw_string] = ACTIONS(2976), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(2972), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_0] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [anon_sym_LF] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_POUND] = ACTIONS(2974), + [anon_sym_BANG] = ACTIONS(2974), + [sym_file_descriptor] = ACTIONS(1306), + [aux_sym__simple_variable_name_token1] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym__] = ACTIONS(2972), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + }, + [1432] = { + [sym_expansion] = STATE(399), + [sym_concatenation] = STATE(400), + [sym_string] = STATE(399), + [sym_command_substitution] = STATE(399), + [sym_process_substitution] = STATE(399), + [aux_sym__literal_repeat1] = STATE(401), + [sym_simple_expansion] = STATE(399), + [sym_arithmetic_expansion] = STATE(399), + [sym_string_expansion] = STATE(399), + [sym_number] = ACTIONS(3160), + [sym_word] = ACTIONS(3160), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_ansii_c_string] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(713), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(717), + [anon_sym_GT_LPAREN] = ACTIONS(713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(719), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(723), + [sym_raw_string] = ACTIONS(3162), + }, + [1433] = { + [sym_if_statement] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_negated_command] = STATE(53), + [sym_test_command] = STATE(53), + [sym_variable_assignment] = STATE(54), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(1442), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_compound_statement] = STATE(53), + [sym_subshell] = STATE(53), + [sym_declaration_command] = STATE(53), + [sym_unset_command] = STATE(53), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_pipeline] = STATE(53), + [sym_list] = STATE(53), + [sym_command] = STATE(53), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(3164), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [1429] = { - [sym_string] = STATE(414), - [anon_sym_0] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_POUND] = ACTIONS(3164), - [anon_sym_QMARK] = ACTIONS(3166), - [aux_sym__simple_variable_name_token1] = ACTIONS(2276), - [anon_sym__] = ACTIONS(2276), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(3168), - [anon_sym_DOLLAR] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3166), - }, - [1430] = { - [anon_sym_RPAREN] = ACTIONS(3170), - [sym_comment] = ACTIONS(53), - }, - [1431] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), - }, - [1432] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3174), - }, - [1433] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3176), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, [1434] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(3178), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1446), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1435] = { - [anon_sym_RPAREN] = ACTIONS(3178), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(418), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_POUND] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [aux_sym__simple_variable_name_token1] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym__] = ACTIONS(2282), + [sym_raw_string] = ACTIONS(3174), + [anon_sym_DOLLAR] = ACTIONS(3172), + [anon_sym_AT] = ACTIONS(3170), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(3170), }, [1436] = { - [anon_sym_RPAREN] = ACTIONS(3180), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3176), }, [1437] = { - [sym_expansion] = STATE(442), - [sym_string] = STATE(442), - [sym_command_substitution] = STATE(442), - [sym_process_substitution] = STATE(442), - [sym_simple_expansion] = STATE(442), - [sym_arithmetic_expansion] = STATE(442), - [sym_string_expansion] = STATE(442), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [sym_number] = ACTIONS(2211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [sym_word] = ACTIONS(2211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(2213), - [sym__special_character] = ACTIONS(2213), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [sym_raw_string] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(85), + [sym_expansion] = STATE(437), + [sym_string] = STATE(437), + [sym_command_substitution] = STATE(437), + [sym_process_substitution] = STATE(437), + [sym_simple_expansion] = STATE(437), + [sym_arithmetic_expansion] = STATE(437), + [sym_string_expansion] = STATE(437), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [sym_ansii_c_string] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym__special_character] = ACTIONS(2215), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(2215), + [sym_number] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(99), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [sym_word] = ACTIONS(2217), }, [1438] = { - [sym_compound_statement] = STATE(445), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(3178), }, [1439] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_PIPE_AMP] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LF] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3186), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_SEMI_SEMI] = ACTIONS(3186), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [sym_compound_statement] = STATE(441), + [anon_sym_LPAREN] = ACTIONS(3180), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), }, [1440] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_GT_LPAREN] = ACTIONS(343), - [sym_number] = ACTIONS(343), - [anon_sym_LF] = ACTIONS(3184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(3186), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(343), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(343), - [sym_raw_string] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_SEMI_SEMI] = ACTIONS(3186), - [anon_sym_PIPE_AMP] = ACTIONS(487), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_PIPE_AMP] = ACTIONS(449), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_AMP_GT] = ACTIONS(451), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(3184), + [anon_sym_LT_LT_DASH] = ACTIONS(459), }, [1441] = { - [sym_if_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_negated_command] = STATE(64), - [sym_test_command] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_compound_statement] = STATE(64), - [sym_subshell] = STATE(64), - [sym_declaration_command] = STATE(64), - [sym_unset_command] = STATE(64), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_case_statement] = STATE(64), - [sym_pipeline] = STATE(64), - [sym_list] = STATE(64), - [sym_command] = STATE(64), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), + [anon_sym_PIPE_AMP] = ACTIONS(449), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [sym__special_character] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_BQUOTE] = ACTIONS(347), + [sym_raw_string] = ACTIONS(347), + [sym_number] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_PIPE] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_LT_LPAREN] = ACTIONS(347), + [sym_ansii_c_string] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_GT_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_SEMI_SEMI] = ACTIONS(3184), + [sym_word] = ACTIONS(347), + }, + [1442] = { + [sym_if_statement] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_negated_command] = STATE(53), + [sym_test_command] = STATE(53), + [sym_variable_assignment] = STATE(54), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_compound_statement] = STATE(53), + [sym_subshell] = STATE(53), + [sym_declaration_command] = STATE(53), + [sym_unset_command] = STATE(53), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_pipeline] = STATE(53), + [sym_list] = STATE(53), + [sym_command] = STATE(53), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(3186), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [1442] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, [1443] = { - [sym_concatenation] = STATE(1457), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1457), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3192), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_POUND] = ACTIONS(3194), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3192), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3192), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3192), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [1444] = { - [sym_concatenation] = STATE(1462), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1462), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3200), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3200), - [anon_sym_POUND] = ACTIONS(3202), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3200), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3200), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3200), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3190), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [1445] = { - [sym_concatenation] = STATE(453), - [sym_string] = STATE(452), - [sym_command_substitution] = STATE(452), - [sym_process_substitution] = STATE(452), - [sym_arithmetic_expansion] = STATE(452), - [sym_string_expansion] = STATE(452), - [sym_expansion] = STATE(452), - [aux_sym__literal_repeat1] = STATE(454), - [sym_array] = STATE(453), - [sym_simple_expansion] = STATE(452), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_GT_LPAREN] = ACTIONS(2911), - [sym_number] = ACTIONS(3210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2919), - [sym_word] = ACTIONS(3210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_LT_LPAREN] = ACTIONS(2911), - [sym_ansii_c_string] = ACTIONS(3212), - [sym__special_character] = ACTIONS(3214), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2925), - [sym_raw_string] = ACTIONS(3212), - [anon_sym_DOLLAR] = ACTIONS(3216), - [sym__empty_value] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1446] = { - [sym_expansion] = STATE(455), - [sym_concatenation] = STATE(456), - [sym_string] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym__literal_repeat1] = STATE(457), - [sym_simple_expansion] = STATE(455), - [sym_arithmetic_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym__special_character] = ACTIONS(701), - [sym_number] = ACTIONS(3220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), - [sym_raw_string] = ACTIONS(3222), - [sym_word] = ACTIONS(3220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(715), - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_ansii_c_string] = ACTIONS(3222), - [anon_sym_LT_LPAREN] = ACTIONS(699), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1447] = { - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(454), + [sym_string] = STATE(453), + [sym_command_substitution] = STATE(453), + [sym_process_substitution] = STATE(453), + [sym_arithmetic_expansion] = STATE(453), + [sym_string_expansion] = STATE(453), + [sym_expansion] = STATE(453), + [aux_sym__literal_repeat1] = STATE(455), + [sym_array] = STATE(454), + [sym_simple_expansion] = STATE(453), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_LT_LPAREN] = ACTIONS(2917), + [sym_ansii_c_string] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__special_character] = ACTIONS(3200), + [anon_sym_BQUOTE] = ACTIONS(2923), + [sym_raw_string] = ACTIONS(3198), + [sym_number] = ACTIONS(3202), + [anon_sym_DOLLAR] = ACTIONS(3204), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2917), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2933), + [sym__empty_value] = ACTIONS(3206), + [sym_word] = ACTIONS(3202), }, [1448] = { - [sym_do_group] = STATE(459), - [sym_comment] = ACTIONS(53), - [anon_sym_do] = ACTIONS(3226), + [sym_expansion] = STATE(456), + [sym_concatenation] = STATE(457), + [sym_string] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym__literal_repeat1] = STATE(458), + [sym_simple_expansion] = STATE(456), + [sym_arithmetic_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_number] = ACTIONS(3208), + [sym_word] = ACTIONS(3208), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_ansii_c_string] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_LT_LPAREN] = ACTIONS(713), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(717), + [anon_sym_GT_LPAREN] = ACTIONS(713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(719), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(723), + [sym_raw_string] = ACTIONS(3210), }, [1449] = { - [anon_sym_PLUS_EQ] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_LT_LT] = ACTIONS(679), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_EQ_TILDE] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_LT_EQ] = ACTIONS(679), - [anon_sym_DASH_EQ] = ACTIONS(679), - [anon_sym_BANG_EQ] = ACTIONS(679), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_GT] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_GT_EQ] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(683), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(679), - [sym_test_operator] = ACTIONS(679), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3212), }, [1450] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_raw_string] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1451] = { - [sym_heredoc_start] = ACTIONS(3228), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3214), }, [1452] = { - [sym_expansion] = STATE(467), - [sym_concatenation] = STATE(468), - [sym_string] = STATE(467), - [sym_command_substitution] = STATE(467), - [sym_process_substitution] = STATE(467), - [aux_sym__literal_repeat1] = STATE(469), - [sym_simple_expansion] = STATE(467), - [sym_arithmetic_expansion] = STATE(467), - [sym_string_expansion] = STATE(467), - [anon_sym_GT_LPAREN] = ACTIONS(2945), - [sym_number] = ACTIONS(3230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), - [sym_word] = ACTIONS(3230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [anon_sym_LT_LPAREN] = ACTIONS(2945), - [sym_ansii_c_string] = ACTIONS(3232), - [sym__special_character] = ACTIONS(3234), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2959), - [sym_raw_string] = ACTIONS(3232), - [anon_sym_DOLLAR] = ACTIONS(3236), + [sym_do_group] = STATE(461), + [sym_comment] = ACTIONS(23), + [anon_sym_do] = ACTIONS(3216), }, [1453] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_DASH] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_GT_GT] = ACTIONS(635), + [anon_sym_EQ_TILDE] = ACTIONS(641), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_RBRACK] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(639), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_AMP_AMP] = ACTIONS(635), + [sym_test_operator] = ACTIONS(635), }, [1454] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_concatenation] = STATE(1469), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1469), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_COLON] = ACTIONS(3218), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3220), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3218), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3218), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1455] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_elif_clause] = STATE(1475), - [sym_else_clause] = STATE(1473), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(1474), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [aux_sym_if_statement_repeat1] = STATE(1475), + [sym_concatenation] = STATE(1471), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1471), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3226), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3228), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3226), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3226), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [1456] = { + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3190), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + }, + [1457] = { + [sym_heredoc_start] = ACTIONS(3234), + [sym_comment] = ACTIONS(23), + }, + [1458] = { + [sym_expansion] = STATE(471), + [sym_concatenation] = STATE(472), + [sym_string] = STATE(471), + [sym_command_substitution] = STATE(471), + [sym_process_substitution] = STATE(471), + [aux_sym__literal_repeat1] = STATE(473), + [sym_simple_expansion] = STATE(471), + [sym_arithmetic_expansion] = STATE(471), + [sym_string_expansion] = STATE(471), + [anon_sym_LT_LPAREN] = ACTIONS(2951), + [sym_ansii_c_string] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym__special_character] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(2957), + [sym_raw_string] = ACTIONS(3236), + [sym_number] = ACTIONS(3240), + [anon_sym_DOLLAR] = ACTIONS(3242), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2965), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2967), + [sym_word] = ACTIONS(3240), + }, + [1459] = { + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + }, + [1460] = { + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_elif_clause] = STATE(1481), + [sym_else_clause] = STATE(1479), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(1480), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [aux_sym_if_statement_repeat1] = STATE(1481), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_elif] = ACTIONS(1006), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_elif] = ACTIONS(980), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_fi] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(1004), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(3246), + [anon_sym_else] = ACTIONS(978), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [1456] = { - [sym_concatenation] = STATE(1479), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1479), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3244), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(3246), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3244), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3244), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3244), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(3250), - }, - [1457] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - }, - [1458] = { - [sym_concatenation] = STATE(1479), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1479), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3244), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(3246), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3244), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3244), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3244), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3252), - }, - [1459] = { - [sym_concatenation] = STATE(1483), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1483), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3254), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3254), - [anon_sym_POUND] = ACTIONS(3256), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3254), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_EQ] = ACTIONS(3254), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3260), - }, - [1460] = { - [sym_expansion] = STATE(1484), - [sym_concatenation] = STATE(1485), - [sym_string] = STATE(1484), - [sym_command_substitution] = STATE(1484), - [sym_process_substitution] = STATE(1484), - [aux_sym__literal_repeat1] = STATE(1486), - [sym_simple_expansion] = STATE(1484), - [sym_arithmetic_expansion] = STATE(1484), - [sym_string_expansion] = STATE(1484), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(3262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3248), - [sym_word] = ACTIONS(3262), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(3264), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(1084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, [1461] = { - [sym_concatenation] = STATE(1488), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1488), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3266), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3266), - [anon_sym_POUND] = ACTIONS(3268), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3266), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3266), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3266), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(3272), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1462] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1484), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym_for_statement_repeat1] = STATE(1484), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [sym_expansion] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [sym_simple_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1463] = { - [sym_concatenation] = STATE(1489), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym_for_statement_repeat1] = STATE(1489), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [sym_expansion] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [sym_simple_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(3274), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [aux_sym_concatenation_repeat1] = STATE(962), + [anon_sym_RBRACK] = ACTIONS(3252), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(3254), }, [1464] = { - [aux_sym_concatenation_repeat1] = STATE(990), - [anon_sym_RBRACK] = ACTIONS(3276), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(3278), + [anon_sym_RBRACK] = ACTIONS(3252), + [sym_comment] = ACTIONS(23), + [sym__concat] = ACTIONS(3256), }, [1465] = { - [anon_sym_RBRACK] = ACTIONS(3276), - [sym_comment] = ACTIONS(53), - [sym__concat] = ACTIONS(3280), + [aux_sym__literal_repeat1] = STATE(968), + [anon_sym_RBRACK] = ACTIONS(3258), + [sym__concat] = ACTIONS(3260), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1072), }, [1466] = { - [aux_sym__literal_repeat1] = STATE(995), - [anon_sym_RBRACK] = ACTIONS(3282), - [sym__special_character] = ACTIONS(1140), - [sym__concat] = ACTIONS(3284), - [sym_comment] = ACTIONS(53), - }, - [1467] = { - [sym_compound_statement] = STATE(492), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(53), - }, - [1468] = { [sym_do_group] = STATE(493), - [sym_comment] = ACTIONS(53), - [anon_sym_do] = ACTIONS(3226), + [sym_comment] = ACTIONS(23), + [anon_sym_do] = ACTIONS(3216), }, - [1469] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(1493), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [1467] = { + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(1488), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_done] = ACTIONS(3286), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_done] = ACTIONS(3262), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + }, + [1468] = { + [sym_concatenation] = STATE(1490), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1490), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3264), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3264), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3270), + [sym_word] = ACTIONS(659), + }, + [1469] = { + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1470] = { - [sym_expansion] = STATE(1494), - [aux_sym_heredoc_body_repeat1] = STATE(1494), - [sym_simple_expansion] = STATE(1494), - [sym_command_substitution] = STATE(1494), - [sym__heredoc_body_end] = ACTIONS(3288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), - [anon_sym_DOLLAR] = ACTIONS(1204), - [sym__heredoc_body_middle] = ACTIONS(3290), + [sym_concatenation] = STATE(1492), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1492), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3272), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3272), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3272), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3278), + [sym_word] = ACTIONS(659), }, [1471] = { - [sym_compound_statement] = STATE(498), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1472] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_SEMI_SEMI] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3294), + [sym_concatenation] = STATE(1490), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1490), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3280), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3264), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3264), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1473] = { - [sym_comment] = ACTIONS(53), - [anon_sym_fi] = ACTIONS(3296), + [sym_concatenation] = STATE(1495), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1495), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_COLON] = ACTIONS(3282), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3284), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3282), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_EQ] = ACTIONS(3282), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3282), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1474] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_elif_clause] = STATE(1496), - [sym_else_clause] = STATE(1495), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(257), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [aux_sym_if_statement_repeat1] = STATE(1496), + [sym_expansion] = STATE(1497), + [sym_concatenation] = STATE(1498), + [sym_string] = STATE(1497), + [sym_command_substitution] = STATE(1497), + [sym_process_substitution] = STATE(1497), + [aux_sym__literal_repeat1] = STATE(1499), + [sym_simple_expansion] = STATE(1497), + [sym_arithmetic_expansion] = STATE(1497), + [sym_string_expansion] = STATE(1497), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(3290), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(3290), + [sym_number] = ACTIONS(3292), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(3292), + }, + [1475] = { + [sym_compound_statement] = STATE(498), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + }, + [1476] = { + [sym_expansion] = STATE(1500), + [aux_sym_heredoc_body_repeat1] = STATE(1500), + [sym_simple_expansion] = STATE(1500), + [sym_command_substitution] = STATE(1500), + [anon_sym_DOLLAR] = ACTIONS(1206), + [sym__heredoc_body_end] = ACTIONS(3294), + [sym_comment] = ACTIONS(23), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_BQUOTE] = ACTIONS(1212), + [sym__heredoc_body_middle] = ACTIONS(3296), + }, + [1477] = { + [sym_compound_statement] = STATE(502), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + }, + [1478] = { + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym_LF] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_SEMI_SEMI] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), + }, + [1479] = { + [sym_comment] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(3302), + }, + [1480] = { + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_elif_clause] = STATE(1502), + [sym_else_clause] = STATE(1501), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(259), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [aux_sym_if_statement_repeat1] = STATE(1502), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_elif] = ACTIONS(1006), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_elif] = ACTIONS(980), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_fi] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(1004), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(3304), + [anon_sym_else] = ACTIONS(978), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [1475] = { - [sym_elif_clause] = STATE(259), - [sym_else_clause] = STATE(1495), - [aux_sym_if_statement_repeat1] = STATE(259), + [1481] = { + [sym_elif_clause] = STATE(261), + [sym_else_clause] = STATE(1501), + [aux_sym_if_statement_repeat1] = STATE(261), [anon_sym_elif] = ACTIONS(1334), - [anon_sym_fi] = ACTIONS(3296), + [anon_sym_fi] = ACTIONS(3302), + [sym_comment] = ACTIONS(23), [anon_sym_else] = ACTIONS(1336), - [sym_comment] = ACTIONS(53), - }, - [1476] = { - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [sym_last_case_item] = STATE(1498), - [sym_arithmetic_expansion] = STATE(262), - [sym_string_expansion] = STATE(262), - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(2555), - [aux_sym__literal_repeat1] = STATE(265), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(2555), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), - [anon_sym_esac] = ACTIONS(3300), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1118), - }, - [1477] = { - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [sym_last_case_item] = STATE(1500), - [sym_arithmetic_expansion] = STATE(262), - [sym_string_expansion] = STATE(262), - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(2556), - [aux_sym__literal_repeat1] = STATE(265), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(2556), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), - [anon_sym_esac] = ACTIONS(3302), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1118), - }, - [1478] = { - [sym_concatenation] = STATE(1501), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1501), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3304), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3304), - [anon_sym_POUND] = ACTIONS(3306), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3304), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_EQ] = ACTIONS(3304), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - }, - [1479] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - }, - [1480] = { - [sym_concatenation] = STATE(1501), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1501), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3304), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3304), - [anon_sym_POUND] = ACTIONS(3306), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3304), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_EQ] = ACTIONS(3304), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(3310), - }, - [1481] = { - [sym_expansion] = STATE(1503), - [sym_concatenation] = STATE(1504), - [sym_string] = STATE(1503), - [sym_command_substitution] = STATE(1503), - [sym_process_substitution] = STATE(1503), - [aux_sym__literal_repeat1] = STATE(1505), - [sym_simple_expansion] = STATE(1503), - [sym_arithmetic_expansion] = STATE(1503), - [sym_string_expansion] = STATE(1503), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(3312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3308), - [sym_word] = ACTIONS(3312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(3314), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(1084), }, [1482] = { - [sym_concatenation] = STATE(1507), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1507), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_POUND] = ACTIONS(3318), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3316), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_EQ] = ACTIONS(3316), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3316), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(3322), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [sym_last_case_item] = STATE(1504), + [sym_arithmetic_expansion] = STATE(263), + [sym_string_expansion] = STATE(263), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(2561), + [aux_sym__literal_repeat1] = STATE(267), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(2561), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_esac] = ACTIONS(3306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, [1483] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [sym_last_case_item] = STATE(1506), + [sym_arithmetic_expansion] = STATE(263), + [sym_string_expansion] = STATE(263), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(2562), + [aux_sym__literal_repeat1] = STATE(267), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(2562), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_esac] = ACTIONS(3308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, [1484] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(3308), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(274), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym_for_statement_repeat1] = STATE(274), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [sym_expansion] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [sym_simple_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3310), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1485] = { - [anon_sym_RBRACE] = ACTIONS(3308), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(969), + [sym_string_expansion] = STATE(969), + [sym_simple_expansion] = STATE(969), + [sym_string] = STATE(969), + [sym_command_substitution] = STATE(969), + [sym_process_substitution] = STATE(969), + [sym_arithmetic_expansion] = STATE(969), + [anon_sym_LT_LPAREN] = ACTIONS(567), + [sym_ansii_c_string] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(565), + [sym__special_character] = ACTIONS(1386), + [anon_sym_RBRACK] = ACTIONS(3312), + [anon_sym_BQUOTE] = ACTIONS(575), + [sym_raw_string] = ACTIONS(1384), + [sym_number] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(561), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(567), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [sym_word] = ACTIONS(1386), }, [1486] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(3324), - [sym_comment] = ACTIONS(53), + [anon_sym_RBRACK] = ACTIONS(3312), + [sym_comment] = ACTIONS(23), }, [1487] = { - [sym_concatenation] = STATE(1508), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1508), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_POUND] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3326), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_EQ] = ACTIONS(3326), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3326), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_RBRACK] = ACTIONS(3314), + [sym_comment] = ACTIONS(23), }, [1488] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - }, - [1489] = { - [sym_concatenation] = STATE(284), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym_for_statement_repeat1] = STATE(284), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [sym_expansion] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [sym_simple_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(3332), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), - }, - [1490] = { - [sym_expansion] = STATE(1000), - [sym_string_expansion] = STATE(1000), - [sym_simple_expansion] = STATE(1000), - [sym_string] = STATE(1000), - [sym_command_substitution] = STATE(1000), - [sym_process_substitution] = STATE(1000), - [sym_arithmetic_expansion] = STATE(1000), - [anon_sym_GT_LPAREN] = ACTIONS(617), - [sym_number] = ACTIONS(1460), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(3334), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), - [sym_word] = ACTIONS(1460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), - [anon_sym_LT_LPAREN] = ACTIONS(617), - [sym_ansii_c_string] = ACTIONS(1464), - [sym__special_character] = ACTIONS(1460), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(633), - [sym_raw_string] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(635), - }, - [1491] = { - [anon_sym_RBRACK] = ACTIONS(3334), - [sym_comment] = ACTIONS(53), - }, - [1492] = { - [anon_sym_RBRACK] = ACTIONS(3336), - [sym_comment] = ACTIONS(53), - }, - [1493] = { - [sym_if_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_negated_command] = STATE(203), - [sym_test_command] = STATE(203), - [sym_variable_assignment] = STATE(204), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_compound_statement] = STATE(203), - [sym_subshell] = STATE(203), - [sym_declaration_command] = STATE(203), - [sym_unset_command] = STATE(203), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [aux_sym__statements2] = STATE(257), - [sym_c_style_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_pipeline] = STATE(203), - [sym_list] = STATE(203), - [sym_command] = STATE(203), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_if_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_negated_command] = STATE(202), + [sym_test_command] = STATE(202), + [sym_variable_assignment] = STATE(203), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_compound_statement] = STATE(202), + [sym_subshell] = STATE(202), + [sym_declaration_command] = STATE(202), + [sym_unset_command] = STATE(202), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [aux_sym__statements2] = STATE(259), + [sym_c_style_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_pipeline] = STATE(202), + [sym_list] = STATE(202), + [sym_command] = STATE(202), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_done] = ACTIONS(3338), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_done] = ACTIONS(3316), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + }, + [1489] = { + [sym_concatenation] = STATE(1509), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1509), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3318), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [1490] = { + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [1491] = { + [sym_concatenation] = STATE(1510), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1510), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3324), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3324), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [1492] = { + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [1493] = { + [sym_concatenation] = STATE(1509), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1509), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3318), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3330), + [sym_word] = ACTIONS(659), }, [1494] = { - [sym_expansion] = STATE(296), - [aux_sym_heredoc_body_repeat1] = STATE(296), - [sym_simple_expansion] = STATE(296), - [sym_command_substitution] = STATE(296), - [sym__heredoc_body_end] = ACTIONS(3340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), - [anon_sym_DOLLAR] = ACTIONS(1204), - [sym__heredoc_body_middle] = ACTIONS(1518), + [sym_concatenation] = STATE(1513), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1513), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PERCENT] = ACTIONS(3332), + [anon_sym_COLON] = ACTIONS(3332), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3332), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3332), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3332), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3338), + [sym_word] = ACTIONS(659), }, [1495] = { - [sym_comment] = ACTIONS(53), - [anon_sym_fi] = ACTIONS(3342), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1496] = { - [sym_elif_clause] = STATE(259), - [sym_else_clause] = STATE(1511), - [aux_sym_if_statement_repeat1] = STATE(259), - [anon_sym_elif] = ACTIONS(1334), - [anon_sym_fi] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(1336), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(1514), + [sym_concatenation] = STATE(1515), + [sym_string] = STATE(1514), + [sym_command_substitution] = STATE(1514), + [sym_process_substitution] = STATE(1514), + [aux_sym__literal_repeat1] = STATE(1516), + [sym_simple_expansion] = STATE(1514), + [sym_arithmetic_expansion] = STATE(1514), + [sym_string_expansion] = STATE(1514), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(3340), + [sym_number] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(3342), }, [1497] = { - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [sym_last_case_item] = STATE(1512), - [sym_arithmetic_expansion] = STATE(262), - [sym_string_expansion] = STATE(262), - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(2559), - [aux_sym__literal_repeat1] = STATE(265), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(2559), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), - [anon_sym_esac] = ACTIONS(3344), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1118), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(3322), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1498] = { - [sym_comment] = ACTIONS(53), - [anon_sym_esac] = ACTIONS(3346), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3322), }, [1499] = { - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [sym_last_case_item] = STATE(1513), - [sym_arithmetic_expansion] = STATE(262), - [sym_string_expansion] = STATE(262), - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(2560), - [aux_sym__literal_repeat1] = STATE(265), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(2560), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), - [anon_sym_esac] = ACTIONS(3348), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(1118), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(3344), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1500] = { - [sym_comment] = ACTIONS(53), - [anon_sym_esac] = ACTIONS(3350), + [sym_expansion] = STATE(298), + [aux_sym_heredoc_body_repeat1] = STATE(298), + [sym_simple_expansion] = STATE(298), + [sym_command_substitution] = STATE(298), + [anon_sym_DOLLAR] = ACTIONS(1206), + [sym__heredoc_body_end] = ACTIONS(3346), + [sym_comment] = ACTIONS(23), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_BQUOTE] = ACTIONS(1212), + [sym__heredoc_body_middle] = ACTIONS(1524), }, [1501] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_comment] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(3348), }, [1502] = { - [sym_concatenation] = STATE(1514), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1514), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3354), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3356), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3354), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3354), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_elif_clause] = STATE(261), + [sym_else_clause] = STATE(1517), + [aux_sym_if_statement_repeat1] = STATE(261), + [anon_sym_elif] = ACTIONS(1334), + [anon_sym_fi] = ACTIONS(3348), + [sym_comment] = ACTIONS(23), + [anon_sym_else] = ACTIONS(1336), }, [1503] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(3352), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [sym_last_case_item] = STATE(1518), + [sym_arithmetic_expansion] = STATE(263), + [sym_string_expansion] = STATE(263), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(2565), + [aux_sym__literal_repeat1] = STATE(267), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(2565), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_esac] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, [1504] = { - [anon_sym_RBRACE] = ACTIONS(3352), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(3352), }, [1505] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(3358), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [sym_last_case_item] = STATE(1519), + [sym_arithmetic_expansion] = STATE(263), + [sym_string_expansion] = STATE(263), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(2566), + [aux_sym__literal_repeat1] = STATE(267), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(2566), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_esac] = ACTIONS(3354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, [1506] = { - [sym_concatenation] = STATE(1515), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1515), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_POUND] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3360), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_EQ] = ACTIONS(3360), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3360), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(3356), }, [1507] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_do_group] = STATE(525), + [sym_comment] = ACTIONS(23), + [anon_sym_do] = ACTIONS(3216), }, [1508] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_do_group] = STATE(526), + [sym_compound_statement] = STATE(526), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3216), }, [1509] = { - [sym_do_group] = STATE(525), - [sym_comment] = ACTIONS(53), - [anon_sym_do] = ACTIONS(3226), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1510] = { - [sym_do_group] = STATE(526), - [sym_compound_statement] = STATE(526), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3226), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1511] = { - [sym_comment] = ACTIONS(53), - [anon_sym_fi] = ACTIONS(3370), + [sym_concatenation] = STATE(1522), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1522), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_PERCENT] = ACTIONS(3364), + [anon_sym_COLON] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3364), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_EQ] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1512] = { - [sym_comment] = ACTIONS(53), - [anon_sym_esac] = ACTIONS(3372), + [sym_concatenation] = STATE(1523), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1523), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3368), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1513] = { - [sym_comment] = ACTIONS(53), - [anon_sym_esac] = ACTIONS(3374), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1514] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3376), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(3360), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1515] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3360), }, [1516] = { - [sym_do_group] = STATE(532), - [sym_compound_statement] = STATE(532), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(53), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(3374), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1517] = { - [sym_do_group] = STATE(532), - [sym_compound_statement] = STATE(532), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3226), + [sym_comment] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(3376), }, [1518] = { - [sym_comment] = ACTIONS(53), - [anon_sym_esac] = ACTIONS(3382), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(3378), }, [1519] = { - [sym_comment] = ACTIONS(53), - [anon_sym_esac] = ACTIONS(3384), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(3380), }, [1520] = { - [sym_do_group] = STATE(535), - [sym_compound_statement] = STATE(535), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(53), + [sym_do_group] = STATE(534), + [sym_compound_statement] = STATE(534), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_do] = ACTIONS(3216), }, [1521] = { - [sym_do_group] = STATE(535), - [sym_compound_statement] = STATE(535), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3386), - [anon_sym_do] = ACTIONS(3226), + [sym_do_group] = STATE(534), + [sym_compound_statement] = STATE(534), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_do] = ACTIONS(3216), }, [1522] = { - [sym_do_group] = STATE(536), - [sym_compound_statement] = STATE(536), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1523] = { - [sym_do_group] = STATE(536), - [sym_compound_statement] = STATE(536), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_SEMI] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3226), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3386), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1524] = { - [sym_do_group] = STATE(537), - [sym_compound_statement] = STATE(537), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(83), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(3388), }, [1525] = { - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), + [sym_comment] = ACTIONS(23), + [anon_sym_esac] = ACTIONS(3390), + }, + [1526] = { + [sym_do_group] = STATE(539), + [sym_compound_statement] = STATE(539), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_do] = ACTIONS(3216), + }, + [1527] = { + [sym_do_group] = STATE(539), + [sym_compound_statement] = STATE(539), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3216), + }, + [1528] = { + [sym_do_group] = STATE(540), + [sym_compound_statement] = STATE(540), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_do] = ACTIONS(3216), + }, + [1529] = { + [sym_do_group] = STATE(540), + [sym_compound_statement] = STATE(540), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3216), + }, + [1530] = { + [sym_do_group] = STATE(541), + [sym_compound_statement] = STATE(541), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_do] = ACTIONS(3216), + }, + [1531] = { + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), [sym_test_command] = STATE(415), - [sym_variable_assignment] = STATE(1528), - [aux_sym_command_repeat1] = STATE(1528), - [sym_subscript] = STATE(2585), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), + [sym_variable_assignment] = STATE(1534), + [aux_sym_command_repeat1] = STATE(1534), + [sym_subscript] = STATE(2591), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), [sym_command] = STATE(415), - [sym_command_name] = STATE(550), - [aux_sym__literal_repeat1] = STATE(393), - [sym_simple_expansion] = STATE(386), + [sym_command_name] = STATE(554), + [aux_sym__literal_repeat1] = STATE(395), + [sym_simple_expansion] = STATE(389), [sym_subshell] = STATE(415), - [sym_file_redirect] = STATE(1528), + [sym_file_redirect] = STATE(1534), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_variable_name] = ACTIONS(273), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(93), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [sym__special_character] = ACTIONS(71), + [sym_variable_name] = ACTIONS(267), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), [anon_sym_AMP_GT] = ACTIONS(27), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym__special_character] = ACTIONS(103), + [sym_raw_string] = ACTIONS(75), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_number] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(23), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym_raw_string] = ACTIONS(79), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - [anon_sym_DOLLAR] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [sym_word] = ACTIONS(77), }, - [1526] = { - [sym_heredoc_redirect] = STATE(420), - [sym_file_redirect] = STATE(420), - [sym_herestring_redirect] = STATE(420), - [aux_sym_redirected_statement_repeat1] = STATE(420), + [1532] = { + [sym_heredoc_redirect] = STATE(423), + [sym_file_redirect] = STATE(423), + [sym_herestring_redirect] = STATE(423), + [aux_sym_redirected_statement_repeat1] = STATE(423), [anon_sym_SEMI_SEMI] = ACTIONS(2367), - [anon_sym_AMP_GT_GT] = ACTIONS(489), - [anon_sym_LF] = ACTIONS(2365), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(2373), [anon_sym_SEMI] = ACTIONS(2367), - [sym_file_descriptor] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(2361), - [anon_sym_LT_LT_LT] = ACTIONS(501), - [anon_sym_GT_AMP] = ACTIONS(489), - [anon_sym_PIPE] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_LT_AMP] = ACTIONS(489), - [anon_sym_BQUOTE] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(489), - [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_BQUOTE] = ACTIONS(2099), + [anon_sym_AMP_GT] = ACTIONS(451), [anon_sym_AMP] = ACTIONS(2367), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_PIPE_AMP] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2369), + [anon_sym_LT_LT_LT] = ACTIONS(463), + [anon_sym_GT_AMP] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(2369), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_PIPE_AMP] = ACTIONS(2371), }, - [1527] = { - [sym_if_statement] = STATE(708), - [sym_function_definition] = STATE(708), - [sym_negated_command] = STATE(708), - [sym_test_command] = STATE(708), - [sym_variable_assignment] = STATE(709), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(101), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(708), - [sym_for_statement] = STATE(708), - [sym_compound_statement] = STATE(708), - [sym_subshell] = STATE(708), - [sym_declaration_command] = STATE(708), - [sym_unset_command] = STATE(708), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(708), - [sym_while_statement] = STATE(708), - [sym_case_statement] = STATE(708), - [sym_pipeline] = STATE(708), - [sym_list] = STATE(708), - [sym_command] = STATE(708), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [1533] = { + [sym_if_statement] = STATE(714), + [sym_function_definition] = STATE(714), + [sym_negated_command] = STATE(714), + [sym_test_command] = STATE(714), + [sym_variable_assignment] = STATE(715), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(102), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(714), + [sym_for_statement] = STATE(714), + [sym_compound_statement] = STATE(714), + [sym_subshell] = STATE(714), + [sym_declaration_command] = STATE(714), + [sym_unset_command] = STATE(714), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(714), + [sym_while_statement] = STATE(714), + [sym_case_statement] = STATE(714), + [sym_pipeline] = STATE(714), + [sym_list] = STATE(714), + [sym_command] = STATE(714), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [1528] = { - [sym_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [sym_command_name] = STATE(576), - [sym_variable_assignment] = STATE(105), - [sym_simple_expansion] = STATE(386), - [sym_subscript] = STATE(2585), - [aux_sym_command_repeat1] = STATE(105), - [sym_arithmetic_expansion] = STATE(386), - [sym_file_redirect] = STATE(105), - [anon_sym_GT_LPAREN] = ACTIONS(77), + [1534] = { + [sym_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [sym_command_name] = STATE(581), + [sym_variable_assignment] = STATE(106), + [sym_simple_expansion] = STATE(389), + [sym_subscript] = STATE(2591), + [aux_sym_command_repeat1] = STATE(106), + [sym_arithmetic_expansion] = STATE(389), + [sym_file_redirect] = STATE(106), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [sym_variable_name] = ACTIONS(273), - [sym_word] = ACTIONS(93), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [sym__special_character] = ACTIONS(2103), + [sym_variable_name] = ACTIONS(267), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_LT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [sym__special_character] = ACTIONS(2097), + [sym_raw_string] = ACTIONS(75), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_number] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), + [sym_comment] = ACTIONS(23), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [sym_raw_string] = ACTIONS(79), - [anon_sym_BQUOTE] = ACTIONS(105), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(85), - }, - [1529] = { - [sym_heredoc_body] = STATE(675), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(996), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [sym_word] = ACTIONS(77), }, - [1530] = { - [anon_sym_BQUOTE] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(3390), - [anon_sym_SEMI] = ACTIONS(3392), - [anon_sym_SEMI_SEMI] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3392), - }, - [1531] = { - [sym_heredoc_body] = STATE(688), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_AMP_GT_GT] = ACTIONS(689), - [anon_sym_local] = ACTIONS(687), - [anon_sym_typeset] = ACTIONS(687), - [anon_sym_unsetenv] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(689), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(689), - [sym_ansii_c_string] = ACTIONS(689), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_LT_AMP] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_export] = ACTIONS(687), - [sym__simple_heredoc_body] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_case] = ACTIONS(687), - [anon_sym_LPAREN_LPAREN] = ACTIONS(689), - [sym_number] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_declare] = ACTIONS(687), - [anon_sym_GT_LPAREN] = ACTIONS(689), - [sym_file_descriptor] = ACTIONS(689), - [sym_word] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(687), - [sym_variable_name] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(687), - [anon_sym_readonly] = ACTIONS(687), - [sym__heredoc_body_beginning] = ACTIONS(996), - [anon_sym_unset] = ACTIONS(687), - [sym__special_character] = ACTIONS(687), - [anon_sym_GT_AMP] = ACTIONS(689), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(689), - [anon_sym_for] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(687), - [sym_raw_string] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(1210), + [1535] = { + [sym_heredoc_body] = STATE(681), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(701), + [sym_word] = ACTIONS(693), }, - [1532] = { - [anon_sym_BQUOTE] = ACTIONS(2294), + [1536] = { [sym_comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LF] = ACTIONS(3398), + [anon_sym_BQUOTE] = ACTIONS(2230), [anon_sym_SEMI] = ACTIONS(3396), [anon_sym_SEMI_SEMI] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(3396), - }, - [1533] = { - [sym_expansion] = STATE(792), - [sym_string_expansion] = STATE(792), - [sym_simple_expansion] = STATE(792), - [sym_string] = STATE(792), - [sym_command_substitution] = STATE(792), - [sym_process_substitution] = STATE(792), - [sym_arithmetic_expansion] = STATE(792), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(243), - [sym_number] = ACTIONS(2697), - [sym__special_character] = ACTIONS(2699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_raw_string] = ACTIONS(2699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), - [sym_word] = ACTIONS(2697), - [anon_sym_LT_LPAREN] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(3398), - [sym_ansii_c_string] = ACTIONS(2699), - }, - [1534] = { - [sym_expansion] = STATE(1132), - [sym_string_expansion] = STATE(1132), - [sym_simple_expansion] = STATE(1132), - [sym_string] = STATE(1132), - [sym_command_substitution] = STATE(1132), - [sym_process_substitution] = STATE(1132), - [sym_arithmetic_expansion] = STATE(1132), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(2945), - [sym_number] = ACTIONS(2947), - [sym__special_character] = ACTIONS(2957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), - [anon_sym_BQUOTE] = ACTIONS(2959), - [sym_raw_string] = ACTIONS(2957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [sym_word] = ACTIONS(2947), - [anon_sym_LT_LPAREN] = ACTIONS(2945), - [anon_sym_DOLLAR] = ACTIONS(3400), - [sym_ansii_c_string] = ACTIONS(2957), - }, - [1535] = { - [sym_expansion] = STATE(1198), - [sym_string_expansion] = STATE(1198), - [sym_simple_expansion] = STATE(1198), - [sym_string] = STATE(1198), - [sym_command_substitution] = STATE(1198), - [sym_process_substitution] = STATE(1198), - [sym_arithmetic_expansion] = STATE(1198), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(3001), - [sym__special_character] = ACTIONS(3003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(3003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [sym_word] = ACTIONS(3001), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_ansii_c_string] = ACTIONS(3003), - }, - [1536] = { - [sym_expansion] = STATE(551), - [sym_concatenation] = STATE(552), - [sym_string] = STATE(551), - [sym_command_substitution] = STATE(551), - [sym_process_substitution] = STATE(551), - [aux_sym__literal_repeat1] = STATE(553), - [sym_simple_expansion] = STATE(551), - [sym_arithmetic_expansion] = STATE(551), - [sym_string_expansion] = STATE(551), - [anon_sym_GT_LPAREN] = ACTIONS(2945), - [sym_number] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), - [sym_word] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [anon_sym_LT_LPAREN] = ACTIONS(2945), - [sym_ansii_c_string] = ACTIONS(3406), - [sym__special_character] = ACTIONS(3234), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2959), - [sym_raw_string] = ACTIONS(3406), - [anon_sym_DOLLAR] = ACTIONS(3236), }, [1537] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1540), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3410), + [sym_heredoc_body] = STATE(694), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_local] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_unsetenv] = ACTIONS(693), + [sym__special_character] = ACTIONS(693), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_raw_string] = ACTIONS(695), + [sym_number] = ACTIONS(693), + [anon_sym_function] = ACTIONS(693), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_export] = ACTIONS(693), + [sym__simple_heredoc_body] = ACTIONS(952), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_if] = ACTIONS(693), + [anon_sym_case] = ACTIONS(693), + [anon_sym_LPAREN_LPAREN] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [sym_ansii_c_string] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym_variable_name] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(693), + [sym__heredoc_body_beginning] = ACTIONS(954), + [anon_sym_AMP_GT] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(1218), + [sym_word] = ACTIONS(693), }, [1538] = { - [sym_string] = STATE(567), - [anon_sym_0] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2530), - [anon_sym_DQUOTE] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2530), - [anon_sym_QMARK] = ACTIONS(3412), - [aux_sym__simple_variable_name_token1] = ACTIONS(2526), - [anon_sym__] = ACTIONS(2526), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2532), - [anon_sym_DOLLAR] = ACTIONS(2530), - [anon_sym_AT] = ACTIONS(3412), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3400), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_SEMI_SEMI] = ACTIONS(3400), }, [1539] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(794), + [sym_string_expansion] = STATE(794), + [sym_simple_expansion] = STATE(794), + [sym_string] = STATE(794), + [sym_command_substitution] = STATE(794), + [sym_process_substitution] = STATE(794), + [sym_arithmetic_expansion] = STATE(794), + [sym_number] = ACTIONS(2703), + [sym_raw_string] = ACTIONS(2705), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym_ansii_c_string] = ACTIONS(2705), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(245), + [sym__special_character] = ACTIONS(2705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(249), + [sym_word] = ACTIONS(2703), }, [1540] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3416), + [sym_expansion] = STATE(1134), + [sym_string_expansion] = STATE(1134), + [sym_simple_expansion] = STATE(1134), + [sym_string] = STATE(1134), + [sym_command_substitution] = STATE(1134), + [sym_process_substitution] = STATE(1134), + [sym_arithmetic_expansion] = STATE(1134), + [sym_number] = ACTIONS(2959), + [sym_raw_string] = ACTIONS(2953), + [anon_sym_DOLLAR] = ACTIONS(3406), + [anon_sym_LT_LPAREN] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_ansii_c_string] = ACTIONS(2953), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2963), + [sym__special_character] = ACTIONS(2953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2965), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2967), + [anon_sym_BQUOTE] = ACTIONS(2957), + [sym_word] = ACTIONS(2959), }, [1541] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3418), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(1167), + [sym_string_expansion] = STATE(1167), + [sym_simple_expansion] = STATE(1167), + [sym_string] = STATE(1167), + [sym_command_substitution] = STATE(1167), + [sym_process_substitution] = STATE(1167), + [sym_arithmetic_expansion] = STATE(1167), + [sym_number] = ACTIONS(2985), + [sym_raw_string] = ACTIONS(2987), + [anon_sym_DOLLAR] = ACTIONS(3408), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym_ansii_c_string] = ACTIONS(2987), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [sym__special_character] = ACTIONS(2987), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_word] = ACTIONS(2985), }, [1542] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(3420), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), + [sym_expansion] = STATE(555), + [sym_concatenation] = STATE(556), + [sym_string] = STATE(555), + [sym_command_substitution] = STATE(555), + [sym_process_substitution] = STATE(555), + [aux_sym__literal_repeat1] = STATE(557), + [sym_simple_expansion] = STATE(555), + [sym_arithmetic_expansion] = STATE(555), + [sym_string_expansion] = STATE(555), + [anon_sym_LT_LPAREN] = ACTIONS(2951), + [sym_ansii_c_string] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym__special_character] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(2957), + [sym_raw_string] = ACTIONS(3410), + [sym_number] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3242), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2965), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2967), + [sym_word] = ACTIONS(3412), }, [1543] = { - [anon_sym_RPAREN] = ACTIONS(3420), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1549), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3414), + [anon_sym_DQUOTE] = ACTIONS(3416), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1544] = { - [anon_sym_RPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(572), + [anon_sym_QMARK] = ACTIONS(3418), + [anon_sym_DQUOTE] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [aux_sym__simple_variable_name_token1] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym__] = ACTIONS(2532), + [sym_raw_string] = ACTIONS(2536), + [anon_sym_DOLLAR] = ACTIONS(2538), + [anon_sym_AT] = ACTIONS(3418), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(3418), }, [1545] = { - [sym_expansion] = STATE(591), - [sym_string] = STATE(591), - [sym_command_substitution] = STATE(591), - [sym_process_substitution] = STATE(591), - [sym_simple_expansion] = STATE(591), - [sym_arithmetic_expansion] = STATE(591), - [sym_string_expansion] = STATE(591), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_number] = ACTIONS(2483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(123), - [sym_word] = ACTIONS(2483), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [sym_expansion] = STATE(588), + [sym_string] = STATE(588), + [sym_command_substitution] = STATE(588), + [sym_process_substitution] = STATE(588), + [sym_simple_expansion] = STATE(588), + [sym_arithmetic_expansion] = STATE(588), + [sym_string_expansion] = STATE(588), [anon_sym_LT_LPAREN] = ACTIONS(115), - [sym_ansii_c_string] = ACTIONS(2485), - [sym__special_character] = ACTIONS(2485), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(131), - [sym_raw_string] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(133), + [sym_ansii_c_string] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym__special_character] = ACTIONS(2487), + [anon_sym_BQUOTE] = ACTIONS(123), + [sym_raw_string] = ACTIONS(2487), + [sym_number] = ACTIONS(2489), + [anon_sym_DOLLAR] = ACTIONS(127), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(2489), }, [1546] = { - [sym_concatenation] = STATE(1554), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1554), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3424), - [anon_sym_POUND] = ACTIONS(3426), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3424), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3424), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3430), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(3420), }, [1547] = { - [sym_concatenation] = STATE(1559), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1559), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3432), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3432), - [anon_sym_POUND] = ACTIONS(3434), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3432), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3432), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3432), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [1548] = { - [sym_expansion] = STATE(596), - [sym_concatenation] = STATE(597), - [sym_string] = STATE(596), - [sym_command_substitution] = STATE(596), - [sym_process_substitution] = STATE(596), - [aux_sym__literal_repeat1] = STATE(598), - [sym_array] = STATE(597), - [sym_simple_expansion] = STATE(596), - [sym_arithmetic_expansion] = STATE(596), - [sym_string_expansion] = STATE(596), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_GT_LPAREN] = ACTIONS(2609), - [sym_number] = ACTIONS(3442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2619), - [sym_word] = ACTIONS(3442), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), - [anon_sym_LT_LPAREN] = ACTIONS(2609), - [sym_ansii_c_string] = ACTIONS(3444), - [sym__special_character] = ACTIONS(3446), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2621), - [sym_raw_string] = ACTIONS(3444), - [anon_sym_DOLLAR] = ACTIONS(149), - [sym__empty_value] = ACTIONS(3448), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1549] = { + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3426), + [anon_sym_DQUOTE] = ACTIONS(3424), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), + }, + [1550] = { [sym_expansion] = STATE(599), [sym_concatenation] = STATE(600), [sym_string] = STATE(599), [sym_command_substitution] = STATE(599), [sym_process_substitution] = STATE(599), [aux_sym__literal_repeat1] = STATE(601), + [sym_array] = STATE(600), [sym_simple_expansion] = STATE(599), [sym_arithmetic_expansion] = STATE(599), [sym_string_expansion] = STATE(599), - [anon_sym_GT_LPAREN] = ACTIONS(2945), - [sym_number] = ACTIONS(3450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), - [sym_word] = ACTIONS(3450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [anon_sym_LT_LPAREN] = ACTIONS(2945), - [sym_ansii_c_string] = ACTIONS(3452), - [sym__special_character] = ACTIONS(3234), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2959), - [sym_raw_string] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3236), - }, - [1550] = { - [anon_sym_BQUOTE] = ACTIONS(3454), - [sym_comment] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_LT_LPAREN] = ACTIONS(2621), + [sym_ansii_c_string] = ACTIONS(3430), + [anon_sym_DQUOTE] = ACTIONS(2623), + [sym__special_character] = ACTIONS(3432), + [anon_sym_BQUOTE] = ACTIONS(2629), + [sym_raw_string] = ACTIONS(3430), + [sym_number] = ACTIONS(3434), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2625), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2627), + [sym__empty_value] = ACTIONS(3436), + [sym_word] = ACTIONS(3434), }, [1551] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(3456), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(602), + [sym_concatenation] = STATE(603), + [sym_string] = STATE(602), + [sym_command_substitution] = STATE(602), + [sym_process_substitution] = STATE(602), + [aux_sym__literal_repeat1] = STATE(604), + [sym_simple_expansion] = STATE(602), + [sym_arithmetic_expansion] = STATE(602), + [sym_string_expansion] = STATE(602), + [anon_sym_LT_LPAREN] = ACTIONS(2951), + [sym_ansii_c_string] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym__special_character] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(2957), + [sym_raw_string] = ACTIONS(3438), + [sym_number] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3242), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2965), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2967), + [sym_word] = ACTIONS(3440), }, [1552] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(3458), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3442), }, [1553] = { - [sym_concatenation] = STATE(1562), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1562), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3460), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3460), - [anon_sym_POUND] = ACTIONS(3462), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3460), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3464), - [anon_sym_EQ] = ACTIONS(3460), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3460), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(3466), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_raw_string] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(3444), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1554] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3464), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3444), }, [1555] = { - [sym_concatenation] = STATE(1562), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1562), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3460), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3460), - [anon_sym_POUND] = ACTIONS(3462), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3460), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3464), - [anon_sym_EQ] = ACTIONS(3460), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3460), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3468), + [sym_concatenation] = STATE(1561), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1561), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_PERCENT] = ACTIONS(3446), + [anon_sym_COLON] = ACTIONS(3446), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3448), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3446), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3450), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_EQ] = ACTIONS(3446), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3446), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1556] = { - [sym_concatenation] = STATE(1566), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1566), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3470), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3470), - [anon_sym_POUND] = ACTIONS(3472), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3470), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3470), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3470), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3476), + [sym_concatenation] = STATE(1563), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1563), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_PERCENT] = ACTIONS(3454), + [anon_sym_COLON] = ACTIONS(3454), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3456), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3454), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3460), + [anon_sym_EQ] = ACTIONS(3454), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3454), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1557] = { - [sym_expansion] = STATE(1567), - [sym_concatenation] = STATE(1568), - [sym_string] = STATE(1567), - [sym_command_substitution] = STATE(1567), - [sym_process_substitution] = STATE(1567), - [aux_sym__literal_repeat1] = STATE(1569), - [sym_simple_expansion] = STATE(1567), - [sym_arithmetic_expansion] = STATE(1567), - [sym_string_expansion] = STATE(1567), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(3478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3464), - [sym_word] = ACTIONS(3478), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(3480), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(3480), - [anon_sym_DOLLAR] = ACTIONS(1084), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(3462), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [1558] = { - [sym_concatenation] = STATE(1571), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1571), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3482), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3482), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3482), - [anon_sym_POUND] = ACTIONS(3484), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3482), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3482), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3482), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(3488), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1559] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(1567), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(1567), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3466), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1560] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(1572), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(1572), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(3490), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_concatenation] = STATE(1569), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1569), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_PERCENT] = ACTIONS(3468), + [anon_sym_COLON] = ACTIONS(3468), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3468), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_EQ] = ACTIONS(3468), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3468), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3474), + [sym_word] = ACTIONS(659), }, [1561] = { - [sym_concatenation] = STATE(1573), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1573), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_POUND] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3492), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3496), - [anon_sym_EQ] = ACTIONS(3492), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3492), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1562] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3496), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1571), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1571), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3476), + [anon_sym_COLON] = ACTIONS(3476), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3476), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3480), + [anon_sym_EQ] = ACTIONS(3476), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3476), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3482), + [sym_word] = ACTIONS(659), }, [1563] = { - [sym_concatenation] = STATE(1573), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1573), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3492), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_POUND] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3492), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3496), - [anon_sym_EQ] = ACTIONS(3492), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3492), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(3498), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3480), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1564] = { - [sym_expansion] = STATE(1575), - [sym_concatenation] = STATE(1576), - [sym_string] = STATE(1575), - [sym_command_substitution] = STATE(1575), - [sym_process_substitution] = STATE(1575), - [aux_sym__literal_repeat1] = STATE(1577), - [sym_simple_expansion] = STATE(1575), - [sym_arithmetic_expansion] = STATE(1575), - [sym_string_expansion] = STATE(1575), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(3500), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3496), - [sym_word] = ACTIONS(3500), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(3502), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(3502), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(1569), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1569), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_PERCENT] = ACTIONS(3468), + [anon_sym_COLON] = ACTIONS(3468), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3484), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3468), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_EQ] = ACTIONS(3468), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3468), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1565] = { - [sym_concatenation] = STATE(1579), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1579), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3504), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3504), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3504), - [anon_sym_POUND] = ACTIONS(3506), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3504), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3504), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(3510), + [sym_concatenation] = STATE(1574), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1574), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_PERCENT] = ACTIONS(3486), + [anon_sym_COLON] = ACTIONS(3486), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3488), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3486), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_EQ] = ACTIONS(3486), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3486), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1566] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(1576), + [sym_concatenation] = STATE(1577), + [sym_string] = STATE(1576), + [sym_command_substitution] = STATE(1576), + [sym_process_substitution] = STATE(1576), + [aux_sym__literal_repeat1] = STATE(1578), + [sym_simple_expansion] = STATE(1576), + [sym_arithmetic_expansion] = STATE(1576), + [sym_string_expansion] = STATE(1576), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(3494), + [sym_number] = ACTIONS(3496), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(3496), }, [1567] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(3496), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(274), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(274), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3498), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1568] = { - [anon_sym_RBRACE] = ACTIONS(3496), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1579), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1579), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_COLON] = ACTIONS(3500), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3500), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_EQ] = ACTIONS(3500), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3500), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1569] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(3512), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1570] = { [sym_concatenation] = STATE(1580), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), [aux_sym_expansion_repeat1] = STATE(1580), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3514), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3514), - [anon_sym_POUND] = ACTIONS(3516), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3514), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_EQ] = ACTIONS(3514), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3514), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_PERCENT] = ACTIONS(3506), + [anon_sym_COLON] = ACTIONS(3506), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3506), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3508), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_EQ] = ACTIONS(3506), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3506), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1571] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1572] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(284), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(284), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(3520), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_concatenation] = STATE(1579), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1579), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_COLON] = ACTIONS(3500), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3500), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_EQ] = ACTIONS(3500), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3500), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3512), + [sym_word] = ACTIONS(659), }, [1573] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3522), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1583), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1583), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_PERCENT] = ACTIONS(3514), + [anon_sym_COLON] = ACTIONS(3514), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3514), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_EQ] = ACTIONS(3514), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3514), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3520), + [sym_word] = ACTIONS(659), }, [1574] = { - [sym_concatenation] = STATE(1581), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1581), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_POUND] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3524), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3522), - [anon_sym_EQ] = ACTIONS(3524), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3524), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1575] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(3522), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(1584), + [sym_concatenation] = STATE(1585), + [sym_string] = STATE(1584), + [sym_command_substitution] = STATE(1584), + [sym_process_substitution] = STATE(1584), + [aux_sym__literal_repeat1] = STATE(1586), + [sym_simple_expansion] = STATE(1584), + [sym_arithmetic_expansion] = STATE(1584), + [sym_string_expansion] = STATE(1584), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(3522), + [sym_number] = ACTIONS(3524), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(3524), }, [1576] = { - [anon_sym_RBRACE] = ACTIONS(3522), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(3504), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1577] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(3528), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3504), }, [1578] = { - [sym_concatenation] = STATE(1582), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1582), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3530), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3530), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3530), - [anon_sym_POUND] = ACTIONS(3532), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3530), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3530), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3530), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(3526), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1579] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1580] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3536), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3530), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1581] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3538), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1587), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1587), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_PERCENT] = ACTIONS(3532), + [anon_sym_COLON] = ACTIONS(3532), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3532), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_EQ] = ACTIONS(3532), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3532), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1582] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), + [sym_concatenation] = STATE(1588), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1588), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_COLON] = ACTIONS(3536), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3536), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3538), [anon_sym_RBRACE] = ACTIONS(3540), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(3536), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3536), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1583] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1586), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3542), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3544), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1584] = { - [sym_string] = STATE(650), - [anon_sym_POUND] = ACTIONS(3546), - [anon_sym_0] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(3548), - [aux_sym__simple_variable_name_token1] = ACTIONS(2628), - [anon_sym__] = ACTIONS(2628), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(3548), - [anon_sym_DASH] = ACTIONS(3546), - [sym_raw_string] = ACTIONS(3550), - [anon_sym_DOLLAR] = ACTIONS(3546), - [anon_sym_AT] = ACTIONS(3548), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(3528), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1585] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(3552), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3528), }, [1586] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3552), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3554), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(3542), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1587] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3556), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1588] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(3558), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1589] = { - [anon_sym_RPAREN] = ACTIONS(3558), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1595), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(3550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1590] = { - [anon_sym_RPAREN] = ACTIONS(3560), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(656), + [anon_sym_QMARK] = ACTIONS(3552), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(2623), + [anon_sym_POUND] = ACTIONS(3554), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_0] = ACTIONS(2634), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym__] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(3552), + [sym_raw_string] = ACTIONS(3556), }, [1591] = { - [sym_expansion] = STATE(665), - [sym_string_expansion] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_string] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [sym_arithmetic_expansion] = STATE(665), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(2609), - [sym_number] = ACTIONS(2611), - [sym__special_character] = ACTIONS(2613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2619), - [anon_sym_BQUOTE] = ACTIONS(2621), - [sym_raw_string] = ACTIONS(2613), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(141), - [sym_word] = ACTIONS(2611), - [anon_sym_LT_LPAREN] = ACTIONS(2609), - [anon_sym_DOLLAR] = ACTIONS(149), - [sym_ansii_c_string] = ACTIONS(2613), + [sym_expansion] = STATE(667), + [sym_string_expansion] = STATE(667), + [sym_simple_expansion] = STATE(667), + [sym_string] = STATE(667), + [sym_command_substitution] = STATE(667), + [sym_process_substitution] = STATE(667), + [sym_arithmetic_expansion] = STATE(667), + [sym_number] = ACTIONS(2615), + [sym_raw_string] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(155), + [anon_sym_LT_LPAREN] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2623), + [sym_ansii_c_string] = ACTIONS(2617), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym__special_character] = ACTIONS(2617), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2625), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2627), + [anon_sym_BQUOTE] = ACTIONS(2629), + [sym_word] = ACTIONS(2615), }, [1592] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1598), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1598), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3562), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3562), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3562), - [anon_sym_POUND] = ACTIONS(3564), - [anon_sym_DASH] = ACTIONS(3562), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3562), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(3558), }, [1593] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1603), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1603), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3570), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3570), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3570), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_RBRACE] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3570), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3560), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [1594] = { - [sym_expansion] = STATE(670), - [sym_concatenation] = STATE(671), - [sym_string] = STATE(670), - [sym_command_substitution] = STATE(670), - [sym_process_substitution] = STATE(670), - [aux_sym__literal_repeat1] = STATE(672), - [sym_array] = STATE(671), - [sym_simple_expansion] = STATE(670), - [sym_arithmetic_expansion] = STATE(670), - [sym_string_expansion] = STATE(670), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_number] = ACTIONS(3580), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(123), - [sym_word] = ACTIONS(3580), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [sym_ansii_c_string] = ACTIONS(3582), - [sym__special_character] = ACTIONS(129), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(131), - [sym_raw_string] = ACTIONS(3582), - [anon_sym_DOLLAR] = ACTIONS(133), - [sym__empty_value] = ACTIONS(3584), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3562), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1595] = { - [anon_sym_BQUOTE] = ACTIONS(3586), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1596] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(3588), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(673), + [sym_concatenation] = STATE(674), + [sym_string] = STATE(673), + [sym_command_substitution] = STATE(673), + [sym_process_substitution] = STATE(673), + [aux_sym__literal_repeat1] = STATE(675), + [sym_array] = STATE(674), + [sym_simple_expansion] = STATE(673), + [sym_arithmetic_expansion] = STATE(673), + [sym_string_expansion] = STATE(673), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_LT_LPAREN] = ACTIONS(115), + [sym_ansii_c_string] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym__special_character] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [sym_raw_string] = ACTIONS(3568), + [sym_number] = ACTIONS(3570), + [anon_sym_DOLLAR] = ACTIONS(127), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(133), + [sym__empty_value] = ACTIONS(3572), + [sym_word] = ACTIONS(3570), }, [1597] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1606), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1606), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3590), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3590), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_POUND] = ACTIONS(3592), - [anon_sym_DASH] = ACTIONS(3590), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_RBRACE] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3590), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3596), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3574), }, [1598] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(3576), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1599] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1606), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1606), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3590), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3590), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_POUND] = ACTIONS(3592), - [anon_sym_DASH] = ACTIONS(3590), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_RBRACE] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3590), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3598), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3576), }, [1600] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1610), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1610), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3600), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_POUND] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3600), - [anon_sym_RBRACE] = ACTIONS(3604), - [anon_sym_PERCENT] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1605), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1605), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3578), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3580), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3578), + [anon_sym_EQ] = ACTIONS(3578), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3578), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(3584), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3578), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1601] = { - [sym_expansion] = STATE(1611), - [sym_concatenation] = STATE(1612), - [sym_string] = STATE(1611), - [sym_command_substitution] = STATE(1611), - [sym_process_substitution] = STATE(1611), - [aux_sym__literal_repeat1] = STATE(1613), - [sym_simple_expansion] = STATE(1611), - [sym_arithmetic_expansion] = STATE(1611), - [sym_string_expansion] = STATE(1611), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(3608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3594), - [sym_word] = ACTIONS(3608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(3610), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(3610), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1607), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1607), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3586), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3588), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3586), + [anon_sym_PERCENT] = ACTIONS(3586), + [anon_sym_EQ] = ACTIONS(3586), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3586), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(3592), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3586), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1602] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1615), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1615), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3612), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_POUND] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3612), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_PERCENT] = ACTIONS(3612), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3618), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3594), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1603] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(1611), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(1611), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3596), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1604] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(1616), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(1616), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(3620), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1613), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1613), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3600), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3598), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3598), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(3604), + [sym_word] = ACTIONS(659), }, [1605] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1617), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1617), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3622), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3622), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3622), - [anon_sym_POUND] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3622), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1606] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1615), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1615), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3606), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3608), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_PERCENT] = ACTIONS(3606), + [anon_sym_EQ] = ACTIONS(3606), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3606), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3606), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(3612), + [sym_word] = ACTIONS(659), }, [1607] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1617), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1617), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3622), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3622), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3622), - [anon_sym_POUND] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3622), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_PERCENT] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3628), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1608] = { - [sym_expansion] = STATE(1619), - [sym_concatenation] = STATE(1620), - [sym_string] = STATE(1619), - [sym_command_substitution] = STATE(1619), - [sym_process_substitution] = STATE(1619), - [aux_sym__literal_repeat1] = STATE(1621), - [sym_simple_expansion] = STATE(1619), - [sym_arithmetic_expansion] = STATE(1619), - [sym_string_expansion] = STATE(1619), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(3630), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3626), - [sym_word] = ACTIONS(3630), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(3632), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(3632), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1613), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1613), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3600), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3598), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(3614), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3598), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1609] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1623), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3634), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3634), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3634), - [anon_sym_POUND] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3634), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_PERCENT] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3640), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1618), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1618), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3618), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3616), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3616), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1610] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(1620), + [sym_concatenation] = STATE(1621), + [sym_string] = STATE(1620), + [sym_command_substitution] = STATE(1620), + [sym_process_substitution] = STATE(1620), + [aux_sym__literal_repeat1] = STATE(1622), + [sym_simple_expansion] = STATE(1620), + [sym_arithmetic_expansion] = STATE(1620), + [sym_string_expansion] = STATE(1620), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(3624), + [sym_number] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(3626), }, [1611] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3626), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(274), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(274), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3628), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1612] = { - [anon_sym_RBRACE] = ACTIONS(3626), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1623), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3630), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3632), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PERCENT] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3630), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3630), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3630), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1613] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(3642), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1614] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(1624), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(1624), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3644), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3644), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3644), - [anon_sym_POUND] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3644), - [anon_sym_RBRACE] = ACTIONS(3648), - [anon_sym_PERCENT] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3636), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3638), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_EQ] = ACTIONS(3636), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3636), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1615] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3648), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1616] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(284), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(284), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(3650), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1623), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1623), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3630), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3632), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PERCENT] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3630), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3630), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3630), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(3642), + [sym_word] = ACTIONS(659), }, [1617] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1627), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1627), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3644), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3646), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PERCENT] = ACTIONS(3644), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3644), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(3650), + [sym_word] = ACTIONS(659), }, [1618] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1625), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1625), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3654), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3654), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3654), - [anon_sym_POUND] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3654), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_PERCENT] = ACTIONS(3654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1619] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3652), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(1628), + [sym_concatenation] = STATE(1629), + [sym_string] = STATE(1628), + [sym_command_substitution] = STATE(1628), + [sym_process_substitution] = STATE(1628), + [aux_sym__literal_repeat1] = STATE(1630), + [sym_simple_expansion] = STATE(1628), + [sym_arithmetic_expansion] = STATE(1628), + [sym_string_expansion] = STATE(1628), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(3652), + [sym_number] = ACTIONS(3654), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(3654), }, [1620] = { - [anon_sym_RBRACE] = ACTIONS(3652), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3634), + [sym__concat] = ACTIONS(1502), }, [1621] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(3658), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3634), }, [1622] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1626), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1626), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3660), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_POUND] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3660), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_PERCENT] = ACTIONS(3660), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3656), + [sym__special_character] = ACTIONS(1506), }, [1623] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1624] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3666), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1625] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1631), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1631), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3662), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3664), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3662), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3662), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1626] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1632), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1632), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3666), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3668), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_PERCENT] = ACTIONS(3666), + [anon_sym_EQ] = ACTIONS(3666), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3666), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3666), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1627] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1630), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3672), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3674), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1628] = { - [sym_string] = STATE(707), - [anon_sym_POUND] = ACTIONS(3676), - [anon_sym_0] = ACTIONS(2662), - [anon_sym_QMARK] = ACTIONS(3678), - [aux_sym__simple_variable_name_token1] = ACTIONS(2662), - [anon_sym__] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(2651), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3676), - [sym_raw_string] = ACTIONS(3680), - [anon_sym_DOLLAR] = ACTIONS(3676), - [anon_sym_AT] = ACTIONS(3678), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3658), + [sym__concat] = ACTIONS(1502), }, [1629] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(3682), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3658), }, [1630] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3682), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3684), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3672), + [sym__special_character] = ACTIONS(1506), }, [1631] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3686), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1632] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(3688), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1633] = { - [anon_sym_RPAREN] = ACTIONS(3688), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1639), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1634] = { - [anon_sym_RPAREN] = ACTIONS(3690), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(713), + [anon_sym_QMARK] = ACTIONS(3682), + [anon_sym_DOLLAR] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_POUND] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_0] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym__] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(3682), + [sym_raw_string] = ACTIONS(3686), }, [1635] = { - [sym_expansion] = STATE(716), - [sym_string_expansion] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_string] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [sym_arithmetic_expansion] = STATE(716), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(2643), - [sym_number] = ACTIONS(2645), - [sym__special_character] = ACTIONS(2647), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2653), - [anon_sym_BQUOTE] = ACTIONS(2655), - [sym_raw_string] = ACTIONS(2647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), - [sym_word] = ACTIONS(2645), - [anon_sym_LT_LPAREN] = ACTIONS(2643), - [anon_sym_DOLLAR] = ACTIONS(175), - [sym_ansii_c_string] = ACTIONS(2647), + [sym_expansion] = STATE(718), + [sym_string_expansion] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_string] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [sym_arithmetic_expansion] = STATE(718), + [sym_number] = ACTIONS(2649), + [sym_raw_string] = ACTIONS(2651), + [anon_sym_DOLLAR] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_ansii_c_string] = ACTIONS(2651), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(181), + [sym__special_character] = ACTIONS(2651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2659), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2661), + [anon_sym_BQUOTE] = ACTIONS(2663), + [sym_word] = ACTIONS(2649), }, [1636] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1642), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1642), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3692), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3692), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3692), - [anon_sym_POUND] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3692), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3692), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3692), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(3688), }, [1637] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1647), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1647), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3700), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3700), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_POUND] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3700), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3700), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3706), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3690), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [1638] = { - [sym_concatenation] = STATE(722), - [sym_string] = STATE(721), - [sym_command_substitution] = STATE(721), - [sym_process_substitution] = STATE(721), - [sym_arithmetic_expansion] = STATE(721), - [sym_string_expansion] = STATE(721), - [sym_expansion] = STATE(721), - [aux_sym__literal_repeat1] = STATE(723), - [sym_array] = STATE(722), - [sym_simple_expansion] = STATE(721), - [anon_sym_LPAREN] = ACTIONS(3708), - [anon_sym_GT_LPAREN] = ACTIONS(2747), - [sym_number] = ACTIONS(3710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2753), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2755), - [sym_word] = ACTIONS(3710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), - [anon_sym_LT_LPAREN] = ACTIONS(2747), - [sym_ansii_c_string] = ACTIONS(3712), - [sym__special_character] = ACTIONS(3714), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2759), - [sym_raw_string] = ACTIONS(3712), - [anon_sym_DOLLAR] = ACTIONS(2055), - [sym__empty_value] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3692), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1639] = { - [anon_sym_BQUOTE] = ACTIONS(3718), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1640] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(3720), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_concatenation] = STATE(725), + [sym_string] = STATE(724), + [sym_command_substitution] = STATE(724), + [sym_process_substitution] = STATE(724), + [sym_arithmetic_expansion] = STATE(724), + [sym_string_expansion] = STATE(724), + [sym_expansion] = STATE(724), + [aux_sym__literal_repeat1] = STATE(726), + [sym_array] = STATE(725), + [sym_simple_expansion] = STATE(724), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_LT_LPAREN] = ACTIONS(2753), + [sym_ansii_c_string] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(2757), + [sym__special_character] = ACTIONS(3700), + [anon_sym_BQUOTE] = ACTIONS(2759), + [sym_raw_string] = ACTIONS(3698), + [sym_number] = ACTIONS(3702), + [anon_sym_DOLLAR] = ACTIONS(2065), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2765), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2767), + [sym__empty_value] = ACTIONS(3704), + [sym_word] = ACTIONS(3702), }, [1641] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1650), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1650), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3722), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3722), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3722), - [anon_sym_POUND] = ACTIONS(3724), - [anon_sym_DASH] = ACTIONS(3722), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3722), - [anon_sym_RBRACE] = ACTIONS(3726), - [anon_sym_PERCENT] = ACTIONS(3722), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3728), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3706), }, [1642] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3726), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(3708), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1643] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1650), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1650), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3722), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3722), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3722), - [anon_sym_POUND] = ACTIONS(3724), - [anon_sym_DASH] = ACTIONS(3722), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3722), - [anon_sym_RBRACE] = ACTIONS(3726), - [anon_sym_PERCENT] = ACTIONS(3722), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3730), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3708), }, [1644] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1654), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1654), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3732), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3732), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3732), - [anon_sym_POUND] = ACTIONS(3734), - [anon_sym_DASH] = ACTIONS(3732), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3732), - [anon_sym_RBRACE] = ACTIONS(3736), - [anon_sym_PERCENT] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3738), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1649), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1649), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3710), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3712), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3714), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_PERCENT] = ACTIONS(3710), + [anon_sym_EQ] = ACTIONS(3710), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3710), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3710), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1645] = { - [sym_expansion] = STATE(1655), - [sym_concatenation] = STATE(1656), - [sym_string] = STATE(1655), - [sym_command_substitution] = STATE(1655), - [sym_process_substitution] = STATE(1655), - [aux_sym__literal_repeat1] = STATE(1657), - [sym_simple_expansion] = STATE(1655), - [sym_arithmetic_expansion] = STATE(1655), - [sym_string_expansion] = STATE(1655), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(3740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3726), - [sym_word] = ACTIONS(3740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(3742), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(3742), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1651), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1651), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3720), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3718), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(3724), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3718), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1646] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1659), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1659), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3744), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3744), - [anon_sym_POUND] = ACTIONS(3746), - [anon_sym_DASH] = ACTIONS(3744), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3744), - [anon_sym_RBRACE] = ACTIONS(3748), - [anon_sym_PERCENT] = ACTIONS(3744), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3750), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1647] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3748), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(1655), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym_for_statement_repeat1] = STATE(1655), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [sym_expansion] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [sym_simple_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3728), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1648] = { - [sym_concatenation] = STATE(1660), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym_for_statement_repeat1] = STATE(1660), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [sym_expansion] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [sym_simple_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(3752), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1657), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1657), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3732), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3730), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3730), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(3736), + [sym_word] = ACTIONS(659), }, [1649] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1661), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1661), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3754), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3754), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3754), - [anon_sym_POUND] = ACTIONS(3756), - [anon_sym_DASH] = ACTIONS(3754), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3754), - [anon_sym_RBRACE] = ACTIONS(3758), - [anon_sym_PERCENT] = ACTIONS(3754), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1650] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3758), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1659), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3740), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3738), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3738), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(3744), + [sym_word] = ACTIONS(659), }, [1651] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1661), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1661), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3754), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3754), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3754), - [anon_sym_POUND] = ACTIONS(3756), - [anon_sym_DASH] = ACTIONS(3754), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3754), - [anon_sym_RBRACE] = ACTIONS(3758), - [anon_sym_PERCENT] = ACTIONS(3754), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3760), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1652] = { - [sym_expansion] = STATE(1663), - [sym_concatenation] = STATE(1664), - [sym_string] = STATE(1663), - [sym_command_substitution] = STATE(1663), - [sym_process_substitution] = STATE(1663), - [aux_sym__literal_repeat1] = STATE(1665), - [sym_simple_expansion] = STATE(1663), - [sym_arithmetic_expansion] = STATE(1663), - [sym_string_expansion] = STATE(1663), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(3762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3758), - [sym_word] = ACTIONS(3762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(3764), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(3764), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1657), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1657), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3732), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3730), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3730), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1653] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1667), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1667), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3766), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3766), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3766), - [anon_sym_POUND] = ACTIONS(3768), - [anon_sym_DASH] = ACTIONS(3766), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3766), - [anon_sym_RBRACE] = ACTIONS(3770), - [anon_sym_PERCENT] = ACTIONS(3766), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3772), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1662), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1662), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3748), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3750), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(3754), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3748), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1654] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3770), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(1664), + [sym_concatenation] = STATE(1665), + [sym_string] = STATE(1664), + [sym_command_substitution] = STATE(1664), + [sym_process_substitution] = STATE(1664), + [aux_sym__literal_repeat1] = STATE(1666), + [sym_simple_expansion] = STATE(1664), + [sym_arithmetic_expansion] = STATE(1664), + [sym_string_expansion] = STATE(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(3756), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3734), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(3756), + [sym_number] = ACTIONS(3758), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(3758), }, [1655] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3758), - [sym__concat] = ACTIONS(1422), + [sym_concatenation] = STATE(274), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym_for_statement_repeat1] = STATE(274), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [sym_expansion] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [sym_simple_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1656] = { - [anon_sym_RBRACE] = ACTIONS(3758), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1667), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1667), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3764), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3762), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1657] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(3774), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1658] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(1668), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(1668), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3776), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3776), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3776), - [anon_sym_POUND] = ACTIONS(3778), - [anon_sym_DASH] = ACTIONS(3776), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3780), - [anon_sym_PERCENT] = ACTIONS(3776), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3768), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3770), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3772), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_PERCENT] = ACTIONS(3768), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3768), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1659] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3780), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3772), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1660] = { - [sym_concatenation] = STATE(284), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym_for_statement_repeat1] = STATE(284), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [sym_expansion] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [sym_simple_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(3782), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1667), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1667), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3764), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3762), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(3774), + [sym_word] = ACTIONS(659), }, [1661] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1671), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1671), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3776), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3778), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3776), + [anon_sym_PERCENT] = ACTIONS(3776), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3776), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(3782), + [sym_word] = ACTIONS(659), }, [1662] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1669), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1669), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3786), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3786), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3786), - [anon_sym_POUND] = ACTIONS(3788), - [anon_sym_DASH] = ACTIONS(3786), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3786), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_PERCENT] = ACTIONS(3786), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1663] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3784), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(1672), + [sym_concatenation] = STATE(1673), + [sym_string] = STATE(1672), + [sym_command_substitution] = STATE(1672), + [sym_process_substitution] = STATE(1672), + [aux_sym__literal_repeat1] = STATE(1674), + [sym_simple_expansion] = STATE(1672), + [sym_arithmetic_expansion] = STATE(1672), + [sym_string_expansion] = STATE(1672), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3766), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(3784), + [sym_number] = ACTIONS(3786), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(3786), }, [1664] = { - [anon_sym_RBRACE] = ACTIONS(3784), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3766), + [sym__concat] = ACTIONS(1502), }, [1665] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(3790), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3766), }, [1666] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1670), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1670), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3792), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3792), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3792), - [anon_sym_POUND] = ACTIONS(3794), - [anon_sym_DASH] = ACTIONS(3792), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3792), - [anon_sym_RBRACE] = ACTIONS(3796), - [anon_sym_PERCENT] = ACTIONS(3792), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3788), + [sym__special_character] = ACTIONS(1506), }, [1667] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3796), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1668] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3798), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3792), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1669] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3800), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1675), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1675), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3796), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3794), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3794), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1670] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1676), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1676), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3800), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(3802), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3798), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(3798), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1671] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1674), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3804), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3806), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1672] = { - [sym_string] = STATE(747), - [anon_sym_0] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_POUND] = ACTIONS(2686), - [anon_sym_QMARK] = ACTIONS(2688), - [aux_sym__simple_variable_name_token1] = ACTIONS(2682), - [anon_sym__] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(2690), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_AT] = ACTIONS(2688), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3790), + [sym__concat] = ACTIONS(1502), }, [1673] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(3808), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3790), }, [1674] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3808), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3810), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3804), + [sym__special_character] = ACTIONS(1506), }, [1675] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3812), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1676] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(3814), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(3808), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1677] = { - [anon_sym_RPAREN] = ACTIONS(3814), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1683), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3810), + [anon_sym_DQUOTE] = ACTIONS(3812), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1678] = { - [anon_sym_RPAREN] = ACTIONS(3816), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(753), + [anon_sym_QMARK] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [aux_sym__simple_variable_name_token1] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2694), + [sym_raw_string] = ACTIONS(2692), + [anon_sym_DOLLAR] = ACTIONS(2696), + [anon_sym_AT] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2688), }, [1679] = { - [sym_expansion] = STATE(754), - [sym_string] = STATE(754), - [sym_command_substitution] = STATE(754), - [sym_process_substitution] = STATE(754), - [sym_simple_expansion] = STATE(754), - [sym_arithmetic_expansion] = STATE(754), - [sym_string_expansion] = STATE(754), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(2673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(2673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(2675), - [sym__special_character] = ACTIONS(2675), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(756), + [sym_string] = STATE(756), + [sym_command_substitution] = STATE(756), + [sym_process_substitution] = STATE(756), + [sym_simple_expansion] = STATE(756), + [sym_arithmetic_expansion] = STATE(756), + [sym_string_expansion] = STATE(756), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(211), + [sym__special_character] = ACTIONS(2679), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(221), + [sym_raw_string] = ACTIONS(2679), + [sym_number] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(2681), }, [1680] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1686), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1686), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3818), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_POUND] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3818), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3818), - [anon_sym_RBRACE] = ACTIONS(3822), - [anon_sym_PERCENT] = ACTIONS(3818), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3824), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(3814), }, [1681] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1691), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1691), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3826), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3826), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3826), - [anon_sym_POUND] = ACTIONS(3828), - [anon_sym_DASH] = ACTIONS(3826), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3826), - [anon_sym_RBRACE] = ACTIONS(3830), - [anon_sym_PERCENT] = ACTIONS(3826), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3832), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3816), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [1682] = { - [sym_expansion] = STATE(759), - [sym_concatenation] = STATE(760), - [sym_string] = STATE(759), - [sym_command_substitution] = STATE(759), - [sym_process_substitution] = STATE(759), - [aux_sym__literal_repeat1] = STATE(761), - [sym_array] = STATE(760), - [sym_simple_expansion] = STATE(759), - [sym_arithmetic_expansion] = STATE(759), - [sym_string_expansion] = STATE(759), - [anon_sym_LPAREN] = ACTIONS(3834), - [anon_sym_GT_LPAREN] = ACTIONS(243), - [sym_number] = ACTIONS(3836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), - [sym_word] = ACTIONS(3836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), - [anon_sym_LT_LPAREN] = ACTIONS(243), - [sym_ansii_c_string] = ACTIONS(3838), - [sym__special_character] = ACTIONS(3840), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_raw_string] = ACTIONS(3838), - [anon_sym_DOLLAR] = ACTIONS(261), - [sym__empty_value] = ACTIONS(3842), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1683] = { - [anon_sym_BQUOTE] = ACTIONS(3844), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3818), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1684] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(3846), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(762), + [sym_concatenation] = STATE(763), + [sym_string] = STATE(762), + [sym_command_substitution] = STATE(762), + [sym_process_substitution] = STATE(762), + [aux_sym__literal_repeat1] = STATE(764), + [sym_array] = STATE(763), + [sym_simple_expansion] = STATE(762), + [sym_arithmetic_expansion] = STATE(762), + [sym_string_expansion] = STATE(762), + [anon_sym_LPAREN] = ACTIONS(3822), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [sym_ansii_c_string] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__special_character] = ACTIONS(3826), + [anon_sym_BQUOTE] = ACTIONS(249), + [sym_raw_string] = ACTIONS(3824), + [sym_number] = ACTIONS(3828), + [anon_sym_DOLLAR] = ACTIONS(235), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(251), + [sym__empty_value] = ACTIONS(3830), + [sym_word] = ACTIONS(3828), }, [1685] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1694), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1694), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3848), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3848), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3848), - [anon_sym_POUND] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3848), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3848), - [anon_sym_RBRACE] = ACTIONS(3852), - [anon_sym_PERCENT] = ACTIONS(3848), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3854), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3832), }, [1686] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3852), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_raw_string] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(3834), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1687] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1694), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1694), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3848), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3848), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3848), - [anon_sym_POUND] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3848), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3848), - [anon_sym_RBRACE] = ACTIONS(3852), - [anon_sym_PERCENT] = ACTIONS(3848), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3856), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3834), }, [1688] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1698), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1698), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3858), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3858), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3858), - [anon_sym_POUND] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3858), - [anon_sym_RBRACE] = ACTIONS(3862), - [anon_sym_PERCENT] = ACTIONS(3858), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3864), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(1693), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1693), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3838), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3840), + [anon_sym_RBRACE] = ACTIONS(3842), + [anon_sym_EQ] = ACTIONS(3836), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3836), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1689] = { - [sym_expansion] = STATE(1699), - [sym_concatenation] = STATE(1700), - [sym_string] = STATE(1699), - [sym_command_substitution] = STATE(1699), - [sym_process_substitution] = STATE(1699), - [aux_sym__literal_repeat1] = STATE(1701), - [sym_simple_expansion] = STATE(1699), - [sym_arithmetic_expansion] = STATE(1699), - [sym_string_expansion] = STATE(1699), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(3866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3852), - [sym_word] = ACTIONS(3866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(3868), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(3868), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(1695), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1695), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3844), + [anon_sym_PERCENT] = ACTIONS(3844), + [anon_sym_COLON] = ACTIONS(3844), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3846), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3844), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3848), + [anon_sym_RBRACE] = ACTIONS(3850), + [anon_sym_EQ] = ACTIONS(3844), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3844), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1690] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1703), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1703), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3870), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3870), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3870), - [anon_sym_POUND] = ACTIONS(3872), - [anon_sym_DASH] = ACTIONS(3870), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3870), - [anon_sym_RBRACE] = ACTIONS(3874), - [anon_sym_PERCENT] = ACTIONS(3870), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3876), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3852), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1691] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3874), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(1699), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(1699), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1692] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(1704), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(1704), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(3878), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_concatenation] = STATE(1701), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1701), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3856), + [anon_sym_PERCENT] = ACTIONS(3856), + [anon_sym_COLON] = ACTIONS(3856), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3856), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3858), + [anon_sym_RBRACE] = ACTIONS(3860), + [anon_sym_EQ] = ACTIONS(3856), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3856), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3862), + [sym_word] = ACTIONS(659), }, [1693] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1705), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1705), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3880), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3880), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3880), - [anon_sym_POUND] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3880), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3880), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_PERCENT] = ACTIONS(3880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3860), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1694] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(1703), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1703), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PERCENT] = ACTIONS(3864), + [anon_sym_COLON] = ACTIONS(3864), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3864), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3868), + [anon_sym_EQ] = ACTIONS(3864), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3864), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3870), + [sym_word] = ACTIONS(659), }, [1695] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1705), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1705), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3880), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3880), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3880), - [anon_sym_POUND] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3880), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3880), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_PERCENT] = ACTIONS(3880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3886), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3868), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1696] = { - [sym_expansion] = STATE(1707), - [sym_concatenation] = STATE(1708), - [sym_string] = STATE(1707), - [sym_command_substitution] = STATE(1707), - [sym_process_substitution] = STATE(1707), - [aux_sym__literal_repeat1] = STATE(1709), - [sym_simple_expansion] = STATE(1707), - [sym_arithmetic_expansion] = STATE(1707), - [sym_string_expansion] = STATE(1707), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(3888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3884), - [sym_word] = ACTIONS(3888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(3890), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(3890), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(1701), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1701), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3856), + [anon_sym_PERCENT] = ACTIONS(3856), + [anon_sym_COLON] = ACTIONS(3856), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3872), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3856), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3858), + [anon_sym_RBRACE] = ACTIONS(3860), + [anon_sym_EQ] = ACTIONS(3856), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3856), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1697] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1711), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1711), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3892), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3892), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3892), - [anon_sym_POUND] = ACTIONS(3894), - [anon_sym_DASH] = ACTIONS(3892), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3892), - [anon_sym_RBRACE] = ACTIONS(3896), - [anon_sym_PERCENT] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(3898), + [sym_concatenation] = STATE(1706), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1706), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3874), + [anon_sym_PERCENT] = ACTIONS(3874), + [anon_sym_COLON] = ACTIONS(3874), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3876), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3874), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3878), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_EQ] = ACTIONS(3874), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3874), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1698] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3896), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(1708), + [sym_concatenation] = STATE(1709), + [sym_string] = STATE(1708), + [sym_command_substitution] = STATE(1708), + [sym_process_substitution] = STATE(1708), + [aux_sym__literal_repeat1] = STATE(1710), + [sym_simple_expansion] = STATE(1708), + [sym_arithmetic_expansion] = STATE(1708), + [sym_string_expansion] = STATE(1708), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3860), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(3882), + [sym_number] = ACTIONS(3884), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(3884), }, [1699] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3884), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(274), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(274), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1700] = { - [anon_sym_RBRACE] = ACTIONS(3884), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1711), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1711), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3890), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3888), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1701] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(3900), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1702] = { - [sym_expansion] = STATE(141), [sym_concatenation] = STATE(1712), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), [aux_sym_expansion_repeat1] = STATE(1712), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3902), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3902), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3902), - [anon_sym_POUND] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3902), - [anon_sym_RBRACE] = ACTIONS(3906), - [anon_sym_PERCENT] = ACTIONS(3902), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3894), + [anon_sym_PERCENT] = ACTIONS(3894), + [anon_sym_COLON] = ACTIONS(3894), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3894), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3896), + [anon_sym_RBRACE] = ACTIONS(3898), + [anon_sym_EQ] = ACTIONS(3894), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3894), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1703] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3906), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3898), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1704] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(284), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(284), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(3908), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_concatenation] = STATE(1711), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1711), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3890), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_EQ] = ACTIONS(3888), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3888), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3900), + [sym_word] = ACTIONS(659), }, [1705] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3910), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(1715), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1715), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_COLON] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3902), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3904), + [anon_sym_RBRACE] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3902), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3902), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3908), + [sym_word] = ACTIONS(659), }, [1706] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1713), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1713), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3912), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3912), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3912), - [anon_sym_POUND] = ACTIONS(3914), - [anon_sym_DASH] = ACTIONS(3912), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3910), - [anon_sym_PERCENT] = ACTIONS(3912), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1707] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3910), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(1716), + [sym_concatenation] = STATE(1717), + [sym_string] = STATE(1716), + [sym_command_substitution] = STATE(1716), + [sym_process_substitution] = STATE(1716), + [aux_sym__literal_repeat1] = STATE(1718), + [sym_simple_expansion] = STATE(1716), + [sym_arithmetic_expansion] = STATE(1716), + [sym_string_expansion] = STATE(1716), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(3910), + [sym_number] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(3912), }, [1708] = { - [anon_sym_RBRACE] = ACTIONS(3910), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(3892), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1709] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(3916), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3892), }, [1710] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1714), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1714), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(3918), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(3918), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3918), - [anon_sym_POUND] = ACTIONS(3920), - [anon_sym_DASH] = ACTIONS(3918), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(3918), - [anon_sym_RBRACE] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3918), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(3914), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1711] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3916), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1712] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3924), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3918), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1713] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(3926), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(1719), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1719), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3920), + [anon_sym_PERCENT] = ACTIONS(3920), + [anon_sym_COLON] = ACTIONS(3920), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3920), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3922), + [anon_sym_RBRACE] = ACTIONS(3916), + [anon_sym_EQ] = ACTIONS(3920), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3920), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1714] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_concatenation] = STATE(1720), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1720), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3924), + [anon_sym_PERCENT] = ACTIONS(3924), + [anon_sym_COLON] = ACTIONS(3924), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3924), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3926), [anon_sym_RBRACE] = ACTIONS(3928), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(3924), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3924), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1715] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1718), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3930), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3932), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3928), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1716] = { - [sym_string] = STATE(785), - [anon_sym_0] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_STAR] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3934), - [anon_sym_POUND] = ACTIONS(3934), - [anon_sym_QMARK] = ACTIONS(3936), - [aux_sym__simple_variable_name_token1] = ACTIONS(2710), - [anon_sym__] = ACTIONS(2710), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(3938), - [anon_sym_DOLLAR] = ACTIONS(3934), - [anon_sym_AT] = ACTIONS(3936), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(3916), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1717] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(3940), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3916), }, [1718] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(3940), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(3942), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(3930), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1719] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3944), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1720] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(3946), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1721] = { - [anon_sym_RPAREN] = ACTIONS(3946), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1727), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3938), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1722] = { - [anon_sym_RPAREN] = ACTIONS(3948), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(791), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_POUND] = ACTIONS(3942), + [anon_sym_BANG] = ACTIONS(3942), + [aux_sym__simple_variable_name_token1] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym__] = ACTIONS(2716), + [sym_raw_string] = ACTIONS(3944), + [anon_sym_DOLLAR] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3940), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(3940), }, [1723] = { - [sym_expansion] = STATE(792), - [sym_string] = STATE(792), - [sym_command_substitution] = STATE(792), - [sym_process_substitution] = STATE(792), - [sym_simple_expansion] = STATE(792), - [sym_arithmetic_expansion] = STATE(792), - [sym_string_expansion] = STATE(792), - [anon_sym_GT_LPAREN] = ACTIONS(243), - [sym_number] = ACTIONS(2697), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), - [sym_word] = ACTIONS(2697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), - [anon_sym_LT_LPAREN] = ACTIONS(243), - [sym_ansii_c_string] = ACTIONS(2699), - [sym__special_character] = ACTIONS(2699), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_raw_string] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(261), + [sym_expansion] = STATE(794), + [sym_string] = STATE(794), + [sym_command_substitution] = STATE(794), + [sym_process_substitution] = STATE(794), + [sym_simple_expansion] = STATE(794), + [sym_arithmetic_expansion] = STATE(794), + [sym_string_expansion] = STATE(794), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [sym_ansii_c_string] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__special_character] = ACTIONS(2705), + [anon_sym_BQUOTE] = ACTIONS(249), + [sym_raw_string] = ACTIONS(2705), + [sym_number] = ACTIONS(2703), + [anon_sym_DOLLAR] = ACTIONS(235), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(251), + [sym_word] = ACTIONS(2703), }, [1724] = { - [sym_concatenation] = STATE(1730), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1730), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3950), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_POUND] = ACTIONS(3952), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3950), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3954), - [anon_sym_EQ] = ACTIONS(3950), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3956), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(3946), }, [1725] = { - [sym_concatenation] = STATE(1735), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1735), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3958), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3958), - [anon_sym_POUND] = ACTIONS(3960), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3958), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3962), - [anon_sym_EQ] = ACTIONS(3958), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3964), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3948), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [1726] = { - [sym_expansion] = STATE(797), - [sym_concatenation] = STATE(798), - [sym_string] = STATE(797), - [sym_command_substitution] = STATE(797), - [sym_process_substitution] = STATE(797), - [aux_sym__literal_repeat1] = STATE(799), - [sym_array] = STATE(798), - [sym_simple_expansion] = STATE(797), - [sym_arithmetic_expansion] = STATE(797), - [sym_string_expansion] = STATE(797), - [anon_sym_LPAREN] = ACTIONS(3966), - [anon_sym_GT_LPAREN] = ACTIONS(3113), - [sym_number] = ACTIONS(3968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3123), - [sym_word] = ACTIONS(3968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3127), - [anon_sym_LT_LPAREN] = ACTIONS(3113), - [sym_ansii_c_string] = ACTIONS(3970), - [sym__special_character] = ACTIONS(3972), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(3125), - [sym_raw_string] = ACTIONS(3970), - [anon_sym_DOLLAR] = ACTIONS(3974), - [sym__empty_value] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3950), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1727] = { - [anon_sym_BQUOTE] = ACTIONS(3978), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(3952), + [anon_sym_DQUOTE] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1728] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(800), + [sym_concatenation] = STATE(801), + [sym_string] = STATE(800), + [sym_command_substitution] = STATE(800), + [sym_process_substitution] = STATE(800), + [aux_sym__literal_repeat1] = STATE(802), + [sym_array] = STATE(801), + [sym_simple_expansion] = STATE(800), + [sym_arithmetic_expansion] = STATE(800), + [sym_string_expansion] = STATE(800), + [anon_sym_LPAREN] = ACTIONS(3954), + [anon_sym_LT_LPAREN] = ACTIONS(3125), + [sym_ansii_c_string] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__special_character] = ACTIONS(3958), + [anon_sym_BQUOTE] = ACTIONS(3135), + [sym_raw_string] = ACTIONS(3956), + [sym_number] = ACTIONS(3960), + [anon_sym_DOLLAR] = ACTIONS(3962), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(3125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3133), + [sym__empty_value] = ACTIONS(3964), + [sym_word] = ACTIONS(3960), }, [1729] = { - [sym_concatenation] = STATE(1738), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1738), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3982), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3982), - [anon_sym_POUND] = ACTIONS(3984), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3982), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3982), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3982), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(3988), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3966), }, [1730] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_raw_string] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(3968), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1731] = { - [sym_concatenation] = STATE(1738), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1738), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3982), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3982), - [anon_sym_POUND] = ACTIONS(3984), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3982), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3982), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3982), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3990), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(3968), }, [1732] = { - [sym_concatenation] = STATE(1742), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1742), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(3992), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(3992), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(3992), - [anon_sym_POUND] = ACTIONS(3994), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(3992), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(3996), - [anon_sym_EQ] = ACTIONS(3992), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(3992), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(3998), + [sym_concatenation] = STATE(1737), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1737), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_COLON] = ACTIONS(3970), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3972), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3970), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3974), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3970), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1733] = { - [sym_expansion] = STATE(1743), - [sym_concatenation] = STATE(1744), - [sym_string] = STATE(1743), - [sym_command_substitution] = STATE(1743), - [sym_process_substitution] = STATE(1743), - [aux_sym__literal_repeat1] = STATE(1745), - [sym_simple_expansion] = STATE(1743), - [sym_arithmetic_expansion] = STATE(1743), - [sym_string_expansion] = STATE(1743), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(3986), - [sym_word] = ACTIONS(4000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4002), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4002), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(1739), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1739), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(3980), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3978), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3984), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3978), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1734] = { - [sym_concatenation] = STATE(1747), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1747), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4004), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4004), - [anon_sym_POUND] = ACTIONS(4006), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4004), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(4004), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4004), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4010), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(3986), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1735] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(1743), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(1743), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(3988), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1736] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(1748), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(1748), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(4012), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_concatenation] = STATE(1745), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1745), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_PERCENT] = ACTIONS(3990), + [anon_sym_COLON] = ACTIONS(3990), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3990), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3992), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_EQ] = ACTIONS(3990), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3990), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(3996), + [sym_word] = ACTIONS(659), }, [1737] = { - [sym_concatenation] = STATE(1749), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1749), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4014), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_POUND] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4014), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4014), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4014), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1738] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1747), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1747), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_COLON] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_EQ] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4004), + [sym_word] = ACTIONS(659), }, [1739] = { - [sym_concatenation] = STATE(1749), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1749), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4014), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_POUND] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4014), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4014), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4014), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4020), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1740] = { - [sym_expansion] = STATE(1751), - [sym_concatenation] = STATE(1752), - [sym_string] = STATE(1751), - [sym_command_substitution] = STATE(1751), - [sym_process_substitution] = STATE(1751), - [aux_sym__literal_repeat1] = STATE(1753), - [sym_simple_expansion] = STATE(1751), - [sym_arithmetic_expansion] = STATE(1751), - [sym_string_expansion] = STATE(1751), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4018), - [sym_word] = ACTIONS(4022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4024), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4024), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(1745), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1745), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_PERCENT] = ACTIONS(3990), + [anon_sym_COLON] = ACTIONS(3990), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(4006), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(3990), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(3992), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_EQ] = ACTIONS(3990), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(3990), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1741] = { - [sym_concatenation] = STATE(1755), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1755), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4026), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_POUND] = ACTIONS(4028), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4026), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4026), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4032), + [sym_concatenation] = STATE(1750), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1750), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4008), + [anon_sym_PERCENT] = ACTIONS(4008), + [anon_sym_COLON] = ACTIONS(4008), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(4010), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4008), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4012), + [anon_sym_RBRACE] = ACTIONS(4014), + [anon_sym_EQ] = ACTIONS(4008), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4008), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1742] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(1752), + [sym_concatenation] = STATE(1753), + [sym_string] = STATE(1752), + [sym_command_substitution] = STATE(1752), + [sym_process_substitution] = STATE(1752), + [aux_sym__literal_repeat1] = STATE(1754), + [sym_simple_expansion] = STATE(1752), + [sym_arithmetic_expansion] = STATE(1752), + [sym_string_expansion] = STATE(1752), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4016), + [sym_number] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4018), }, [1743] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(4018), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(274), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(274), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1744] = { - [anon_sym_RBRACE] = ACTIONS(4018), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1755), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1755), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_COLON] = ACTIONS(4022), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4022), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_EQ] = ACTIONS(4022), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4022), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1745] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4034), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1746] = { [sym_concatenation] = STATE(1756), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), [aux_sym_expansion_repeat1] = STATE(1756), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4036), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4036), - [anon_sym_POUND] = ACTIONS(4038), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4036), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4036), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4036), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_PERCENT] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4028), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_EQ] = ACTIONS(4028), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4028), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1747] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1748] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(284), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(284), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(4042), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_concatenation] = STATE(1755), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1755), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_PERCENT] = ACTIONS(4022), + [anon_sym_COLON] = ACTIONS(4022), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4022), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_EQ] = ACTIONS(4022), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4022), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4034), + [sym_word] = ACTIONS(659), }, [1749] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4044), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1759), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1759), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4036), + [anon_sym_PERCENT] = ACTIONS(4036), + [anon_sym_COLON] = ACTIONS(4036), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4036), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4038), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(4036), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4036), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4042), + [sym_word] = ACTIONS(659), }, [1750] = { - [sym_concatenation] = STATE(1757), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1757), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4046), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4046), - [anon_sym_POUND] = ACTIONS(4048), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4046), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4044), - [anon_sym_EQ] = ACTIONS(4046), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4046), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1751] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(4044), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(1760), + [sym_concatenation] = STATE(1761), + [sym_string] = STATE(1760), + [sym_command_substitution] = STATE(1760), + [sym_process_substitution] = STATE(1760), + [aux_sym__literal_repeat1] = STATE(1762), + [sym_simple_expansion] = STATE(1760), + [sym_arithmetic_expansion] = STATE(1760), + [sym_string_expansion] = STATE(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4044), + [sym_number] = ACTIONS(4046), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4046), }, [1752] = { - [anon_sym_RBRACE] = ACTIONS(4044), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(4026), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1753] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4050), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4026), }, [1754] = { - [sym_concatenation] = STATE(1758), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1758), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4052), - [anon_sym_POUND] = ACTIONS(4054), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4052), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4056), - [anon_sym_EQ] = ACTIONS(4052), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4052), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(4048), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1755] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4056), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1756] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1757] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4060), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1763), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1763), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_PERCENT] = ACTIONS(4054), + [anon_sym_COLON] = ACTIONS(4054), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4054), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4056), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_EQ] = ACTIONS(4054), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4054), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1758] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), + [sym_concatenation] = STATE(1764), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1764), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_PERCENT] = ACTIONS(4058), + [anon_sym_COLON] = ACTIONS(4058), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4058), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4060), [anon_sym_RBRACE] = ACTIONS(4062), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(4058), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4058), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1759] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1762), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4064), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4062), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1760] = { - [sym_string] = STATE(823), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_0] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2738), - [aux_sym__simple_variable_name_token1] = ACTIONS(2732), - [anon_sym__] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(309), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2736), - [sym_raw_string] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2738), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(4050), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1761] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4068), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4050), }, [1762] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4068), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4070), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(4064), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1763] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4066), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1764] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(4074), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1765] = { - [anon_sym_RPAREN] = ACTIONS(4074), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1771), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1766] = { - [anon_sym_RPAREN] = ACTIONS(4076), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(829), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_DOLLAR] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2738), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_POUND] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_0] = ACTIONS(2744), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2746), + [anon_sym__] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2738), + [sym_raw_string] = ACTIONS(2742), }, [1767] = { - [sym_expansion] = STATE(830), - [sym_string_expansion] = STATE(830), - [sym_simple_expansion] = STATE(830), - [sym_string] = STATE(830), - [sym_command_substitution] = STATE(830), - [sym_process_substitution] = STATE(830), - [sym_arithmetic_expansion] = STATE(830), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_number] = ACTIONS(2723), - [sym__special_character] = ACTIONS(2725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_BQUOTE] = ACTIONS(319), - [sym_raw_string] = ACTIONS(2725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), - [sym_word] = ACTIONS(2723), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_ansii_c_string] = ACTIONS(2725), + [sym_expansion] = STATE(832), + [sym_string_expansion] = STATE(832), + [sym_simple_expansion] = STATE(832), + [sym_string] = STATE(832), + [sym_command_substitution] = STATE(832), + [sym_process_substitution] = STATE(832), + [sym_arithmetic_expansion] = STATE(832), + [sym_number] = ACTIONS(2729), + [sym_raw_string] = ACTIONS(2731), + [anon_sym_DOLLAR] = ACTIONS(307), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(295), + [sym_ansii_c_string] = ACTIONS(2731), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(309), + [sym__special_character] = ACTIONS(2731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(315), + [anon_sym_BQUOTE] = ACTIONS(303), + [sym_word] = ACTIONS(2729), }, [1768] = { - [sym_concatenation] = STATE(1774), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1774), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4078), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4078), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4078), - [anon_sym_POUND] = ACTIONS(4080), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4078), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4082), - [anon_sym_EQ] = ACTIONS(4078), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4084), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(4074), }, [1769] = { - [sym_concatenation] = STATE(1779), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1779), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4086), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4086), - [anon_sym_POUND] = ACTIONS(4088), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4086), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4086), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4086), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4076), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [1770] = { - [sym_expansion] = STATE(835), - [sym_concatenation] = STATE(836), - [sym_string] = STATE(835), - [sym_command_substitution] = STATE(835), - [sym_process_substitution] = STATE(835), - [aux_sym__literal_repeat1] = STATE(837), - [sym_array] = STATE(836), - [sym_simple_expansion] = STATE(835), - [sym_arithmetic_expansion] = STATE(835), - [sym_string_expansion] = STATE(835), - [anon_sym_LPAREN] = ACTIONS(4094), - [anon_sym_GT_LPAREN] = ACTIONS(3059), - [sym_number] = ACTIONS(4096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3069), - [sym_word] = ACTIONS(4096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2542), - [anon_sym_LT_LPAREN] = ACTIONS(3059), - [sym_ansii_c_string] = ACTIONS(4098), - [sym__special_character] = ACTIONS(4100), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(2550), - [sym__empty_value] = ACTIONS(4102), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4078), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1771] = { - [anon_sym_BQUOTE] = ACTIONS(4104), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1772] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(838), + [sym_concatenation] = STATE(839), + [sym_string] = STATE(838), + [sym_command_substitution] = STATE(838), + [sym_process_substitution] = STATE(838), + [aux_sym__literal_repeat1] = STATE(840), + [sym_array] = STATE(839), + [sym_simple_expansion] = STATE(838), + [sym_arithmetic_expansion] = STATE(838), + [sym_string_expansion] = STATE(838), + [anon_sym_LPAREN] = ACTIONS(4082), + [anon_sym_LT_LPAREN] = ACTIONS(3071), + [sym_ansii_c_string] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(3073), + [sym__special_character] = ACTIONS(4086), + [anon_sym_BQUOTE] = ACTIONS(3079), + [sym_raw_string] = ACTIONS(4084), + [sym_number] = ACTIONS(4088), + [anon_sym_DOLLAR] = ACTIONS(2560), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(3071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3075), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3077), + [sym__empty_value] = ACTIONS(4090), + [sym_word] = ACTIONS(4088), }, [1773] = { - [sym_concatenation] = STATE(1782), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1782), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4108), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4108), - [anon_sym_POUND] = ACTIONS(4110), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4108), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4112), - [anon_sym_EQ] = ACTIONS(4108), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4108), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4114), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4092), }, [1774] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4112), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1775] = { - [sym_concatenation] = STATE(1782), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1782), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4108), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4108), - [anon_sym_POUND] = ACTIONS(4110), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4108), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4112), - [anon_sym_EQ] = ACTIONS(4108), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4108), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4116), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4094), }, [1776] = { - [sym_concatenation] = STATE(1786), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1786), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4118), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4118), - [anon_sym_POUND] = ACTIONS(4120), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4118), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4118), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4124), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1781), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1781), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4096), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4098), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_PERCENT] = ACTIONS(4096), + [anon_sym_EQ] = ACTIONS(4096), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4102), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4096), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1777] = { - [sym_expansion] = STATE(1787), - [sym_concatenation] = STATE(1788), - [sym_string] = STATE(1787), - [sym_command_substitution] = STATE(1787), - [sym_process_substitution] = STATE(1787), - [aux_sym__literal_repeat1] = STATE(1789), - [sym_simple_expansion] = STATE(1787), - [sym_arithmetic_expansion] = STATE(1787), - [sym_string_expansion] = STATE(1787), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4112), - [sym_word] = ACTIONS(4126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4128), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4128), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1783), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1783), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4104), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4106), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_EQ] = ACTIONS(4104), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4104), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4110), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4104), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1778] = { - [sym_concatenation] = STATE(1791), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1791), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4130), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4130), - [anon_sym_POUND] = ACTIONS(4132), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4130), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(4130), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4130), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4112), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1779] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(1787), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(1787), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(4114), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1780] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(1792), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(1792), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(4138), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1789), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1789), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4118), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_EQ] = ACTIONS(4116), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4116), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4122), + [sym_word] = ACTIONS(659), }, [1781] = { - [sym_concatenation] = STATE(1793), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1793), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4140), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4140), - [anon_sym_POUND] = ACTIONS(4142), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4140), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4140), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4140), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1782] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1791), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1791), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4124), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4126), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_PERCENT] = ACTIONS(4124), + [anon_sym_EQ] = ACTIONS(4124), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4124), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4124), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4130), + [sym_word] = ACTIONS(659), }, [1783] = { - [sym_concatenation] = STATE(1793), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1793), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4140), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4140), - [anon_sym_POUND] = ACTIONS(4142), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4140), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4140), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4140), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4146), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1784] = { - [sym_expansion] = STATE(1795), - [sym_concatenation] = STATE(1796), - [sym_string] = STATE(1795), - [sym_command_substitution] = STATE(1795), - [sym_process_substitution] = STATE(1795), - [aux_sym__literal_repeat1] = STATE(1797), - [sym_simple_expansion] = STATE(1795), - [sym_arithmetic_expansion] = STATE(1795), - [sym_string_expansion] = STATE(1795), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4144), - [sym_word] = ACTIONS(4148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4150), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4150), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1789), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1789), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4118), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_PERCENT] = ACTIONS(4116), + [anon_sym_EQ] = ACTIONS(4116), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4132), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4116), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1785] = { - [sym_concatenation] = STATE(1799), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1799), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4152), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4152), - [anon_sym_POUND] = ACTIONS(4154), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4152), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4152), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4158), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1794), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1794), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4134), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4136), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4134), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4134), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4140), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4134), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1786] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(1796), + [sym_concatenation] = STATE(1797), + [sym_string] = STATE(1796), + [sym_command_substitution] = STATE(1796), + [sym_process_substitution] = STATE(1796), + [aux_sym__literal_repeat1] = STATE(1798), + [sym_simple_expansion] = STATE(1796), + [sym_arithmetic_expansion] = STATE(1796), + [sym_string_expansion] = STATE(1796), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4142), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4142), + [sym_number] = ACTIONS(4144), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4144), }, [1787] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(4144), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(214), + [sym_concatenation] = STATE(274), + [sym_string] = STATE(214), + [sym_command_substitution] = STATE(214), + [sym_process_substitution] = STATE(214), + [aux_sym__literal_repeat1] = STATE(216), + [aux_sym_for_statement_repeat1] = STATE(274), + [sym_simple_expansion] = STATE(214), + [sym_arithmetic_expansion] = STATE(214), + [sym_string_expansion] = STATE(214), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(4146), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1030), + [sym_number] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1040), }, [1788] = { - [anon_sym_RBRACE] = ACTIONS(4144), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1799), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1799), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1789] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4160), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1790] = { + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(1800), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(1800), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4162), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4162), - [anon_sym_POUND] = ACTIONS(4164), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4162), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_EQ] = ACTIONS(4162), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4162), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4154), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4156), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_EQ] = ACTIONS(4154), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4154), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4154), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1791] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1792] = { - [sym_expansion] = STATE(228), - [sym_concatenation] = STATE(284), - [sym_string] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [aux_sym__literal_repeat1] = STATE(229), - [aux_sym_for_statement_repeat1] = STATE(284), - [sym_simple_expansion] = STATE(228), - [sym_arithmetic_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(4168), - [sym_word] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1112), - [sym__special_character] = ACTIONS(1114), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1799), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1799), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4160), + [sym_word] = ACTIONS(659), }, [1793] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4170), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1803), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1803), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4162), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4164), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_PERCENT] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4162), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4162), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4168), + [sym_word] = ACTIONS(659), }, [1794] = { - [sym_concatenation] = STATE(1801), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1801), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4172), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4172), - [anon_sym_POUND] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4172), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4170), - [anon_sym_EQ] = ACTIONS(4172), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1795] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(4170), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(1804), + [sym_concatenation] = STATE(1805), + [sym_string] = STATE(1804), + [sym_command_substitution] = STATE(1804), + [sym_process_substitution] = STATE(1804), + [aux_sym__literal_repeat1] = STATE(1806), + [sym_simple_expansion] = STATE(1804), + [sym_arithmetic_expansion] = STATE(1804), + [sym_string_expansion] = STATE(1804), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4170), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4170), + [sym_number] = ACTIONS(4172), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4172), }, [1796] = { - [anon_sym_RBRACE] = ACTIONS(4170), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4152), + [sym__concat] = ACTIONS(1502), }, [1797] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4176), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4152), }, [1798] = { - [sym_concatenation] = STATE(1802), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1802), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4178), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4178), - [anon_sym_POUND] = ACTIONS(4180), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4178), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4182), - [anon_sym_EQ] = ACTIONS(4178), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4178), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4174), + [sym__special_character] = ACTIONS(1506), }, [1799] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4182), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1800] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4184), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1801] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1807), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1807), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4180), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4182), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_EQ] = ACTIONS(4180), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4180), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4180), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1802] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1808), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1808), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4184), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4186), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4184), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4184), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1803] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1806), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4190), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4192), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1804] = { - [sym_string] = STATE(861), - [anon_sym_0] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_POUND] = ACTIONS(4194), - [anon_sym_QMARK] = ACTIONS(4196), - [aux_sym__simple_variable_name_token1] = ACTIONS(2766), - [anon_sym__] = ACTIONS(2766), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(4198), - [anon_sym_DOLLAR] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4176), + [sym__concat] = ACTIONS(1502), }, [1805] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4176), }, [1806] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4200), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4202), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4190), + [sym__special_character] = ACTIONS(1506), }, [1807] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4204), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1808] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(4206), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1809] = { - [anon_sym_RPAREN] = ACTIONS(4206), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1815), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4196), + [anon_sym_DQUOTE] = ACTIONS(4198), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1810] = { - [anon_sym_RPAREN] = ACTIONS(4208), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(867), + [anon_sym_QMARK] = ACTIONS(4200), + [anon_sym_DQUOTE] = ACTIONS(2757), + [anon_sym_POUND] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4202), + [aux_sym__simple_variable_name_token1] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym__] = ACTIONS(2772), + [sym_raw_string] = ACTIONS(4204), + [anon_sym_DOLLAR] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4200), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(4200), }, [1811] = { - [sym_expansion] = STATE(868), - [sym_string] = STATE(868), - [sym_command_substitution] = STATE(868), - [sym_process_substitution] = STATE(868), - [sym_simple_expansion] = STATE(868), - [sym_arithmetic_expansion] = STATE(868), - [sym_string_expansion] = STATE(868), - [anon_sym_GT_LPAREN] = ACTIONS(2747), - [sym_number] = ACTIONS(2749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2753), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2755), - [sym_word] = ACTIONS(2749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2047), - [anon_sym_LT_LPAREN] = ACTIONS(2747), - [sym_ansii_c_string] = ACTIONS(2757), - [sym__special_character] = ACTIONS(2757), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(870), + [sym_string] = STATE(870), + [sym_command_substitution] = STATE(870), + [sym_process_substitution] = STATE(870), + [sym_simple_expansion] = STATE(870), + [sym_arithmetic_expansion] = STATE(870), + [sym_string_expansion] = STATE(870), + [anon_sym_LT_LPAREN] = ACTIONS(2753), + [sym_ansii_c_string] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2757), + [sym__special_character] = ACTIONS(2755), [anon_sym_BQUOTE] = ACTIONS(2759), - [sym_raw_string] = ACTIONS(2757), - [anon_sym_DOLLAR] = ACTIONS(2055), + [sym_raw_string] = ACTIONS(2755), + [sym_number] = ACTIONS(2761), + [anon_sym_DOLLAR] = ACTIONS(2065), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2765), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2767), + [sym_word] = ACTIONS(2761), }, [1812] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1817), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1817), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4210), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4210), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4210), - [anon_sym_POUND] = ACTIONS(4212), - [anon_sym_DASH] = ACTIONS(4210), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4210), - [anon_sym_RBRACE] = ACTIONS(4214), - [anon_sym_PERCENT] = ACTIONS(4210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(4206), }, [1813] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1822), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1822), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4218), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4218), - [anon_sym_POUND] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4218), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4218), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_PERCENT] = ACTIONS(4218), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4224), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4208), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [1814] = { - [anon_sym_BQUOTE] = ACTIONS(4226), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1815] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4210), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1816] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1824), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1824), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4230), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4230), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4230), - [anon_sym_POUND] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4230), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4230), - [anon_sym_RBRACE] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4230), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4236), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4214), }, [1817] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1818] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1824), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1824), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4230), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4230), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4230), - [anon_sym_POUND] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4230), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4230), - [anon_sym_RBRACE] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4230), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4238), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4216), }, [1819] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1828), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1828), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4240), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4240), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4240), - [anon_sym_POUND] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4240), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_PERCENT] = ACTIONS(4240), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4246), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1823), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1823), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4218), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4220), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(4218), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4218), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4224), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4218), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1820] = { - [sym_expansion] = STATE(1829), - [sym_concatenation] = STATE(1830), - [sym_string] = STATE(1829), - [sym_command_substitution] = STATE(1829), - [sym_process_substitution] = STATE(1829), - [aux_sym__literal_repeat1] = STATE(1831), - [sym_simple_expansion] = STATE(1829), - [sym_arithmetic_expansion] = STATE(1829), - [sym_string_expansion] = STATE(1829), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4234), - [sym_word] = ACTIONS(4248), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4250), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4250), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1825), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1825), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4226), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4228), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4232), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4226), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1821] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1833), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1833), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4252), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4252), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4252), - [anon_sym_POUND] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4252), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4252), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4252), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4258), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4234), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1822] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1830), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1830), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4236), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4238), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4236), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4236), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4236), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4242), + [sym_word] = ACTIONS(659), }, [1823] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1834), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1834), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4260), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4260), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4260), - [anon_sym_POUND] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4260), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4260), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4260), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1824] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1832), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1832), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4244), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4246), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4244), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4244), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4244), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4250), + [sym_word] = ACTIONS(659), }, [1825] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1834), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1834), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4260), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4260), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4260), - [anon_sym_POUND] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4260), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4260), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4260), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4266), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1826] = { - [sym_expansion] = STATE(1836), - [sym_concatenation] = STATE(1837), - [sym_string] = STATE(1836), - [sym_command_substitution] = STATE(1836), - [sym_process_substitution] = STATE(1836), - [aux_sym__literal_repeat1] = STATE(1838), - [sym_simple_expansion] = STATE(1836), - [sym_arithmetic_expansion] = STATE(1836), - [sym_string_expansion] = STATE(1836), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4264), - [sym_word] = ACTIONS(4268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4270), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4270), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1830), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1830), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4236), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4238), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4236), + [anon_sym_PERCENT] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4236), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4252), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4236), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1827] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1840), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1840), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4272), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4272), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4272), - [anon_sym_POUND] = ACTIONS(4274), - [anon_sym_DASH] = ACTIONS(4272), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4272), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4278), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1835), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1835), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4254), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4256), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_PERCENT] = ACTIONS(4254), + [anon_sym_EQ] = ACTIONS(4254), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4260), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4254), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1828] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(1837), + [sym_concatenation] = STATE(1838), + [sym_string] = STATE(1837), + [sym_command_substitution] = STATE(1837), + [sym_process_substitution] = STATE(1837), + [aux_sym__literal_repeat1] = STATE(1839), + [sym_simple_expansion] = STATE(1837), + [sym_arithmetic_expansion] = STATE(1837), + [sym_string_expansion] = STATE(1837), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4262), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4262), + [sym_number] = ACTIONS(4264), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4264), }, [1829] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4264), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1840), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1840), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4266), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4268), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_PERCENT] = ACTIONS(4266), + [anon_sym_EQ] = ACTIONS(4266), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4266), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4266), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1830] = { - [anon_sym_RBRACE] = ACTIONS(4264), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1831] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4280), - }, - [1832] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(1841), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(1841), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4282), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4282), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4282), - [anon_sym_POUND] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4282), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4282), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(4282), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4274), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4272), + [anon_sym_PERCENT] = ACTIONS(4272), + [anon_sym_EQ] = ACTIONS(4272), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4272), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4272), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [1832] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1833] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1840), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1840), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4266), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4268), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_PERCENT] = ACTIONS(4266), + [anon_sym_EQ] = ACTIONS(4266), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4266), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4266), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4278), + [sym_word] = ACTIONS(659), }, [1834] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4288), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1844), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1844), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4280), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4282), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_PERCENT] = ACTIONS(4280), + [anon_sym_EQ] = ACTIONS(4280), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4280), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4280), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4286), + [sym_word] = ACTIONS(659), }, [1835] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1842), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1842), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4290), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4290), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_POUND] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4290), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_RBRACE] = ACTIONS(4288), - [anon_sym_PERCENT] = ACTIONS(4290), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1836] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4288), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(1845), + [sym_concatenation] = STATE(1846), + [sym_string] = STATE(1845), + [sym_command_substitution] = STATE(1845), + [sym_process_substitution] = STATE(1845), + [aux_sym__literal_repeat1] = STATE(1847), + [sym_simple_expansion] = STATE(1845), + [sym_arithmetic_expansion] = STATE(1845), + [sym_string_expansion] = STATE(1845), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4288), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4288), + [sym_number] = ACTIONS(4290), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4290), }, [1837] = { - [anon_sym_RBRACE] = ACTIONS(4288), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4270), + [sym__concat] = ACTIONS(1502), }, [1838] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4294), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4270), }, [1839] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1843), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1843), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4296), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4296), - [anon_sym_POUND] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4296), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4296), - [anon_sym_RBRACE] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4292), + [sym__special_character] = ACTIONS(1506), }, [1840] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4294), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1841] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1842] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4304), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1848), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1848), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4298), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4300), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4294), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_PERCENT] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4298), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4298), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1843] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1849), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1849), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4302), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4304), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(4306), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(4302), + [anon_sym_PERCENT] = ACTIONS(4302), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4302), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4302), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1844] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1847), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4310), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4306), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1845] = { - [sym_string] = STATE(894), - [anon_sym_0] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(4312), - [anon_sym_DQUOTE] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4312), - [anon_sym_POUND] = ACTIONS(4312), - [anon_sym_QMARK] = ACTIONS(4314), - [aux_sym__simple_variable_name_token1] = ACTIONS(2796), - [anon_sym__] = ACTIONS(2796), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(4316), - [anon_sym_DOLLAR] = ACTIONS(4312), - [anon_sym_AT] = ACTIONS(4314), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4294), + [sym__concat] = ACTIONS(1502), }, [1846] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4294), }, [1847] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4318), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4320), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4308), + [sym__special_character] = ACTIONS(1506), }, [1848] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4310), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1849] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(4324), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1850] = { - [anon_sym_RPAREN] = ACTIONS(4324), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1856), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4314), + [anon_sym_DQUOTE] = ACTIONS(4316), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1851] = { - [anon_sym_RPAREN] = ACTIONS(4326), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(900), + [anon_sym_QMARK] = ACTIONS(4318), + [anon_sym_DQUOTE] = ACTIONS(2787), + [anon_sym_POUND] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4320), + [aux_sym__simple_variable_name_token1] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(4320), + [anon_sym__] = ACTIONS(2802), + [sym_raw_string] = ACTIONS(4322), + [anon_sym_DOLLAR] = ACTIONS(4320), + [anon_sym_AT] = ACTIONS(4318), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(4318), }, [1852] = { - [sym_expansion] = STATE(901), - [sym_string] = STATE(901), - [sym_command_substitution] = STATE(901), - [sym_process_substitution] = STATE(901), - [sym_simple_expansion] = STATE(901), - [sym_arithmetic_expansion] = STATE(901), - [sym_string_expansion] = STATE(901), - [anon_sym_GT_LPAREN] = ACTIONS(2777), - [sym_number] = ACTIONS(2779), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2783), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2785), - [sym_word] = ACTIONS(2779), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2069), - [anon_sym_LT_LPAREN] = ACTIONS(2777), - [sym_ansii_c_string] = ACTIONS(2787), - [sym__special_character] = ACTIONS(2787), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(903), + [sym_string] = STATE(903), + [sym_command_substitution] = STATE(903), + [sym_process_substitution] = STATE(903), + [sym_simple_expansion] = STATE(903), + [sym_arithmetic_expansion] = STATE(903), + [sym_string_expansion] = STATE(903), + [anon_sym_LT_LPAREN] = ACTIONS(2783), + [sym_ansii_c_string] = ACTIONS(2785), + [anon_sym_DQUOTE] = ACTIONS(2787), + [sym__special_character] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(2789), - [sym_raw_string] = ACTIONS(2787), - [anon_sym_DOLLAR] = ACTIONS(2077), + [sym_raw_string] = ACTIONS(2785), + [sym_number] = ACTIONS(2791), + [anon_sym_DOLLAR] = ACTIONS(2085), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2797), + [sym_word] = ACTIONS(2791), }, [1853] = { - [sym_concatenation] = STATE(1858), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1858), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4328), - [anon_sym_POUND] = ACTIONS(4330), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4328), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4332), - [anon_sym_EQ] = ACTIONS(4328), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4328), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4334), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(4324), }, [1854] = { - [sym_concatenation] = STATE(1863), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1863), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4336), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4336), - [anon_sym_POUND] = ACTIONS(4338), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4336), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4340), - [anon_sym_EQ] = ACTIONS(4336), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4336), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4342), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4326), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [1855] = { - [anon_sym_BQUOTE] = ACTIONS(4344), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4328), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1856] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(4346), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4330), + [anon_sym_DQUOTE] = ACTIONS(4328), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1857] = { - [sym_concatenation] = STATE(1865), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1865), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4348), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4348), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4348), - [anon_sym_POUND] = ACTIONS(4350), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4348), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4352), - [anon_sym_EQ] = ACTIONS(4348), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4348), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4354), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4332), }, [1858] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4352), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_raw_string] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(4334), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1859] = { - [sym_concatenation] = STATE(1865), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1865), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4348), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4348), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4348), - [anon_sym_POUND] = ACTIONS(4350), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4348), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4352), - [anon_sym_EQ] = ACTIONS(4348), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4348), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4356), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4334), }, [1860] = { - [sym_concatenation] = STATE(1869), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1869), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4358), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4358), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4358), - [anon_sym_POUND] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4358), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4362), - [anon_sym_EQ] = ACTIONS(4358), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4358), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4364), + [sym_concatenation] = STATE(1864), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1864), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4336), + [anon_sym_PERCENT] = ACTIONS(4336), + [anon_sym_COLON] = ACTIONS(4336), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(4338), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4336), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4340), + [anon_sym_RBRACE] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4336), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4336), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1861] = { - [sym_expansion] = STATE(1870), - [sym_concatenation] = STATE(1871), - [sym_string] = STATE(1870), - [sym_command_substitution] = STATE(1870), - [sym_process_substitution] = STATE(1870), - [aux_sym__literal_repeat1] = STATE(1872), - [sym_simple_expansion] = STATE(1870), - [sym_arithmetic_expansion] = STATE(1870), - [sym_string_expansion] = STATE(1870), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4352), - [sym_word] = ACTIONS(4366), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4368), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4368), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(1866), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1866), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4344), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(4346), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4344), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4348), + [anon_sym_RBRACE] = ACTIONS(4350), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4344), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1862] = { - [sym_concatenation] = STATE(1874), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1874), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4370), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4370), - [anon_sym_POUND] = ACTIONS(4372), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4370), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4374), - [anon_sym_EQ] = ACTIONS(4370), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4370), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4376), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4352), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1863] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4374), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1871), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1871), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4354), + [anon_sym_PERCENT] = ACTIONS(4354), + [anon_sym_COLON] = ACTIONS(4354), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4354), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4356), + [anon_sym_RBRACE] = ACTIONS(4358), + [anon_sym_EQ] = ACTIONS(4354), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4354), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4360), + [sym_word] = ACTIONS(659), }, [1864] = { - [sym_concatenation] = STATE(1875), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1875), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4378), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4378), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4378), - [anon_sym_POUND] = ACTIONS(4380), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4378), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_EQ] = ACTIONS(4378), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4378), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4358), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1865] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1873), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1873), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_PERCENT] = ACTIONS(4362), + [anon_sym_COLON] = ACTIONS(4362), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4362), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4364), + [anon_sym_RBRACE] = ACTIONS(4366), + [anon_sym_EQ] = ACTIONS(4362), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4362), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4368), + [sym_word] = ACTIONS(659), }, [1866] = { - [sym_concatenation] = STATE(1875), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1875), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4378), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4378), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4378), - [anon_sym_POUND] = ACTIONS(4380), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4378), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_EQ] = ACTIONS(4378), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4378), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4384), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4366), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1867] = { - [sym_expansion] = STATE(1877), - [sym_concatenation] = STATE(1878), - [sym_string] = STATE(1877), - [sym_command_substitution] = STATE(1877), - [sym_process_substitution] = STATE(1877), - [aux_sym__literal_repeat1] = STATE(1879), - [sym_simple_expansion] = STATE(1877), - [sym_arithmetic_expansion] = STATE(1877), - [sym_string_expansion] = STATE(1877), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4386), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4382), - [sym_word] = ACTIONS(4386), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4388), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4388), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(1871), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1871), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4354), + [anon_sym_PERCENT] = ACTIONS(4354), + [anon_sym_COLON] = ACTIONS(4354), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(4370), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4354), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4356), + [anon_sym_RBRACE] = ACTIONS(4358), + [anon_sym_EQ] = ACTIONS(4354), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4354), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1868] = { - [sym_concatenation] = STATE(1881), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1881), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4390), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4390), - [anon_sym_POUND] = ACTIONS(4392), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4390), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4394), - [anon_sym_EQ] = ACTIONS(4390), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4390), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4396), + [sym_concatenation] = STATE(1876), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1876), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4372), + [anon_sym_PERCENT] = ACTIONS(4372), + [anon_sym_COLON] = ACTIONS(4372), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(4374), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4372), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4376), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(4372), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4372), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1869] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4394), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(1878), + [sym_concatenation] = STATE(1879), + [sym_string] = STATE(1878), + [sym_command_substitution] = STATE(1878), + [sym_process_substitution] = STATE(1878), + [aux_sym__literal_repeat1] = STATE(1880), + [sym_simple_expansion] = STATE(1878), + [sym_arithmetic_expansion] = STATE(1878), + [sym_string_expansion] = STATE(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4380), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4358), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4380), + [sym_number] = ACTIONS(4382), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4382), }, [1870] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(4382), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1881), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1881), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4384), + [anon_sym_PERCENT] = ACTIONS(4384), + [anon_sym_COLON] = ACTIONS(4384), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4384), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4386), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4384), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4384), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1871] = { - [anon_sym_RBRACE] = ACTIONS(4382), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1872] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4398), - [sym_comment] = ACTIONS(53), - }, - [1873] = { [sym_concatenation] = STATE(1882), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), [aux_sym_expansion_repeat1] = STATE(1882), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4400), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4400), - [anon_sym_POUND] = ACTIONS(4402), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4400), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(4400), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4400), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_COLON] = ACTIONS(4390), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4390), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4390), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [1873] = { + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1874] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4404), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1881), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1881), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4384), + [anon_sym_PERCENT] = ACTIONS(4384), + [anon_sym_COLON] = ACTIONS(4384), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4384), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4386), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4384), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4384), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4396), + [sym_word] = ACTIONS(659), }, [1875] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1885), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1885), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_PERCENT] = ACTIONS(4398), + [anon_sym_COLON] = ACTIONS(4398), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4398), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4400), + [anon_sym_RBRACE] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4398), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4404), + [sym_word] = ACTIONS(659), }, [1876] = { - [sym_concatenation] = STATE(1883), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1883), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4408), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4408), - [anon_sym_POUND] = ACTIONS(4410), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4408), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4406), - [anon_sym_EQ] = ACTIONS(4408), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4408), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1877] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(4406), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(1886), + [sym_concatenation] = STATE(1887), + [sym_string] = STATE(1886), + [sym_command_substitution] = STATE(1886), + [sym_process_substitution] = STATE(1886), + [aux_sym__literal_repeat1] = STATE(1888), + [sym_simple_expansion] = STATE(1886), + [sym_arithmetic_expansion] = STATE(1886), + [sym_string_expansion] = STATE(1886), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4406), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4406), + [sym_number] = ACTIONS(4408), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4408), }, [1878] = { - [anon_sym_RBRACE] = ACTIONS(4406), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(4388), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1879] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4412), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4388), }, [1880] = { - [sym_concatenation] = STATE(1884), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1884), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4414), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4414), - [anon_sym_POUND] = ACTIONS(4416), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4414), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4418), - [anon_sym_EQ] = ACTIONS(4414), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(4410), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1881] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4418), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1882] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4420), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1883] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4422), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1889), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1889), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_COLON] = ACTIONS(4416), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4416), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4416), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4416), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1884] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), + [sym_concatenation] = STATE(1890), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1890), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4420), + [anon_sym_PERCENT] = ACTIONS(4420), + [anon_sym_COLON] = ACTIONS(4420), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4420), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4422), [anon_sym_RBRACE] = ACTIONS(4424), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4420), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1885] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1888), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4426), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4428), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1886] = { - [sym_string] = STATE(927), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_0] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(4430), - [aux_sym__simple_variable_name_token1] = ACTIONS(2816), - [anon_sym__] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(549), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(4430), - [anon_sym_DASH] = ACTIONS(2820), - [sym_raw_string] = ACTIONS(2822), - [anon_sym_DOLLAR] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(4430), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(4412), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1887] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4432), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4412), }, [1888] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4432), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4434), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(4426), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1889] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4436), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4428), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1890] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(4438), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4430), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1891] = { - [anon_sym_RPAREN] = ACTIONS(4438), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1897), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4432), + [anon_sym_DQUOTE] = ACTIONS(4434), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1892] = { - [anon_sym_RPAREN] = ACTIONS(4440), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(933), + [anon_sym_QMARK] = ACTIONS(4436), + [anon_sym_DOLLAR] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4436), + [anon_sym_DQUOTE] = ACTIONS(541), + [anon_sym_POUND] = ACTIONS(4438), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_0] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym__] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(4436), + [sym_raw_string] = ACTIONS(4440), }, [1893] = { - [sym_expansion] = STATE(934), - [sym_string_expansion] = STATE(934), - [sym_simple_expansion] = STATE(934), - [sym_string] = STATE(934), - [sym_command_substitution] = STATE(934), - [sym_process_substitution] = STATE(934), - [sym_arithmetic_expansion] = STATE(934), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(2807), - [sym__special_character] = ACTIONS(2809), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(2809), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [sym_word] = ACTIONS(2807), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_ansii_c_string] = ACTIONS(2809), + [sym_expansion] = STATE(936), + [sym_string_expansion] = STATE(936), + [sym_simple_expansion] = STATE(936), + [sym_string] = STATE(936), + [sym_command_substitution] = STATE(936), + [sym_process_substitution] = STATE(936), + [sym_arithmetic_expansion] = STATE(936), + [sym_number] = ACTIONS(2813), + [sym_raw_string] = ACTIONS(2815), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_LT_LPAREN] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(541), + [sym_ansii_c_string] = ACTIONS(2815), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(551), + [sym__special_character] = ACTIONS(2815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(553), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(555), + [anon_sym_BQUOTE] = ACTIONS(545), + [sym_word] = ACTIONS(2813), }, [1894] = { - [sym_concatenation] = STATE(1899), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1899), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4442), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4442), - [anon_sym_POUND] = ACTIONS(4444), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4442), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_EQ] = ACTIONS(4442), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4442), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4448), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(4442), }, [1895] = { - [sym_concatenation] = STATE(1904), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1904), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4450), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4450), - [anon_sym_POUND] = ACTIONS(4452), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4450), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_EQ] = ACTIONS(4450), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4450), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4456), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4444), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [1896] = { - [anon_sym_BQUOTE] = ACTIONS(4458), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4446), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1897] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4448), + [anon_sym_DQUOTE] = ACTIONS(4446), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1898] = { - [sym_concatenation] = STATE(1906), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1906), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4462), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_POUND] = ACTIONS(4464), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4462), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(4462), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4462), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4468), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4450), }, [1899] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_raw_string] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(4452), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1900] = { - [sym_concatenation] = STATE(1906), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1906), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4462), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_POUND] = ACTIONS(4464), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4462), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4466), - [anon_sym_EQ] = ACTIONS(4462), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4462), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4470), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4452), }, [1901] = { - [sym_concatenation] = STATE(1910), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1910), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4472), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4472), - [anon_sym_POUND] = ACTIONS(4474), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4472), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4476), - [anon_sym_EQ] = ACTIONS(4472), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4478), + [sym_concatenation] = STATE(1905), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1905), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4454), + [anon_sym_PERCENT] = ACTIONS(4454), + [anon_sym_COLON] = ACTIONS(4454), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(4456), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4454), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4458), + [anon_sym_RBRACE] = ACTIONS(4460), + [anon_sym_EQ] = ACTIONS(4454), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4454), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1902] = { - [sym_expansion] = STATE(1911), - [sym_concatenation] = STATE(1912), - [sym_string] = STATE(1911), - [sym_command_substitution] = STATE(1911), - [sym_process_substitution] = STATE(1911), - [aux_sym__literal_repeat1] = STATE(1913), - [sym_simple_expansion] = STATE(1911), - [sym_arithmetic_expansion] = STATE(1911), - [sym_string_expansion] = STATE(1911), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4466), - [sym_word] = ACTIONS(4480), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4482), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4482), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(1907), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1907), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_COLON] = ACTIONS(4462), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(4464), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4462), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4462), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1903] = { - [sym_concatenation] = STATE(1915), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1915), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4484), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4484), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4484), - [anon_sym_POUND] = ACTIONS(4486), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4484), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4488), - [anon_sym_EQ] = ACTIONS(4484), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4484), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4470), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1904] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4488), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1912), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1912), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_PERCENT] = ACTIONS(4472), + [anon_sym_COLON] = ACTIONS(4472), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4472), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4478), + [sym_word] = ACTIONS(659), }, [1905] = { - [sym_concatenation] = STATE(1916), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1916), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4492), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4492), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4492), - [anon_sym_POUND] = ACTIONS(4494), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4492), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4496), - [anon_sym_EQ] = ACTIONS(4492), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4492), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1906] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4496), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1914), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1914), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4480), + [anon_sym_PERCENT] = ACTIONS(4480), + [anon_sym_COLON] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4480), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4482), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_EQ] = ACTIONS(4480), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4480), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4486), + [sym_word] = ACTIONS(659), }, [1907] = { - [sym_concatenation] = STATE(1916), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1916), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4492), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4492), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4492), - [anon_sym_POUND] = ACTIONS(4494), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4492), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4496), - [anon_sym_EQ] = ACTIONS(4492), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4492), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4498), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1908] = { - [sym_expansion] = STATE(1918), - [sym_concatenation] = STATE(1919), - [sym_string] = STATE(1918), - [sym_command_substitution] = STATE(1918), - [sym_process_substitution] = STATE(1918), - [aux_sym__literal_repeat1] = STATE(1920), - [sym_simple_expansion] = STATE(1918), - [sym_arithmetic_expansion] = STATE(1918), - [sym_string_expansion] = STATE(1918), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4500), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4496), - [sym_word] = ACTIONS(4500), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4502), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4502), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(1912), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1912), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_PERCENT] = ACTIONS(4472), + [anon_sym_COLON] = ACTIONS(4472), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(4488), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4472), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1909] = { - [sym_concatenation] = STATE(1922), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1922), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4504), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4504), - [anon_sym_POUND] = ACTIONS(4506), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4504), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(4504), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(4510), + [sym_concatenation] = STATE(1917), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1917), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_PERCENT] = ACTIONS(4490), + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(4492), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4490), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4494), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4490), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1910] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4508), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(1919), + [sym_concatenation] = STATE(1920), + [sym_string] = STATE(1919), + [sym_command_substitution] = STATE(1919), + [sym_process_substitution] = STATE(1919), + [aux_sym__literal_repeat1] = STATE(1921), + [sym_simple_expansion] = STATE(1919), + [sym_arithmetic_expansion] = STATE(1919), + [sym_string_expansion] = STATE(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4498), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4476), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4498), + [sym_number] = ACTIONS(4500), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4500), }, [1911] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(4496), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1922), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1922), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4502), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4502), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4502), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1912] = { - [anon_sym_RBRACE] = ACTIONS(4496), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1913] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), + [sym_concatenation] = STATE(1923), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1923), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_PERCENT] = ACTIONS(4508), + [anon_sym_COLON] = ACTIONS(4508), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4508), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4510), [anon_sym_RBRACE] = ACTIONS(4512), - [sym_comment] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(4508), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4508), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1914] = { - [sym_concatenation] = STATE(1923), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1923), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4514), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4514), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4514), - [anon_sym_POUND] = ACTIONS(4516), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4514), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(4514), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4514), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1915] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4518), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1922), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1922), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_COLON] = ACTIONS(4502), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4502), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4504), + [anon_sym_RBRACE] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4502), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4514), + [sym_word] = ACTIONS(659), }, [1916] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), + [sym_concatenation] = STATE(1926), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1926), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4516), + [anon_sym_PERCENT] = ACTIONS(4516), + [anon_sym_COLON] = ACTIONS(4516), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4516), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4518), [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(4516), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4516), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(4522), + [sym_word] = ACTIONS(659), }, [1917] = { - [sym_concatenation] = STATE(1924), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1924), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4522), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4522), - [anon_sym_POUND] = ACTIONS(4524), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4522), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(4522), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4522), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1918] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(4520), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(1927), + [sym_concatenation] = STATE(1928), + [sym_string] = STATE(1927), + [sym_command_substitution] = STATE(1927), + [sym_process_substitution] = STATE(1927), + [aux_sym__literal_repeat1] = STATE(1929), + [sym_simple_expansion] = STATE(1927), + [sym_arithmetic_expansion] = STATE(1927), + [sym_string_expansion] = STATE(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4506), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4524), + [sym_number] = ACTIONS(4526), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4526), }, [1919] = { - [anon_sym_RBRACE] = ACTIONS(4520), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(4506), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1920] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4526), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4506), }, [1921] = { - [sym_concatenation] = STATE(1925), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1925), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(4528), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4528), - [anon_sym_POUND] = ACTIONS(4530), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(4528), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_EQ] = ACTIONS(4528), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(4528), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(4528), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1922] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1923] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4532), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1924] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1930), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1930), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_COLON] = ACTIONS(4534), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4534), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4536), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(4534), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4534), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1925] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(4538), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(1931), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1931), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_COLON] = ACTIONS(4538), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(4538), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4540), + [anon_sym_RBRACE] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(4538), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(4538), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1926] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1929), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4540), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4542), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1927] = { - [sym_string] = STATE(960), - [anon_sym_POUND] = ACTIONS(4544), - [anon_sym_0] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(4546), - [aux_sym__simple_variable_name_token1] = ACTIONS(2838), - [anon_sym__] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(4544), - [anon_sym_DQUOTE] = ACTIONS(601), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(4546), - [anon_sym_DASH] = ACTIONS(4544), - [sym_raw_string] = ACTIONS(4548), - [anon_sym_DOLLAR] = ACTIONS(4544), - [anon_sym_AT] = ACTIONS(4546), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(4530), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [1928] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4550), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4530), }, [1929] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4550), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4552), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(4544), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [1930] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4554), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1931] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(4556), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [1932] = { - [anon_sym_RPAREN] = ACTIONS(4556), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1938), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(4552), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1933] = { - [anon_sym_RPAREN] = ACTIONS(4558), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(966), + [anon_sym_QMARK] = ACTIONS(2840), + [anon_sym_DOLLAR] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_0] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym__] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2840), + [sym_raw_string] = ACTIONS(2846), }, [1934] = { - [sym_expansion] = STATE(967), - [sym_string_expansion] = STATE(967), - [sym_simple_expansion] = STATE(967), - [sym_string] = STATE(967), - [sym_command_substitution] = STATE(967), - [sym_process_substitution] = STATE(967), - [sym_arithmetic_expansion] = STATE(967), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(595), - [sym_number] = ACTIONS(2829), - [sym__special_character] = ACTIONS(2831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), - [anon_sym_DQUOTE] = ACTIONS(601), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(611), - [sym_raw_string] = ACTIONS(2831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(605), - [sym_word] = ACTIONS(2829), - [anon_sym_LT_LPAREN] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(613), - [sym_ansii_c_string] = ACTIONS(2831), + [sym_expansion] = STATE(969), + [sym_string_expansion] = STATE(969), + [sym_simple_expansion] = STATE(969), + [sym_string] = STATE(969), + [sym_command_substitution] = STATE(969), + [sym_process_substitution] = STATE(969), + [sym_arithmetic_expansion] = STATE(969), + [sym_number] = ACTIONS(1386), + [sym_raw_string] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_LT_LPAREN] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(565), + [sym_ansii_c_string] = ACTIONS(1384), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(567), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), + [sym__special_character] = ACTIONS(1384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [anon_sym_BQUOTE] = ACTIONS(575), + [sym_word] = ACTIONS(1386), }, [1935] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1940), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1940), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4560), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4560), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4560), - [anon_sym_POUND] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4560), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4560), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_PERCENT] = ACTIONS(4560), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4566), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(4554), }, [1936] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1945), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1945), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4568), - [anon_sym_POUND] = ACTIONS(4570), - [anon_sym_DASH] = ACTIONS(4568), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4568), - [anon_sym_RBRACE] = ACTIONS(4572), - [anon_sym_PERCENT] = ACTIONS(4568), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4574), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4556), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [1937] = { - [anon_sym_BQUOTE] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4558), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1938] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4578), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4560), + [anon_sym_DQUOTE] = ACTIONS(4558), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1939] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1947), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1947), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4580), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4580), - [anon_sym_POUND] = ACTIONS(4582), - [anon_sym_DASH] = ACTIONS(4580), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4580), - [anon_sym_RBRACE] = ACTIONS(4584), - [anon_sym_PERCENT] = ACTIONS(4580), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4586), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4562), }, [1940] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4584), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1941] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1947), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1947), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4580), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4580), - [anon_sym_POUND] = ACTIONS(4582), - [anon_sym_DASH] = ACTIONS(4580), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4580), - [anon_sym_RBRACE] = ACTIONS(4584), - [anon_sym_PERCENT] = ACTIONS(4580), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4588), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4564), }, [1942] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1951), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1951), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4590), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4590), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4590), - [anon_sym_POUND] = ACTIONS(4592), - [anon_sym_DASH] = ACTIONS(4590), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4590), - [anon_sym_RBRACE] = ACTIONS(4594), - [anon_sym_PERCENT] = ACTIONS(4590), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4596), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1946), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1946), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4568), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4572), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4566), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1943] = { - [sym_expansion] = STATE(1952), - [sym_concatenation] = STATE(1953), - [sym_string] = STATE(1952), - [sym_command_substitution] = STATE(1952), - [sym_process_substitution] = STATE(1952), - [aux_sym__literal_repeat1] = STATE(1954), - [sym_simple_expansion] = STATE(1952), - [sym_arithmetic_expansion] = STATE(1952), - [sym_string_expansion] = STATE(1952), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4584), - [sym_word] = ACTIONS(4598), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4600), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4600), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1948), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1948), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4574), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4576), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_PERCENT] = ACTIONS(4574), + [anon_sym_EQ] = ACTIONS(4574), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4574), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4580), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4574), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1944] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1956), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1956), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4602), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4602), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4602), - [anon_sym_POUND] = ACTIONS(4604), - [anon_sym_DASH] = ACTIONS(4602), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4602), - [anon_sym_RBRACE] = ACTIONS(4606), - [anon_sym_PERCENT] = ACTIONS(4602), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4608), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4582), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1945] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4606), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1953), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1953), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4584), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4586), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4584), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4590), + [sym_word] = ACTIONS(659), }, [1946] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1957), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1957), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4610), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4610), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4610), - [anon_sym_POUND] = ACTIONS(4612), - [anon_sym_DASH] = ACTIONS(4610), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4610), - [anon_sym_RBRACE] = ACTIONS(4614), - [anon_sym_PERCENT] = ACTIONS(4610), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1947] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4614), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1955), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1955), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4592), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4594), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(4592), + [anon_sym_PERCENT] = ACTIONS(4592), + [anon_sym_EQ] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4592), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4598), + [sym_word] = ACTIONS(659), }, [1948] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1957), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1957), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4610), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4610), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4610), - [anon_sym_POUND] = ACTIONS(4612), - [anon_sym_DASH] = ACTIONS(4610), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4610), - [anon_sym_RBRACE] = ACTIONS(4614), - [anon_sym_PERCENT] = ACTIONS(4610), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4616), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4596), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1949] = { - [sym_expansion] = STATE(1959), - [sym_concatenation] = STATE(1960), - [sym_string] = STATE(1959), - [sym_command_substitution] = STATE(1959), - [sym_process_substitution] = STATE(1959), - [aux_sym__literal_repeat1] = STATE(1961), - [sym_simple_expansion] = STATE(1959), - [sym_arithmetic_expansion] = STATE(1959), - [sym_string_expansion] = STATE(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4614), - [sym_word] = ACTIONS(4618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4620), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4620), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1953), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1953), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4584), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4586), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_DASH] = ACTIONS(4584), + [anon_sym_PERCENT] = ACTIONS(4584), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4600), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4584), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1950] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1963), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1963), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4622), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4622), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4622), - [anon_sym_POUND] = ACTIONS(4624), - [anon_sym_DASH] = ACTIONS(4622), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4622), - [anon_sym_RBRACE] = ACTIONS(4626), - [anon_sym_PERCENT] = ACTIONS(4622), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4628), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1958), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1958), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4602), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4604), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4602), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4608), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4602), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1951] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4626), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(1960), + [sym_concatenation] = STATE(1961), + [sym_string] = STATE(1960), + [sym_command_substitution] = STATE(1960), + [sym_process_substitution] = STATE(1960), + [aux_sym__literal_repeat1] = STATE(1962), + [sym_simple_expansion] = STATE(1960), + [sym_arithmetic_expansion] = STATE(1960), + [sym_string_expansion] = STATE(1960), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4610), + [sym_number] = ACTIONS(4612), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4612), }, [1952] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4614), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1963), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1963), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4614), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4616), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_PERCENT] = ACTIONS(4614), + [anon_sym_EQ] = ACTIONS(4614), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4614), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4614), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1953] = { - [anon_sym_RBRACE] = ACTIONS(4614), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1954] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4630), - }, - [1955] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(1964), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(1964), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4632), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4632), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4632), - [anon_sym_POUND] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4632), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4632), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_PERCENT] = ACTIONS(4632), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4620), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4622), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4624), + [anon_sym_DASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4620), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4620), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4620), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [1955] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4624), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1956] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1963), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1963), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4614), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4616), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_PERCENT] = ACTIONS(4614), + [anon_sym_EQ] = ACTIONS(4614), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4614), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4614), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4626), + [sym_word] = ACTIONS(659), }, [1957] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4638), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1967), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1967), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4628), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4630), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4628), + [anon_sym_PERCENT] = ACTIONS(4628), + [anon_sym_EQ] = ACTIONS(4628), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4628), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4628), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4634), + [sym_word] = ACTIONS(659), }, [1958] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1965), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1965), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4640), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4640), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4640), - [anon_sym_POUND] = ACTIONS(4642), - [anon_sym_DASH] = ACTIONS(4640), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4640), - [anon_sym_RBRACE] = ACTIONS(4638), - [anon_sym_PERCENT] = ACTIONS(4640), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1959] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4638), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(1968), + [sym_concatenation] = STATE(1969), + [sym_string] = STATE(1968), + [sym_command_substitution] = STATE(1968), + [sym_process_substitution] = STATE(1968), + [aux_sym__literal_repeat1] = STATE(1970), + [sym_simple_expansion] = STATE(1968), + [sym_arithmetic_expansion] = STATE(1968), + [sym_string_expansion] = STATE(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4618), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4636), + [sym_number] = ACTIONS(4638), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4638), }, [1960] = { - [anon_sym_RBRACE] = ACTIONS(4638), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4618), + [sym__concat] = ACTIONS(1502), }, [1961] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4644), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4618), }, [1962] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1966), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1966), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4646), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4646), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4646), - [anon_sym_POUND] = ACTIONS(4648), - [anon_sym_DASH] = ACTIONS(4646), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4646), - [anon_sym_RBRACE] = ACTIONS(4650), - [anon_sym_PERCENT] = ACTIONS(4646), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4640), + [sym__special_character] = ACTIONS(1506), }, [1963] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4650), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1964] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4652), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1965] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4654), - [anon_sym_PERCENT] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1971), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1971), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4646), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4648), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4646), + [anon_sym_EQ] = ACTIONS(4646), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4646), + [anon_sym_DOLLAR] = ACTIONS(661), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_COLON_DASH] = ACTIONS(4646), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1966] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4656), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1972), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4650), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4652), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4650), + [anon_sym_PERCENT] = ACTIONS(4650), + [anon_sym_EQ] = ACTIONS(4650), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4650), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4650), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1967] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(1970), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4658), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4660), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1968] = { - [sym_string] = STATE(993), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_0] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2860), - [aux_sym__simple_variable_name_token1] = ACTIONS(2856), - [anon_sym__] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2858), - [sym_raw_string] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2860), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4642), + [sym__concat] = ACTIONS(1502), }, [1969] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4662), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4642), }, [1970] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4662), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4664), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4656), + [sym__special_character] = ACTIONS(1506), }, [1971] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4666), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1972] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(4668), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1973] = { - [anon_sym_RPAREN] = ACTIONS(4668), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(1979), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4662), + [anon_sym_DQUOTE] = ACTIONS(4664), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1974] = { - [anon_sym_RPAREN] = ACTIONS(4670), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(999), + [anon_sym_QMARK] = ACTIONS(4666), + [anon_sym_DOLLAR] = ACTIONS(4668), + [anon_sym_AT] = ACTIONS(4666), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(4668), + [anon_sym_0] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(4668), + [anon_sym__] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(4666), + [sym_raw_string] = ACTIONS(4670), }, [1975] = { - [sym_expansion] = STATE(1000), - [sym_string_expansion] = STATE(1000), - [sym_simple_expansion] = STATE(1000), - [sym_string] = STATE(1000), - [sym_command_substitution] = STATE(1000), - [sym_process_substitution] = STATE(1000), - [sym_arithmetic_expansion] = STATE(1000), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(617), - [sym_number] = ACTIONS(1460), - [sym__special_character] = ACTIONS(1464), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), - [anon_sym_BQUOTE] = ACTIONS(633), - [sym_raw_string] = ACTIONS(1464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), - [sym_word] = ACTIONS(1460), - [anon_sym_LT_LPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_ansii_c_string] = ACTIONS(1464), + [sym_expansion] = STATE(1002), + [sym_string_expansion] = STATE(1002), + [sym_simple_expansion] = STATE(1002), + [sym_string] = STATE(1002), + [sym_command_substitution] = STATE(1002), + [sym_process_substitution] = STATE(1002), + [sym_arithmetic_expansion] = STATE(1002), + [sym_number] = ACTIONS(2853), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(625), + [anon_sym_LT_LPAREN] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_ansii_c_string] = ACTIONS(2855), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [sym__special_character] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2403), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2407), + [anon_sym_BQUOTE] = ACTIONS(2401), + [sym_word] = ACTIONS(2853), }, [1976] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1981), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1981), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4672), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4672), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_POUND] = ACTIONS(4674), - [anon_sym_DASH] = ACTIONS(4672), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4672), - [anon_sym_RBRACE] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4672), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4678), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(4672), }, [1977] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1986), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1986), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4680), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4680), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4680), - [anon_sym_POUND] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4680), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4680), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_PERCENT] = ACTIONS(4680), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [1978] = { - [anon_sym_BQUOTE] = ACTIONS(4688), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4676), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1979] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4690), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4678), + [anon_sym_DQUOTE] = ACTIONS(4676), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [1980] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1988), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1988), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4692), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4692), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4692), - [anon_sym_POUND] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4692), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4692), - [anon_sym_RBRACE] = ACTIONS(4696), - [anon_sym_PERCENT] = ACTIONS(4692), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4698), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4680), }, [1981] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4696), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(4682), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [1982] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1988), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1988), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4692), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4692), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4692), - [anon_sym_POUND] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4692), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4692), - [anon_sym_RBRACE] = ACTIONS(4696), - [anon_sym_PERCENT] = ACTIONS(4692), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4700), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4682), }, [1983] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1992), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1992), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4702), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4702), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4702), - [anon_sym_POUND] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4702), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4702), - [anon_sym_RBRACE] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4702), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4708), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1987), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1987), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4684), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4686), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4684), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4684), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4690), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4684), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1984] = { - [sym_expansion] = STATE(1993), - [sym_concatenation] = STATE(1994), - [sym_string] = STATE(1993), - [sym_command_substitution] = STATE(1993), - [sym_process_substitution] = STATE(1993), - [aux_sym__literal_repeat1] = STATE(1995), - [sym_simple_expansion] = STATE(1993), - [sym_arithmetic_expansion] = STATE(1993), - [sym_string_expansion] = STATE(1993), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1989), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1989), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4692), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4694), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(4696), - [sym_word] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4712), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4712), - [anon_sym_DOLLAR] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_EQ] = ACTIONS(4692), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4692), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4698), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4692), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1985] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1997), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1997), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4714), - [anon_sym_POUND] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4714), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4714), - [anon_sym_RBRACE] = ACTIONS(4718), - [anon_sym_PERCENT] = ACTIONS(4714), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4720), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4700), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [1986] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4718), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1994), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1994), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4702), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4704), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_PERCENT] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4702), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4702), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4708), + [sym_word] = ACTIONS(659), }, [1987] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1998), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1998), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4722), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4722), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4722), - [anon_sym_POUND] = ACTIONS(4724), - [anon_sym_DASH] = ACTIONS(4722), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4722), - [anon_sym_RBRACE] = ACTIONS(4726), - [anon_sym_PERCENT] = ACTIONS(4722), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1988] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4726), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1996), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1996), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4712), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4716), + [sym_word] = ACTIONS(659), }, [1989] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(1998), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(1998), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4722), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4722), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4722), - [anon_sym_POUND] = ACTIONS(4724), - [anon_sym_DASH] = ACTIONS(4722), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4722), - [anon_sym_RBRACE] = ACTIONS(4726), - [anon_sym_PERCENT] = ACTIONS(4722), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4728), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1990] = { - [sym_expansion] = STATE(2000), - [sym_concatenation] = STATE(2001), - [sym_string] = STATE(2000), - [sym_command_substitution] = STATE(2000), - [sym_process_substitution] = STATE(2000), - [aux_sym__literal_repeat1] = STATE(2002), - [sym_simple_expansion] = STATE(2000), - [sym_arithmetic_expansion] = STATE(2000), - [sym_string_expansion] = STATE(2000), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4726), - [sym_word] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4732), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4732), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1994), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1994), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4702), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4704), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4702), + [anon_sym_PERCENT] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4702), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4702), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4718), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4702), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1991] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2004), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2004), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4734), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4734), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4734), - [anon_sym_POUND] = ACTIONS(4736), - [anon_sym_DASH] = ACTIONS(4734), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4734), - [anon_sym_RBRACE] = ACTIONS(4738), - [anon_sym_PERCENT] = ACTIONS(4734), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4740), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(1999), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(1999), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4720), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4722), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_PERCENT] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4720), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4726), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4720), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1992] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4738), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(2001), + [sym_concatenation] = STATE(2002), + [sym_string] = STATE(2001), + [sym_command_substitution] = STATE(2001), + [sym_process_substitution] = STATE(2001), + [aux_sym__literal_repeat1] = STATE(2003), + [sym_simple_expansion] = STATE(2001), + [sym_arithmetic_expansion] = STATE(2001), + [sym_string_expansion] = STATE(2001), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4728), + [sym_number] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4730), }, [1993] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4726), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2004), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2004), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4732), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4734), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4732), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4732), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1994] = { - [anon_sym_RBRACE] = ACTIONS(4726), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1995] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2005), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2005), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4738), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4740), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_EQ] = ACTIONS(4738), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4738), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4738), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1996] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2005), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2005), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4744), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4744), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4744), - [anon_sym_POUND] = ACTIONS(4746), - [anon_sym_DASH] = ACTIONS(4744), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4744), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_PERCENT] = ACTIONS(4744), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [1997] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2004), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2004), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4732), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4734), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4732), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4732), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4744), + [sym_word] = ACTIONS(659), }, [1998] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2008), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2008), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4746), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4748), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(4750), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4746), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4746), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4752), + [sym_word] = ACTIONS(659), }, [1999] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2006), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2006), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4752), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4752), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_POUND] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4752), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4752), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(4750), - [anon_sym_PERCENT] = ACTIONS(4752), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2000] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4750), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2009), + [sym_concatenation] = STATE(2010), + [sym_string] = STATE(2009), + [sym_command_substitution] = STATE(2009), + [sym_process_substitution] = STATE(2009), + [aux_sym__literal_repeat1] = STATE(2011), + [sym_simple_expansion] = STATE(2009), + [sym_arithmetic_expansion] = STATE(2009), + [sym_string_expansion] = STATE(2009), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4754), + [sym_number] = ACTIONS(4756), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4756), }, [2001] = { - [anon_sym_RBRACE] = ACTIONS(4750), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4736), + [sym__concat] = ACTIONS(1502), }, [2002] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4756), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4736), }, [2003] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2007), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2007), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4758), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4758), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_POUND] = ACTIONS(4760), - [anon_sym_DASH] = ACTIONS(4758), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4758), - [anon_sym_RBRACE] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4758), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4758), + [sym__special_character] = ACTIONS(1506), }, [2004] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2005] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2006] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2012), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2012), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4764), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4766), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_DASH] = ACTIONS(4764), + [anon_sym_PERCENT] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4764), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4764), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2007] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2013), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2013), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4768), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4770), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4772), + [anon_sym_DASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4768), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2008] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2011), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4770), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4772), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4772), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2009] = { - [sym_string] = STATE(1026), - [anon_sym_POUND] = ACTIONS(4774), - [anon_sym_0] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(4776), - [aux_sym__simple_variable_name_token1] = ACTIONS(2878), - [anon_sym__] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(4774), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(4776), - [anon_sym_DASH] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4778), - [anon_sym_DOLLAR] = ACTIONS(4774), - [anon_sym_AT] = ACTIONS(4776), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4760), + [sym__concat] = ACTIONS(1502), }, [2010] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4760), }, [2011] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4780), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4782), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4774), + [sym__special_character] = ACTIONS(1506), }, [2012] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4784), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2013] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(4786), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2014] = { - [anon_sym_RPAREN] = ACTIONS(4786), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2020), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4780), + [anon_sym_DQUOTE] = ACTIONS(4782), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2015] = { - [anon_sym_RPAREN] = ACTIONS(4788), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1032), + [anon_sym_QMARK] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2888), + [anon_sym_0] = ACTIONS(2882), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym__] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(2886), }, [2016] = { - [sym_expansion] = STATE(1033), - [sym_string_expansion] = STATE(1033), - [sym_simple_expansion] = STATE(1033), - [sym_string] = STATE(1033), - [sym_command_substitution] = STATE(1033), - [sym_process_substitution] = STATE(1033), - [sym_arithmetic_expansion] = STATE(1033), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(2385), - [sym_number] = ACTIONS(2869), - [sym__special_character] = ACTIONS(2871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2389), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2391), - [anon_sym_BQUOTE] = ACTIONS(2397), - [sym_raw_string] = ACTIONS(2871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [sym_word] = ACTIONS(2869), - [anon_sym_LT_LPAREN] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_ansii_c_string] = ACTIONS(2871), + [sym_expansion] = STATE(1035), + [sym_string_expansion] = STATE(1035), + [sym_simple_expansion] = STATE(1035), + [sym_string] = STATE(1035), + [sym_command_substitution] = STATE(1035), + [sym_process_substitution] = STATE(1035), + [sym_arithmetic_expansion] = STATE(1035), + [sym_number] = ACTIONS(2873), + [sym_raw_string] = ACTIONS(2875), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_ansii_c_string] = ACTIONS(2875), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [sym__special_character] = ACTIONS(2875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_word] = ACTIONS(2873), }, [2017] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2022), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2022), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_POUND] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4790), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_PERCENT] = ACTIONS(4790), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(4786), }, [2018] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2027), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2027), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_POUND] = ACTIONS(4800), - [anon_sym_DASH] = ACTIONS(4798), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_PERCENT] = ACTIONS(4798), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4788), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [2019] = { - [anon_sym_BQUOTE] = ACTIONS(4806), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4790), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2020] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4792), + [anon_sym_DQUOTE] = ACTIONS(4790), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2021] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2029), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2029), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4810), - [anon_sym_POUND] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4810), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4810), - [anon_sym_RBRACE] = ACTIONS(4814), - [anon_sym_PERCENT] = ACTIONS(4810), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4816), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4794), }, [2022] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4814), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2023] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2029), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2029), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4810), - [anon_sym_POUND] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4810), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4810), - [anon_sym_RBRACE] = ACTIONS(4814), - [anon_sym_PERCENT] = ACTIONS(4810), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4818), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4796), }, [2024] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2033), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2033), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4820), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4820), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4820), - [anon_sym_POUND] = ACTIONS(4822), - [anon_sym_DASH] = ACTIONS(4820), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4820), - [anon_sym_RBRACE] = ACTIONS(4824), - [anon_sym_PERCENT] = ACTIONS(4820), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4826), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2028), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2028), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4798), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4800), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4798), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4798), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4804), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4798), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2025] = { - [sym_expansion] = STATE(2034), - [sym_concatenation] = STATE(2035), - [sym_string] = STATE(2034), - [sym_command_substitution] = STATE(2034), - [sym_process_substitution] = STATE(2034), - [aux_sym__literal_repeat1] = STATE(2036), - [sym_simple_expansion] = STATE(2034), - [sym_arithmetic_expansion] = STATE(2034), - [sym_string_expansion] = STATE(2034), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4814), - [sym_word] = ACTIONS(4828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4830), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4830), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2030), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2030), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4806), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4808), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4810), + [anon_sym_DASH] = ACTIONS(4806), + [anon_sym_PERCENT] = ACTIONS(4806), + [anon_sym_EQ] = ACTIONS(4806), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4806), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4812), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4806), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2026] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2038), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2038), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4832), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4832), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4832), - [anon_sym_POUND] = ACTIONS(4834), - [anon_sym_DASH] = ACTIONS(4832), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4832), - [anon_sym_RBRACE] = ACTIONS(4836), - [anon_sym_PERCENT] = ACTIONS(4832), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4814), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2027] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4836), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2035), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2035), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4816), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4818), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4816), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4822), + [sym_word] = ACTIONS(659), }, [2028] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2039), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2039), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4840), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4840), - [anon_sym_POUND] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4840), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4840), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4840), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2029] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2037), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2037), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4824), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4826), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4824), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4830), + [sym_word] = ACTIONS(659), }, [2030] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2039), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2039), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4840), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4840), - [anon_sym_POUND] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4840), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4840), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4840), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4846), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2031] = { - [sym_expansion] = STATE(2041), - [sym_concatenation] = STATE(2042), - [sym_string] = STATE(2041), - [sym_command_substitution] = STATE(2041), - [sym_process_substitution] = STATE(2041), - [aux_sym__literal_repeat1] = STATE(2043), - [sym_simple_expansion] = STATE(2041), - [sym_arithmetic_expansion] = STATE(2041), - [sym_string_expansion] = STATE(2041), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4844), - [sym_word] = ACTIONS(4848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4850), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4850), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2035), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2035), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4816), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4818), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4816), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4832), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4816), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2032] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2045), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2045), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4852), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4852), - [anon_sym_POUND] = ACTIONS(4854), - [anon_sym_DASH] = ACTIONS(4852), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4852), - [anon_sym_RBRACE] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4852), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4858), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2040), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2040), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4834), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4836), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4834), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4840), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4834), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2033] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(2042), + [sym_concatenation] = STATE(2043), + [sym_string] = STATE(2042), + [sym_command_substitution] = STATE(2042), + [sym_process_substitution] = STATE(2042), + [aux_sym__literal_repeat1] = STATE(2044), + [sym_simple_expansion] = STATE(2042), + [sym_arithmetic_expansion] = STATE(2042), + [sym_string_expansion] = STATE(2042), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4842), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4842), + [sym_number] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4844), }, [2034] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4844), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2045), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2045), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4846), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4848), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4846), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4846), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2035] = { - [anon_sym_RBRACE] = ACTIONS(4844), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2036] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4860), - }, - [2037] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(2046), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2046), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4862), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4862), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4862), - [anon_sym_POUND] = ACTIONS(4864), - [anon_sym_DASH] = ACTIONS(4862), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4862), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4862), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4852), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4854), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4852), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2037] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2038] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2045), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2045), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4846), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4848), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4846), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4846), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4858), + [sym_word] = ACTIONS(659), }, [2039] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2049), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2049), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4860), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4862), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4860), + [anon_sym_PERCENT] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(4860), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4860), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4860), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4866), + [sym_word] = ACTIONS(659), }, [2040] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2047), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2047), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4870), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4870), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4870), - [anon_sym_POUND] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4870), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4870), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2041] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4868), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2050), + [sym_concatenation] = STATE(2051), + [sym_string] = STATE(2050), + [sym_command_substitution] = STATE(2050), + [sym_process_substitution] = STATE(2050), + [aux_sym__literal_repeat1] = STATE(2052), + [sym_simple_expansion] = STATE(2050), + [sym_arithmetic_expansion] = STATE(2050), + [sym_string_expansion] = STATE(2050), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4868), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4868), + [sym_number] = ACTIONS(4870), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4870), }, [2042] = { - [anon_sym_RBRACE] = ACTIONS(4868), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4850), + [sym__concat] = ACTIONS(1502), }, [2043] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4874), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4850), }, [2044] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2048), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2048), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4876), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4876), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4876), - [anon_sym_POUND] = ACTIONS(4878), - [anon_sym_DASH] = ACTIONS(4876), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4876), - [anon_sym_RBRACE] = ACTIONS(4880), - [anon_sym_PERCENT] = ACTIONS(4876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4872), + [sym__special_character] = ACTIONS(1506), }, [2045] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4880), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2046] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4882), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2047] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2053), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2053), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4878), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4880), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_PERCENT] = ACTIONS(4878), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4878), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4878), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2048] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2054), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2054), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4882), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4884), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_PERCENT] = ACTIONS(4882), + [anon_sym_EQ] = ACTIONS(4882), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4882), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4882), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2049] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2052), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4888), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4890), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2050] = { - [sym_string] = STATE(1059), - [anon_sym_POUND] = ACTIONS(4892), - [anon_sym_0] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(4894), - [aux_sym__simple_variable_name_token1] = ACTIONS(2898), - [anon_sym__] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(4892), - [anon_sym_DQUOTE] = ACTIONS(707), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4892), - [sym_raw_string] = ACTIONS(4896), - [anon_sym_DOLLAR] = ACTIONS(4892), - [anon_sym_AT] = ACTIONS(4894), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4874), + [sym__concat] = ACTIONS(1502), }, [2051] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4874), }, [2052] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(4898), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(4900), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4888), + [sym__special_character] = ACTIONS(1506), }, [2053] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2054] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(4904), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2055] = { - [anon_sym_RPAREN] = ACTIONS(4904), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2061), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4894), + [anon_sym_DQUOTE] = ACTIONS(4896), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2056] = { - [anon_sym_RPAREN] = ACTIONS(4906), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1065), + [anon_sym_QMARK] = ACTIONS(4898), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_AT] = ACTIONS(4898), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_0] = ACTIONS(2904), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym__] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(4898), + [sym_raw_string] = ACTIONS(4902), }, [2057] = { - [sym_expansion] = STATE(1066), - [sym_string_expansion] = STATE(1066), - [sym_simple_expansion] = STATE(1066), - [sym_string] = STATE(1066), - [sym_command_substitution] = STATE(1066), - [sym_process_substitution] = STATE(1066), - [sym_arithmetic_expansion] = STATE(1066), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym_number] = ACTIONS(2889), - [sym__special_character] = ACTIONS(2891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(707), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), - [anon_sym_BQUOTE] = ACTIONS(715), - [sym_raw_string] = ACTIONS(2891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), - [sym_word] = ACTIONS(2889), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_ansii_c_string] = ACTIONS(2891), + [sym_expansion] = STATE(1068), + [sym_string_expansion] = STATE(1068), + [sym_simple_expansion] = STATE(1068), + [sym_string] = STATE(1068), + [sym_command_substitution] = STATE(1068), + [sym_process_substitution] = STATE(1068), + [sym_arithmetic_expansion] = STATE(1068), + [sym_number] = ACTIONS(2895), + [sym_raw_string] = ACTIONS(2897), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(711), + [sym_ansii_c_string] = ACTIONS(2897), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(713), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(717), + [sym__special_character] = ACTIONS(2897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(719), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(721), + [sym_word] = ACTIONS(2895), }, [2058] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2063), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2063), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4908), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4908), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4908), - [anon_sym_POUND] = ACTIONS(4910), - [anon_sym_DASH] = ACTIONS(4908), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4908), - [anon_sym_RBRACE] = ACTIONS(4912), - [anon_sym_PERCENT] = ACTIONS(4908), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(4904), }, [2059] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2068), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2068), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4916), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4916), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4916), - [anon_sym_POUND] = ACTIONS(4918), - [anon_sym_DASH] = ACTIONS(4916), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4916), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4916), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4906), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [2060] = { - [anon_sym_BQUOTE] = ACTIONS(4924), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2061] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(4910), + [anon_sym_DQUOTE] = ACTIONS(4908), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2062] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2070), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2070), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4928), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4928), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4928), - [anon_sym_POUND] = ACTIONS(4930), - [anon_sym_DASH] = ACTIONS(4928), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_PERCENT] = ACTIONS(4928), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4934), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4912), }, [2063] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2064] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2070), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2070), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4928), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4928), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4928), - [anon_sym_POUND] = ACTIONS(4930), - [anon_sym_DASH] = ACTIONS(4928), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_PERCENT] = ACTIONS(4928), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4936), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(4914), }, [2065] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2074), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2074), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4938), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4938), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4938), - [anon_sym_POUND] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4938), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_PERCENT] = ACTIONS(4938), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2069), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2069), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4916), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4918), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4922), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4916), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2066] = { - [sym_expansion] = STATE(2075), - [sym_concatenation] = STATE(2076), - [sym_string] = STATE(2075), - [sym_command_substitution] = STATE(2075), - [sym_process_substitution] = STATE(2075), - [aux_sym__literal_repeat1] = STATE(2077), - [sym_simple_expansion] = STATE(2075), - [sym_arithmetic_expansion] = STATE(2075), - [sym_string_expansion] = STATE(2075), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4946), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4932), - [sym_word] = ACTIONS(4946), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4948), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4948), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2071), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2071), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4924), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4926), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4930), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4924), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2067] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2079), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2079), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4950), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4950), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4950), - [anon_sym_POUND] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4950), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4950), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_PERCENT] = ACTIONS(4950), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4956), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(4932), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2068] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2076), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2076), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4934), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4936), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4934), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4940), + [sym_word] = ACTIONS(659), }, [2069] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2080), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2080), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4958), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4958), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4958), - [anon_sym_POUND] = ACTIONS(4960), - [anon_sym_DASH] = ACTIONS(4958), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4958), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_PERCENT] = ACTIONS(4958), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2070] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2078), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2078), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4942), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4944), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4942), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4948), + [sym_word] = ACTIONS(659), }, [2071] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2080), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2080), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4958), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4958), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4958), - [anon_sym_POUND] = ACTIONS(4960), - [anon_sym_DASH] = ACTIONS(4958), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4958), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_PERCENT] = ACTIONS(4958), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4964), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2072] = { - [sym_expansion] = STATE(2082), - [sym_concatenation] = STATE(2083), - [sym_string] = STATE(2082), - [sym_command_substitution] = STATE(2082), - [sym_process_substitution] = STATE(2082), - [aux_sym__literal_repeat1] = STATE(2084), - [sym_simple_expansion] = STATE(2082), - [sym_arithmetic_expansion] = STATE(2082), - [sym_string_expansion] = STATE(2082), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(4966), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(4962), - [sym_word] = ACTIONS(4966), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(4968), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(4968), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2076), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2076), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4934), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4936), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_DASH] = ACTIONS(4934), + [anon_sym_PERCENT] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4934), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4950), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4934), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2073] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2086), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2086), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4970), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4970), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_POUND] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4970), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_PERCENT] = ACTIONS(4970), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(4976), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2081), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2081), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4952), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4954), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(4958), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4952), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2074] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(2083), + [sym_concatenation] = STATE(2084), + [sym_string] = STATE(2083), + [sym_command_substitution] = STATE(2083), + [sym_process_substitution] = STATE(2083), + [aux_sym__literal_repeat1] = STATE(2085), + [sym_simple_expansion] = STATE(2083), + [sym_arithmetic_expansion] = STATE(2083), + [sym_string_expansion] = STATE(2083), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4960), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4960), + [sym_number] = ACTIONS(4962), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4962), }, [2075] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4962), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2086), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2086), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4964), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4966), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4964), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2076] = { - [anon_sym_RBRACE] = ACTIONS(4962), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2077] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4978), - }, - [2078] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(2087), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2087), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4980), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4980), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4980), - [anon_sym_POUND] = ACTIONS(4982), - [anon_sym_DASH] = ACTIONS(4980), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4980), - [anon_sym_RBRACE] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4980), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4970), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4972), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(4970), + [anon_sym_PERCENT] = ACTIONS(4970), + [anon_sym_EQ] = ACTIONS(4970), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4970), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4970), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2078] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2079] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2086), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2086), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4964), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4966), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4964), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4976), + [sym_word] = ACTIONS(659), }, [2080] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2090), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2090), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4978), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4980), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(4978), + [anon_sym_PERCENT] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4978), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4978), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4978), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(4984), + [sym_word] = ACTIONS(659), }, [2081] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2088), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2088), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4988), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_POUND] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4988), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_PERCENT] = ACTIONS(4988), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2082] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4986), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2091), + [sym_concatenation] = STATE(2092), + [sym_string] = STATE(2091), + [sym_command_substitution] = STATE(2091), + [sym_process_substitution] = STATE(2091), + [aux_sym__literal_repeat1] = STATE(2093), + [sym_simple_expansion] = STATE(2091), + [sym_arithmetic_expansion] = STATE(2091), + [sym_string_expansion] = STATE(2091), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(4986), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(4986), + [sym_number] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(4988), }, [2083] = { - [anon_sym_RBRACE] = ACTIONS(4986), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4968), + [sym__concat] = ACTIONS(1502), }, [2084] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(4992), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4968), }, [2085] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2089), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2089), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(4994), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(4994), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(4994), - [anon_sym_POUND] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4994), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_PERCENT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4990), + [sym__special_character] = ACTIONS(1506), }, [2086] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2087] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2088] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2094), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2094), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(4996), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(4998), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(4996), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2089] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2095), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2095), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5000), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5002), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5000), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2090] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2093), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5006), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5008), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2091] = { - [sym_string] = STATE(1092), - [anon_sym_0] = ACTIONS(2932), - [anon_sym_BANG] = ACTIONS(5010), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(5012), - [anon_sym_DASH] = ACTIONS(5010), - [anon_sym_POUND] = ACTIONS(5010), - [anon_sym_QMARK] = ACTIONS(5012), - [aux_sym__simple_variable_name_token1] = ACTIONS(2932), - [anon_sym__] = ACTIONS(2932), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(5014), - [anon_sym_DOLLAR] = ACTIONS(5010), - [anon_sym_AT] = ACTIONS(5012), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4992), + [sym__concat] = ACTIONS(1502), }, [2092] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4992), }, [2093] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5016), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5018), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5006), + [sym__special_character] = ACTIONS(1506), }, [2094] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2095] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(5022), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2096] = { - [anon_sym_RPAREN] = ACTIONS(5022), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2102), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2097] = { - [anon_sym_RPAREN] = ACTIONS(5024), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1098), + [anon_sym_QMARK] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_POUND] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [aux_sym__simple_variable_name_token1] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym__] = ACTIONS(2938), + [sym_raw_string] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_AT] = ACTIONS(5016), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(5016), }, [2098] = { - [sym_expansion] = STATE(1099), - [sym_string] = STATE(1099), - [sym_command_substitution] = STATE(1099), - [sym_process_substitution] = STATE(1099), - [sym_simple_expansion] = STATE(1099), - [sym_arithmetic_expansion] = STATE(1099), - [sym_string_expansion] = STATE(1099), - [anon_sym_GT_LPAREN] = ACTIONS(2911), - [sym_number] = ACTIONS(2913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2919), - [sym_word] = ACTIONS(2913), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2921), - [anon_sym_LT_LPAREN] = ACTIONS(2911), - [sym_ansii_c_string] = ACTIONS(2923), - [sym__special_character] = ACTIONS(2923), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2925), - [sym_raw_string] = ACTIONS(2923), - [anon_sym_DOLLAR] = ACTIONS(3216), + [sym_expansion] = STATE(1101), + [sym_string] = STATE(1101), + [sym_command_substitution] = STATE(1101), + [sym_process_substitution] = STATE(1101), + [sym_simple_expansion] = STATE(1101), + [sym_arithmetic_expansion] = STATE(1101), + [sym_string_expansion] = STATE(1101), + [anon_sym_LT_LPAREN] = ACTIONS(2917), + [sym_ansii_c_string] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__special_character] = ACTIONS(2919), + [anon_sym_BQUOTE] = ACTIONS(2923), + [sym_raw_string] = ACTIONS(2919), + [sym_number] = ACTIONS(2925), + [anon_sym_DOLLAR] = ACTIONS(3204), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2917), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2931), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2933), + [sym_word] = ACTIONS(2925), }, [2099] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2104), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2104), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5026), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5026), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5026), - [anon_sym_POUND] = ACTIONS(5028), - [anon_sym_DASH] = ACTIONS(5026), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5026), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_PERCENT] = ACTIONS(5026), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(5022), }, [2100] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2109), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2109), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5034), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5034), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5034), - [anon_sym_POUND] = ACTIONS(5036), - [anon_sym_DASH] = ACTIONS(5034), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5034), - [anon_sym_RBRACE] = ACTIONS(5038), - [anon_sym_PERCENT] = ACTIONS(5034), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5040), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [2101] = { - [anon_sym_BQUOTE] = ACTIONS(5042), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5026), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2102] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(5044), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5028), + [anon_sym_DQUOTE] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2103] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2111), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2111), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5046), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5046), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5046), - [anon_sym_POUND] = ACTIONS(5048), - [anon_sym_DASH] = ACTIONS(5046), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5046), - [anon_sym_RBRACE] = ACTIONS(5050), - [anon_sym_PERCENT] = ACTIONS(5046), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5052), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5030), }, [2104] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5050), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2105] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2111), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2111), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5046), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5046), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5046), - [anon_sym_POUND] = ACTIONS(5048), - [anon_sym_DASH] = ACTIONS(5046), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5046), - [anon_sym_RBRACE] = ACTIONS(5050), - [anon_sym_PERCENT] = ACTIONS(5046), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5054), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5032), }, [2106] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2115), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2115), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5056), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5056), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5056), - [anon_sym_POUND] = ACTIONS(5058), - [anon_sym_DASH] = ACTIONS(5056), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5056), - [anon_sym_RBRACE] = ACTIONS(5060), - [anon_sym_PERCENT] = ACTIONS(5056), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5062), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2110), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2110), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5034), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5036), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_PERCENT] = ACTIONS(5034), + [anon_sym_EQ] = ACTIONS(5034), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5040), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5034), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2107] = { - [sym_expansion] = STATE(2116), - [sym_concatenation] = STATE(2117), - [sym_string] = STATE(2116), - [sym_command_substitution] = STATE(2116), - [sym_process_substitution] = STATE(2116), - [aux_sym__literal_repeat1] = STATE(2118), - [sym_simple_expansion] = STATE(2116), - [sym_arithmetic_expansion] = STATE(2116), - [sym_string_expansion] = STATE(2116), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5050), - [sym_word] = ACTIONS(5064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5066), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5066), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2112), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2112), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5042), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5044), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_PERCENT] = ACTIONS(5042), + [anon_sym_EQ] = ACTIONS(5042), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5042), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5042), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2108] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2120), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2120), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5068), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5068), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5068), - [anon_sym_POUND] = ACTIONS(5070), - [anon_sym_DASH] = ACTIONS(5068), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5068), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_PERCENT] = ACTIONS(5068), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5074), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5050), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2109] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2117), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2117), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5052), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5054), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5052), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5058), + [sym_word] = ACTIONS(659), }, [2110] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2121), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2121), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5076), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5076), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5076), - [anon_sym_POUND] = ACTIONS(5078), - [anon_sym_DASH] = ACTIONS(5076), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5076), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_PERCENT] = ACTIONS(5076), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2111] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2119), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2119), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5060), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5062), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5060), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5060), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5060), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5066), + [sym_word] = ACTIONS(659), }, [2112] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2121), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2121), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5076), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5076), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5076), - [anon_sym_POUND] = ACTIONS(5078), - [anon_sym_DASH] = ACTIONS(5076), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5076), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_PERCENT] = ACTIONS(5076), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5082), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2113] = { - [sym_expansion] = STATE(2123), - [sym_concatenation] = STATE(2124), - [sym_string] = STATE(2123), - [sym_command_substitution] = STATE(2123), - [sym_process_substitution] = STATE(2123), - [aux_sym__literal_repeat1] = STATE(2125), - [sym_simple_expansion] = STATE(2123), - [sym_arithmetic_expansion] = STATE(2123), - [sym_string_expansion] = STATE(2123), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5080), - [sym_word] = ACTIONS(5084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5086), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5086), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2117), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2117), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5052), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5054), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_EQ] = ACTIONS(5052), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5068), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5052), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2114] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2127), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2127), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5088), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5088), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5088), - [anon_sym_POUND] = ACTIONS(5090), - [anon_sym_DASH] = ACTIONS(5088), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5088), - [anon_sym_RBRACE] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(5088), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5094), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2122), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2122), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5070), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5072), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5070), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5076), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5070), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2115] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(2124), + [sym_concatenation] = STATE(2125), + [sym_string] = STATE(2124), + [sym_command_substitution] = STATE(2124), + [sym_process_substitution] = STATE(2124), + [aux_sym__literal_repeat1] = STATE(2126), + [sym_simple_expansion] = STATE(2124), + [sym_arithmetic_expansion] = STATE(2124), + [sym_string_expansion] = STATE(2124), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5078), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5078), + [sym_number] = ACTIONS(5080), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5080), }, [2116] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(5080), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2127), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2127), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5082), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5084), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5082), + [anon_sym_EQ] = ACTIONS(5082), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5082), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5082), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2117] = { - [anon_sym_RBRACE] = ACTIONS(5080), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2118] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5096), - }, - [2119] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(2128), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2128), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5098), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5098), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5098), - [anon_sym_POUND] = ACTIONS(5100), - [anon_sym_DASH] = ACTIONS(5098), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5098), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_PERCENT] = ACTIONS(5098), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5088), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5090), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_EQ] = ACTIONS(5088), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5088), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2119] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2120] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2127), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2127), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5082), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5084), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5082), + [anon_sym_EQ] = ACTIONS(5082), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5082), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5082), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5094), + [sym_word] = ACTIONS(659), }, [2121] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5104), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2131), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2131), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5096), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5098), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_EQ] = ACTIONS(5096), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5096), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5102), + [sym_word] = ACTIONS(659), }, [2122] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2129), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2129), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5106), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5106), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5106), - [anon_sym_POUND] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(5106), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5104), - [anon_sym_PERCENT] = ACTIONS(5106), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2123] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(5104), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2132), + [sym_concatenation] = STATE(2133), + [sym_string] = STATE(2132), + [sym_command_substitution] = STATE(2132), + [sym_process_substitution] = STATE(2132), + [aux_sym__literal_repeat1] = STATE(2134), + [sym_simple_expansion] = STATE(2132), + [sym_arithmetic_expansion] = STATE(2132), + [sym_string_expansion] = STATE(2132), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5104), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5086), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5104), + [sym_number] = ACTIONS(5106), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5106), }, [2124] = { - [anon_sym_RBRACE] = ACTIONS(5104), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5086), + [sym__concat] = ACTIONS(1502), }, [2125] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5110), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5086), }, [2126] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2130), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2130), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5112), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5112), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5112), - [anon_sym_POUND] = ACTIONS(5114), - [anon_sym_DASH] = ACTIONS(5112), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5112), - [anon_sym_RBRACE] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5112), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5108), + [sym__special_character] = ACTIONS(1506), }, [2127] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5110), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2128] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2129] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5120), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2135), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2135), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5114), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5116), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5110), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(5114), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5114), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5114), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2130] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2136), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2136), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5118), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5120), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5118), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5118), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2131] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2134), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5124), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5126), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2132] = { - [sym_string] = STATE(1125), - [anon_sym_0] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(5128), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(5130), - [anon_sym_DASH] = ACTIONS(5128), - [anon_sym_POUND] = ACTIONS(5128), - [anon_sym_QMARK] = ACTIONS(5130), - [aux_sym__simple_variable_name_token1] = ACTIONS(2966), - [anon_sym__] = ACTIONS(2966), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(5132), - [anon_sym_DOLLAR] = ACTIONS(5128), - [anon_sym_AT] = ACTIONS(5130), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5110), + [sym__concat] = ACTIONS(1502), }, [2133] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(5134), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5110), }, [2134] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5134), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5136), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5124), + [sym__special_character] = ACTIONS(1506), }, [2135] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5138), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2136] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(5140), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5128), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2137] = { - [anon_sym_RPAREN] = ACTIONS(5140), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2143), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5130), + [anon_sym_DQUOTE] = ACTIONS(5132), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2138] = { - [anon_sym_RPAREN] = ACTIONS(5142), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1131), + [anon_sym_QMARK] = ACTIONS(5134), + [anon_sym_DQUOTE] = ACTIONS(2955), + [anon_sym_POUND] = ACTIONS(5136), + [anon_sym_BANG] = ACTIONS(5136), + [aux_sym__simple_variable_name_token1] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym__] = ACTIONS(2972), + [sym_raw_string] = ACTIONS(5138), + [anon_sym_DOLLAR] = ACTIONS(5136), + [anon_sym_AT] = ACTIONS(5134), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(5134), }, [2139] = { - [sym_expansion] = STATE(1132), - [sym_string] = STATE(1132), - [sym_command_substitution] = STATE(1132), - [sym_process_substitution] = STATE(1132), - [sym_simple_expansion] = STATE(1132), - [sym_arithmetic_expansion] = STATE(1132), - [sym_string_expansion] = STATE(1132), - [anon_sym_GT_LPAREN] = ACTIONS(2945), - [sym_number] = ACTIONS(2947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), - [sym_word] = ACTIONS(2947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [anon_sym_LT_LPAREN] = ACTIONS(2945), - [sym_ansii_c_string] = ACTIONS(2957), - [sym__special_character] = ACTIONS(2957), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(2959), - [sym_raw_string] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(3236), + [sym_expansion] = STATE(1134), + [sym_string] = STATE(1134), + [sym_command_substitution] = STATE(1134), + [sym_process_substitution] = STATE(1134), + [sym_simple_expansion] = STATE(1134), + [sym_arithmetic_expansion] = STATE(1134), + [sym_string_expansion] = STATE(1134), + [anon_sym_LT_LPAREN] = ACTIONS(2951), + [sym_ansii_c_string] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym__special_character] = ACTIONS(2953), + [anon_sym_BQUOTE] = ACTIONS(2957), + [sym_raw_string] = ACTIONS(2953), + [sym_number] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(3242), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(2951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2965), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2967), + [sym_word] = ACTIONS(2959), }, [2140] = { - [sym_concatenation] = STATE(2145), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2145), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5144), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5144), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5144), - [anon_sym_POUND] = ACTIONS(5146), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5144), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5148), - [anon_sym_EQ] = ACTIONS(5144), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5144), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5150), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(5140), }, [2141] = { - [sym_concatenation] = STATE(2150), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2150), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5152), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5152), - [anon_sym_POUND] = ACTIONS(5154), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5152), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(5152), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5152), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5158), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5142), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [2142] = { - [anon_sym_BQUOTE] = ACTIONS(5160), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5144), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2143] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(5162), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5146), + [anon_sym_DQUOTE] = ACTIONS(5144), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2144] = { - [sym_concatenation] = STATE(2152), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2152), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5164), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5164), - [anon_sym_POUND] = ACTIONS(5166), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5164), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5168), - [anon_sym_EQ] = ACTIONS(5164), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5164), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5170), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5148), }, [2145] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5168), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_raw_string] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2146] = { - [sym_concatenation] = STATE(2152), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2152), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5164), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5164), - [anon_sym_POUND] = ACTIONS(5166), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5164), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5168), - [anon_sym_EQ] = ACTIONS(5164), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5164), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5172), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5150), }, [2147] = { - [sym_concatenation] = STATE(2156), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2156), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5174), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5174), - [anon_sym_POUND] = ACTIONS(5176), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5174), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5178), - [anon_sym_EQ] = ACTIONS(5174), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5174), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5180), + [sym_concatenation] = STATE(2151), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2151), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5152), + [anon_sym_PERCENT] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5154), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5152), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5156), + [anon_sym_RBRACE] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5152), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5152), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2148] = { - [sym_expansion] = STATE(2157), - [sym_concatenation] = STATE(2158), - [sym_string] = STATE(2157), - [sym_command_substitution] = STATE(2157), - [sym_process_substitution] = STATE(2157), - [aux_sym__literal_repeat1] = STATE(2159), - [sym_simple_expansion] = STATE(2157), - [sym_arithmetic_expansion] = STATE(2157), - [sym_string_expansion] = STATE(2157), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5182), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5168), - [sym_word] = ACTIONS(5182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5184), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5184), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(2153), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2153), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_PERCENT] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5162), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5160), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5164), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_EQ] = ACTIONS(5160), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5160), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2149] = { - [sym_concatenation] = STATE(2161), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2161), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5186), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5186), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5186), - [anon_sym_POUND] = ACTIONS(5188), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5186), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5190), - [anon_sym_EQ] = ACTIONS(5186), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5186), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2150] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5190), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(2158), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2158), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_COLON] = ACTIONS(5170), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5170), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5172), + [anon_sym_RBRACE] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5170), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5176), + [sym_word] = ACTIONS(659), }, [2151] = { - [sym_concatenation] = STATE(2162), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2162), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5194), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5194), - [anon_sym_POUND] = ACTIONS(5196), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5194), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5198), - [anon_sym_EQ] = ACTIONS(5194), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5194), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2152] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5198), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(2160), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2160), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5178), + [anon_sym_PERCENT] = ACTIONS(5178), + [anon_sym_COLON] = ACTIONS(5178), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5178), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5180), + [anon_sym_RBRACE] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5178), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5184), + [sym_word] = ACTIONS(659), }, [2153] = { - [sym_concatenation] = STATE(2162), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2162), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5194), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5194), - [anon_sym_POUND] = ACTIONS(5196), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5194), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5198), - [anon_sym_EQ] = ACTIONS(5194), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5194), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5200), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2154] = { - [sym_expansion] = STATE(2164), - [sym_concatenation] = STATE(2165), - [sym_string] = STATE(2164), - [sym_command_substitution] = STATE(2164), - [sym_process_substitution] = STATE(2164), - [aux_sym__literal_repeat1] = STATE(2166), - [sym_simple_expansion] = STATE(2164), - [sym_arithmetic_expansion] = STATE(2164), - [sym_string_expansion] = STATE(2164), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5198), - [sym_word] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5204), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5204), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(2158), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2158), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_COLON] = ACTIONS(5170), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5186), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5170), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5172), + [anon_sym_RBRACE] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5170), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2155] = { - [sym_concatenation] = STATE(2168), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2168), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5206), - [anon_sym_POUND] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5210), - [anon_sym_EQ] = ACTIONS(5206), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5206), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5212), + [sym_concatenation] = STATE(2163), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2163), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_COLON] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5190), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5192), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_EQ] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5188), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2156] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5210), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(2165), + [sym_concatenation] = STATE(2166), + [sym_string] = STATE(2165), + [sym_command_substitution] = STATE(2165), + [sym_process_substitution] = STATE(2165), + [aux_sym__literal_repeat1] = STATE(2167), + [sym_simple_expansion] = STATE(2165), + [sym_arithmetic_expansion] = STATE(2165), + [sym_string_expansion] = STATE(2165), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5196), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5174), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5196), + [sym_number] = ACTIONS(5198), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5198), }, [2157] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(5198), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2168), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2168), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5200), + [anon_sym_PERCENT] = ACTIONS(5200), + [anon_sym_COLON] = ACTIONS(5200), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5200), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5200), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2158] = { - [anon_sym_RBRACE] = ACTIONS(5198), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2159] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5214), - [sym_comment] = ACTIONS(53), - }, - [2160] = { [sym_concatenation] = STATE(2169), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2169), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5216), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5216), - [anon_sym_POUND] = ACTIONS(5218), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5216), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(5216), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5216), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5206), + [anon_sym_PERCENT] = ACTIONS(5206), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5208), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [2160] = { + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2161] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(2168), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2168), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5200), + [anon_sym_PERCENT] = ACTIONS(5200), + [anon_sym_COLON] = ACTIONS(5200), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5200), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5200), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5212), + [sym_word] = ACTIONS(659), }, [2162] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5222), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(2172), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2172), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5214), + [anon_sym_PERCENT] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5214), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5216), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_EQ] = ACTIONS(5214), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5214), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5220), + [sym_word] = ACTIONS(659), }, [2163] = { - [sym_concatenation] = STATE(2170), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2170), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5224), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5224), - [anon_sym_POUND] = ACTIONS(5226), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5224), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5222), - [anon_sym_EQ] = ACTIONS(5224), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5224), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2164] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(5222), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(2173), + [sym_concatenation] = STATE(2174), + [sym_string] = STATE(2173), + [sym_command_substitution] = STATE(2173), + [sym_process_substitution] = STATE(2173), + [aux_sym__literal_repeat1] = STATE(2175), + [sym_simple_expansion] = STATE(2173), + [sym_arithmetic_expansion] = STATE(2173), + [sym_string_expansion] = STATE(2173), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5222), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5204), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5222), + [sym_number] = ACTIONS(5224), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5224), }, [2165] = { - [anon_sym_RBRACE] = ACTIONS(5222), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(5204), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [2166] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5228), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5204), }, [2167] = { - [sym_concatenation] = STATE(2171), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2171), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5230), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5230), - [anon_sym_POUND] = ACTIONS(5232), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5230), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5234), - [anon_sym_EQ] = ACTIONS(5230), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5230), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(5226), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [2168] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5234), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2169] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5236), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2170] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5238), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(2176), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2176), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_PERCENT] = ACTIONS(5232), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5232), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(5232), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5232), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2171] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), + [sym_concatenation] = STATE(2177), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2177), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5236), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5238), [anon_sym_RBRACE] = ACTIONS(5240), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(5236), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5236), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2172] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2175), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5244), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5240), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2173] = { - [sym_string] = STATE(1158), - [anon_sym_POUND] = ACTIONS(2988), - [anon_sym_0] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2992), - [aux_sym__simple_variable_name_token1] = ACTIONS(2990), - [anon_sym__] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2988), - [sym_raw_string] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_AT] = ACTIONS(2992), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(5228), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [2174] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5246), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5228), }, [2175] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5248), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(5242), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [2176] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5250), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5244), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2177] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(5252), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2178] = { - [anon_sym_RPAREN] = ACTIONS(5252), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2184), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5248), + [anon_sym_DQUOTE] = ACTIONS(5250), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2179] = { - [anon_sym_RPAREN] = ACTIONS(5254), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1164), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2996), + [aux_sym__simple_variable_name_token1] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym__] = ACTIONS(2994), + [sym_raw_string] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(2996), + [anon_sym_AT] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(3058), }, [2180] = { - [sym_expansion] = STATE(1165), - [sym_string_expansion] = STATE(1165), - [sym_simple_expansion] = STATE(1165), - [sym_string] = STATE(1165), - [sym_command_substitution] = STATE(1165), - [sym_process_substitution] = STATE(1165), - [sym_arithmetic_expansion] = STATE(1165), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(2979), - [sym__special_character] = ACTIONS(2981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(2981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [sym_word] = ACTIONS(2979), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1084), - [sym_ansii_c_string] = ACTIONS(2981), + [sym_expansion] = STATE(1167), + [sym_string] = STATE(1167), + [sym_command_substitution] = STATE(1167), + [sym_process_substitution] = STATE(1167), + [sym_simple_expansion] = STATE(1167), + [sym_arithmetic_expansion] = STATE(1167), + [sym_string_expansion] = STATE(1167), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(2987), + [sym_number] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(2985), }, [2181] = { - [sym_concatenation] = STATE(2186), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2186), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5256), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5256), - [anon_sym_POUND] = ACTIONS(5258), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5256), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5260), - [anon_sym_EQ] = ACTIONS(5256), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5256), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5262), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(5252), }, [2182] = { - [sym_concatenation] = STATE(2191), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2191), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5264), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5264), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5264), - [anon_sym_POUND] = ACTIONS(5266), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5264), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5268), - [anon_sym_EQ] = ACTIONS(5264), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5270), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5254), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [2183] = { - [anon_sym_BQUOTE] = ACTIONS(5272), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5256), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2184] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5274), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_command_substitution] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5258), + [anon_sym_DQUOTE] = ACTIONS(5256), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2185] = { - [sym_concatenation] = STATE(2193), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2193), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5276), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5276), - [anon_sym_POUND] = ACTIONS(5278), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5276), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5280), - [anon_sym_EQ] = ACTIONS(5276), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5276), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5282), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5260), }, [2186] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5280), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_raw_string] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2187] = { - [sym_concatenation] = STATE(2193), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2193), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5276), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5276), - [anon_sym_POUND] = ACTIONS(5278), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5276), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5280), - [anon_sym_EQ] = ACTIONS(5276), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5276), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5284), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5262), }, [2188] = { - [sym_concatenation] = STATE(2197), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2197), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5286), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5286), - [anon_sym_POUND] = ACTIONS(5288), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5286), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5290), - [anon_sym_EQ] = ACTIONS(5286), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5286), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5292), + [sym_concatenation] = STATE(2192), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2192), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_PERCENT] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5266), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5264), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5268), + [anon_sym_RBRACE] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5264), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5264), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2189] = { - [sym_expansion] = STATE(2198), - [sym_concatenation] = STATE(2199), - [sym_string] = STATE(2198), - [sym_command_substitution] = STATE(2198), - [sym_process_substitution] = STATE(2198), - [aux_sym__literal_repeat1] = STATE(2200), - [sym_simple_expansion] = STATE(2198), - [sym_arithmetic_expansion] = STATE(2198), - [sym_string_expansion] = STATE(2198), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5280), - [sym_word] = ACTIONS(5294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5296), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5296), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(2194), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2194), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5272), + [anon_sym_PERCENT] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5274), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5272), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5276), + [anon_sym_RBRACE] = ACTIONS(5278), + [anon_sym_EQ] = ACTIONS(5272), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5272), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2190] = { - [sym_concatenation] = STATE(2202), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2202), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5298), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5298), - [anon_sym_POUND] = ACTIONS(5300), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5298), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5302), - [anon_sym_EQ] = ACTIONS(5298), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5298), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5304), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5280), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2191] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5302), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(2199), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2199), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5282), + [anon_sym_PERCENT] = ACTIONS(5282), + [anon_sym_COLON] = ACTIONS(5282), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5282), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5284), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5282), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5288), + [sym_word] = ACTIONS(659), }, [2192] = { - [sym_concatenation] = STATE(2203), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2203), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5306), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5306), - [anon_sym_POUND] = ACTIONS(5308), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5306), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5310), - [anon_sym_EQ] = ACTIONS(5306), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2193] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5310), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(2201), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2201), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5290), + [anon_sym_PERCENT] = ACTIONS(5290), + [anon_sym_COLON] = ACTIONS(5290), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5290), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5292), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5290), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5296), + [sym_word] = ACTIONS(659), }, [2194] = { - [sym_concatenation] = STATE(2203), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2203), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5306), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5306), - [anon_sym_POUND] = ACTIONS(5308), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5306), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5310), - [anon_sym_EQ] = ACTIONS(5306), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5312), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2195] = { - [sym_expansion] = STATE(2205), - [sym_concatenation] = STATE(2206), - [sym_string] = STATE(2205), - [sym_command_substitution] = STATE(2205), - [sym_process_substitution] = STATE(2205), - [aux_sym__literal_repeat1] = STATE(2207), - [sym_simple_expansion] = STATE(2205), - [sym_arithmetic_expansion] = STATE(2205), - [sym_string_expansion] = STATE(2205), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5310), - [sym_word] = ACTIONS(5314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5316), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5316), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(2199), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2199), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5282), + [anon_sym_PERCENT] = ACTIONS(5282), + [anon_sym_COLON] = ACTIONS(5282), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5298), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5282), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5284), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5282), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2196] = { - [sym_concatenation] = STATE(2209), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2209), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5318), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5318), - [anon_sym_POUND] = ACTIONS(5320), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5318), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5322), - [anon_sym_EQ] = ACTIONS(5318), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5318), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5324), + [sym_concatenation] = STATE(2204), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2204), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_PERCENT] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5302), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5300), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5304), + [anon_sym_RBRACE] = ACTIONS(5306), + [anon_sym_EQ] = ACTIONS(5300), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5300), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2197] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5322), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(2206), + [sym_concatenation] = STATE(2207), + [sym_string] = STATE(2206), + [sym_command_substitution] = STATE(2206), + [sym_process_substitution] = STATE(2206), + [aux_sym__literal_repeat1] = STATE(2208), + [sym_simple_expansion] = STATE(2206), + [sym_arithmetic_expansion] = STATE(2206), + [sym_string_expansion] = STATE(2206), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5308), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5308), + [sym_number] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5310), }, [2198] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(5310), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2209), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2209), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_PERCENT] = ACTIONS(5312), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5312), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_EQ] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5312), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2199] = { - [anon_sym_RBRACE] = ACTIONS(5310), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2200] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5326), - [sym_comment] = ACTIONS(53), - }, - [2201] = { [sym_concatenation] = STATE(2210), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2210), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5328), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5328), - [anon_sym_POUND] = ACTIONS(5330), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5328), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5332), - [anon_sym_EQ] = ACTIONS(5328), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5328), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5318), + [anon_sym_PERCENT] = ACTIONS(5318), + [anon_sym_COLON] = ACTIONS(5318), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5318), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5320), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5318), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [2201] = { + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2202] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5332), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(2209), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2209), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_PERCENT] = ACTIONS(5312), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5312), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5314), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_EQ] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5312), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5324), + [sym_word] = ACTIONS(659), }, [2203] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5334), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(2213), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2213), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5326), + [anon_sym_PERCENT] = ACTIONS(5326), + [anon_sym_COLON] = ACTIONS(5326), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5326), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5326), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5332), + [sym_word] = ACTIONS(659), }, [2204] = { - [sym_concatenation] = STATE(2211), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2211), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5336), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5336), - [anon_sym_POUND] = ACTIONS(5338), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5336), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5334), - [anon_sym_EQ] = ACTIONS(5336), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5336), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2205] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(5334), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(2214), + [sym_concatenation] = STATE(2215), + [sym_string] = STATE(2214), + [sym_command_substitution] = STATE(2214), + [sym_process_substitution] = STATE(2214), + [aux_sym__literal_repeat1] = STATE(2216), + [sym_simple_expansion] = STATE(2214), + [sym_arithmetic_expansion] = STATE(2214), + [sym_string_expansion] = STATE(2214), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5334), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5334), + [sym_number] = ACTIONS(5336), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5336), }, [2206] = { - [anon_sym_RBRACE] = ACTIONS(5334), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(5316), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [2207] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5340), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5316), }, [2208] = { - [sym_concatenation] = STATE(2212), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2212), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5342), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5342), - [anon_sym_POUND] = ACTIONS(5344), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5342), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5346), - [anon_sym_EQ] = ACTIONS(5342), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5342), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(5338), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [2209] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5346), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2210] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5348), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2211] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5350), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_concatenation] = STATE(2217), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2217), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5344), + [anon_sym_PERCENT] = ACTIONS(5344), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5344), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5346), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_EQ] = ACTIONS(5344), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5344), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2212] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), + [sym_concatenation] = STATE(2218), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2218), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5348), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5348), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5350), [anon_sym_RBRACE] = ACTIONS(5352), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(5348), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5348), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2213] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2216), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5354), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5356), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2214] = { - [sym_string] = STATE(1191), - [anon_sym_0] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3052), - [aux_sym__simple_variable_name_token1] = ACTIONS(3010), - [anon_sym__] = ACTIONS(3010), - [sym_comment] = ACTIONS(3), - [sym_raw_string] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_AT] = ACTIONS(3052), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(5340), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [2215] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(5358), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5340), }, [2216] = { - [sym_expansion] = STATE(48), - [sym_command_substitution] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5358), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5360), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(5354), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [2217] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5362), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2218] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(5364), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2219] = { - [anon_sym_RPAREN] = ACTIONS(5364), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2225), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5360), + [anon_sym_DQUOTE] = ACTIONS(5362), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2220] = { - [anon_sym_RPAREN] = ACTIONS(5366), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1197), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_DOLLAR] = ACTIONS(5366), + [anon_sym_AT] = ACTIONS(5364), + [anon_sym_DQUOTE] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(5366), + [anon_sym_BANG] = ACTIONS(5366), + [anon_sym_0] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(5366), + [anon_sym__] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(5364), + [sym_raw_string] = ACTIONS(5368), }, [2221] = { - [sym_expansion] = STATE(1198), - [sym_string] = STATE(1198), - [sym_command_substitution] = STATE(1198), - [sym_process_substitution] = STATE(1198), - [sym_simple_expansion] = STATE(1198), - [sym_arithmetic_expansion] = STATE(1198), - [sym_string_expansion] = STATE(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(3001), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(3001), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(3003), - [sym__special_character] = ACTIONS(3003), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(3003), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_expansion] = STATE(1200), + [sym_string_expansion] = STATE(1200), + [sym_simple_expansion] = STATE(1200), + [sym_string] = STATE(1200), + [sym_command_substitution] = STATE(1200), + [sym_process_substitution] = STATE(1200), + [sym_arithmetic_expansion] = STATE(1200), + [sym_number] = ACTIONS(3007), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(1088), + [anon_sym_LT_LPAREN] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym_ansii_c_string] = ACTIONS(3009), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1094), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1098), + [sym__special_character] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1104), + [anon_sym_BQUOTE] = ACTIONS(1102), + [sym_word] = ACTIONS(3007), }, [2222] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2227), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2227), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5368), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5368), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5368), - [anon_sym_POUND] = ACTIONS(5370), - [anon_sym_DASH] = ACTIONS(5368), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5368), - [anon_sym_RBRACE] = ACTIONS(5372), - [anon_sym_PERCENT] = ACTIONS(5368), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5374), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(5370), }, [2223] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2232), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2232), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5376), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5376), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5376), - [anon_sym_POUND] = ACTIONS(5378), - [anon_sym_DASH] = ACTIONS(5376), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5376), - [anon_sym_RBRACE] = ACTIONS(5380), - [anon_sym_PERCENT] = ACTIONS(5376), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5382), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5372), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [2224] = { - [anon_sym_BQUOTE] = ACTIONS(5384), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5374), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2225] = { - [anon_sym_0] = ACTIONS(433), - [sym__string_content] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(5386), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5376), + [anon_sym_DQUOTE] = ACTIONS(5374), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2226] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2234), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2234), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5388), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5388), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5388), - [anon_sym_POUND] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5388), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5388), - [anon_sym_RBRACE] = ACTIONS(5392), - [anon_sym_PERCENT] = ACTIONS(5388), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5394), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5378), }, [2227] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5392), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_raw_string] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(5380), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2228] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2234), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2234), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5388), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5388), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5388), - [anon_sym_POUND] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5388), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5388), - [anon_sym_RBRACE] = ACTIONS(5392), - [anon_sym_PERCENT] = ACTIONS(5388), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5396), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5380), }, [2229] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2238), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2238), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5398), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5398), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5398), - [anon_sym_POUND] = ACTIONS(5400), - [anon_sym_DASH] = ACTIONS(5398), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5398), - [anon_sym_RBRACE] = ACTIONS(5402), - [anon_sym_PERCENT] = ACTIONS(5398), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5404), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(2233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5382), + [anon_sym_PERCENT] = ACTIONS(5382), + [anon_sym_COLON] = ACTIONS(5382), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5384), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5382), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5386), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_EQ] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5382), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2230] = { - [sym_expansion] = STATE(2239), - [sym_concatenation] = STATE(2240), - [sym_string] = STATE(2239), - [sym_command_substitution] = STATE(2239), - [sym_process_substitution] = STATE(2239), - [aux_sym__literal_repeat1] = STATE(2241), - [sym_simple_expansion] = STATE(2239), - [sym_arithmetic_expansion] = STATE(2239), - [sym_string_expansion] = STATE(2239), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5392), - [sym_word] = ACTIONS(5406), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5408), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5408), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_concatenation] = STATE(2235), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2235), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5390), + [anon_sym_PERCENT] = ACTIONS(5390), + [anon_sym_COLON] = ACTIONS(5390), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5392), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5390), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5394), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_EQ] = ACTIONS(5390), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5390), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2231] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2243), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2243), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5410), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5410), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5410), - [anon_sym_POUND] = ACTIONS(5412), - [anon_sym_DASH] = ACTIONS(5410), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(5414), - [anon_sym_PERCENT] = ACTIONS(5410), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5416), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5398), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2232] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5414), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(2240), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2240), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5400), + [anon_sym_PERCENT] = ACTIONS(5400), + [anon_sym_COLON] = ACTIONS(5400), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5400), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5402), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_EQ] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5400), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5406), + [sym_word] = ACTIONS(659), }, [2233] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2244), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2244), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5418), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5418), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5418), - [anon_sym_POUND] = ACTIONS(5420), - [anon_sym_DASH] = ACTIONS(5418), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5418), - [anon_sym_RBRACE] = ACTIONS(5422), - [anon_sym_PERCENT] = ACTIONS(5418), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2234] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5422), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(2242), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2242), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5408), + [anon_sym_PERCENT] = ACTIONS(5408), + [anon_sym_COLON] = ACTIONS(5408), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5408), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(5412), + [anon_sym_EQ] = ACTIONS(5408), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5408), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5414), + [sym_word] = ACTIONS(659), }, [2235] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2244), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2244), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5418), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5418), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5418), - [anon_sym_POUND] = ACTIONS(5420), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5412), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [2236] = { + [sym_concatenation] = STATE(2240), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2240), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5400), + [anon_sym_PERCENT] = ACTIONS(5400), + [anon_sym_COLON] = ACTIONS(5400), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5416), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5400), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5402), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_EQ] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5400), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [2237] = { + [sym_concatenation] = STATE(2245), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2245), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(5418), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5418), - [anon_sym_RBRACE] = ACTIONS(5422), [anon_sym_PERCENT] = ACTIONS(5418), + [anon_sym_COLON] = ACTIONS(5418), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(5420), + [sym_number] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5424), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5418), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5422), + [anon_sym_RBRACE] = ACTIONS(5424), + [anon_sym_EQ] = ACTIONS(5418), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5418), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, - [2236] = { - [sym_expansion] = STATE(2246), - [sym_concatenation] = STATE(2247), - [sym_string] = STATE(2246), - [sym_command_substitution] = STATE(2246), - [sym_process_substitution] = STATE(2246), - [aux_sym__literal_repeat1] = STATE(2248), - [sym_simple_expansion] = STATE(2246), - [sym_arithmetic_expansion] = STATE(2246), - [sym_string_expansion] = STATE(2246), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5422), - [sym_word] = ACTIONS(5426), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5428), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5428), - [anon_sym_DOLLAR] = ACTIONS(1084), + [2238] = { + [sym_expansion] = STATE(2247), + [sym_concatenation] = STATE(2248), + [sym_string] = STATE(2247), + [sym_command_substitution] = STATE(2247), + [sym_process_substitution] = STATE(2247), + [aux_sym__literal_repeat1] = STATE(2249), + [sym_simple_expansion] = STATE(2247), + [sym_arithmetic_expansion] = STATE(2247), + [sym_string_expansion] = STATE(2247), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5426), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5426), + [sym_number] = ACTIONS(5428), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5428), }, - [2237] = { - [sym_expansion] = STATE(141), + [2239] = { [sym_concatenation] = STATE(2250), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2250), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5430), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5430), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5430), - [anon_sym_POUND] = ACTIONS(5432), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(5430), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5430), - [anon_sym_RBRACE] = ACTIONS(5434), [anon_sym_PERCENT] = ACTIONS(5430), + [anon_sym_COLON] = ACTIONS(5430), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5436), - }, - [2238] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5430), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5432), [anon_sym_RBRACE] = ACTIONS(5434), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - }, - [2239] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(5422), - [sym__concat] = ACTIONS(1422), + [anon_sym_EQ] = ACTIONS(5430), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5430), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2240] = { - [anon_sym_RBRACE] = ACTIONS(5422), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5434), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2241] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5438), - }, - [2242] = { - [sym_expansion] = STATE(141), [sym_concatenation] = STATE(2251), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2251), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5440), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5440), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5440), - [anon_sym_POUND] = ACTIONS(5442), - [anon_sym_DASH] = ACTIONS(5440), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5440), - [anon_sym_RBRACE] = ACTIONS(5444), - [anon_sym_PERCENT] = ACTIONS(5440), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5436), + [anon_sym_PERCENT] = ACTIONS(5436), + [anon_sym_COLON] = ACTIONS(5436), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5436), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5438), + [anon_sym_RBRACE] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(5436), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5436), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), + }, + [2242] = { + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2243] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5444), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(2250), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2250), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5430), + [anon_sym_PERCENT] = ACTIONS(5430), + [anon_sym_COLON] = ACTIONS(5430), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5430), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(5434), + [anon_sym_EQ] = ACTIONS(5430), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5430), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5442), + [sym_word] = ACTIONS(659), }, [2244] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5446), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(2254), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2254), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5444), + [anon_sym_PERCENT] = ACTIONS(5444), + [anon_sym_COLON] = ACTIONS(5444), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5444), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5446), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_EQ] = ACTIONS(5444), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5444), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_regex] = ACTIONS(5450), + [sym_word] = ACTIONS(659), }, [2245] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2252), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2252), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5448), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5448), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5448), - [anon_sym_POUND] = ACTIONS(5450), - [anon_sym_DASH] = ACTIONS(5448), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5448), - [anon_sym_RBRACE] = ACTIONS(5446), - [anon_sym_PERCENT] = ACTIONS(5448), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2246] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(5446), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2255), + [sym_concatenation] = STATE(2256), + [sym_string] = STATE(2255), + [sym_command_substitution] = STATE(2255), + [sym_process_substitution] = STATE(2255), + [aux_sym__literal_repeat1] = STATE(2257), + [sym_simple_expansion] = STATE(2255), + [sym_arithmetic_expansion] = STATE(2255), + [sym_string_expansion] = STATE(2255), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5452), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5434), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5452), + [sym_number] = ACTIONS(5454), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5454), }, [2247] = { - [anon_sym_RBRACE] = ACTIONS(5446), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(5434), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [2248] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5452), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5434), }, [2249] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2253), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2253), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5454), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5454), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5454), - [anon_sym_POUND] = ACTIONS(5456), - [anon_sym_DASH] = ACTIONS(5454), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5454), - [anon_sym_RBRACE] = ACTIONS(5458), - [anon_sym_PERCENT] = ACTIONS(5454), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(5456), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [2250] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), [anon_sym_RBRACE] = ACTIONS(5458), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2251] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), [anon_sym_RBRACE] = ACTIONS(5460), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2252] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5462), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(2258), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2258), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5462), + [anon_sym_PERCENT] = ACTIONS(5462), + [anon_sym_COLON] = ACTIONS(5462), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5462), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5464), + [anon_sym_RBRACE] = ACTIONS(5458), + [anon_sym_EQ] = ACTIONS(5462), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5462), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2253] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5464), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_concatenation] = STATE(2259), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2259), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(5466), + [anon_sym_PERCENT] = ACTIONS(5466), + [anon_sym_COLON] = ACTIONS(5466), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(5466), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_EQ] = ACTIONS(5466), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(5466), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2254] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2257), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5466), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5468), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2255] = { - [sym_string] = STATE(1224), - [anon_sym_POUND] = ACTIONS(5470), - [anon_sym_0] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(5472), - [aux_sym__simple_variable_name_token1] = ACTIONS(3032), - [anon_sym__] = ACTIONS(3032), - [anon_sym_BANG] = ACTIONS(5470), - [anon_sym_DQUOTE] = ACTIONS(1160), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(5472), - [anon_sym_DASH] = ACTIONS(5470), - [sym_raw_string] = ACTIONS(5474), - [anon_sym_DOLLAR] = ACTIONS(5470), - [anon_sym_AT] = ACTIONS(5472), + [aux_sym_concatenation_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(5458), + [sym__concat] = ACTIONS(1502), + [sym_comment] = ACTIONS(23), }, [2256] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5476), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5458), }, [2257] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5476), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5478), + [aux_sym__literal_repeat1] = STATE(1232), + [anon_sym_RBRACE] = ACTIONS(5472), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(1506), }, [2258] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5480), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2259] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(5482), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [sym__special_character] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(5476), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [sym_word] = ACTIONS(659), }, [2260] = { - [anon_sym_RPAREN] = ACTIONS(5482), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2266), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5478), + [anon_sym_DQUOTE] = ACTIONS(5480), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2261] = { - [anon_sym_RPAREN] = ACTIONS(5484), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1230), + [anon_sym_QMARK] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [anon_sym_AT] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(1180), + [anon_sym_POUND] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_0] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym__] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3036), + [sym_raw_string] = ACTIONS(3042), }, [2262] = { - [sym_expansion] = STATE(1231), - [sym_string_expansion] = STATE(1231), - [sym_simple_expansion] = STATE(1231), - [sym_string] = STATE(1231), - [sym_command_substitution] = STATE(1231), - [sym_process_substitution] = STATE(1231), - [sym_arithmetic_expansion] = STATE(1231), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1152), - [sym_number] = ACTIONS(3023), - [sym__special_character] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1162), - [anon_sym_BQUOTE] = ACTIONS(1168), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), - [sym_word] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(1152), - [anon_sym_DOLLAR] = ACTIONS(1170), - [sym_ansii_c_string] = ACTIONS(3025), + [sym_expansion] = STATE(1233), + [sym_string_expansion] = STATE(1233), + [sym_simple_expansion] = STATE(1233), + [sym_string] = STATE(1233), + [sym_command_substitution] = STATE(1233), + [sym_process_substitution] = STATE(1233), + [sym_arithmetic_expansion] = STATE(1233), + [sym_number] = ACTIONS(3027), + [sym_raw_string] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym_ansii_c_string] = ACTIONS(3029), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [sym__special_character] = ACTIONS(3029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_word] = ACTIONS(3027), }, [2263] = { - [sym_concatenation] = STATE(2268), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2268), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5486), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5486), - [anon_sym_POUND] = ACTIONS(5488), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5486), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5490), - [anon_sym_EQ] = ACTIONS(5486), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5486), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5492), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(5482), }, [2264] = { - [sym_concatenation] = STATE(2273), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2273), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5494), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5494), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5494), - [anon_sym_POUND] = ACTIONS(5496), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5494), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5498), - [anon_sym_EQ] = ACTIONS(5494), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5494), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5500), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5484), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [2265] = { - [anon_sym_BQUOTE] = ACTIONS(5502), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5486), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2266] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5504), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5488), + [anon_sym_DQUOTE] = ACTIONS(5486), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2267] = { - [sym_concatenation] = STATE(2275), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2275), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5506), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5506), - [anon_sym_POUND] = ACTIONS(5508), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5506), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5510), - [anon_sym_EQ] = ACTIONS(5506), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5506), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5512), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5490), }, [2268] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5510), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(5492), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2269] = { - [sym_concatenation] = STATE(2275), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2275), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5506), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5506), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5506), - [anon_sym_POUND] = ACTIONS(5508), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5506), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5510), - [anon_sym_EQ] = ACTIONS(5506), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5506), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5514), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5492), }, [2270] = { - [sym_concatenation] = STATE(2279), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2279), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5516), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5516), - [anon_sym_POUND] = ACTIONS(5518), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5516), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5520), - [anon_sym_EQ] = ACTIONS(5516), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5516), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5522), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2274), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2274), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5494), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5496), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_PERCENT] = ACTIONS(5494), + [anon_sym_EQ] = ACTIONS(5494), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5494), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5500), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5494), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2271] = { - [sym_expansion] = STATE(2280), - [sym_concatenation] = STATE(2281), - [sym_string] = STATE(2280), - [sym_command_substitution] = STATE(2280), - [sym_process_substitution] = STATE(2280), - [aux_sym__literal_repeat1] = STATE(2282), - [sym_simple_expansion] = STATE(2280), - [sym_arithmetic_expansion] = STATE(2280), - [sym_string_expansion] = STATE(2280), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5510), - [sym_word] = ACTIONS(5524), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5526), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5526), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2276), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2276), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5502), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5504), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5506), + [anon_sym_DASH] = ACTIONS(5502), + [anon_sym_PERCENT] = ACTIONS(5502), + [anon_sym_EQ] = ACTIONS(5502), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5502), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5508), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5502), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2272] = { - [sym_concatenation] = STATE(2284), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2284), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5528), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5528), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5528), - [anon_sym_POUND] = ACTIONS(5530), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5528), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5532), - [anon_sym_EQ] = ACTIONS(5528), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5528), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5534), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5510), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2273] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5532), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2281), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2281), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5512), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5514), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_PERCENT] = ACTIONS(5512), + [anon_sym_EQ] = ACTIONS(5512), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5512), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5512), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5518), + [sym_word] = ACTIONS(659), }, [2274] = { - [sym_concatenation] = STATE(2285), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2285), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5536), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5536), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5536), - [anon_sym_POUND] = ACTIONS(5538), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5536), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5540), - [anon_sym_EQ] = ACTIONS(5536), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5536), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2275] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5540), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2283), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2283), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5520), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5522), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5524), + [anon_sym_DASH] = ACTIONS(5520), + [anon_sym_PERCENT] = ACTIONS(5520), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5520), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5520), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5526), + [sym_word] = ACTIONS(659), }, [2276] = { - [sym_concatenation] = STATE(2285), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2285), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5536), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5536), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5536), - [anon_sym_POUND] = ACTIONS(5538), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5536), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5540), - [anon_sym_EQ] = ACTIONS(5536), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5536), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5542), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5524), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2277] = { - [sym_expansion] = STATE(2287), - [sym_concatenation] = STATE(2288), - [sym_string] = STATE(2287), - [sym_command_substitution] = STATE(2287), - [sym_process_substitution] = STATE(2287), - [aux_sym__literal_repeat1] = STATE(2289), - [sym_simple_expansion] = STATE(2287), - [sym_arithmetic_expansion] = STATE(2287), - [sym_string_expansion] = STATE(2287), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5540), - [sym_word] = ACTIONS(5544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5546), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5546), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2281), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2281), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5512), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5514), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5512), + [anon_sym_PERCENT] = ACTIONS(5512), + [anon_sym_EQ] = ACTIONS(5512), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5512), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5528), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5512), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2278] = { - [sym_concatenation] = STATE(2291), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2291), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5548), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5548), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5548), - [anon_sym_POUND] = ACTIONS(5550), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5548), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5552), - [anon_sym_EQ] = ACTIONS(5548), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [sym_regex] = ACTIONS(5554), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2286), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2286), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5530), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5532), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5530), + [anon_sym_PERCENT] = ACTIONS(5530), + [anon_sym_EQ] = ACTIONS(5530), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5530), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5530), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2279] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5552), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(2288), + [sym_concatenation] = STATE(2289), + [sym_string] = STATE(2288), + [sym_command_substitution] = STATE(2288), + [sym_process_substitution] = STATE(2288), + [aux_sym__literal_repeat1] = STATE(2290), + [sym_simple_expansion] = STATE(2288), + [sym_arithmetic_expansion] = STATE(2288), + [sym_string_expansion] = STATE(2288), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5538), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5538), + [sym_number] = ACTIONS(5540), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5540), }, [2280] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(5540), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2291), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2291), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5542), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5544), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_PERCENT] = ACTIONS(5542), + [anon_sym_EQ] = ACTIONS(5542), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5542), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5542), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2281] = { - [anon_sym_RBRACE] = ACTIONS(5540), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2282] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5556), - [sym_comment] = ACTIONS(53), - }, - [2283] = { + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(2292), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2292), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5558), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5558), - [anon_sym_POUND] = ACTIONS(5560), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5558), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5562), - [anon_sym_EQ] = ACTIONS(5558), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5558), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5548), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5550), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5552), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_PERCENT] = ACTIONS(5548), + [anon_sym_EQ] = ACTIONS(5548), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5548), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5548), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2283] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5552), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2284] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5562), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2291), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2291), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5542), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5544), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_PERCENT] = ACTIONS(5542), + [anon_sym_EQ] = ACTIONS(5542), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5542), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5542), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5554), + [sym_word] = ACTIONS(659), }, [2285] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5564), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2295), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2295), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5556), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5558), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5560), + [anon_sym_DASH] = ACTIONS(5556), + [anon_sym_PERCENT] = ACTIONS(5556), + [anon_sym_EQ] = ACTIONS(5556), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5556), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5556), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5562), + [sym_word] = ACTIONS(659), }, [2286] = { - [sym_concatenation] = STATE(2293), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2293), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5566), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5566), - [anon_sym_POUND] = ACTIONS(5568), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5566), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5564), - [anon_sym_EQ] = ACTIONS(5566), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5566), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5560), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2287] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [anon_sym_RBRACE] = ACTIONS(5564), - [sym__concat] = ACTIONS(1422), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(2296), + [sym_concatenation] = STATE(2297), + [sym_string] = STATE(2296), + [sym_command_substitution] = STATE(2296), + [sym_process_substitution] = STATE(2296), + [aux_sym__literal_repeat1] = STATE(2298), + [sym_simple_expansion] = STATE(2296), + [sym_arithmetic_expansion] = STATE(2296), + [sym_string_expansion] = STATE(2296), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5564), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5564), + [sym_number] = ACTIONS(5566), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5566), }, [2288] = { - [anon_sym_RBRACE] = ACTIONS(5564), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5546), + [sym__concat] = ACTIONS(1502), }, [2289] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5570), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5546), }, [2290] = { - [sym_concatenation] = STATE(2294), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2294), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(5572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(5572), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5572), - [anon_sym_POUND] = ACTIONS(5574), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(5572), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5576), - [anon_sym_EQ] = ACTIONS(5572), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(5572), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5568), + [sym__special_character] = ACTIONS(1506), }, [2291] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5576), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2292] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5578), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5572), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2293] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(5580), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2299), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2299), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5574), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5576), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5574), + [anon_sym_PERCENT] = ACTIONS(5574), + [anon_sym_EQ] = ACTIONS(5574), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5574), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5574), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2294] = { - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [sym_word] = ACTIONS(545), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2300), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2300), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5578), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5580), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(5582), - [anon_sym_EQ] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(5578), + [anon_sym_PERCENT] = ACTIONS(5578), + [anon_sym_EQ] = ACTIONS(5578), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5578), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5578), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2295] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2298), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5584), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5586), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5582), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2296] = { - [sym_string] = STATE(1257), - [anon_sym_POUND] = ACTIONS(5588), - [anon_sym_0] = ACTIONS(3102), - [anon_sym_QMARK] = ACTIONS(5590), - [aux_sym__simple_variable_name_token1] = ACTIONS(3102), - [anon_sym__] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(5588), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(5590), - [anon_sym_DASH] = ACTIONS(5588), - [sym_raw_string] = ACTIONS(5592), - [anon_sym_DOLLAR] = ACTIONS(5588), - [anon_sym_AT] = ACTIONS(5590), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5570), + [sym__concat] = ACTIONS(1502), }, [2297] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5594), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5570), }, [2298] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5594), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5596), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5584), + [sym__special_character] = ACTIONS(1506), }, [2299] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5598), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5586), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2300] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(5600), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5588), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2301] = { - [anon_sym_RPAREN] = ACTIONS(5600), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2307), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5590), + [anon_sym_DQUOTE] = ACTIONS(5592), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2302] = { - [anon_sym_RPAREN] = ACTIONS(5602), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1263), + [anon_sym_QMARK] = ACTIONS(5594), + [anon_sym_DOLLAR] = ACTIONS(5596), + [anon_sym_AT] = ACTIONS(5594), + [anon_sym_DQUOTE] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(5596), + [anon_sym_BANG] = ACTIONS(5596), + [anon_sym_0] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(5596), + [anon_sym__] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(5594), + [sym_raw_string] = ACTIONS(5598), }, [2303] = { - [sym_expansion] = STATE(1264), - [sym_string_expansion] = STATE(1264), - [sym_simple_expansion] = STATE(1264), - [sym_string] = STATE(1264), - [sym_command_substitution] = STATE(1264), - [sym_process_substitution] = STATE(1264), - [sym_arithmetic_expansion] = STATE(1264), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(1800), - [sym_number] = ACTIONS(3043), - [sym__special_character] = ACTIONS(3045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1796), - [anon_sym_BQUOTE] = ACTIONS(1820), - [sym_raw_string] = ACTIONS(3045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), - [sym_word] = ACTIONS(3043), - [anon_sym_LT_LPAREN] = ACTIONS(1800), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_ansii_c_string] = ACTIONS(3045), + [sym_expansion] = STATE(1266), + [sym_string_expansion] = STATE(1266), + [sym_simple_expansion] = STATE(1266), + [sym_string] = STATE(1266), + [sym_command_substitution] = STATE(1266), + [sym_process_substitution] = STATE(1266), + [sym_arithmetic_expansion] = STATE(1266), + [sym_number] = ACTIONS(3049), + [sym_raw_string] = ACTIONS(3051), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_LT_LPAREN] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1812), + [sym_ansii_c_string] = ACTIONS(3051), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1824), + [sym__special_character] = ACTIONS(3051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1826), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1810), + [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_word] = ACTIONS(3049), }, [2304] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2309), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2309), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5604), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5604), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5604), - [anon_sym_POUND] = ACTIONS(5606), - [anon_sym_DASH] = ACTIONS(5604), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5604), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_PERCENT] = ACTIONS(5604), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5610), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(5600), }, [2305] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2314), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2314), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5612), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5612), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5612), - [anon_sym_POUND] = ACTIONS(5614), - [anon_sym_DASH] = ACTIONS(5612), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5612), - [anon_sym_RBRACE] = ACTIONS(5616), - [anon_sym_PERCENT] = ACTIONS(5612), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5618), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5602), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [2306] = { - [anon_sym_BQUOTE] = ACTIONS(5620), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5604), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2307] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5622), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5606), + [anon_sym_DQUOTE] = ACTIONS(5604), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2308] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2316), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2316), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5624), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5624), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5624), - [anon_sym_POUND] = ACTIONS(5626), - [anon_sym_DASH] = ACTIONS(5624), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5624), - [anon_sym_RBRACE] = ACTIONS(5628), - [anon_sym_PERCENT] = ACTIONS(5624), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5630), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5608), }, [2309] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5628), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(5610), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2310] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2316), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2316), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5624), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5624), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5624), - [anon_sym_POUND] = ACTIONS(5626), - [anon_sym_DASH] = ACTIONS(5624), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5624), - [anon_sym_RBRACE] = ACTIONS(5628), - [anon_sym_PERCENT] = ACTIONS(5624), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5632), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5610), }, [2311] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2320), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2320), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5634), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5634), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5634), - [anon_sym_POUND] = ACTIONS(5636), - [anon_sym_DASH] = ACTIONS(5634), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5634), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_PERCENT] = ACTIONS(5634), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5640), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2315), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2315), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5612), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5614), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5612), + [anon_sym_PERCENT] = ACTIONS(5612), + [anon_sym_EQ] = ACTIONS(5612), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5612), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5618), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5612), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2312] = { - [sym_expansion] = STATE(2321), - [sym_concatenation] = STATE(2322), - [sym_string] = STATE(2321), - [sym_command_substitution] = STATE(2321), - [sym_process_substitution] = STATE(2321), - [aux_sym__literal_repeat1] = STATE(2323), - [sym_simple_expansion] = STATE(2321), - [sym_arithmetic_expansion] = STATE(2321), - [sym_string_expansion] = STATE(2321), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5642), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5628), - [sym_word] = ACTIONS(5642), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5644), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5644), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2317), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2317), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5620), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5622), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5620), + [anon_sym_PERCENT] = ACTIONS(5620), + [anon_sym_EQ] = ACTIONS(5620), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5620), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5626), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5620), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2313] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2325), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2325), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5646), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5646), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5646), - [anon_sym_POUND] = ACTIONS(5648), - [anon_sym_DASH] = ACTIONS(5646), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5646), - [anon_sym_RBRACE] = ACTIONS(5650), - [anon_sym_PERCENT] = ACTIONS(5646), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5652), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5628), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2314] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5650), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2322), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2322), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5630), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5632), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_PERCENT] = ACTIONS(5630), + [anon_sym_EQ] = ACTIONS(5630), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5630), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5630), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5636), + [sym_word] = ACTIONS(659), }, [2315] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2326), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2326), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5654), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5654), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5654), - [anon_sym_POUND] = ACTIONS(5656), - [anon_sym_DASH] = ACTIONS(5654), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5654), - [anon_sym_RBRACE] = ACTIONS(5658), - [anon_sym_PERCENT] = ACTIONS(5654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2316] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5658), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2324), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2324), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5638), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5640), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_PERCENT] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5638), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5638), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5638), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5644), + [sym_word] = ACTIONS(659), }, [2317] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2326), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2326), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5654), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5654), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5654), - [anon_sym_POUND] = ACTIONS(5656), - [anon_sym_DASH] = ACTIONS(5654), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5654), - [anon_sym_RBRACE] = ACTIONS(5658), - [anon_sym_PERCENT] = ACTIONS(5654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5660), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2318] = { - [sym_expansion] = STATE(2328), - [sym_concatenation] = STATE(2329), - [sym_string] = STATE(2328), - [sym_command_substitution] = STATE(2328), - [sym_process_substitution] = STATE(2328), - [aux_sym__literal_repeat1] = STATE(2330), - [sym_simple_expansion] = STATE(2328), - [sym_arithmetic_expansion] = STATE(2328), - [sym_string_expansion] = STATE(2328), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5662), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5658), - [sym_word] = ACTIONS(5662), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5664), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5664), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2322), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2322), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5630), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5632), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5634), + [anon_sym_DASH] = ACTIONS(5630), + [anon_sym_PERCENT] = ACTIONS(5630), + [anon_sym_EQ] = ACTIONS(5630), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5630), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5646), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5630), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2319] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2332), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2332), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5666), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5666), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5666), - [anon_sym_POUND] = ACTIONS(5668), - [anon_sym_DASH] = ACTIONS(5666), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5666), - [anon_sym_RBRACE] = ACTIONS(5670), - [anon_sym_PERCENT] = ACTIONS(5666), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5672), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2327), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2327), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5648), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5650), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5648), + [anon_sym_PERCENT] = ACTIONS(5648), + [anon_sym_EQ] = ACTIONS(5648), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5648), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5654), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5648), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2320] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5670), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(2329), + [sym_concatenation] = STATE(2330), + [sym_string] = STATE(2329), + [sym_command_substitution] = STATE(2329), + [sym_process_substitution] = STATE(2329), + [aux_sym__literal_repeat1] = STATE(2331), + [sym_simple_expansion] = STATE(2329), + [sym_arithmetic_expansion] = STATE(2329), + [sym_string_expansion] = STATE(2329), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5656), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5634), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5656), + [sym_number] = ACTIONS(5658), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5658), }, [2321] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(5658), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2332), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2332), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5660), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5662), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PERCENT] = ACTIONS(5660), + [anon_sym_EQ] = ACTIONS(5660), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5660), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5660), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2322] = { - [anon_sym_RBRACE] = ACTIONS(5658), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2323] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5674), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2333), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2333), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5666), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5668), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5666), + [anon_sym_EQ] = ACTIONS(5666), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5666), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5666), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2324] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2333), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2333), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5676), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5676), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5676), - [anon_sym_POUND] = ACTIONS(5678), - [anon_sym_DASH] = ACTIONS(5676), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5676), - [anon_sym_RBRACE] = ACTIONS(5680), - [anon_sym_PERCENT] = ACTIONS(5676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5670), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2325] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5680), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2332), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2332), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5660), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5662), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5664), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PERCENT] = ACTIONS(5660), + [anon_sym_EQ] = ACTIONS(5660), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5660), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5660), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5672), + [sym_word] = ACTIONS(659), }, [2326] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5682), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2336), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2336), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5674), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5676), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_PERCENT] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(5674), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5674), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5674), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5680), + [sym_word] = ACTIONS(659), }, [2327] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2334), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2334), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5684), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5684), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_POUND] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5684), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5682), - [anon_sym_PERCENT] = ACTIONS(5684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2328] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(5682), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2337), + [sym_concatenation] = STATE(2338), + [sym_string] = STATE(2337), + [sym_command_substitution] = STATE(2337), + [sym_process_substitution] = STATE(2337), + [aux_sym__literal_repeat1] = STATE(2339), + [sym_simple_expansion] = STATE(2337), + [sym_arithmetic_expansion] = STATE(2337), + [sym_string_expansion] = STATE(2337), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5682), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5664), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5682), + [sym_number] = ACTIONS(5684), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5684), }, [2329] = { - [anon_sym_RBRACE] = ACTIONS(5682), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5664), + [sym__concat] = ACTIONS(1502), }, [2330] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5688), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5664), }, [2331] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2335), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2335), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5690), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5690), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5690), - [anon_sym_POUND] = ACTIONS(5692), - [anon_sym_DASH] = ACTIONS(5690), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5690), - [anon_sym_RBRACE] = ACTIONS(5694), - [anon_sym_PERCENT] = ACTIONS(5690), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5686), + [sym__special_character] = ACTIONS(1506), }, [2332] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5694), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5688), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2333] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5696), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5690), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2334] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5698), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2340), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2340), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5692), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5694), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5688), + [anon_sym_DASH] = ACTIONS(5692), + [anon_sym_PERCENT] = ACTIONS(5692), + [anon_sym_EQ] = ACTIONS(5692), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5692), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5692), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2335] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2341), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2341), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5696), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5698), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(5700), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(5696), + [anon_sym_PERCENT] = ACTIONS(5696), + [anon_sym_EQ] = ACTIONS(5696), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5696), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5696), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2336] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2339), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5702), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5704), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5700), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2337] = { - [sym_string] = STATE(1290), - [anon_sym_POUND] = ACTIONS(5706), - [anon_sym_0] = ACTIONS(3134), - [anon_sym_QMARK] = ACTIONS(5708), - [aux_sym__simple_variable_name_token1] = ACTIONS(3134), - [anon_sym__] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(5706), - [anon_sym_DQUOTE] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(5708), - [anon_sym_DASH] = ACTIONS(5706), - [sym_raw_string] = ACTIONS(5710), - [anon_sym_DOLLAR] = ACTIONS(5706), - [anon_sym_AT] = ACTIONS(5708), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5688), + [sym__concat] = ACTIONS(1502), }, [2338] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5712), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5688), }, [2339] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5712), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5714), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5702), + [sym__special_character] = ACTIONS(1506), }, [2340] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5716), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5704), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2341] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(5718), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2342] = { - [anon_sym_RPAREN] = ACTIONS(5718), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2348), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5708), + [anon_sym_DQUOTE] = ACTIONS(5710), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2343] = { - [anon_sym_RPAREN] = ACTIONS(5720), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1296), + [anon_sym_QMARK] = ACTIONS(5712), + [anon_sym_DOLLAR] = ACTIONS(5714), + [anon_sym_AT] = ACTIONS(5712), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_POUND] = ACTIONS(5714), + [anon_sym_BANG] = ACTIONS(5714), + [anon_sym_0] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(5714), + [anon_sym__] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(5712), + [sym_raw_string] = ACTIONS(5716), }, [2344] = { - [sym_expansion] = STATE(1297), - [sym_string_expansion] = STATE(1297), - [sym_simple_expansion] = STATE(1297), - [sym_string] = STATE(1297), - [sym_command_substitution] = STATE(1297), - [sym_process_substitution] = STATE(1297), - [sym_arithmetic_expansion] = STATE(1297), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(3059), - [sym_number] = ACTIONS(3061), - [sym__special_character] = ACTIONS(3063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3069), - [anon_sym_BQUOTE] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(3063), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2542), - [sym_word] = ACTIONS(3061), - [anon_sym_LT_LPAREN] = ACTIONS(3059), - [anon_sym_DOLLAR] = ACTIONS(2550), - [sym_ansii_c_string] = ACTIONS(3063), + [sym_expansion] = STATE(1299), + [sym_string_expansion] = STATE(1299), + [sym_simple_expansion] = STATE(1299), + [sym_string] = STATE(1299), + [sym_command_substitution] = STATE(1299), + [sym_process_substitution] = STATE(1299), + [sym_arithmetic_expansion] = STATE(1299), + [sym_number] = ACTIONS(3065), + [sym_raw_string] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(2560), + [anon_sym_LT_LPAREN] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(3073), + [sym_ansii_c_string] = ACTIONS(3067), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(3071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2562), + [sym__special_character] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3075), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3077), + [anon_sym_BQUOTE] = ACTIONS(3079), + [sym_word] = ACTIONS(3065), }, [2345] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2350), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2350), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5722), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5722), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5722), - [anon_sym_POUND] = ACTIONS(5724), - [anon_sym_DASH] = ACTIONS(5722), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5722), - [anon_sym_RBRACE] = ACTIONS(5726), - [anon_sym_PERCENT] = ACTIONS(5722), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5728), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(5718), }, [2346] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2355), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2355), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5730), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5730), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5730), - [anon_sym_POUND] = ACTIONS(5732), - [anon_sym_DASH] = ACTIONS(5730), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5730), - [anon_sym_RBRACE] = ACTIONS(5734), - [anon_sym_PERCENT] = ACTIONS(5730), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5736), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5720), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [2347] = { - [anon_sym_BQUOTE] = ACTIONS(5738), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5722), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2348] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5740), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5724), + [anon_sym_DQUOTE] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2349] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2357), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2357), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5742), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5742), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5742), - [anon_sym_POUND] = ACTIONS(5744), - [anon_sym_DASH] = ACTIONS(5742), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5742), - [anon_sym_RBRACE] = ACTIONS(5746), - [anon_sym_PERCENT] = ACTIONS(5742), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5748), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5726), }, [2350] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5746), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(5728), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2351] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2357), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2357), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5742), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5742), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5742), - [anon_sym_POUND] = ACTIONS(5744), - [anon_sym_DASH] = ACTIONS(5742), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5742), - [anon_sym_RBRACE] = ACTIONS(5746), - [anon_sym_PERCENT] = ACTIONS(5742), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5750), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5728), }, [2352] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2361), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2361), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5752), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5752), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_POUND] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5752), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5756), - [anon_sym_PERCENT] = ACTIONS(5752), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5758), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2356), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2356), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5730), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5732), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_DASH] = ACTIONS(5730), + [anon_sym_PERCENT] = ACTIONS(5730), + [anon_sym_EQ] = ACTIONS(5730), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5730), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5736), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5730), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2353] = { - [sym_expansion] = STATE(2362), - [sym_concatenation] = STATE(2363), - [sym_string] = STATE(2362), - [sym_command_substitution] = STATE(2362), - [sym_process_substitution] = STATE(2362), - [aux_sym__literal_repeat1] = STATE(2364), - [sym_simple_expansion] = STATE(2362), - [sym_arithmetic_expansion] = STATE(2362), - [sym_string_expansion] = STATE(2362), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5746), - [sym_word] = ACTIONS(5760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5762), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5762), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2358), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2358), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5738), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5740), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5742), + [anon_sym_DASH] = ACTIONS(5738), + [anon_sym_PERCENT] = ACTIONS(5738), + [anon_sym_EQ] = ACTIONS(5738), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5738), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5744), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5738), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2354] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2366), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2366), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5764), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5764), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5764), - [anon_sym_POUND] = ACTIONS(5766), - [anon_sym_DASH] = ACTIONS(5764), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(5768), - [anon_sym_PERCENT] = ACTIONS(5764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5770), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5746), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2355] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5768), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2363), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2363), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5748), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5750), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5752), + [anon_sym_DASH] = ACTIONS(5748), + [anon_sym_PERCENT] = ACTIONS(5748), + [anon_sym_EQ] = ACTIONS(5748), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5748), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5748), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5754), + [sym_word] = ACTIONS(659), }, [2356] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2367), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2367), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5772), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5772), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5772), - [anon_sym_POUND] = ACTIONS(5774), - [anon_sym_DASH] = ACTIONS(5772), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5772), - [anon_sym_RBRACE] = ACTIONS(5776), - [anon_sym_PERCENT] = ACTIONS(5772), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5752), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2357] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5776), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2365), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2365), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5756), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5758), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5760), + [anon_sym_DASH] = ACTIONS(5756), + [anon_sym_PERCENT] = ACTIONS(5756), + [anon_sym_EQ] = ACTIONS(5756), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5756), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5756), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5762), + [sym_word] = ACTIONS(659), }, [2358] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2367), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2367), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5772), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5772), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5772), - [anon_sym_POUND] = ACTIONS(5774), - [anon_sym_DASH] = ACTIONS(5772), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5772), - [anon_sym_RBRACE] = ACTIONS(5776), - [anon_sym_PERCENT] = ACTIONS(5772), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5778), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5760), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2359] = { - [sym_expansion] = STATE(2369), - [sym_concatenation] = STATE(2370), - [sym_string] = STATE(2369), - [sym_command_substitution] = STATE(2369), - [sym_process_substitution] = STATE(2369), - [aux_sym__literal_repeat1] = STATE(2371), - [sym_simple_expansion] = STATE(2369), - [sym_arithmetic_expansion] = STATE(2369), - [sym_string_expansion] = STATE(2369), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5776), - [sym_word] = ACTIONS(5780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5782), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5782), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2363), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2363), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5748), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5750), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5752), + [anon_sym_DASH] = ACTIONS(5748), + [anon_sym_PERCENT] = ACTIONS(5748), + [anon_sym_EQ] = ACTIONS(5748), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5748), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5764), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5748), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2360] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2373), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2373), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5784), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5784), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5784), - [anon_sym_POUND] = ACTIONS(5786), - [anon_sym_DASH] = ACTIONS(5784), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5784), - [anon_sym_RBRACE] = ACTIONS(5788), - [anon_sym_PERCENT] = ACTIONS(5784), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5790), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2368), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2368), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5766), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5768), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_PERCENT] = ACTIONS(5766), + [anon_sym_EQ] = ACTIONS(5766), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5766), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5772), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5766), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2361] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5788), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(2370), + [sym_concatenation] = STATE(2371), + [sym_string] = STATE(2370), + [sym_command_substitution] = STATE(2370), + [sym_process_substitution] = STATE(2370), + [aux_sym__literal_repeat1] = STATE(2372), + [sym_simple_expansion] = STATE(2370), + [sym_arithmetic_expansion] = STATE(2370), + [sym_string_expansion] = STATE(2370), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5752), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5774), + [sym_number] = ACTIONS(5776), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5776), }, [2362] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(5776), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2373), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2373), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5778), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5780), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5782), + [anon_sym_DASH] = ACTIONS(5778), + [anon_sym_PERCENT] = ACTIONS(5778), + [anon_sym_EQ] = ACTIONS(5778), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5778), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2363] = { - [anon_sym_RBRACE] = ACTIONS(5776), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5782), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2364] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5792), - }, - [2365] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(2374), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2374), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5794), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5794), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5794), - [anon_sym_POUND] = ACTIONS(5796), - [anon_sym_DASH] = ACTIONS(5794), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5794), - [anon_sym_RBRACE] = ACTIONS(5798), - [anon_sym_PERCENT] = ACTIONS(5794), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5784), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5786), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5788), + [anon_sym_DASH] = ACTIONS(5784), + [anon_sym_PERCENT] = ACTIONS(5784), + [anon_sym_EQ] = ACTIONS(5784), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5784), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5784), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2365] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5788), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2366] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5798), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2373), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2373), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5778), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5780), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5782), + [anon_sym_DASH] = ACTIONS(5778), + [anon_sym_PERCENT] = ACTIONS(5778), + [anon_sym_EQ] = ACTIONS(5778), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5778), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5790), + [sym_word] = ACTIONS(659), }, [2367] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5800), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2377), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2377), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5792), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5794), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5796), + [anon_sym_DASH] = ACTIONS(5792), + [anon_sym_PERCENT] = ACTIONS(5792), + [anon_sym_EQ] = ACTIONS(5792), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5792), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5792), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5798), + [sym_word] = ACTIONS(659), }, [2368] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2375), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2375), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5802), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5802), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5802), - [anon_sym_POUND] = ACTIONS(5804), - [anon_sym_DASH] = ACTIONS(5802), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5802), - [anon_sym_RBRACE] = ACTIONS(5800), - [anon_sym_PERCENT] = ACTIONS(5802), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5796), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2369] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(5800), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2378), + [sym_concatenation] = STATE(2379), + [sym_string] = STATE(2378), + [sym_command_substitution] = STATE(2378), + [sym_process_substitution] = STATE(2378), + [aux_sym__literal_repeat1] = STATE(2380), + [sym_simple_expansion] = STATE(2378), + [sym_arithmetic_expansion] = STATE(2378), + [sym_string_expansion] = STATE(2378), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5800), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5782), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5800), + [sym_number] = ACTIONS(5802), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5802), }, [2370] = { - [anon_sym_RBRACE] = ACTIONS(5800), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5782), + [sym__concat] = ACTIONS(1502), }, [2371] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5806), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5782), }, [2372] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2376), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2376), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5808), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5808), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5808), - [anon_sym_POUND] = ACTIONS(5810), - [anon_sym_DASH] = ACTIONS(5808), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5808), - [anon_sym_RBRACE] = ACTIONS(5812), - [anon_sym_PERCENT] = ACTIONS(5808), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5804), + [sym__special_character] = ACTIONS(1506), }, [2373] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5812), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2374] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5814), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2375] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5816), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2381), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2381), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5810), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5812), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_DASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_EQ] = ACTIONS(5810), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5810), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5810), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2376] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2382), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2382), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5814), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5816), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(5818), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(5814), + [anon_sym_PERCENT] = ACTIONS(5814), + [anon_sym_EQ] = ACTIONS(5814), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5814), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5814), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2377] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2380), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5820), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5822), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5818), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2378] = { - [sym_string] = STATE(1323), - [anon_sym_POUND] = ACTIONS(5824), - [anon_sym_0] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(5826), - [aux_sym__simple_variable_name_token1] = ACTIONS(3140), - [anon_sym__] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5824), - [sym_raw_string] = ACTIONS(5828), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_AT] = ACTIONS(5826), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5806), + [sym__concat] = ACTIONS(1502), }, [2379] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5830), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5806), }, [2380] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5830), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5832), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5820), + [sym__special_character] = ACTIONS(1506), }, [2381] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5834), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5822), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2382] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(5836), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5824), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2383] = { - [anon_sym_RPAREN] = ACTIONS(5836), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2389), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5826), + [anon_sym_DQUOTE] = ACTIONS(5828), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2384] = { - [anon_sym_RPAREN] = ACTIONS(5838), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1329), + [anon_sym_QMARK] = ACTIONS(5830), + [anon_sym_DOLLAR] = ACTIONS(5832), + [anon_sym_AT] = ACTIONS(5830), + [anon_sym_DQUOTE] = ACTIONS(3097), + [anon_sym_POUND] = ACTIONS(5832), + [anon_sym_BANG] = ACTIONS(5832), + [anon_sym_0] = ACTIONS(3146), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(5832), + [anon_sym__] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(5830), + [sym_raw_string] = ACTIONS(5834), }, [2385] = { - [sym_expansion] = STATE(1330), - [sym_string_expansion] = STATE(1330), - [sym_simple_expansion] = STATE(1330), - [sym_string] = STATE(1330), - [sym_command_substitution] = STATE(1330), - [sym_process_substitution] = STATE(1330), - [sym_arithmetic_expansion] = STATE(1330), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(3083), - [sym_number] = ACTIONS(3085), - [sym__special_character] = ACTIONS(3087), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3091), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(3087), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2564), - [sym_word] = ACTIONS(3085), - [anon_sym_LT_LPAREN] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(2572), - [sym_ansii_c_string] = ACTIONS(3087), + [sym_expansion] = STATE(1332), + [sym_string_expansion] = STATE(1332), + [sym_simple_expansion] = STATE(1332), + [sym_string] = STATE(1332), + [sym_command_substitution] = STATE(1332), + [sym_process_substitution] = STATE(1332), + [sym_arithmetic_expansion] = STATE(1332), + [sym_number] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(2580), + [anon_sym_LT_LPAREN] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3097), + [sym_ansii_c_string] = ACTIONS(3091), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2582), + [sym__special_character] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3099), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3101), + [anon_sym_BQUOTE] = ACTIONS(3103), + [sym_word] = ACTIONS(3089), }, [2386] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2391), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2391), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5840), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5840), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5840), - [anon_sym_POUND] = ACTIONS(5842), - [anon_sym_DASH] = ACTIONS(5840), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5840), - [anon_sym_RBRACE] = ACTIONS(5844), - [anon_sym_PERCENT] = ACTIONS(5840), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(5836), }, [2387] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2396), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2396), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5848), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5848), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym_POUND] = ACTIONS(5850), - [anon_sym_DASH] = ACTIONS(5848), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5848), - [anon_sym_RBRACE] = ACTIONS(5852), - [anon_sym_PERCENT] = ACTIONS(5848), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5854), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5838), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [2388] = { - [anon_sym_BQUOTE] = ACTIONS(5856), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5840), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2389] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5842), + [anon_sym_DQUOTE] = ACTIONS(5840), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2390] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2398), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2398), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5860), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5860), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_POUND] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5860), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5860), - [anon_sym_RBRACE] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5860), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5866), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5844), }, [2391] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(5846), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2392] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2398), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2398), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5860), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5860), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_POUND] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5860), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5860), - [anon_sym_RBRACE] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5860), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5868), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5846), }, [2393] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2402), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2402), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5870), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5870), - [anon_sym_POUND] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5870), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5870), - [anon_sym_RBRACE] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5870), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5876), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2397), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2397), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5848), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5850), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5852), + [anon_sym_DASH] = ACTIONS(5848), + [anon_sym_PERCENT] = ACTIONS(5848), + [anon_sym_EQ] = ACTIONS(5848), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5848), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5854), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5848), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2394] = { - [sym_expansion] = STATE(2403), - [sym_concatenation] = STATE(2404), - [sym_string] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2405), - [sym_simple_expansion] = STATE(2403), - [sym_arithmetic_expansion] = STATE(2403), - [sym_string_expansion] = STATE(2403), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5864), - [sym_word] = ACTIONS(5878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5880), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5880), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2399), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2399), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5856), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5858), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5856), + [anon_sym_PERCENT] = ACTIONS(5856), + [anon_sym_EQ] = ACTIONS(5856), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5856), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5862), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5856), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2395] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2407), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2407), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5882), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5882), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5882), - [anon_sym_POUND] = ACTIONS(5884), - [anon_sym_DASH] = ACTIONS(5882), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5882), - [anon_sym_RBRACE] = ACTIONS(5886), - [anon_sym_PERCENT] = ACTIONS(5882), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5888), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5864), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2396] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5886), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2404), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2404), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5866), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5868), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5870), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_PERCENT] = ACTIONS(5866), + [anon_sym_EQ] = ACTIONS(5866), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5866), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5872), + [sym_word] = ACTIONS(659), }, [2397] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2408), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2408), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5890), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5890), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5890), - [anon_sym_POUND] = ACTIONS(5892), - [anon_sym_DASH] = ACTIONS(5890), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5890), - [anon_sym_RBRACE] = ACTIONS(5894), - [anon_sym_PERCENT] = ACTIONS(5890), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5870), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2398] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5894), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2406), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2406), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5874), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5876), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5878), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_PERCENT] = ACTIONS(5874), + [anon_sym_EQ] = ACTIONS(5874), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5874), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5874), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5880), + [sym_word] = ACTIONS(659), }, [2399] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2408), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2408), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5890), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5890), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5890), - [anon_sym_POUND] = ACTIONS(5892), - [anon_sym_DASH] = ACTIONS(5890), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5890), - [anon_sym_RBRACE] = ACTIONS(5894), - [anon_sym_PERCENT] = ACTIONS(5890), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5896), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5878), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2400] = { - [sym_expansion] = STATE(2410), - [sym_concatenation] = STATE(2411), - [sym_string] = STATE(2410), - [sym_command_substitution] = STATE(2410), - [sym_process_substitution] = STATE(2410), - [aux_sym__literal_repeat1] = STATE(2412), - [sym_simple_expansion] = STATE(2410), - [sym_arithmetic_expansion] = STATE(2410), - [sym_string_expansion] = STATE(2410), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5894), - [sym_word] = ACTIONS(5898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5900), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5900), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2404), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2404), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5866), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5868), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5870), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_PERCENT] = ACTIONS(5866), + [anon_sym_EQ] = ACTIONS(5866), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5882), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5866), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2401] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2414), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2414), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5902), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5902), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5902), - [anon_sym_POUND] = ACTIONS(5904), - [anon_sym_DASH] = ACTIONS(5902), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5902), - [anon_sym_RBRACE] = ACTIONS(5906), - [anon_sym_PERCENT] = ACTIONS(5902), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5908), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2409), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2409), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5884), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5886), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5888), + [anon_sym_DASH] = ACTIONS(5884), + [anon_sym_PERCENT] = ACTIONS(5884), + [anon_sym_EQ] = ACTIONS(5884), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5884), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5890), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5884), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2402] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5906), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(2411), + [sym_concatenation] = STATE(2412), + [sym_string] = STATE(2411), + [sym_command_substitution] = STATE(2411), + [sym_process_substitution] = STATE(2411), + [aux_sym__literal_repeat1] = STATE(2413), + [sym_simple_expansion] = STATE(2411), + [sym_arithmetic_expansion] = STATE(2411), + [sym_string_expansion] = STATE(2411), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5892), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5870), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5892), + [sym_number] = ACTIONS(5894), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5894), }, [2403] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(5894), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2414), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2414), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5896), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5898), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5900), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_PERCENT] = ACTIONS(5896), + [anon_sym_EQ] = ACTIONS(5896), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5896), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5896), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2404] = { - [anon_sym_RBRACE] = ACTIONS(5894), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5900), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2405] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5910), - }, - [2406] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(2415), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2415), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5912), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5912), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5912), - [anon_sym_POUND] = ACTIONS(5914), - [anon_sym_DASH] = ACTIONS(5912), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5912), - [anon_sym_RBRACE] = ACTIONS(5916), - [anon_sym_PERCENT] = ACTIONS(5912), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5902), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5904), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_DASH] = ACTIONS(5902), + [anon_sym_PERCENT] = ACTIONS(5902), + [anon_sym_EQ] = ACTIONS(5902), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5902), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5902), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2406] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2407] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5916), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2414), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2414), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5896), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5898), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5900), + [anon_sym_DASH] = ACTIONS(5896), + [anon_sym_PERCENT] = ACTIONS(5896), + [anon_sym_EQ] = ACTIONS(5896), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5896), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5896), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5908), + [sym_word] = ACTIONS(659), }, [2408] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5918), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2418), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2418), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5910), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5912), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5914), + [anon_sym_DASH] = ACTIONS(5910), + [anon_sym_PERCENT] = ACTIONS(5910), + [anon_sym_EQ] = ACTIONS(5910), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5910), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5910), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5916), + [sym_word] = ACTIONS(659), }, [2409] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2416), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2416), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5920), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5920), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5920), - [anon_sym_POUND] = ACTIONS(5922), - [anon_sym_DASH] = ACTIONS(5920), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5920), - [anon_sym_RBRACE] = ACTIONS(5918), - [anon_sym_PERCENT] = ACTIONS(5920), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5914), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2410] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(5918), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2419), + [sym_concatenation] = STATE(2420), + [sym_string] = STATE(2419), + [sym_command_substitution] = STATE(2419), + [sym_process_substitution] = STATE(2419), + [aux_sym__literal_repeat1] = STATE(2421), + [sym_simple_expansion] = STATE(2419), + [sym_arithmetic_expansion] = STATE(2419), + [sym_string_expansion] = STATE(2419), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(5918), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5900), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(5918), + [sym_number] = ACTIONS(5920), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(5920), }, [2411] = { - [anon_sym_RBRACE] = ACTIONS(5918), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5900), + [sym__concat] = ACTIONS(1502), }, [2412] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(5924), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5900), }, [2413] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2417), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2417), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5926), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5926), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5926), - [anon_sym_POUND] = ACTIONS(5928), - [anon_sym_DASH] = ACTIONS(5926), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5926), - [anon_sym_RBRACE] = ACTIONS(5930), - [anon_sym_PERCENT] = ACTIONS(5926), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5922), + [sym__special_character] = ACTIONS(1506), }, [2414] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5930), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5924), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2415] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5932), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5926), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2416] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5934), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2422), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2422), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5928), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5930), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5924), + [anon_sym_DASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5928), + [anon_sym_EQ] = ACTIONS(5928), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5928), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5928), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2417] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2423), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2423), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5932), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5934), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(5936), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(5932), + [anon_sym_PERCENT] = ACTIONS(5932), + [anon_sym_EQ] = ACTIONS(5932), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5932), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5932), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2418] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(2421), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5938), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5940), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5936), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2419] = { - [sym_string] = STATE(1356), - [anon_sym_POUND] = ACTIONS(5942), - [anon_sym_0] = ACTIONS(3146), - [anon_sym_QMARK] = ACTIONS(5944), - [aux_sym__simple_variable_name_token1] = ACTIONS(3146), - [anon_sym__] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(5942), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_DASH] = ACTIONS(5942), - [sym_raw_string] = ACTIONS(5946), - [anon_sym_DOLLAR] = ACTIONS(5942), - [anon_sym_AT] = ACTIONS(5944), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5924), + [sym__concat] = ACTIONS(1502), }, [2420] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5948), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5924), }, [2421] = { - [sym_expansion] = STATE(48), - [sym_simple_expansion] = STATE(48), - [aux_sym_string_repeat1] = STATE(117), - [sym_command_substitution] = STATE(48), - [sym_arithmetic_expansion] = STATE(48), - [sym__string_content] = ACTIONS(185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(5948), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(191), - [anon_sym_BQUOTE] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), - [anon_sym_DOLLAR] = ACTIONS(5950), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(5938), + [sym__special_character] = ACTIONS(1506), }, [2422] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5952), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5940), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2423] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(5954), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2424] = { - [anon_sym_RPAREN] = ACTIONS(5954), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(2430), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5944), + [anon_sym_DQUOTE] = ACTIONS(5946), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2425] = { - [anon_sym_RPAREN] = ACTIONS(5956), - [sym_comment] = ACTIONS(53), + [sym_string] = STATE(1362), + [anon_sym_QMARK] = ACTIONS(5948), + [anon_sym_DOLLAR] = ACTIONS(5950), + [anon_sym_AT] = ACTIONS(5948), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_POUND] = ACTIONS(5950), + [anon_sym_BANG] = ACTIONS(5950), + [anon_sym_0] = ACTIONS(3152), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(5950), + [anon_sym__] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(5948), + [sym_raw_string] = ACTIONS(5952), }, [2426] = { - [sym_expansion] = STATE(1363), - [sym_string_expansion] = STATE(1363), - [sym_simple_expansion] = STATE(1363), - [sym_string] = STATE(1363), - [sym_command_substitution] = STATE(1363), - [sym_process_substitution] = STATE(1363), - [sym_arithmetic_expansion] = STATE(1363), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(3113), - [sym_number] = ACTIONS(3115), - [sym__special_character] = ACTIONS(3117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3123), - [anon_sym_BQUOTE] = ACTIONS(3125), - [sym_raw_string] = ACTIONS(3117), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3127), - [sym_word] = ACTIONS(3115), - [anon_sym_LT_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3974), - [sym_ansii_c_string] = ACTIONS(3117), + [sym_expansion] = STATE(1365), + [sym_string_expansion] = STATE(1365), + [sym_simple_expansion] = STATE(1365), + [sym_string] = STATE(1365), + [sym_command_substitution] = STATE(1365), + [sym_process_substitution] = STATE(1365), + [sym_arithmetic_expansion] = STATE(1365), + [sym_number] = ACTIONS(3119), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3962), + [anon_sym_LT_LPAREN] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym_ansii_c_string] = ACTIONS(3121), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(3125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3129), + [sym__special_character] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3131), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(3133), + [anon_sym_BQUOTE] = ACTIONS(3135), + [sym_word] = ACTIONS(3119), }, [2427] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2432), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2432), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5958), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5958), - [anon_sym_POUND] = ACTIONS(5960), - [anon_sym_DASH] = ACTIONS(5958), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5958), - [anon_sym_RBRACE] = ACTIONS(5962), - [anon_sym_PERCENT] = ACTIONS(5958), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5964), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(5954), }, [2428] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2437), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2437), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5966), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5966), - [anon_sym_POUND] = ACTIONS(5968), - [anon_sym_DASH] = ACTIONS(5966), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5966), - [anon_sym_RBRACE] = ACTIONS(5970), - [anon_sym_PERCENT] = ACTIONS(5966), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5956), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [2429] = { - [anon_sym_BQUOTE] = ACTIONS(5974), - [sym_comment] = ACTIONS(53), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5958), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2430] = { - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_0] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(433), - [aux_sym__simple_variable_name_token1] = ACTIONS(433), - [anon_sym__] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(431), - [sym__string_content] = ACTIONS(435), - [anon_sym_DQUOTE] = ACTIONS(5976), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(431), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(433), + [sym_expansion] = STATE(69), + [sym_simple_expansion] = STATE(69), + [aux_sym_string_repeat1] = STATE(141), + [sym_command_substitution] = STATE(69), + [sym_arithmetic_expansion] = STATE(69), + [anon_sym_DOLLAR] = ACTIONS(5960), + [anon_sym_DQUOTE] = ACTIONS(5958), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [sym__string_content] = ACTIONS(259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(265), }, [2431] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2439), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2439), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5978), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5978), - [anon_sym_POUND] = ACTIONS(5980), - [anon_sym_DASH] = ACTIONS(5978), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5978), - [anon_sym_RBRACE] = ACTIONS(5982), - [anon_sym_PERCENT] = ACTIONS(5978), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(5984), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5962), }, [2432] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(5982), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(5964), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2433] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2439), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2439), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5978), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5978), - [anon_sym_POUND] = ACTIONS(5980), - [anon_sym_DASH] = ACTIONS(5978), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5978), - [anon_sym_RBRACE] = ACTIONS(5982), - [anon_sym_PERCENT] = ACTIONS(5978), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5986), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(5964), }, [2434] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2443), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2443), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(5988), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(5988), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(5988), - [anon_sym_POUND] = ACTIONS(5990), - [anon_sym_DASH] = ACTIONS(5988), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(5988), - [anon_sym_RBRACE] = ACTIONS(5992), - [anon_sym_PERCENT] = ACTIONS(5988), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(5994), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2438), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2438), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5966), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5968), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5970), + [anon_sym_DASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5966), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5966), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5972), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5966), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2435] = { - [sym_expansion] = STATE(2444), - [sym_concatenation] = STATE(2445), - [sym_string] = STATE(2444), - [sym_command_substitution] = STATE(2444), - [sym_process_substitution] = STATE(2444), - [aux_sym__literal_repeat1] = STATE(2446), - [sym_simple_expansion] = STATE(2444), - [sym_arithmetic_expansion] = STATE(2444), - [sym_string_expansion] = STATE(2444), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(5996), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(5982), - [sym_word] = ACTIONS(5996), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(5998), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(5998), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2440), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2440), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5974), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5976), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_PERCENT] = ACTIONS(5974), + [anon_sym_EQ] = ACTIONS(5974), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5974), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(5980), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5974), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2436] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2448), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2448), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6000), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6000), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6000), - [anon_sym_POUND] = ACTIONS(6002), - [anon_sym_DASH] = ACTIONS(6000), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6000), - [anon_sym_RBRACE] = ACTIONS(6004), - [anon_sym_PERCENT] = ACTIONS(6000), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6006), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(5982), + [anon_sym_POUND] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_0] = ACTIONS(517), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym__] = ACTIONS(517), + [sym__string_content] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(517), }, [2437] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6004), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2445), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2445), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5984), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5986), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_DASH] = ACTIONS(5984), + [anon_sym_PERCENT] = ACTIONS(5984), + [anon_sym_EQ] = ACTIONS(5984), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5984), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5984), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5990), + [sym_word] = ACTIONS(659), }, [2438] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2449), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2449), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6008), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6008), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6008), - [anon_sym_POUND] = ACTIONS(6010), - [anon_sym_DASH] = ACTIONS(6008), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6008), - [anon_sym_RBRACE] = ACTIONS(6012), - [anon_sym_PERCENT] = ACTIONS(6008), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2439] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6012), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2447), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2447), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5992), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5994), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5996), + [anon_sym_DASH] = ACTIONS(5992), + [anon_sym_PERCENT] = ACTIONS(5992), + [anon_sym_EQ] = ACTIONS(5992), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5992), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(5998), + [sym_word] = ACTIONS(659), }, [2440] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2449), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2449), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6008), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6008), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6008), - [anon_sym_POUND] = ACTIONS(6010), - [anon_sym_DASH] = ACTIONS(6008), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6008), - [anon_sym_RBRACE] = ACTIONS(6012), - [anon_sym_PERCENT] = ACTIONS(6008), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6014), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5996), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2441] = { - [sym_expansion] = STATE(2451), - [sym_concatenation] = STATE(2452), - [sym_string] = STATE(2451), - [sym_command_substitution] = STATE(2451), - [sym_process_substitution] = STATE(2451), - [aux_sym__literal_repeat1] = STATE(2453), - [sym_simple_expansion] = STATE(2451), - [sym_arithmetic_expansion] = STATE(2451), - [sym_string_expansion] = STATE(2451), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(6016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(6012), - [sym_word] = ACTIONS(6016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(6018), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(6018), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2445), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2445), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(5984), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(5986), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_DASH] = ACTIONS(5984), + [anon_sym_PERCENT] = ACTIONS(5984), + [anon_sym_EQ] = ACTIONS(5984), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(5984), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(6000), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(5984), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2442] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2455), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2455), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6020), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6020), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6020), - [anon_sym_POUND] = ACTIONS(6022), - [anon_sym_DASH] = ACTIONS(6020), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6020), - [anon_sym_RBRACE] = ACTIONS(6024), - [anon_sym_PERCENT] = ACTIONS(6020), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6026), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2450), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2450), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6002), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6004), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6006), + [anon_sym_DASH] = ACTIONS(6002), + [anon_sym_PERCENT] = ACTIONS(6002), + [anon_sym_EQ] = ACTIONS(6002), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6002), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(6008), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6002), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2443] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6024), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(2452), + [sym_concatenation] = STATE(2453), + [sym_string] = STATE(2452), + [sym_command_substitution] = STATE(2452), + [sym_process_substitution] = STATE(2452), + [aux_sym__literal_repeat1] = STATE(2454), + [sym_simple_expansion] = STATE(2452), + [sym_arithmetic_expansion] = STATE(2452), + [sym_string_expansion] = STATE(2452), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(6010), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(6010), + [sym_number] = ACTIONS(6012), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(6012), }, [2444] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(6012), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2455), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2455), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6014), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6016), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6018), + [anon_sym_DASH] = ACTIONS(6014), + [anon_sym_PERCENT] = ACTIONS(6014), + [anon_sym_EQ] = ACTIONS(6014), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6014), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6014), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2445] = { - [anon_sym_RBRACE] = ACTIONS(6012), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6018), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2446] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(6028), - }, - [2447] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(2456), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2456), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6030), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6030), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6030), - [anon_sym_POUND] = ACTIONS(6032), - [anon_sym_DASH] = ACTIONS(6030), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6030), - [anon_sym_RBRACE] = ACTIONS(6034), - [anon_sym_PERCENT] = ACTIONS(6030), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6020), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6022), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6024), + [anon_sym_DASH] = ACTIONS(6020), + [anon_sym_PERCENT] = ACTIONS(6020), + [anon_sym_EQ] = ACTIONS(6020), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6020), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6020), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2447] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6024), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2448] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6034), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2455), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2455), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6014), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6016), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6018), + [anon_sym_DASH] = ACTIONS(6014), + [anon_sym_PERCENT] = ACTIONS(6014), + [anon_sym_EQ] = ACTIONS(6014), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6014), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6014), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(6026), + [sym_word] = ACTIONS(659), }, [2449] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6036), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2459), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2459), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6028), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6030), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_DASH] = ACTIONS(6028), + [anon_sym_PERCENT] = ACTIONS(6028), + [anon_sym_EQ] = ACTIONS(6028), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6028), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6028), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(6034), + [sym_word] = ACTIONS(659), }, [2450] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2457), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2457), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6038), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6038), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6038), - [anon_sym_POUND] = ACTIONS(6040), - [anon_sym_DASH] = ACTIONS(6038), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6038), - [anon_sym_RBRACE] = ACTIONS(6036), - [anon_sym_PERCENT] = ACTIONS(6038), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2451] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(6036), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2460), + [sym_concatenation] = STATE(2461), + [sym_string] = STATE(2460), + [sym_command_substitution] = STATE(2460), + [sym_process_substitution] = STATE(2460), + [aux_sym__literal_repeat1] = STATE(2462), + [sym_simple_expansion] = STATE(2460), + [sym_arithmetic_expansion] = STATE(2460), + [sym_string_expansion] = STATE(2460), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(6036), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(6018), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(6036), + [sym_number] = ACTIONS(6038), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(6038), }, [2452] = { - [anon_sym_RBRACE] = ACTIONS(6036), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6018), + [sym__concat] = ACTIONS(1502), }, [2453] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(6042), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6018), }, [2454] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2458), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2458), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6044), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6044), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6044), - [anon_sym_POUND] = ACTIONS(6046), - [anon_sym_DASH] = ACTIONS(6044), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6044), - [anon_sym_RBRACE] = ACTIONS(6048), - [anon_sym_PERCENT] = ACTIONS(6044), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6040), + [sym__special_character] = ACTIONS(1506), }, [2455] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6048), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6042), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2456] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6050), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6044), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2457] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6052), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2463), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2463), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6046), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6048), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6042), + [anon_sym_DASH] = ACTIONS(6046), + [anon_sym_PERCENT] = ACTIONS(6046), + [anon_sym_EQ] = ACTIONS(6046), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6046), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6046), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2458] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2464), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2464), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6050), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6052), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(6054), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(6050), + [anon_sym_PERCENT] = ACTIONS(6050), + [anon_sym_EQ] = ACTIONS(6050), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6050), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6050), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2459] = { - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6056), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2460] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(6058), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6042), + [sym__concat] = ACTIONS(1502), }, [2461] = { - [anon_sym_RPAREN] = ACTIONS(6058), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6042), }, [2462] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2466), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2466), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6060), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6060), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6060), - [anon_sym_POUND] = ACTIONS(6062), - [anon_sym_DASH] = ACTIONS(6060), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6060), - [anon_sym_RBRACE] = ACTIONS(6064), - [anon_sym_PERCENT] = ACTIONS(6060), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(6066), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6056), + [sym__special_character] = ACTIONS(1506), }, [2463] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2471), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2471), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6068), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6068), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6068), - [anon_sym_POUND] = ACTIONS(6070), - [anon_sym_DASH] = ACTIONS(6068), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6068), - [anon_sym_RBRACE] = ACTIONS(6072), - [anon_sym_PERCENT] = ACTIONS(6068), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6058), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2464] = { - [anon_sym_BQUOTE] = ACTIONS(6076), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6060), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2465] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2473), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2473), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6078), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6078), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6078), - [anon_sym_POUND] = ACTIONS(6080), - [anon_sym_DASH] = ACTIONS(6078), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6078), - [anon_sym_RBRACE] = ACTIONS(6082), - [anon_sym_PERCENT] = ACTIONS(6078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6084), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(6062), }, [2466] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6082), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6064), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), }, [2467] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2473), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2473), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6078), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6078), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6078), - [anon_sym_POUND] = ACTIONS(6080), - [anon_sym_DASH] = ACTIONS(6078), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6078), - [anon_sym_RBRACE] = ACTIONS(6082), - [anon_sym_PERCENT] = ACTIONS(6078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(6086), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(6066), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2468] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2477), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2477), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6088), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6088), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6088), - [anon_sym_POUND] = ACTIONS(6090), - [anon_sym_DASH] = ACTIONS(6088), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6088), - [anon_sym_RBRACE] = ACTIONS(6092), - [anon_sym_PERCENT] = ACTIONS(6088), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(6094), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(6066), }, [2469] = { - [sym_expansion] = STATE(2478), - [sym_concatenation] = STATE(2479), - [sym_string] = STATE(2478), - [sym_command_substitution] = STATE(2478), - [sym_process_substitution] = STATE(2478), - [aux_sym__literal_repeat1] = STATE(2480), - [sym_simple_expansion] = STATE(2478), - [sym_arithmetic_expansion] = STATE(2478), - [sym_string_expansion] = STATE(2478), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(6096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(6082), - [sym_word] = ACTIONS(6096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(6098), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(6098), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2472), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2472), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6068), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6070), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6072), + [anon_sym_DASH] = ACTIONS(6068), + [anon_sym_PERCENT] = ACTIONS(6068), + [anon_sym_EQ] = ACTIONS(6068), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6068), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(6074), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6068), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2470] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2482), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2482), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6100), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6100), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6100), - [anon_sym_POUND] = ACTIONS(6102), - [anon_sym_DASH] = ACTIONS(6100), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6100), - [anon_sym_RBRACE] = ACTIONS(6104), - [anon_sym_PERCENT] = ACTIONS(6100), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6106), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2474), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2474), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6076), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6078), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6080), + [anon_sym_DASH] = ACTIONS(6076), + [anon_sym_PERCENT] = ACTIONS(6076), + [anon_sym_EQ] = ACTIONS(6076), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6076), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(6082), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6076), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2471] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6104), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2479), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2479), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6084), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6086), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6088), + [anon_sym_DASH] = ACTIONS(6084), + [anon_sym_PERCENT] = ACTIONS(6084), + [anon_sym_EQ] = ACTIONS(6084), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6084), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6084), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(6090), + [sym_word] = ACTIONS(659), }, [2472] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2483), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2483), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6108), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6108), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6108), - [anon_sym_POUND] = ACTIONS(6110), - [anon_sym_DASH] = ACTIONS(6108), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6108), - [anon_sym_RBRACE] = ACTIONS(6112), - [anon_sym_PERCENT] = ACTIONS(6108), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6088), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2473] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6112), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2481), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2481), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6092), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6094), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6096), + [anon_sym_DASH] = ACTIONS(6092), + [anon_sym_PERCENT] = ACTIONS(6092), + [anon_sym_EQ] = ACTIONS(6092), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6092), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6092), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(6098), + [sym_word] = ACTIONS(659), }, [2474] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2483), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2483), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6108), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6108), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6108), - [anon_sym_POUND] = ACTIONS(6110), - [anon_sym_DASH] = ACTIONS(6108), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6108), - [anon_sym_RBRACE] = ACTIONS(6112), - [anon_sym_PERCENT] = ACTIONS(6108), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6114), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6096), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2475] = { - [sym_expansion] = STATE(2485), - [sym_concatenation] = STATE(2486), - [sym_string] = STATE(2485), - [sym_command_substitution] = STATE(2485), - [sym_process_substitution] = STATE(2485), - [aux_sym__literal_repeat1] = STATE(2487), - [sym_simple_expansion] = STATE(2485), - [sym_arithmetic_expansion] = STATE(2485), - [sym_string_expansion] = STATE(2485), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(6116), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(6112), - [sym_word] = ACTIONS(6116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(6118), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(6118), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2479), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2479), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6084), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6086), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6088), + [anon_sym_DASH] = ACTIONS(6084), + [anon_sym_PERCENT] = ACTIONS(6084), + [anon_sym_EQ] = ACTIONS(6084), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6084), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(6100), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6084), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2476] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2489), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2489), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6120), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6120), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6120), - [anon_sym_POUND] = ACTIONS(6122), - [anon_sym_DASH] = ACTIONS(6120), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6120), - [anon_sym_RBRACE] = ACTIONS(6124), - [anon_sym_PERCENT] = ACTIONS(6120), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6126), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2484), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2484), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6102), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6104), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6106), + [anon_sym_DASH] = ACTIONS(6102), + [anon_sym_PERCENT] = ACTIONS(6102), + [anon_sym_EQ] = ACTIONS(6102), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6102), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(6108), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6102), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2477] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6124), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(2486), + [sym_concatenation] = STATE(2487), + [sym_string] = STATE(2486), + [sym_command_substitution] = STATE(2486), + [sym_process_substitution] = STATE(2486), + [aux_sym__literal_repeat1] = STATE(2488), + [sym_simple_expansion] = STATE(2486), + [sym_arithmetic_expansion] = STATE(2486), + [sym_string_expansion] = STATE(2486), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(6110), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(6088), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(6110), + [sym_number] = ACTIONS(6112), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(6112), }, [2478] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(6112), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2489), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2489), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6114), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6116), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6118), + [anon_sym_DASH] = ACTIONS(6114), + [anon_sym_PERCENT] = ACTIONS(6114), + [anon_sym_EQ] = ACTIONS(6114), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6114), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6114), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2479] = { - [anon_sym_RBRACE] = ACTIONS(6112), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6118), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2480] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(6128), - }, - [2481] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(2490), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2490), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6130), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6130), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6130), - [anon_sym_POUND] = ACTIONS(6132), - [anon_sym_DASH] = ACTIONS(6130), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6130), - [anon_sym_RBRACE] = ACTIONS(6134), - [anon_sym_PERCENT] = ACTIONS(6130), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6120), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6122), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6124), + [anon_sym_DASH] = ACTIONS(6120), + [anon_sym_PERCENT] = ACTIONS(6120), + [anon_sym_EQ] = ACTIONS(6120), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6120), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6120), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2481] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6124), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2482] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6134), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2489), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2489), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6114), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6116), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6118), + [anon_sym_DASH] = ACTIONS(6114), + [anon_sym_PERCENT] = ACTIONS(6114), + [anon_sym_EQ] = ACTIONS(6114), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6114), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6114), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(6126), + [sym_word] = ACTIONS(659), }, [2483] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6136), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2493), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2493), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6128), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6130), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6132), + [anon_sym_DASH] = ACTIONS(6128), + [anon_sym_PERCENT] = ACTIONS(6128), + [anon_sym_EQ] = ACTIONS(6128), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6128), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6128), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(6134), + [sym_word] = ACTIONS(659), }, [2484] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2491), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2491), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6138), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6138), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6138), - [anon_sym_POUND] = ACTIONS(6140), - [anon_sym_DASH] = ACTIONS(6138), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6138), - [anon_sym_RBRACE] = ACTIONS(6136), - [anon_sym_PERCENT] = ACTIONS(6138), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6132), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2485] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(6136), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2494), + [sym_concatenation] = STATE(2495), + [sym_string] = STATE(2494), + [sym_command_substitution] = STATE(2494), + [sym_process_substitution] = STATE(2494), + [aux_sym__literal_repeat1] = STATE(2496), + [sym_simple_expansion] = STATE(2494), + [sym_arithmetic_expansion] = STATE(2494), + [sym_string_expansion] = STATE(2494), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(6136), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(6118), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(6136), + [sym_number] = ACTIONS(6138), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(6138), }, [2486] = { - [anon_sym_RBRACE] = ACTIONS(6136), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6118), + [sym__concat] = ACTIONS(1502), }, [2487] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(6142), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6118), }, [2488] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2492), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2492), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6144), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6144), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6144), - [anon_sym_POUND] = ACTIONS(6146), - [anon_sym_DASH] = ACTIONS(6144), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6144), - [anon_sym_RBRACE] = ACTIONS(6148), - [anon_sym_PERCENT] = ACTIONS(6144), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6140), + [sym__special_character] = ACTIONS(1506), }, [2489] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6148), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6142), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2490] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6150), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6144), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2491] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6152), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2497), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2497), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6146), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6148), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6142), + [anon_sym_DASH] = ACTIONS(6146), + [anon_sym_PERCENT] = ACTIONS(6146), + [anon_sym_EQ] = ACTIONS(6146), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6146), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6146), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2492] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2498), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2498), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6150), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6152), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(6154), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(6150), + [anon_sym_PERCENT] = ACTIONS(6150), + [anon_sym_EQ] = ACTIONS(6150), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6150), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6150), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2493] = { - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [sym_number] = ACTIONS(343), - [anon_sym_GT_LPAREN] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(345), - [sym_file_descriptor] = ACTIONS(345), - [sym_word] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [sym_ansii_c_string] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(345), - [sym_variable_name] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(6156), - [sym__special_character] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [sym_raw_string] = ACTIONS(345), - [anon_sym_BQUOTE] = ACTIONS(345), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(343), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6154), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2494] = { - [anon_sym_RPAREN] = ACTIONS(6156), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6142), + [sym__concat] = ACTIONS(1502), }, [2495] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2499), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2499), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6158), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6158), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6158), - [anon_sym_POUND] = ACTIONS(6160), - [anon_sym_DASH] = ACTIONS(6158), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6158), - [anon_sym_RBRACE] = ACTIONS(6162), - [anon_sym_PERCENT] = ACTIONS(6158), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(6164), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6142), }, [2496] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2504), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2504), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6166), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6166), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6166), - [anon_sym_POUND] = ACTIONS(6168), - [anon_sym_DASH] = ACTIONS(6166), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6166), - [anon_sym_RBRACE] = ACTIONS(6170), - [anon_sym_PERCENT] = ACTIONS(6166), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(6172), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6156), + [sym__special_character] = ACTIONS(1506), }, [2497] = { - [anon_sym_BQUOTE] = ACTIONS(6174), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6158), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2498] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2506), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2506), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6176), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6176), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6176), - [anon_sym_POUND] = ACTIONS(6178), - [anon_sym_DASH] = ACTIONS(6176), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6176), - [anon_sym_RBRACE] = ACTIONS(6180), - [anon_sym_PERCENT] = ACTIONS(6176), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6182), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6160), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2499] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6180), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_BQUOTE] = ACTIONS(6162), }, [2500] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2506), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2506), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6176), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6176), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6176), - [anon_sym_POUND] = ACTIONS(6178), - [anon_sym_DASH] = ACTIONS(6176), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6176), - [anon_sym_RBRACE] = ACTIONS(6180), - [anon_sym_PERCENT] = ACTIONS(6176), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(6184), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(349), + [sym_ansii_c_string] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_LT_LPAREN] = ACTIONS(349), + [sym__special_character] = ACTIONS(349), + [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(6164), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [sym_raw_string] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(349), + [sym_number] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(349), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), + [anon_sym_GT_LPAREN] = ACTIONS(349), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(349), + [sym_word] = ACTIONS(347), }, [2501] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2510), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2510), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6186), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6186), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6186), - [anon_sym_POUND] = ACTIONS(6188), - [anon_sym_DASH] = ACTIONS(6186), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6186), - [anon_sym_RBRACE] = ACTIONS(6190), - [anon_sym_PERCENT] = ACTIONS(6186), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(6192), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(6164), }, [2502] = { - [sym_expansion] = STATE(2511), - [sym_concatenation] = STATE(2512), - [sym_string] = STATE(2511), - [sym_command_substitution] = STATE(2511), - [sym_process_substitution] = STATE(2511), - [aux_sym__literal_repeat1] = STATE(2513), - [sym_simple_expansion] = STATE(2511), - [sym_arithmetic_expansion] = STATE(2511), - [sym_string_expansion] = STATE(2511), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(6194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(6180), - [sym_word] = ACTIONS(6194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(6196), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(6196), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2505), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2505), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6166), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6168), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6170), + [anon_sym_DASH] = ACTIONS(6166), + [anon_sym_PERCENT] = ACTIONS(6166), + [anon_sym_EQ] = ACTIONS(6166), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6166), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(6172), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6166), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2503] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2515), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2515), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6198), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6198), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6198), - [anon_sym_POUND] = ACTIONS(6200), - [anon_sym_DASH] = ACTIONS(6198), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6198), - [anon_sym_RBRACE] = ACTIONS(6202), - [anon_sym_PERCENT] = ACTIONS(6198), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6204), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2507), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2507), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6174), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6176), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6178), + [anon_sym_DASH] = ACTIONS(6174), + [anon_sym_PERCENT] = ACTIONS(6174), + [anon_sym_EQ] = ACTIONS(6174), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6174), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(6180), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6174), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2504] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6202), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2512), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2512), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6182), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6184), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6186), + [anon_sym_DASH] = ACTIONS(6182), + [anon_sym_PERCENT] = ACTIONS(6182), + [anon_sym_EQ] = ACTIONS(6182), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6182), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6182), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(6188), + [sym_word] = ACTIONS(659), }, [2505] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2516), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2516), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6206), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6206), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6206), - [anon_sym_POUND] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6206), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6206), - [anon_sym_RBRACE] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6206), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6186), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2506] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2514), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2514), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6190), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6192), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6194), + [anon_sym_DASH] = ACTIONS(6190), + [anon_sym_PERCENT] = ACTIONS(6190), + [anon_sym_EQ] = ACTIONS(6190), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6190), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6190), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(6196), + [sym_word] = ACTIONS(659), }, [2507] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2516), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2516), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6206), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6206), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6206), - [anon_sym_POUND] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6206), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6206), - [anon_sym_RBRACE] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6206), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6212), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6194), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2508] = { - [sym_expansion] = STATE(2518), - [sym_concatenation] = STATE(2519), - [sym_string] = STATE(2518), - [sym_command_substitution] = STATE(2518), - [sym_process_substitution] = STATE(2518), - [aux_sym__literal_repeat1] = STATE(2520), - [sym_simple_expansion] = STATE(2518), - [sym_arithmetic_expansion] = STATE(2518), - [sym_string_expansion] = STATE(2518), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_number] = ACTIONS(6214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(6210), - [sym_word] = ACTIONS(6214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [sym_ansii_c_string] = ACTIONS(6216), - [sym__special_character] = ACTIONS(1080), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_raw_string] = ACTIONS(6216), - [anon_sym_DOLLAR] = ACTIONS(1084), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2512), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2512), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6182), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6184), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6186), + [anon_sym_DASH] = ACTIONS(6182), + [anon_sym_PERCENT] = ACTIONS(6182), + [anon_sym_EQ] = ACTIONS(6182), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6182), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(6198), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6182), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2509] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2522), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2522), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6218), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6218), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6218), - [anon_sym_POUND] = ACTIONS(6220), - [anon_sym_DASH] = ACTIONS(6218), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6218), - [anon_sym_RBRACE] = ACTIONS(6222), - [anon_sym_PERCENT] = ACTIONS(6218), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym_regex] = ACTIONS(6224), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2517), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2517), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6200), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6202), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6204), + [anon_sym_DASH] = ACTIONS(6200), + [anon_sym_PERCENT] = ACTIONS(6200), + [anon_sym_EQ] = ACTIONS(6200), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6200), + [anon_sym_DOLLAR] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(6206), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6200), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2510] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6222), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(2519), + [sym_concatenation] = STATE(2520), + [sym_string] = STATE(2519), + [sym_command_substitution] = STATE(2519), + [sym_process_substitution] = STATE(2519), + [aux_sym__literal_repeat1] = STATE(2521), + [sym_simple_expansion] = STATE(2519), + [sym_arithmetic_expansion] = STATE(2519), + [sym_string_expansion] = STATE(2519), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(6208), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(6186), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(6208), + [sym_number] = ACTIONS(6210), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(6210), }, [2511] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(6210), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2522), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2522), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6212), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6214), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6216), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6212), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2512] = { - [anon_sym_RBRACE] = ACTIONS(6210), - [sym_comment] = ACTIONS(53), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6216), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2513] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(6226), - }, - [2514] = { - [sym_expansion] = STATE(141), + [sym_expansion] = STATE(161), [sym_concatenation] = STATE(2523), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), [aux_sym_expansion_repeat1] = STATE(2523), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6228), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6228), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6228), - [anon_sym_POUND] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6228), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6228), - [anon_sym_RBRACE] = ACTIONS(6232), - [anon_sym_PERCENT] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6218), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6220), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(6218), + [anon_sym_PERCENT] = ACTIONS(6218), + [anon_sym_EQ] = ACTIONS(6218), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6218), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6218), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2514] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2515] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6232), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2522), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2522), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6212), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6214), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6216), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6212), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(6224), + [sym_word] = ACTIONS(659), }, [2516] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6234), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2526), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2526), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6226), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6228), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6226), + [anon_sym_PERCENT] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6226), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6226), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_regex] = ACTIONS(6232), + [sym_word] = ACTIONS(659), }, [2517] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2524), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2524), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6236), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6236), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6236), - [anon_sym_POUND] = ACTIONS(6238), - [anon_sym_DASH] = ACTIONS(6236), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6236), - [anon_sym_RBRACE] = ACTIONS(6234), - [anon_sym_PERCENT] = ACTIONS(6236), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2518] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_comment] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(6234), - [sym__concat] = ACTIONS(1422), + [sym_expansion] = STATE(2527), + [sym_concatenation] = STATE(2528), + [sym_string] = STATE(2527), + [sym_command_substitution] = STATE(2527), + [sym_process_substitution] = STATE(2527), + [aux_sym__literal_repeat1] = STATE(2529), + [sym_simple_expansion] = STATE(2527), + [sym_arithmetic_expansion] = STATE(2527), + [sym_string_expansion] = STATE(2527), + [anon_sym_LT_LPAREN] = ACTIONS(1176), + [sym_ansii_c_string] = ACTIONS(6234), + [anon_sym_DQUOTE] = ACTIONS(1180), + [sym__special_character] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(6216), + [anon_sym_BQUOTE] = ACTIONS(1184), + [sym_raw_string] = ACTIONS(6234), + [sym_number] = ACTIONS(6236), + [anon_sym_DOLLAR] = ACTIONS(1188), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1194), + [sym_word] = ACTIONS(6236), }, [2519] = { - [anon_sym_RBRACE] = ACTIONS(6234), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6216), + [sym__concat] = ACTIONS(1502), }, [2520] = { - [aux_sym__literal_repeat1] = STATE(1160), - [sym_comment] = ACTIONS(53), - [sym__special_character] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(6240), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6216), }, [2521] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(2525), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(2525), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(6242), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_POUND] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(6242), - [anon_sym_RBRACE] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6242), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6238), + [sym__special_character] = ACTIONS(1506), }, [2522] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6240), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2523] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6248), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2524] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2530), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2530), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6244), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6246), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6240), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_PERCENT] = ACTIONS(6244), + [anon_sym_EQ] = ACTIONS(6244), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6244), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6244), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2525] = { - [sym_expansion] = STATE(141), - [sym_concatenation] = STATE(215), - [sym_string] = STATE(141), - [sym_command_substitution] = STATE(141), - [sym_process_substitution] = STATE(141), - [aux_sym__literal_repeat1] = STATE(144), - [sym_simple_expansion] = STATE(141), - [aux_sym_expansion_repeat1] = STATE(215), - [sym_arithmetic_expansion] = STATE(141), - [sym_string_expansion] = STATE(141), - [anon_sym_COLON_DASH] = ACTIONS(1050), - [anon_sym_GT_LPAREN] = ACTIONS(543), - [sym_number] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(551), - [sym_word] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LT_LPAREN] = ACTIONS(543), - [sym_ansii_c_string] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [sym__special_character] = ACTIONS(559), - [anon_sym_COLON_QMARK] = ACTIONS(1050), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(2531), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(2531), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(6248), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(6250), + [sym__special_character] = ACTIONS(653), [anon_sym_RBRACE] = ACTIONS(6252), - [anon_sym_PERCENT] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(563), - [sym_raw_string] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(6248), + [anon_sym_PERCENT] = ACTIONS(6248), + [anon_sym_EQ] = ACTIONS(6248), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(6248), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(6248), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), }, [2526] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1430), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2527] = { + [aux_sym_concatenation_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6240), + [sym__concat] = ACTIONS(1502), + }, + [2528] = { + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6240), + }, + [2529] = { + [aux_sym__literal_repeat1] = STATE(1232), + [sym_comment] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(6254), + [sym__special_character] = ACTIONS(1506), + }, + [2530] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2531] = { + [sym_expansion] = STATE(161), + [sym_concatenation] = STATE(233), + [sym_string] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym__literal_repeat1] = STATE(164), + [sym_simple_expansion] = STATE(161), + [aux_sym_expansion_repeat1] = STATE(233), + [sym_arithmetic_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [anon_sym_COLON_QMARK] = ACTIONS(1148), + [anon_sym_LT_LPAREN] = ACTIONS(645), + [sym_ansii_c_string] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_POUND] = ACTIONS(1150), + [sym__special_character] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(6258), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(657), + [sym_raw_string] = ACTIONS(647), + [sym_number] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_DASH] = ACTIONS(1148), + [anon_sym_GT_LPAREN] = ACTIONS(645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(669), + [sym_word] = ACTIONS(659), + }, + [2532] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1436), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + }, + [2533] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1438), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(73), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(195), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + }, + [2534] = { + [sym_comment] = ACTIONS(23), + [sym_word] = ACTIONS(6260), }, - [2527] = { - [sym_unary_expression] = STATE(1433), - [sym_postfix_expression] = STATE(1433), - [sym_concatenation] = STATE(1433), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(1433), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2535] = { + [sym_unary_expression] = STATE(1443), + [sym_postfix_expression] = STATE(1443), + [sym_concatenation] = STATE(1443), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(1443), + [sym_binary_expression] = STATE(1443), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(1443), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2528] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1434), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1435), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2536] = { + [sym_unary_expression] = STATE(1444), + [sym_postfix_expression] = STATE(1444), + [sym_concatenation] = STATE(1444), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(1444), + [sym_binary_expression] = STATE(1444), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(1444), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), + }, + [2537] = { + [anon_sym_PLUS_EQ] = ACTIONS(6262), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(6262), + [sym_comment] = ACTIONS(23), + }, + [2538] = { + [anon_sym_AMP_GT_GT] = ACTIONS(6264), + [anon_sym_GT_AMP] = ACTIONS(6264), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(6266), + [anon_sym_LT_AMP] = ACTIONS(6264), + [anon_sym_GT_GT] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6266), + [anon_sym_AMP_GT] = ACTIONS(6266), + }, + [2539] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1449), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2529] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1436), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2540] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1450), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1451), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2530] = { - [sym_word] = ACTIONS(6254), - [sym_comment] = ACTIONS(53), - }, - [2531] = { - [sym_unary_expression] = STATE(1442), - [sym_postfix_expression] = STATE(1442), - [sym_concatenation] = STATE(1442), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(1442), - [sym_binary_expression] = STATE(1442), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(1442), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [2532] = { - [sym_subscript] = STATE(1443), - [anon_sym_0] = ACTIONS(6256), - [anon_sym_BANG] = ACTIONS(6258), - [sym_variable_name] = ACTIONS(6260), - [anon_sym_STAR] = ACTIONS(6262), - [anon_sym_DASH] = ACTIONS(6264), - [anon_sym_POUND] = ACTIONS(6258), - [anon_sym_QMARK] = ACTIONS(6262), - [aux_sym__simple_variable_name_token1] = ACTIONS(6256), - [anon_sym__] = ACTIONS(6256), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(6264), - [anon_sym_AT] = ACTIONS(6262), - }, - [2533] = { - [anon_sym_PLUS_EQ] = ACTIONS(6266), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(6266), - [sym_comment] = ACTIONS(53), - }, - [2534] = { - [anon_sym_AMP_GT_GT] = ACTIONS(6268), - [anon_sym_GT_AMP] = ACTIONS(6268), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_AMP] = ACTIONS(6268), - [anon_sym_GT_GT] = ACTIONS(6268), - [sym_comment] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_AMP_GT] = ACTIONS(6270), - }, - [2535] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1447), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2536] = { - [sym__terminated_statement] = STATE(1448), - [sym_if_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_negated_command] = STATE(71), - [sym_test_command] = STATE(71), - [sym_variable_assignment] = STATE(72), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_compound_statement] = STATE(71), - [sym_subshell] = STATE(71), - [sym_declaration_command] = STATE(71), - [sym_unset_command] = STATE(71), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_case_statement] = STATE(71), - [sym_pipeline] = STATE(71), - [sym_list] = STATE(71), - [sym_command] = STATE(71), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2541] = { + [sym__terminated_statement] = STATE(1452), + [sym_if_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_variable_assignment] = STATE(64), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_compound_statement] = STATE(63), + [sym_subshell] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2537] = { - [sym_unary_expression] = STATE(1449), - [sym_postfix_expression] = STATE(1449), - [sym_concatenation] = STATE(1449), - [sym_string] = STATE(407), - [sym_command_substitution] = STATE(407), - [sym_process_substitution] = STATE(407), - [sym__expression] = STATE(1449), - [sym_binary_expression] = STATE(1449), - [sym_arithmetic_expansion] = STATE(407), - [sym_string_expansion] = STATE(407), - [sym_expansion] = STATE(407), - [aux_sym__literal_repeat1] = STATE(409), - [sym_parenthesized_expression] = STATE(1449), - [sym_simple_expansion] = STATE(407), - [anon_sym_LPAREN] = ACTIONS(299), - [anon_sym_GT_LPAREN] = ACTIONS(301), - [sym_number] = ACTIONS(303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(305), - [anon_sym_BANG] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(309), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(311), - [sym_word] = ACTIONS(303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), - [anon_sym_LT_LPAREN] = ACTIONS(301), - [sym_ansii_c_string] = ACTIONS(315), - [sym__special_character] = ACTIONS(317), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(319), - [sym_raw_string] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_test_operator] = ACTIONS(323), - }, - [2538] = { - [sym_unary_expression] = STATE(1450), - [sym_postfix_expression] = STATE(1450), - [sym_concatenation] = STATE(1450), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(1450), - [sym_binary_expression] = STATE(1450), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(1450), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [2539] = { - [anon_sym_PLUS_EQ] = ACTIONS(6266), - [anon_sym_EQ] = ACTIONS(6266), - [sym_comment] = ACTIONS(53), - }, - [2540] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(1454), - [sym_postfix_expression] = STATE(1454), - [sym_concatenation] = STATE(1454), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(1454), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(1454), - [sym_binary_expression] = STATE(1454), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [2541] = { - [anon_sym_then] = ACTIONS(6272), - [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, [2542] = { - [sym_subscript] = STATE(1458), - [anon_sym_0] = ACTIONS(6274), - [sym_variable_name] = ACTIONS(6276), - [anon_sym_STAR] = ACTIONS(6278), - [anon_sym_DASH] = ACTIONS(6280), - [anon_sym_QMARK] = ACTIONS(6278), - [aux_sym__simple_variable_name_token1] = ACTIONS(6274), - [anon_sym__] = ACTIONS(6274), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(6280), - [anon_sym_AT] = ACTIONS(6278), + [sym_unary_expression] = STATE(1453), + [sym_postfix_expression] = STATE(1453), + [sym_concatenation] = STATE(1453), + [sym_string] = STATE(410), + [sym_command_substitution] = STATE(410), + [sym_process_substitution] = STATE(410), + [sym__expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_arithmetic_expansion] = STATE(410), + [sym_string_expansion] = STATE(410), + [sym_expansion] = STATE(410), + [aux_sym__literal_repeat1] = STATE(413), + [sym_parenthesized_expression] = STATE(1453), + [sym_simple_expansion] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [sym_ansii_c_string] = ACTIONS(293), + [anon_sym_DQUOTE] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(297), + [sym__special_character] = ACTIONS(299), + [aux_sym_unary_expression_token1] = ACTIONS(301), + [anon_sym_BQUOTE] = ACTIONS(303), + [sym_raw_string] = ACTIONS(293), + [sym_number] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(307), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), + [sym_test_operator] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(315), + [sym_word] = ACTIONS(305), }, [2543] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6282), - [sym_comment] = ACTIONS(53), + [sym_subscript] = STATE(1454), + [anon_sym_QMARK] = ACTIONS(6268), + [anon_sym_POUND] = ACTIONS(6270), + [anon_sym_BANG] = ACTIONS(6270), + [sym_variable_name] = ACTIONS(6272), + [aux_sym__simple_variable_name_token1] = ACTIONS(6274), + [anon_sym_DASH] = ACTIONS(6276), + [anon_sym__] = ACTIONS(6274), + [anon_sym_DOLLAR] = ACTIONS(6276), + [anon_sym_AT] = ACTIONS(6268), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6274), + [anon_sym_STAR] = ACTIONS(6268), }, [2544] = { - [sym_expansion] = STATE(1464), - [sym_concatenation] = STATE(1465), - [sym_string] = STATE(1464), - [sym_command_substitution] = STATE(1464), - [sym_process_substitution] = STATE(1464), - [aux_sym__literal_repeat1] = STATE(1466), - [sym_simple_expansion] = STATE(1464), - [sym_arithmetic_expansion] = STATE(1464), - [sym_string_expansion] = STATE(1464), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(617), - [sym__special_character] = ACTIONS(619), - [sym_number] = ACTIONS(6284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(627), - [sym_raw_string] = ACTIONS(6286), - [sym_word] = ACTIONS(6284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(635), - [sym_ansii_c_string] = ACTIONS(6286), - [anon_sym_LT_LPAREN] = ACTIONS(617), + [sym_unary_expression] = STATE(1456), + [sym_postfix_expression] = STATE(1456), + [sym_concatenation] = STATE(1456), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(1456), + [sym_binary_expression] = STATE(1456), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(1456), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [2545] = { - [anon_sym_RPAREN] = ACTIONS(6288), - [sym_comment] = ACTIONS(53), + [anon_sym_PLUS_EQ] = ACTIONS(6262), + [anon_sym_EQ] = ACTIONS(6262), + [sym_comment] = ACTIONS(23), }, [2546] = { - [anon_sym_LF] = ACTIONS(6290), - [anon_sym_SEMI] = ACTIONS(6292), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6292), - [anon_sym_in] = ACTIONS(6294), - [anon_sym_SEMI_SEMI] = ACTIONS(6292), + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(1459), + [sym_postfix_expression] = STATE(1459), + [sym_concatenation] = STATE(1459), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(1459), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(1459), + [sym_binary_expression] = STATE(1459), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [2547] = { - [anon_sym_RPAREN] = ACTIONS(6296), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(23), + [anon_sym_then] = ACTIONS(6278), }, [2548] = { - [anon_sym_LF] = ACTIONS(6298), - [anon_sym_SEMI] = ACTIONS(6300), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6300), - [anon_sym_SEMI_SEMI] = ACTIONS(6300), + [sym_expansion] = STATE(1463), + [sym_concatenation] = STATE(1464), + [sym_string] = STATE(1463), + [sym_command_substitution] = STATE(1463), + [sym_process_substitution] = STATE(1463), + [aux_sym__literal_repeat1] = STATE(1465), + [sym_simple_expansion] = STATE(1463), + [sym_arithmetic_expansion] = STATE(1463), + [sym_string_expansion] = STATE(1463), + [sym_number] = ACTIONS(6280), + [sym_word] = ACTIONS(6280), + [anon_sym_DOLLAR] = ACTIONS(561), + [sym_ansii_c_string] = ACTIONS(6282), + [anon_sym_DQUOTE] = ACTIONS(565), + [anon_sym_LT_LPAREN] = ACTIONS(567), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(569), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(571), + [anon_sym_GT_LPAREN] = ACTIONS(567), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), + [anon_sym_BQUOTE] = ACTIONS(575), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [sym_raw_string] = ACTIONS(6282), }, [2549] = { - [anon_sym_LF] = ACTIONS(6302), - [anon_sym_SEMI] = ACTIONS(6304), + [anon_sym_AMP] = ACTIONS(6284), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6304), - [anon_sym_SEMI_SEMI] = ACTIONS(6304), + [anon_sym_LF] = ACTIONS(6286), + [anon_sym_SEMI] = ACTIONS(6284), + [anon_sym_SEMI_SEMI] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6288), }, [2550] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6306), - [sym_comment] = ACTIONS(53), + [sym_subscript] = STATE(1472), + [anon_sym_QMARK] = ACTIONS(6290), + [sym_variable_name] = ACTIONS(6292), + [aux_sym__simple_variable_name_token1] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6296), + [anon_sym__] = ACTIONS(6294), + [anon_sym_DOLLAR] = ACTIONS(6296), + [anon_sym_AT] = ACTIONS(6290), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6294), + [anon_sym_STAR] = ACTIONS(6290), }, [2551] = { - [anon_sym_LF] = ACTIONS(6308), - [anon_sym_SEMI] = ACTIONS(6310), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6310), - [anon_sym_SEMI_SEMI] = ACTIONS(6310), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6298), + [sym_comment] = ACTIONS(23), }, [2552] = { - [anon_sym_LF] = ACTIONS(6312), - [anon_sym_SEMI] = ACTIONS(6314), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6314), - [anon_sym_SEMI_SEMI] = ACTIONS(6314), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(6300), }, [2553] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(488), - [sym_command_substitution] = STATE(488), - [sym_process_substitution] = STATE(488), - [aux_sym_for_statement_repeat1] = STATE(508), - [sym_arithmetic_expansion] = STATE(488), - [sym_string_expansion] = STATE(488), - [sym_expansion] = STATE(488), - [aux_sym__literal_repeat1] = STATE(489), - [sym_simple_expansion] = STATE(488), - [anon_sym_GT_LPAREN] = ACTIONS(1476), - [sym_number] = ACTIONS(1156), - [anon_sym_LF] = ACTIONS(6316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(6318), - [anon_sym_DQUOTE] = ACTIONS(1484), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1486), - [sym_word] = ACTIONS(1156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), - [anon_sym_LT_LPAREN] = ACTIONS(1476), - [sym_ansii_c_string] = ACTIONS(1156), - [sym__special_character] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1490), - [sym_raw_string] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(6318), - [anon_sym_DOLLAR] = ACTIONS(1170), - [anon_sym_SEMI_SEMI] = ACTIONS(6318), + [sym_comment] = ACTIONS(23), + [anon_sym_RPAREN] = ACTIONS(6302), }, [2554] = { - [sym_unary_expression] = STATE(2557), - [sym_postfix_expression] = STATE(2557), - [sym_concatenation] = STATE(2557), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(2557), - [sym_binary_expression] = STATE(2557), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(2557), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6320), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(6304), + [anon_sym_LF] = ACTIONS(6306), + [anon_sym_SEMI] = ACTIONS(6304), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI_SEMI] = ACTIONS(6304), }, [2555] = { - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [sym_last_case_item] = STATE(1512), - [sym_arithmetic_expansion] = STATE(262), - [sym_string_expansion] = STATE(262), - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(308), - [aux_sym__literal_repeat1] = STATE(265), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(308), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(6308), + [anon_sym_LF] = ACTIONS(6310), + [anon_sym_SEMI] = ACTIONS(6308), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI_SEMI] = ACTIONS(6308), }, [2556] = { - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [sym_last_case_item] = STATE(1513), - [sym_arithmetic_expansion] = STATE(262), - [sym_string_expansion] = STATE(262), - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(308), - [aux_sym__literal_repeat1] = STATE(265), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(308), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6312), + [sym_comment] = ACTIONS(23), }, [2557] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6322), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(6314), + [anon_sym_LF] = ACTIONS(6316), + [anon_sym_SEMI] = ACTIONS(6314), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI_SEMI] = ACTIONS(6314), }, [2558] = { - [sym_unary_expression] = STATE(2561), - [sym_postfix_expression] = STATE(2561), - [sym_concatenation] = STATE(2561), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(2561), - [sym_binary_expression] = STATE(2561), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(2561), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6322), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(6318), + [anon_sym_LF] = ACTIONS(6320), + [anon_sym_SEMI] = ACTIONS(6318), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI_SEMI] = ACTIONS(6318), }, [2559] = { - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [sym_last_case_item] = STATE(1518), - [sym_arithmetic_expansion] = STATE(262), - [sym_string_expansion] = STATE(262), - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(308), - [aux_sym__literal_repeat1] = STATE(265), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(308), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1118), + [sym_concatenation] = STATE(508), + [sym_string] = STATE(488), + [sym_command_substitution] = STATE(488), + [sym_process_substitution] = STATE(488), + [aux_sym_for_statement_repeat1] = STATE(508), + [sym_arithmetic_expansion] = STATE(488), + [sym_string_expansion] = STATE(488), + [sym_expansion] = STATE(488), + [aux_sym__literal_repeat1] = STATE(490), + [sym_simple_expansion] = STATE(488), + [anon_sym_LT_LPAREN] = ACTIONS(1400), + [sym_ansii_c_string] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1402), + [anon_sym_LF] = ACTIONS(6322), + [anon_sym_SEMI] = ACTIONS(6324), + [sym__special_character] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_raw_string] = ACTIONS(1086), + [sym_number] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(6324), + [anon_sym_DOLLAR] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_LPAREN] = ACTIONS(1400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1414), + [anon_sym_SEMI_SEMI] = ACTIONS(6324), + [sym_word] = ACTIONS(1086), }, [2560] = { - [sym_concatenation] = STATE(264), - [sym_string] = STATE(262), - [sym_command_substitution] = STATE(262), - [sym_process_substitution] = STATE(262), - [sym_last_case_item] = STATE(1519), - [sym_arithmetic_expansion] = STATE(262), - [sym_string_expansion] = STATE(262), - [sym_expansion] = STATE(262), - [sym_case_item] = STATE(308), - [aux_sym__literal_repeat1] = STATE(265), - [sym_simple_expansion] = STATE(262), - [aux_sym_case_statement_repeat1] = STATE(308), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_number] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1106), - [sym_word] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1110), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [sym_ansii_c_string] = ACTIONS(1344), - [sym__special_character] = ACTIONS(1346), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1118), - }, - [2561] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6324), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), - }, - [2562] = { [sym_unary_expression] = STATE(2563), [sym_postfix_expression] = STATE(2563), [sym_concatenation] = STATE(2563), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), [sym__expression] = STATE(2563), [sym_binary_expression] = STATE(2563), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), [sym_parenthesized_expression] = STATE(2563), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6324), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [sym__special_character] = ACTIONS(215), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6326), + [sym_comment] = ACTIONS(23), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(223), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [sym_word] = ACTIONS(221), + }, + [2561] = { + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [sym_last_case_item] = STATE(1518), + [sym_arithmetic_expansion] = STATE(263), + [sym_string_expansion] = STATE(263), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(310), + [aux_sym__literal_repeat1] = STATE(267), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(310), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), + }, + [2562] = { + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [sym_last_case_item] = STATE(1519), + [sym_arithmetic_expansion] = STATE(263), + [sym_string_expansion] = STATE(263), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(310), + [aux_sym__literal_repeat1] = STATE(267), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(310), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, [2563] = { - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_RPAREN_RPAREN] = ACTIONS(6326), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_EQ_TILDE] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_AMP_AMP] = ACTIONS(457), - [sym_test_operator] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6328), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [2564] = { - [aux_sym_concatenation_repeat1] = STATE(794), - [sym_comment] = ACTIONS(3), - [sym__concat] = ACTIONS(6328), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), + [sym_unary_expression] = STATE(2567), + [sym_postfix_expression] = STATE(2567), + [sym_concatenation] = STATE(2567), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(2567), + [sym_binary_expression] = STATE(2567), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(2567), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [sym__special_character] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6328), + [sym_comment] = ACTIONS(23), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(223), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [sym_word] = ACTIONS(221), }, [2565] = { - [aux_sym_concatenation_repeat1] = STATE(1134), - [anon_sym_LT_LT_DASH] = ACTIONS(475), - [anon_sym_AMP_GT_GT] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_LT_LT] = ACTIONS(475), - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_AMP_GT] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [anon_sym_LT_LT_LT] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_GT_AMP] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_esac] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_LT_AMP] = ACTIONS(475), - [sym__concat] = ACTIONS(6330), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [sym_last_case_item] = STATE(1524), + [sym_arithmetic_expansion] = STATE(263), + [sym_string_expansion] = STATE(263), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(310), + [aux_sym__literal_repeat1] = STATE(267), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(310), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, [2566] = { - [aux_sym_concatenation_repeat1] = STATE(1200), - [anon_sym_RPAREN] = ACTIONS(479), - [sym__concat] = ACTIONS(6332), - [anon_sym_PIPE] = ACTIONS(479), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(266), + [sym_string] = STATE(263), + [sym_command_substitution] = STATE(263), + [sym_process_substitution] = STATE(263), + [sym_last_case_item] = STATE(1525), + [sym_arithmetic_expansion] = STATE(263), + [sym_string_expansion] = STATE(263), + [sym_expansion] = STATE(263), + [sym_case_item] = STATE(310), + [aux_sym__literal_repeat1] = STATE(267), + [sym_simple_expansion] = STATE(263), + [aux_sym_case_statement_repeat1] = STATE(310), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [sym_ansii_c_string] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__special_character] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1342), + [sym_number] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1042), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [sym_word] = ACTIONS(1346), }, [2567] = { - [sym_unary_expression] = STATE(1541), - [sym_postfix_expression] = STATE(1541), - [sym_concatenation] = STATE(1541), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(1541), - [sym_binary_expression] = STATE(1541), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(1541), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6330), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [2568] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1542), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1543), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [sym_unary_expression] = STATE(2569), + [sym_postfix_expression] = STATE(2569), + [sym_concatenation] = STATE(2569), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(2569), + [sym_binary_expression] = STATE(2569), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(2569), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [sym__special_character] = ACTIONS(215), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6330), + [sym_comment] = ACTIONS(23), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(223), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [sym_word] = ACTIONS(221), }, [2569] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1544), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_DASH] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_RPAREN_RPAREN] = ACTIONS(6332), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(479), + [anon_sym_EQ_TILDE] = ACTIONS(485), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(479), + [sym_test_operator] = ACTIONS(479), }, [2570] = { - [sym_subscript] = STATE(1546), - [anon_sym_0] = ACTIONS(6334), - [anon_sym_BANG] = ACTIONS(6336), - [sym_variable_name] = ACTIONS(6338), - [anon_sym_STAR] = ACTIONS(6340), - [anon_sym_DASH] = ACTIONS(6342), - [anon_sym_POUND] = ACTIONS(6336), - [anon_sym_QMARK] = ACTIONS(6340), - [aux_sym__simple_variable_name_token1] = ACTIONS(6334), - [anon_sym__] = ACTIONS(6334), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(6342), - [anon_sym_AT] = ACTIONS(6340), + [aux_sym_concatenation_repeat1] = STATE(796), + [anon_sym_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(6334), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [sym_comment] = ACTIONS(3), }, [2571] = { - [anon_sym_PLUS_EQ] = ACTIONS(6344), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(6344), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1136), + [anon_sym_LT_LT_DASH] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [anon_sym_LF] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [anon_sym_LT_LT_LT] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_esac] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [sym__concat] = ACTIONS(6336), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(435), + [anon_sym_PIPE_AMP] = ACTIONS(435), }, [2572] = { - [anon_sym_AMP_GT_GT] = ACTIONS(6346), - [anon_sym_GT_AMP] = ACTIONS(6346), - [anon_sym_LT] = ACTIONS(6348), - [anon_sym_LT_AMP] = ACTIONS(6346), - [anon_sym_GT_GT] = ACTIONS(6346), - [sym_comment] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(6348), - [anon_sym_AMP_GT] = ACTIONS(6348), + [aux_sym_concatenation_repeat1] = STATE(1169), + [anon_sym_RPAREN] = ACTIONS(439), + [sym__concat] = ACTIONS(6338), + [anon_sym_PIPE] = ACTIONS(439), + [sym_comment] = ACTIONS(23), }, [2573] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1550), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1546), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(195), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, [2574] = { - [anon_sym_EQ] = ACTIONS(6344), - [anon_sym_PLUS_EQ] = ACTIONS(6344), - [sym_comment] = ACTIONS(53), + [sym_unary_expression] = STATE(1547), + [sym_postfix_expression] = STATE(1547), + [sym_concatenation] = STATE(1547), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(1547), + [sym_binary_expression] = STATE(1547), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(1547), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [2575] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(1552), - [sym_postfix_expression] = STATE(1552), - [sym_concatenation] = STATE(1552), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(1552), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(1552), - [sym_binary_expression] = STATE(1552), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(6340), + [sym_comment] = ACTIONS(23), }, [2576] = { - [sym_subscript] = STATE(1555), - [anon_sym_0] = ACTIONS(6350), - [sym_variable_name] = ACTIONS(6352), - [anon_sym_STAR] = ACTIONS(6354), - [anon_sym_DASH] = ACTIONS(6356), - [anon_sym_QMARK] = ACTIONS(6354), - [aux_sym__simple_variable_name_token1] = ACTIONS(6350), - [anon_sym__] = ACTIONS(6350), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(6356), - [anon_sym_AT] = ACTIONS(6354), + [anon_sym_AMP_GT_GT] = ACTIONS(6342), + [anon_sym_GT_AMP] = ACTIONS(6342), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(6344), + [anon_sym_LT_AMP] = ACTIONS(6342), + [anon_sym_GT_GT] = ACTIONS(6342), + [anon_sym_GT] = ACTIONS(6344), + [anon_sym_AMP_GT] = ACTIONS(6344), }, [2577] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6358), - [sym_comment] = ACTIONS(53), - }, - [2578] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6360), - [sym_comment] = ACTIONS(53), - }, - [2579] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(1587), - [sym_postfix_expression] = STATE(1587), - [sym_concatenation] = STATE(1587), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(1587), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(1587), - [sym_binary_expression] = STATE(1587), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [2580] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1588), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1589), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1552), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(73), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), - [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + }, + [2578] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1553), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1554), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(73), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2581] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1590), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), - [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + }, + [2579] = { + [sym_subscript] = STATE(1555), + [anon_sym_QMARK] = ACTIONS(6346), + [anon_sym_POUND] = ACTIONS(6348), + [anon_sym_BANG] = ACTIONS(6348), + [sym_variable_name] = ACTIONS(6350), + [aux_sym__simple_variable_name_token1] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym__] = ACTIONS(6352), + [anon_sym_DOLLAR] = ACTIONS(6354), + [anon_sym_AT] = ACTIONS(6346), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6352), + [anon_sym_STAR] = ACTIONS(6346), + }, + [2580] = { + [anon_sym_EQ] = ACTIONS(6340), + [anon_sym_PLUS_EQ] = ACTIONS(6340), + [sym_comment] = ACTIONS(23), + }, + [2581] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(1557), + [sym_postfix_expression] = STATE(1557), + [sym_concatenation] = STATE(1557), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(1557), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [2582] = { - [sym_subscript] = STATE(1592), - [anon_sym_0] = ACTIONS(6362), - [anon_sym_POUND] = ACTIONS(6364), - [anon_sym_QMARK] = ACTIONS(6366), - [aux_sym__simple_variable_name_token1] = ACTIONS(6362), - [anon_sym__] = ACTIONS(6362), - [anon_sym_BANG] = ACTIONS(6364), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6368), - [anon_sym_STAR] = ACTIONS(6366), - [anon_sym_DASH] = ACTIONS(6370), - [anon_sym_DOLLAR] = ACTIONS(6370), - [anon_sym_AT] = ACTIONS(6366), + [sym_subscript] = STATE(1564), + [anon_sym_QMARK] = ACTIONS(6356), + [sym_variable_name] = ACTIONS(6358), + [aux_sym__simple_variable_name_token1] = ACTIONS(6360), + [anon_sym_DASH] = ACTIONS(6362), + [anon_sym__] = ACTIONS(6360), + [anon_sym_DOLLAR] = ACTIONS(6362), + [anon_sym_AT] = ACTIONS(6356), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6360), + [anon_sym_STAR] = ACTIONS(6356), }, [2583] = { - [anon_sym_PLUS_EQ] = ACTIONS(6372), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(6372), - [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6364), + [sym_comment] = ACTIONS(23), }, [2584] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1595), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6366), + [sym_comment] = ACTIONS(23), + }, + [2585] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1592), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2585] = { - [anon_sym_EQ] = ACTIONS(6372), - [anon_sym_PLUS_EQ] = ACTIONS(6372), - [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [2586] = { - [sym_subscript] = STATE(1599), - [anon_sym_0] = ACTIONS(6374), - [anon_sym_QMARK] = ACTIONS(6376), - [aux_sym__simple_variable_name_token1] = ACTIONS(6374), - [anon_sym__] = ACTIONS(6374), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6378), - [anon_sym_STAR] = ACTIONS(6376), - [anon_sym_DASH] = ACTIONS(6380), - [anon_sym_DOLLAR] = ACTIONS(6380), - [anon_sym_AT] = ACTIONS(6376), + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(1593), + [sym_postfix_expression] = STATE(1593), + [sym_concatenation] = STATE(1593), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(1593), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(1593), + [sym_binary_expression] = STATE(1593), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [2587] = { - [anon_sym_EQ] = ACTIONS(6382), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(6368), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(6368), + [sym_comment] = ACTIONS(23), }, [2588] = { - [anon_sym_EQ] = ACTIONS(6384), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2589] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(1631), - [sym_postfix_expression] = STATE(1631), - [sym_concatenation] = STATE(1631), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(1631), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [2590] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1632), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1633), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1597), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2591] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1634), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2589] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1598), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1599), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), + }, + [2590] = { + [sym_subscript] = STATE(1600), + [anon_sym_QMARK] = ACTIONS(6370), + [anon_sym_DOLLAR] = ACTIONS(6372), + [anon_sym_AT] = ACTIONS(6370), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6374), + [anon_sym_BANG] = ACTIONS(6376), + [anon_sym_POUND] = ACTIONS(6376), + [sym_variable_name] = ACTIONS(6378), + [aux_sym__simple_variable_name_token1] = ACTIONS(6374), + [anon_sym_DASH] = ACTIONS(6372), + [anon_sym__] = ACTIONS(6374), + [anon_sym_STAR] = ACTIONS(6370), + }, + [2591] = { + [anon_sym_EQ] = ACTIONS(6368), + [anon_sym_PLUS_EQ] = ACTIONS(6368), + [sym_comment] = ACTIONS(23), }, [2592] = { - [sym_subscript] = STATE(1636), - [anon_sym_0] = ACTIONS(6386), - [anon_sym_POUND] = ACTIONS(6388), - [anon_sym_QMARK] = ACTIONS(6390), - [aux_sym__simple_variable_name_token1] = ACTIONS(6386), - [anon_sym__] = ACTIONS(6386), - [anon_sym_BANG] = ACTIONS(6388), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6392), - [anon_sym_STAR] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6394), - [anon_sym_DOLLAR] = ACTIONS(6394), - [anon_sym_AT] = ACTIONS(6390), + [sym_subscript] = STATE(1608), + [anon_sym_QMARK] = ACTIONS(6380), + [anon_sym_DOLLAR] = ACTIONS(6382), + [anon_sym_AT] = ACTIONS(6380), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6384), + [sym_variable_name] = ACTIONS(6386), + [aux_sym__simple_variable_name_token1] = ACTIONS(6384), + [anon_sym_DASH] = ACTIONS(6382), + [anon_sym__] = ACTIONS(6384), + [anon_sym_STAR] = ACTIONS(6380), }, [2593] = { - [anon_sym_PLUS_EQ] = ACTIONS(6396), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(6396), - [sym_comment] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(6388), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), }, [2594] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1639), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [anon_sym_EQ] = ACTIONS(6390), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2595] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1636), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2595] = { - [anon_sym_PLUS_EQ] = ACTIONS(6396), - [anon_sym_EQ] = ACTIONS(6396), - [sym_comment] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [2596] = { - [sym_subscript] = STATE(1643), - [anon_sym_0] = ACTIONS(6398), - [anon_sym_QMARK] = ACTIONS(6400), - [aux_sym__simple_variable_name_token1] = ACTIONS(6398), - [anon_sym__] = ACTIONS(6398), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6402), - [anon_sym_STAR] = ACTIONS(6400), - [anon_sym_DASH] = ACTIONS(6404), - [anon_sym_DOLLAR] = ACTIONS(6404), - [anon_sym_AT] = ACTIONS(6400), + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(1637), + [sym_postfix_expression] = STATE(1637), + [sym_concatenation] = STATE(1637), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(1637), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [2597] = { - [anon_sym_EQ] = ACTIONS(6406), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(6392), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(6392), + [sym_comment] = ACTIONS(23), }, [2598] = { - [anon_sym_EQ] = ACTIONS(6408), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2599] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(1675), - [sym_postfix_expression] = STATE(1675), - [sym_concatenation] = STATE(1675), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(1675), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [2600] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1676), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1677), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1641), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2601] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1678), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2599] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1642), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1643), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), + }, + [2600] = { + [sym_subscript] = STATE(1644), + [anon_sym_QMARK] = ACTIONS(6394), + [anon_sym_DOLLAR] = ACTIONS(6396), + [anon_sym_AT] = ACTIONS(6394), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6398), + [anon_sym_BANG] = ACTIONS(6400), + [anon_sym_POUND] = ACTIONS(6400), + [sym_variable_name] = ACTIONS(6402), + [aux_sym__simple_variable_name_token1] = ACTIONS(6398), + [anon_sym_DASH] = ACTIONS(6396), + [anon_sym__] = ACTIONS(6398), + [anon_sym_STAR] = ACTIONS(6394), + }, + [2601] = { + [anon_sym_PLUS_EQ] = ACTIONS(6392), + [anon_sym_EQ] = ACTIONS(6392), + [sym_comment] = ACTIONS(23), }, [2602] = { - [sym_subscript] = STATE(1680), - [anon_sym_0] = ACTIONS(6410), - [anon_sym_POUND] = ACTIONS(6412), - [anon_sym_QMARK] = ACTIONS(6414), - [aux_sym__simple_variable_name_token1] = ACTIONS(6410), - [anon_sym__] = ACTIONS(6410), - [anon_sym_BANG] = ACTIONS(6412), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6416), - [anon_sym_STAR] = ACTIONS(6414), - [anon_sym_DASH] = ACTIONS(6418), - [anon_sym_DOLLAR] = ACTIONS(6418), - [anon_sym_AT] = ACTIONS(6414), + [sym_subscript] = STATE(1652), + [anon_sym_QMARK] = ACTIONS(6404), + [anon_sym_DOLLAR] = ACTIONS(6406), + [anon_sym_AT] = ACTIONS(6404), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6408), + [sym_variable_name] = ACTIONS(6410), + [aux_sym__simple_variable_name_token1] = ACTIONS(6408), + [anon_sym_DASH] = ACTIONS(6406), + [anon_sym__] = ACTIONS(6408), + [anon_sym_STAR] = ACTIONS(6404), }, [2603] = { - [anon_sym_PLUS_EQ] = ACTIONS(6420), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(6420), - [sym_comment] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(6412), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), }, [2604] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1683), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(6414), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2605] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1680), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(195), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2605] = { - [anon_sym_EQ] = ACTIONS(6420), - [anon_sym_PLUS_EQ] = ACTIONS(6420), - [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, [2606] = { - [sym_subscript] = STATE(1687), - [anon_sym_0] = ACTIONS(6422), - [anon_sym_QMARK] = ACTIONS(6424), - [aux_sym__simple_variable_name_token1] = ACTIONS(6422), - [anon_sym__] = ACTIONS(6422), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6426), - [anon_sym_STAR] = ACTIONS(6424), - [anon_sym_DASH] = ACTIONS(6428), - [anon_sym_DOLLAR] = ACTIONS(6428), - [anon_sym_AT] = ACTIONS(6424), + [sym_unary_expression] = STATE(1681), + [sym_postfix_expression] = STATE(1681), + [sym_concatenation] = STATE(1681), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(1681), + [sym_binary_expression] = STATE(1681), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(1681), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [2607] = { - [anon_sym_EQ] = ACTIONS(6430), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(6416), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(6416), + [sym_comment] = ACTIONS(23), }, [2608] = { - [anon_sym_EQ] = ACTIONS(6432), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2609] = { - [sym_unary_expression] = STATE(1719), - [sym_postfix_expression] = STATE(1719), - [sym_concatenation] = STATE(1719), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(1719), - [sym_binary_expression] = STATE(1719), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(1719), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [2610] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1720), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1721), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1685), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2611] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1722), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2609] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1686), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1687), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + }, + [2610] = { + [sym_subscript] = STATE(1688), + [anon_sym_QMARK] = ACTIONS(6418), + [anon_sym_POUND] = ACTIONS(6420), + [anon_sym_BANG] = ACTIONS(6420), + [sym_variable_name] = ACTIONS(6422), + [aux_sym__simple_variable_name_token1] = ACTIONS(6424), + [anon_sym_DASH] = ACTIONS(6426), + [anon_sym__] = ACTIONS(6424), + [anon_sym_DOLLAR] = ACTIONS(6426), + [anon_sym_AT] = ACTIONS(6418), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6424), + [anon_sym_STAR] = ACTIONS(6418), + }, + [2611] = { + [anon_sym_EQ] = ACTIONS(6416), + [anon_sym_PLUS_EQ] = ACTIONS(6416), + [sym_comment] = ACTIONS(23), }, [2612] = { - [sym_subscript] = STATE(1724), - [anon_sym_0] = ACTIONS(6434), - [anon_sym_BANG] = ACTIONS(6436), - [sym_variable_name] = ACTIONS(6438), - [anon_sym_STAR] = ACTIONS(6440), - [anon_sym_DASH] = ACTIONS(6442), - [anon_sym_POUND] = ACTIONS(6436), - [anon_sym_QMARK] = ACTIONS(6440), - [aux_sym__simple_variable_name_token1] = ACTIONS(6434), - [anon_sym__] = ACTIONS(6434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(6442), - [anon_sym_AT] = ACTIONS(6440), + [sym_subscript] = STATE(1696), + [anon_sym_QMARK] = ACTIONS(6428), + [sym_variable_name] = ACTIONS(6430), + [aux_sym__simple_variable_name_token1] = ACTIONS(6432), + [anon_sym_DASH] = ACTIONS(6434), + [anon_sym__] = ACTIONS(6432), + [anon_sym_DOLLAR] = ACTIONS(6434), + [anon_sym_AT] = ACTIONS(6428), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6432), + [anon_sym_STAR] = ACTIONS(6428), }, [2613] = { - [anon_sym_PLUS_EQ] = ACTIONS(6444), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(6444), - [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6436), + [sym_comment] = ACTIONS(23), }, [2614] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1727), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6438), + [sym_comment] = ACTIONS(23), + }, + [2615] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1724), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(195), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2615] = { - [anon_sym_EQ] = ACTIONS(6444), - [anon_sym_PLUS_EQ] = ACTIONS(6444), - [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, [2616] = { - [sym_subscript] = STATE(1731), - [anon_sym_0] = ACTIONS(6446), - [sym_variable_name] = ACTIONS(6448), - [anon_sym_STAR] = ACTIONS(6450), - [anon_sym_DASH] = ACTIONS(6452), - [anon_sym_QMARK] = ACTIONS(6450), - [aux_sym__simple_variable_name_token1] = ACTIONS(6446), - [anon_sym__] = ACTIONS(6446), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(6452), - [anon_sym_AT] = ACTIONS(6450), + [sym_unary_expression] = STATE(1725), + [sym_postfix_expression] = STATE(1725), + [sym_concatenation] = STATE(1725), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(1725), + [sym_binary_expression] = STATE(1725), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(1725), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [2617] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6454), - [sym_comment] = ACTIONS(53), + [anon_sym_PLUS_EQ] = ACTIONS(6440), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(6440), + [sym_comment] = ACTIONS(23), }, [2618] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6456), - [sym_comment] = ACTIONS(53), - }, - [2619] = { - [sym_unary_expression] = STATE(1763), - [sym_postfix_expression] = STATE(1763), - [sym_concatenation] = STATE(1763), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(1763), - [sym_binary_expression] = STATE(1763), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(1763), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [2620] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1764), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1765), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1729), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2621] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1766), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), + [2619] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1730), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1731), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_AMP_GT] = ACTIONS(27), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + }, + [2620] = { + [sym_subscript] = STATE(1732), + [anon_sym_QMARK] = ACTIONS(6442), + [anon_sym_POUND] = ACTIONS(6444), + [anon_sym_BANG] = ACTIONS(6444), + [sym_variable_name] = ACTIONS(6446), + [aux_sym__simple_variable_name_token1] = ACTIONS(6448), + [anon_sym_DASH] = ACTIONS(6450), + [anon_sym__] = ACTIONS(6448), + [anon_sym_DOLLAR] = ACTIONS(6450), + [anon_sym_AT] = ACTIONS(6442), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6448), + [anon_sym_STAR] = ACTIONS(6442), + }, + [2621] = { + [anon_sym_EQ] = ACTIONS(6440), + [anon_sym_PLUS_EQ] = ACTIONS(6440), + [sym_comment] = ACTIONS(23), }, [2622] = { - [sym_subscript] = STATE(1768), - [anon_sym_0] = ACTIONS(6458), - [anon_sym_BANG] = ACTIONS(6460), - [sym_variable_name] = ACTIONS(6462), - [anon_sym_STAR] = ACTIONS(6464), - [anon_sym_DASH] = ACTIONS(6466), - [anon_sym_POUND] = ACTIONS(6460), - [anon_sym_QMARK] = ACTIONS(6464), - [aux_sym__simple_variable_name_token1] = ACTIONS(6458), - [anon_sym__] = ACTIONS(6458), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(6466), - [anon_sym_AT] = ACTIONS(6464), + [sym_subscript] = STATE(1740), + [anon_sym_QMARK] = ACTIONS(6452), + [sym_variable_name] = ACTIONS(6454), + [aux_sym__simple_variable_name_token1] = ACTIONS(6456), + [anon_sym_DASH] = ACTIONS(6458), + [anon_sym__] = ACTIONS(6456), + [anon_sym_DOLLAR] = ACTIONS(6458), + [anon_sym_AT] = ACTIONS(6452), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6456), + [anon_sym_STAR] = ACTIONS(6452), }, [2623] = { - [anon_sym_PLUS_EQ] = ACTIONS(6468), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(6468), - [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6460), + [sym_comment] = ACTIONS(23), }, [2624] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1771), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6462), + [sym_comment] = ACTIONS(23), + }, + [2625] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1768), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2625] = { - [anon_sym_EQ] = ACTIONS(6468), - [anon_sym_PLUS_EQ] = ACTIONS(6468), - [sym_comment] = ACTIONS(53), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [2626] = { - [sym_subscript] = STATE(1775), - [anon_sym_0] = ACTIONS(6470), - [sym_variable_name] = ACTIONS(6472), - [anon_sym_STAR] = ACTIONS(6474), - [anon_sym_DASH] = ACTIONS(6476), - [anon_sym_QMARK] = ACTIONS(6474), - [aux_sym__simple_variable_name_token1] = ACTIONS(6470), - [anon_sym__] = ACTIONS(6470), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(6476), - [anon_sym_AT] = ACTIONS(6474), + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(1769), + [sym_postfix_expression] = STATE(1769), + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(1769), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(1769), + [sym_binary_expression] = STATE(1769), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, [2627] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6478), - [sym_comment] = ACTIONS(53), + [anon_sym_PLUS_EQ] = ACTIONS(6464), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(6464), + [sym_comment] = ACTIONS(23), }, [2628] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6480), - [sym_comment] = ACTIONS(53), + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1773), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, [2629] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(1807), - [sym_postfix_expression] = STATE(1807), - [sym_concatenation] = STATE(1807), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(1807), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(1807), - [sym_binary_expression] = STATE(1807), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), - }, - [2630] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1808), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1809), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1774), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1775), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), + }, + [2630] = { + [sym_subscript] = STATE(1776), + [anon_sym_QMARK] = ACTIONS(6466), + [anon_sym_DOLLAR] = ACTIONS(6468), + [anon_sym_AT] = ACTIONS(6466), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6470), + [anon_sym_BANG] = ACTIONS(6472), + [anon_sym_POUND] = ACTIONS(6472), + [sym_variable_name] = ACTIONS(6474), + [aux_sym__simple_variable_name_token1] = ACTIONS(6470), + [anon_sym_DASH] = ACTIONS(6468), + [anon_sym__] = ACTIONS(6470), + [anon_sym_STAR] = ACTIONS(6466), }, [2631] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1810), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_PLUS_EQ] = ACTIONS(6464), + [sym_comment] = ACTIONS(23), + }, + [2632] = { + [sym_subscript] = STATE(1784), + [anon_sym_QMARK] = ACTIONS(6476), + [anon_sym_DOLLAR] = ACTIONS(6478), + [anon_sym_AT] = ACTIONS(6476), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6480), + [sym_variable_name] = ACTIONS(6482), + [aux_sym__simple_variable_name_token1] = ACTIONS(6480), + [anon_sym_DASH] = ACTIONS(6478), + [anon_sym__] = ACTIONS(6480), + [anon_sym_STAR] = ACTIONS(6476), + }, + [2633] = { + [anon_sym_EQ] = ACTIONS(6484), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2634] = { + [anon_sym_EQ] = ACTIONS(6486), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2635] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1812), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), + }, + [2636] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(1813), + [sym_postfix_expression] = STATE(1813), + [sym_concatenation] = STATE(1813), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(1813), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(1813), + [sym_binary_expression] = STATE(1813), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), + }, + [2637] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1816), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2632] = { - [sym_subscript] = STATE(1812), - [anon_sym_0] = ACTIONS(6482), - [anon_sym_POUND] = ACTIONS(6484), - [anon_sym_QMARK] = ACTIONS(6486), - [aux_sym__simple_variable_name_token1] = ACTIONS(6482), - [anon_sym__] = ACTIONS(6482), - [anon_sym_BANG] = ACTIONS(6484), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6488), - [anon_sym_STAR] = ACTIONS(6486), - [anon_sym_DASH] = ACTIONS(6490), + [2638] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1818), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), + }, + [2639] = { + [sym_subscript] = STATE(1819), + [anon_sym_QMARK] = ACTIONS(6488), [anon_sym_DOLLAR] = ACTIONS(6490), - [anon_sym_AT] = ACTIONS(6486), + [anon_sym_AT] = ACTIONS(6488), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6492), + [anon_sym_BANG] = ACTIONS(6494), + [anon_sym_POUND] = ACTIONS(6494), + [sym_variable_name] = ACTIONS(6496), + [aux_sym__simple_variable_name_token1] = ACTIONS(6492), + [anon_sym_DASH] = ACTIONS(6490), + [anon_sym__] = ACTIONS(6492), + [anon_sym_STAR] = ACTIONS(6488), }, - [2633] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1814), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), + [2640] = { + [sym_subscript] = STATE(1826), + [anon_sym_QMARK] = ACTIONS(6498), + [anon_sym_DOLLAR] = ACTIONS(6500), + [anon_sym_AT] = ACTIONS(6498), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6502), + [sym_variable_name] = ACTIONS(6504), + [aux_sym__simple_variable_name_token1] = ACTIONS(6502), + [anon_sym_DASH] = ACTIONS(6500), + [anon_sym__] = ACTIONS(6502), + [anon_sym_STAR] = ACTIONS(6498), + }, + [2641] = { + [anon_sym_EQ] = ACTIONS(6506), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2642] = { + [anon_sym_EQ] = ACTIONS(6508), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2643] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1853), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(195), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2634] = { - [sym_subscript] = STATE(1818), - [anon_sym_0] = ACTIONS(6492), - [anon_sym_QMARK] = ACTIONS(6494), - [aux_sym__simple_variable_name_token1] = ACTIONS(6492), - [anon_sym__] = ACTIONS(6492), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6496), - [anon_sym_STAR] = ACTIONS(6494), - [anon_sym_DASH] = ACTIONS(6498), - [anon_sym_DOLLAR] = ACTIONS(6498), - [anon_sym_AT] = ACTIONS(6494), - }, - [2635] = { - [anon_sym_EQ] = ACTIONS(6500), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2636] = { - [anon_sym_EQ] = ACTIONS(6502), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2637] = { - [sym_unary_expression] = STATE(1848), - [sym_postfix_expression] = STATE(1848), - [sym_concatenation] = STATE(1848), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(1848), - [sym_binary_expression] = STATE(1848), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(1848), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2644] = { + [sym_unary_expression] = STATE(1854), + [sym_postfix_expression] = STATE(1854), + [sym_concatenation] = STATE(1854), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(1854), + [sym_binary_expression] = STATE(1854), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(1854), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2638] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1849), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1850), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2645] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1857), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2639] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1851), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2646] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1858), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1859), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2640] = { - [sym_subscript] = STATE(1853), - [anon_sym_0] = ACTIONS(6504), - [anon_sym_BANG] = ACTIONS(6506), - [sym_variable_name] = ACTIONS(6508), - [anon_sym_STAR] = ACTIONS(6510), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_POUND] = ACTIONS(6506), + [2647] = { + [sym_subscript] = STATE(1860), [anon_sym_QMARK] = ACTIONS(6510), - [aux_sym__simple_variable_name_token1] = ACTIONS(6504), - [anon_sym__] = ACTIONS(6504), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(6512), + [anon_sym_POUND] = ACTIONS(6512), + [anon_sym_BANG] = ACTIONS(6512), + [sym_variable_name] = ACTIONS(6514), + [aux_sym__simple_variable_name_token1] = ACTIONS(6516), + [anon_sym_DASH] = ACTIONS(6518), + [anon_sym__] = ACTIONS(6516), + [anon_sym_DOLLAR] = ACTIONS(6518), [anon_sym_AT] = ACTIONS(6510), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6516), + [anon_sym_STAR] = ACTIONS(6510), }, - [2641] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1855), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2642] = { - [sym_subscript] = STATE(1859), - [anon_sym_0] = ACTIONS(6514), - [sym_variable_name] = ACTIONS(6516), - [anon_sym_STAR] = ACTIONS(6518), - [anon_sym_DASH] = ACTIONS(6520), - [anon_sym_QMARK] = ACTIONS(6518), - [aux_sym__simple_variable_name_token1] = ACTIONS(6514), - [anon_sym__] = ACTIONS(6514), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(6520), - [anon_sym_AT] = ACTIONS(6518), - }, - [2643] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6522), - [sym_comment] = ACTIONS(53), + [2648] = { + [sym_subscript] = STATE(1867), + [anon_sym_QMARK] = ACTIONS(6520), + [sym_variable_name] = ACTIONS(6522), + [aux_sym__simple_variable_name_token1] = ACTIONS(6524), + [anon_sym_DASH] = ACTIONS(6526), + [anon_sym__] = ACTIONS(6524), + [anon_sym_DOLLAR] = ACTIONS(6526), + [anon_sym_AT] = ACTIONS(6520), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6524), + [anon_sym_STAR] = ACTIONS(6520), }, - [2644] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6524), - [sym_comment] = ACTIONS(53), + [2649] = { + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6528), + [sym_comment] = ACTIONS(23), }, - [2645] = { - [sym_unary_expression] = STATE(1889), - [sym_postfix_expression] = STATE(1889), - [sym_concatenation] = STATE(1889), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(1889), - [sym_binary_expression] = STATE(1889), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(1889), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [2650] = { + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6530), + [sym_comment] = ACTIONS(23), }, - [2646] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1890), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1891), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2651] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1894), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(195), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2647] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1892), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2652] = { + [sym_unary_expression] = STATE(1895), + [sym_postfix_expression] = STATE(1895), + [sym_concatenation] = STATE(1895), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(1895), + [sym_binary_expression] = STATE(1895), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(1895), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), + }, + [2653] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1898), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2648] = { - [sym_subscript] = STATE(1894), - [anon_sym_0] = ACTIONS(6526), - [anon_sym_BANG] = ACTIONS(6528), - [sym_variable_name] = ACTIONS(6530), - [anon_sym_STAR] = ACTIONS(6532), - [anon_sym_DASH] = ACTIONS(6534), - [anon_sym_POUND] = ACTIONS(6528), - [anon_sym_QMARK] = ACTIONS(6532), - [aux_sym__simple_variable_name_token1] = ACTIONS(6526), - [anon_sym__] = ACTIONS(6526), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(6534), - [anon_sym_AT] = ACTIONS(6532), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2649] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1896), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2654] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1899), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1900), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2650] = { - [sym_subscript] = STATE(1900), - [anon_sym_0] = ACTIONS(6536), - [sym_variable_name] = ACTIONS(6538), - [anon_sym_STAR] = ACTIONS(6540), - [anon_sym_DASH] = ACTIONS(6542), - [anon_sym_QMARK] = ACTIONS(6540), - [aux_sym__simple_variable_name_token1] = ACTIONS(6536), - [anon_sym__] = ACTIONS(6536), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(6542), - [anon_sym_AT] = ACTIONS(6540), + [2655] = { + [sym_subscript] = STATE(1901), + [anon_sym_QMARK] = ACTIONS(6532), + [anon_sym_POUND] = ACTIONS(6534), + [anon_sym_BANG] = ACTIONS(6534), + [sym_variable_name] = ACTIONS(6536), + [aux_sym__simple_variable_name_token1] = ACTIONS(6538), + [anon_sym_DASH] = ACTIONS(6540), + [anon_sym__] = ACTIONS(6538), + [anon_sym_DOLLAR] = ACTIONS(6540), + [anon_sym_AT] = ACTIONS(6532), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6538), + [anon_sym_STAR] = ACTIONS(6532), }, - [2651] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6544), - [sym_comment] = ACTIONS(53), + [2656] = { + [sym_subscript] = STATE(1908), + [anon_sym_QMARK] = ACTIONS(6542), + [sym_variable_name] = ACTIONS(6544), + [aux_sym__simple_variable_name_token1] = ACTIONS(6546), + [anon_sym_DASH] = ACTIONS(6548), + [anon_sym__] = ACTIONS(6546), + [anon_sym_DOLLAR] = ACTIONS(6548), + [anon_sym_AT] = ACTIONS(6542), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6546), + [anon_sym_STAR] = ACTIONS(6542), }, - [2652] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6546), - [sym_comment] = ACTIONS(53), + [2657] = { + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6550), + [sym_comment] = ACTIONS(23), }, - [2653] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(1930), - [sym_postfix_expression] = STATE(1930), - [sym_concatenation] = STATE(1930), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(1930), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(1930), - [sym_binary_expression] = STATE(1930), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2658] = { + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6552), + [sym_comment] = ACTIONS(23), + }, + [2659] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1935), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), + }, + [2660] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(1936), + [sym_postfix_expression] = STATE(1936), + [sym_concatenation] = STATE(1936), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(1936), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(1936), + [sym_binary_expression] = STATE(1936), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2654] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1931), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1932), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2661] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1939), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2655] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1933), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2662] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1940), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1941), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2656] = { - [sym_subscript] = STATE(1935), - [anon_sym_0] = ACTIONS(6548), - [anon_sym_POUND] = ACTIONS(6550), - [anon_sym_QMARK] = ACTIONS(6552), - [aux_sym__simple_variable_name_token1] = ACTIONS(6548), - [anon_sym__] = ACTIONS(6548), - [anon_sym_BANG] = ACTIONS(6550), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6554), - [anon_sym_STAR] = ACTIONS(6552), - [anon_sym_DASH] = ACTIONS(6556), + [2663] = { + [sym_subscript] = STATE(1942), + [anon_sym_QMARK] = ACTIONS(6554), [anon_sym_DOLLAR] = ACTIONS(6556), - [anon_sym_AT] = ACTIONS(6552), + [anon_sym_AT] = ACTIONS(6554), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6558), + [anon_sym_BANG] = ACTIONS(6560), + [anon_sym_POUND] = ACTIONS(6560), + [sym_variable_name] = ACTIONS(6562), + [aux_sym__simple_variable_name_token1] = ACTIONS(6558), + [anon_sym_DASH] = ACTIONS(6556), + [anon_sym__] = ACTIONS(6558), + [anon_sym_STAR] = ACTIONS(6554), }, - [2657] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1937), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2664] = { + [sym_subscript] = STATE(1949), + [anon_sym_QMARK] = ACTIONS(6564), + [anon_sym_DOLLAR] = ACTIONS(6566), + [anon_sym_AT] = ACTIONS(6564), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6568), + [sym_variable_name] = ACTIONS(6570), + [aux_sym__simple_variable_name_token1] = ACTIONS(6568), + [anon_sym_DASH] = ACTIONS(6566), + [anon_sym__] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6564), + }, + [2665] = { + [anon_sym_EQ] = ACTIONS(6572), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2666] = { + [anon_sym_EQ] = ACTIONS(6574), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2667] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(1976), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2658] = { - [sym_subscript] = STATE(1941), - [anon_sym_0] = ACTIONS(6558), - [anon_sym_QMARK] = ACTIONS(6560), - [aux_sym__simple_variable_name_token1] = ACTIONS(6558), - [anon_sym__] = ACTIONS(6558), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6562), - [anon_sym_STAR] = ACTIONS(6560), - [anon_sym_DASH] = ACTIONS(6564), - [anon_sym_DOLLAR] = ACTIONS(6564), - [anon_sym_AT] = ACTIONS(6560), - }, - [2659] = { - [anon_sym_EQ] = ACTIONS(6566), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2660] = { - [anon_sym_EQ] = ACTIONS(6568), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2661] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(1971), - [sym_postfix_expression] = STATE(1971), - [sym_concatenation] = STATE(1971), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(1971), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(1971), - [sym_binary_expression] = STATE(1971), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2668] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(1977), + [sym_postfix_expression] = STATE(1977), + [sym_concatenation] = STATE(1977), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(1977), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(1977), + [sym_binary_expression] = STATE(1977), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2662] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(1972), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1973), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2669] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1980), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2663] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(1974), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2670] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(1981), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(1982), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2664] = { - [sym_subscript] = STATE(1976), - [anon_sym_0] = ACTIONS(6570), - [anon_sym_POUND] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6574), - [aux_sym__simple_variable_name_token1] = ACTIONS(6570), - [anon_sym__] = ACTIONS(6570), - [anon_sym_BANG] = ACTIONS(6572), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6576), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_DASH] = ACTIONS(6578), + [2671] = { + [sym_subscript] = STATE(1983), + [anon_sym_QMARK] = ACTIONS(6576), [anon_sym_DOLLAR] = ACTIONS(6578), - [anon_sym_AT] = ACTIONS(6574), + [anon_sym_AT] = ACTIONS(6576), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6580), + [anon_sym_BANG] = ACTIONS(6582), + [anon_sym_POUND] = ACTIONS(6582), + [sym_variable_name] = ACTIONS(6584), + [aux_sym__simple_variable_name_token1] = ACTIONS(6580), + [anon_sym_DASH] = ACTIONS(6578), + [anon_sym__] = ACTIONS(6580), + [anon_sym_STAR] = ACTIONS(6576), }, - [2665] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(1978), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2672] = { + [sym_subscript] = STATE(1990), + [anon_sym_QMARK] = ACTIONS(6586), + [anon_sym_DOLLAR] = ACTIONS(6588), + [anon_sym_AT] = ACTIONS(6586), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6590), + [sym_variable_name] = ACTIONS(6592), + [aux_sym__simple_variable_name_token1] = ACTIONS(6590), + [anon_sym_DASH] = ACTIONS(6588), + [anon_sym__] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6586), + }, + [2673] = { + [anon_sym_EQ] = ACTIONS(6594), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2674] = { + [anon_sym_EQ] = ACTIONS(6596), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2675] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2017), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2666] = { - [sym_subscript] = STATE(1982), - [anon_sym_0] = ACTIONS(6580), - [anon_sym_QMARK] = ACTIONS(6582), - [aux_sym__simple_variable_name_token1] = ACTIONS(6580), - [anon_sym__] = ACTIONS(6580), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6584), - [anon_sym_STAR] = ACTIONS(6582), - [anon_sym_DASH] = ACTIONS(6586), - [anon_sym_DOLLAR] = ACTIONS(6586), - [anon_sym_AT] = ACTIONS(6582), - }, - [2667] = { - [anon_sym_EQ] = ACTIONS(6588), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2668] = { - [anon_sym_EQ] = ACTIONS(6590), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2669] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(2012), - [sym_postfix_expression] = STATE(2012), - [sym_concatenation] = STATE(2012), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(2012), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(2012), - [sym_binary_expression] = STATE(2012), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2676] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(2018), + [sym_postfix_expression] = STATE(2018), + [sym_concatenation] = STATE(2018), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(2018), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(2018), + [sym_binary_expression] = STATE(2018), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2670] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2013), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2014), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2677] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2021), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2671] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2015), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2678] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2022), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2023), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2672] = { - [sym_subscript] = STATE(2017), - [anon_sym_0] = ACTIONS(6592), - [anon_sym_POUND] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6596), - [aux_sym__simple_variable_name_token1] = ACTIONS(6592), - [anon_sym__] = ACTIONS(6592), - [anon_sym_BANG] = ACTIONS(6594), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6598), - [anon_sym_STAR] = ACTIONS(6596), - [anon_sym_DASH] = ACTIONS(6600), + [2679] = { + [sym_subscript] = STATE(2024), + [anon_sym_QMARK] = ACTIONS(6598), [anon_sym_DOLLAR] = ACTIONS(6600), - [anon_sym_AT] = ACTIONS(6596), + [anon_sym_AT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6602), + [anon_sym_BANG] = ACTIONS(6604), + [anon_sym_POUND] = ACTIONS(6604), + [sym_variable_name] = ACTIONS(6606), + [aux_sym__simple_variable_name_token1] = ACTIONS(6602), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym__] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6598), }, - [2673] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2019), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2680] = { + [sym_subscript] = STATE(2031), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_DOLLAR] = ACTIONS(6610), + [anon_sym_AT] = ACTIONS(6608), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6612), + [sym_variable_name] = ACTIONS(6614), + [aux_sym__simple_variable_name_token1] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym__] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6608), + }, + [2681] = { + [anon_sym_EQ] = ACTIONS(6616), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2682] = { + [anon_sym_EQ] = ACTIONS(6618), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2683] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2058), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2674] = { - [sym_subscript] = STATE(2023), - [anon_sym_0] = ACTIONS(6602), - [anon_sym_QMARK] = ACTIONS(6604), - [aux_sym__simple_variable_name_token1] = ACTIONS(6602), - [anon_sym__] = ACTIONS(6602), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6606), - [anon_sym_STAR] = ACTIONS(6604), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_DOLLAR] = ACTIONS(6608), - [anon_sym_AT] = ACTIONS(6604), - }, - [2675] = { - [anon_sym_EQ] = ACTIONS(6610), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2676] = { - [anon_sym_EQ] = ACTIONS(6612), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2677] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(2053), - [sym_postfix_expression] = STATE(2053), - [sym_concatenation] = STATE(2053), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(2053), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(2053), - [sym_binary_expression] = STATE(2053), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2684] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(2059), + [sym_postfix_expression] = STATE(2059), + [sym_concatenation] = STATE(2059), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(2059), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(2059), + [sym_binary_expression] = STATE(2059), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2678] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2054), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2055), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2685] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2062), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2679] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2056), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2686] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2063), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2064), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2680] = { - [sym_subscript] = STATE(2058), - [anon_sym_0] = ACTIONS(6614), - [anon_sym_POUND] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6618), - [aux_sym__simple_variable_name_token1] = ACTIONS(6614), - [anon_sym__] = ACTIONS(6614), - [anon_sym_BANG] = ACTIONS(6616), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6622), + [2687] = { + [sym_subscript] = STATE(2065), + [anon_sym_QMARK] = ACTIONS(6620), [anon_sym_DOLLAR] = ACTIONS(6622), - [anon_sym_AT] = ACTIONS(6618), - }, - [2681] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2060), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2682] = { - [sym_subscript] = STATE(2064), + [anon_sym_AT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), [anon_sym_0] = ACTIONS(6624), - [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_BANG] = ACTIONS(6626), + [anon_sym_POUND] = ACTIONS(6626), + [sym_variable_name] = ACTIONS(6628), [aux_sym__simple_variable_name_token1] = ACTIONS(6624), + [anon_sym_DASH] = ACTIONS(6622), [anon_sym__] = ACTIONS(6624), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6630), - [anon_sym_DOLLAR] = ACTIONS(6630), - [anon_sym_AT] = ACTIONS(6626), + [anon_sym_STAR] = ACTIONS(6620), }, - [2683] = { - [anon_sym_EQ] = ACTIONS(6632), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [2688] = { + [sym_subscript] = STATE(2072), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_DOLLAR] = ACTIONS(6632), + [anon_sym_AT] = ACTIONS(6630), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6634), + [sym_variable_name] = ACTIONS(6636), + [aux_sym__simple_variable_name_token1] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym__] = ACTIONS(6634), + [anon_sym_STAR] = ACTIONS(6630), }, - [2684] = { - [anon_sym_EQ] = ACTIONS(6634), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [2689] = { + [anon_sym_EQ] = ACTIONS(6638), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), }, - [2685] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(2094), - [sym_postfix_expression] = STATE(2094), - [sym_concatenation] = STATE(2094), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(2094), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(2094), - [sym_binary_expression] = STATE(2094), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [2690] = { + [anon_sym_EQ] = ACTIONS(6640), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), }, - [2686] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2095), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2096), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2691] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2099), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(67), - [anon_sym_typeset] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2687] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2097), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2692] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(2100), + [sym_postfix_expression] = STATE(2100), + [sym_concatenation] = STATE(2100), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(2100), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(2100), + [sym_binary_expression] = STATE(2100), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), + [anon_sym_BQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), + }, + [2693] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2103), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2688] = { - [sym_subscript] = STATE(2099), - [anon_sym_0] = ACTIONS(6636), - [anon_sym_POUND] = ACTIONS(6638), - [anon_sym_QMARK] = ACTIONS(6640), - [aux_sym__simple_variable_name_token1] = ACTIONS(6636), - [anon_sym__] = ACTIONS(6636), - [anon_sym_BANG] = ACTIONS(6638), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6642), - [anon_sym_STAR] = ACTIONS(6640), - [anon_sym_DASH] = ACTIONS(6644), - [anon_sym_DOLLAR] = ACTIONS(6644), - [anon_sym_AT] = ACTIONS(6640), - }, - [2689] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2101), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2694] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2104), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2105), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(67), + [anon_sym_typeset] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(67), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(67), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(67), + [anon_sym_unset] = ACTIONS(69), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2690] = { - [sym_subscript] = STATE(2105), + [2695] = { + [sym_subscript] = STATE(2106), + [anon_sym_QMARK] = ACTIONS(6642), + [anon_sym_DOLLAR] = ACTIONS(6644), + [anon_sym_AT] = ACTIONS(6642), + [sym_comment] = ACTIONS(3), [anon_sym_0] = ACTIONS(6646), - [anon_sym_QMARK] = ACTIONS(6648), + [anon_sym_BANG] = ACTIONS(6648), + [anon_sym_POUND] = ACTIONS(6648), + [sym_variable_name] = ACTIONS(6650), [aux_sym__simple_variable_name_token1] = ACTIONS(6646), + [anon_sym_DASH] = ACTIONS(6644), [anon_sym__] = ACTIONS(6646), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6650), - [anon_sym_STAR] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6652), - [anon_sym_DOLLAR] = ACTIONS(6652), - [anon_sym_AT] = ACTIONS(6648), + [anon_sym_STAR] = ACTIONS(6642), }, - [2691] = { - [anon_sym_EQ] = ACTIONS(6654), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [2696] = { + [sym_subscript] = STATE(2113), + [anon_sym_QMARK] = ACTIONS(6652), + [anon_sym_DOLLAR] = ACTIONS(6654), + [anon_sym_AT] = ACTIONS(6652), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6656), + [sym_variable_name] = ACTIONS(6658), + [aux_sym__simple_variable_name_token1] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6654), + [anon_sym__] = ACTIONS(6656), + [anon_sym_STAR] = ACTIONS(6652), }, - [2692] = { - [anon_sym_EQ] = ACTIONS(6656), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [2697] = { + [anon_sym_EQ] = ACTIONS(6660), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), }, - [2693] = { - [sym_unary_expression] = STATE(2135), - [sym_postfix_expression] = STATE(2135), - [sym_concatenation] = STATE(2135), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(2135), - [sym_binary_expression] = STATE(2135), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(2135), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2698] = { + [anon_sym_EQ] = ACTIONS(6662), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2699] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2140), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(73), + [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(195), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + }, + [2700] = { + [sym_unary_expression] = STATE(2141), + [sym_postfix_expression] = STATE(2141), + [sym_concatenation] = STATE(2141), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(2141), + [sym_binary_expression] = STATE(2141), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(2141), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2694] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2136), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2137), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2701] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2144), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2695] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2138), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2702] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2145), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2146), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2696] = { - [sym_subscript] = STATE(2140), - [anon_sym_0] = ACTIONS(6658), - [anon_sym_BANG] = ACTIONS(6660), - [sym_variable_name] = ACTIONS(6662), - [anon_sym_STAR] = ACTIONS(6664), - [anon_sym_DASH] = ACTIONS(6666), - [anon_sym_POUND] = ACTIONS(6660), + [2703] = { + [sym_subscript] = STATE(2147), [anon_sym_QMARK] = ACTIONS(6664), - [aux_sym__simple_variable_name_token1] = ACTIONS(6658), - [anon_sym__] = ACTIONS(6658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(6666), + [anon_sym_POUND] = ACTIONS(6666), + [anon_sym_BANG] = ACTIONS(6666), + [sym_variable_name] = ACTIONS(6668), + [aux_sym__simple_variable_name_token1] = ACTIONS(6670), + [anon_sym_DASH] = ACTIONS(6672), + [anon_sym__] = ACTIONS(6670), + [anon_sym_DOLLAR] = ACTIONS(6672), [anon_sym_AT] = ACTIONS(6664), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6670), + [anon_sym_STAR] = ACTIONS(6664), }, - [2697] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2142), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2704] = { + [sym_subscript] = STATE(2154), + [anon_sym_QMARK] = ACTIONS(6674), + [sym_variable_name] = ACTIONS(6676), + [aux_sym__simple_variable_name_token1] = ACTIONS(6678), + [anon_sym_DASH] = ACTIONS(6680), + [anon_sym__] = ACTIONS(6678), + [anon_sym_DOLLAR] = ACTIONS(6680), + [anon_sym_AT] = ACTIONS(6674), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6678), + [anon_sym_STAR] = ACTIONS(6674), + }, + [2705] = { + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6682), + [sym_comment] = ACTIONS(23), + }, + [2706] = { + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6684), + [sym_comment] = ACTIONS(23), + }, + [2707] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2181), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(195), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2698] = { - [sym_subscript] = STATE(2146), - [anon_sym_0] = ACTIONS(6668), - [sym_variable_name] = ACTIONS(6670), - [anon_sym_STAR] = ACTIONS(6672), - [anon_sym_DASH] = ACTIONS(6674), - [anon_sym_QMARK] = ACTIONS(6672), - [aux_sym__simple_variable_name_token1] = ACTIONS(6668), - [anon_sym__] = ACTIONS(6668), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(6674), - [anon_sym_AT] = ACTIONS(6672), - }, - [2699] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6676), - [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2700] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6678), - [sym_comment] = ACTIONS(53), - }, - [2701] = { - [sym_unary_expression] = STATE(2176), - [sym_postfix_expression] = STATE(2176), - [sym_concatenation] = STATE(2176), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(2176), - [sym_binary_expression] = STATE(2176), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(2176), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2708] = { + [sym_unary_expression] = STATE(2182), + [sym_postfix_expression] = STATE(2182), + [sym_concatenation] = STATE(2182), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(2182), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2702] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2177), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2178), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2709] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2185), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2703] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2179), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), + [2710] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2186), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2187), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_AMP_GT] = ACTIONS(27), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_local] = ACTIONS(67), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_GT_GT] = ACTIONS(7), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2704] = { - [sym_subscript] = STATE(2181), - [anon_sym_0] = ACTIONS(6680), - [anon_sym_BANG] = ACTIONS(6682), - [sym_variable_name] = ACTIONS(6684), - [anon_sym_STAR] = ACTIONS(6686), - [anon_sym_DASH] = ACTIONS(6688), - [anon_sym_POUND] = ACTIONS(6682), + [2711] = { + [sym_subscript] = STATE(2188), [anon_sym_QMARK] = ACTIONS(6686), - [aux_sym__simple_variable_name_token1] = ACTIONS(6680), - [anon_sym__] = ACTIONS(6680), - [sym_comment] = ACTIONS(3), - [anon_sym_DOLLAR] = ACTIONS(6688), + [anon_sym_POUND] = ACTIONS(6688), + [anon_sym_BANG] = ACTIONS(6688), + [sym_variable_name] = ACTIONS(6690), + [aux_sym__simple_variable_name_token1] = ACTIONS(6692), + [anon_sym_DASH] = ACTIONS(6694), + [anon_sym__] = ACTIONS(6692), + [anon_sym_DOLLAR] = ACTIONS(6694), [anon_sym_AT] = ACTIONS(6686), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6692), + [anon_sym_STAR] = ACTIONS(6686), }, - [2705] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2183), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2712] = { + [sym_subscript] = STATE(2195), + [anon_sym_QMARK] = ACTIONS(6696), + [sym_variable_name] = ACTIONS(6698), + [aux_sym__simple_variable_name_token1] = ACTIONS(6700), + [anon_sym_DASH] = ACTIONS(6702), + [anon_sym__] = ACTIONS(6700), + [anon_sym_DOLLAR] = ACTIONS(6702), + [anon_sym_AT] = ACTIONS(6696), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6700), + [anon_sym_STAR] = ACTIONS(6696), + }, + [2713] = { + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6704), + [sym_comment] = ACTIONS(23), + }, + [2714] = { + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6706), + [sym_comment] = ACTIONS(23), + }, + [2715] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2222), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(195), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2706] = { - [sym_subscript] = STATE(2187), - [anon_sym_0] = ACTIONS(6690), - [sym_variable_name] = ACTIONS(6692), - [anon_sym_STAR] = ACTIONS(6694), - [anon_sym_DASH] = ACTIONS(6696), - [anon_sym_QMARK] = ACTIONS(6694), - [aux_sym__simple_variable_name_token1] = ACTIONS(6690), - [anon_sym__] = ACTIONS(6690), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(6696), - [anon_sym_AT] = ACTIONS(6694), - }, - [2707] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6698), - [sym_comment] = ACTIONS(53), - }, - [2708] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6700), - [sym_comment] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2709] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(2217), - [sym_postfix_expression] = STATE(2217), - [sym_concatenation] = STATE(2217), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(2217), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(2217), - [sym_binary_expression] = STATE(2217), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2716] = { + [sym_unary_expression] = STATE(2223), + [sym_postfix_expression] = STATE(2223), + [sym_concatenation] = STATE(2223), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym__expression] = STATE(2223), + [sym_binary_expression] = STATE(2223), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [sym_expansion] = STATE(57), + [aux_sym__literal_repeat1] = STATE(60), + [sym_parenthesized_expression] = STATE(2223), + [sym_simple_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2710] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2218), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2219), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2717] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2226), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2711] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2220), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2718] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2227), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2228), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2712] = { - [sym_subscript] = STATE(2222), - [anon_sym_0] = ACTIONS(6702), - [anon_sym_POUND] = ACTIONS(6704), - [anon_sym_QMARK] = ACTIONS(6706), - [aux_sym__simple_variable_name_token1] = ACTIONS(6702), - [anon_sym__] = ACTIONS(6702), - [anon_sym_BANG] = ACTIONS(6704), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6708), - [anon_sym_STAR] = ACTIONS(6706), - [anon_sym_DASH] = ACTIONS(6710), - [anon_sym_DOLLAR] = ACTIONS(6710), - [anon_sym_AT] = ACTIONS(6706), + [2719] = { + [sym_subscript] = STATE(2229), + [anon_sym_QMARK] = ACTIONS(6708), + [anon_sym_POUND] = ACTIONS(6710), + [anon_sym_BANG] = ACTIONS(6710), + [sym_variable_name] = ACTIONS(6712), + [aux_sym__simple_variable_name_token1] = ACTIONS(6714), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym__] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(6716), + [anon_sym_AT] = ACTIONS(6708), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6714), + [anon_sym_STAR] = ACTIONS(6708), }, - [2713] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2224), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2720] = { + [sym_subscript] = STATE(2236), + [anon_sym_QMARK] = ACTIONS(6718), + [sym_variable_name] = ACTIONS(6720), + [aux_sym__simple_variable_name_token1] = ACTIONS(6722), + [anon_sym_DASH] = ACTIONS(6724), + [anon_sym__] = ACTIONS(6722), + [anon_sym_DOLLAR] = ACTIONS(6724), + [anon_sym_AT] = ACTIONS(6718), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(6718), + }, + [2721] = { + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6726), + [sym_comment] = ACTIONS(23), + }, + [2722] = { + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(6728), + [sym_comment] = ACTIONS(23), + }, + [2723] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2263), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2714] = { - [sym_subscript] = STATE(2228), - [anon_sym_0] = ACTIONS(6712), - [anon_sym_QMARK] = ACTIONS(6714), - [aux_sym__simple_variable_name_token1] = ACTIONS(6712), - [anon_sym__] = ACTIONS(6712), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6714), - [anon_sym_DASH] = ACTIONS(6718), - [anon_sym_DOLLAR] = ACTIONS(6718), - [anon_sym_AT] = ACTIONS(6714), - }, - [2715] = { - [anon_sym_EQ] = ACTIONS(6720), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2716] = { - [anon_sym_EQ] = ACTIONS(6722), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2717] = { - [sym_unary_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_concatenation] = STATE(2258), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym__expression] = STATE(2258), - [sym_binary_expression] = STATE(2258), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [sym_expansion] = STATE(53), - [aux_sym__literal_repeat1] = STATE(55), - [sym_parenthesized_expression] = STATE(2258), - [sym_simple_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2724] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(2264), + [sym_postfix_expression] = STATE(2264), + [sym_concatenation] = STATE(2264), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(2264), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(2264), + [sym_binary_expression] = STATE(2264), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2718] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2259), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2260), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2725] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2267), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), + [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_unsetenv] = ACTIONS(69), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), + [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(67), - [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2719] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2261), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2726] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2268), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2269), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2720] = { - [sym_subscript] = STATE(2263), - [anon_sym_0] = ACTIONS(6724), - [anon_sym_BANG] = ACTIONS(6726), - [sym_variable_name] = ACTIONS(6728), - [anon_sym_STAR] = ACTIONS(6730), - [anon_sym_DASH] = ACTIONS(6732), - [anon_sym_POUND] = ACTIONS(6726), + [2727] = { + [sym_subscript] = STATE(2270), [anon_sym_QMARK] = ACTIONS(6730), - [aux_sym__simple_variable_name_token1] = ACTIONS(6724), - [anon_sym__] = ACTIONS(6724), - [sym_comment] = ACTIONS(3), [anon_sym_DOLLAR] = ACTIONS(6732), [anon_sym_AT] = ACTIONS(6730), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6734), + [anon_sym_BANG] = ACTIONS(6736), + [anon_sym_POUND] = ACTIONS(6736), + [sym_variable_name] = ACTIONS(6738), + [aux_sym__simple_variable_name_token1] = ACTIONS(6734), + [anon_sym_DASH] = ACTIONS(6732), + [anon_sym__] = ACTIONS(6734), + [anon_sym_STAR] = ACTIONS(6730), }, - [2721] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2265), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [2728] = { + [sym_subscript] = STATE(2277), + [anon_sym_QMARK] = ACTIONS(6740), + [anon_sym_DOLLAR] = ACTIONS(6742), + [anon_sym_AT] = ACTIONS(6740), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6744), + [sym_variable_name] = ACTIONS(6746), + [aux_sym__simple_variable_name_token1] = ACTIONS(6744), + [anon_sym_DASH] = ACTIONS(6742), + [anon_sym__] = ACTIONS(6744), + [anon_sym_STAR] = ACTIONS(6740), + }, + [2729] = { + [anon_sym_EQ] = ACTIONS(6748), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2730] = { + [anon_sym_EQ] = ACTIONS(6750), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2731] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2304), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_local] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_AMP_GT_GT] = ACTIONS(7), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), + [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2722] = { - [sym_subscript] = STATE(2269), - [anon_sym_0] = ACTIONS(6734), - [sym_variable_name] = ACTIONS(6736), - [anon_sym_STAR] = ACTIONS(6738), - [anon_sym_DASH] = ACTIONS(6740), - [anon_sym_QMARK] = ACTIONS(6738), - [aux_sym__simple_variable_name_token1] = ACTIONS(6734), - [anon_sym__] = ACTIONS(6734), - [sym_comment] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(6740), - [anon_sym_AT] = ACTIONS(6738), - }, - [2723] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6742), - [sym_comment] = ACTIONS(53), - }, - [2724] = { - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(6744), - [sym_comment] = ACTIONS(53), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), + [anon_sym_GT_AMP] = ACTIONS(7), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2725] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(2299), - [sym_postfix_expression] = STATE(2299), - [sym_concatenation] = STATE(2299), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(2299), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(2299), - [sym_binary_expression] = STATE(2299), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2732] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(2305), + [sym_postfix_expression] = STATE(2305), + [sym_concatenation] = STATE(2305), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(2305), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(2305), + [sym_binary_expression] = STATE(2305), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2726] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2300), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2301), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2733] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2308), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2727] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2302), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2734] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2309), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2310), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2728] = { - [sym_subscript] = STATE(2304), - [anon_sym_0] = ACTIONS(6746), - [anon_sym_POUND] = ACTIONS(6748), - [anon_sym_QMARK] = ACTIONS(6750), - [aux_sym__simple_variable_name_token1] = ACTIONS(6746), - [anon_sym__] = ACTIONS(6746), - [anon_sym_BANG] = ACTIONS(6748), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6750), - [anon_sym_DASH] = ACTIONS(6754), + [2735] = { + [sym_subscript] = STATE(2311), + [anon_sym_QMARK] = ACTIONS(6752), [anon_sym_DOLLAR] = ACTIONS(6754), - [anon_sym_AT] = ACTIONS(6750), + [anon_sym_AT] = ACTIONS(6752), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6756), + [anon_sym_BANG] = ACTIONS(6758), + [anon_sym_POUND] = ACTIONS(6758), + [sym_variable_name] = ACTIONS(6760), + [aux_sym__simple_variable_name_token1] = ACTIONS(6756), + [anon_sym_DASH] = ACTIONS(6754), + [anon_sym__] = ACTIONS(6756), + [anon_sym_STAR] = ACTIONS(6752), }, - [2729] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2306), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2736] = { + [sym_subscript] = STATE(2318), + [anon_sym_QMARK] = ACTIONS(6762), + [anon_sym_DOLLAR] = ACTIONS(6764), + [anon_sym_AT] = ACTIONS(6762), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6766), + [sym_variable_name] = ACTIONS(6768), + [aux_sym__simple_variable_name_token1] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym__] = ACTIONS(6766), + [anon_sym_STAR] = ACTIONS(6762), + }, + [2737] = { + [anon_sym_EQ] = ACTIONS(6770), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2738] = { + [anon_sym_EQ] = ACTIONS(6772), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2739] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2345), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2730] = { - [sym_subscript] = STATE(2310), - [anon_sym_0] = ACTIONS(6756), - [anon_sym_QMARK] = ACTIONS(6758), - [aux_sym__simple_variable_name_token1] = ACTIONS(6756), - [anon_sym__] = ACTIONS(6756), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6760), - [anon_sym_STAR] = ACTIONS(6758), - [anon_sym_DASH] = ACTIONS(6762), - [anon_sym_DOLLAR] = ACTIONS(6762), - [anon_sym_AT] = ACTIONS(6758), - }, - [2731] = { - [anon_sym_EQ] = ACTIONS(6764), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2732] = { - [anon_sym_EQ] = ACTIONS(6766), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2733] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(2340), - [sym_postfix_expression] = STATE(2340), - [sym_concatenation] = STATE(2340), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(2340), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(2340), - [sym_binary_expression] = STATE(2340), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2740] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(2346), + [sym_postfix_expression] = STATE(2346), + [sym_concatenation] = STATE(2346), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(2346), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(2346), + [sym_binary_expression] = STATE(2346), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2734] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2341), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2342), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2741] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2349), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2735] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2343), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2742] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2350), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2351), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2736] = { - [sym_subscript] = STATE(2345), - [anon_sym_0] = ACTIONS(6768), - [anon_sym_POUND] = ACTIONS(6770), - [anon_sym_QMARK] = ACTIONS(6772), - [aux_sym__simple_variable_name_token1] = ACTIONS(6768), - [anon_sym__] = ACTIONS(6768), - [anon_sym_BANG] = ACTIONS(6770), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6774), - [anon_sym_STAR] = ACTIONS(6772), - [anon_sym_DASH] = ACTIONS(6776), + [2743] = { + [sym_subscript] = STATE(2352), + [anon_sym_QMARK] = ACTIONS(6774), [anon_sym_DOLLAR] = ACTIONS(6776), - [anon_sym_AT] = ACTIONS(6772), + [anon_sym_AT] = ACTIONS(6774), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6778), + [anon_sym_BANG] = ACTIONS(6780), + [anon_sym_POUND] = ACTIONS(6780), + [sym_variable_name] = ACTIONS(6782), + [aux_sym__simple_variable_name_token1] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6776), + [anon_sym__] = ACTIONS(6778), + [anon_sym_STAR] = ACTIONS(6774), + }, + [2744] = { + [sym_subscript] = STATE(2359), + [anon_sym_QMARK] = ACTIONS(6784), + [anon_sym_DOLLAR] = ACTIONS(6786), + [anon_sym_AT] = ACTIONS(6784), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6788), + [sym_variable_name] = ACTIONS(6790), + [aux_sym__simple_variable_name_token1] = ACTIONS(6788), + [anon_sym_DASH] = ACTIONS(6786), + [anon_sym__] = ACTIONS(6788), + [anon_sym_STAR] = ACTIONS(6784), + }, + [2745] = { + [anon_sym_EQ] = ACTIONS(6792), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), }, - [2737] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2347), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2746] = { + [anon_sym_EQ] = ACTIONS(6794), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2747] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2386), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2738] = { - [sym_subscript] = STATE(2351), - [anon_sym_0] = ACTIONS(6778), - [anon_sym_QMARK] = ACTIONS(6780), - [aux_sym__simple_variable_name_token1] = ACTIONS(6778), - [anon_sym__] = ACTIONS(6778), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6782), - [anon_sym_STAR] = ACTIONS(6780), - [anon_sym_DASH] = ACTIONS(6784), - [anon_sym_DOLLAR] = ACTIONS(6784), - [anon_sym_AT] = ACTIONS(6780), - }, - [2739] = { - [anon_sym_EQ] = ACTIONS(6786), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2740] = { - [anon_sym_EQ] = ACTIONS(6788), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2741] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(2381), - [sym_postfix_expression] = STATE(2381), - [sym_concatenation] = STATE(2381), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(2381), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(2381), - [sym_binary_expression] = STATE(2381), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2748] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(2387), + [sym_postfix_expression] = STATE(2387), + [sym_concatenation] = STATE(2387), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(2387), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(2387), + [sym_binary_expression] = STATE(2387), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2742] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2382), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2383), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2749] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2390), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2743] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2384), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2750] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2391), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2392), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2744] = { - [sym_subscript] = STATE(2386), - [anon_sym_0] = ACTIONS(6790), - [anon_sym_POUND] = ACTIONS(6792), - [anon_sym_QMARK] = ACTIONS(6794), - [aux_sym__simple_variable_name_token1] = ACTIONS(6790), - [anon_sym__] = ACTIONS(6790), - [anon_sym_BANG] = ACTIONS(6792), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6796), - [anon_sym_STAR] = ACTIONS(6794), - [anon_sym_DASH] = ACTIONS(6798), + [2751] = { + [sym_subscript] = STATE(2393), + [anon_sym_QMARK] = ACTIONS(6796), [anon_sym_DOLLAR] = ACTIONS(6798), - [anon_sym_AT] = ACTIONS(6794), + [anon_sym_AT] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6800), + [anon_sym_BANG] = ACTIONS(6802), + [anon_sym_POUND] = ACTIONS(6802), + [sym_variable_name] = ACTIONS(6804), + [aux_sym__simple_variable_name_token1] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym__] = ACTIONS(6800), + [anon_sym_STAR] = ACTIONS(6796), }, - [2745] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2388), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2752] = { + [sym_subscript] = STATE(2400), + [anon_sym_QMARK] = ACTIONS(6806), + [anon_sym_DOLLAR] = ACTIONS(6808), + [anon_sym_AT] = ACTIONS(6806), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6810), + [sym_variable_name] = ACTIONS(6812), + [aux_sym__simple_variable_name_token1] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6808), + [anon_sym__] = ACTIONS(6810), + [anon_sym_STAR] = ACTIONS(6806), + }, + [2753] = { + [anon_sym_EQ] = ACTIONS(6814), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2754] = { + [anon_sym_EQ] = ACTIONS(6816), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2755] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2427), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2746] = { - [sym_subscript] = STATE(2392), - [anon_sym_0] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6802), - [aux_sym__simple_variable_name_token1] = ACTIONS(6800), - [anon_sym__] = ACTIONS(6800), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6804), - [anon_sym_STAR] = ACTIONS(6802), - [anon_sym_DASH] = ACTIONS(6806), - [anon_sym_DOLLAR] = ACTIONS(6806), - [anon_sym_AT] = ACTIONS(6802), - }, - [2747] = { - [anon_sym_EQ] = ACTIONS(6808), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2748] = { - [anon_sym_EQ] = ACTIONS(6810), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2749] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(2422), - [sym_postfix_expression] = STATE(2422), - [sym_concatenation] = STATE(2422), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(2422), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(2422), - [sym_binary_expression] = STATE(2422), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2756] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(2428), + [sym_postfix_expression] = STATE(2428), + [sym_concatenation] = STATE(2428), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(2428), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(2428), + [sym_binary_expression] = STATE(2428), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2750] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2423), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2424), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2757] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2431), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2751] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2425), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2758] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2432), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2433), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2752] = { - [sym_subscript] = STATE(2427), - [anon_sym_0] = ACTIONS(6812), - [anon_sym_POUND] = ACTIONS(6814), - [anon_sym_QMARK] = ACTIONS(6816), - [aux_sym__simple_variable_name_token1] = ACTIONS(6812), - [anon_sym__] = ACTIONS(6812), - [anon_sym_BANG] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6818), - [anon_sym_STAR] = ACTIONS(6816), - [anon_sym_DASH] = ACTIONS(6820), + [2759] = { + [sym_subscript] = STATE(2434), + [anon_sym_QMARK] = ACTIONS(6818), [anon_sym_DOLLAR] = ACTIONS(6820), - [anon_sym_AT] = ACTIONS(6816), + [anon_sym_AT] = ACTIONS(6818), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6822), + [anon_sym_BANG] = ACTIONS(6824), + [anon_sym_POUND] = ACTIONS(6824), + [sym_variable_name] = ACTIONS(6826), + [aux_sym__simple_variable_name_token1] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6820), + [anon_sym__] = ACTIONS(6822), + [anon_sym_STAR] = ACTIONS(6818), }, - [2753] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2429), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2760] = { + [sym_subscript] = STATE(2441), + [anon_sym_QMARK] = ACTIONS(6828), + [anon_sym_DOLLAR] = ACTIONS(6830), + [anon_sym_AT] = ACTIONS(6828), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6832), + [sym_variable_name] = ACTIONS(6834), + [aux_sym__simple_variable_name_token1] = ACTIONS(6832), + [anon_sym_DASH] = ACTIONS(6830), + [anon_sym__] = ACTIONS(6832), + [anon_sym_STAR] = ACTIONS(6828), + }, + [2761] = { + [anon_sym_EQ] = ACTIONS(6836), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2762] = { + [anon_sym_EQ] = ACTIONS(6838), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2763] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2465), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2754] = { - [sym_subscript] = STATE(2433), - [anon_sym_0] = ACTIONS(6822), - [anon_sym_QMARK] = ACTIONS(6824), - [aux_sym__simple_variable_name_token1] = ACTIONS(6822), - [anon_sym__] = ACTIONS(6822), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6826), - [anon_sym_STAR] = ACTIONS(6824), - [anon_sym_DASH] = ACTIONS(6828), - [anon_sym_DOLLAR] = ACTIONS(6828), - [anon_sym_AT] = ACTIONS(6824), - }, - [2755] = { - [anon_sym_EQ] = ACTIONS(6830), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2756] = { - [anon_sym_EQ] = ACTIONS(6832), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2757] = { - [sym_expansion] = STATE(53), - [sym_unary_expression] = STATE(2459), - [sym_postfix_expression] = STATE(2459), - [sym_concatenation] = STATE(2459), - [sym_string] = STATE(53), - [sym_command_substitution] = STATE(53), - [sym_process_substitution] = STATE(53), - [sym_parenthesized_expression] = STATE(2459), - [aux_sym__literal_repeat1] = STATE(55), - [sym_simple_expansion] = STATE(53), - [sym__expression] = STATE(2459), - [sym_binary_expression] = STATE(2459), - [sym_arithmetic_expansion] = STATE(53), - [sym_string_expansion] = STATE(53), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(211), - [sym_word] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [sym_ansii_c_string] = ACTIONS(215), - [sym__special_character] = ACTIONS(217), - [sym_comment] = ACTIONS(53), + [2764] = { + [sym_expansion] = STATE(57), + [sym_unary_expression] = STATE(2466), + [sym_postfix_expression] = STATE(2466), + [sym_concatenation] = STATE(2466), + [sym_string] = STATE(57), + [sym_command_substitution] = STATE(57), + [sym_process_substitution] = STATE(57), + [sym_parenthesized_expression] = STATE(2466), + [aux_sym__literal_repeat1] = STATE(60), + [sym_simple_expansion] = STATE(57), + [sym__expression] = STATE(2466), + [sym_binary_expression] = STATE(2466), + [sym_arithmetic_expansion] = STATE(57), + [sym_string_expansion] = STATE(57), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_LT_LPAREN] = ACTIONS(207), + [sym_ansii_c_string] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_BANG] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [aux_sym_unary_expression_token1] = ACTIONS(217), [anon_sym_BQUOTE] = ACTIONS(219), - [sym_raw_string] = ACTIONS(215), - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_test_operator] = ACTIONS(223), + [sym_raw_string] = ACTIONS(209), + [sym_number] = ACTIONS(221), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(227), + [sym_test_operator] = ACTIONS(229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(231), + [sym_word] = ACTIONS(221), }, - [2758] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2460), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2461), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2765] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2467), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2468), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2759] = { - [sym_subscript] = STATE(2462), - [anon_sym_0] = ACTIONS(6834), - [anon_sym_POUND] = ACTIONS(6836), - [anon_sym_QMARK] = ACTIONS(6838), - [aux_sym__simple_variable_name_token1] = ACTIONS(6834), - [anon_sym__] = ACTIONS(6834), - [anon_sym_BANG] = ACTIONS(6836), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6840), - [anon_sym_STAR] = ACTIONS(6838), - [anon_sym_DASH] = ACTIONS(6842), + [2766] = { + [sym_subscript] = STATE(2469), + [anon_sym_QMARK] = ACTIONS(6840), [anon_sym_DOLLAR] = ACTIONS(6842), - [anon_sym_AT] = ACTIONS(6838), + [anon_sym_AT] = ACTIONS(6840), + [sym_comment] = ACTIONS(3), + [anon_sym_0] = ACTIONS(6844), + [anon_sym_BANG] = ACTIONS(6846), + [anon_sym_POUND] = ACTIONS(6846), + [sym_variable_name] = ACTIONS(6848), + [aux_sym__simple_variable_name_token1] = ACTIONS(6844), + [anon_sym_DASH] = ACTIONS(6842), + [anon_sym__] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6840), }, - [2760] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2464), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), + [2767] = { + [sym_subscript] = STATE(2475), + [anon_sym_QMARK] = ACTIONS(6850), + [anon_sym_DOLLAR] = ACTIONS(6852), + [anon_sym_AT] = ACTIONS(6850), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6854), + [sym_variable_name] = ACTIONS(6856), + [aux_sym__simple_variable_name_token1] = ACTIONS(6854), + [anon_sym_DASH] = ACTIONS(6852), + [anon_sym__] = ACTIONS(6854), + [anon_sym_STAR] = ACTIONS(6850), + }, + [2768] = { + [anon_sym_EQ] = ACTIONS(6858), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2769] = { + [anon_sym_EQ] = ACTIONS(6860), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2770] = { + [sym_if_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_variable_assignment] = STATE(549), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(550), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_file_redirect] = STATE(1534), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(1534), + [sym__statements] = STATE(2499), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(554), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_local] = ACTIONS(191), + [anon_sym_typeset] = ACTIONS(191), + [anon_sym_unsetenv] = ACTIONS(193), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [anon_sym_export] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(191), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(191), + [anon_sym_unset] = ACTIONS(193), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2761] = { - [sym_subscript] = STATE(2467), - [anon_sym_0] = ACTIONS(6844), - [anon_sym_QMARK] = ACTIONS(6846), - [aux_sym__simple_variable_name_token1] = ACTIONS(6844), - [anon_sym__] = ACTIONS(6844), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6848), - [anon_sym_STAR] = ACTIONS(6846), - [anon_sym_DASH] = ACTIONS(6850), - [anon_sym_DOLLAR] = ACTIONS(6850), - [anon_sym_AT] = ACTIONS(6846), - }, - [2762] = { - [anon_sym_EQ] = ACTIONS(6852), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2763] = { - [anon_sym_EQ] = ACTIONS(6854), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), - }, - [2764] = { - [sym_if_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_negated_command] = STATE(390), - [sym_test_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(392), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_compound_statement] = STATE(390), - [sym_subshell] = STATE(390), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_file_redirect] = STATE(2493), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym__statements] = STATE(2494), - [sym_c_style_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2771] = { + [sym_if_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_negated_command] = STATE(392), + [sym_test_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__statements_repeat1] = STATE(394), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_compound_statement] = STATE(392), + [sym_subshell] = STATE(392), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), + [sym_file_redirect] = STATE(2500), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym__statements] = STATE(2501), + [sym_c_style_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_local] = ACTIONS(67), [anon_sym_typeset] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_GT_GT] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(93), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), + [sym_file_descriptor] = ACTIONS(43), + [anon_sym_LT_LPAREN] = ACTIONS(97), [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), [anon_sym_AMP_GT] = ACTIONS(27), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_while] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), + [sym_word] = ACTIONS(113), }, - [2765] = { - [sym_subscript] = STATE(2495), - [anon_sym_0] = ACTIONS(6856), - [anon_sym_POUND] = ACTIONS(6858), - [anon_sym_QMARK] = ACTIONS(6860), - [aux_sym__simple_variable_name_token1] = ACTIONS(6856), - [anon_sym__] = ACTIONS(6856), - [anon_sym_BANG] = ACTIONS(6858), - [sym_comment] = ACTIONS(3), - [sym_variable_name] = ACTIONS(6862), - [anon_sym_STAR] = ACTIONS(6860), - [anon_sym_DASH] = ACTIONS(6864), + [2772] = { + [sym_subscript] = STATE(2502), + [anon_sym_QMARK] = ACTIONS(6862), [anon_sym_DOLLAR] = ACTIONS(6864), - [anon_sym_AT] = ACTIONS(6860), - }, - [2766] = { - [sym_if_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_negated_command] = STATE(1526), - [sym_test_command] = STATE(1526), - [sym_variable_assignment] = STATE(545), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__statements_repeat1] = STATE(546), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_file_redirect] = STATE(1528), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(1528), - [sym__statements] = STATE(2497), - [sym_c_style_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(550), - [sym_simple_expansion] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_AMP_GT_GT] = ACTIONS(7), - [anon_sym_local] = ACTIONS(289), - [anon_sym_typeset] = ACTIONS(289), - [anon_sym_unsetenv] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(27), - [anon_sym_LT_AMP] = ACTIONS(7), - [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_export] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_case] = ACTIONS(89), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(289), - [sym_variable_name] = ACTIONS(99), - [sym_file_descriptor] = ACTIONS(45), - [sym_word] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(27), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_unset] = ACTIONS(291), - [sym__special_character] = ACTIONS(103), - [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_while] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(111), - [sym_raw_string] = ACTIONS(79), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), - }, - [2767] = { - [sym_subscript] = STATE(2500), + [anon_sym_AT] = ACTIONS(6862), + [sym_comment] = ACTIONS(3), [anon_sym_0] = ACTIONS(6866), - [anon_sym_QMARK] = ACTIONS(6868), + [anon_sym_BANG] = ACTIONS(6868), + [anon_sym_POUND] = ACTIONS(6868), + [sym_variable_name] = ACTIONS(6870), [aux_sym__simple_variable_name_token1] = ACTIONS(6866), + [anon_sym_DASH] = ACTIONS(6864), [anon_sym__] = ACTIONS(6866), - [sym_comment] = ACTIONS(53), - [sym_variable_name] = ACTIONS(6870), - [anon_sym_STAR] = ACTIONS(6868), - [anon_sym_DASH] = ACTIONS(6872), - [anon_sym_DOLLAR] = ACTIONS(6872), - [anon_sym_AT] = ACTIONS(6868), + [anon_sym_STAR] = ACTIONS(6862), }, - [2768] = { - [anon_sym_EQ] = ACTIONS(6874), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [2773] = { + [sym_subscript] = STATE(2508), + [anon_sym_QMARK] = ACTIONS(6872), + [anon_sym_DOLLAR] = ACTIONS(6874), + [anon_sym_AT] = ACTIONS(6872), + [sym_comment] = ACTIONS(23), + [anon_sym_0] = ACTIONS(6876), + [sym_variable_name] = ACTIONS(6878), + [aux_sym__simple_variable_name_token1] = ACTIONS(6876), + [anon_sym_DASH] = ACTIONS(6874), + [anon_sym__] = ACTIONS(6876), + [anon_sym_STAR] = ACTIONS(6872), }, - [2769] = { - [anon_sym_EQ] = ACTIONS(6876), - [sym_comment] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(579), + [2774] = { + [anon_sym_EQ] = ACTIONS(6880), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), }, - [2770] = { - [sym__terminated_statement] = STATE(2541), - [sym_if_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_negated_command] = STATE(71), - [sym_test_command] = STATE(71), - [sym_variable_assignment] = STATE(72), - [sym_subscript] = STATE(2539), - [sym_arithmetic_expansion] = STATE(386), - [sym_string_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [aux_sym__literal_repeat1] = STATE(393), - [sym_redirected_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_compound_statement] = STATE(71), - [sym_subshell] = STATE(71), - [sym_declaration_command] = STATE(71), - [sym_unset_command] = STATE(71), - [sym_file_redirect] = STATE(395), - [sym_concatenation] = STATE(394), - [sym_string] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_command_repeat1] = STATE(395), - [sym_c_style_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_case_statement] = STATE(71), - [sym_pipeline] = STATE(71), - [sym_list] = STATE(71), - [sym_command] = STATE(71), - [sym_command_name] = STATE(396), - [sym_simple_expansion] = STATE(386), + [2775] = { + [anon_sym_EQ] = ACTIONS(6882), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(689), + }, + [2776] = { + [sym__terminated_statement] = STATE(2547), + [sym_if_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_variable_assignment] = STATE(64), + [sym_subscript] = STATE(2545), + [sym_arithmetic_expansion] = STATE(389), + [sym_string_expansion] = STATE(389), + [sym_expansion] = STATE(389), + [aux_sym__literal_repeat1] = STATE(395), + [sym_redirected_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_compound_statement] = STATE(63), + [sym_subshell] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_file_redirect] = STATE(397), + [sym_concatenation] = STATE(396), + [sym_string] = STATE(389), + [sym_command_substitution] = STATE(389), + [sym_process_substitution] = STATE(389), + [aux_sym_command_repeat1] = STATE(397), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(398), + [sym_simple_expansion] = STATE(389), [anon_sym_AMP_GT_GT] = ACTIONS(7), [anon_sym_typeset] = ACTIONS(67), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_LT_LPAREN] = ACTIONS(77), + [anon_sym_BQUOTE] = ACTIONS(73), [anon_sym_LT_AMP] = ACTIONS(7), [anon_sym_export] = ACTIONS(67), - [anon_sym_DOLLAR] = ACTIONS(85), - [anon_sym_if] = ACTIONS(87), - [anon_sym_GT_LPAREN] = ACTIONS(77), - [anon_sym_LPAREN_LPAREN] = ACTIONS(91), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(83), + [anon_sym_if] = ACTIONS(85), + [anon_sym_LT_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN_LPAREN] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_declare] = ACTIONS(67), - [sym_variable_name] = ACTIONS(99), - [sym_word] = ACTIONS(101), + [sym_variable_name] = ACTIONS(95), [anon_sym_readonly] = ACTIONS(67), [anon_sym_unset] = ACTIONS(69), - [sym__special_character] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(99), [anon_sym_GT_AMP] = ACTIONS(7), - [sym_comment] = ACTIONS(53), - [sym_raw_string] = ACTIONS(79), - [anon_sym_while] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(105), + [sym_word] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_local] = ACTIONS(67), [anon_sym_unsetenv] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_ansii_c_string] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), + [sym__special_character] = ACTIONS(71), + [sym_raw_string] = ACTIONS(75), + [sym_number] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [sym_comment] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(27), [anon_sym_GT_GT] = ACTIONS(7), - [anon_sym_case] = ACTIONS(89), - [sym_number] = ACTIONS(93), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(95), - [anon_sym_BANG] = ACTIONS(97), - [sym_file_descriptor] = ACTIONS(45), + [anon_sym_case] = ACTIONS(87), + [sym_ansii_c_string] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(43), [anon_sym_GT] = ACTIONS(27), [anon_sym_AMP_GT] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), + [anon_sym_for] = ACTIONS(103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(111), }, - [2771] = { - [anon_sym_LPAREN_LPAREN] = ACTIONS(6878), - [aux_sym__simple_variable_name_token1] = ACTIONS(6880), - [sym_comment] = ACTIONS(53), + [2777] = { + [aux_sym__simple_variable_name_token1] = ACTIONS(6884), + [anon_sym_LPAREN_LPAREN] = ACTIONS(6886), + [sym_comment] = ACTIONS(23), }, - [2772] = { - [aux_sym_concatenation_repeat1] = STATE(782), - [sym__concat] = ACTIONS(525), - [anon_sym_LF] = ACTIONS(6882), - [anon_sym_SEMI] = ACTIONS(6884), + [2778] = { + [aux_sym_concatenation_repeat1] = STATE(787), + [anon_sym_AMP] = ACTIONS(6888), + [sym__concat] = ACTIONS(497), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6884), - [anon_sym_SEMI_SEMI] = ACTIONS(6884), - [anon_sym_in] = ACTIONS(6886), + [anon_sym_LF] = ACTIONS(6890), + [anon_sym_SEMI] = ACTIONS(6888), + [anon_sym_in] = ACTIONS(6892), + [anon_sym_SEMI_SEMI] = ACTIONS(6888), }, - [2773] = { - [anon_sym_LF] = ACTIONS(6882), - [anon_sym_SEMI] = ACTIONS(6884), + [2779] = { + [anon_sym_AMP] = ACTIONS(6888), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6884), - [anon_sym_SEMI_SEMI] = ACTIONS(6884), - [anon_sym_in] = ACTIONS(6886), + [anon_sym_LF] = ACTIONS(6890), + [anon_sym_SEMI] = ACTIONS(6888), + [anon_sym_in] = ACTIONS(6892), + [anon_sym_SEMI_SEMI] = ACTIONS(6888), }, - [2774] = { - [aux_sym__literal_repeat1] = STATE(787), - [sym__special_character] = ACTIONS(533), - [anon_sym_LF] = ACTIONS(6888), - [anon_sym_SEMI] = ACTIONS(6890), + [2780] = { + [aux_sym__literal_repeat1] = STATE(793), + [anon_sym_AMP] = ACTIONS(6894), [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6890), - [anon_sym_SEMI_SEMI] = ACTIONS(6890), - [anon_sym_in] = ACTIONS(6892), + [anon_sym_LF] = ACTIONS(6896), + [anon_sym_SEMI] = ACTIONS(6894), + [sym__special_character] = ACTIONS(503), + [anon_sym_SEMI_SEMI] = ACTIONS(6894), + [anon_sym_in] = ACTIONS(6898), }, - [2775] = { - [anon_sym_in] = ACTIONS(6894), - [sym_comment] = ACTIONS(53), + [2781] = { + [sym_comment] = ACTIONS(23), + [anon_sym_in] = ACTIONS(6900), }, - [2776] = { - [anon_sym_in] = ACTIONS(6896), - [sym_comment] = ACTIONS(53), + [2782] = { + [sym_comment] = ACTIONS(23), + [anon_sym_in] = ACTIONS(6902), }, - [2777] = { - [sym_concatenation] = STATE(2553), + [2783] = { + [sym_concatenation] = STATE(2559), [sym_string] = STATE(488), [sym_command_substitution] = STATE(488), [sym_process_substitution] = STATE(488), - [aux_sym_for_statement_repeat1] = STATE(2553), + [aux_sym_for_statement_repeat1] = STATE(2559), [sym_arithmetic_expansion] = STATE(488), [sym_string_expansion] = STATE(488), [sym_expansion] = STATE(488), - [aux_sym__literal_repeat1] = STATE(489), + [aux_sym__literal_repeat1] = STATE(490), [sym_simple_expansion] = STATE(488), - [anon_sym_GT_LPAREN] = ACTIONS(1152), - [sym_number] = ACTIONS(1156), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1162), - [sym_word] = ACTIONS(1156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1166), - [anon_sym_LT_LPAREN] = ACTIONS(1152), - [sym_ansii_c_string] = ACTIONS(1164), - [sym__special_character] = ACTIONS(1154), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(1168), - [sym_raw_string] = ACTIONS(1164), - [anon_sym_DOLLAR] = ACTIONS(1170), - }, - [2778] = { - [sym_unary_expression] = STATE(2779), - [sym_postfix_expression] = STATE(2779), - [sym_concatenation] = STATE(2779), - [sym_string] = STATE(561), - [sym_command_substitution] = STATE(561), - [sym_process_substitution] = STATE(561), - [sym__expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_arithmetic_expansion] = STATE(561), - [sym_string_expansion] = STATE(561), - [sym_expansion] = STATE(561), - [aux_sym__literal_repeat1] = STATE(563), - [sym_parenthesized_expression] = STATE(2779), - [sym_simple_expansion] = STATE(561), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_DQUOTE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_LT_LPAREN] = ACTIONS(653), - [sym_ansii_c_string] = ACTIONS(655), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(653), - [sym_number] = ACTIONS(655), - [anon_sym_LF] = ACTIONS(6898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(6898), - [sym_word] = ACTIONS(655), - [sym__special_character] = ACTIONS(671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(673), - [sym_raw_string] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(6898), - [anon_sym_SEMI_SEMI] = ACTIONS(6898), - [sym_test_operator] = ACTIONS(661), - }, - [2779] = { - [anon_sym_PLUS_EQ] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(1178), - [anon_sym_EQ_TILDE] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_DASH_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_LF] = ACTIONS(6900), - [anon_sym_SEMI] = ACTIONS(6900), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6900), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_SEMI_SEMI] = ACTIONS(6900), - [sym_test_operator] = ACTIONS(1178), - }, - [2780] = { - [sym_unary_expression] = STATE(2781), - [sym_postfix_expression] = STATE(2781), - [sym_concatenation] = STATE(2781), - [sym_string] = STATE(561), - [sym_command_substitution] = STATE(561), - [sym_process_substitution] = STATE(561), - [sym__expression] = STATE(2781), - [sym_binary_expression] = STATE(2781), - [sym_arithmetic_expansion] = STATE(561), - [sym_string_expansion] = STATE(561), - [sym_expansion] = STATE(561), - [aux_sym__literal_repeat1] = STATE(563), - [sym_parenthesized_expression] = STATE(2781), - [sym_simple_expansion] = STATE(561), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_DQUOTE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_LT_LPAREN] = ACTIONS(653), - [sym_ansii_c_string] = ACTIONS(655), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(653), - [sym_number] = ACTIONS(655), - [anon_sym_LF] = ACTIONS(6900), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(6900), - [sym_word] = ACTIONS(655), - [sym__special_character] = ACTIONS(671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(673), - [sym_raw_string] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(6900), - [anon_sym_SEMI_SEMI] = ACTIONS(6900), - [sym_test_operator] = ACTIONS(661), - }, - [2781] = { - [anon_sym_PLUS_EQ] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(1178), - [anon_sym_EQ_TILDE] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_DASH_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_LF] = ACTIONS(6902), - [anon_sym_SEMI] = ACTIONS(6902), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6902), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_SEMI_SEMI] = ACTIONS(6902), - [sym_test_operator] = ACTIONS(1178), - }, - [2782] = { - [aux_sym_concatenation_repeat1] = STATE(2565), - [anon_sym_LT_LT_DASH] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LF] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1224), - [sym_file_descriptor] = ACTIONS(1226), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [anon_sym_LT_LT_LT] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_esac] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [sym__concat] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), - }, - [2783] = { - [aux_sym_concatenation_repeat1] = STATE(2565), - [anon_sym_LT_LT_DASH] = ACTIONS(381), - [anon_sym_AMP_GT_GT] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(381), - [sym_file_descriptor] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_AMP_GT] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT_LT] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_GT_AMP] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_esac] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_LT_AMP] = ACTIONS(381), - [sym__concat] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_SEMI_SEMI] = ACTIONS(381), - [anon_sym_PIPE_AMP] = ACTIONS(381), + [anon_sym_LT_LPAREN] = ACTIONS(1094), + [sym_ansii_c_string] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym__special_character] = ACTIONS(1096), + [anon_sym_BQUOTE] = ACTIONS(1102), + [sym_raw_string] = ACTIONS(1090), + [sym_number] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1088), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(1094), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1104), + [sym_word] = ACTIONS(1086), }, [2784] = { - [aux_sym_concatenation_repeat1] = STATE(2565), - [anon_sym_LT_LT_DASH] = ACTIONS(1146), - [anon_sym_AMP_GT_GT] = ACTIONS(1146), - [anon_sym_LF] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_LT_LT] = ACTIONS(1146), - [sym_file_descriptor] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_AMP_GT] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_LT_LT_LT] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_GT_AMP] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_esac] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1146), - [anon_sym_LT_AMP] = ACTIONS(1146), - [sym__concat] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), - [anon_sym_PIPE_AMP] = ACTIONS(1146), + [sym_unary_expression] = STATE(2785), + [sym_postfix_expression] = STATE(2785), + [sym_concatenation] = STATE(2785), + [sym_string] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym__expression] = STATE(2785), + [sym_binary_expression] = STATE(2785), + [sym_arithmetic_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [sym_expansion] = STATE(565), + [aux_sym__literal_repeat1] = STATE(568), + [sym_parenthesized_expression] = STATE(2785), + [sym_simple_expansion] = STATE(565), + [anon_sym_LPAREN] = ACTIONS(605), + [aux_sym_unary_expression_token1] = ACTIONS(617), + [sym__special_character] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(623), + [sym_raw_string] = ACTIONS(609), + [sym_number] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(6904), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(631), + [anon_sym_LT_LPAREN] = ACTIONS(607), + [sym_ansii_c_string] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(611), + [anon_sym_LF] = ACTIONS(6904), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(6904), + [anon_sym_DOLLAR] = ACTIONS(625), + [anon_sym_GT_LPAREN] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), + [sym_test_operator] = ACTIONS(615), + [anon_sym_SEMI_SEMI] = ACTIONS(6904), + [sym_word] = ACTIONS(609), }, [2785] = { - [aux_sym_concatenation_repeat1] = STATE(2564), - [sym_comment] = ACTIONS(3), - [sym__special_character] = ACTIONS(285), - [sym__concat] = ACTIONS(525), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PLUS_EQ] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PIPE_PIPE] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(6906), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_EQ_TILDE] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_LT_EQ] = ACTIONS(1112), + [anon_sym_DASH_EQ] = ACTIONS(1112), + [anon_sym_BANG_EQ] = ACTIONS(1112), + [anon_sym_LF] = ACTIONS(6906), + [anon_sym_SEMI] = ACTIONS(6906), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1116), + [anon_sym_GT_EQ] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [sym_test_operator] = ACTIONS(1112), + [anon_sym_SEMI_SEMI] = ACTIONS(6906), }, [2786] = { - [aux_sym_concatenation_repeat1] = STATE(2565), - [anon_sym_LT_LT_DASH] = ACTIONS(285), - [anon_sym_AMP_GT_GT] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(287), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(285), - [sym_file_descriptor] = ACTIONS(287), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_AMP_GT] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(285), - [sym__special_character] = ACTIONS(285), - [anon_sym_LT_LT_LT] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_GT_AMP] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_esac] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_LT_AMP] = ACTIONS(285), - [sym__concat] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_SEMI_SEMI] = ACTIONS(285), - [anon_sym_PIPE_AMP] = ACTIONS(285), + [sym_unary_expression] = STATE(2787), + [sym_postfix_expression] = STATE(2787), + [sym_concatenation] = STATE(2787), + [sym_string] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym__expression] = STATE(2787), + [sym_binary_expression] = STATE(2787), + [sym_arithmetic_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [sym_expansion] = STATE(565), + [aux_sym__literal_repeat1] = STATE(568), + [sym_parenthesized_expression] = STATE(2787), + [sym_simple_expansion] = STATE(565), + [anon_sym_LPAREN] = ACTIONS(605), + [aux_sym_unary_expression_token1] = ACTIONS(617), + [sym__special_character] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(623), + [sym_raw_string] = ACTIONS(609), + [sym_number] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(6906), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(631), + [anon_sym_LT_LPAREN] = ACTIONS(607), + [sym_ansii_c_string] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(611), + [anon_sym_LF] = ACTIONS(6906), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(6906), + [anon_sym_DOLLAR] = ACTIONS(625), + [anon_sym_GT_LPAREN] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), + [sym_test_operator] = ACTIONS(615), + [anon_sym_SEMI_SEMI] = ACTIONS(6906), + [sym_word] = ACTIONS(609), }, [2787] = { - [aux_sym_concatenation_repeat1] = STATE(2566), - [anon_sym_RPAREN] = ACTIONS(287), - [sym__special_character] = ACTIONS(287), - [sym__concat] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(287), - [sym_comment] = ACTIONS(53), + [anon_sym_PLUS_EQ] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PIPE_PIPE] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(6908), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_EQ_TILDE] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_LT_EQ] = ACTIONS(1112), + [anon_sym_DASH_EQ] = ACTIONS(1112), + [anon_sym_BANG_EQ] = ACTIONS(1112), + [anon_sym_LF] = ACTIONS(6908), + [anon_sym_SEMI] = ACTIONS(6908), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1116), + [anon_sym_GT_EQ] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [sym_test_operator] = ACTIONS(1112), + [anon_sym_SEMI_SEMI] = ACTIONS(6908), }, [2788] = { - [sym_expansion] = STATE(2782), - [sym_concatenation] = STATE(468), - [sym_string] = STATE(2782), - [sym_command_substitution] = STATE(2782), - [sym_process_substitution] = STATE(2782), - [aux_sym__literal_repeat1] = STATE(469), - [sym_simple_expansion] = STATE(2782), - [sym_arithmetic_expansion] = STATE(2782), - [sym_string_expansion] = STATE(2782), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(2945), - [sym__special_character] = ACTIONS(6904), - [sym_number] = ACTIONS(6906), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), - [sym_raw_string] = ACTIONS(6908), - [sym_word] = ACTIONS(6906), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(3236), - [sym_ansii_c_string] = ACTIONS(6908), - [anon_sym_LT_LPAREN] = ACTIONS(2945), + [aux_sym_concatenation_repeat1] = STATE(2571), + [anon_sym_LT_LT_DASH] = ACTIONS(1230), + [anon_sym_AMP_GT_GT] = ACTIONS(1230), + [anon_sym_LF] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_LT_LT] = ACTIONS(1230), + [sym_file_descriptor] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_AMP_GT] = ACTIONS(1230), + [anon_sym_PIPE_PIPE] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_LT_LT_LT] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_GT_AMP] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_esac] = ACTIONS(1230), + [anon_sym_GT_GT] = ACTIONS(1230), + [anon_sym_LT_AMP] = ACTIONS(1230), + [sym__concat] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1230), + [anon_sym_SEMI_SEMI] = ACTIONS(1230), + [anon_sym_PIPE_AMP] = ACTIONS(1230), }, [2789] = { - [sym_expansion] = STATE(2783), - [sym_concatenation] = STATE(552), - [sym_string] = STATE(2783), - [sym_command_substitution] = STATE(2783), - [sym_process_substitution] = STATE(2783), - [aux_sym__literal_repeat1] = STATE(553), - [sym_simple_expansion] = STATE(2783), - [sym_arithmetic_expansion] = STATE(2783), - [sym_string_expansion] = STATE(2783), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(2945), - [sym__special_character] = ACTIONS(6904), - [sym_number] = ACTIONS(6910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), - [sym_raw_string] = ACTIONS(6912), - [sym_word] = ACTIONS(6910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(3236), - [sym_ansii_c_string] = ACTIONS(6912), - [anon_sym_LT_LPAREN] = ACTIONS(2945), + [aux_sym_concatenation_repeat1] = STATE(2571), + [anon_sym_LT_LT_DASH] = ACTIONS(385), + [anon_sym_AMP_GT_GT] = ACTIONS(385), + [anon_sym_LF] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [sym_file_descriptor] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_AMP_GT] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_LT_LT_LT] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_GT_AMP] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_esac] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_AMP] = ACTIONS(385), + [sym__concat] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_SEMI_SEMI] = ACTIONS(385), + [anon_sym_PIPE_AMP] = ACTIONS(385), }, [2790] = { - [sym_expansion] = STATE(2784), - [sym_concatenation] = STATE(600), - [sym_string] = STATE(2784), - [sym_command_substitution] = STATE(2784), - [sym_process_substitution] = STATE(2784), - [aux_sym__literal_repeat1] = STATE(601), - [sym_simple_expansion] = STATE(2784), - [sym_arithmetic_expansion] = STATE(2784), - [sym_string_expansion] = STATE(2784), - [sym_comment] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(2945), - [sym__special_character] = ACTIONS(6904), - [sym_number] = ACTIONS(6914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2953), - [sym_raw_string] = ACTIONS(6916), - [sym_word] = ACTIONS(6914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2955), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(3236), - [sym_ansii_c_string] = ACTIONS(6916), - [anon_sym_LT_LPAREN] = ACTIONS(2945), + [aux_sym_concatenation_repeat1] = STATE(2571), + [anon_sym_LT_LT_DASH] = ACTIONS(1076), + [anon_sym_AMP_GT_GT] = ACTIONS(1076), + [anon_sym_LF] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_LT_LT] = ACTIONS(1076), + [sym_file_descriptor] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_AMP_GT] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_LT_LT_LT] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_GT_AMP] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_esac] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1076), + [anon_sym_LT_AMP] = ACTIONS(1076), + [sym__concat] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_SEMI_SEMI] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(1076), }, [2791] = { - [anon_sym_AMP_GT_GT] = ACTIONS(6918), - [anon_sym_GT_AMP] = ACTIONS(6918), - [anon_sym_LT] = ACTIONS(6920), - [anon_sym_LT_AMP] = ACTIONS(6918), - [anon_sym_GT_GT] = ACTIONS(6918), - [sym_comment] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(6920), - [anon_sym_AMP_GT] = ACTIONS(6920), + [aux_sym_concatenation_repeat1] = STATE(2570), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(497), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), }, [2792] = { - [sym_expansion] = STATE(2772), - [sym_concatenation] = STATE(2773), - [sym_string] = STATE(2772), - [sym_command_substitution] = STATE(2772), - [sym_process_substitution] = STATE(2772), - [aux_sym__literal_repeat1] = STATE(2774), - [sym_simple_expansion] = STATE(2772), - [sym_arithmetic_expansion] = STATE(2772), - [sym_string_expansion] = STATE(2772), - [anon_sym_GT_LPAREN] = ACTIONS(243), - [sym_number] = ACTIONS(6922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(253), - [sym_word] = ACTIONS(6922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), - [anon_sym_LT_LPAREN] = ACTIONS(243), - [sym_ansii_c_string] = ACTIONS(6924), - [sym__special_character] = ACTIONS(245), - [sym_comment] = ACTIONS(53), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_raw_string] = ACTIONS(6924), - [anon_sym_DOLLAR] = ACTIONS(261), + [aux_sym_concatenation_repeat1] = STATE(2571), + [anon_sym_LT_LT_DASH] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(185), + [anon_sym_LF] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(185), + [sym__special_character] = ACTIONS(185), + [anon_sym_LT_LT] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_GT_AMP] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_LT_AMP] = ACTIONS(185), + [sym__concat] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(185), + [anon_sym_PIPE_AMP] = ACTIONS(185), }, [2793] = { - [sym_unary_expression] = STATE(2795), - [sym_postfix_expression] = STATE(2795), - [sym_concatenation] = STATE(2795), - [sym_string] = STATE(561), - [sym_command_substitution] = STATE(561), - [sym_process_substitution] = STATE(561), - [sym_variable_assignment] = STATE(2794), - [sym_subscript] = STATE(2605), - [sym__expression] = STATE(2795), - [sym_binary_expression] = STATE(2795), - [sym_arithmetic_expansion] = STATE(561), - [sym_string_expansion] = STATE(561), - [sym_expansion] = STATE(561), - [aux_sym__literal_repeat1] = STATE(563), - [sym_parenthesized_expression] = STATE(2795), - [sym_simple_expansion] = STATE(561), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_DQUOTE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_LT_LPAREN] = ACTIONS(653), - [sym_ansii_c_string] = ACTIONS(655), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(653), - [sym_number] = ACTIONS(655), - [anon_sym_LF] = ACTIONS(6926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(6926), - [sym_variable_name] = ACTIONS(665), - [sym_word] = ACTIONS(655), - [sym__special_character] = ACTIONS(671), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(673), - [sym_raw_string] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(6926), - [anon_sym_SEMI_SEMI] = ACTIONS(6926), - [sym_test_operator] = ACTIONS(661), + [aux_sym_concatenation_repeat1] = STATE(2572), + [anon_sym_RPAREN] = ACTIONS(189), + [sym__concat] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(189), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(189), }, [2794] = { - [anon_sym_LF] = ACTIONS(6928), - [anon_sym_SEMI] = ACTIONS(6930), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6930), - [anon_sym_SEMI_SEMI] = ACTIONS(6930), + [sym_expansion] = STATE(2788), + [sym_concatenation] = STATE(472), + [sym_string] = STATE(2788), + [sym_command_substitution] = STATE(2788), + [sym_process_substitution] = STATE(2788), + [aux_sym__literal_repeat1] = STATE(473), + [sym_simple_expansion] = STATE(2788), + [sym_arithmetic_expansion] = STATE(2788), + [sym_string_expansion] = STATE(2788), + [sym_number] = ACTIONS(6910), + [sym_word] = ACTIONS(6910), + [anon_sym_DOLLAR] = ACTIONS(3242), + [sym_ansii_c_string] = ACTIONS(6912), + [anon_sym_DQUOTE] = ACTIONS(2955), + [anon_sym_LT_LPAREN] = ACTIONS(2951), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(6914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2963), + [anon_sym_GT_LPAREN] = ACTIONS(2951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2965), + [anon_sym_BQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2967), + [sym_raw_string] = ACTIONS(6912), }, [2795] = { - [anon_sym_PLUS_EQ] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(1178), - [anon_sym_EQ_TILDE] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_DASH_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_LF] = ACTIONS(6930), - [anon_sym_SEMI] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(6930), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_SEMI_SEMI] = ACTIONS(6930), - [sym_test_operator] = ACTIONS(1178), + [sym_expansion] = STATE(2789), + [sym_concatenation] = STATE(556), + [sym_string] = STATE(2789), + [sym_command_substitution] = STATE(2789), + [sym_process_substitution] = STATE(2789), + [aux_sym__literal_repeat1] = STATE(557), + [sym_simple_expansion] = STATE(2789), + [sym_arithmetic_expansion] = STATE(2789), + [sym_string_expansion] = STATE(2789), + [sym_number] = ACTIONS(6916), + [sym_word] = ACTIONS(6916), + [anon_sym_DOLLAR] = ACTIONS(3242), + [sym_ansii_c_string] = ACTIONS(6918), + [anon_sym_DQUOTE] = ACTIONS(2955), + [anon_sym_LT_LPAREN] = ACTIONS(2951), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(6914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2963), + [anon_sym_GT_LPAREN] = ACTIONS(2951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2965), + [anon_sym_BQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2967), + [sym_raw_string] = ACTIONS(6918), }, [2796] = { - [sym_heredoc_redirect] = STATE(2798), - [sym_file_redirect] = STATE(2798), - [sym_herestring_redirect] = STATE(2798), - [aux_sym_redirected_statement_repeat1] = STATE(2798), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_AMP_GT_GT] = ACTIONS(2347), - [anon_sym_LF] = ACTIONS(719), - [anon_sym_SEMI] = ACTIONS(721), - [anon_sym_LT_LT] = ACTIONS(497), - [sym_file_descriptor] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_AMP_GT] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(721), - [anon_sym_LT_LT_LT] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(721), - [anon_sym_GT_AMP] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_esac] = ACTIONS(721), - [anon_sym_GT_GT] = ACTIONS(2347), - [anon_sym_LT_AMP] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(721), - [anon_sym_AMP] = ACTIONS(721), - [anon_sym_SEMI_SEMI] = ACTIONS(721), - [anon_sym_PIPE_AMP] = ACTIONS(721), + [sym_expansion] = STATE(2790), + [sym_concatenation] = STATE(603), + [sym_string] = STATE(2790), + [sym_command_substitution] = STATE(2790), + [sym_process_substitution] = STATE(2790), + [aux_sym__literal_repeat1] = STATE(604), + [sym_simple_expansion] = STATE(2790), + [sym_arithmetic_expansion] = STATE(2790), + [sym_string_expansion] = STATE(2790), + [sym_number] = ACTIONS(6920), + [sym_word] = ACTIONS(6920), + [anon_sym_DOLLAR] = ACTIONS(3242), + [sym_ansii_c_string] = ACTIONS(6922), + [anon_sym_DQUOTE] = ACTIONS(2955), + [anon_sym_LT_LPAREN] = ACTIONS(2951), + [sym_comment] = ACTIONS(23), + [sym__special_character] = ACTIONS(6914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2963), + [anon_sym_GT_LPAREN] = ACTIONS(2951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2965), + [anon_sym_BQUOTE] = ACTIONS(2957), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(2967), + [sym_raw_string] = ACTIONS(6922), }, [2797] = { - [sym_heredoc_redirect] = STATE(2796), - [sym_file_redirect] = STATE(2796), - [sym_herestring_redirect] = STATE(2796), - [aux_sym_redirected_statement_repeat1] = STATE(2796), - [anon_sym_LT_LT_DASH] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1190), - [anon_sym_LF] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1190), - [sym_file_descriptor] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_GT_AMP] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_esac] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_LT_AMP] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI_SEMI] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(6924), + [anon_sym_GT_AMP] = ACTIONS(6924), + [sym_comment] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(6926), + [anon_sym_LT_AMP] = ACTIONS(6924), + [anon_sym_GT_GT] = ACTIONS(6924), + [anon_sym_GT] = ACTIONS(6926), + [anon_sym_AMP_GT] = ACTIONS(6926), }, [2798] = { - [sym_heredoc_redirect] = STATE(2798), - [sym_file_redirect] = STATE(2798), - [sym_herestring_redirect] = STATE(2798), - [aux_sym_redirected_statement_repeat1] = STATE(2798), - [anon_sym_LT_LT_DASH] = ACTIONS(2237), - [anon_sym_AMP_GT_GT] = ACTIONS(6932), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(2237), - [sym_file_descriptor] = ACTIONS(6935), - [anon_sym_GT] = ACTIONS(6932), - [anon_sym_AMP_GT] = ACTIONS(6932), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT_LT] = ACTIONS(6938), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_GT_AMP] = ACTIONS(6932), - [anon_sym_LT] = ACTIONS(6932), - [anon_sym_esac] = ACTIONS(1244), - [anon_sym_GT_GT] = ACTIONS(6932), - [anon_sym_LT_AMP] = ACTIONS(6932), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_SEMI_SEMI] = ACTIONS(1244), - [anon_sym_PIPE_AMP] = ACTIONS(1244), + [sym_expansion] = STATE(2778), + [sym_concatenation] = STATE(2779), + [sym_string] = STATE(2778), + [sym_command_substitution] = STATE(2778), + [sym_process_substitution] = STATE(2778), + [aux_sym__literal_repeat1] = STATE(2780), + [sym_simple_expansion] = STATE(2778), + [sym_arithmetic_expansion] = STATE(2778), + [sym_string_expansion] = STATE(2778), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [sym_ansii_c_string] = ACTIONS(6928), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__special_character] = ACTIONS(243), + [anon_sym_BQUOTE] = ACTIONS(249), + [sym_raw_string] = ACTIONS(6928), + [sym_number] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(235), + [sym_comment] = ACTIONS(23), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(251), + [sym_word] = ACTIONS(6930), + }, + [2799] = { + [sym_unary_expression] = STATE(2801), + [sym_postfix_expression] = STATE(2801), + [sym_concatenation] = STATE(2801), + [sym_string] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [sym_variable_assignment] = STATE(2800), + [sym_subscript] = STATE(2611), + [sym__expression] = STATE(2801), + [sym_binary_expression] = STATE(2801), + [sym_arithmetic_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [sym_expansion] = STATE(565), + [aux_sym__literal_repeat1] = STATE(568), + [sym_parenthesized_expression] = STATE(2801), + [sym_simple_expansion] = STATE(565), + [anon_sym_LPAREN] = ACTIONS(605), + [aux_sym_unary_expression_token1] = ACTIONS(617), + [sym__special_character] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(623), + [sym_raw_string] = ACTIONS(609), + [sym_number] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(6932), + [sym_comment] = ACTIONS(3), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(631), + [anon_sym_LT_LPAREN] = ACTIONS(607), + [sym_ansii_c_string] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(611), + [anon_sym_LF] = ACTIONS(6932), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(6932), + [sym_variable_name] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(625), + [anon_sym_GT_LPAREN] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(629), + [sym_test_operator] = ACTIONS(615), + [anon_sym_SEMI_SEMI] = ACTIONS(6932), + [sym_word] = ACTIONS(609), + }, + [2800] = { + [anon_sym_AMP] = ACTIONS(6934), + [anon_sym_LF] = ACTIONS(6936), + [anon_sym_SEMI] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI_SEMI] = ACTIONS(6934), + }, + [2801] = { + [anon_sym_PLUS_EQ] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PIPE_PIPE] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_EQ_TILDE] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_LT_EQ] = ACTIONS(1112), + [anon_sym_DASH_EQ] = ACTIONS(1112), + [anon_sym_BANG_EQ] = ACTIONS(1112), + [anon_sym_LF] = ACTIONS(6934), + [anon_sym_SEMI] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_EQ_EQ] = ACTIONS(1116), + [anon_sym_GT_EQ] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [sym_test_operator] = ACTIONS(1112), + [anon_sym_SEMI_SEMI] = ACTIONS(6934), + }, + [2802] = { + [sym_heredoc_redirect] = STATE(2804), + [sym_file_redirect] = STATE(2804), + [sym_herestring_redirect] = STATE(2804), + [aux_sym_redirected_statement_repeat1] = STATE(2804), + [anon_sym_LT_LT_DASH] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(2353), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_LT_LT] = ACTIONS(459), + [sym_file_descriptor] = ACTIONS(2359), + [anon_sym_GT] = ACTIONS(2353), + [anon_sym_AMP_GT] = ACTIONS(2353), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_GT_AMP] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_esac] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(2353), + [anon_sym_LT_AMP] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_SEMI_SEMI] = ACTIONS(727), + [anon_sym_PIPE_AMP] = ACTIONS(727), + }, + [2803] = { + [sym_heredoc_redirect] = STATE(2802), + [sym_file_redirect] = STATE(2802), + [sym_herestring_redirect] = STATE(2802), + [aux_sym_redirected_statement_repeat1] = STATE(2802), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1196), + [sym_file_descriptor] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_esac] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + }, + [2804] = { + [sym_heredoc_redirect] = STATE(2804), + [sym_file_redirect] = STATE(2804), + [sym_herestring_redirect] = STATE(2804), + [aux_sym_redirected_statement_repeat1] = STATE(2804), + [anon_sym_LT_LT_DASH] = ACTIONS(2243), + [anon_sym_AMP_GT_GT] = ACTIONS(6938), + [anon_sym_LF] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_LT_LT] = ACTIONS(2243), + [sym_file_descriptor] = ACTIONS(6941), + [anon_sym_GT] = ACTIONS(6938), + [anon_sym_AMP_GT] = ACTIONS(6938), + [anon_sym_PIPE_PIPE] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_LT_LT_LT] = ACTIONS(6944), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_GT_AMP] = ACTIONS(6938), + [anon_sym_LT] = ACTIONS(6938), + [anon_sym_esac] = ACTIONS(1250), + [anon_sym_GT_GT] = ACTIONS(6938), + [anon_sym_LT_AMP] = ACTIONS(6938), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1250), + [anon_sym_SEMI_SEMI] = ACTIONS(1250), + [anon_sym_PIPE_AMP] = ACTIONS(1250), }, }; @@ -84502,3337 +84646,3340 @@ static TSParseActionEntry ts_parse_actions[] = { [7] = {.count = 1, .reusable = true}, SHIFT(3), [9] = {.count = 1, .reusable = false}, SHIFT(4), [11] = {.count = 1, .reusable = false}, SHIFT(5), - [13] = {.count = 1, .reusable = true}, SHIFT(6), + [13] = {.count = 1, .reusable = false}, SHIFT(6), [15] = {.count = 1, .reusable = true}, SHIFT(7), - [17] = {.count = 1, .reusable = false}, SHIFT(8), - [19] = {.count = 1, .reusable = true}, SHIFT(9), - [21] = {.count = 1, .reusable = true}, SHIFT(10), - [23] = {.count = 1, .reusable = false}, SHIFT(11), - [25] = {.count = 1, .reusable = true}, SHIFT(12), + [17] = {.count = 1, .reusable = true}, SHIFT(8), + [19] = {.count = 1, .reusable = false}, SHIFT(8), + [21] = {.count = 1, .reusable = false}, SHIFT(9), + [23] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), + [25] = {.count = 1, .reusable = true}, SHIFT(10), [27] = {.count = 1, .reusable = false}, SHIFT(3), - [29] = {.count = 1, .reusable = false}, SHIFT(13), - [31] = {.count = 1, .reusable = false}, SHIFT(14), - [33] = {.count = 1, .reusable = false}, SHIFT(15), - [35] = {.count = 1, .reusable = true}, SHIFT(16), - [37] = {.count = 1, .reusable = false}, SHIFT(10), - [39] = {.count = 1, .reusable = true}, SHIFT(17), - [41] = {.count = 1, .reusable = false}, SHIFT(18), - [43] = {.count = 1, .reusable = true}, SHIFT(19), - [45] = {.count = 1, .reusable = true}, SHIFT(20), - [47] = {.count = 1, .reusable = false}, SHIFT(21), - [49] = {.count = 1, .reusable = true}, REDUCE(sym_program, 0), - [51] = {.count = 1, .reusable = false}, SHIFT(22), - [53] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [55] = {.count = 1, .reusable = true}, SHIFT(23), + [29] = {.count = 1, .reusable = true}, SHIFT(11), + [31] = {.count = 1, .reusable = false}, SHIFT(12), + [33] = {.count = 1, .reusable = false}, SHIFT(13), + [35] = {.count = 1, .reusable = true}, SHIFT(14), + [37] = {.count = 1, .reusable = true}, SHIFT(15), + [39] = {.count = 1, .reusable = false}, SHIFT(16), + [41] = {.count = 1, .reusable = true}, SHIFT(17), + [43] = {.count = 1, .reusable = true}, SHIFT(18), + [45] = {.count = 1, .reusable = true}, SHIFT(19), + [47] = {.count = 1, .reusable = true}, REDUCE(sym_program, 0), + [49] = {.count = 1, .reusable = false}, SHIFT(20), + [51] = {.count = 1, .reusable = false}, SHIFT(21), + [53] = {.count = 1, .reusable = false}, SHIFT(22), + [55] = {.count = 1, .reusable = false}, SHIFT(23), [57] = {.count = 1, .reusable = false}, SHIFT(24), - [59] = {.count = 1, .reusable = false}, SHIFT(25), - [61] = {.count = 1, .reusable = false}, SHIFT(26), - [63] = {.count = 1, .reusable = true}, SHIFT(27), - [65] = {.count = 1, .reusable = false}, SHIFT(2526), - [67] = {.count = 1, .reusable = false}, SHIFT(384), - [69] = {.count = 1, .reusable = false}, SHIFT(385), - [71] = {.count = 1, .reusable = true}, SHIFT(1427), - [73] = {.count = 1, .reusable = true}, SHIFT(2527), - [75] = {.count = 1, .reusable = false}, SHIFT(2528), - [77] = {.count = 1, .reusable = true}, SHIFT(2529), - [79] = {.count = 1, .reusable = true}, SHIFT(386), - [81] = {.count = 1, .reusable = false}, SHIFT(2530), - [83] = {.count = 1, .reusable = true}, SHIFT(1428), - [85] = {.count = 1, .reusable = false}, SHIFT(1429), - [87] = {.count = 1, .reusable = false}, SHIFT(2770), - [89] = {.count = 1, .reusable = false}, SHIFT(2792), - [91] = {.count = 1, .reusable = true}, SHIFT(2531), - [93] = {.count = 1, .reusable = false}, SHIFT(386), - [95] = {.count = 1, .reusable = true}, SHIFT(2532), - [97] = {.count = 1, .reusable = false}, SHIFT(387), - [99] = {.count = 1, .reusable = true}, SHIFT(2533), - [101] = {.count = 1, .reusable = false}, SHIFT(388), - [103] = {.count = 1, .reusable = false}, SHIFT(389), - [105] = {.count = 1, .reusable = true}, SHIFT(2535), - [107] = {.count = 1, .reusable = false}, SHIFT(2771), - [109] = {.count = 1, .reusable = false}, SHIFT(2536), - [111] = {.count = 1, .reusable = false}, SHIFT(2537), - [113] = {.count = 1, .reusable = true}, SHIFT(2538), - [115] = {.count = 1, .reusable = true}, SHIFT(2569), - [117] = {.count = 1, .reusable = false}, SHIFT(39), - [119] = {.count = 1, .reusable = true}, SHIFT(2570), - [121] = {.count = 1, .reusable = true}, SHIFT(1537), - [123] = {.count = 1, .reusable = true}, SHIFT(2567), - [125] = {.count = 1, .reusable = false}, SHIFT(2568), - [127] = {.count = 1, .reusable = true}, SHIFT(39), - [129] = {.count = 1, .reusable = true}, SHIFT(543), - [131] = {.count = 1, .reusable = true}, SHIFT(2573), - [133] = {.count = 1, .reusable = false}, SHIFT(1538), - [135] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), - [137] = {.count = 1, .reusable = false}, SHIFT(1583), - [139] = {.count = 1, .reusable = false}, SHIFT(2579), - [141] = {.count = 1, .reusable = false}, SHIFT(2580), - [143] = {.count = 1, .reusable = false}, SHIFT(2581), - [145] = {.count = 1, .reusable = false}, SHIFT(42), - [147] = {.count = 1, .reusable = false}, SHIFT(44), - [149] = {.count = 1, .reusable = false}, SHIFT(1584), - [151] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), - [153] = {.count = 1, .reusable = false}, SHIFT(2582), - [155] = {.count = 1, .reusable = true}, SHIFT(2571), - [157] = {.count = 1, .reusable = false}, SHIFT(639), - [159] = {.count = 1, .reusable = false}, SHIFT(2584), - [161] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), - [163] = {.count = 1, .reusable = false}, SHIFT(1627), - [165] = {.count = 1, .reusable = false}, SHIFT(2589), - [167] = {.count = 1, .reusable = false}, SHIFT(2590), - [169] = {.count = 1, .reusable = false}, SHIFT(2591), - [171] = {.count = 1, .reusable = false}, SHIFT(45), - [173] = {.count = 1, .reusable = false}, SHIFT(47), - [175] = {.count = 1, .reusable = false}, SHIFT(1628), - [177] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), - [179] = {.count = 1, .reusable = false}, SHIFT(2592), - [181] = {.count = 1, .reusable = false}, SHIFT(701), - [183] = {.count = 1, .reusable = false}, SHIFT(2594), - [185] = {.count = 1, .reusable = false}, SHIFT(48), - [187] = {.count = 1, .reusable = false}, SHIFT(2602), - [189] = {.count = 1, .reusable = false}, SHIFT(50), - [191] = {.count = 1, .reusable = false}, SHIFT(2599), - [193] = {.count = 1, .reusable = false}, SHIFT(2604), - [195] = {.count = 1, .reusable = false}, SHIFT(2600), - [197] = {.count = 1, .reusable = false}, SHIFT(49), - [199] = {.count = 1, .reusable = true}, SHIFT(52), - [201] = {.count = 1, .reusable = true}, SHIFT(2601), - [203] = {.count = 1, .reusable = false}, SHIFT(53), - [205] = {.count = 1, .reusable = true}, SHIFT(2612), - [207] = {.count = 1, .reusable = false}, SHIFT(54), - [209] = {.count = 1, .reusable = true}, SHIFT(1671), - [211] = {.count = 1, .reusable = true}, SHIFT(2609), - [213] = {.count = 1, .reusable = false}, SHIFT(2610), - [215] = {.count = 1, .reusable = true}, SHIFT(53), - [217] = {.count = 1, .reusable = true}, SHIFT(742), - [219] = {.count = 1, .reusable = true}, SHIFT(2614), - [221] = {.count = 1, .reusable = false}, SHIFT(1672), - [223] = {.count = 1, .reusable = true}, SHIFT(54), - [225] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), - [227] = {.count = 1, .reusable = true}, SHIFT(60), - [229] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), - [231] = {.count = 1, .reusable = true}, SHIFT(62), - [233] = {.count = 1, .reusable = true}, SHIFT(63), - [235] = {.count = 1, .reusable = true}, SHIFT(67), - [237] = {.count = 1, .reusable = false}, SHIFT(68), - [239] = {.count = 1, .reusable = true}, SHIFT(68), - [241] = {.count = 1, .reusable = true}, SHIFT(69), - [243] = {.count = 1, .reusable = true}, SHIFT(2611), - [245] = {.count = 1, .reusable = true}, SHIFT(780), - [247] = {.count = 1, .reusable = false}, SHIFT(73), - [249] = {.count = 1, .reusable = true}, SHIFT(2622), - [251] = {.count = 1, .reusable = true}, SHIFT(1715), - [253] = {.count = 1, .reusable = true}, SHIFT(2619), - [255] = {.count = 1, .reusable = true}, SHIFT(73), - [257] = {.count = 1, .reusable = false}, SHIFT(2620), - [259] = {.count = 1, .reusable = true}, SHIFT(2624), - [261] = {.count = 1, .reusable = false}, SHIFT(1716), - [263] = {.count = 1, .reusable = false}, SHIFT(77), - [265] = {.count = 1, .reusable = true}, SHIFT(78), - [267] = {.count = 1, .reusable = true}, SHIFT(77), - [269] = {.count = 1, .reusable = true}, SHIFT(79), - [271] = {.count = 1, .reusable = true}, SHIFT(80), - [273] = {.count = 1, .reusable = true}, SHIFT(2583), - [275] = {.count = 1, .reusable = true}, SHIFT(82), - [277] = {.count = 1, .reusable = true}, SHIFT(83), - [279] = {.count = 1, .reusable = true}, SHIFT(84), - [281] = {.count = 1, .reusable = false}, SHIFT(84), - [283] = {.count = 1, .reusable = false}, SHIFT(85), - [285] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 1), - [287] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 1), - [289] = {.count = 1, .reusable = false}, SHIFT(538), - [291] = {.count = 1, .reusable = false}, SHIFT(539), - [293] = {.count = 1, .reusable = false}, SHIFT(1525), - [295] = {.count = 1, .reusable = true}, SHIFT(87), - [297] = {.count = 1, .reusable = true}, SHIFT(88), - [299] = {.count = 1, .reusable = true}, SHIFT(2540), - [301] = {.count = 1, .reusable = true}, SHIFT(2621), - [303] = {.count = 1, .reusable = false}, SHIFT(407), - [305] = {.count = 1, .reusable = true}, SHIFT(2632), - [307] = {.count = 1, .reusable = false}, SHIFT(408), - [309] = {.count = 1, .reusable = true}, SHIFT(1759), - [311] = {.count = 1, .reusable = true}, SHIFT(2629), - [313] = {.count = 1, .reusable = false}, SHIFT(2630), - [315] = {.count = 1, .reusable = true}, SHIFT(407), - [317] = {.count = 1, .reusable = true}, SHIFT(818), - [319] = {.count = 1, .reusable = true}, SHIFT(2633), - [321] = {.count = 1, .reusable = false}, SHIFT(1760), - [323] = {.count = 1, .reusable = true}, SHIFT(408), - [325] = {.count = 1, .reusable = false}, SHIFT(94), - [327] = {.count = 1, .reusable = false}, SHIFT(1426), - [329] = {.count = 1, .reusable = true}, SHIFT(93), - [331] = {.count = 1, .reusable = true}, SHIFT(2534), - [333] = {.count = 1, .reusable = false}, SHIFT(95), - [335] = {.count = 1, .reusable = false}, SHIFT(96), - [337] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 1), - [339] = {.count = 1, .reusable = false}, SHIFT(97), - [341] = {.count = 1, .reusable = false}, SHIFT(92), - [343] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), - [345] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), - [347] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .production_id = 1), - [349] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .production_id = 1), - [351] = {.count = 1, .reusable = false}, SHIFT(102), - [353] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [355] = {.count = 1, .reusable = true}, SHIFT(22), - [357] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), - [359] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), - [361] = {.count = 1, .reusable = false}, SHIFT(6), - [363] = {.count = 1, .reusable = false}, SHIFT(7), - [365] = {.count = 1, .reusable = false}, SHIFT(9), - [367] = {.count = 1, .reusable = false}, SHIFT(106), - [369] = {.count = 1, .reusable = false}, SHIFT(107), - [371] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), - [373] = {.count = 1, .reusable = false}, SHIFT(17), - [375] = {.count = 1, .reusable = false}, SHIFT(23), - [377] = {.count = 1, .reusable = true}, SHIFT(110), - [379] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), - [381] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), - [383] = {.count = 1, .reusable = true}, SHIFT(1545), - [385] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .production_id = 2), - [387] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .production_id = 2), - [389] = {.count = 1, .reusable = true}, SHIFT(574), - [391] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [393] = {.count = 1, .reusable = true}, SHIFT(1591), - [395] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [397] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [399] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [401] = {.count = 1, .reusable = false}, SHIFT(657), - [403] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), - [405] = {.count = 1, .reusable = false}, SHIFT(111), - [407] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), - [409] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [411] = {.count = 1, .reusable = true}, SHIFT(1635), - [413] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [415] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [417] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [419] = {.count = 1, .reusable = false}, SHIFT(710), - [421] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), - [423] = {.count = 1, .reusable = false}, SHIFT(112), - [425] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), - [427] = {.count = 1, .reusable = true}, SHIFT(113), - [429] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), - [431] = {.count = 1, .reusable = false}, SHIFT(745), - [433] = {.count = 1, .reusable = false}, SHIFT(746), - [435] = {.count = 1, .reusable = false}, SHIFT(114), - [437] = {.count = 1, .reusable = false}, SHIFT(115), - [439] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), - [441] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), - [443] = {.count = 1, .reusable = false}, SHIFT(116), - [445] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [447] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [449] = {.count = 1, .reusable = true}, SHIFT(1679), - [451] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .production_id = 1), - [453] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .production_id = 1), - [455] = {.count = 1, .reusable = false}, SHIFT(748), - [457] = {.count = 1, .reusable = true}, SHIFT(120), - [459] = {.count = 1, .reusable = true}, SHIFT(121), - [461] = {.count = 1, .reusable = false}, SHIFT(120), - [463] = {.count = 1, .reusable = true}, SHIFT(122), - [465] = {.count = 1, .reusable = true}, SHIFT(123), - [467] = {.count = 1, .reusable = true}, SHIFT(124), - [469] = {.count = 1, .reusable = true}, SHIFT(125), - [471] = {.count = 1, .reusable = false}, SHIFT(126), - [473] = {.count = 1, .reusable = true}, SHIFT(126), - [475] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), - [477] = {.count = 1, .reusable = true}, SHIFT(127), - [479] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), - [481] = {.count = 1, .reusable = true}, SHIFT(129), - [483] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [485] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [487] = {.count = 1, .reusable = false}, SHIFT(416), - [489] = {.count = 1, .reusable = false}, SHIFT(1536), - [491] = {.count = 1, .reusable = true}, SHIFT(132), - [493] = {.count = 1, .reusable = false}, SHIFT(131), - [495] = {.count = 1, .reusable = true}, SHIFT(2572), - [497] = {.count = 1, .reusable = false}, SHIFT(1451), - [499] = {.count = 1, .reusable = false}, SHIFT(419), - [501] = {.count = 1, .reusable = false}, SHIFT(1452), - [503] = {.count = 1, .reusable = true}, SHIFT(133), - [505] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .production_id = 3), - [507] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .production_id = 3), - [509] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), - [511] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), - [513] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), - [515] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), - [517] = {.count = 1, .reusable = true}, SHIFT(134), - [519] = {.count = 1, .reusable = true}, SHIFT(135), - [521] = {.count = 1, .reusable = false}, SHIFT(135), - [523] = {.count = 1, .reusable = false}, SHIFT(136), - [525] = {.count = 1, .reusable = true}, SHIFT(1723), - [527] = {.count = 1, .reusable = true}, SHIFT(136), - [529] = {.count = 1, .reusable = false}, SHIFT(137), - [531] = {.count = 1, .reusable = false}, SHIFT(138), - [533] = {.count = 1, .reusable = false}, SHIFT(786), - [535] = {.count = 1, .reusable = true}, SHIFT(138), - [537] = {.count = 1, .reusable = false}, SHIFT(139), - [539] = {.count = 1, .reusable = true}, SHIFT(140), - [541] = {.count = 1, .reusable = false}, SHIFT(145), - [543] = {.count = 1, .reusable = true}, SHIFT(2647), - [545] = {.count = 1, .reusable = false}, SHIFT(141), - [547] = {.count = 1, .reusable = true}, SHIFT(2656), - [549] = {.count = 1, .reusable = true}, SHIFT(1885), - [551] = {.count = 1, .reusable = true}, SHIFT(2653), - [553] = {.count = 1, .reusable = false}, SHIFT(2654), - [555] = {.count = 1, .reusable = true}, SHIFT(141), - [557] = {.count = 1, .reusable = true}, SHIFT(145), - [559] = {.count = 1, .reusable = false}, SHIFT(922), - [561] = {.count = 1, .reusable = true}, SHIFT(142), - [563] = {.count = 1, .reusable = true}, SHIFT(2657), - [565] = {.count = 1, .reusable = true}, SHIFT(143), - [567] = {.count = 1, .reusable = false}, SHIFT(1886), - [569] = {.count = 1, .reusable = false}, SHIFT(146), - [571] = {.count = 1, .reusable = true}, SHIFT(146), - [573] = {.count = 1, .reusable = true}, SHIFT(147), - [575] = {.count = 1, .reusable = true}, SHIFT(148), - [577] = {.count = 1, .reusable = true}, SHIFT(149), - [579] = {.count = 1, .reusable = true}, SHIFT(2544), - [581] = {.count = 1, .reusable = false}, SHIFT(152), + [59] = {.count = 1, .reusable = true}, SHIFT(25), + [61] = {.count = 1, .reusable = true}, SHIFT(26), + [63] = {.count = 1, .reusable = false}, SHIFT(27), + [65] = {.count = 1, .reusable = false}, SHIFT(2532), + [67] = {.count = 1, .reusable = false}, SHIFT(386), + [69] = {.count = 1, .reusable = false}, SHIFT(387), + [71] = {.count = 1, .reusable = false}, SHIFT(388), + [73] = {.count = 1, .reusable = true}, SHIFT(2533), + [75] = {.count = 1, .reusable = true}, SHIFT(389), + [77] = {.count = 1, .reusable = false}, SHIFT(389), + [79] = {.count = 1, .reusable = false}, SHIFT(2534), + [81] = {.count = 1, .reusable = true}, SHIFT(1433), + [83] = {.count = 1, .reusable = true}, SHIFT(2535), + [85] = {.count = 1, .reusable = false}, SHIFT(2776), + [87] = {.count = 1, .reusable = false}, SHIFT(2798), + [89] = {.count = 1, .reusable = true}, SHIFT(2536), + [91] = {.count = 1, .reusable = true}, SHIFT(1434), + [93] = {.count = 1, .reusable = false}, SHIFT(390), + [95] = {.count = 1, .reusable = true}, SHIFT(2537), + [97] = {.count = 1, .reusable = true}, SHIFT(2539), + [99] = {.count = 1, .reusable = false}, SHIFT(1435), + [101] = {.count = 1, .reusable = false}, SHIFT(2540), + [103] = {.count = 1, .reusable = false}, SHIFT(2777), + [105] = {.count = 1, .reusable = false}, SHIFT(2541), + [107] = {.count = 1, .reusable = false}, SHIFT(2542), + [109] = {.count = 1, .reusable = true}, SHIFT(2543), + [111] = {.count = 1, .reusable = true}, SHIFT(2544), + [113] = {.count = 1, .reusable = false}, SHIFT(391), + [115] = {.count = 1, .reusable = true}, SHIFT(2577), + [117] = {.count = 1, .reusable = true}, SHIFT(39), + [119] = {.count = 1, .reusable = true}, SHIFT(1543), + [121] = {.count = 1, .reusable = true}, SHIFT(544), + [123] = {.count = 1, .reusable = true}, SHIFT(2573), + [125] = {.count = 1, .reusable = false}, SHIFT(39), + [127] = {.count = 1, .reusable = false}, SHIFT(1544), + [129] = {.count = 1, .reusable = false}, SHIFT(2578), + [131] = {.count = 1, .reusable = true}, SHIFT(2579), + [133] = {.count = 1, .reusable = true}, SHIFT(2574), + [135] = {.count = 1, .reusable = false}, SHIFT(42), + [137] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), + [139] = {.count = 1, .reusable = false}, SHIFT(645), + [141] = {.count = 1, .reusable = false}, SHIFT(2585), + [143] = {.count = 1, .reusable = false}, SHIFT(2586), + [145] = {.count = 1, .reusable = false}, SHIFT(2588), + [147] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), + [149] = {.count = 1, .reusable = false}, SHIFT(1589), + [151] = {.count = 1, .reusable = true}, SHIFT(2575), + [153] = {.count = 1, .reusable = false}, SHIFT(44), + [155] = {.count = 1, .reusable = false}, SHIFT(1590), + [157] = {.count = 1, .reusable = false}, SHIFT(2589), + [159] = {.count = 1, .reusable = false}, SHIFT(2590), + [161] = {.count = 1, .reusable = false}, SHIFT(45), + [163] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), + [165] = {.count = 1, .reusable = false}, SHIFT(707), + [167] = {.count = 1, .reusable = false}, SHIFT(2595), + [169] = {.count = 1, .reusable = false}, SHIFT(2596), + [171] = {.count = 1, .reusable = false}, SHIFT(2598), + [173] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), + [175] = {.count = 1, .reusable = false}, SHIFT(1633), + [177] = {.count = 1, .reusable = false}, SHIFT(47), + [179] = {.count = 1, .reusable = false}, SHIFT(1634), + [181] = {.count = 1, .reusable = false}, SHIFT(2599), + [183] = {.count = 1, .reusable = false}, SHIFT(2600), + [185] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 1), + [187] = {.count = 1, .reusable = true}, SHIFT(48), + [189] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 1), + [191] = {.count = 1, .reusable = false}, SHIFT(542), + [193] = {.count = 1, .reusable = false}, SHIFT(543), + [195] = {.count = 1, .reusable = false}, SHIFT(1531), + [197] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), + [199] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), + [201] = {.count = 1, .reusable = true}, SHIFT(51), + [203] = {.count = 1, .reusable = true}, SHIFT(52), + [205] = {.count = 1, .reusable = true}, SHIFT(56), + [207] = {.count = 1, .reusable = true}, SHIFT(2608), + [209] = {.count = 1, .reusable = true}, SHIFT(57), + [211] = {.count = 1, .reusable = true}, SHIFT(1677), + [213] = {.count = 1, .reusable = false}, SHIFT(58), + [215] = {.count = 1, .reusable = true}, SHIFT(748), + [217] = {.count = 1, .reusable = false}, SHIFT(59), + [219] = {.count = 1, .reusable = true}, SHIFT(2605), + [221] = {.count = 1, .reusable = false}, SHIFT(57), + [223] = {.count = 1, .reusable = false}, SHIFT(1678), + [225] = {.count = 1, .reusable = false}, SHIFT(2609), + [227] = {.count = 1, .reusable = true}, SHIFT(2610), + [229] = {.count = 1, .reusable = true}, SHIFT(58), + [231] = {.count = 1, .reusable = true}, SHIFT(2606), + [233] = {.count = 1, .reusable = false}, SHIFT(65), + [235] = {.count = 1, .reusable = false}, SHIFT(1722), + [237] = {.count = 1, .reusable = true}, SHIFT(65), + [239] = {.count = 1, .reusable = true}, SHIFT(1721), + [241] = {.count = 1, .reusable = true}, SHIFT(2618), + [243] = {.count = 1, .reusable = true}, SHIFT(786), + [245] = {.count = 1, .reusable = false}, SHIFT(2619), + [247] = {.count = 1, .reusable = true}, SHIFT(2620), + [249] = {.count = 1, .reusable = true}, SHIFT(2615), + [251] = {.count = 1, .reusable = true}, SHIFT(2616), + [253] = {.count = 1, .reusable = false}, SHIFT(70), + [255] = {.count = 1, .reusable = false}, SHIFT(71), + [257] = {.count = 1, .reusable = false}, SHIFT(2629), + [259] = {.count = 1, .reusable = false}, SHIFT(69), + [261] = {.count = 1, .reusable = false}, SHIFT(2630), + [263] = {.count = 1, .reusable = false}, SHIFT(2626), + [265] = {.count = 1, .reusable = false}, SHIFT(2625), + [267] = {.count = 1, .reusable = true}, SHIFT(2587), + [269] = {.count = 1, .reusable = true}, SHIFT(74), + [271] = {.count = 1, .reusable = true}, SHIFT(75), + [273] = {.count = 1, .reusable = true}, SHIFT(76), + [275] = {.count = 1, .reusable = false}, SHIFT(76), + [277] = {.count = 1, .reusable = true}, SHIFT(78), + [279] = {.count = 1, .reusable = true}, SHIFT(79), + [281] = {.count = 1, .reusable = false}, SHIFT(78), + [283] = {.count = 1, .reusable = true}, SHIFT(80), + [285] = {.count = 1, .reusable = true}, SHIFT(83), + [287] = {.count = 1, .reusable = true}, SHIFT(84), + [289] = {.count = 1, .reusable = true}, SHIFT(2546), + [291] = {.count = 1, .reusable = true}, SHIFT(2628), + [293] = {.count = 1, .reusable = true}, SHIFT(410), + [295] = {.count = 1, .reusable = true}, SHIFT(1765), + [297] = {.count = 1, .reusable = false}, SHIFT(411), + [299] = {.count = 1, .reusable = true}, SHIFT(824), + [301] = {.count = 1, .reusable = false}, SHIFT(412), + [303] = {.count = 1, .reusable = true}, SHIFT(2635), + [305] = {.count = 1, .reusable = false}, SHIFT(410), + [307] = {.count = 1, .reusable = false}, SHIFT(1766), + [309] = {.count = 1, .reusable = false}, SHIFT(2638), + [311] = {.count = 1, .reusable = true}, SHIFT(2639), + [313] = {.count = 1, .reusable = true}, SHIFT(411), + [315] = {.count = 1, .reusable = true}, SHIFT(2636), + [317] = {.count = 1, .reusable = true}, SHIFT(87), + [319] = {.count = 1, .reusable = true}, SHIFT(88), + [321] = {.count = 1, .reusable = false}, SHIFT(87), + [323] = {.count = 1, .reusable = true}, SHIFT(89), + [325] = {.count = 1, .reusable = true}, SHIFT(90), + [327] = {.count = 1, .reusable = false}, SHIFT(92), + [329] = {.count = 1, .reusable = false}, SHIFT(95), + [331] = {.count = 1, .reusable = false}, SHIFT(1432), + [333] = {.count = 1, .reusable = true}, SHIFT(94), + [335] = {.count = 1, .reusable = true}, SHIFT(2538), + [337] = {.count = 1, .reusable = false}, SHIFT(96), + [339] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 1), + [341] = {.count = 1, .reusable = false}, SHIFT(97), + [343] = {.count = 1, .reusable = false}, SHIFT(98), + [345] = {.count = 1, .reusable = false}, SHIFT(93), + [347] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), + [349] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), + [351] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .production_id = 1), + [353] = {.count = 1, .reusable = false}, SHIFT(103), + [355] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .production_id = 1), + [357] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [359] = {.count = 1, .reusable = true}, SHIFT(6), + [361] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), + [363] = {.count = 1, .reusable = false}, SHIFT(107), + [365] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), + [367] = {.count = 1, .reusable = false}, SHIFT(7), + [369] = {.count = 1, .reusable = false}, SHIFT(108), + [371] = {.count = 1, .reusable = false}, SHIFT(11), + [373] = {.count = 1, .reusable = false}, SHIFT(19), + [375] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), + [377] = {.count = 1, .reusable = false}, SHIFT(15), + [379] = {.count = 1, .reusable = false}, SHIFT(25), + [381] = {.count = 1, .reusable = true}, SHIFT(111), + [383] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [385] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), + [387] = {.count = 1, .reusable = true}, SHIFT(1545), + [389] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .production_id = 2), + [391] = {.count = 1, .reusable = true}, SHIFT(579), + [393] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .production_id = 2), + [395] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [397] = {.count = 1, .reusable = true}, SHIFT(1591), + [399] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [401] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [403] = {.count = 1, .reusable = false}, SHIFT(663), + [405] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [407] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), + [409] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [411] = {.count = 1, .reusable = false}, SHIFT(112), + [413] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [415] = {.count = 1, .reusable = true}, SHIFT(1635), + [417] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [419] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [421] = {.count = 1, .reusable = false}, SHIFT(716), + [423] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [425] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), + [427] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [429] = {.count = 1, .reusable = false}, SHIFT(113), + [431] = {.count = 1, .reusable = false}, SHIFT(114), + [433] = {.count = 1, .reusable = true}, SHIFT(114), + [435] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [437] = {.count = 1, .reusable = true}, SHIFT(115), + [439] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [441] = {.count = 1, .reusable = true}, SHIFT(117), + [443] = {.count = 1, .reusable = true}, SHIFT(118), + [445] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [447] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [449] = {.count = 1, .reusable = false}, SHIFT(419), + [451] = {.count = 1, .reusable = false}, SHIFT(1542), + [453] = {.count = 1, .reusable = true}, SHIFT(121), + [455] = {.count = 1, .reusable = false}, SHIFT(120), + [457] = {.count = 1, .reusable = true}, SHIFT(2576), + [459] = {.count = 1, .reusable = false}, SHIFT(1457), + [461] = {.count = 1, .reusable = false}, SHIFT(422), + [463] = {.count = 1, .reusable = false}, SHIFT(1458), + [465] = {.count = 1, .reusable = true}, SHIFT(122), + [467] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [469] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [471] = {.count = 1, .reusable = true}, SHIFT(1679), + [473] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .production_id = 1), + [475] = {.count = 1, .reusable = false}, SHIFT(754), + [477] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .production_id = 1), + [479] = {.count = 1, .reusable = true}, SHIFT(126), + [481] = {.count = 1, .reusable = true}, SHIFT(127), + [483] = {.count = 1, .reusable = false}, SHIFT(126), + [485] = {.count = 1, .reusable = true}, SHIFT(128), + [487] = {.count = 1, .reusable = true}, SHIFT(129), + [489] = {.count = 1, .reusable = true}, SHIFT(130), + [491] = {.count = 1, .reusable = false}, SHIFT(131), + [493] = {.count = 1, .reusable = true}, SHIFT(131), + [495] = {.count = 1, .reusable = false}, SHIFT(132), + [497] = {.count = 1, .reusable = true}, SHIFT(1723), + [499] = {.count = 1, .reusable = true}, SHIFT(132), + [501] = {.count = 1, .reusable = false}, SHIFT(133), + [503] = {.count = 1, .reusable = false}, SHIFT(792), + [505] = {.count = 1, .reusable = false}, SHIFT(134), + [507] = {.count = 1, .reusable = true}, SHIFT(134), + [509] = {.count = 1, .reusable = false}, SHIFT(135), + [511] = {.count = 1, .reusable = true}, SHIFT(136), + [513] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [515] = {.count = 1, .reusable = true}, SHIFT(137), + [517] = {.count = 1, .reusable = false}, SHIFT(827), + [519] = {.count = 1, .reusable = false}, SHIFT(828), + [521] = {.count = 1, .reusable = false}, SHIFT(138), + [523] = {.count = 1, .reusable = false}, SHIFT(139), + [525] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), + [527] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [529] = {.count = 1, .reusable = false}, SHIFT(140), + [531] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), + [533] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), + [535] = {.count = 1, .reusable = true}, SHIFT(142), + [537] = {.count = 1, .reusable = true}, SHIFT(2653), + [539] = {.count = 1, .reusable = true}, SHIFT(143), + [541] = {.count = 1, .reusable = true}, SHIFT(1891), + [543] = {.count = 1, .reusable = true}, SHIFT(928), + [545] = {.count = 1, .reusable = true}, SHIFT(2659), + [547] = {.count = 1, .reusable = false}, SHIFT(143), + [549] = {.count = 1, .reusable = false}, SHIFT(1892), + [551] = {.count = 1, .reusable = false}, SHIFT(2662), + [553] = {.count = 1, .reusable = true}, SHIFT(2663), + [555] = {.count = 1, .reusable = true}, SHIFT(2660), + [557] = {.count = 1, .reusable = true}, SHIFT(144), + [559] = {.count = 1, .reusable = false}, SHIFT(146), + [561] = {.count = 1, .reusable = false}, SHIFT(1933), + [563] = {.count = 1, .reusable = true}, SHIFT(146), + [565] = {.count = 1, .reusable = true}, SHIFT(1932), + [567] = {.count = 1, .reusable = true}, SHIFT(2661), + [569] = {.count = 1, .reusable = true}, SHIFT(961), + [571] = {.count = 1, .reusable = false}, SHIFT(2670), + [573] = {.count = 1, .reusable = true}, SHIFT(2671), + [575] = {.count = 1, .reusable = true}, SHIFT(2667), + [577] = {.count = 1, .reusable = true}, SHIFT(2668), + [579] = {.count = 1, .reusable = true}, SHIFT(149), + [581] = {.count = 1, .reusable = false}, SHIFT(149), [583] = {.count = 1, .reusable = true}, SHIFT(152), - [585] = {.count = 1, .reusable = true}, SHIFT(150), - [587] = {.count = 1, .reusable = true}, SHIFT(151), - [589] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), - [591] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), - [593] = {.count = 1, .reusable = true}, SHIFT(153), - [595] = {.count = 1, .reusable = true}, SHIFT(2655), - [597] = {.count = 1, .reusable = false}, SHIFT(154), - [599] = {.count = 1, .reusable = true}, SHIFT(2664), - [601] = {.count = 1, .reusable = true}, SHIFT(1926), - [603] = {.count = 1, .reusable = true}, SHIFT(2661), - [605] = {.count = 1, .reusable = false}, SHIFT(2662), - [607] = {.count = 1, .reusable = true}, SHIFT(154), - [609] = {.count = 1, .reusable = true}, SHIFT(955), - [611] = {.count = 1, .reusable = true}, SHIFT(2665), - [613] = {.count = 1, .reusable = false}, SHIFT(1927), - [615] = {.count = 1, .reusable = true}, SHIFT(155), - [617] = {.count = 1, .reusable = true}, SHIFT(2663), - [619] = {.count = 1, .reusable = true}, SHIFT(988), - [621] = {.count = 1, .reusable = false}, SHIFT(157), - [623] = {.count = 1, .reusable = true}, SHIFT(2672), - [625] = {.count = 1, .reusable = true}, SHIFT(1967), - [627] = {.count = 1, .reusable = true}, SHIFT(2669), - [629] = {.count = 1, .reusable = true}, SHIFT(157), - [631] = {.count = 1, .reusable = false}, SHIFT(2670), - [633] = {.count = 1, .reusable = true}, SHIFT(2673), - [635] = {.count = 1, .reusable = false}, SHIFT(1968), - [637] = {.count = 1, .reusable = false}, SHIFT(160), - [639] = {.count = 1, .reusable = true}, SHIFT(160), - [641] = {.count = 1, .reusable = true}, SHIFT(163), - [643] = {.count = 1, .reusable = true}, SHIFT(164), - [645] = {.count = 1, .reusable = false}, SHIFT(166), - [647] = {.count = 1, .reusable = true}, SHIFT(166), - [649] = {.count = 1, .reusable = false}, SHIFT(165), - [651] = {.count = 1, .reusable = false}, SHIFT(2575), - [653] = {.count = 1, .reusable = false}, SHIFT(2671), - [655] = {.count = 1, .reusable = false}, SHIFT(561), - [657] = {.count = 1, .reusable = false}, SHIFT(167), - [659] = {.count = 1, .reusable = false}, SHIFT(2680), - [661] = {.count = 1, .reusable = false}, SHIFT(562), - [663] = {.count = 1, .reusable = false}, SHIFT(2008), - [665] = {.count = 1, .reusable = true}, SHIFT(2603), - [667] = {.count = 1, .reusable = false}, SHIFT(2677), - [669] = {.count = 1, .reusable = false}, SHIFT(2678), - [671] = {.count = 1, .reusable = false}, SHIFT(1021), - [673] = {.count = 1, .reusable = false}, SHIFT(2681), - [675] = {.count = 1, .reusable = false}, SHIFT(2009), - [677] = {.count = 1, .reusable = true}, SHIFT(170), - [679] = {.count = 1, .reusable = true}, SHIFT(436), - [681] = {.count = 1, .reusable = true}, SHIFT(437), - [683] = {.count = 1, .reusable = false}, SHIFT(436), - [685] = {.count = 1, .reusable = true}, SHIFT(438), - [687] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), - [689] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), - [691] = {.count = 1, .reusable = true}, SHIFT(174), - [693] = {.count = 1, .reusable = true}, SHIFT(175), - [695] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 2), - [697] = {.count = 1, .reusable = true}, SHIFT(177), - [699] = {.count = 1, .reusable = true}, SHIFT(2679), - [701] = {.count = 1, .reusable = true}, SHIFT(1054), - [703] = {.count = 1, .reusable = false}, SHIFT(180), - [705] = {.count = 1, .reusable = true}, SHIFT(2688), - [707] = {.count = 1, .reusable = true}, SHIFT(2049), - [709] = {.count = 1, .reusable = true}, SHIFT(2685), - [711] = {.count = 1, .reusable = true}, SHIFT(180), - [713] = {.count = 1, .reusable = false}, SHIFT(2686), - [715] = {.count = 1, .reusable = true}, SHIFT(2689), - [717] = {.count = 1, .reusable = false}, SHIFT(2050), - [719] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), - [721] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), - [723] = {.count = 1, .reusable = true}, SHIFT(185), - [725] = {.count = 1, .reusable = false}, SHIFT(184), - [727] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2526), - [730] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), - [733] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(384), - [736] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(385), - [739] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1427), - [742] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2527), - [745] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2528), - [748] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2529), - [751] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(386), - [754] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2530), - [757] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1428), - [760] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), - [763] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1429), - [766] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2770), - [769] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2792), - [772] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2531), - [775] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(386), - [778] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2532), - [781] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(387), - [784] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(20), - [787] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(388), - [790] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2533), - [793] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(389), - [796] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2535), - [799] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2771), - [802] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2536), - [805] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2537), - [808] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2538), - [811] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), - [813] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), - [815] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(102), - [818] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), - [820] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), - [822] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), - [825] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), - [827] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), - [829] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(20), - [832] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), - [835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2583), - [838] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), - [840] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), - [842] = {.count = 1, .reusable = false}, SHIFT(188), - [844] = {.count = 1, .reusable = true}, SHIFT(188), - [846] = {.count = 1, .reusable = true}, SHIFT(187), - [848] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), - [850] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), - [852] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), - [854] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), - [856] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1583), - [861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2579), - [864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2580), - [867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2581), - [870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(42), - [873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(111), - [876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1584), + [585] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), + [587] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), + [589] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .production_id = 3), + [591] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .production_id = 3), + [593] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [595] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [597] = {.count = 1, .reusable = true}, SHIFT(153), + [599] = {.count = 1, .reusable = false}, SHIFT(154), + [601] = {.count = 1, .reusable = true}, SHIFT(154), + [603] = {.count = 1, .reusable = false}, SHIFT(155), + [605] = {.count = 1, .reusable = false}, SHIFT(2581), + [607] = {.count = 1, .reusable = false}, SHIFT(2669), + [609] = {.count = 1, .reusable = false}, SHIFT(565), + [611] = {.count = 1, .reusable = false}, SHIFT(1973), + [613] = {.count = 1, .reusable = false}, SHIFT(156), + [615] = {.count = 1, .reusable = false}, SHIFT(566), + [617] = {.count = 1, .reusable = false}, SHIFT(567), + [619] = {.count = 1, .reusable = true}, SHIFT(2607), + [621] = {.count = 1, .reusable = false}, SHIFT(994), + [623] = {.count = 1, .reusable = false}, SHIFT(2675), + [625] = {.count = 1, .reusable = false}, SHIFT(1974), + [627] = {.count = 1, .reusable = false}, SHIFT(2678), + [629] = {.count = 1, .reusable = false}, SHIFT(2679), + [631] = {.count = 1, .reusable = false}, SHIFT(2676), + [633] = {.count = 1, .reusable = true}, SHIFT(159), + [635] = {.count = 1, .reusable = true}, SHIFT(447), + [637] = {.count = 1, .reusable = true}, SHIFT(448), + [639] = {.count = 1, .reusable = false}, SHIFT(447), + [641] = {.count = 1, .reusable = true}, SHIFT(449), + [643] = {.count = 1, .reusable = false}, SHIFT(165), + [645] = {.count = 1, .reusable = true}, SHIFT(2677), + [647] = {.count = 1, .reusable = true}, SHIFT(161), + [649] = {.count = 1, .reusable = true}, SHIFT(2014), + [651] = {.count = 1, .reusable = true}, SHIFT(165), + [653] = {.count = 1, .reusable = false}, SHIFT(1027), + [655] = {.count = 1, .reusable = true}, SHIFT(162), + [657] = {.count = 1, .reusable = true}, SHIFT(2683), + [659] = {.count = 1, .reusable = false}, SHIFT(161), + [661] = {.count = 1, .reusable = false}, SHIFT(2015), + [663] = {.count = 1, .reusable = true}, SHIFT(163), + [665] = {.count = 1, .reusable = false}, SHIFT(2686), + [667] = {.count = 1, .reusable = true}, SHIFT(2687), + [669] = {.count = 1, .reusable = true}, SHIFT(2684), + [671] = {.count = 1, .reusable = false}, SHIFT(168), + [673] = {.count = 1, .reusable = true}, SHIFT(168), + [675] = {.count = 1, .reusable = true}, SHIFT(166), + [677] = {.count = 1, .reusable = true}, SHIFT(167), + [679] = {.count = 1, .reusable = true}, SHIFT(169), + [681] = {.count = 1, .reusable = true}, SHIFT(170), + [683] = {.count = 1, .reusable = false}, SHIFT(169), + [685] = {.count = 1, .reusable = true}, SHIFT(171), + [687] = {.count = 1, .reusable = true}, SHIFT(172), + [689] = {.count = 1, .reusable = true}, SHIFT(2548), + [691] = {.count = 1, .reusable = true}, SHIFT(173), + [693] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), + [695] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), + [697] = {.count = 1, .reusable = true}, SHIFT(176), + [699] = {.count = 1, .reusable = true}, SHIFT(177), + [701] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 2), + [703] = {.count = 1, .reusable = true}, SHIFT(179), + [705] = {.count = 1, .reusable = false}, SHIFT(182), + [707] = {.count = 1, .reusable = false}, SHIFT(2056), + [709] = {.count = 1, .reusable = true}, SHIFT(182), + [711] = {.count = 1, .reusable = true}, SHIFT(2055), + [713] = {.count = 1, .reusable = true}, SHIFT(2685), + [715] = {.count = 1, .reusable = true}, SHIFT(1060), + [717] = {.count = 1, .reusable = false}, SHIFT(2694), + [719] = {.count = 1, .reusable = true}, SHIFT(2695), + [721] = {.count = 1, .reusable = true}, SHIFT(2691), + [723] = {.count = 1, .reusable = true}, SHIFT(2692), + [725] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), + [727] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), + [729] = {.count = 1, .reusable = true}, SHIFT(187), + [731] = {.count = 1, .reusable = false}, SHIFT(186), + [733] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2532), + [736] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), + [739] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(386), + [742] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(387), + [745] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(388), + [748] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2533), + [751] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(389), + [754] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(389), + [757] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2534), + [760] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1433), + [763] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3), + [766] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2535), + [769] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2776), + [772] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2798), + [775] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2536), + [778] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1434), + [781] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(390), + [784] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2539), + [787] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(18), + [790] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2537), + [793] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1435), + [796] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2540), + [799] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2777), + [802] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2541), + [805] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2542), + [808] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2543), + [811] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2544), + [814] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(391), + [817] = {.count = 1, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), + [819] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(103), + [822] = {.count = 1, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), + [824] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [826] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [828] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), + [831] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [833] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2587), + [836] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(18), + [839] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3), + [842] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [844] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [846] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [848] = {.count = 1, .reusable = true}, SHIFT(189), + [850] = {.count = 1, .reusable = false}, SHIFT(189), + [852] = {.count = 1, .reusable = true}, SHIFT(190), + [854] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), + [856] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 1), + [858] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [860] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [862] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(42), + [865] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(645), + [870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2585), + [873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2586), + [876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2588), [879] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2582), - [884] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2571), - [887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(639), - [890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2584), - [893] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [895] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1627), - [898] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2589), - [901] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2590), - [904] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2591), - [907] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(45), - [910] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), - [913] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1628), + [881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1589), + [884] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2575), + [887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(112), + [890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1590), + [893] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2589), + [896] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2590), + [899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(45), + [902] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [904] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(707), + [907] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2595), + [910] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2596), + [913] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2598), [916] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [918] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2592), - [921] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(701), - [924] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2594), - [927] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), - [929] = {.count = 1, .reusable = true}, SHIFT(191), - [931] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), - [933] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), - [935] = {.count = 1, .reusable = false}, SHIFT(192), - [937] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(48), - [940] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2602), - [943] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2599), - [946] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2604), - [949] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2600), - [952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(193), - [955] = {.count = 1, .reusable = true}, SHIFT(194), - [957] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), - [959] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), - [961] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), - [963] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), - [965] = {.count = 1, .reusable = true}, SHIFT(196), - [967] = {.count = 1, .reusable = false}, REDUCE(sym_arithmetic_expansion, 3), - [969] = {.count = 1, .reusable = true}, REDUCE(sym_arithmetic_expansion, 3), - [971] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), - [973] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), - [975] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), - [977] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), - [979] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [981] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [983] = {.count = 1, .reusable = false}, SHIFT(197), - [985] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(60), - [988] = {.count = 1, .reusable = true}, SHIFT(198), - [990] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [992] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [994] = {.count = 1, .reusable = true}, SHIFT(462), - [996] = {.count = 1, .reusable = true}, SHIFT(1470), - [998] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [1000] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [1002] = {.count = 1, .reusable = false}, SHIFT(200), - [1004] = {.count = 1, .reusable = false}, SHIFT(201), - [1006] = {.count = 1, .reusable = false}, SHIFT(202), - [1008] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), - [1010] = {.count = 1, .reusable = true}, SHIFT(208), - [1012] = {.count = 1, .reusable = true}, SHIFT(209), - [1014] = {.count = 1, .reusable = false}, SHIFT(209), - [1016] = {.count = 1, .reusable = true}, SHIFT(210), - [1018] = {.count = 1, .reusable = true}, SHIFT(211), - [1020] = {.count = 1, .reusable = false}, SHIFT(211), - [1022] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), - [1024] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), - [1026] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1028] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1030] = {.count = 1, .reusable = true}, SHIFT(1893), - [1032] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), - [1034] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), - [1036] = {.count = 1, .reusable = false}, SHIFT(214), - [1038] = {.count = 1, .reusable = true}, SHIFT(214), - [1040] = {.count = 1, .reusable = true}, SHIFT(212), - [1042] = {.count = 1, .reusable = true}, SHIFT(213), - [1044] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), - [1046] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), - [1048] = {.count = 1, .reusable = false}, SHIFT(928), - [1050] = {.count = 1, .reusable = false}, SHIFT(215), - [1052] = {.count = 1, .reusable = true}, SHIFT(215), - [1054] = {.count = 1, .reusable = true}, SHIFT(216), - [1056] = {.count = 1, .reusable = true}, SHIFT(217), - [1058] = {.count = 1, .reusable = false}, SHIFT(220), - [1060] = {.count = 1, .reusable = true}, SHIFT(220), + [918] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1633), + [921] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), + [924] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1634), + [927] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2599), + [930] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2600), + [933] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [935] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [937] = {.count = 1, .reusable = false}, SHIFT(193), + [939] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(48), + [942] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [944] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [946] = {.count = 1, .reusable = true}, SHIFT(194), + [948] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [950] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [952] = {.count = 1, .reusable = true}, SHIFT(466), + [954] = {.count = 1, .reusable = true}, SHIFT(1476), + [956] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [958] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [960] = {.count = 1, .reusable = true}, SHIFT(196), + [962] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [964] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), + [966] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), + [968] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), + [970] = {.count = 1, .reusable = true}, SHIFT(198), + [972] = {.count = 1, .reusable = false}, REDUCE(sym_arithmetic_expansion, 3), + [974] = {.count = 1, .reusable = true}, REDUCE(sym_arithmetic_expansion, 3), + [976] = {.count = 1, .reusable = false}, SHIFT(199), + [978] = {.count = 1, .reusable = false}, SHIFT(200), + [980] = {.count = 1, .reusable = false}, SHIFT(201), + [982] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [984] = {.count = 1, .reusable = true}, SHIFT(207), + [986] = {.count = 1, .reusable = false}, SHIFT(208), + [988] = {.count = 1, .reusable = true}, SHIFT(208), + [990] = {.count = 1, .reusable = true}, SHIFT(209), + [992] = {.count = 1, .reusable = false}, SHIFT(210), + [994] = {.count = 1, .reusable = true}, SHIFT(210), + [996] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [998] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1000] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1002] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [1004] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1006] = {.count = 1, .reusable = true}, SHIFT(211), + [1008] = {.count = 1, .reusable = false}, SHIFT(212), + [1010] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(213), + [1013] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2629), + [1016] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(69), + [1019] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2630), + [1022] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2626), + [1025] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2625), + [1028] = {.count = 1, .reusable = true}, SHIFT(2709), + [1030] = {.count = 1, .reusable = true}, SHIFT(214), + [1032] = {.count = 1, .reusable = true}, SHIFT(2178), + [1034] = {.count = 1, .reusable = true}, SHIFT(1159), + [1036] = {.count = 1, .reusable = true}, SHIFT(215), + [1038] = {.count = 1, .reusable = true}, SHIFT(2715), + [1040] = {.count = 1, .reusable = false}, SHIFT(214), + [1042] = {.count = 1, .reusable = false}, SHIFT(2179), + [1044] = {.count = 1, .reusable = false}, SHIFT(2718), + [1046] = {.count = 1, .reusable = true}, SHIFT(2719), + [1048] = {.count = 1, .reusable = true}, SHIFT(2716), + [1050] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), + [1052] = {.count = 1, .reusable = true}, SHIFT(1893), + [1054] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [1056] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .production_id = 4), + [1058] = {.count = 1, .reusable = false}, SHIFT(934), + [1060] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .production_id = 4), [1062] = {.count = 1, .reusable = true}, SHIFT(218), [1064] = {.count = 1, .reusable = true}, SHIFT(219), - [1066] = {.count = 1, .reusable = true}, SHIFT(2703), - [1068] = {.count = 1, .reusable = false}, SHIFT(221), - [1070] = {.count = 1, .reusable = true}, SHIFT(2712), - [1072] = {.count = 1, .reusable = true}, SHIFT(2172), - [1074] = {.count = 1, .reusable = true}, SHIFT(2709), - [1076] = {.count = 1, .reusable = false}, SHIFT(2710), - [1078] = {.count = 1, .reusable = true}, SHIFT(221), - [1080] = {.count = 1, .reusable = false}, SHIFT(1153), - [1082] = {.count = 1, .reusable = true}, SHIFT(2713), - [1084] = {.count = 1, .reusable = false}, SHIFT(2173), - [1086] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .production_id = 3), - [1088] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .production_id = 3), - [1090] = {.count = 1, .reusable = false}, SHIFT(226), - [1092] = {.count = 1, .reusable = true}, SHIFT(226), - [1094] = {.count = 1, .reusable = true}, SHIFT(224), - [1096] = {.count = 1, .reusable = true}, SHIFT(225), - [1098] = {.count = 1, .reusable = true}, SHIFT(2711), - [1100] = {.count = 1, .reusable = false}, SHIFT(228), - [1102] = {.count = 1, .reusable = true}, SHIFT(2720), - [1104] = {.count = 1, .reusable = true}, SHIFT(2213), - [1106] = {.count = 1, .reusable = true}, SHIFT(2717), - [1108] = {.count = 1, .reusable = true}, SHIFT(227), - [1110] = {.count = 1, .reusable = false}, SHIFT(2718), - [1112] = {.count = 1, .reusable = true}, SHIFT(228), - [1114] = {.count = 1, .reusable = true}, SHIFT(1186), - [1116] = {.count = 1, .reusable = true}, SHIFT(2721), - [1118] = {.count = 1, .reusable = false}, SHIFT(2214), - [1120] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), - [1122] = {.count = 1, .reusable = true}, SHIFT(1934), - [1124] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), - [1126] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .production_id = 4), - [1128] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .production_id = 4), - [1130] = {.count = 1, .reusable = false}, SHIFT(961), - [1132] = {.count = 1, .reusable = true}, SHIFT(231), - [1134] = {.count = 1, .reusable = true}, SHIFT(232), - [1136] = {.count = 1, .reusable = true}, SHIFT(233), - [1138] = {.count = 1, .reusable = true}, SHIFT(234), - [1140] = {.count = 1, .reusable = false}, SHIFT(994), - [1142] = {.count = 1, .reusable = true}, SHIFT(235), - [1144] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), - [1146] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), - [1148] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .production_id = 4), - [1150] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .production_id = 4), - [1152] = {.count = 1, .reusable = true}, SHIFT(2719), - [1154] = {.count = 1, .reusable = true}, SHIFT(1219), - [1156] = {.count = 1, .reusable = false}, SHIFT(488), - [1158] = {.count = 1, .reusable = true}, SHIFT(2728), - [1160] = {.count = 1, .reusable = true}, SHIFT(2254), - [1162] = {.count = 1, .reusable = true}, SHIFT(2725), - [1164] = {.count = 1, .reusable = true}, SHIFT(488), - [1166] = {.count = 1, .reusable = false}, SHIFT(2726), - [1168] = {.count = 1, .reusable = true}, SHIFT(2729), - [1170] = {.count = 1, .reusable = false}, SHIFT(2255), - [1172] = {.count = 1, .reusable = false}, SHIFT(239), + [1066] = {.count = 1, .reusable = true}, SHIFT(220), + [1068] = {.count = 1, .reusable = true}, SHIFT(221), + [1070] = {.count = 1, .reusable = true}, SHIFT(222), + [1072] = {.count = 1, .reusable = false}, SHIFT(967), + [1074] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [1076] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [1078] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .production_id = 4), + [1080] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .production_id = 4), + [1082] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [1084] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [1086] = {.count = 1, .reusable = false}, SHIFT(488), + [1088] = {.count = 1, .reusable = false}, SHIFT(2220), + [1090] = {.count = 1, .reusable = true}, SHIFT(488), + [1092] = {.count = 1, .reusable = true}, SHIFT(2219), + [1094] = {.count = 1, .reusable = true}, SHIFT(2717), + [1096] = {.count = 1, .reusable = true}, SHIFT(1192), + [1098] = {.count = 1, .reusable = false}, SHIFT(2726), + [1100] = {.count = 1, .reusable = true}, SHIFT(2727), + [1102] = {.count = 1, .reusable = true}, SHIFT(2723), + [1104] = {.count = 1, .reusable = true}, SHIFT(2724), + [1106] = {.count = 1, .reusable = false}, SHIFT(225), + [1108] = {.count = 1, .reusable = false}, SHIFT(227), + [1110] = {.count = 1, .reusable = true}, SHIFT(227), + [1112] = {.count = 1, .reusable = false}, SHIFT(594), + [1114] = {.count = 1, .reusable = false}, SHIFT(595), + [1116] = {.count = 1, .reusable = false}, SHIFT(596), + [1118] = {.count = 1, .reusable = false}, SHIFT(228), + [1120] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1122] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1124] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1126] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1128] = {.count = 1, .reusable = true}, SHIFT(2016), + [1130] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [1132] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [1134] = {.count = 1, .reusable = false}, SHIFT(232), + [1136] = {.count = 1, .reusable = true}, SHIFT(232), + [1138] = {.count = 1, .reusable = true}, SHIFT(230), + [1140] = {.count = 1, .reusable = true}, SHIFT(231), + [1142] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), + [1144] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 1), + [1146] = {.count = 1, .reusable = false}, SHIFT(1033), + [1148] = {.count = 1, .reusable = false}, SHIFT(233), + [1150] = {.count = 1, .reusable = true}, SHIFT(233), + [1152] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .production_id = 3), + [1154] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .production_id = 3), + [1156] = {.count = 1, .reusable = false}, SHIFT(236), + [1158] = {.count = 1, .reusable = true}, SHIFT(236), + [1160] = {.count = 1, .reusable = true}, SHIFT(234), + [1162] = {.count = 1, .reusable = true}, SHIFT(235), + [1164] = {.count = 1, .reusable = true}, SHIFT(237), + [1166] = {.count = 1, .reusable = false}, SHIFT(240), + [1168] = {.count = 1, .reusable = true}, SHIFT(240), + [1170] = {.count = 1, .reusable = true}, SHIFT(238), + [1172] = {.count = 1, .reusable = true}, SHIFT(239), [1174] = {.count = 1, .reusable = true}, SHIFT(241), - [1176] = {.count = 1, .reusable = false}, SHIFT(241), - [1178] = {.count = 1, .reusable = false}, SHIFT(585), - [1180] = {.count = 1, .reusable = false}, SHIFT(586), - [1182] = {.count = 1, .reusable = false}, SHIFT(587), - [1184] = {.count = 1, .reusable = false}, SHIFT(242), - [1186] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1188] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1190] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), - [1192] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), - [1194] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), - [1196] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), - [1198] = {.count = 1, .reusable = true}, SHIFT(2737), - [1200] = {.count = 1, .reusable = true}, SHIFT(2734), - [1202] = {.count = 1, .reusable = true}, SHIFT(244), - [1204] = {.count = 1, .reusable = false}, SHIFT(245), - [1206] = {.count = 1, .reusable = true}, SHIFT(2736), - [1208] = {.count = 1, .reusable = true}, SHIFT(246), - [1210] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 3), - [1212] = {.count = 1, .reusable = true}, SHIFT(247), - [1214] = {.count = 1, .reusable = false}, SHIFT(247), - [1216] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), - [1218] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), - [1220] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), - [1222] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), - [1224] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), - [1226] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), - [1228] = {.count = 1, .reusable = true}, SHIFT(2057), - [1230] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), - [1232] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), - [1234] = {.count = 1, .reusable = false}, SHIFT(1060), - [1236] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(95), - [1239] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1426), - [1242] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [1244] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [1246] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2534), - [1249] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(97), - [1252] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), - [1254] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), - [1256] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), - [1258] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), - [1260] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), - [1262] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), - [1264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(6), - [1267] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(7), - [1270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(8), - [1273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(9), - [1276] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(106), - [1279] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(107), - [1282] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(13), - [1285] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), - [1288] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [1291] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), - [1294] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), - [1296] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), - [1298] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), - [1300] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [1302] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [1304] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), - [1306] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), - [1308] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 4), - [1310] = {.count = 1, .reusable = false}, SHIFT(67), - [1312] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 4), - [1314] = {.count = 1, .reusable = false}, SHIFT(69), - [1316] = {.count = 1, .reusable = true}, SHIFT(250), - [1318] = {.count = 1, .reusable = false}, SHIFT(250), + [1176] = {.count = 1, .reusable = true}, SHIFT(2725), + [1178] = {.count = 1, .reusable = true}, SHIFT(242), + [1180] = {.count = 1, .reusable = true}, SHIFT(2260), + [1182] = {.count = 1, .reusable = false}, SHIFT(1225), + [1184] = {.count = 1, .reusable = true}, SHIFT(2731), + [1186] = {.count = 1, .reusable = false}, SHIFT(242), + [1188] = {.count = 1, .reusable = false}, SHIFT(2261), + [1190] = {.count = 1, .reusable = false}, SHIFT(2734), + [1192] = {.count = 1, .reusable = true}, SHIFT(2735), + [1194] = {.count = 1, .reusable = true}, SHIFT(2732), + [1196] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [1198] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [1200] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [1202] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [1204] = {.count = 1, .reusable = true}, SHIFT(2742), + [1206] = {.count = 1, .reusable = false}, SHIFT(246), + [1208] = {.count = 1, .reusable = true}, SHIFT(2743), + [1210] = {.count = 1, .reusable = true}, SHIFT(247), + [1212] = {.count = 1, .reusable = true}, SHIFT(2739), + [1214] = {.count = 1, .reusable = true}, SHIFT(248), + [1216] = {.count = 1, .reusable = false}, SHIFT(249), + [1218] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 3), + [1220] = {.count = 1, .reusable = true}, SHIFT(249), + [1222] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [1224] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [1226] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [1228] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [1230] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [1232] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [1234] = {.count = 1, .reusable = true}, SHIFT(2057), + [1236] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), + [1238] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .production_id = 2), + [1240] = {.count = 1, .reusable = false}, SHIFT(1066), + [1242] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(96), + [1245] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1432), + [1248] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [1250] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [1252] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2538), + [1255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(98), + [1258] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [1260] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [1262] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [1264] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [1266] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), + [1268] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 2), + [1270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(107), + [1273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(6), + [1276] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(7), + [1279] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(108), + [1282] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(11), + [1285] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), + [1288] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(15), + [1291] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [1294] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [1297] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(25), + [1300] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 4), + [1302] = {.count = 1, .reusable = false}, SHIFT(79), + [1304] = {.count = 1, .reusable = false}, SHIFT(80), + [1306] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 4), + [1308] = {.count = 1, .reusable = false}, SHIFT(252), + [1310] = {.count = 1, .reusable = true}, SHIFT(252), + [1312] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [1314] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [1316] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [1318] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), [1320] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), [1322] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), [1324] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), - [1326] = {.count = 1, .reusable = true}, SHIFT(253), - [1328] = {.count = 1, .reusable = false}, SHIFT(254), - [1330] = {.count = 1, .reusable = true}, SHIFT(255), - [1332] = {.count = 1, .reusable = false}, SHIFT(255), - [1334] = {.count = 1, .reusable = true}, SHIFT(202), - [1336] = {.count = 1, .reusable = true}, SHIFT(201), - [1338] = {.count = 1, .reusable = true}, SHIFT(260), - [1340] = {.count = 1, .reusable = false}, SHIFT(260), - [1342] = {.count = 1, .reusable = false}, SHIFT(262), - [1344] = {.count = 1, .reusable = true}, SHIFT(262), - [1346] = {.count = 1, .reusable = true}, SHIFT(2787), - [1348] = {.count = 1, .reusable = false}, SHIFT(261), - [1350] = {.count = 1, .reusable = true}, SHIFT(267), - [1352] = {.count = 1, .reusable = false}, SHIFT(267), - [1354] = {.count = 1, .reusable = false}, SHIFT(268), - [1356] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), - [1358] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), - [1360] = {.count = 1, .reusable = false}, SHIFT(272), - [1362] = {.count = 1, .reusable = true}, SHIFT(272), - [1364] = {.count = 1, .reusable = true}, SHIFT(271), - [1366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(215), - [1369] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2647), - [1372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(141), - [1375] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2656), - [1378] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1885), - [1381] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2653), - [1384] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [1386] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(141), - [1389] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(215), - [1392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2654), - [1395] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(922), - [1398] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2657), - [1401] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1886), - [1404] = {.count = 1, .reusable = true}, SHIFT(273), - [1406] = {.count = 1, .reusable = false}, SHIFT(274), - [1408] = {.count = 1, .reusable = true}, SHIFT(274), - [1410] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 5), - [1412] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 5), - [1414] = {.count = 1, .reusable = false}, SHIFT(279), - [1416] = {.count = 1, .reusable = true}, SHIFT(279), - [1418] = {.count = 1, .reusable = true}, SHIFT(277), - [1420] = {.count = 1, .reusable = true}, SHIFT(278), - [1422] = {.count = 1, .reusable = true}, SHIFT(2180), - [1424] = {.count = 1, .reusable = false}, SHIFT(1159), - [1426] = {.count = 1, .reusable = true}, SHIFT(280), - [1428] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 3), - [1430] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 3), - [1432] = {.count = 1, .reusable = false}, SHIFT(282), - [1434] = {.count = 1, .reusable = true}, SHIFT(282), - [1436] = {.count = 1, .reusable = true}, SHIFT(281), - [1438] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), - [1440] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), - [1442] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1444] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1446] = {.count = 1, .reusable = true}, SHIFT(2221), - [1448] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [1450] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [1452] = {.count = 1, .reusable = true}, SHIFT(1192), - [1454] = {.count = 1, .reusable = true}, SHIFT(283), - [1456] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), - [1458] = {.count = 1, .reusable = true}, SHIFT(285), - [1460] = {.count = 1, .reusable = false}, SHIFT(1000), - [1462] = {.count = 1, .reusable = true}, SHIFT(286), - [1464] = {.count = 1, .reusable = true}, SHIFT(1000), - [1466] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .production_id = 4), - [1468] = {.count = 1, .reusable = true}, SHIFT(287), - [1470] = {.count = 1, .reusable = true}, SHIFT(288), - [1472] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), - [1474] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [1476] = {.count = 1, .reusable = false}, SHIFT(2719), - [1478] = {.count = 1, .reusable = true}, SHIFT(289), - [1480] = {.count = 1, .reusable = false}, SHIFT(2728), - [1482] = {.count = 1, .reusable = false}, SHIFT(289), - [1484] = {.count = 1, .reusable = false}, SHIFT(2254), - [1486] = {.count = 1, .reusable = false}, SHIFT(2725), - [1488] = {.count = 1, .reusable = false}, SHIFT(1219), - [1490] = {.count = 1, .reusable = false}, SHIFT(2729), - [1492] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), - [1494] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), - [1496] = {.count = 1, .reusable = true}, SHIFT(290), - [1498] = {.count = 1, .reusable = false}, SHIFT(292), - [1500] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), - [1502] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), - [1504] = {.count = 1, .reusable = false}, SHIFT(294), - [1506] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), - [1508] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), - [1510] = {.count = 1, .reusable = true}, SHIFT(1288), - [1512] = {.count = 1, .reusable = false}, SHIFT(1289), - [1514] = {.count = 1, .reusable = true}, SHIFT(1289), - [1516] = {.count = 1, .reusable = true}, SHIFT(295), - [1518] = {.count = 1, .reusable = true}, SHIFT(296), - [1520] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 4), - [1522] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 4), - [1524] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 4), - [1526] = {.count = 1, .reusable = true}, SHIFT(297), - [1528] = {.count = 1, .reusable = false}, SHIFT(297), - [1530] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), - [1532] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), - [1534] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), - [1536] = {.count = 1, .reusable = true}, SHIFT(298), - [1538] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 2), - [1540] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 2), - [1542] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [1544] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [1546] = {.count = 1, .reusable = true}, SHIFT(300), - [1548] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), - [1551] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(384), - [1554] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2527), - [1557] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2528), - [1560] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2529), - [1563] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1429), - [1566] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2770), - [1569] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2531), - [1572] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2533), - [1575] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(388), - [1578] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(385), - [1581] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(389), - [1584] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(386), - [1587] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2536), - [1590] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2526), - [1593] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1427), - [1596] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2530), - [1599] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1428), - [1602] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), - [1605] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2792), - [1608] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(386), - [1611] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2532), - [1614] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(387), - [1617] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(20), - [1620] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2535), - [1623] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2771), - [1626] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2537), - [1629] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2538), - [1632] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(202), - [1635] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1637] = {.count = 1, .reusable = false}, SHIFT(302), - [1639] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), - [1641] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), - [1643] = {.count = 1, .reusable = true}, SHIFT(306), - [1645] = {.count = 1, .reusable = true}, SHIFT(305), - [1647] = {.count = 1, .reusable = true}, SHIFT(309), - [1649] = {.count = 1, .reusable = true}, SHIFT(302), - [1651] = {.count = 1, .reusable = false}, SHIFT(311), - [1653] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .production_id = 2), - [1655] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .production_id = 2), - [1657] = {.count = 1, .reusable = true}, SHIFT(311), - [1659] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), - [1661] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), - [1663] = {.count = 1, .reusable = true}, SHIFT(314), - [1665] = {.count = 1, .reusable = false}, SHIFT(315), - [1667] = {.count = 1, .reusable = true}, SHIFT(315), - [1669] = {.count = 1, .reusable = true}, SHIFT(316), - [1671] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 5), - [1673] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 5), - [1675] = {.count = 1, .reusable = false}, SHIFT(318), - [1677] = {.count = 1, .reusable = true}, SHIFT(318), - [1679] = {.count = 1, .reusable = true}, SHIFT(317), - [1681] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 6), - [1683] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 6), - [1685] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 3), - [1687] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 3), - [1689] = {.count = 1, .reusable = true}, SHIFT(319), - [1691] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), - [1693] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), - [1695] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2711), - [1698] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), - [1701] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2720), - [1704] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2213), - [1707] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2717), - [1710] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2718), - [1715] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), - [1718] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1186), - [1721] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2721), - [1724] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2214), - [1727] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), - [1729] = {.count = 1, .reusable = true}, SHIFT(320), - [1731] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .production_id = 4), - [1733] = {.count = 1, .reusable = true}, SHIFT(321), - [1735] = {.count = 1, .reusable = true}, SHIFT(323), - [1737] = {.count = 1, .reusable = true}, SHIFT(325), - [1739] = {.count = 1, .reusable = false}, SHIFT(327), - [1741] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), - [1743] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), - [1745] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), - [1747] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), - [1749] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2737), - [1752] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2734), - [1755] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [1757] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(245), - [1760] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2736), - [1763] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(296), - [1766] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 5), - [1768] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), - [1770] = {.count = 1, .reusable = true}, SHIFT(329), - [1772] = {.count = 1, .reusable = false}, SHIFT(329), - [1774] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [1776] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [1778] = {.count = 1, .reusable = true}, SHIFT(330), - [1780] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), - [1782] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [1326] = {.count = 1, .reusable = false}, SHIFT(256), + [1328] = {.count = 1, .reusable = true}, SHIFT(255), + [1330] = {.count = 1, .reusable = true}, SHIFT(257), + [1332] = {.count = 1, .reusable = false}, SHIFT(257), + [1334] = {.count = 1, .reusable = true}, SHIFT(201), + [1336] = {.count = 1, .reusable = true}, SHIFT(200), + [1338] = {.count = 1, .reusable = false}, SHIFT(262), + [1340] = {.count = 1, .reusable = true}, SHIFT(262), + [1342] = {.count = 1, .reusable = true}, SHIFT(263), + [1344] = {.count = 1, .reusable = true}, SHIFT(2793), + [1346] = {.count = 1, .reusable = false}, SHIFT(263), + [1348] = {.count = 1, .reusable = false}, SHIFT(264), + [1350] = {.count = 1, .reusable = false}, SHIFT(269), + [1352] = {.count = 1, .reusable = true}, SHIFT(269), + [1354] = {.count = 1, .reusable = false}, SHIFT(270), + [1356] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [1358] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [1360] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [1362] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [1364] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [1366] = {.count = 1, .reusable = true}, SHIFT(2180), + [1368] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [1370] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [1372] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [1374] = {.count = 1, .reusable = true}, SHIFT(1165), + [1376] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [1378] = {.count = 1, .reusable = true}, SHIFT(273), + [1380] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [1382] = {.count = 1, .reusable = true}, SHIFT(275), + [1384] = {.count = 1, .reusable = true}, SHIFT(969), + [1386] = {.count = 1, .reusable = false}, SHIFT(969), + [1388] = {.count = 1, .reusable = true}, SHIFT(276), + [1390] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .production_id = 4), + [1392] = {.count = 1, .reusable = true}, SHIFT(277), + [1394] = {.count = 1, .reusable = true}, SHIFT(278), + [1396] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), + [1398] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), + [1400] = {.count = 1, .reusable = false}, SHIFT(2717), + [1402] = {.count = 1, .reusable = false}, SHIFT(2219), + [1404] = {.count = 1, .reusable = true}, SHIFT(279), + [1406] = {.count = 1, .reusable = false}, SHIFT(279), + [1408] = {.count = 1, .reusable = false}, SHIFT(1192), + [1410] = {.count = 1, .reusable = false}, SHIFT(2723), + [1412] = {.count = 1, .reusable = false}, SHIFT(2727), + [1414] = {.count = 1, .reusable = false}, SHIFT(2724), + [1416] = {.count = 1, .reusable = true}, SHIFT(280), + [1418] = {.count = 1, .reusable = false}, SHIFT(282), + [1420] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [1422] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [1424] = {.count = 1, .reusable = false}, SHIFT(284), + [1426] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [1428] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [1430] = {.count = 1, .reusable = false}, SHIFT(286), + [1432] = {.count = 1, .reusable = true}, SHIFT(286), + [1434] = {.count = 1, .reusable = true}, SHIFT(285), + [1436] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(233), + [1439] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2677), + [1442] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(161), + [1445] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2014), + [1448] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(233), + [1451] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1027), + [1454] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [1456] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(161), + [1459] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2683), + [1462] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2015), + [1465] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2686), + [1468] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2687), + [1471] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2684), + [1474] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 3), + [1476] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 3), + [1478] = {.count = 1, .reusable = false}, SHIFT(288), + [1480] = {.count = 1, .reusable = true}, SHIFT(288), + [1482] = {.count = 1, .reusable = true}, SHIFT(287), + [1484] = {.count = 1, .reusable = true}, SHIFT(289), + [1486] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .production_id = 5), + [1488] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .production_id = 5), + [1490] = {.count = 1, .reusable = false}, SHIFT(292), + [1492] = {.count = 1, .reusable = true}, SHIFT(292), + [1494] = {.count = 1, .reusable = true}, SHIFT(290), + [1496] = {.count = 1, .reusable = true}, SHIFT(291), + [1498] = {.count = 1, .reusable = true}, SHIFT(293), + [1500] = {.count = 1, .reusable = false}, SHIFT(293), + [1502] = {.count = 1, .reusable = true}, SHIFT(2262), + [1504] = {.count = 1, .reusable = true}, SHIFT(296), + [1506] = {.count = 1, .reusable = false}, SHIFT(1231), + [1508] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [1510] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [1512] = {.count = 1, .reusable = true}, SHIFT(1294), + [1514] = {.count = 1, .reusable = true}, SHIFT(1295), + [1516] = {.count = 1, .reusable = false}, SHIFT(1294), + [1518] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [1520] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [1522] = {.count = 1, .reusable = true}, SHIFT(297), + [1524] = {.count = 1, .reusable = true}, SHIFT(298), + [1526] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 4), + [1528] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 4), + [1530] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 4), + [1532] = {.count = 1, .reusable = false}, SHIFT(299), + [1534] = {.count = 1, .reusable = true}, SHIFT(299), + [1536] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [1538] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [1540] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [1542] = {.count = 1, .reusable = true}, SHIFT(300), + [1544] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 2), + [1546] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 2), + [1548] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [1550] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [1552] = {.count = 1, .reusable = true}, SHIFT(302), + [1554] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), + [1557] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(386), + [1560] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2533), + [1563] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2535), + [1566] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2776), + [1569] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2539), + [1572] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2536), + [1575] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1434), + [1578] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2537), + [1581] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(387), + [1584] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1435), + [1587] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2541), + [1590] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(391), + [1593] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2532), + [1596] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(388), + [1599] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(389), + [1602] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(389), + [1605] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2534), + [1608] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1433), + [1611] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3), + [1614] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2798), + [1617] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(390), + [1620] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(18), + [1623] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2540), + [1626] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2777), + [1629] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2543), + [1632] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2542), + [1635] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2544), + [1638] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(201), + [1641] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1643] = {.count = 1, .reusable = false}, SHIFT(304), + [1645] = {.count = 1, .reusable = true}, SHIFT(308), + [1647] = {.count = 1, .reusable = true}, SHIFT(307), + [1649] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [1651] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [1653] = {.count = 1, .reusable = true}, SHIFT(311), + [1655] = {.count = 1, .reusable = true}, SHIFT(304), + [1657] = {.count = 1, .reusable = false}, SHIFT(313), + [1659] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .production_id = 2), + [1661] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .production_id = 2), + [1663] = {.count = 1, .reusable = true}, SHIFT(313), + [1665] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [1667] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [1669] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2709), + [1672] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(214), + [1675] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2178), + [1678] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1159), + [1681] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1683] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2715), + [1686] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(214), + [1689] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2179), + [1692] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2718), + [1695] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2719), + [1698] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2716), + [1701] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [1703] = {.count = 1, .reusable = true}, SHIFT(316), + [1705] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .production_id = 4), + [1707] = {.count = 1, .reusable = true}, SHIFT(317), + [1709] = {.count = 1, .reusable = true}, SHIFT(319), + [1711] = {.count = 1, .reusable = true}, SHIFT(321), + [1713] = {.count = 1, .reusable = false}, SHIFT(323), + [1715] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [1717] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [1719] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [1721] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [1723] = {.count = 1, .reusable = true}, SHIFT(324), + [1725] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 3), + [1727] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 3), + [1729] = {.count = 1, .reusable = true}, SHIFT(325), + [1731] = {.count = 1, .reusable = false}, SHIFT(326), + [1733] = {.count = 1, .reusable = true}, SHIFT(326), + [1735] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 5), + [1737] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 5), + [1739] = {.count = 1, .reusable = false}, SHIFT(328), + [1741] = {.count = 1, .reusable = true}, SHIFT(328), + [1743] = {.count = 1, .reusable = true}, SHIFT(327), + [1745] = {.count = 1, .reusable = true}, SHIFT(329), + [1747] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .production_id = 6), + [1749] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .production_id = 6), + [1751] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [1753] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [1755] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2742), + [1758] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(246), + [1761] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2743), + [1764] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [1766] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2739), + [1769] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(298), + [1772] = {.count = 1, .reusable = true}, REDUCE(sym__statements, 5), + [1774] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [1776] = {.count = 1, .reusable = false}, SHIFT(331), + [1778] = {.count = 1, .reusable = true}, SHIFT(331), + [1780] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [1782] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), [1784] = {.count = 1, .reusable = true}, SHIFT(332), - [1786] = {.count = 1, .reusable = false}, SHIFT(333), - [1788] = {.count = 1, .reusable = true}, SHIFT(333), - [1790] = {.count = 1, .reusable = false}, SHIFT(637), - [1792] = {.count = 1, .reusable = false}, SHIFT(638), - [1794] = {.count = 1, .reusable = true}, SHIFT(2295), - [1796] = {.count = 1, .reusable = true}, SHIFT(2733), - [1798] = {.count = 1, .reusable = false}, SHIFT(2742), - [1800] = {.count = 1, .reusable = true}, SHIFT(2727), - [1802] = {.count = 1, .reusable = true}, SHIFT(540), - [1804] = {.count = 1, .reusable = false}, SHIFT(2296), - [1806] = {.count = 1, .reusable = false}, SHIFT(540), - [1808] = {.count = 1, .reusable = true}, SHIFT(2744), - [1810] = {.count = 1, .reusable = false}, SHIFT(541), - [1812] = {.count = 1, .reusable = true}, SHIFT(2613), - [1814] = {.count = 1, .reusable = false}, SHIFT(542), - [1816] = {.count = 1, .reusable = false}, SHIFT(1252), - [1818] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), - [1820] = {.count = 1, .reusable = true}, SHIFT(2745), - [1822] = {.count = 1, .reusable = true}, SHIFT(336), - [1824] = {.count = 1, .reusable = true}, SHIFT(338), - [1826] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2787), - [1829] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(340), - [1832] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2711), - [1835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2720), - [1838] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2213), - [1841] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2717), - [1844] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(340), - [1847] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2721), + [1786] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [1788] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [1790] = {.count = 1, .reusable = true}, SHIFT(334), + [1792] = {.count = 1, .reusable = false}, SHIFT(335), + [1794] = {.count = 1, .reusable = true}, SHIFT(335), + [1796] = {.count = 1, .reusable = false}, SHIFT(547), + [1798] = {.count = 1, .reusable = false}, SHIFT(643), + [1800] = {.count = 1, .reusable = false}, SHIFT(644), + [1802] = {.count = 1, .reusable = false}, SHIFT(1258), + [1804] = {.count = 1, .reusable = true}, SHIFT(2747), + [1806] = {.count = 1, .reusable = true}, SHIFT(545), + [1808] = {.count = 1, .reusable = false}, SHIFT(545), + [1810] = {.count = 1, .reusable = true}, SHIFT(2740), + [1812] = {.count = 1, .reusable = true}, SHIFT(2301), + [1814] = {.count = 1, .reusable = false}, SHIFT(546), + [1816] = {.count = 1, .reusable = true}, SHIFT(2617), + [1818] = {.count = 1, .reusable = true}, SHIFT(2733), + [1820] = {.count = 1, .reusable = false}, SHIFT(2302), + [1822] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [1824] = {.count = 1, .reusable = false}, SHIFT(2750), + [1826] = {.count = 1, .reusable = true}, SHIFT(2751), + [1828] = {.count = 1, .reusable = true}, SHIFT(338), + [1830] = {.count = 1, .reusable = true}, SHIFT(340), + [1832] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(342), + [1835] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2179), + [1838] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(342), + [1841] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2178), + [1844] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2709), + [1847] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2793), [1850] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2718), - [1853] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2214), - [1856] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .production_id = 1), - [1858] = {.count = 1, .reusable = true}, SHIFT(343), - [1860] = {.count = 1, .reusable = true}, SHIFT(345), - [1862] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .production_id = 2), - [1864] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .production_id = 2), + [1853] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2719), + [1856] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2716), + [1859] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2715), + [1862] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .production_id = 1), + [1864] = {.count = 1, .reusable = true}, SHIFT(345), [1866] = {.count = 1, .reusable = true}, SHIFT(347), - [1868] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [1870] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [1872] = {.count = 1, .reusable = true}, SHIFT(348), - [1874] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 7), - [1876] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 7), - [1878] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 5), - [1880] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 5), - [1882] = {.count = 1, .reusable = true}, SHIFT(349), - [1884] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 3), - [1886] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 3), - [1888] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), - [1890] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .production_id = 4), - [1892] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [1894] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [1896] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), - [1898] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), - [1900] = {.count = 1, .reusable = true}, SHIFT(351), - [1902] = {.count = 1, .reusable = true}, SHIFT(352), - [1904] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), - [1906] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 4), - [1908] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 4), - [1910] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [1912] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [1914] = {.count = 1, .reusable = true}, SHIFT(354), - [1916] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), - [1918] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), - [1920] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), - [1922] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 2), - [1924] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), - [1926] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), - [1928] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), - [1930] = {.count = 1, .reusable = true}, SHIFT(355), - [1932] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), - [1934] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(305), - [1937] = {.count = 1, .reusable = true}, SHIFT(357), - [1939] = {.count = 1, .reusable = true}, SHIFT(359), - [1941] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .production_id = 1), - [1943] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .production_id = 1), - [1945] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .production_id = 1), - [1947] = {.count = 1, .reusable = true}, SHIFT(361), - [1949] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .production_id = 1), - [1951] = {.count = 1, .reusable = true}, SHIFT(363), - [1953] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .production_id = 2), - [1955] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .production_id = 2), - [1957] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), - [1959] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), - [1961] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .production_id = 5), - [1963] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .production_id = 5), - [1965] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), - [1967] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), - [1969] = {.count = 1, .reusable = true}, SHIFT(365), - [1971] = {.count = 1, .reusable = true}, SHIFT(366), - [1973] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), - [1975] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), - [1977] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), - [1979] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), - [1981] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), - [1983] = {.count = 1, .reusable = true}, SHIFT(367), - [1985] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), - [1987] = {.count = 1, .reusable = true}, SHIFT(368), - [1989] = {.count = 1, .reusable = true}, SHIFT(370), - [1991] = {.count = 1, .reusable = true}, SHIFT(371), - [1993] = {.count = 1, .reusable = true}, SHIFT(373), - [1995] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .production_id = 1), - [1997] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .production_id = 1), - [1999] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .production_id = 1), - [2001] = {.count = 1, .reusable = true}, SHIFT(374), - [2003] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .production_id = 1), - [2005] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .production_id = 2), - [2007] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .production_id = 2), - [2009] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), - [2011] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), - [2013] = {.count = 1, .reusable = true}, SHIFT(376), - [2015] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), - [2017] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), - [2019] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), - [2021] = {.count = 1, .reusable = true}, SHIFT(377), - [2023] = {.count = 1, .reusable = true}, SHIFT(379), - [2025] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .production_id = 1), - [2027] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .production_id = 1), - [2029] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .production_id = 1), - [2031] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), - [2033] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), - [2035] = {.count = 1, .reusable = true}, SHIFT(382), - [2037] = {.count = 1, .reusable = true}, SHIFT(383), - [2039] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), - [2041] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), - [2043] = {.count = 1, .reusable = false}, SHIFT(1803), - [2045] = {.count = 1, .reusable = false}, SHIFT(2637), - [2047] = {.count = 1, .reusable = false}, SHIFT(2638), - [2049] = {.count = 1, .reusable = false}, SHIFT(2631), - [2051] = {.count = 1, .reusable = false}, SHIFT(400), - [2053] = {.count = 1, .reusable = false}, SHIFT(402), - [2055] = {.count = 1, .reusable = false}, SHIFT(1804), - [2057] = {.count = 1, .reusable = false}, SHIFT(2640), - [2059] = {.count = 1, .reusable = true}, SHIFT(2593), - [2061] = {.count = 1, .reusable = false}, SHIFT(856), - [2063] = {.count = 1, .reusable = false}, SHIFT(2641), - [2065] = {.count = 1, .reusable = false}, SHIFT(1844), - [2067] = {.count = 1, .reusable = false}, SHIFT(2645), - [2069] = {.count = 1, .reusable = false}, SHIFT(2646), - [2071] = {.count = 1, .reusable = false}, SHIFT(2639), - [2073] = {.count = 1, .reusable = false}, SHIFT(403), - [2075] = {.count = 1, .reusable = false}, SHIFT(405), - [2077] = {.count = 1, .reusable = false}, SHIFT(1845), - [2079] = {.count = 1, .reusable = false}, SHIFT(2648), - [2081] = {.count = 1, .reusable = false}, SHIFT(889), - [2083] = {.count = 1, .reusable = false}, SHIFT(2649), - [2085] = {.count = 1, .reusable = true}, SHIFT(1437), - [2087] = {.count = 1, .reusable = false}, SHIFT(2545), - [2089] = {.count = 1, .reusable = false}, SHIFT(418), - [2091] = {.count = 1, .reusable = true}, SHIFT(417), - [2093] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 1), - [2095] = {.count = 1, .reusable = false}, SHIFT(424), - [2097] = {.count = 1, .reusable = true}, SHIFT(389), - [2099] = {.count = 1, .reusable = false}, SHIFT(1427), - [2101] = {.count = 1, .reusable = false}, SHIFT(2527), - [2103] = {.count = 1, .reusable = false}, SHIFT(2529), - [2105] = {.count = 1, .reusable = false}, SHIFT(427), - [2107] = {.count = 1, .reusable = false}, SHIFT(428), - [2109] = {.count = 1, .reusable = false}, SHIFT(2532), + [1868] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .production_id = 2), + [1870] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .production_id = 2), + [1872] = {.count = 1, .reusable = true}, SHIFT(349), + [1874] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [1876] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .production_id = 4), + [1878] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [1880] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [1882] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), + [1884] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), + [1886] = {.count = 1, .reusable = true}, SHIFT(351), + [1888] = {.count = 1, .reusable = true}, SHIFT(352), + [1890] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [1892] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [1894] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 3), + [1896] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 3), + [1898] = {.count = 1, .reusable = true}, SHIFT(354), + [1900] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 5), + [1902] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 5), + [1904] = {.count = 1, .reusable = true}, SHIFT(355), + [1906] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .production_id = 7), + [1908] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .production_id = 7), + [1910] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [1912] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements2, 4), + [1914] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements2, 4), + [1916] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [1918] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [1920] = {.count = 1, .reusable = true}, SHIFT(356), + [1922] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), + [1924] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), + [1926] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [1928] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 2), + [1930] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [1932] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [1934] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [1936] = {.count = 1, .reusable = true}, SHIFT(357), + [1938] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), + [1940] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(307), + [1943] = {.count = 1, .reusable = true}, SHIFT(359), + [1945] = {.count = 1, .reusable = true}, SHIFT(361), + [1947] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .production_id = 1), + [1949] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .production_id = 1), + [1951] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .production_id = 1), + [1953] = {.count = 1, .reusable = true}, SHIFT(363), + [1955] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .production_id = 1), + [1957] = {.count = 1, .reusable = true}, SHIFT(365), + [1959] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .production_id = 2), + [1961] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .production_id = 2), + [1963] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), + [1965] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), + [1967] = {.count = 1, .reusable = true}, SHIFT(367), + [1969] = {.count = 1, .reusable = true}, SHIFT(368), + [1971] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), + [1973] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), + [1975] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .production_id = 5), + [1977] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .production_id = 5), + [1979] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), + [1981] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), + [1983] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [1985] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [1987] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [1989] = {.count = 1, .reusable = true}, SHIFT(369), + [1991] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), + [1993] = {.count = 1, .reusable = true}, SHIFT(370), + [1995] = {.count = 1, .reusable = true}, SHIFT(372), + [1997] = {.count = 1, .reusable = true}, SHIFT(373), + [1999] = {.count = 1, .reusable = true}, SHIFT(375), + [2001] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .production_id = 1), + [2003] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .production_id = 1), + [2005] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .production_id = 1), + [2007] = {.count = 1, .reusable = true}, SHIFT(376), + [2009] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .production_id = 1), + [2011] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .production_id = 2), + [2013] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .production_id = 2), + [2015] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), + [2017] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), + [2019] = {.count = 1, .reusable = true}, SHIFT(378), + [2021] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [2023] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [2025] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [2027] = {.count = 1, .reusable = true}, SHIFT(379), + [2029] = {.count = 1, .reusable = true}, SHIFT(381), + [2031] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .production_id = 1), + [2033] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .production_id = 1), + [2035] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .production_id = 1), + [2037] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), + [2039] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), + [2041] = {.count = 1, .reusable = true}, SHIFT(384), + [2043] = {.count = 1, .reusable = true}, SHIFT(385), + [2045] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), + [2047] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), + [2049] = {.count = 1, .reusable = false}, SHIFT(402), + [2051] = {.count = 1, .reusable = false}, SHIFT(862), + [2053] = {.count = 1, .reusable = false}, SHIFT(2643), + [2055] = {.count = 1, .reusable = false}, SHIFT(2644), + [2057] = {.count = 1, .reusable = false}, SHIFT(2637), + [2059] = {.count = 1, .reusable = false}, SHIFT(1809), + [2061] = {.count = 1, .reusable = true}, SHIFT(2597), + [2063] = {.count = 1, .reusable = false}, SHIFT(404), + [2065] = {.count = 1, .reusable = false}, SHIFT(1810), + [2067] = {.count = 1, .reusable = false}, SHIFT(2646), + [2069] = {.count = 1, .reusable = false}, SHIFT(2647), + [2071] = {.count = 1, .reusable = false}, SHIFT(405), + [2073] = {.count = 1, .reusable = false}, SHIFT(895), + [2075] = {.count = 1, .reusable = false}, SHIFT(2651), + [2077] = {.count = 1, .reusable = false}, SHIFT(2652), + [2079] = {.count = 1, .reusable = false}, SHIFT(2645), + [2081] = {.count = 1, .reusable = false}, SHIFT(1850), + [2083] = {.count = 1, .reusable = false}, SHIFT(407), + [2085] = {.count = 1, .reusable = false}, SHIFT(1851), + [2087] = {.count = 1, .reusable = false}, SHIFT(2654), + [2089] = {.count = 1, .reusable = false}, SHIFT(2655), + [2091] = {.count = 1, .reusable = true}, SHIFT(1437), + [2093] = {.count = 1, .reusable = false}, SHIFT(2552), + [2095] = {.count = 1, .reusable = false}, SHIFT(421), + [2097] = {.count = 1, .reusable = true}, SHIFT(420), + [2099] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 1), + [2101] = {.count = 1, .reusable = false}, SHIFT(427), + [2103] = {.count = 1, .reusable = true}, SHIFT(388), + [2105] = {.count = 1, .reusable = false}, SHIFT(430), + [2107] = {.count = 1, .reusable = false}, SHIFT(2533), + [2109] = {.count = 1, .reusable = false}, SHIFT(431), [2111] = {.count = 1, .reusable = false}, SHIFT(2535), - [2113] = {.count = 1, .reusable = true}, SHIFT(1811), - [2115] = {.count = 1, .reusable = false}, SHIFT(862), - [2117] = {.count = 1, .reusable = false}, SHIFT(432), - [2119] = {.count = 1, .reusable = true}, SHIFT(1852), - [2121] = {.count = 1, .reusable = false}, SHIFT(895), - [2123] = {.count = 1, .reusable = false}, SHIFT(433), - [2125] = {.count = 1, .reusable = true}, SHIFT(1767), - [2127] = {.count = 1, .reusable = false}, SHIFT(824), - [2129] = {.count = 1, .reusable = true}, SHIFT(443), - [2131] = {.count = 1, .reusable = true}, SHIFT(472), - [2133] = {.count = 1, .reusable = false}, SHIFT(471), - [2135] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 2), - [2137] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(424), - [2140] = {.count = 1, .reusable = false}, SHIFT(475), - [2142] = {.count = 1, .reusable = true}, SHIFT(475), - [2144] = {.count = 1, .reusable = true}, SHIFT(474), - [2146] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1803), - [2149] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2637), - [2152] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2638), - [2155] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2631), - [2158] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(400), - [2161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(432), - [2164] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1804), - [2167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2640), - [2170] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2593), - [2173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(856), - [2176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2641), - [2179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1844), - [2182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2645), - [2185] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2646), - [2188] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2639), - [2191] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(403), - [2194] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(433), - [2197] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1845), - [2200] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2648), - [2203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(889), - [2206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2649), - [2209] = {.count = 1, .reusable = true}, SHIFT(481), - [2211] = {.count = 1, .reusable = false}, SHIFT(442), - [2213] = {.count = 1, .reusable = true}, SHIFT(442), - [2215] = {.count = 1, .reusable = false}, SHIFT(482), - [2217] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1437), - [2220] = {.count = 1, .reusable = true}, SHIFT(2098), - [2222] = {.count = 1, .reusable = false}, SHIFT(1093), - [2224] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 3), - [2226] = {.count = 1, .reusable = true}, SHIFT(496), - [2228] = {.count = 1, .reusable = false}, SHIFT(496), - [2230] = {.count = 1, .reusable = true}, SHIFT(2139), - [2232] = {.count = 1, .reusable = false}, SHIFT(1126), - [2234] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1536), - [2237] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1451), - [2240] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2572), - [2243] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1452), - [2246] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1427), - [2249] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2527), - [2252] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2528), - [2255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2529), - [2258] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(427), - [2261] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(428), - [2264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1429), - [2267] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2532), - [2270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(389), - [2273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2535), - [2276] = {.count = 1, .reusable = false}, SHIFT(413), - [2278] = {.count = 1, .reusable = false}, SHIFT(412), - [2280] = {.count = 1, .reusable = false}, SHIFT(414), - [2282] = {.count = 1, .reusable = true}, SHIFT(2262), - [2284] = {.count = 1, .reusable = false}, SHIFT(1225), - [2286] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), - [2288] = {.count = 1, .reusable = true}, SHIFT(509), - [2290] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .production_id = 4), - [2292] = {.count = 1, .reusable = true}, SHIFT(511), - [2294] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 4), - [2296] = {.count = 1, .reusable = true}, SHIFT(515), - [2298] = {.count = 1, .reusable = false}, SHIFT(515), - [2300] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2719), - [2303] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(488), - [2306] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2308] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2728), - [2311] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2254), - [2314] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2725), - [2317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2726), - [2320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1219), - [2323] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2729), - [2326] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2255), - [2329] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), - [2331] = {.count = 1, .reusable = true}, SHIFT(523), - [2333] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .production_id = 4), - [2335] = {.count = 1, .reusable = true}, SHIFT(524), - [2337] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), - [2339] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .production_id = 4), - [2341] = {.count = 1, .reusable = false}, SHIFT(556), - [2343] = {.count = 1, .reusable = false}, SHIFT(559), - [2345] = {.count = 1, .reusable = true}, SHIFT(2303), - [2347] = {.count = 1, .reusable = false}, SHIFT(2789), - [2349] = {.count = 1, .reusable = true}, SHIFT(652), - [2351] = {.count = 1, .reusable = false}, SHIFT(653), - [2353] = {.count = 1, .reusable = true}, SHIFT(2791), - [2355] = {.count = 1, .reusable = false}, SHIFT(654), - [2357] = {.count = 1, .reusable = false}, SHIFT(2788), - [2359] = {.count = 1, .reusable = false}, SHIFT(651), - [2361] = {.count = 1, .reusable = false}, SHIFT(571), - [2363] = {.count = 1, .reusable = false}, SHIFT(568), - [2365] = {.count = 1, .reusable = true}, SHIFT(569), - [2367] = {.count = 1, .reusable = false}, SHIFT(570), - [2369] = {.count = 1, .reusable = false}, SHIFT(1258), - [2371] = {.count = 1, .reusable = true}, SHIFT(1252), - [2373] = {.count = 1, .reusable = true}, SHIFT(2344), - [2375] = {.count = 1, .reusable = false}, SHIFT(1291), - [2377] = {.count = 1, .reusable = true}, SHIFT(2385), - [2379] = {.count = 1, .reusable = false}, SHIFT(1324), - [2381] = {.count = 1, .reusable = true}, SHIFT(2016), - [2383] = {.count = 1, .reusable = true}, SHIFT(2575), - [2385] = {.count = 1, .reusable = true}, SHIFT(2671), - [2387] = {.count = 1, .reusable = true}, SHIFT(2680), - [2389] = {.count = 1, .reusable = true}, SHIFT(2008), - [2391] = {.count = 1, .reusable = true}, SHIFT(2677), - [2393] = {.count = 1, .reusable = true}, SHIFT(561), - [2395] = {.count = 1, .reusable = true}, SHIFT(1021), - [2397] = {.count = 1, .reusable = true}, SHIFT(2681), - [2399] = {.count = 1, .reusable = true}, SHIFT(562), - [2401] = {.count = 1, .reusable = false}, SHIFT(1027), - [2403] = {.count = 1, .reusable = true}, SHIFT(592), - [2405] = {.count = 1, .reusable = true}, SHIFT(608), - [2407] = {.count = 1, .reusable = false}, SHIFT(607), - [2409] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(574), - [2412] = {.count = 1, .reusable = false}, SHIFT(611), - [2414] = {.count = 1, .reusable = true}, SHIFT(611), - [2416] = {.count = 1, .reusable = true}, SHIFT(610), - [2418] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2336), - [2421] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2741), - [2424] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2750), - [2427] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2735), - [2430] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(554), - [2433] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(581), - [2436] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2337), - [2439] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2752), - [2442] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2623), - [2445] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1285), - [2448] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2753), - [2451] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2377), - [2454] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2749), - [2457] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2758), - [2460] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2743), - [2463] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(557), - [2466] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(582), - [2469] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2378), - [2472] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2759), - [2475] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1318), - [2478] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2760), - [2481] = {.count = 1, .reusable = true}, SHIFT(617), - [2483] = {.count = 1, .reusable = false}, SHIFT(591), - [2485] = {.count = 1, .reusable = true}, SHIFT(591), - [2487] = {.count = 1, .reusable = false}, SHIFT(618), - [2489] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1545), - [2492] = {.count = 1, .reusable = false}, SHIFT(687), - [2494] = {.count = 1, .reusable = true}, SHIFT(687), - [2496] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2295), - [2499] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2733), - [2502] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2742), - [2505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2727), - [2508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(577), - [2511] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(578), - [2514] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2296), - [2517] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2744), - [2520] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1252), - [2523] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2745), - [2526] = {.count = 1, .reusable = false}, SHIFT(566), - [2528] = {.count = 1, .reusable = false}, SHIFT(565), - [2530] = {.count = 1, .reusable = true}, SHIFT(565), - [2532] = {.count = 1, .reusable = true}, SHIFT(567), - [2534] = {.count = 1, .reusable = false}, SHIFT(694), - [2536] = {.count = 1, .reusable = true}, SHIFT(694), - [2538] = {.count = 1, .reusable = false}, SHIFT(2336), - [2540] = {.count = 1, .reusable = false}, SHIFT(2741), - [2542] = {.count = 1, .reusable = false}, SHIFT(2750), - [2544] = {.count = 1, .reusable = false}, SHIFT(2735), - [2546] = {.count = 1, .reusable = false}, SHIFT(554), - [2548] = {.count = 1, .reusable = false}, SHIFT(644), - [2550] = {.count = 1, .reusable = false}, SHIFT(2337), - [2552] = {.count = 1, .reusable = false}, SHIFT(2752), - [2554] = {.count = 1, .reusable = true}, SHIFT(2623), - [2556] = {.count = 1, .reusable = false}, SHIFT(1285), - [2558] = {.count = 1, .reusable = false}, SHIFT(2753), - [2560] = {.count = 1, .reusable = false}, SHIFT(2377), - [2562] = {.count = 1, .reusable = false}, SHIFT(2749), - [2564] = {.count = 1, .reusable = false}, SHIFT(2758), - [2566] = {.count = 1, .reusable = false}, SHIFT(2743), - [2568] = {.count = 1, .reusable = false}, SHIFT(557), - [2570] = {.count = 1, .reusable = false}, SHIFT(645), - [2572] = {.count = 1, .reusable = false}, SHIFT(2378), - [2574] = {.count = 1, .reusable = false}, SHIFT(2759), - [2576] = {.count = 1, .reusable = false}, SHIFT(1318), - [2578] = {.count = 1, .reusable = false}, SHIFT(2760), - [2580] = {.count = 1, .reusable = true}, SHIFT(1529), - [2582] = {.count = 1, .reusable = false}, SHIFT(2295), - [2584] = {.count = 1, .reusable = false}, SHIFT(2733), - [2586] = {.count = 1, .reusable = false}, SHIFT(2727), - [2588] = {.count = 1, .reusable = false}, SHIFT(577), - [2590] = {.count = 1, .reusable = false}, SHIFT(578), - [2592] = {.count = 1, .reusable = false}, SHIFT(2744), - [2594] = {.count = 1, .reusable = false}, SHIFT(2745), - [2596] = {.count = 1, .reusable = false}, SHIFT(581), - [2598] = {.count = 1, .reusable = false}, SHIFT(582), - [2600] = {.count = 1, .reusable = true}, SHIFT(666), - [2602] = {.count = 1, .reusable = true}, SHIFT(679), - [2604] = {.count = 1, .reusable = false}, SHIFT(678), - [2606] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(657), - [2609] = {.count = 1, .reusable = true}, SHIFT(2581), - [2611] = {.count = 1, .reusable = false}, SHIFT(665), - [2613] = {.count = 1, .reusable = true}, SHIFT(665), - [2615] = {.count = 1, .reusable = true}, SHIFT(2582), - [2617] = {.count = 1, .reusable = true}, SHIFT(1583), - [2619] = {.count = 1, .reusable = true}, SHIFT(2579), - [2621] = {.count = 1, .reusable = true}, SHIFT(2584), - [2623] = {.count = 1, .reusable = false}, SHIFT(682), - [2625] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1591), - [2628] = {.count = 1, .reusable = false}, SHIFT(649), - [2630] = {.count = 1, .reusable = false}, SHIFT(648), - [2632] = {.count = 1, .reusable = false}, SHIFT(650), - [2634] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 5), - [2636] = {.count = 1, .reusable = true}, SHIFT(717), - [2638] = {.count = 1, .reusable = true}, SHIFT(1531), - [2640] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(710), - [2643] = {.count = 1, .reusable = true}, SHIFT(2591), - [2645] = {.count = 1, .reusable = false}, SHIFT(716), - [2647] = {.count = 1, .reusable = true}, SHIFT(716), - [2649] = {.count = 1, .reusable = true}, SHIFT(2592), - [2651] = {.count = 1, .reusable = true}, SHIFT(1627), - [2653] = {.count = 1, .reusable = true}, SHIFT(2589), - [2655] = {.count = 1, .reusable = true}, SHIFT(2594), - [2657] = {.count = 1, .reusable = false}, SHIFT(726), - [2659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1635), - [2662] = {.count = 1, .reusable = false}, SHIFT(706), - [2664] = {.count = 1, .reusable = false}, SHIFT(705), - [2666] = {.count = 1, .reusable = false}, SHIFT(707), - [2668] = {.count = 1, .reusable = true}, SHIFT(755), - [2670] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(748), - [2673] = {.count = 1, .reusable = false}, SHIFT(754), - [2675] = {.count = 1, .reusable = true}, SHIFT(754), - [2677] = {.count = 1, .reusable = false}, SHIFT(764), - [2679] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1679), - [2682] = {.count = 1, .reusable = false}, SHIFT(784), - [2684] = {.count = 1, .reusable = false}, SHIFT(783), - [2686] = {.count = 1, .reusable = true}, SHIFT(783), - [2688] = {.count = 1, .reusable = true}, SHIFT(784), - [2690] = {.count = 1, .reusable = true}, SHIFT(747), - [2692] = {.count = 1, .reusable = true}, SHIFT(793), - [2694] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(786), - [2697] = {.count = 1, .reusable = false}, SHIFT(792), - [2699] = {.count = 1, .reusable = true}, SHIFT(792), - [2701] = {.count = 1, .reusable = false}, SHIFT(802), - [2703] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1723), - [2706] = {.count = 1, .reusable = true}, SHIFT(2426), - [2708] = {.count = 1, .reusable = false}, SHIFT(1357), - [2710] = {.count = 1, .reusable = false}, SHIFT(822), - [2712] = {.count = 1, .reusable = false}, SHIFT(821), - [2714] = {.count = 1, .reusable = false}, SHIFT(1715), - [2716] = {.count = 1, .reusable = false}, SHIFT(785), - [2718] = {.count = 1, .reusable = true}, SHIFT(831), - [2720] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(824), - [2723] = {.count = 1, .reusable = false}, SHIFT(830), - [2725] = {.count = 1, .reusable = true}, SHIFT(830), - [2727] = {.count = 1, .reusable = false}, SHIFT(840), - [2729] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1767), - [2732] = {.count = 1, .reusable = false}, SHIFT(860), - [2734] = {.count = 1, .reusable = false}, SHIFT(859), - [2736] = {.count = 1, .reusable = true}, SHIFT(859), - [2738] = {.count = 1, .reusable = true}, SHIFT(860), - [2740] = {.count = 1, .reusable = true}, SHIFT(823), - [2742] = {.count = 1, .reusable = true}, SHIFT(869), - [2744] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(862), - [2747] = {.count = 1, .reusable = true}, SHIFT(2631), - [2749] = {.count = 1, .reusable = false}, SHIFT(868), - [2751] = {.count = 1, .reusable = true}, SHIFT(2640), - [2753] = {.count = 1, .reusable = true}, SHIFT(1803), - [2755] = {.count = 1, .reusable = true}, SHIFT(2637), - [2757] = {.count = 1, .reusable = true}, SHIFT(868), - [2759] = {.count = 1, .reusable = true}, SHIFT(2641), - [2761] = {.count = 1, .reusable = false}, SHIFT(875), - [2763] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1811), - [2766] = {.count = 1, .reusable = false}, SHIFT(893), - [2768] = {.count = 1, .reusable = false}, SHIFT(892), - [2770] = {.count = 1, .reusable = false}, SHIFT(861), - [2772] = {.count = 1, .reusable = true}, SHIFT(902), - [2774] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(895), - [2777] = {.count = 1, .reusable = true}, SHIFT(2639), - [2779] = {.count = 1, .reusable = false}, SHIFT(901), - [2781] = {.count = 1, .reusable = true}, SHIFT(2648), - [2783] = {.count = 1, .reusable = true}, SHIFT(1844), - [2785] = {.count = 1, .reusable = true}, SHIFT(2645), - [2787] = {.count = 1, .reusable = true}, SHIFT(901), - [2789] = {.count = 1, .reusable = true}, SHIFT(2649), - [2791] = {.count = 1, .reusable = false}, SHIFT(908), - [2793] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1852), - [2796] = {.count = 1, .reusable = false}, SHIFT(926), - [2798] = {.count = 1, .reusable = false}, SHIFT(925), - [2800] = {.count = 1, .reusable = false}, SHIFT(894), - [2802] = {.count = 1, .reusable = true}, SHIFT(935), - [2804] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(928), - [2807] = {.count = 1, .reusable = false}, SHIFT(934), - [2809] = {.count = 1, .reusable = true}, SHIFT(934), - [2811] = {.count = 1, .reusable = false}, SHIFT(941), - [2813] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1893), - [2816] = {.count = 1, .reusable = false}, SHIFT(959), - [2818] = {.count = 1, .reusable = false}, SHIFT(958), - [2820] = {.count = 1, .reusable = true}, SHIFT(958), - [2822] = {.count = 1, .reusable = true}, SHIFT(927), - [2824] = {.count = 1, .reusable = true}, SHIFT(968), - [2826] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(961), - [2829] = {.count = 1, .reusable = false}, SHIFT(967), - [2831] = {.count = 1, .reusable = true}, SHIFT(967), - [2833] = {.count = 1, .reusable = false}, SHIFT(974), - [2835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1934), - [2838] = {.count = 1, .reusable = false}, SHIFT(992), - [2840] = {.count = 1, .reusable = false}, SHIFT(1926), - [2842] = {.count = 1, .reusable = false}, SHIFT(991), - [2844] = {.count = 1, .reusable = false}, SHIFT(960), - [2846] = {.count = 1, .reusable = true}, SHIFT(1001), - [2848] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(994), - [2851] = {.count = 1, .reusable = false}, SHIFT(1007), - [2853] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1975), - [2856] = {.count = 1, .reusable = false}, SHIFT(1025), - [2858] = {.count = 1, .reusable = true}, SHIFT(1024), - [2860] = {.count = 1, .reusable = true}, SHIFT(1025), - [2862] = {.count = 1, .reusable = true}, SHIFT(993), - [2864] = {.count = 1, .reusable = true}, SHIFT(1034), - [2866] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1027), - [2869] = {.count = 1, .reusable = false}, SHIFT(1033), - [2871] = {.count = 1, .reusable = true}, SHIFT(1033), - [2873] = {.count = 1, .reusable = false}, SHIFT(1040), - [2875] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2016), - [2878] = {.count = 1, .reusable = false}, SHIFT(1058), - [2880] = {.count = 1, .reusable = false}, SHIFT(1057), - [2882] = {.count = 1, .reusable = false}, SHIFT(1026), - [2884] = {.count = 1, .reusable = true}, SHIFT(1067), - [2886] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1060), - [2889] = {.count = 1, .reusable = false}, SHIFT(1066), - [2891] = {.count = 1, .reusable = true}, SHIFT(1066), - [2893] = {.count = 1, .reusable = false}, SHIFT(1073), - [2895] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2057), - [2898] = {.count = 1, .reusable = false}, SHIFT(1091), - [2900] = {.count = 1, .reusable = false}, SHIFT(2049), - [2902] = {.count = 1, .reusable = false}, SHIFT(1090), - [2904] = {.count = 1, .reusable = false}, SHIFT(1059), - [2906] = {.count = 1, .reusable = true}, SHIFT(1100), - [2908] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1093), - [2911] = {.count = 1, .reusable = true}, SHIFT(2687), - [2913] = {.count = 1, .reusable = false}, SHIFT(1099), - [2915] = {.count = 1, .reusable = true}, SHIFT(2696), - [2917] = {.count = 1, .reusable = true}, SHIFT(2090), - [2919] = {.count = 1, .reusable = true}, SHIFT(2693), - [2921] = {.count = 1, .reusable = false}, SHIFT(2694), - [2923] = {.count = 1, .reusable = true}, SHIFT(1099), - [2925] = {.count = 1, .reusable = true}, SHIFT(2697), - [2927] = {.count = 1, .reusable = false}, SHIFT(1106), - [2929] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2098), - [2932] = {.count = 1, .reusable = false}, SHIFT(1124), - [2934] = {.count = 1, .reusable = false}, SHIFT(1123), - [2936] = {.count = 1, .reusable = false}, SHIFT(1092), - [2938] = {.count = 1, .reusable = false}, SHIFT(2090), - [2940] = {.count = 1, .reusable = true}, SHIFT(1133), - [2942] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1126), - [2945] = {.count = 1, .reusable = true}, SHIFT(2695), - [2947] = {.count = 1, .reusable = false}, SHIFT(1132), - [2949] = {.count = 1, .reusable = true}, SHIFT(2704), - [2951] = {.count = 1, .reusable = true}, SHIFT(2131), - [2953] = {.count = 1, .reusable = true}, SHIFT(2701), - [2955] = {.count = 1, .reusable = false}, SHIFT(2702), - [2957] = {.count = 1, .reusable = true}, SHIFT(1132), - [2959] = {.count = 1, .reusable = true}, SHIFT(2705), - [2961] = {.count = 1, .reusable = false}, SHIFT(1139), - [2963] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2139), - [2966] = {.count = 1, .reusable = false}, SHIFT(1157), - [2968] = {.count = 1, .reusable = false}, SHIFT(2131), - [2970] = {.count = 1, .reusable = false}, SHIFT(1156), - [2972] = {.count = 1, .reusable = false}, SHIFT(1125), - [2974] = {.count = 1, .reusable = true}, SHIFT(1166), - [2976] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1159), - [2979] = {.count = 1, .reusable = false}, SHIFT(1165), - [2981] = {.count = 1, .reusable = true}, SHIFT(1165), - [2983] = {.count = 1, .reusable = false}, SHIFT(1172), - [2985] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2180), - [2988] = {.count = 1, .reusable = true}, SHIFT(1189), - [2990] = {.count = 1, .reusable = false}, SHIFT(1190), - [2992] = {.count = 1, .reusable = true}, SHIFT(1190), - [2994] = {.count = 1, .reusable = true}, SHIFT(1158), - [2996] = {.count = 1, .reusable = true}, SHIFT(1199), - [2998] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1192), - [3001] = {.count = 1, .reusable = false}, SHIFT(1198), - [3003] = {.count = 1, .reusable = true}, SHIFT(1198), - [3005] = {.count = 1, .reusable = false}, SHIFT(1205), - [3007] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2221), - [3010] = {.count = 1, .reusable = false}, SHIFT(1223), - [3012] = {.count = 1, .reusable = false}, SHIFT(1222), - [3014] = {.count = 1, .reusable = true}, SHIFT(1222), - [3016] = {.count = 1, .reusable = true}, SHIFT(1191), - [3018] = {.count = 1, .reusable = true}, SHIFT(1232), - [3020] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1225), - [3023] = {.count = 1, .reusable = false}, SHIFT(1231), - [3025] = {.count = 1, .reusable = true}, SHIFT(1231), - [3027] = {.count = 1, .reusable = false}, SHIFT(1238), - [3029] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2262), - [3032] = {.count = 1, .reusable = false}, SHIFT(1256), - [3034] = {.count = 1, .reusable = false}, SHIFT(1255), - [3036] = {.count = 1, .reusable = false}, SHIFT(1224), - [3038] = {.count = 1, .reusable = true}, SHIFT(1265), - [3040] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1258), - [3043] = {.count = 1, .reusable = false}, SHIFT(1264), - [3045] = {.count = 1, .reusable = true}, SHIFT(1264), - [3047] = {.count = 1, .reusable = false}, SHIFT(1337), - [3049] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2303), - [3052] = {.count = 1, .reusable = true}, SHIFT(1223), - [3054] = {.count = 1, .reusable = true}, SHIFT(1298), - [3056] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1291), - [3059] = {.count = 1, .reusable = true}, SHIFT(2735), - [3061] = {.count = 1, .reusable = false}, SHIFT(1297), - [3063] = {.count = 1, .reusable = true}, SHIFT(1297), - [3065] = {.count = 1, .reusable = true}, SHIFT(2752), - [3067] = {.count = 1, .reusable = true}, SHIFT(2336), - [3069] = {.count = 1, .reusable = true}, SHIFT(2741), - [3071] = {.count = 1, .reusable = true}, SHIFT(2753), - [3073] = {.count = 1, .reusable = false}, SHIFT(1370), - [3075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2344), - [3078] = {.count = 1, .reusable = true}, SHIFT(1331), - [3080] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1324), - [3083] = {.count = 1, .reusable = true}, SHIFT(2743), - [3085] = {.count = 1, .reusable = false}, SHIFT(1330), - [3087] = {.count = 1, .reusable = true}, SHIFT(1330), - [3089] = {.count = 1, .reusable = true}, SHIFT(2759), - [3091] = {.count = 1, .reusable = true}, SHIFT(2377), - [3093] = {.count = 1, .reusable = true}, SHIFT(2749), - [3095] = {.count = 1, .reusable = true}, SHIFT(2760), - [3097] = {.count = 1, .reusable = false}, SHIFT(1391), - [3099] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2385), - [3102] = {.count = 1, .reusable = false}, SHIFT(1322), - [3104] = {.count = 1, .reusable = false}, SHIFT(1321), - [3106] = {.count = 1, .reusable = false}, SHIFT(1257), - [3108] = {.count = 1, .reusable = true}, SHIFT(1364), - [3110] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1357), - [3113] = {.count = 1, .reusable = true}, SHIFT(2751), - [3115] = {.count = 1, .reusable = false}, SHIFT(1363), - [3117] = {.count = 1, .reusable = true}, SHIFT(1363), - [3119] = {.count = 1, .reusable = true}, SHIFT(2765), - [3121] = {.count = 1, .reusable = true}, SHIFT(2418), - [3123] = {.count = 1, .reusable = true}, SHIFT(2757), - [3125] = {.count = 1, .reusable = true}, SHIFT(2766), - [3127] = {.count = 1, .reusable = false}, SHIFT(2764), - [3129] = {.count = 1, .reusable = false}, SHIFT(1411), - [3131] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2426), - [3134] = {.count = 1, .reusable = false}, SHIFT(1355), - [3136] = {.count = 1, .reusable = false}, SHIFT(1354), - [3138] = {.count = 1, .reusable = false}, SHIFT(1290), - [3140] = {.count = 1, .reusable = false}, SHIFT(1385), - [3142] = {.count = 1, .reusable = false}, SHIFT(1384), - [3144] = {.count = 1, .reusable = false}, SHIFT(1323), - [3146] = {.count = 1, .reusable = false}, SHIFT(1406), - [3148] = {.count = 1, .reusable = false}, SHIFT(2418), - [3150] = {.count = 1, .reusable = false}, SHIFT(1405), - [3152] = {.count = 1, .reusable = false}, SHIFT(1356), - [3154] = {.count = 1, .reusable = false}, SHIFT(397), - [3156] = {.count = 1, .reusable = true}, SHIFT(397), - [3158] = {.count = 1, .reusable = false}, SHIFT(406), - [3160] = {.count = 1, .reusable = false}, SHIFT(1431), - [3162] = {.count = 1, .reusable = true}, SHIFT(411), - [3164] = {.count = 1, .reusable = true}, SHIFT(412), - [3166] = {.count = 1, .reusable = true}, SHIFT(413), - [3168] = {.count = 1, .reusable = true}, SHIFT(414), - [3170] = {.count = 1, .reusable = true}, SHIFT(431), - [3172] = {.count = 1, .reusable = false}, SHIFT(434), - [3174] = {.count = 1, .reusable = false}, SHIFT(1453), - [3176] = {.count = 1, .reusable = true}, SHIFT(439), + [2113] = {.count = 1, .reusable = false}, SHIFT(2539), + [2115] = {.count = 1, .reusable = false}, SHIFT(1434), + [2117] = {.count = 1, .reusable = false}, SHIFT(2543), + [2119] = {.count = 1, .reusable = true}, SHIFT(1811), + [2121] = {.count = 1, .reusable = false}, SHIFT(868), + [2123] = {.count = 1, .reusable = false}, SHIFT(435), + [2125] = {.count = 1, .reusable = true}, SHIFT(1852), + [2127] = {.count = 1, .reusable = false}, SHIFT(901), + [2129] = {.count = 1, .reusable = false}, SHIFT(436), + [2131] = {.count = 1, .reusable = true}, SHIFT(438), + [2133] = {.count = 1, .reusable = true}, SHIFT(1767), + [2135] = {.count = 1, .reusable = false}, SHIFT(830), + [2137] = {.count = 1, .reusable = true}, SHIFT(476), + [2139] = {.count = 1, .reusable = false}, SHIFT(475), + [2141] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 2), + [2143] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(427), + [2146] = {.count = 1, .reusable = true}, SHIFT(478), + [2148] = {.count = 1, .reusable = false}, SHIFT(478), + [2150] = {.count = 1, .reusable = true}, SHIFT(479), + [2152] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(402), + [2155] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(862), + [2158] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2643), + [2161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2644), + [2164] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2637), + [2167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1809), + [2170] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2597), + [2173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(435), + [2176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1810), + [2179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2646), + [2182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2647), + [2185] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(405), + [2188] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(895), + [2191] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2651), + [2194] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2652), + [2197] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2645), + [2200] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1850), + [2203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(436), + [2206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1851), + [2209] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2654), + [2212] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2655), + [2215] = {.count = 1, .reusable = true}, SHIFT(437), + [2217] = {.count = 1, .reusable = false}, SHIFT(437), + [2219] = {.count = 1, .reusable = false}, SHIFT(482), + [2221] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1437), + [2224] = {.count = 1, .reusable = true}, SHIFT(485), + [2226] = {.count = 1, .reusable = true}, SHIFT(2098), + [2228] = {.count = 1, .reusable = false}, SHIFT(1099), + [2230] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 3), + [2232] = {.count = 1, .reusable = false}, SHIFT(500), + [2234] = {.count = 1, .reusable = true}, SHIFT(500), + [2236] = {.count = 1, .reusable = true}, SHIFT(2139), + [2238] = {.count = 1, .reusable = false}, SHIFT(1132), + [2240] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1542), + [2243] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1457), + [2246] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2576), + [2249] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1458), + [2252] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(430), + [2255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(388), + [2258] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2533), + [2261] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(431), + [2264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2535), + [2267] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2539), + [2270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1434), + [2273] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1435), + [2276] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2540), + [2279] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2543), + [2282] = {.count = 1, .reusable = false}, SHIFT(416), + [2284] = {.count = 1, .reusable = false}, SHIFT(417), + [2286] = {.count = 1, .reusable = false}, SHIFT(418), + [2288] = {.count = 1, .reusable = true}, SHIFT(2221), + [2290] = {.count = 1, .reusable = false}, SHIFT(1198), + [2292] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [2294] = {.count = 1, .reusable = true}, SHIFT(509), + [2296] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .production_id = 4), + [2298] = {.count = 1, .reusable = true}, SHIFT(511), + [2300] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 4), + [2302] = {.count = 1, .reusable = false}, SHIFT(519), + [2304] = {.count = 1, .reusable = true}, SHIFT(519), + [2306] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2717), + [2309] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(488), + [2312] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2219), + [2315] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1192), + [2320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2723), + [2323] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2220), + [2326] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2726), + [2329] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2727), + [2332] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2724), + [2335] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [2337] = {.count = 1, .reusable = true}, SHIFT(523), + [2339] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .production_id = 4), + [2341] = {.count = 1, .reusable = true}, SHIFT(524), + [2343] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [2345] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .production_id = 4), + [2347] = {.count = 1, .reusable = false}, SHIFT(560), + [2349] = {.count = 1, .reusable = false}, SHIFT(563), + [2351] = {.count = 1, .reusable = true}, SHIFT(2303), + [2353] = {.count = 1, .reusable = false}, SHIFT(2795), + [2355] = {.count = 1, .reusable = true}, SHIFT(658), + [2357] = {.count = 1, .reusable = false}, SHIFT(659), + [2359] = {.count = 1, .reusable = true}, SHIFT(2797), + [2361] = {.count = 1, .reusable = false}, SHIFT(660), + [2363] = {.count = 1, .reusable = false}, SHIFT(2794), + [2365] = {.count = 1, .reusable = false}, SHIFT(657), + [2367] = {.count = 1, .reusable = false}, SHIFT(575), + [2369] = {.count = 1, .reusable = false}, SHIFT(576), + [2371] = {.count = 1, .reusable = false}, SHIFT(573), + [2373] = {.count = 1, .reusable = true}, SHIFT(574), + [2375] = {.count = 1, .reusable = false}, SHIFT(1264), + [2377] = {.count = 1, .reusable = true}, SHIFT(1258), + [2379] = {.count = 1, .reusable = true}, SHIFT(2344), + [2381] = {.count = 1, .reusable = false}, SHIFT(1297), + [2383] = {.count = 1, .reusable = true}, SHIFT(2385), + [2385] = {.count = 1, .reusable = false}, SHIFT(1330), + [2387] = {.count = 1, .reusable = true}, SHIFT(589), + [2389] = {.count = 1, .reusable = true}, SHIFT(1975), + [2391] = {.count = 1, .reusable = true}, SHIFT(2581), + [2393] = {.count = 1, .reusable = true}, SHIFT(2669), + [2395] = {.count = 1, .reusable = true}, SHIFT(565), + [2397] = {.count = 1, .reusable = true}, SHIFT(1973), + [2399] = {.count = 1, .reusable = true}, SHIFT(994), + [2401] = {.count = 1, .reusable = true}, SHIFT(2675), + [2403] = {.count = 1, .reusable = true}, SHIFT(2679), + [2405] = {.count = 1, .reusable = true}, SHIFT(566), + [2407] = {.count = 1, .reusable = true}, SHIFT(2676), + [2409] = {.count = 1, .reusable = false}, SHIFT(1000), + [2411] = {.count = 1, .reusable = true}, SHIFT(614), + [2413] = {.count = 1, .reusable = false}, SHIFT(613), + [2415] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(579), + [2418] = {.count = 1, .reusable = true}, SHIFT(616), + [2420] = {.count = 1, .reusable = false}, SHIFT(616), + [2422] = {.count = 1, .reusable = true}, SHIFT(617), + [2424] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(558), + [2427] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1291), + [2430] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2755), + [2433] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2748), + [2436] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2741), + [2439] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2342), + [2442] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2627), + [2445] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(586), + [2448] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2343), + [2451] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2758), + [2454] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2759), + [2457] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(561), + [2460] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1324), + [2463] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2763), + [2466] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2756), + [2469] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2749), + [2472] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2383), + [2475] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(587), + [2478] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2384), + [2481] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2765), + [2484] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2766), + [2487] = {.count = 1, .reusable = true}, SHIFT(588), + [2489] = {.count = 1, .reusable = false}, SHIFT(588), + [2491] = {.count = 1, .reusable = false}, SHIFT(620), + [2493] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1545), + [2496] = {.count = 1, .reusable = true}, SHIFT(623), + [2498] = {.count = 1, .reusable = false}, SHIFT(693), + [2500] = {.count = 1, .reusable = true}, SHIFT(693), + [2502] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(582), + [2505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1258), + [2508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2747), + [2511] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(583), + [2514] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2740), + [2517] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2733), + [2520] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2301), + [2523] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2302), + [2526] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2750), + [2529] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2751), + [2532] = {.count = 1, .reusable = false}, SHIFT(570), + [2534] = {.count = 1, .reusable = false}, SHIFT(571), + [2536] = {.count = 1, .reusable = true}, SHIFT(572), + [2538] = {.count = 1, .reusable = true}, SHIFT(571), + [2540] = {.count = 1, .reusable = false}, SHIFT(700), + [2542] = {.count = 1, .reusable = true}, SHIFT(700), + [2544] = {.count = 1, .reusable = false}, SHIFT(558), + [2546] = {.count = 1, .reusable = false}, SHIFT(1291), + [2548] = {.count = 1, .reusable = false}, SHIFT(2755), + [2550] = {.count = 1, .reusable = false}, SHIFT(2748), + [2552] = {.count = 1, .reusable = false}, SHIFT(2741), + [2554] = {.count = 1, .reusable = false}, SHIFT(2342), + [2556] = {.count = 1, .reusable = true}, SHIFT(2627), + [2558] = {.count = 1, .reusable = false}, SHIFT(650), + [2560] = {.count = 1, .reusable = false}, SHIFT(2343), + [2562] = {.count = 1, .reusable = false}, SHIFT(2758), + [2564] = {.count = 1, .reusable = false}, SHIFT(2759), + [2566] = {.count = 1, .reusable = false}, SHIFT(561), + [2568] = {.count = 1, .reusable = false}, SHIFT(1324), + [2570] = {.count = 1, .reusable = false}, SHIFT(2763), + [2572] = {.count = 1, .reusable = false}, SHIFT(2756), + [2574] = {.count = 1, .reusable = false}, SHIFT(2749), + [2576] = {.count = 1, .reusable = false}, SHIFT(2383), + [2578] = {.count = 1, .reusable = false}, SHIFT(651), + [2580] = {.count = 1, .reusable = false}, SHIFT(2384), + [2582] = {.count = 1, .reusable = false}, SHIFT(2765), + [2584] = {.count = 1, .reusable = false}, SHIFT(2766), + [2586] = {.count = 1, .reusable = true}, SHIFT(1535), + [2588] = {.count = 1, .reusable = false}, SHIFT(582), + [2590] = {.count = 1, .reusable = false}, SHIFT(2747), + [2592] = {.count = 1, .reusable = false}, SHIFT(583), + [2594] = {.count = 1, .reusable = false}, SHIFT(2740), + [2596] = {.count = 1, .reusable = false}, SHIFT(2733), + [2598] = {.count = 1, .reusable = false}, SHIFT(2301), + [2600] = {.count = 1, .reusable = false}, SHIFT(2751), + [2602] = {.count = 1, .reusable = false}, SHIFT(586), + [2604] = {.count = 1, .reusable = false}, SHIFT(587), + [2606] = {.count = 1, .reusable = true}, SHIFT(668), + [2608] = {.count = 1, .reusable = true}, SHIFT(685), + [2610] = {.count = 1, .reusable = false}, SHIFT(684), + [2612] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(663), + [2615] = {.count = 1, .reusable = false}, SHIFT(667), + [2617] = {.count = 1, .reusable = true}, SHIFT(667), + [2619] = {.count = 1, .reusable = false}, SHIFT(687), + [2621] = {.count = 1, .reusable = true}, SHIFT(2588), + [2623] = {.count = 1, .reusable = true}, SHIFT(1589), + [2625] = {.count = 1, .reusable = true}, SHIFT(2590), + [2627] = {.count = 1, .reusable = true}, SHIFT(2586), + [2629] = {.count = 1, .reusable = true}, SHIFT(2585), + [2631] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1591), + [2634] = {.count = 1, .reusable = false}, SHIFT(654), + [2636] = {.count = 1, .reusable = false}, SHIFT(655), + [2638] = {.count = 1, .reusable = false}, SHIFT(656), + [2640] = {.count = 1, .reusable = false}, REDUCE(sym__statements, 5), + [2642] = {.count = 1, .reusable = true}, SHIFT(719), + [2644] = {.count = 1, .reusable = true}, SHIFT(1537), + [2646] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(716), + [2649] = {.count = 1, .reusable = false}, SHIFT(718), + [2651] = {.count = 1, .reusable = true}, SHIFT(718), + [2653] = {.count = 1, .reusable = false}, SHIFT(731), + [2655] = {.count = 1, .reusable = true}, SHIFT(2598), + [2657] = {.count = 1, .reusable = true}, SHIFT(1633), + [2659] = {.count = 1, .reusable = true}, SHIFT(2600), + [2661] = {.count = 1, .reusable = true}, SHIFT(2596), + [2663] = {.count = 1, .reusable = true}, SHIFT(2595), + [2665] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1635), + [2668] = {.count = 1, .reusable = false}, SHIFT(711), + [2670] = {.count = 1, .reusable = false}, SHIFT(712), + [2672] = {.count = 1, .reusable = false}, SHIFT(713), + [2674] = {.count = 1, .reusable = true}, SHIFT(757), + [2676] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(754), + [2679] = {.count = 1, .reusable = true}, SHIFT(756), + [2681] = {.count = 1, .reusable = false}, SHIFT(756), + [2683] = {.count = 1, .reusable = false}, SHIFT(769), + [2685] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1679), + [2688] = {.count = 1, .reusable = true}, SHIFT(751), + [2690] = {.count = 1, .reusable = false}, SHIFT(752), + [2692] = {.count = 1, .reusable = true}, SHIFT(753), + [2694] = {.count = 1, .reusable = false}, SHIFT(751), + [2696] = {.count = 1, .reusable = true}, SHIFT(752), + [2698] = {.count = 1, .reusable = true}, SHIFT(795), + [2700] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(792), + [2703] = {.count = 1, .reusable = false}, SHIFT(794), + [2705] = {.count = 1, .reusable = true}, SHIFT(794), + [2707] = {.count = 1, .reusable = false}, SHIFT(807), + [2709] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1723), + [2712] = {.count = 1, .reusable = true}, SHIFT(2426), + [2714] = {.count = 1, .reusable = false}, SHIFT(1363), + [2716] = {.count = 1, .reusable = false}, SHIFT(789), + [2718] = {.count = 1, .reusable = false}, SHIFT(1721), + [2720] = {.count = 1, .reusable = false}, SHIFT(790), + [2722] = {.count = 1, .reusable = false}, SHIFT(791), + [2724] = {.count = 1, .reusable = true}, SHIFT(833), + [2726] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(830), + [2729] = {.count = 1, .reusable = false}, SHIFT(832), + [2731] = {.count = 1, .reusable = true}, SHIFT(832), + [2733] = {.count = 1, .reusable = false}, SHIFT(845), + [2735] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1767), + [2738] = {.count = 1, .reusable = true}, SHIFT(865), + [2740] = {.count = 1, .reusable = false}, SHIFT(866), + [2742] = {.count = 1, .reusable = true}, SHIFT(829), + [2744] = {.count = 1, .reusable = false}, SHIFT(865), + [2746] = {.count = 1, .reusable = true}, SHIFT(866), + [2748] = {.count = 1, .reusable = true}, SHIFT(871), + [2750] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(868), + [2753] = {.count = 1, .reusable = true}, SHIFT(2637), + [2755] = {.count = 1, .reusable = true}, SHIFT(870), + [2757] = {.count = 1, .reusable = true}, SHIFT(1809), + [2759] = {.count = 1, .reusable = true}, SHIFT(2643), + [2761] = {.count = 1, .reusable = false}, SHIFT(870), + [2763] = {.count = 1, .reusable = false}, SHIFT(880), + [2765] = {.count = 1, .reusable = true}, SHIFT(2647), + [2767] = {.count = 1, .reusable = true}, SHIFT(2644), + [2769] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1811), + [2772] = {.count = 1, .reusable = false}, SHIFT(898), + [2774] = {.count = 1, .reusable = false}, SHIFT(899), + [2776] = {.count = 1, .reusable = false}, SHIFT(867), + [2778] = {.count = 1, .reusable = true}, SHIFT(904), + [2780] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(901), + [2783] = {.count = 1, .reusable = true}, SHIFT(2645), + [2785] = {.count = 1, .reusable = true}, SHIFT(903), + [2787] = {.count = 1, .reusable = true}, SHIFT(1850), + [2789] = {.count = 1, .reusable = true}, SHIFT(2651), + [2791] = {.count = 1, .reusable = false}, SHIFT(903), + [2793] = {.count = 1, .reusable = false}, SHIFT(913), + [2795] = {.count = 1, .reusable = true}, SHIFT(2655), + [2797] = {.count = 1, .reusable = true}, SHIFT(2652), + [2799] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1852), + [2802] = {.count = 1, .reusable = false}, SHIFT(931), + [2804] = {.count = 1, .reusable = false}, SHIFT(932), + [2806] = {.count = 1, .reusable = false}, SHIFT(900), + [2808] = {.count = 1, .reusable = true}, SHIFT(937), + [2810] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(934), + [2813] = {.count = 1, .reusable = false}, SHIFT(936), + [2815] = {.count = 1, .reusable = true}, SHIFT(936), + [2817] = {.count = 1, .reusable = false}, SHIFT(946), + [2819] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1893), + [2822] = {.count = 1, .reusable = false}, SHIFT(964), + [2824] = {.count = 1, .reusable = false}, SHIFT(965), + [2826] = {.count = 1, .reusable = false}, SHIFT(933), + [2828] = {.count = 1, .reusable = false}, SHIFT(1891), + [2830] = {.count = 1, .reusable = true}, SHIFT(970), + [2832] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(967), + [2835] = {.count = 1, .reusable = false}, SHIFT(979), + [2837] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1934), + [2840] = {.count = 1, .reusable = true}, SHIFT(997), + [2842] = {.count = 1, .reusable = true}, SHIFT(998), + [2844] = {.count = 1, .reusable = false}, SHIFT(997), + [2846] = {.count = 1, .reusable = true}, SHIFT(966), + [2848] = {.count = 1, .reusable = true}, SHIFT(1003), + [2850] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1000), + [2853] = {.count = 1, .reusable = false}, SHIFT(1002), + [2855] = {.count = 1, .reusable = true}, SHIFT(1002), + [2857] = {.count = 1, .reusable = false}, SHIFT(1012), + [2859] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1975), + [2862] = {.count = 1, .reusable = false}, SHIFT(1030), + [2864] = {.count = 1, .reusable = false}, SHIFT(1031), + [2866] = {.count = 1, .reusable = false}, SHIFT(999), + [2868] = {.count = 1, .reusable = true}, SHIFT(1036), + [2870] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1033), + [2873] = {.count = 1, .reusable = false}, SHIFT(1035), + [2875] = {.count = 1, .reusable = true}, SHIFT(1035), + [2877] = {.count = 1, .reusable = false}, SHIFT(1045), + [2879] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2016), + [2882] = {.count = 1, .reusable = false}, SHIFT(1063), + [2884] = {.count = 1, .reusable = false}, SHIFT(1064), + [2886] = {.count = 1, .reusable = true}, SHIFT(1032), + [2888] = {.count = 1, .reusable = true}, SHIFT(1064), + [2890] = {.count = 1, .reusable = true}, SHIFT(1069), + [2892] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1066), + [2895] = {.count = 1, .reusable = false}, SHIFT(1068), + [2897] = {.count = 1, .reusable = true}, SHIFT(1068), + [2899] = {.count = 1, .reusable = false}, SHIFT(1078), + [2901] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2057), + [2904] = {.count = 1, .reusable = false}, SHIFT(1096), + [2906] = {.count = 1, .reusable = false}, SHIFT(1097), + [2908] = {.count = 1, .reusable = false}, SHIFT(1065), + [2910] = {.count = 1, .reusable = false}, SHIFT(2055), + [2912] = {.count = 1, .reusable = true}, SHIFT(1102), + [2914] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1099), + [2917] = {.count = 1, .reusable = true}, SHIFT(2693), + [2919] = {.count = 1, .reusable = true}, SHIFT(1101), + [2921] = {.count = 1, .reusable = true}, SHIFT(2096), + [2923] = {.count = 1, .reusable = true}, SHIFT(2699), + [2925] = {.count = 1, .reusable = false}, SHIFT(1101), + [2927] = {.count = 1, .reusable = false}, SHIFT(1111), + [2929] = {.count = 1, .reusable = false}, SHIFT(2702), + [2931] = {.count = 1, .reusable = true}, SHIFT(2703), + [2933] = {.count = 1, .reusable = true}, SHIFT(2700), + [2935] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2098), + [2938] = {.count = 1, .reusable = false}, SHIFT(1129), + [2940] = {.count = 1, .reusable = false}, SHIFT(1130), + [2942] = {.count = 1, .reusable = false}, SHIFT(2096), + [2944] = {.count = 1, .reusable = false}, SHIFT(1098), + [2946] = {.count = 1, .reusable = true}, SHIFT(1135), + [2948] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1132), + [2951] = {.count = 1, .reusable = true}, SHIFT(2701), + [2953] = {.count = 1, .reusable = true}, SHIFT(1134), + [2955] = {.count = 1, .reusable = true}, SHIFT(2137), + [2957] = {.count = 1, .reusable = true}, SHIFT(2707), + [2959] = {.count = 1, .reusable = false}, SHIFT(1134), + [2961] = {.count = 1, .reusable = false}, SHIFT(1144), + [2963] = {.count = 1, .reusable = false}, SHIFT(2710), + [2965] = {.count = 1, .reusable = true}, SHIFT(2711), + [2967] = {.count = 1, .reusable = true}, SHIFT(2708), + [2969] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2139), + [2972] = {.count = 1, .reusable = false}, SHIFT(1162), + [2974] = {.count = 1, .reusable = false}, SHIFT(1163), + [2976] = {.count = 1, .reusable = false}, SHIFT(1131), + [2978] = {.count = 1, .reusable = false}, SHIFT(2137), + [2980] = {.count = 1, .reusable = true}, SHIFT(1168), + [2982] = {.count = 2, .reusable = true}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1165), + [2985] = {.count = 1, .reusable = false}, SHIFT(1167), + [2987] = {.count = 1, .reusable = true}, SHIFT(1167), + [2989] = {.count = 1, .reusable = false}, SHIFT(1177), + [2991] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2180), + [2994] = {.count = 1, .reusable = false}, SHIFT(1195), + [2996] = {.count = 1, .reusable = true}, SHIFT(1196), + [2998] = {.count = 1, .reusable = false}, SHIFT(1196), + [3000] = {.count = 1, .reusable = true}, SHIFT(1164), + [3002] = {.count = 1, .reusable = true}, SHIFT(1201), + [3004] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1198), + [3007] = {.count = 1, .reusable = false}, SHIFT(1200), + [3009] = {.count = 1, .reusable = true}, SHIFT(1200), + [3011] = {.count = 1, .reusable = false}, SHIFT(1210), + [3013] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2221), + [3016] = {.count = 1, .reusable = false}, SHIFT(1228), + [3018] = {.count = 1, .reusable = false}, SHIFT(1229), + [3020] = {.count = 1, .reusable = false}, SHIFT(1197), + [3022] = {.count = 1, .reusable = true}, SHIFT(1234), + [3024] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1231), + [3027] = {.count = 1, .reusable = false}, SHIFT(1233), + [3029] = {.count = 1, .reusable = true}, SHIFT(1233), + [3031] = {.count = 1, .reusable = false}, SHIFT(1243), + [3033] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2262), + [3036] = {.count = 1, .reusable = true}, SHIFT(1261), + [3038] = {.count = 1, .reusable = true}, SHIFT(1262), + [3040] = {.count = 1, .reusable = false}, SHIFT(1261), + [3042] = {.count = 1, .reusable = true}, SHIFT(1230), + [3044] = {.count = 1, .reusable = true}, SHIFT(1267), + [3046] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1264), + [3049] = {.count = 1, .reusable = false}, SHIFT(1266), + [3051] = {.count = 1, .reusable = true}, SHIFT(1266), + [3053] = {.count = 1, .reusable = false}, SHIFT(1342), + [3055] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2303), + [3058] = {.count = 1, .reusable = true}, SHIFT(1195), + [3060] = {.count = 1, .reusable = true}, SHIFT(1300), + [3062] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1297), + [3065] = {.count = 1, .reusable = false}, SHIFT(1299), + [3067] = {.count = 1, .reusable = true}, SHIFT(1299), + [3069] = {.count = 1, .reusable = false}, SHIFT(1375), + [3071] = {.count = 1, .reusable = true}, SHIFT(2741), + [3073] = {.count = 1, .reusable = true}, SHIFT(2342), + [3075] = {.count = 1, .reusable = true}, SHIFT(2759), + [3077] = {.count = 1, .reusable = true}, SHIFT(2748), + [3079] = {.count = 1, .reusable = true}, SHIFT(2755), + [3081] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2344), + [3084] = {.count = 1, .reusable = true}, SHIFT(1333), + [3086] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1330), + [3089] = {.count = 1, .reusable = false}, SHIFT(1332), + [3091] = {.count = 1, .reusable = true}, SHIFT(1332), + [3093] = {.count = 1, .reusable = false}, SHIFT(1397), + [3095] = {.count = 1, .reusable = true}, SHIFT(2749), + [3097] = {.count = 1, .reusable = true}, SHIFT(2383), + [3099] = {.count = 1, .reusable = true}, SHIFT(2766), + [3101] = {.count = 1, .reusable = true}, SHIFT(2756), + [3103] = {.count = 1, .reusable = true}, SHIFT(2763), + [3105] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2385), + [3108] = {.count = 1, .reusable = false}, SHIFT(1327), + [3110] = {.count = 1, .reusable = false}, SHIFT(1328), + [3112] = {.count = 1, .reusable = false}, SHIFT(1263), + [3114] = {.count = 1, .reusable = true}, SHIFT(1366), + [3116] = {.count = 2, .reusable = false}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1363), + [3119] = {.count = 1, .reusable = false}, SHIFT(1365), + [3121] = {.count = 1, .reusable = true}, SHIFT(1365), + [3123] = {.count = 1, .reusable = false}, SHIFT(1417), + [3125] = {.count = 1, .reusable = true}, SHIFT(2757), + [3127] = {.count = 1, .reusable = true}, SHIFT(2424), + [3129] = {.count = 1, .reusable = false}, SHIFT(2771), + [3131] = {.count = 1, .reusable = true}, SHIFT(2772), + [3133] = {.count = 1, .reusable = true}, SHIFT(2764), + [3135] = {.count = 1, .reusable = true}, SHIFT(2770), + [3137] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2426), + [3140] = {.count = 1, .reusable = false}, SHIFT(1360), + [3142] = {.count = 1, .reusable = false}, SHIFT(1361), + [3144] = {.count = 1, .reusable = false}, SHIFT(1296), + [3146] = {.count = 1, .reusable = false}, SHIFT(1390), + [3148] = {.count = 1, .reusable = false}, SHIFT(1391), + [3150] = {.count = 1, .reusable = false}, SHIFT(1329), + [3152] = {.count = 1, .reusable = false}, SHIFT(1411), + [3154] = {.count = 1, .reusable = false}, SHIFT(1412), + [3156] = {.count = 1, .reusable = false}, SHIFT(1362), + [3158] = {.count = 1, .reusable = false}, SHIFT(2424), + [3160] = {.count = 1, .reusable = false}, SHIFT(399), + [3162] = {.count = 1, .reusable = true}, SHIFT(399), + [3164] = {.count = 1, .reusable = true}, SHIFT(409), + [3166] = {.count = 1, .reusable = false}, SHIFT(1445), + [3168] = {.count = 1, .reusable = false}, SHIFT(414), + [3170] = {.count = 1, .reusable = true}, SHIFT(416), + [3172] = {.count = 1, .reusable = true}, SHIFT(417), + [3174] = {.count = 1, .reusable = true}, SHIFT(418), + [3176] = {.count = 1, .reusable = true}, SHIFT(434), [3178] = {.count = 1, .reusable = true}, SHIFT(440), - [3180] = {.count = 1, .reusable = true}, SHIFT(441), - [3182] = {.count = 1, .reusable = true}, SHIFT(2547), - [3184] = {.count = 1, .reusable = true}, SHIFT(447), - [3186] = {.count = 1, .reusable = false}, SHIFT(446), - [3188] = {.count = 1, .reusable = true}, SHIFT(448), - [3190] = {.count = 1, .reusable = true}, SHIFT(449), - [3192] = {.count = 1, .reusable = false}, SHIFT(1457), - [3194] = {.count = 1, .reusable = true}, SHIFT(1457), - [3196] = {.count = 1, .reusable = true}, SHIFT(450), - [3198] = {.count = 1, .reusable = true}, SHIFT(1456), - [3200] = {.count = 1, .reusable = false}, SHIFT(1462), - [3202] = {.count = 1, .reusable = true}, SHIFT(1462), - [3204] = {.count = 1, .reusable = true}, SHIFT(451), - [3206] = {.count = 1, .reusable = true}, SHIFT(1461), - [3208] = {.count = 1, .reusable = true}, SHIFT(1463), - [3210] = {.count = 1, .reusable = false}, SHIFT(452), - [3212] = {.count = 1, .reusable = true}, SHIFT(452), - [3214] = {.count = 1, .reusable = true}, SHIFT(1087), - [3216] = {.count = 1, .reusable = false}, SHIFT(2091), - [3218] = {.count = 1, .reusable = true}, SHIFT(453), - [3220] = {.count = 1, .reusable = false}, SHIFT(455), - [3222] = {.count = 1, .reusable = true}, SHIFT(455), - [3224] = {.count = 1, .reusable = true}, SHIFT(458), - [3226] = {.count = 1, .reusable = true}, SHIFT(1469), - [3228] = {.count = 1, .reusable = true}, SHIFT(464), - [3230] = {.count = 1, .reusable = false}, SHIFT(467), - [3232] = {.count = 1, .reusable = true}, SHIFT(467), - [3234] = {.count = 1, .reusable = true}, SHIFT(1120), - [3236] = {.count = 1, .reusable = false}, SHIFT(2132), - [3238] = {.count = 1, .reusable = false}, SHIFT(478), - [3240] = {.count = 1, .reusable = true}, SHIFT(479), - [3242] = {.count = 1, .reusable = false}, SHIFT(483), - [3244] = {.count = 1, .reusable = false}, SHIFT(1479), - [3246] = {.count = 1, .reusable = true}, SHIFT(1479), - [3248] = {.count = 1, .reusable = true}, SHIFT(484), - [3250] = {.count = 1, .reusable = true}, SHIFT(1478), - [3252] = {.count = 1, .reusable = true}, SHIFT(1480), - [3254] = {.count = 1, .reusable = false}, SHIFT(1483), - [3256] = {.count = 1, .reusable = true}, SHIFT(1483), - [3258] = {.count = 1, .reusable = true}, SHIFT(485), - [3260] = {.count = 1, .reusable = true}, SHIFT(1482), - [3262] = {.count = 1, .reusable = false}, SHIFT(1484), - [3264] = {.count = 1, .reusable = true}, SHIFT(1484), - [3266] = {.count = 1, .reusable = false}, SHIFT(1488), - [3268] = {.count = 1, .reusable = true}, SHIFT(1488), - [3270] = {.count = 1, .reusable = true}, SHIFT(486), - [3272] = {.count = 1, .reusable = true}, SHIFT(1487), - [3274] = {.count = 1, .reusable = true}, SHIFT(487), - [3276] = {.count = 1, .reusable = true}, SHIFT(490), - [3278] = {.count = 1, .reusable = true}, SHIFT(1490), - [3280] = {.count = 1, .reusable = true}, SHIFT(1491), - [3282] = {.count = 1, .reusable = true}, SHIFT(491), - [3284] = {.count = 1, .reusable = true}, SHIFT(1492), - [3286] = {.count = 1, .reusable = false}, SHIFT(494), - [3288] = {.count = 1, .reusable = true}, SHIFT(495), - [3290] = {.count = 1, .reusable = true}, SHIFT(1494), - [3292] = {.count = 1, .reusable = true}, SHIFT(499), - [3294] = {.count = 1, .reusable = false}, SHIFT(499), - [3296] = {.count = 1, .reusable = true}, SHIFT(500), - [3298] = {.count = 1, .reusable = false}, SHIFT(500), - [3300] = {.count = 1, .reusable = false}, SHIFT(501), - [3302] = {.count = 1, .reusable = false}, SHIFT(502), - [3304] = {.count = 1, .reusable = false}, SHIFT(1501), - [3306] = {.count = 1, .reusable = true}, SHIFT(1501), - [3308] = {.count = 1, .reusable = true}, SHIFT(503), - [3310] = {.count = 1, .reusable = true}, SHIFT(1502), - [3312] = {.count = 1, .reusable = false}, SHIFT(1503), - [3314] = {.count = 1, .reusable = true}, SHIFT(1503), - [3316] = {.count = 1, .reusable = false}, SHIFT(1507), - [3318] = {.count = 1, .reusable = true}, SHIFT(1507), - [3320] = {.count = 1, .reusable = true}, SHIFT(504), - [3322] = {.count = 1, .reusable = true}, SHIFT(1506), - [3324] = {.count = 1, .reusable = true}, SHIFT(505), - [3326] = {.count = 1, .reusable = false}, SHIFT(1508), - [3328] = {.count = 1, .reusable = true}, SHIFT(1508), - [3330] = {.count = 1, .reusable = true}, SHIFT(506), - [3332] = {.count = 1, .reusable = true}, SHIFT(507), - [3334] = {.count = 1, .reusable = true}, SHIFT(510), - [3336] = {.count = 1, .reusable = true}, SHIFT(512), - [3338] = {.count = 1, .reusable = false}, SHIFT(513), - [3340] = {.count = 1, .reusable = true}, SHIFT(514), - [3342] = {.count = 1, .reusable = true}, SHIFT(516), - [3344] = {.count = 1, .reusable = false}, SHIFT(517), - [3346] = {.count = 1, .reusable = true}, SHIFT(517), - [3348] = {.count = 1, .reusable = false}, SHIFT(518), - [3350] = {.count = 1, .reusable = true}, SHIFT(518), - [3352] = {.count = 1, .reusable = true}, SHIFT(519), - [3354] = {.count = 1, .reusable = false}, SHIFT(1514), - [3356] = {.count = 1, .reusable = true}, SHIFT(1514), - [3358] = {.count = 1, .reusable = true}, SHIFT(520), - [3360] = {.count = 1, .reusable = false}, SHIFT(1515), - [3362] = {.count = 1, .reusable = true}, SHIFT(1515), - [3364] = {.count = 1, .reusable = true}, SHIFT(521), - [3366] = {.count = 1, .reusable = true}, SHIFT(522), - [3368] = {.count = 1, .reusable = true}, SHIFT(1516), - [3370] = {.count = 1, .reusable = true}, SHIFT(527), - [3372] = {.count = 1, .reusable = true}, SHIFT(528), - [3374] = {.count = 1, .reusable = true}, SHIFT(529), - [3376] = {.count = 1, .reusable = true}, SHIFT(530), - [3378] = {.count = 1, .reusable = true}, SHIFT(531), - [3380] = {.count = 1, .reusable = true}, SHIFT(1520), - [3382] = {.count = 1, .reusable = true}, SHIFT(533), - [3384] = {.count = 1, .reusable = true}, SHIFT(534), - [3386] = {.count = 1, .reusable = true}, SHIFT(1522), - [3388] = {.count = 1, .reusable = true}, SHIFT(1524), - [3390] = {.count = 1, .reusable = true}, SHIFT(623), - [3392] = {.count = 1, .reusable = false}, SHIFT(623), - [3394] = {.count = 1, .reusable = true}, SHIFT(630), - [3396] = {.count = 1, .reusable = false}, SHIFT(630), - [3398] = {.count = 1, .reusable = false}, SHIFT(1304), - [3400] = {.count = 1, .reusable = false}, SHIFT(1425), - [3402] = {.count = 1, .reusable = false}, SHIFT(1271), - [3404] = {.count = 1, .reusable = false}, SHIFT(551), - [3406] = {.count = 1, .reusable = true}, SHIFT(551), - [3408] = {.count = 1, .reusable = false}, SHIFT(560), - [3410] = {.count = 1, .reusable = false}, SHIFT(1539), - [3412] = {.count = 1, .reusable = true}, SHIFT(566), - [3414] = {.count = 1, .reusable = false}, SHIFT(583), - [3416] = {.count = 1, .reusable = false}, SHIFT(1551), - [3418] = {.count = 1, .reusable = true}, SHIFT(588), - [3420] = {.count = 1, .reusable = true}, SHIFT(589), - [3422] = {.count = 1, .reusable = true}, SHIFT(590), - [3424] = {.count = 1, .reusable = false}, SHIFT(1554), - [3426] = {.count = 1, .reusable = true}, SHIFT(1554), - [3428] = {.count = 1, .reusable = true}, SHIFT(594), - [3430] = {.count = 1, .reusable = true}, SHIFT(1553), - [3432] = {.count = 1, .reusable = false}, SHIFT(1559), - [3434] = {.count = 1, .reusable = true}, SHIFT(1559), - [3436] = {.count = 1, .reusable = true}, SHIFT(595), - [3438] = {.count = 1, .reusable = true}, SHIFT(1558), - [3440] = {.count = 1, .reusable = true}, SHIFT(1560), - [3442] = {.count = 1, .reusable = false}, SHIFT(596), - [3444] = {.count = 1, .reusable = true}, SHIFT(596), - [3446] = {.count = 1, .reusable = true}, SHIFT(639), - [3448] = {.count = 1, .reusable = true}, SHIFT(597), - [3450] = {.count = 1, .reusable = false}, SHIFT(599), - [3452] = {.count = 1, .reusable = true}, SHIFT(599), - [3454] = {.count = 1, .reusable = true}, SHIFT(602), - [3456] = {.count = 1, .reusable = false}, SHIFT(614), - [3458] = {.count = 1, .reusable = true}, SHIFT(615), - [3460] = {.count = 1, .reusable = false}, SHIFT(1562), - [3462] = {.count = 1, .reusable = true}, SHIFT(1562), - [3464] = {.count = 1, .reusable = true}, SHIFT(619), - [3466] = {.count = 1, .reusable = true}, SHIFT(1561), - [3468] = {.count = 1, .reusable = true}, SHIFT(1563), - [3470] = {.count = 1, .reusable = false}, SHIFT(1566), - [3472] = {.count = 1, .reusable = true}, SHIFT(1566), - [3474] = {.count = 1, .reusable = true}, SHIFT(620), - [3476] = {.count = 1, .reusable = true}, SHIFT(1565), - [3478] = {.count = 1, .reusable = false}, SHIFT(1567), - [3480] = {.count = 1, .reusable = true}, SHIFT(1567), - [3482] = {.count = 1, .reusable = false}, SHIFT(1571), - [3484] = {.count = 1, .reusable = true}, SHIFT(1571), - [3486] = {.count = 1, .reusable = true}, SHIFT(621), - [3488] = {.count = 1, .reusable = true}, SHIFT(1570), - [3490] = {.count = 1, .reusable = true}, SHIFT(622), - [3492] = {.count = 1, .reusable = false}, SHIFT(1573), - [3494] = {.count = 1, .reusable = true}, SHIFT(1573), - [3496] = {.count = 1, .reusable = true}, SHIFT(625), - [3498] = {.count = 1, .reusable = true}, SHIFT(1574), - [3500] = {.count = 1, .reusable = false}, SHIFT(1575), - [3502] = {.count = 1, .reusable = true}, SHIFT(1575), - [3504] = {.count = 1, .reusable = false}, SHIFT(1579), - [3506] = {.count = 1, .reusable = true}, SHIFT(1579), - [3508] = {.count = 1, .reusable = true}, SHIFT(626), - [3510] = {.count = 1, .reusable = true}, SHIFT(1578), - [3512] = {.count = 1, .reusable = true}, SHIFT(627), - [3514] = {.count = 1, .reusable = false}, SHIFT(1580), - [3516] = {.count = 1, .reusable = true}, SHIFT(1580), - [3518] = {.count = 1, .reusable = true}, SHIFT(628), - [3520] = {.count = 1, .reusable = true}, SHIFT(629), - [3522] = {.count = 1, .reusable = true}, SHIFT(631), - [3524] = {.count = 1, .reusable = false}, SHIFT(1581), - [3526] = {.count = 1, .reusable = true}, SHIFT(1581), - [3528] = {.count = 1, .reusable = true}, SHIFT(632), - [3530] = {.count = 1, .reusable = false}, SHIFT(1582), - [3532] = {.count = 1, .reusable = true}, SHIFT(1582), - [3534] = {.count = 1, .reusable = true}, SHIFT(633), - [3536] = {.count = 1, .reusable = true}, SHIFT(634), - [3538] = {.count = 1, .reusable = true}, SHIFT(635), - [3540] = {.count = 1, .reusable = true}, SHIFT(636), - [3542] = {.count = 1, .reusable = false}, SHIFT(646), - [3544] = {.count = 1, .reusable = false}, SHIFT(1585), - [3546] = {.count = 1, .reusable = true}, SHIFT(648), - [3548] = {.count = 1, .reusable = true}, SHIFT(649), - [3550] = {.count = 1, .reusable = true}, SHIFT(650), - [3552] = {.count = 1, .reusable = false}, SHIFT(661), - [3554] = {.count = 1, .reusable = false}, SHIFT(1596), - [3556] = {.count = 1, .reusable = true}, SHIFT(662), - [3558] = {.count = 1, .reusable = true}, SHIFT(663), - [3560] = {.count = 1, .reusable = true}, SHIFT(664), - [3562] = {.count = 1, .reusable = false}, SHIFT(1598), - [3564] = {.count = 1, .reusable = true}, SHIFT(1598), - [3566] = {.count = 1, .reusable = true}, SHIFT(668), - [3568] = {.count = 1, .reusable = true}, SHIFT(1597), - [3570] = {.count = 1, .reusable = false}, SHIFT(1603), - [3572] = {.count = 1, .reusable = true}, SHIFT(1603), - [3574] = {.count = 1, .reusable = true}, SHIFT(669), - [3576] = {.count = 1, .reusable = true}, SHIFT(1602), - [3578] = {.count = 1, .reusable = true}, SHIFT(1604), - [3580] = {.count = 1, .reusable = false}, SHIFT(670), - [3582] = {.count = 1, .reusable = true}, SHIFT(670), - [3584] = {.count = 1, .reusable = true}, SHIFT(671), - [3586] = {.count = 1, .reusable = true}, SHIFT(673), - [3588] = {.count = 1, .reusable = false}, SHIFT(681), - [3590] = {.count = 1, .reusable = false}, SHIFT(1606), + [3180] = {.count = 1, .reusable = true}, SHIFT(2553), + [3182] = {.count = 1, .reusable = true}, SHIFT(443), + [3184] = {.count = 1, .reusable = false}, SHIFT(442), + [3186] = {.count = 1, .reusable = true}, SHIFT(444), + [3188] = {.count = 1, .reusable = true}, SHIFT(450), + [3190] = {.count = 1, .reusable = true}, SHIFT(451), + [3192] = {.count = 1, .reusable = false}, SHIFT(452), + [3194] = {.count = 1, .reusable = false}, SHIFT(1461), + [3196] = {.count = 1, .reusable = true}, SHIFT(1462), + [3198] = {.count = 1, .reusable = true}, SHIFT(453), + [3200] = {.count = 1, .reusable = true}, SHIFT(1093), + [3202] = {.count = 1, .reusable = false}, SHIFT(453), + [3204] = {.count = 1, .reusable = false}, SHIFT(2097), + [3206] = {.count = 1, .reusable = true}, SHIFT(454), + [3208] = {.count = 1, .reusable = false}, SHIFT(456), + [3210] = {.count = 1, .reusable = true}, SHIFT(456), + [3212] = {.count = 1, .reusable = true}, SHIFT(459), + [3214] = {.count = 1, .reusable = true}, SHIFT(460), + [3216] = {.count = 1, .reusable = true}, SHIFT(1467), + [3218] = {.count = 1, .reusable = false}, SHIFT(1469), + [3220] = {.count = 1, .reusable = true}, SHIFT(1468), + [3222] = {.count = 1, .reusable = true}, SHIFT(1469), + [3224] = {.count = 1, .reusable = true}, SHIFT(462), + [3226] = {.count = 1, .reusable = false}, SHIFT(1471), + [3228] = {.count = 1, .reusable = true}, SHIFT(1470), + [3230] = {.count = 1, .reusable = true}, SHIFT(1471), + [3232] = {.count = 1, .reusable = true}, SHIFT(463), + [3234] = {.count = 1, .reusable = true}, SHIFT(468), + [3236] = {.count = 1, .reusable = true}, SHIFT(471), + [3238] = {.count = 1, .reusable = true}, SHIFT(1126), + [3240] = {.count = 1, .reusable = false}, SHIFT(471), + [3242] = {.count = 1, .reusable = false}, SHIFT(2138), + [3244] = {.count = 1, .reusable = true}, SHIFT(483), + [3246] = {.count = 1, .reusable = false}, SHIFT(486), + [3248] = {.count = 1, .reusable = false}, SHIFT(487), + [3250] = {.count = 1, .reusable = true}, SHIFT(489), + [3252] = {.count = 1, .reusable = true}, SHIFT(491), + [3254] = {.count = 1, .reusable = true}, SHIFT(1485), + [3256] = {.count = 1, .reusable = true}, SHIFT(1486), + [3258] = {.count = 1, .reusable = true}, SHIFT(492), + [3260] = {.count = 1, .reusable = true}, SHIFT(1487), + [3262] = {.count = 1, .reusable = false}, SHIFT(494), + [3264] = {.count = 1, .reusable = false}, SHIFT(1490), + [3266] = {.count = 1, .reusable = true}, SHIFT(1490), + [3268] = {.count = 1, .reusable = true}, SHIFT(495), + [3270] = {.count = 1, .reusable = true}, SHIFT(1489), + [3272] = {.count = 1, .reusable = false}, SHIFT(1492), + [3274] = {.count = 1, .reusable = true}, SHIFT(1492), + [3276] = {.count = 1, .reusable = true}, SHIFT(496), + [3278] = {.count = 1, .reusable = true}, SHIFT(1491), + [3280] = {.count = 1, .reusable = true}, SHIFT(1493), + [3282] = {.count = 1, .reusable = false}, SHIFT(1495), + [3284] = {.count = 1, .reusable = true}, SHIFT(1494), + [3286] = {.count = 1, .reusable = true}, SHIFT(1495), + [3288] = {.count = 1, .reusable = true}, SHIFT(497), + [3290] = {.count = 1, .reusable = true}, SHIFT(1497), + [3292] = {.count = 1, .reusable = false}, SHIFT(1497), + [3294] = {.count = 1, .reusable = true}, SHIFT(499), + [3296] = {.count = 1, .reusable = true}, SHIFT(1500), + [3298] = {.count = 1, .reusable = false}, SHIFT(503), + [3300] = {.count = 1, .reusable = true}, SHIFT(503), + [3302] = {.count = 1, .reusable = true}, SHIFT(504), + [3304] = {.count = 1, .reusable = false}, SHIFT(504), + [3306] = {.count = 1, .reusable = false}, SHIFT(505), + [3308] = {.count = 1, .reusable = false}, SHIFT(506), + [3310] = {.count = 1, .reusable = true}, SHIFT(507), + [3312] = {.count = 1, .reusable = true}, SHIFT(510), + [3314] = {.count = 1, .reusable = true}, SHIFT(512), + [3316] = {.count = 1, .reusable = false}, SHIFT(513), + [3318] = {.count = 1, .reusable = false}, SHIFT(1509), + [3320] = {.count = 1, .reusable = true}, SHIFT(1509), + [3322] = {.count = 1, .reusable = true}, SHIFT(514), + [3324] = {.count = 1, .reusable = false}, SHIFT(1510), + [3326] = {.count = 1, .reusable = true}, SHIFT(1510), + [3328] = {.count = 1, .reusable = true}, SHIFT(515), + [3330] = {.count = 1, .reusable = true}, SHIFT(1511), + [3332] = {.count = 1, .reusable = false}, SHIFT(1513), + [3334] = {.count = 1, .reusable = true}, SHIFT(1513), + [3336] = {.count = 1, .reusable = true}, SHIFT(516), + [3338] = {.count = 1, .reusable = true}, SHIFT(1512), + [3340] = {.count = 1, .reusable = true}, SHIFT(1514), + [3342] = {.count = 1, .reusable = false}, SHIFT(1514), + [3344] = {.count = 1, .reusable = true}, SHIFT(517), + [3346] = {.count = 1, .reusable = true}, SHIFT(518), + [3348] = {.count = 1, .reusable = true}, SHIFT(520), + [3350] = {.count = 1, .reusable = false}, SHIFT(521), + [3352] = {.count = 1, .reusable = true}, SHIFT(521), + [3354] = {.count = 1, .reusable = false}, SHIFT(522), + [3356] = {.count = 1, .reusable = true}, SHIFT(522), + [3358] = {.count = 1, .reusable = true}, SHIFT(1520), + [3360] = {.count = 1, .reusable = true}, SHIFT(527), + [3362] = {.count = 1, .reusable = true}, SHIFT(528), + [3364] = {.count = 1, .reusable = false}, SHIFT(1522), + [3366] = {.count = 1, .reusable = true}, SHIFT(1522), + [3368] = {.count = 1, .reusable = false}, SHIFT(1523), + [3370] = {.count = 1, .reusable = true}, SHIFT(1523), + [3372] = {.count = 1, .reusable = true}, SHIFT(529), + [3374] = {.count = 1, .reusable = true}, SHIFT(530), + [3376] = {.count = 1, .reusable = true}, SHIFT(531), + [3378] = {.count = 1, .reusable = true}, SHIFT(532), + [3380] = {.count = 1, .reusable = true}, SHIFT(533), + [3382] = {.count = 1, .reusable = true}, SHIFT(1526), + [3384] = {.count = 1, .reusable = true}, SHIFT(535), + [3386] = {.count = 1, .reusable = true}, SHIFT(536), + [3388] = {.count = 1, .reusable = true}, SHIFT(537), + [3390] = {.count = 1, .reusable = true}, SHIFT(538), + [3392] = {.count = 1, .reusable = true}, SHIFT(1528), + [3394] = {.count = 1, .reusable = true}, SHIFT(1530), + [3396] = {.count = 1, .reusable = false}, SHIFT(629), + [3398] = {.count = 1, .reusable = true}, SHIFT(629), + [3400] = {.count = 1, .reusable = false}, SHIFT(636), + [3402] = {.count = 1, .reusable = true}, SHIFT(636), + [3404] = {.count = 1, .reusable = false}, SHIFT(1309), + [3406] = {.count = 1, .reusable = false}, SHIFT(1431), + [3408] = {.count = 1, .reusable = false}, SHIFT(1276), + [3410] = {.count = 1, .reusable = true}, SHIFT(555), + [3412] = {.count = 1, .reusable = false}, SHIFT(555), + [3414] = {.count = 1, .reusable = false}, SHIFT(1548), + [3416] = {.count = 1, .reusable = false}, SHIFT(569), + [3418] = {.count = 1, .reusable = true}, SHIFT(570), + [3420] = {.count = 1, .reusable = true}, SHIFT(591), + [3422] = {.count = 1, .reusable = true}, SHIFT(597), + [3424] = {.count = 1, .reusable = false}, SHIFT(598), + [3426] = {.count = 1, .reusable = false}, SHIFT(1558), + [3428] = {.count = 1, .reusable = true}, SHIFT(1559), + [3430] = {.count = 1, .reusable = true}, SHIFT(599), + [3432] = {.count = 1, .reusable = true}, SHIFT(645), + [3434] = {.count = 1, .reusable = false}, SHIFT(599), + [3436] = {.count = 1, .reusable = true}, SHIFT(600), + [3438] = {.count = 1, .reusable = true}, SHIFT(602), + [3440] = {.count = 1, .reusable = false}, SHIFT(602), + [3442] = {.count = 1, .reusable = true}, SHIFT(605), + [3444] = {.count = 1, .reusable = true}, SHIFT(606), + [3446] = {.count = 1, .reusable = false}, SHIFT(1561), + [3448] = {.count = 1, .reusable = true}, SHIFT(1560), + [3450] = {.count = 1, .reusable = true}, SHIFT(1561), + [3452] = {.count = 1, .reusable = true}, SHIFT(607), + [3454] = {.count = 1, .reusable = false}, SHIFT(1563), + [3456] = {.count = 1, .reusable = true}, SHIFT(1562), + [3458] = {.count = 1, .reusable = true}, SHIFT(1563), + [3460] = {.count = 1, .reusable = true}, SHIFT(608), + [3462] = {.count = 1, .reusable = true}, SHIFT(621), + [3464] = {.count = 1, .reusable = false}, SHIFT(624), + [3466] = {.count = 1, .reusable = true}, SHIFT(625), + [3468] = {.count = 1, .reusable = false}, SHIFT(1569), + [3470] = {.count = 1, .reusable = true}, SHIFT(1569), + [3472] = {.count = 1, .reusable = true}, SHIFT(626), + [3474] = {.count = 1, .reusable = true}, SHIFT(1568), + [3476] = {.count = 1, .reusable = false}, SHIFT(1571), + [3478] = {.count = 1, .reusable = true}, SHIFT(1571), + [3480] = {.count = 1, .reusable = true}, SHIFT(627), + [3482] = {.count = 1, .reusable = true}, SHIFT(1570), + [3484] = {.count = 1, .reusable = true}, SHIFT(1572), + [3486] = {.count = 1, .reusable = false}, SHIFT(1574), + [3488] = {.count = 1, .reusable = true}, SHIFT(1573), + [3490] = {.count = 1, .reusable = true}, SHIFT(1574), + [3492] = {.count = 1, .reusable = true}, SHIFT(628), + [3494] = {.count = 1, .reusable = true}, SHIFT(1576), + [3496] = {.count = 1, .reusable = false}, SHIFT(1576), + [3498] = {.count = 1, .reusable = true}, SHIFT(631), + [3500] = {.count = 1, .reusable = false}, SHIFT(1579), + [3502] = {.count = 1, .reusable = true}, SHIFT(1579), + [3504] = {.count = 1, .reusable = true}, SHIFT(632), + [3506] = {.count = 1, .reusable = false}, SHIFT(1580), + [3508] = {.count = 1, .reusable = true}, SHIFT(1580), + [3510] = {.count = 1, .reusable = true}, SHIFT(633), + [3512] = {.count = 1, .reusable = true}, SHIFT(1581), + [3514] = {.count = 1, .reusable = false}, SHIFT(1583), + [3516] = {.count = 1, .reusable = true}, SHIFT(1583), + [3518] = {.count = 1, .reusable = true}, SHIFT(634), + [3520] = {.count = 1, .reusable = true}, SHIFT(1582), + [3522] = {.count = 1, .reusable = true}, SHIFT(1584), + [3524] = {.count = 1, .reusable = false}, SHIFT(1584), + [3526] = {.count = 1, .reusable = true}, SHIFT(635), + [3528] = {.count = 1, .reusable = true}, SHIFT(637), + [3530] = {.count = 1, .reusable = true}, SHIFT(638), + [3532] = {.count = 1, .reusable = false}, SHIFT(1587), + [3534] = {.count = 1, .reusable = true}, SHIFT(1587), + [3536] = {.count = 1, .reusable = false}, SHIFT(1588), + [3538] = {.count = 1, .reusable = true}, SHIFT(1588), + [3540] = {.count = 1, .reusable = true}, SHIFT(639), + [3542] = {.count = 1, .reusable = true}, SHIFT(640), + [3544] = {.count = 1, .reusable = true}, SHIFT(641), + [3546] = {.count = 1, .reusable = true}, SHIFT(642), + [3548] = {.count = 1, .reusable = false}, SHIFT(1594), + [3550] = {.count = 1, .reusable = false}, SHIFT(653), + [3552] = {.count = 1, .reusable = true}, SHIFT(654), + [3554] = {.count = 1, .reusable = true}, SHIFT(655), + [3556] = {.count = 1, .reusable = true}, SHIFT(656), + [3558] = {.count = 1, .reusable = true}, SHIFT(670), + [3560] = {.count = 1, .reusable = true}, SHIFT(671), + [3562] = {.count = 1, .reusable = false}, SHIFT(672), + [3564] = {.count = 1, .reusable = false}, SHIFT(1602), + [3566] = {.count = 1, .reusable = true}, SHIFT(1603), + [3568] = {.count = 1, .reusable = true}, SHIFT(673), + [3570] = {.count = 1, .reusable = false}, SHIFT(673), + [3572] = {.count = 1, .reusable = true}, SHIFT(674), + [3574] = {.count = 1, .reusable = true}, SHIFT(676), + [3576] = {.count = 1, .reusable = true}, SHIFT(677), + [3578] = {.count = 1, .reusable = false}, SHIFT(1605), + [3580] = {.count = 1, .reusable = true}, SHIFT(1605), + [3582] = {.count = 1, .reusable = true}, SHIFT(678), + [3584] = {.count = 1, .reusable = true}, SHIFT(1604), + [3586] = {.count = 1, .reusable = false}, SHIFT(1607), + [3588] = {.count = 1, .reusable = true}, SHIFT(1607), + [3590] = {.count = 1, .reusable = true}, SHIFT(679), [3592] = {.count = 1, .reusable = true}, SHIFT(1606), - [3594] = {.count = 1, .reusable = true}, SHIFT(683), - [3596] = {.count = 1, .reusable = true}, SHIFT(1605), - [3598] = {.count = 1, .reusable = true}, SHIFT(1607), - [3600] = {.count = 1, .reusable = false}, SHIFT(1610), - [3602] = {.count = 1, .reusable = true}, SHIFT(1610), - [3604] = {.count = 1, .reusable = true}, SHIFT(684), - [3606] = {.count = 1, .reusable = true}, SHIFT(1609), - [3608] = {.count = 1, .reusable = false}, SHIFT(1611), - [3610] = {.count = 1, .reusable = true}, SHIFT(1611), - [3612] = {.count = 1, .reusable = false}, SHIFT(1615), - [3614] = {.count = 1, .reusable = true}, SHIFT(1615), - [3616] = {.count = 1, .reusable = true}, SHIFT(685), - [3618] = {.count = 1, .reusable = true}, SHIFT(1614), - [3620] = {.count = 1, .reusable = true}, SHIFT(686), - [3622] = {.count = 1, .reusable = false}, SHIFT(1617), - [3624] = {.count = 1, .reusable = true}, SHIFT(1617), - [3626] = {.count = 1, .reusable = true}, SHIFT(689), - [3628] = {.count = 1, .reusable = true}, SHIFT(1618), - [3630] = {.count = 1, .reusable = false}, SHIFT(1619), - [3632] = {.count = 1, .reusable = true}, SHIFT(1619), - [3634] = {.count = 1, .reusable = false}, SHIFT(1623), - [3636] = {.count = 1, .reusable = true}, SHIFT(1623), - [3638] = {.count = 1, .reusable = true}, SHIFT(690), - [3640] = {.count = 1, .reusable = true}, SHIFT(1622), - [3642] = {.count = 1, .reusable = true}, SHIFT(691), - [3644] = {.count = 1, .reusable = false}, SHIFT(1624), - [3646] = {.count = 1, .reusable = true}, SHIFT(1624), - [3648] = {.count = 1, .reusable = true}, SHIFT(692), - [3650] = {.count = 1, .reusable = true}, SHIFT(693), - [3652] = {.count = 1, .reusable = true}, SHIFT(695), - [3654] = {.count = 1, .reusable = false}, SHIFT(1625), - [3656] = {.count = 1, .reusable = true}, SHIFT(1625), - [3658] = {.count = 1, .reusable = true}, SHIFT(696), - [3660] = {.count = 1, .reusable = false}, SHIFT(1626), - [3662] = {.count = 1, .reusable = true}, SHIFT(1626), - [3664] = {.count = 1, .reusable = true}, SHIFT(697), - [3666] = {.count = 1, .reusable = true}, SHIFT(698), - [3668] = {.count = 1, .reusable = true}, SHIFT(699), - [3670] = {.count = 1, .reusable = true}, SHIFT(700), - [3672] = {.count = 1, .reusable = false}, SHIFT(703), - [3674] = {.count = 1, .reusable = false}, SHIFT(1629), - [3676] = {.count = 1, .reusable = true}, SHIFT(705), - [3678] = {.count = 1, .reusable = true}, SHIFT(706), - [3680] = {.count = 1, .reusable = true}, SHIFT(707), - [3682] = {.count = 1, .reusable = false}, SHIFT(712), - [3684] = {.count = 1, .reusable = false}, SHIFT(1640), + [3594] = {.count = 1, .reusable = false}, SHIFT(688), + [3596] = {.count = 1, .reusable = true}, SHIFT(689), + [3598] = {.count = 1, .reusable = false}, SHIFT(1613), + [3600] = {.count = 1, .reusable = true}, SHIFT(1613), + [3602] = {.count = 1, .reusable = true}, SHIFT(690), + [3604] = {.count = 1, .reusable = true}, SHIFT(1612), + [3606] = {.count = 1, .reusable = false}, SHIFT(1615), + [3608] = {.count = 1, .reusable = true}, SHIFT(1615), + [3610] = {.count = 1, .reusable = true}, SHIFT(691), + [3612] = {.count = 1, .reusable = true}, SHIFT(1614), + [3614] = {.count = 1, .reusable = true}, SHIFT(1616), + [3616] = {.count = 1, .reusable = false}, SHIFT(1618), + [3618] = {.count = 1, .reusable = true}, SHIFT(1618), + [3620] = {.count = 1, .reusable = true}, SHIFT(692), + [3622] = {.count = 1, .reusable = true}, SHIFT(1617), + [3624] = {.count = 1, .reusable = true}, SHIFT(1620), + [3626] = {.count = 1, .reusable = false}, SHIFT(1620), + [3628] = {.count = 1, .reusable = true}, SHIFT(695), + [3630] = {.count = 1, .reusable = false}, SHIFT(1623), + [3632] = {.count = 1, .reusable = true}, SHIFT(1623), + [3634] = {.count = 1, .reusable = true}, SHIFT(696), + [3636] = {.count = 1, .reusable = false}, SHIFT(1624), + [3638] = {.count = 1, .reusable = true}, SHIFT(1624), + [3640] = {.count = 1, .reusable = true}, SHIFT(697), + [3642] = {.count = 1, .reusable = true}, SHIFT(1625), + [3644] = {.count = 1, .reusable = false}, SHIFT(1627), + [3646] = {.count = 1, .reusable = true}, SHIFT(1627), + [3648] = {.count = 1, .reusable = true}, SHIFT(698), + [3650] = {.count = 1, .reusable = true}, SHIFT(1626), + [3652] = {.count = 1, .reusable = true}, SHIFT(1628), + [3654] = {.count = 1, .reusable = false}, SHIFT(1628), + [3656] = {.count = 1, .reusable = true}, SHIFT(699), + [3658] = {.count = 1, .reusable = true}, SHIFT(701), + [3660] = {.count = 1, .reusable = true}, SHIFT(702), + [3662] = {.count = 1, .reusable = false}, SHIFT(1631), + [3664] = {.count = 1, .reusable = true}, SHIFT(1631), + [3666] = {.count = 1, .reusable = false}, SHIFT(1632), + [3668] = {.count = 1, .reusable = true}, SHIFT(1632), + [3670] = {.count = 1, .reusable = true}, SHIFT(703), + [3672] = {.count = 1, .reusable = true}, SHIFT(704), + [3674] = {.count = 1, .reusable = true}, SHIFT(705), + [3676] = {.count = 1, .reusable = true}, SHIFT(706), + [3678] = {.count = 1, .reusable = false}, SHIFT(1638), + [3680] = {.count = 1, .reusable = false}, SHIFT(710), + [3682] = {.count = 1, .reusable = true}, SHIFT(711), + [3684] = {.count = 1, .reusable = true}, SHIFT(712), [3686] = {.count = 1, .reusable = true}, SHIFT(713), - [3688] = {.count = 1, .reusable = true}, SHIFT(714), - [3690] = {.count = 1, .reusable = true}, SHIFT(715), - [3692] = {.count = 1, .reusable = false}, SHIFT(1642), - [3694] = {.count = 1, .reusable = true}, SHIFT(1642), - [3696] = {.count = 1, .reusable = true}, SHIFT(719), - [3698] = {.count = 1, .reusable = true}, SHIFT(1641), - [3700] = {.count = 1, .reusable = false}, SHIFT(1647), - [3702] = {.count = 1, .reusable = true}, SHIFT(1647), - [3704] = {.count = 1, .reusable = true}, SHIFT(720), - [3706] = {.count = 1, .reusable = true}, SHIFT(1646), - [3708] = {.count = 1, .reusable = true}, SHIFT(1648), - [3710] = {.count = 1, .reusable = false}, SHIFT(721), - [3712] = {.count = 1, .reusable = true}, SHIFT(721), - [3714] = {.count = 1, .reusable = true}, SHIFT(856), - [3716] = {.count = 1, .reusable = true}, SHIFT(722), - [3718] = {.count = 1, .reusable = true}, SHIFT(724), - [3720] = {.count = 1, .reusable = false}, SHIFT(725), - [3722] = {.count = 1, .reusable = false}, SHIFT(1650), + [3688] = {.count = 1, .reusable = true}, SHIFT(721), + [3690] = {.count = 1, .reusable = true}, SHIFT(722), + [3692] = {.count = 1, .reusable = false}, SHIFT(723), + [3694] = {.count = 1, .reusable = false}, SHIFT(1646), + [3696] = {.count = 1, .reusable = true}, SHIFT(1647), + [3698] = {.count = 1, .reusable = true}, SHIFT(724), + [3700] = {.count = 1, .reusable = true}, SHIFT(862), + [3702] = {.count = 1, .reusable = false}, SHIFT(724), + [3704] = {.count = 1, .reusable = true}, SHIFT(725), + [3706] = {.count = 1, .reusable = true}, SHIFT(727), + [3708] = {.count = 1, .reusable = true}, SHIFT(728), + [3710] = {.count = 1, .reusable = false}, SHIFT(1649), + [3712] = {.count = 1, .reusable = true}, SHIFT(1649), + [3714] = {.count = 1, .reusable = true}, SHIFT(729), + [3716] = {.count = 1, .reusable = true}, SHIFT(1648), + [3718] = {.count = 1, .reusable = false}, SHIFT(1651), + [3720] = {.count = 1, .reusable = true}, SHIFT(1651), + [3722] = {.count = 1, .reusable = true}, SHIFT(730), [3724] = {.count = 1, .reusable = true}, SHIFT(1650), - [3726] = {.count = 1, .reusable = true}, SHIFT(727), - [3728] = {.count = 1, .reusable = true}, SHIFT(1649), - [3730] = {.count = 1, .reusable = true}, SHIFT(1651), - [3732] = {.count = 1, .reusable = false}, SHIFT(1654), - [3734] = {.count = 1, .reusable = true}, SHIFT(1654), - [3736] = {.count = 1, .reusable = true}, SHIFT(728), - [3738] = {.count = 1, .reusable = true}, SHIFT(1653), - [3740] = {.count = 1, .reusable = false}, SHIFT(1655), - [3742] = {.count = 1, .reusable = true}, SHIFT(1655), - [3744] = {.count = 1, .reusable = false}, SHIFT(1659), - [3746] = {.count = 1, .reusable = true}, SHIFT(1659), - [3748] = {.count = 1, .reusable = true}, SHIFT(729), - [3750] = {.count = 1, .reusable = true}, SHIFT(1658), - [3752] = {.count = 1, .reusable = true}, SHIFT(730), - [3754] = {.count = 1, .reusable = false}, SHIFT(1661), - [3756] = {.count = 1, .reusable = true}, SHIFT(1661), - [3758] = {.count = 1, .reusable = true}, SHIFT(731), - [3760] = {.count = 1, .reusable = true}, SHIFT(1662), - [3762] = {.count = 1, .reusable = false}, SHIFT(1663), - [3764] = {.count = 1, .reusable = true}, SHIFT(1663), - [3766] = {.count = 1, .reusable = false}, SHIFT(1667), - [3768] = {.count = 1, .reusable = true}, SHIFT(1667), - [3770] = {.count = 1, .reusable = true}, SHIFT(732), - [3772] = {.count = 1, .reusable = true}, SHIFT(1666), - [3774] = {.count = 1, .reusable = true}, SHIFT(733), - [3776] = {.count = 1, .reusable = false}, SHIFT(1668), - [3778] = {.count = 1, .reusable = true}, SHIFT(1668), - [3780] = {.count = 1, .reusable = true}, SHIFT(734), - [3782] = {.count = 1, .reusable = true}, SHIFT(735), - [3784] = {.count = 1, .reusable = true}, SHIFT(736), - [3786] = {.count = 1, .reusable = false}, SHIFT(1669), - [3788] = {.count = 1, .reusable = true}, SHIFT(1669), - [3790] = {.count = 1, .reusable = true}, SHIFT(737), - [3792] = {.count = 1, .reusable = false}, SHIFT(1670), - [3794] = {.count = 1, .reusable = true}, SHIFT(1670), - [3796] = {.count = 1, .reusable = true}, SHIFT(738), - [3798] = {.count = 1, .reusable = true}, SHIFT(739), - [3800] = {.count = 1, .reusable = true}, SHIFT(740), - [3802] = {.count = 1, .reusable = true}, SHIFT(741), - [3804] = {.count = 1, .reusable = false}, SHIFT(743), - [3806] = {.count = 1, .reusable = false}, SHIFT(1673), - [3808] = {.count = 1, .reusable = false}, SHIFT(750), - [3810] = {.count = 1, .reusable = false}, SHIFT(1684), - [3812] = {.count = 1, .reusable = true}, SHIFT(751), - [3814] = {.count = 1, .reusable = true}, SHIFT(752), - [3816] = {.count = 1, .reusable = true}, SHIFT(753), - [3818] = {.count = 1, .reusable = false}, SHIFT(1686), - [3820] = {.count = 1, .reusable = true}, SHIFT(1686), - [3822] = {.count = 1, .reusable = true}, SHIFT(757), - [3824] = {.count = 1, .reusable = true}, SHIFT(1685), - [3826] = {.count = 1, .reusable = false}, SHIFT(1691), - [3828] = {.count = 1, .reusable = true}, SHIFT(1691), - [3830] = {.count = 1, .reusable = true}, SHIFT(758), - [3832] = {.count = 1, .reusable = true}, SHIFT(1690), - [3834] = {.count = 1, .reusable = true}, SHIFT(1692), - [3836] = {.count = 1, .reusable = false}, SHIFT(759), - [3838] = {.count = 1, .reusable = true}, SHIFT(759), - [3840] = {.count = 1, .reusable = true}, SHIFT(2785), - [3842] = {.count = 1, .reusable = true}, SHIFT(760), - [3844] = {.count = 1, .reusable = true}, SHIFT(762), - [3846] = {.count = 1, .reusable = false}, SHIFT(763), - [3848] = {.count = 1, .reusable = false}, SHIFT(1694), - [3850] = {.count = 1, .reusable = true}, SHIFT(1694), - [3852] = {.count = 1, .reusable = true}, SHIFT(765), - [3854] = {.count = 1, .reusable = true}, SHIFT(1693), - [3856] = {.count = 1, .reusable = true}, SHIFT(1695), - [3858] = {.count = 1, .reusable = false}, SHIFT(1698), - [3860] = {.count = 1, .reusable = true}, SHIFT(1698), - [3862] = {.count = 1, .reusable = true}, SHIFT(766), - [3864] = {.count = 1, .reusable = true}, SHIFT(1697), - [3866] = {.count = 1, .reusable = false}, SHIFT(1699), - [3868] = {.count = 1, .reusable = true}, SHIFT(1699), - [3870] = {.count = 1, .reusable = false}, SHIFT(1703), - [3872] = {.count = 1, .reusable = true}, SHIFT(1703), - [3874] = {.count = 1, .reusable = true}, SHIFT(767), - [3876] = {.count = 1, .reusable = true}, SHIFT(1702), - [3878] = {.count = 1, .reusable = true}, SHIFT(768), - [3880] = {.count = 1, .reusable = false}, SHIFT(1705), - [3882] = {.count = 1, .reusable = true}, SHIFT(1705), - [3884] = {.count = 1, .reusable = true}, SHIFT(769), - [3886] = {.count = 1, .reusable = true}, SHIFT(1706), - [3888] = {.count = 1, .reusable = false}, SHIFT(1707), - [3890] = {.count = 1, .reusable = true}, SHIFT(1707), - [3892] = {.count = 1, .reusable = false}, SHIFT(1711), - [3894] = {.count = 1, .reusable = true}, SHIFT(1711), - [3896] = {.count = 1, .reusable = true}, SHIFT(770), - [3898] = {.count = 1, .reusable = true}, SHIFT(1710), - [3900] = {.count = 1, .reusable = true}, SHIFT(771), - [3902] = {.count = 1, .reusable = false}, SHIFT(1712), - [3904] = {.count = 1, .reusable = true}, SHIFT(1712), - [3906] = {.count = 1, .reusable = true}, SHIFT(772), - [3908] = {.count = 1, .reusable = true}, SHIFT(773), - [3910] = {.count = 1, .reusable = true}, SHIFT(774), - [3912] = {.count = 1, .reusable = false}, SHIFT(1713), - [3914] = {.count = 1, .reusable = true}, SHIFT(1713), - [3916] = {.count = 1, .reusable = true}, SHIFT(775), - [3918] = {.count = 1, .reusable = false}, SHIFT(1714), - [3920] = {.count = 1, .reusable = true}, SHIFT(1714), - [3922] = {.count = 1, .reusable = true}, SHIFT(776), - [3924] = {.count = 1, .reusable = true}, SHIFT(777), - [3926] = {.count = 1, .reusable = true}, SHIFT(778), - [3928] = {.count = 1, .reusable = true}, SHIFT(779), - [3930] = {.count = 1, .reusable = false}, SHIFT(781), - [3932] = {.count = 1, .reusable = false}, SHIFT(1717), - [3934] = {.count = 1, .reusable = true}, SHIFT(821), - [3936] = {.count = 1, .reusable = true}, SHIFT(822), - [3938] = {.count = 1, .reusable = true}, SHIFT(785), - [3940] = {.count = 1, .reusable = false}, SHIFT(788), - [3942] = {.count = 1, .reusable = false}, SHIFT(1728), - [3944] = {.count = 1, .reusable = true}, SHIFT(789), - [3946] = {.count = 1, .reusable = true}, SHIFT(790), - [3948] = {.count = 1, .reusable = true}, SHIFT(791), - [3950] = {.count = 1, .reusable = false}, SHIFT(1730), - [3952] = {.count = 1, .reusable = true}, SHIFT(1730), - [3954] = {.count = 1, .reusable = true}, SHIFT(795), - [3956] = {.count = 1, .reusable = true}, SHIFT(1729), - [3958] = {.count = 1, .reusable = false}, SHIFT(1735), - [3960] = {.count = 1, .reusable = true}, SHIFT(1735), - [3962] = {.count = 1, .reusable = true}, SHIFT(796), - [3964] = {.count = 1, .reusable = true}, SHIFT(1734), - [3966] = {.count = 1, .reusable = true}, SHIFT(1736), - [3968] = {.count = 1, .reusable = false}, SHIFT(797), - [3970] = {.count = 1, .reusable = true}, SHIFT(797), - [3972] = {.count = 1, .reusable = true}, SHIFT(1351), - [3974] = {.count = 1, .reusable = false}, SHIFT(2419), - [3976] = {.count = 1, .reusable = true}, SHIFT(798), - [3978] = {.count = 1, .reusable = true}, SHIFT(800), - [3980] = {.count = 1, .reusable = false}, SHIFT(801), - [3982] = {.count = 1, .reusable = false}, SHIFT(1738), - [3984] = {.count = 1, .reusable = true}, SHIFT(1738), - [3986] = {.count = 1, .reusable = true}, SHIFT(803), - [3988] = {.count = 1, .reusable = true}, SHIFT(1737), - [3990] = {.count = 1, .reusable = true}, SHIFT(1739), - [3992] = {.count = 1, .reusable = false}, SHIFT(1742), - [3994] = {.count = 1, .reusable = true}, SHIFT(1742), - [3996] = {.count = 1, .reusable = true}, SHIFT(804), - [3998] = {.count = 1, .reusable = true}, SHIFT(1741), - [4000] = {.count = 1, .reusable = false}, SHIFT(1743), - [4002] = {.count = 1, .reusable = true}, SHIFT(1743), - [4004] = {.count = 1, .reusable = false}, SHIFT(1747), - [4006] = {.count = 1, .reusable = true}, SHIFT(1747), - [4008] = {.count = 1, .reusable = true}, SHIFT(805), - [4010] = {.count = 1, .reusable = true}, SHIFT(1746), - [4012] = {.count = 1, .reusable = true}, SHIFT(806), - [4014] = {.count = 1, .reusable = false}, SHIFT(1749), - [4016] = {.count = 1, .reusable = true}, SHIFT(1749), - [4018] = {.count = 1, .reusable = true}, SHIFT(807), - [4020] = {.count = 1, .reusable = true}, SHIFT(1750), - [4022] = {.count = 1, .reusable = false}, SHIFT(1751), - [4024] = {.count = 1, .reusable = true}, SHIFT(1751), - [4026] = {.count = 1, .reusable = false}, SHIFT(1755), - [4028] = {.count = 1, .reusable = true}, SHIFT(1755), - [4030] = {.count = 1, .reusable = true}, SHIFT(808), - [4032] = {.count = 1, .reusable = true}, SHIFT(1754), - [4034] = {.count = 1, .reusable = true}, SHIFT(809), - [4036] = {.count = 1, .reusable = false}, SHIFT(1756), - [4038] = {.count = 1, .reusable = true}, SHIFT(1756), - [4040] = {.count = 1, .reusable = true}, SHIFT(810), - [4042] = {.count = 1, .reusable = true}, SHIFT(811), - [4044] = {.count = 1, .reusable = true}, SHIFT(812), - [4046] = {.count = 1, .reusable = false}, SHIFT(1757), - [4048] = {.count = 1, .reusable = true}, SHIFT(1757), - [4050] = {.count = 1, .reusable = true}, SHIFT(813), - [4052] = {.count = 1, .reusable = false}, SHIFT(1758), - [4054] = {.count = 1, .reusable = true}, SHIFT(1758), - [4056] = {.count = 1, .reusable = true}, SHIFT(814), - [4058] = {.count = 1, .reusable = true}, SHIFT(815), - [4060] = {.count = 1, .reusable = true}, SHIFT(816), - [4062] = {.count = 1, .reusable = true}, SHIFT(817), - [4064] = {.count = 1, .reusable = false}, SHIFT(819), - [4066] = {.count = 1, .reusable = false}, SHIFT(1761), - [4068] = {.count = 1, .reusable = false}, SHIFT(826), - [4070] = {.count = 1, .reusable = false}, SHIFT(1772), - [4072] = {.count = 1, .reusable = true}, SHIFT(827), - [4074] = {.count = 1, .reusable = true}, SHIFT(828), - [4076] = {.count = 1, .reusable = true}, SHIFT(829), - [4078] = {.count = 1, .reusable = false}, SHIFT(1774), - [4080] = {.count = 1, .reusable = true}, SHIFT(1774), - [4082] = {.count = 1, .reusable = true}, SHIFT(833), - [4084] = {.count = 1, .reusable = true}, SHIFT(1773), - [4086] = {.count = 1, .reusable = false}, SHIFT(1779), - [4088] = {.count = 1, .reusable = true}, SHIFT(1779), - [4090] = {.count = 1, .reusable = true}, SHIFT(834), - [4092] = {.count = 1, .reusable = true}, SHIFT(1778), - [4094] = {.count = 1, .reusable = true}, SHIFT(1780), - [4096] = {.count = 1, .reusable = false}, SHIFT(835), - [4098] = {.count = 1, .reusable = true}, SHIFT(835), - [4100] = {.count = 1, .reusable = true}, SHIFT(1285), - [4102] = {.count = 1, .reusable = true}, SHIFT(836), - [4104] = {.count = 1, .reusable = true}, SHIFT(838), - [4106] = {.count = 1, .reusable = false}, SHIFT(839), - [4108] = {.count = 1, .reusable = false}, SHIFT(1782), + [3726] = {.count = 1, .reusable = false}, SHIFT(732), + [3728] = {.count = 1, .reusable = true}, SHIFT(733), + [3730] = {.count = 1, .reusable = false}, SHIFT(1657), + [3732] = {.count = 1, .reusable = true}, SHIFT(1657), + [3734] = {.count = 1, .reusable = true}, SHIFT(734), + [3736] = {.count = 1, .reusable = true}, SHIFT(1656), + [3738] = {.count = 1, .reusable = false}, SHIFT(1659), + [3740] = {.count = 1, .reusable = true}, SHIFT(1659), + [3742] = {.count = 1, .reusable = true}, SHIFT(735), + [3744] = {.count = 1, .reusable = true}, SHIFT(1658), + [3746] = {.count = 1, .reusable = true}, SHIFT(1660), + [3748] = {.count = 1, .reusable = false}, SHIFT(1662), + [3750] = {.count = 1, .reusable = true}, SHIFT(1662), + [3752] = {.count = 1, .reusable = true}, SHIFT(736), + [3754] = {.count = 1, .reusable = true}, SHIFT(1661), + [3756] = {.count = 1, .reusable = true}, SHIFT(1664), + [3758] = {.count = 1, .reusable = false}, SHIFT(1664), + [3760] = {.count = 1, .reusable = true}, SHIFT(737), + [3762] = {.count = 1, .reusable = false}, SHIFT(1667), + [3764] = {.count = 1, .reusable = true}, SHIFT(1667), + [3766] = {.count = 1, .reusable = true}, SHIFT(738), + [3768] = {.count = 1, .reusable = false}, SHIFT(1668), + [3770] = {.count = 1, .reusable = true}, SHIFT(1668), + [3772] = {.count = 1, .reusable = true}, SHIFT(739), + [3774] = {.count = 1, .reusable = true}, SHIFT(1669), + [3776] = {.count = 1, .reusable = false}, SHIFT(1671), + [3778] = {.count = 1, .reusable = true}, SHIFT(1671), + [3780] = {.count = 1, .reusable = true}, SHIFT(740), + [3782] = {.count = 1, .reusable = true}, SHIFT(1670), + [3784] = {.count = 1, .reusable = true}, SHIFT(1672), + [3786] = {.count = 1, .reusable = false}, SHIFT(1672), + [3788] = {.count = 1, .reusable = true}, SHIFT(741), + [3790] = {.count = 1, .reusable = true}, SHIFT(742), + [3792] = {.count = 1, .reusable = true}, SHIFT(743), + [3794] = {.count = 1, .reusable = false}, SHIFT(1675), + [3796] = {.count = 1, .reusable = true}, SHIFT(1675), + [3798] = {.count = 1, .reusable = false}, SHIFT(1676), + [3800] = {.count = 1, .reusable = true}, SHIFT(1676), + [3802] = {.count = 1, .reusable = true}, SHIFT(744), + [3804] = {.count = 1, .reusable = true}, SHIFT(745), + [3806] = {.count = 1, .reusable = true}, SHIFT(746), + [3808] = {.count = 1, .reusable = true}, SHIFT(747), + [3810] = {.count = 1, .reusable = false}, SHIFT(1682), + [3812] = {.count = 1, .reusable = false}, SHIFT(750), + [3814] = {.count = 1, .reusable = true}, SHIFT(759), + [3816] = {.count = 1, .reusable = true}, SHIFT(760), + [3818] = {.count = 1, .reusable = false}, SHIFT(761), + [3820] = {.count = 1, .reusable = false}, SHIFT(1690), + [3822] = {.count = 1, .reusable = true}, SHIFT(1691), + [3824] = {.count = 1, .reusable = true}, SHIFT(762), + [3826] = {.count = 1, .reusable = true}, SHIFT(2791), + [3828] = {.count = 1, .reusable = false}, SHIFT(762), + [3830] = {.count = 1, .reusable = true}, SHIFT(763), + [3832] = {.count = 1, .reusable = true}, SHIFT(765), + [3834] = {.count = 1, .reusable = true}, SHIFT(766), + [3836] = {.count = 1, .reusable = false}, SHIFT(1693), + [3838] = {.count = 1, .reusable = true}, SHIFT(1692), + [3840] = {.count = 1, .reusable = true}, SHIFT(1693), + [3842] = {.count = 1, .reusable = true}, SHIFT(767), + [3844] = {.count = 1, .reusable = false}, SHIFT(1695), + [3846] = {.count = 1, .reusable = true}, SHIFT(1694), + [3848] = {.count = 1, .reusable = true}, SHIFT(1695), + [3850] = {.count = 1, .reusable = true}, SHIFT(768), + [3852] = {.count = 1, .reusable = false}, SHIFT(770), + [3854] = {.count = 1, .reusable = true}, SHIFT(771), + [3856] = {.count = 1, .reusable = false}, SHIFT(1701), + [3858] = {.count = 1, .reusable = true}, SHIFT(1701), + [3860] = {.count = 1, .reusable = true}, SHIFT(772), + [3862] = {.count = 1, .reusable = true}, SHIFT(1700), + [3864] = {.count = 1, .reusable = false}, SHIFT(1703), + [3866] = {.count = 1, .reusable = true}, SHIFT(1703), + [3868] = {.count = 1, .reusable = true}, SHIFT(773), + [3870] = {.count = 1, .reusable = true}, SHIFT(1702), + [3872] = {.count = 1, .reusable = true}, SHIFT(1704), + [3874] = {.count = 1, .reusable = false}, SHIFT(1706), + [3876] = {.count = 1, .reusable = true}, SHIFT(1705), + [3878] = {.count = 1, .reusable = true}, SHIFT(1706), + [3880] = {.count = 1, .reusable = true}, SHIFT(774), + [3882] = {.count = 1, .reusable = true}, SHIFT(1708), + [3884] = {.count = 1, .reusable = false}, SHIFT(1708), + [3886] = {.count = 1, .reusable = true}, SHIFT(775), + [3888] = {.count = 1, .reusable = false}, SHIFT(1711), + [3890] = {.count = 1, .reusable = true}, SHIFT(1711), + [3892] = {.count = 1, .reusable = true}, SHIFT(776), + [3894] = {.count = 1, .reusable = false}, SHIFT(1712), + [3896] = {.count = 1, .reusable = true}, SHIFT(1712), + [3898] = {.count = 1, .reusable = true}, SHIFT(777), + [3900] = {.count = 1, .reusable = true}, SHIFT(1713), + [3902] = {.count = 1, .reusable = false}, SHIFT(1715), + [3904] = {.count = 1, .reusable = true}, SHIFT(1715), + [3906] = {.count = 1, .reusable = true}, SHIFT(778), + [3908] = {.count = 1, .reusable = true}, SHIFT(1714), + [3910] = {.count = 1, .reusable = true}, SHIFT(1716), + [3912] = {.count = 1, .reusable = false}, SHIFT(1716), + [3914] = {.count = 1, .reusable = true}, SHIFT(779), + [3916] = {.count = 1, .reusable = true}, SHIFT(780), + [3918] = {.count = 1, .reusable = true}, SHIFT(781), + [3920] = {.count = 1, .reusable = false}, SHIFT(1719), + [3922] = {.count = 1, .reusable = true}, SHIFT(1719), + [3924] = {.count = 1, .reusable = false}, SHIFT(1720), + [3926] = {.count = 1, .reusable = true}, SHIFT(1720), + [3928] = {.count = 1, .reusable = true}, SHIFT(782), + [3930] = {.count = 1, .reusable = true}, SHIFT(783), + [3932] = {.count = 1, .reusable = true}, SHIFT(784), + [3934] = {.count = 1, .reusable = true}, SHIFT(785), + [3936] = {.count = 1, .reusable = false}, SHIFT(1726), + [3938] = {.count = 1, .reusable = false}, SHIFT(788), + [3940] = {.count = 1, .reusable = true}, SHIFT(789), + [3942] = {.count = 1, .reusable = true}, SHIFT(790), + [3944] = {.count = 1, .reusable = true}, SHIFT(791), + [3946] = {.count = 1, .reusable = true}, SHIFT(797), + [3948] = {.count = 1, .reusable = true}, SHIFT(798), + [3950] = {.count = 1, .reusable = false}, SHIFT(799), + [3952] = {.count = 1, .reusable = false}, SHIFT(1734), + [3954] = {.count = 1, .reusable = true}, SHIFT(1735), + [3956] = {.count = 1, .reusable = true}, SHIFT(800), + [3958] = {.count = 1, .reusable = true}, SHIFT(1357), + [3960] = {.count = 1, .reusable = false}, SHIFT(800), + [3962] = {.count = 1, .reusable = false}, SHIFT(2425), + [3964] = {.count = 1, .reusable = true}, SHIFT(801), + [3966] = {.count = 1, .reusable = true}, SHIFT(803), + [3968] = {.count = 1, .reusable = true}, SHIFT(804), + [3970] = {.count = 1, .reusable = false}, SHIFT(1737), + [3972] = {.count = 1, .reusable = true}, SHIFT(1736), + [3974] = {.count = 1, .reusable = true}, SHIFT(1737), + [3976] = {.count = 1, .reusable = true}, SHIFT(805), + [3978] = {.count = 1, .reusable = false}, SHIFT(1739), + [3980] = {.count = 1, .reusable = true}, SHIFT(1738), + [3982] = {.count = 1, .reusable = true}, SHIFT(1739), + [3984] = {.count = 1, .reusable = true}, SHIFT(806), + [3986] = {.count = 1, .reusable = false}, SHIFT(808), + [3988] = {.count = 1, .reusable = true}, SHIFT(809), + [3990] = {.count = 1, .reusable = false}, SHIFT(1745), + [3992] = {.count = 1, .reusable = true}, SHIFT(1745), + [3994] = {.count = 1, .reusable = true}, SHIFT(810), + [3996] = {.count = 1, .reusable = true}, SHIFT(1744), + [3998] = {.count = 1, .reusable = false}, SHIFT(1747), + [4000] = {.count = 1, .reusable = true}, SHIFT(1747), + [4002] = {.count = 1, .reusable = true}, SHIFT(811), + [4004] = {.count = 1, .reusable = true}, SHIFT(1746), + [4006] = {.count = 1, .reusable = true}, SHIFT(1748), + [4008] = {.count = 1, .reusable = false}, SHIFT(1750), + [4010] = {.count = 1, .reusable = true}, SHIFT(1749), + [4012] = {.count = 1, .reusable = true}, SHIFT(1750), + [4014] = {.count = 1, .reusable = true}, SHIFT(812), + [4016] = {.count = 1, .reusable = true}, SHIFT(1752), + [4018] = {.count = 1, .reusable = false}, SHIFT(1752), + [4020] = {.count = 1, .reusable = true}, SHIFT(813), + [4022] = {.count = 1, .reusable = false}, SHIFT(1755), + [4024] = {.count = 1, .reusable = true}, SHIFT(1755), + [4026] = {.count = 1, .reusable = true}, SHIFT(814), + [4028] = {.count = 1, .reusable = false}, SHIFT(1756), + [4030] = {.count = 1, .reusable = true}, SHIFT(1756), + [4032] = {.count = 1, .reusable = true}, SHIFT(815), + [4034] = {.count = 1, .reusable = true}, SHIFT(1757), + [4036] = {.count = 1, .reusable = false}, SHIFT(1759), + [4038] = {.count = 1, .reusable = true}, SHIFT(1759), + [4040] = {.count = 1, .reusable = true}, SHIFT(816), + [4042] = {.count = 1, .reusable = true}, SHIFT(1758), + [4044] = {.count = 1, .reusable = true}, SHIFT(1760), + [4046] = {.count = 1, .reusable = false}, SHIFT(1760), + [4048] = {.count = 1, .reusable = true}, SHIFT(817), + [4050] = {.count = 1, .reusable = true}, SHIFT(818), + [4052] = {.count = 1, .reusable = true}, SHIFT(819), + [4054] = {.count = 1, .reusable = false}, SHIFT(1763), + [4056] = {.count = 1, .reusable = true}, SHIFT(1763), + [4058] = {.count = 1, .reusable = false}, SHIFT(1764), + [4060] = {.count = 1, .reusable = true}, SHIFT(1764), + [4062] = {.count = 1, .reusable = true}, SHIFT(820), + [4064] = {.count = 1, .reusable = true}, SHIFT(821), + [4066] = {.count = 1, .reusable = true}, SHIFT(822), + [4068] = {.count = 1, .reusable = true}, SHIFT(823), + [4070] = {.count = 1, .reusable = false}, SHIFT(1770), + [4072] = {.count = 1, .reusable = false}, SHIFT(826), + [4074] = {.count = 1, .reusable = true}, SHIFT(835), + [4076] = {.count = 1, .reusable = true}, SHIFT(836), + [4078] = {.count = 1, .reusable = false}, SHIFT(837), + [4080] = {.count = 1, .reusable = false}, SHIFT(1778), + [4082] = {.count = 1, .reusable = true}, SHIFT(1779), + [4084] = {.count = 1, .reusable = true}, SHIFT(838), + [4086] = {.count = 1, .reusable = true}, SHIFT(1291), + [4088] = {.count = 1, .reusable = false}, SHIFT(838), + [4090] = {.count = 1, .reusable = true}, SHIFT(839), + [4092] = {.count = 1, .reusable = true}, SHIFT(841), + [4094] = {.count = 1, .reusable = true}, SHIFT(842), + [4096] = {.count = 1, .reusable = false}, SHIFT(1781), + [4098] = {.count = 1, .reusable = true}, SHIFT(1781), + [4100] = {.count = 1, .reusable = true}, SHIFT(843), + [4102] = {.count = 1, .reusable = true}, SHIFT(1780), + [4104] = {.count = 1, .reusable = false}, SHIFT(1783), + [4106] = {.count = 1, .reusable = true}, SHIFT(1783), + [4108] = {.count = 1, .reusable = true}, SHIFT(844), [4110] = {.count = 1, .reusable = true}, SHIFT(1782), - [4112] = {.count = 1, .reusable = true}, SHIFT(841), - [4114] = {.count = 1, .reusable = true}, SHIFT(1781), - [4116] = {.count = 1, .reusable = true}, SHIFT(1783), - [4118] = {.count = 1, .reusable = false}, SHIFT(1786), - [4120] = {.count = 1, .reusable = true}, SHIFT(1786), - [4122] = {.count = 1, .reusable = true}, SHIFT(842), - [4124] = {.count = 1, .reusable = true}, SHIFT(1785), - [4126] = {.count = 1, .reusable = false}, SHIFT(1787), - [4128] = {.count = 1, .reusable = true}, SHIFT(1787), - [4130] = {.count = 1, .reusable = false}, SHIFT(1791), - [4132] = {.count = 1, .reusable = true}, SHIFT(1791), - [4134] = {.count = 1, .reusable = true}, SHIFT(843), - [4136] = {.count = 1, .reusable = true}, SHIFT(1790), - [4138] = {.count = 1, .reusable = true}, SHIFT(844), - [4140] = {.count = 1, .reusable = false}, SHIFT(1793), - [4142] = {.count = 1, .reusable = true}, SHIFT(1793), - [4144] = {.count = 1, .reusable = true}, SHIFT(845), - [4146] = {.count = 1, .reusable = true}, SHIFT(1794), - [4148] = {.count = 1, .reusable = false}, SHIFT(1795), - [4150] = {.count = 1, .reusable = true}, SHIFT(1795), - [4152] = {.count = 1, .reusable = false}, SHIFT(1799), - [4154] = {.count = 1, .reusable = true}, SHIFT(1799), - [4156] = {.count = 1, .reusable = true}, SHIFT(846), - [4158] = {.count = 1, .reusable = true}, SHIFT(1798), - [4160] = {.count = 1, .reusable = true}, SHIFT(847), - [4162] = {.count = 1, .reusable = false}, SHIFT(1800), - [4164] = {.count = 1, .reusable = true}, SHIFT(1800), - [4166] = {.count = 1, .reusable = true}, SHIFT(848), - [4168] = {.count = 1, .reusable = true}, SHIFT(849), - [4170] = {.count = 1, .reusable = true}, SHIFT(850), - [4172] = {.count = 1, .reusable = false}, SHIFT(1801), - [4174] = {.count = 1, .reusable = true}, SHIFT(1801), - [4176] = {.count = 1, .reusable = true}, SHIFT(851), - [4178] = {.count = 1, .reusable = false}, SHIFT(1802), - [4180] = {.count = 1, .reusable = true}, SHIFT(1802), - [4182] = {.count = 1, .reusable = true}, SHIFT(852), - [4184] = {.count = 1, .reusable = true}, SHIFT(853), - [4186] = {.count = 1, .reusable = true}, SHIFT(854), - [4188] = {.count = 1, .reusable = true}, SHIFT(855), - [4190] = {.count = 1, .reusable = false}, SHIFT(857), - [4192] = {.count = 1, .reusable = false}, SHIFT(1805), - [4194] = {.count = 1, .reusable = true}, SHIFT(892), - [4196] = {.count = 1, .reusable = true}, SHIFT(893), - [4198] = {.count = 1, .reusable = true}, SHIFT(861), - [4200] = {.count = 1, .reusable = false}, SHIFT(864), - [4202] = {.count = 1, .reusable = false}, SHIFT(1815), - [4204] = {.count = 1, .reusable = true}, SHIFT(865), - [4206] = {.count = 1, .reusable = true}, SHIFT(866), - [4208] = {.count = 1, .reusable = true}, SHIFT(867), - [4210] = {.count = 1, .reusable = false}, SHIFT(1817), - [4212] = {.count = 1, .reusable = true}, SHIFT(1817), - [4214] = {.count = 1, .reusable = true}, SHIFT(871), - [4216] = {.count = 1, .reusable = true}, SHIFT(1816), - [4218] = {.count = 1, .reusable = false}, SHIFT(1822), - [4220] = {.count = 1, .reusable = true}, SHIFT(1822), - [4222] = {.count = 1, .reusable = true}, SHIFT(872), - [4224] = {.count = 1, .reusable = true}, SHIFT(1821), - [4226] = {.count = 1, .reusable = true}, SHIFT(873), - [4228] = {.count = 1, .reusable = false}, SHIFT(874), - [4230] = {.count = 1, .reusable = false}, SHIFT(1824), + [4112] = {.count = 1, .reusable = false}, SHIFT(846), + [4114] = {.count = 1, .reusable = true}, SHIFT(847), + [4116] = {.count = 1, .reusable = false}, SHIFT(1789), + [4118] = {.count = 1, .reusable = true}, SHIFT(1789), + [4120] = {.count = 1, .reusable = true}, SHIFT(848), + [4122] = {.count = 1, .reusable = true}, SHIFT(1788), + [4124] = {.count = 1, .reusable = false}, SHIFT(1791), + [4126] = {.count = 1, .reusable = true}, SHIFT(1791), + [4128] = {.count = 1, .reusable = true}, SHIFT(849), + [4130] = {.count = 1, .reusable = true}, SHIFT(1790), + [4132] = {.count = 1, .reusable = true}, SHIFT(1792), + [4134] = {.count = 1, .reusable = false}, SHIFT(1794), + [4136] = {.count = 1, .reusable = true}, SHIFT(1794), + [4138] = {.count = 1, .reusable = true}, SHIFT(850), + [4140] = {.count = 1, .reusable = true}, SHIFT(1793), + [4142] = {.count = 1, .reusable = true}, SHIFT(1796), + [4144] = {.count = 1, .reusable = false}, SHIFT(1796), + [4146] = {.count = 1, .reusable = true}, SHIFT(851), + [4148] = {.count = 1, .reusable = false}, SHIFT(1799), + [4150] = {.count = 1, .reusable = true}, SHIFT(1799), + [4152] = {.count = 1, .reusable = true}, SHIFT(852), + [4154] = {.count = 1, .reusable = false}, SHIFT(1800), + [4156] = {.count = 1, .reusable = true}, SHIFT(1800), + [4158] = {.count = 1, .reusable = true}, SHIFT(853), + [4160] = {.count = 1, .reusable = true}, SHIFT(1801), + [4162] = {.count = 1, .reusable = false}, SHIFT(1803), + [4164] = {.count = 1, .reusable = true}, SHIFT(1803), + [4166] = {.count = 1, .reusable = true}, SHIFT(854), + [4168] = {.count = 1, .reusable = true}, SHIFT(1802), + [4170] = {.count = 1, .reusable = true}, SHIFT(1804), + [4172] = {.count = 1, .reusable = false}, SHIFT(1804), + [4174] = {.count = 1, .reusable = true}, SHIFT(855), + [4176] = {.count = 1, .reusable = true}, SHIFT(856), + [4178] = {.count = 1, .reusable = true}, SHIFT(857), + [4180] = {.count = 1, .reusable = false}, SHIFT(1807), + [4182] = {.count = 1, .reusable = true}, SHIFT(1807), + [4184] = {.count = 1, .reusable = false}, SHIFT(1808), + [4186] = {.count = 1, .reusable = true}, SHIFT(1808), + [4188] = {.count = 1, .reusable = true}, SHIFT(858), + [4190] = {.count = 1, .reusable = true}, SHIFT(859), + [4192] = {.count = 1, .reusable = true}, SHIFT(860), + [4194] = {.count = 1, .reusable = true}, SHIFT(861), + [4196] = {.count = 1, .reusable = false}, SHIFT(1814), + [4198] = {.count = 1, .reusable = false}, SHIFT(864), + [4200] = {.count = 1, .reusable = true}, SHIFT(898), + [4202] = {.count = 1, .reusable = true}, SHIFT(899), + [4204] = {.count = 1, .reusable = true}, SHIFT(867), + [4206] = {.count = 1, .reusable = true}, SHIFT(873), + [4208] = {.count = 1, .reusable = true}, SHIFT(874), + [4210] = {.count = 1, .reusable = false}, SHIFT(875), + [4212] = {.count = 1, .reusable = false}, SHIFT(1821), + [4214] = {.count = 1, .reusable = true}, SHIFT(876), + [4216] = {.count = 1, .reusable = true}, SHIFT(877), + [4218] = {.count = 1, .reusable = false}, SHIFT(1823), + [4220] = {.count = 1, .reusable = true}, SHIFT(1823), + [4222] = {.count = 1, .reusable = true}, SHIFT(878), + [4224] = {.count = 1, .reusable = true}, SHIFT(1822), + [4226] = {.count = 1, .reusable = false}, SHIFT(1825), + [4228] = {.count = 1, .reusable = true}, SHIFT(1825), + [4230] = {.count = 1, .reusable = true}, SHIFT(879), [4232] = {.count = 1, .reusable = true}, SHIFT(1824), - [4234] = {.count = 1, .reusable = true}, SHIFT(876), - [4236] = {.count = 1, .reusable = true}, SHIFT(1823), - [4238] = {.count = 1, .reusable = true}, SHIFT(1825), - [4240] = {.count = 1, .reusable = false}, SHIFT(1828), - [4242] = {.count = 1, .reusable = true}, SHIFT(1828), - [4244] = {.count = 1, .reusable = true}, SHIFT(877), - [4246] = {.count = 1, .reusable = true}, SHIFT(1827), - [4248] = {.count = 1, .reusable = false}, SHIFT(1829), - [4250] = {.count = 1, .reusable = true}, SHIFT(1829), - [4252] = {.count = 1, .reusable = false}, SHIFT(1833), - [4254] = {.count = 1, .reusable = true}, SHIFT(1833), - [4256] = {.count = 1, .reusable = true}, SHIFT(878), - [4258] = {.count = 1, .reusable = true}, SHIFT(1832), - [4260] = {.count = 1, .reusable = false}, SHIFT(1834), - [4262] = {.count = 1, .reusable = true}, SHIFT(1834), - [4264] = {.count = 1, .reusable = true}, SHIFT(879), - [4266] = {.count = 1, .reusable = true}, SHIFT(1835), - [4268] = {.count = 1, .reusable = false}, SHIFT(1836), - [4270] = {.count = 1, .reusable = true}, SHIFT(1836), - [4272] = {.count = 1, .reusable = false}, SHIFT(1840), - [4274] = {.count = 1, .reusable = true}, SHIFT(1840), - [4276] = {.count = 1, .reusable = true}, SHIFT(880), - [4278] = {.count = 1, .reusable = true}, SHIFT(1839), - [4280] = {.count = 1, .reusable = true}, SHIFT(881), - [4282] = {.count = 1, .reusable = false}, SHIFT(1841), - [4284] = {.count = 1, .reusable = true}, SHIFT(1841), - [4286] = {.count = 1, .reusable = true}, SHIFT(882), - [4288] = {.count = 1, .reusable = true}, SHIFT(883), - [4290] = {.count = 1, .reusable = false}, SHIFT(1842), - [4292] = {.count = 1, .reusable = true}, SHIFT(1842), - [4294] = {.count = 1, .reusable = true}, SHIFT(884), - [4296] = {.count = 1, .reusable = false}, SHIFT(1843), - [4298] = {.count = 1, .reusable = true}, SHIFT(1843), - [4300] = {.count = 1, .reusable = true}, SHIFT(885), - [4302] = {.count = 1, .reusable = true}, SHIFT(886), - [4304] = {.count = 1, .reusable = true}, SHIFT(887), - [4306] = {.count = 1, .reusable = true}, SHIFT(888), - [4308] = {.count = 1, .reusable = false}, SHIFT(890), - [4310] = {.count = 1, .reusable = false}, SHIFT(1846), - [4312] = {.count = 1, .reusable = true}, SHIFT(925), - [4314] = {.count = 1, .reusable = true}, SHIFT(926), - [4316] = {.count = 1, .reusable = true}, SHIFT(894), - [4318] = {.count = 1, .reusable = false}, SHIFT(897), - [4320] = {.count = 1, .reusable = false}, SHIFT(1856), - [4322] = {.count = 1, .reusable = true}, SHIFT(898), - [4324] = {.count = 1, .reusable = true}, SHIFT(899), - [4326] = {.count = 1, .reusable = true}, SHIFT(900), - [4328] = {.count = 1, .reusable = false}, SHIFT(1858), - [4330] = {.count = 1, .reusable = true}, SHIFT(1858), - [4332] = {.count = 1, .reusable = true}, SHIFT(904), - [4334] = {.count = 1, .reusable = true}, SHIFT(1857), - [4336] = {.count = 1, .reusable = false}, SHIFT(1863), + [4234] = {.count = 1, .reusable = false}, SHIFT(881), + [4236] = {.count = 1, .reusable = false}, SHIFT(1830), + [4238] = {.count = 1, .reusable = true}, SHIFT(1830), + [4240] = {.count = 1, .reusable = true}, SHIFT(882), + [4242] = {.count = 1, .reusable = true}, SHIFT(1829), + [4244] = {.count = 1, .reusable = false}, SHIFT(1832), + [4246] = {.count = 1, .reusable = true}, SHIFT(1832), + [4248] = {.count = 1, .reusable = true}, SHIFT(883), + [4250] = {.count = 1, .reusable = true}, SHIFT(1831), + [4252] = {.count = 1, .reusable = true}, SHIFT(1833), + [4254] = {.count = 1, .reusable = false}, SHIFT(1835), + [4256] = {.count = 1, .reusable = true}, SHIFT(1835), + [4258] = {.count = 1, .reusable = true}, SHIFT(884), + [4260] = {.count = 1, .reusable = true}, SHIFT(1834), + [4262] = {.count = 1, .reusable = true}, SHIFT(1837), + [4264] = {.count = 1, .reusable = false}, SHIFT(1837), + [4266] = {.count = 1, .reusable = false}, SHIFT(1840), + [4268] = {.count = 1, .reusable = true}, SHIFT(1840), + [4270] = {.count = 1, .reusable = true}, SHIFT(885), + [4272] = {.count = 1, .reusable = false}, SHIFT(1841), + [4274] = {.count = 1, .reusable = true}, SHIFT(1841), + [4276] = {.count = 1, .reusable = true}, SHIFT(886), + [4278] = {.count = 1, .reusable = true}, SHIFT(1842), + [4280] = {.count = 1, .reusable = false}, SHIFT(1844), + [4282] = {.count = 1, .reusable = true}, SHIFT(1844), + [4284] = {.count = 1, .reusable = true}, SHIFT(887), + [4286] = {.count = 1, .reusable = true}, SHIFT(1843), + [4288] = {.count = 1, .reusable = true}, SHIFT(1845), + [4290] = {.count = 1, .reusable = false}, SHIFT(1845), + [4292] = {.count = 1, .reusable = true}, SHIFT(888), + [4294] = {.count = 1, .reusable = true}, SHIFT(889), + [4296] = {.count = 1, .reusable = true}, SHIFT(890), + [4298] = {.count = 1, .reusable = false}, SHIFT(1848), + [4300] = {.count = 1, .reusable = true}, SHIFT(1848), + [4302] = {.count = 1, .reusable = false}, SHIFT(1849), + [4304] = {.count = 1, .reusable = true}, SHIFT(1849), + [4306] = {.count = 1, .reusable = true}, SHIFT(891), + [4308] = {.count = 1, .reusable = true}, SHIFT(892), + [4310] = {.count = 1, .reusable = true}, SHIFT(893), + [4312] = {.count = 1, .reusable = true}, SHIFT(894), + [4314] = {.count = 1, .reusable = false}, SHIFT(1855), + [4316] = {.count = 1, .reusable = false}, SHIFT(897), + [4318] = {.count = 1, .reusable = true}, SHIFT(931), + [4320] = {.count = 1, .reusable = true}, SHIFT(932), + [4322] = {.count = 1, .reusable = true}, SHIFT(900), + [4324] = {.count = 1, .reusable = true}, SHIFT(906), + [4326] = {.count = 1, .reusable = true}, SHIFT(907), + [4328] = {.count = 1, .reusable = false}, SHIFT(908), + [4330] = {.count = 1, .reusable = false}, SHIFT(1862), + [4332] = {.count = 1, .reusable = true}, SHIFT(909), + [4334] = {.count = 1, .reusable = true}, SHIFT(910), + [4336] = {.count = 1, .reusable = false}, SHIFT(1864), [4338] = {.count = 1, .reusable = true}, SHIFT(1863), - [4340] = {.count = 1, .reusable = true}, SHIFT(905), - [4342] = {.count = 1, .reusable = true}, SHIFT(1862), - [4344] = {.count = 1, .reusable = true}, SHIFT(906), - [4346] = {.count = 1, .reusable = false}, SHIFT(907), - [4348] = {.count = 1, .reusable = false}, SHIFT(1865), - [4350] = {.count = 1, .reusable = true}, SHIFT(1865), - [4352] = {.count = 1, .reusable = true}, SHIFT(909), - [4354] = {.count = 1, .reusable = true}, SHIFT(1864), - [4356] = {.count = 1, .reusable = true}, SHIFT(1866), - [4358] = {.count = 1, .reusable = false}, SHIFT(1869), - [4360] = {.count = 1, .reusable = true}, SHIFT(1869), - [4362] = {.count = 1, .reusable = true}, SHIFT(910), - [4364] = {.count = 1, .reusable = true}, SHIFT(1868), - [4366] = {.count = 1, .reusable = false}, SHIFT(1870), - [4368] = {.count = 1, .reusable = true}, SHIFT(1870), - [4370] = {.count = 1, .reusable = false}, SHIFT(1874), - [4372] = {.count = 1, .reusable = true}, SHIFT(1874), - [4374] = {.count = 1, .reusable = true}, SHIFT(911), - [4376] = {.count = 1, .reusable = true}, SHIFT(1873), - [4378] = {.count = 1, .reusable = false}, SHIFT(1875), - [4380] = {.count = 1, .reusable = true}, SHIFT(1875), - [4382] = {.count = 1, .reusable = true}, SHIFT(912), - [4384] = {.count = 1, .reusable = true}, SHIFT(1876), - [4386] = {.count = 1, .reusable = false}, SHIFT(1877), - [4388] = {.count = 1, .reusable = true}, SHIFT(1877), - [4390] = {.count = 1, .reusable = false}, SHIFT(1881), - [4392] = {.count = 1, .reusable = true}, SHIFT(1881), - [4394] = {.count = 1, .reusable = true}, SHIFT(913), - [4396] = {.count = 1, .reusable = true}, SHIFT(1880), - [4398] = {.count = 1, .reusable = true}, SHIFT(914), - [4400] = {.count = 1, .reusable = false}, SHIFT(1882), - [4402] = {.count = 1, .reusable = true}, SHIFT(1882), - [4404] = {.count = 1, .reusable = true}, SHIFT(915), - [4406] = {.count = 1, .reusable = true}, SHIFT(916), - [4408] = {.count = 1, .reusable = false}, SHIFT(1883), - [4410] = {.count = 1, .reusable = true}, SHIFT(1883), - [4412] = {.count = 1, .reusable = true}, SHIFT(917), - [4414] = {.count = 1, .reusable = false}, SHIFT(1884), - [4416] = {.count = 1, .reusable = true}, SHIFT(1884), - [4418] = {.count = 1, .reusable = true}, SHIFT(918), - [4420] = {.count = 1, .reusable = true}, SHIFT(919), - [4422] = {.count = 1, .reusable = true}, SHIFT(920), - [4424] = {.count = 1, .reusable = true}, SHIFT(921), - [4426] = {.count = 1, .reusable = false}, SHIFT(923), - [4428] = {.count = 1, .reusable = false}, SHIFT(1887), - [4430] = {.count = 1, .reusable = true}, SHIFT(959), - [4432] = {.count = 1, .reusable = false}, SHIFT(930), - [4434] = {.count = 1, .reusable = false}, SHIFT(1897), - [4436] = {.count = 1, .reusable = true}, SHIFT(931), - [4438] = {.count = 1, .reusable = true}, SHIFT(932), + [4340] = {.count = 1, .reusable = true}, SHIFT(1864), + [4342] = {.count = 1, .reusable = true}, SHIFT(911), + [4344] = {.count = 1, .reusable = false}, SHIFT(1866), + [4346] = {.count = 1, .reusable = true}, SHIFT(1865), + [4348] = {.count = 1, .reusable = true}, SHIFT(1866), + [4350] = {.count = 1, .reusable = true}, SHIFT(912), + [4352] = {.count = 1, .reusable = false}, SHIFT(914), + [4354] = {.count = 1, .reusable = false}, SHIFT(1871), + [4356] = {.count = 1, .reusable = true}, SHIFT(1871), + [4358] = {.count = 1, .reusable = true}, SHIFT(915), + [4360] = {.count = 1, .reusable = true}, SHIFT(1870), + [4362] = {.count = 1, .reusable = false}, SHIFT(1873), + [4364] = {.count = 1, .reusable = true}, SHIFT(1873), + [4366] = {.count = 1, .reusable = true}, SHIFT(916), + [4368] = {.count = 1, .reusable = true}, SHIFT(1872), + [4370] = {.count = 1, .reusable = true}, SHIFT(1874), + [4372] = {.count = 1, .reusable = false}, SHIFT(1876), + [4374] = {.count = 1, .reusable = true}, SHIFT(1875), + [4376] = {.count = 1, .reusable = true}, SHIFT(1876), + [4378] = {.count = 1, .reusable = true}, SHIFT(917), + [4380] = {.count = 1, .reusable = true}, SHIFT(1878), + [4382] = {.count = 1, .reusable = false}, SHIFT(1878), + [4384] = {.count = 1, .reusable = false}, SHIFT(1881), + [4386] = {.count = 1, .reusable = true}, SHIFT(1881), + [4388] = {.count = 1, .reusable = true}, SHIFT(918), + [4390] = {.count = 1, .reusable = false}, SHIFT(1882), + [4392] = {.count = 1, .reusable = true}, SHIFT(1882), + [4394] = {.count = 1, .reusable = true}, SHIFT(919), + [4396] = {.count = 1, .reusable = true}, SHIFT(1883), + [4398] = {.count = 1, .reusable = false}, SHIFT(1885), + [4400] = {.count = 1, .reusable = true}, SHIFT(1885), + [4402] = {.count = 1, .reusable = true}, SHIFT(920), + [4404] = {.count = 1, .reusable = true}, SHIFT(1884), + [4406] = {.count = 1, .reusable = true}, SHIFT(1886), + [4408] = {.count = 1, .reusable = false}, SHIFT(1886), + [4410] = {.count = 1, .reusable = true}, SHIFT(921), + [4412] = {.count = 1, .reusable = true}, SHIFT(922), + [4414] = {.count = 1, .reusable = true}, SHIFT(923), + [4416] = {.count = 1, .reusable = false}, SHIFT(1889), + [4418] = {.count = 1, .reusable = true}, SHIFT(1889), + [4420] = {.count = 1, .reusable = false}, SHIFT(1890), + [4422] = {.count = 1, .reusable = true}, SHIFT(1890), + [4424] = {.count = 1, .reusable = true}, SHIFT(924), + [4426] = {.count = 1, .reusable = true}, SHIFT(925), + [4428] = {.count = 1, .reusable = true}, SHIFT(926), + [4430] = {.count = 1, .reusable = true}, SHIFT(927), + [4432] = {.count = 1, .reusable = false}, SHIFT(1896), + [4434] = {.count = 1, .reusable = false}, SHIFT(930), + [4436] = {.count = 1, .reusable = true}, SHIFT(964), + [4438] = {.count = 1, .reusable = true}, SHIFT(965), [4440] = {.count = 1, .reusable = true}, SHIFT(933), - [4442] = {.count = 1, .reusable = false}, SHIFT(1899), - [4444] = {.count = 1, .reusable = true}, SHIFT(1899), - [4446] = {.count = 1, .reusable = true}, SHIFT(937), - [4448] = {.count = 1, .reusable = true}, SHIFT(1898), - [4450] = {.count = 1, .reusable = false}, SHIFT(1904), - [4452] = {.count = 1, .reusable = true}, SHIFT(1904), - [4454] = {.count = 1, .reusable = true}, SHIFT(938), - [4456] = {.count = 1, .reusable = true}, SHIFT(1903), - [4458] = {.count = 1, .reusable = true}, SHIFT(939), - [4460] = {.count = 1, .reusable = false}, SHIFT(940), - [4462] = {.count = 1, .reusable = false}, SHIFT(1906), + [4442] = {.count = 1, .reusable = true}, SHIFT(939), + [4444] = {.count = 1, .reusable = true}, SHIFT(940), + [4446] = {.count = 1, .reusable = false}, SHIFT(941), + [4448] = {.count = 1, .reusable = false}, SHIFT(1903), + [4450] = {.count = 1, .reusable = true}, SHIFT(942), + [4452] = {.count = 1, .reusable = true}, SHIFT(943), + [4454] = {.count = 1, .reusable = false}, SHIFT(1905), + [4456] = {.count = 1, .reusable = true}, SHIFT(1904), + [4458] = {.count = 1, .reusable = true}, SHIFT(1905), + [4460] = {.count = 1, .reusable = true}, SHIFT(944), + [4462] = {.count = 1, .reusable = false}, SHIFT(1907), [4464] = {.count = 1, .reusable = true}, SHIFT(1906), - [4466] = {.count = 1, .reusable = true}, SHIFT(942), - [4468] = {.count = 1, .reusable = true}, SHIFT(1905), - [4470] = {.count = 1, .reusable = true}, SHIFT(1907), - [4472] = {.count = 1, .reusable = false}, SHIFT(1910), - [4474] = {.count = 1, .reusable = true}, SHIFT(1910), - [4476] = {.count = 1, .reusable = true}, SHIFT(943), - [4478] = {.count = 1, .reusable = true}, SHIFT(1909), - [4480] = {.count = 1, .reusable = false}, SHIFT(1911), - [4482] = {.count = 1, .reusable = true}, SHIFT(1911), - [4484] = {.count = 1, .reusable = false}, SHIFT(1915), - [4486] = {.count = 1, .reusable = true}, SHIFT(1915), - [4488] = {.count = 1, .reusable = true}, SHIFT(944), - [4490] = {.count = 1, .reusable = true}, SHIFT(1914), - [4492] = {.count = 1, .reusable = false}, SHIFT(1916), - [4494] = {.count = 1, .reusable = true}, SHIFT(1916), - [4496] = {.count = 1, .reusable = true}, SHIFT(945), - [4498] = {.count = 1, .reusable = true}, SHIFT(1917), - [4500] = {.count = 1, .reusable = false}, SHIFT(1918), - [4502] = {.count = 1, .reusable = true}, SHIFT(1918), - [4504] = {.count = 1, .reusable = false}, SHIFT(1922), - [4506] = {.count = 1, .reusable = true}, SHIFT(1922), - [4508] = {.count = 1, .reusable = true}, SHIFT(946), - [4510] = {.count = 1, .reusable = true}, SHIFT(1921), - [4512] = {.count = 1, .reusable = true}, SHIFT(947), - [4514] = {.count = 1, .reusable = false}, SHIFT(1923), - [4516] = {.count = 1, .reusable = true}, SHIFT(1923), - [4518] = {.count = 1, .reusable = true}, SHIFT(948), - [4520] = {.count = 1, .reusable = true}, SHIFT(949), - [4522] = {.count = 1, .reusable = false}, SHIFT(1924), - [4524] = {.count = 1, .reusable = true}, SHIFT(1924), - [4526] = {.count = 1, .reusable = true}, SHIFT(950), - [4528] = {.count = 1, .reusable = false}, SHIFT(1925), - [4530] = {.count = 1, .reusable = true}, SHIFT(1925), - [4532] = {.count = 1, .reusable = true}, SHIFT(951), - [4534] = {.count = 1, .reusable = true}, SHIFT(952), - [4536] = {.count = 1, .reusable = true}, SHIFT(953), - [4538] = {.count = 1, .reusable = true}, SHIFT(954), - [4540] = {.count = 1, .reusable = false}, SHIFT(956), - [4542] = {.count = 1, .reusable = false}, SHIFT(1928), - [4544] = {.count = 1, .reusable = true}, SHIFT(991), - [4546] = {.count = 1, .reusable = true}, SHIFT(992), + [4466] = {.count = 1, .reusable = true}, SHIFT(1907), + [4468] = {.count = 1, .reusable = true}, SHIFT(945), + [4470] = {.count = 1, .reusable = false}, SHIFT(947), + [4472] = {.count = 1, .reusable = false}, SHIFT(1912), + [4474] = {.count = 1, .reusable = true}, SHIFT(1912), + [4476] = {.count = 1, .reusable = true}, SHIFT(948), + [4478] = {.count = 1, .reusable = true}, SHIFT(1911), + [4480] = {.count = 1, .reusable = false}, SHIFT(1914), + [4482] = {.count = 1, .reusable = true}, SHIFT(1914), + [4484] = {.count = 1, .reusable = true}, SHIFT(949), + [4486] = {.count = 1, .reusable = true}, SHIFT(1913), + [4488] = {.count = 1, .reusable = true}, SHIFT(1915), + [4490] = {.count = 1, .reusable = false}, SHIFT(1917), + [4492] = {.count = 1, .reusable = true}, SHIFT(1916), + [4494] = {.count = 1, .reusable = true}, SHIFT(1917), + [4496] = {.count = 1, .reusable = true}, SHIFT(950), + [4498] = {.count = 1, .reusable = true}, SHIFT(1919), + [4500] = {.count = 1, .reusable = false}, SHIFT(1919), + [4502] = {.count = 1, .reusable = false}, SHIFT(1922), + [4504] = {.count = 1, .reusable = true}, SHIFT(1922), + [4506] = {.count = 1, .reusable = true}, SHIFT(951), + [4508] = {.count = 1, .reusable = false}, SHIFT(1923), + [4510] = {.count = 1, .reusable = true}, SHIFT(1923), + [4512] = {.count = 1, .reusable = true}, SHIFT(952), + [4514] = {.count = 1, .reusable = true}, SHIFT(1924), + [4516] = {.count = 1, .reusable = false}, SHIFT(1926), + [4518] = {.count = 1, .reusable = true}, SHIFT(1926), + [4520] = {.count = 1, .reusable = true}, SHIFT(953), + [4522] = {.count = 1, .reusable = true}, SHIFT(1925), + [4524] = {.count = 1, .reusable = true}, SHIFT(1927), + [4526] = {.count = 1, .reusable = false}, SHIFT(1927), + [4528] = {.count = 1, .reusable = true}, SHIFT(954), + [4530] = {.count = 1, .reusable = true}, SHIFT(955), + [4532] = {.count = 1, .reusable = true}, SHIFT(956), + [4534] = {.count = 1, .reusable = false}, SHIFT(1930), + [4536] = {.count = 1, .reusable = true}, SHIFT(1930), + [4538] = {.count = 1, .reusable = false}, SHIFT(1931), + [4540] = {.count = 1, .reusable = true}, SHIFT(1931), + [4542] = {.count = 1, .reusable = true}, SHIFT(957), + [4544] = {.count = 1, .reusable = true}, SHIFT(958), + [4546] = {.count = 1, .reusable = true}, SHIFT(959), [4548] = {.count = 1, .reusable = true}, SHIFT(960), - [4550] = {.count = 1, .reusable = false}, SHIFT(963), - [4552] = {.count = 1, .reusable = false}, SHIFT(1938), - [4554] = {.count = 1, .reusable = true}, SHIFT(964), - [4556] = {.count = 1, .reusable = true}, SHIFT(965), - [4558] = {.count = 1, .reusable = true}, SHIFT(966), - [4560] = {.count = 1, .reusable = false}, SHIFT(1940), - [4562] = {.count = 1, .reusable = true}, SHIFT(1940), - [4564] = {.count = 1, .reusable = true}, SHIFT(970), - [4566] = {.count = 1, .reusable = true}, SHIFT(1939), - [4568] = {.count = 1, .reusable = false}, SHIFT(1945), - [4570] = {.count = 1, .reusable = true}, SHIFT(1945), - [4572] = {.count = 1, .reusable = true}, SHIFT(971), - [4574] = {.count = 1, .reusable = true}, SHIFT(1944), - [4576] = {.count = 1, .reusable = true}, SHIFT(972), - [4578] = {.count = 1, .reusable = false}, SHIFT(973), - [4580] = {.count = 1, .reusable = false}, SHIFT(1947), - [4582] = {.count = 1, .reusable = true}, SHIFT(1947), - [4584] = {.count = 1, .reusable = true}, SHIFT(975), - [4586] = {.count = 1, .reusable = true}, SHIFT(1946), - [4588] = {.count = 1, .reusable = true}, SHIFT(1948), - [4590] = {.count = 1, .reusable = false}, SHIFT(1951), - [4592] = {.count = 1, .reusable = true}, SHIFT(1951), - [4594] = {.count = 1, .reusable = true}, SHIFT(976), - [4596] = {.count = 1, .reusable = true}, SHIFT(1950), - [4598] = {.count = 1, .reusable = false}, SHIFT(1952), - [4600] = {.count = 1, .reusable = true}, SHIFT(1952), - [4602] = {.count = 1, .reusable = false}, SHIFT(1956), - [4604] = {.count = 1, .reusable = true}, SHIFT(1956), - [4606] = {.count = 1, .reusable = true}, SHIFT(977), - [4608] = {.count = 1, .reusable = true}, SHIFT(1955), - [4610] = {.count = 1, .reusable = false}, SHIFT(1957), - [4612] = {.count = 1, .reusable = true}, SHIFT(1957), - [4614] = {.count = 1, .reusable = true}, SHIFT(978), - [4616] = {.count = 1, .reusable = true}, SHIFT(1958), - [4618] = {.count = 1, .reusable = false}, SHIFT(1959), - [4620] = {.count = 1, .reusable = true}, SHIFT(1959), - [4622] = {.count = 1, .reusable = false}, SHIFT(1963), - [4624] = {.count = 1, .reusable = true}, SHIFT(1963), - [4626] = {.count = 1, .reusable = true}, SHIFT(979), - [4628] = {.count = 1, .reusable = true}, SHIFT(1962), - [4630] = {.count = 1, .reusable = true}, SHIFT(980), - [4632] = {.count = 1, .reusable = false}, SHIFT(1964), - [4634] = {.count = 1, .reusable = true}, SHIFT(1964), - [4636] = {.count = 1, .reusable = true}, SHIFT(981), - [4638] = {.count = 1, .reusable = true}, SHIFT(982), - [4640] = {.count = 1, .reusable = false}, SHIFT(1965), - [4642] = {.count = 1, .reusable = true}, SHIFT(1965), - [4644] = {.count = 1, .reusable = true}, SHIFT(983), - [4646] = {.count = 1, .reusable = false}, SHIFT(1966), - [4648] = {.count = 1, .reusable = true}, SHIFT(1966), - [4650] = {.count = 1, .reusable = true}, SHIFT(984), - [4652] = {.count = 1, .reusable = true}, SHIFT(985), - [4654] = {.count = 1, .reusable = true}, SHIFT(986), - [4656] = {.count = 1, .reusable = true}, SHIFT(987), - [4658] = {.count = 1, .reusable = false}, SHIFT(989), - [4660] = {.count = 1, .reusable = false}, SHIFT(1969), - [4662] = {.count = 1, .reusable = false}, SHIFT(996), - [4664] = {.count = 1, .reusable = false}, SHIFT(1979), - [4666] = {.count = 1, .reusable = true}, SHIFT(997), - [4668] = {.count = 1, .reusable = true}, SHIFT(998), + [4550] = {.count = 1, .reusable = false}, SHIFT(1937), + [4552] = {.count = 1, .reusable = false}, SHIFT(963), + [4554] = {.count = 1, .reusable = true}, SHIFT(972), + [4556] = {.count = 1, .reusable = true}, SHIFT(973), + [4558] = {.count = 1, .reusable = false}, SHIFT(974), + [4560] = {.count = 1, .reusable = false}, SHIFT(1944), + [4562] = {.count = 1, .reusable = true}, SHIFT(975), + [4564] = {.count = 1, .reusable = true}, SHIFT(976), + [4566] = {.count = 1, .reusable = false}, SHIFT(1946), + [4568] = {.count = 1, .reusable = true}, SHIFT(1946), + [4570] = {.count = 1, .reusable = true}, SHIFT(977), + [4572] = {.count = 1, .reusable = true}, SHIFT(1945), + [4574] = {.count = 1, .reusable = false}, SHIFT(1948), + [4576] = {.count = 1, .reusable = true}, SHIFT(1948), + [4578] = {.count = 1, .reusable = true}, SHIFT(978), + [4580] = {.count = 1, .reusable = true}, SHIFT(1947), + [4582] = {.count = 1, .reusable = false}, SHIFT(980), + [4584] = {.count = 1, .reusable = false}, SHIFT(1953), + [4586] = {.count = 1, .reusable = true}, SHIFT(1953), + [4588] = {.count = 1, .reusable = true}, SHIFT(981), + [4590] = {.count = 1, .reusable = true}, SHIFT(1952), + [4592] = {.count = 1, .reusable = false}, SHIFT(1955), + [4594] = {.count = 1, .reusable = true}, SHIFT(1955), + [4596] = {.count = 1, .reusable = true}, SHIFT(982), + [4598] = {.count = 1, .reusable = true}, SHIFT(1954), + [4600] = {.count = 1, .reusable = true}, SHIFT(1956), + [4602] = {.count = 1, .reusable = false}, SHIFT(1958), + [4604] = {.count = 1, .reusable = true}, SHIFT(1958), + [4606] = {.count = 1, .reusable = true}, SHIFT(983), + [4608] = {.count = 1, .reusable = true}, SHIFT(1957), + [4610] = {.count = 1, .reusable = true}, SHIFT(1960), + [4612] = {.count = 1, .reusable = false}, SHIFT(1960), + [4614] = {.count = 1, .reusable = false}, SHIFT(1963), + [4616] = {.count = 1, .reusable = true}, SHIFT(1963), + [4618] = {.count = 1, .reusable = true}, SHIFT(984), + [4620] = {.count = 1, .reusable = false}, SHIFT(1964), + [4622] = {.count = 1, .reusable = true}, SHIFT(1964), + [4624] = {.count = 1, .reusable = true}, SHIFT(985), + [4626] = {.count = 1, .reusable = true}, SHIFT(1965), + [4628] = {.count = 1, .reusable = false}, SHIFT(1967), + [4630] = {.count = 1, .reusable = true}, SHIFT(1967), + [4632] = {.count = 1, .reusable = true}, SHIFT(986), + [4634] = {.count = 1, .reusable = true}, SHIFT(1966), + [4636] = {.count = 1, .reusable = true}, SHIFT(1968), + [4638] = {.count = 1, .reusable = false}, SHIFT(1968), + [4640] = {.count = 1, .reusable = true}, SHIFT(987), + [4642] = {.count = 1, .reusable = true}, SHIFT(988), + [4644] = {.count = 1, .reusable = true}, SHIFT(989), + [4646] = {.count = 1, .reusable = false}, SHIFT(1971), + [4648] = {.count = 1, .reusable = true}, SHIFT(1971), + [4650] = {.count = 1, .reusable = false}, SHIFT(1972), + [4652] = {.count = 1, .reusable = true}, SHIFT(1972), + [4654] = {.count = 1, .reusable = true}, SHIFT(990), + [4656] = {.count = 1, .reusable = true}, SHIFT(991), + [4658] = {.count = 1, .reusable = true}, SHIFT(992), + [4660] = {.count = 1, .reusable = true}, SHIFT(993), + [4662] = {.count = 1, .reusable = false}, SHIFT(1978), + [4664] = {.count = 1, .reusable = false}, SHIFT(996), + [4666] = {.count = 1, .reusable = true}, SHIFT(1030), + [4668] = {.count = 1, .reusable = true}, SHIFT(1031), [4670] = {.count = 1, .reusable = true}, SHIFT(999), - [4672] = {.count = 1, .reusable = false}, SHIFT(1981), - [4674] = {.count = 1, .reusable = true}, SHIFT(1981), - [4676] = {.count = 1, .reusable = true}, SHIFT(1003), - [4678] = {.count = 1, .reusable = true}, SHIFT(1980), - [4680] = {.count = 1, .reusable = false}, SHIFT(1986), - [4682] = {.count = 1, .reusable = true}, SHIFT(1986), - [4684] = {.count = 1, .reusable = true}, SHIFT(1004), - [4686] = {.count = 1, .reusable = true}, SHIFT(1985), - [4688] = {.count = 1, .reusable = true}, SHIFT(1005), - [4690] = {.count = 1, .reusable = false}, SHIFT(1006), - [4692] = {.count = 1, .reusable = false}, SHIFT(1988), - [4694] = {.count = 1, .reusable = true}, SHIFT(1988), - [4696] = {.count = 1, .reusable = true}, SHIFT(1008), - [4698] = {.count = 1, .reusable = true}, SHIFT(1987), - [4700] = {.count = 1, .reusable = true}, SHIFT(1989), - [4702] = {.count = 1, .reusable = false}, SHIFT(1992), - [4704] = {.count = 1, .reusable = true}, SHIFT(1992), - [4706] = {.count = 1, .reusable = true}, SHIFT(1009), - [4708] = {.count = 1, .reusable = true}, SHIFT(1991), - [4710] = {.count = 1, .reusable = false}, SHIFT(1993), - [4712] = {.count = 1, .reusable = true}, SHIFT(1993), - [4714] = {.count = 1, .reusable = false}, SHIFT(1997), - [4716] = {.count = 1, .reusable = true}, SHIFT(1997), - [4718] = {.count = 1, .reusable = true}, SHIFT(1010), - [4720] = {.count = 1, .reusable = true}, SHIFT(1996), - [4722] = {.count = 1, .reusable = false}, SHIFT(1998), - [4724] = {.count = 1, .reusable = true}, SHIFT(1998), - [4726] = {.count = 1, .reusable = true}, SHIFT(1011), - [4728] = {.count = 1, .reusable = true}, SHIFT(1999), - [4730] = {.count = 1, .reusable = false}, SHIFT(2000), - [4732] = {.count = 1, .reusable = true}, SHIFT(2000), - [4734] = {.count = 1, .reusable = false}, SHIFT(2004), - [4736] = {.count = 1, .reusable = true}, SHIFT(2004), - [4738] = {.count = 1, .reusable = true}, SHIFT(1012), - [4740] = {.count = 1, .reusable = true}, SHIFT(2003), - [4742] = {.count = 1, .reusable = true}, SHIFT(1013), - [4744] = {.count = 1, .reusable = false}, SHIFT(2005), - [4746] = {.count = 1, .reusable = true}, SHIFT(2005), - [4748] = {.count = 1, .reusable = true}, SHIFT(1014), - [4750] = {.count = 1, .reusable = true}, SHIFT(1015), - [4752] = {.count = 1, .reusable = false}, SHIFT(2006), - [4754] = {.count = 1, .reusable = true}, SHIFT(2006), - [4756] = {.count = 1, .reusable = true}, SHIFT(1016), - [4758] = {.count = 1, .reusable = false}, SHIFT(2007), - [4760] = {.count = 1, .reusable = true}, SHIFT(2007), - [4762] = {.count = 1, .reusable = true}, SHIFT(1017), - [4764] = {.count = 1, .reusable = true}, SHIFT(1018), - [4766] = {.count = 1, .reusable = true}, SHIFT(1019), - [4768] = {.count = 1, .reusable = true}, SHIFT(1020), - [4770] = {.count = 1, .reusable = false}, SHIFT(1022), - [4772] = {.count = 1, .reusable = false}, SHIFT(2010), - [4774] = {.count = 1, .reusable = true}, SHIFT(1057), - [4776] = {.count = 1, .reusable = true}, SHIFT(1058), + [4672] = {.count = 1, .reusable = true}, SHIFT(1005), + [4674] = {.count = 1, .reusable = true}, SHIFT(1006), + [4676] = {.count = 1, .reusable = false}, SHIFT(1007), + [4678] = {.count = 1, .reusable = false}, SHIFT(1985), + [4680] = {.count = 1, .reusable = true}, SHIFT(1008), + [4682] = {.count = 1, .reusable = true}, SHIFT(1009), + [4684] = {.count = 1, .reusable = false}, SHIFT(1987), + [4686] = {.count = 1, .reusable = true}, SHIFT(1987), + [4688] = {.count = 1, .reusable = true}, SHIFT(1010), + [4690] = {.count = 1, .reusable = true}, SHIFT(1986), + [4692] = {.count = 1, .reusable = false}, SHIFT(1989), + [4694] = {.count = 1, .reusable = true}, SHIFT(1989), + [4696] = {.count = 1, .reusable = true}, SHIFT(1011), + [4698] = {.count = 1, .reusable = true}, SHIFT(1988), + [4700] = {.count = 1, .reusable = false}, SHIFT(1013), + [4702] = {.count = 1, .reusable = false}, SHIFT(1994), + [4704] = {.count = 1, .reusable = true}, SHIFT(1994), + [4706] = {.count = 1, .reusable = true}, SHIFT(1014), + [4708] = {.count = 1, .reusable = true}, SHIFT(1993), + [4710] = {.count = 1, .reusable = false}, SHIFT(1996), + [4712] = {.count = 1, .reusable = true}, SHIFT(1996), + [4714] = {.count = 1, .reusable = true}, SHIFT(1015), + [4716] = {.count = 1, .reusable = true}, SHIFT(1995), + [4718] = {.count = 1, .reusable = true}, SHIFT(1997), + [4720] = {.count = 1, .reusable = false}, SHIFT(1999), + [4722] = {.count = 1, .reusable = true}, SHIFT(1999), + [4724] = {.count = 1, .reusable = true}, SHIFT(1016), + [4726] = {.count = 1, .reusable = true}, SHIFT(1998), + [4728] = {.count = 1, .reusable = true}, SHIFT(2001), + [4730] = {.count = 1, .reusable = false}, SHIFT(2001), + [4732] = {.count = 1, .reusable = false}, SHIFT(2004), + [4734] = {.count = 1, .reusable = true}, SHIFT(2004), + [4736] = {.count = 1, .reusable = true}, SHIFT(1017), + [4738] = {.count = 1, .reusable = false}, SHIFT(2005), + [4740] = {.count = 1, .reusable = true}, SHIFT(2005), + [4742] = {.count = 1, .reusable = true}, SHIFT(1018), + [4744] = {.count = 1, .reusable = true}, SHIFT(2006), + [4746] = {.count = 1, .reusable = false}, SHIFT(2008), + [4748] = {.count = 1, .reusable = true}, SHIFT(2008), + [4750] = {.count = 1, .reusable = true}, SHIFT(1019), + [4752] = {.count = 1, .reusable = true}, SHIFT(2007), + [4754] = {.count = 1, .reusable = true}, SHIFT(2009), + [4756] = {.count = 1, .reusable = false}, SHIFT(2009), + [4758] = {.count = 1, .reusable = true}, SHIFT(1020), + [4760] = {.count = 1, .reusable = true}, SHIFT(1021), + [4762] = {.count = 1, .reusable = true}, SHIFT(1022), + [4764] = {.count = 1, .reusable = false}, SHIFT(2012), + [4766] = {.count = 1, .reusable = true}, SHIFT(2012), + [4768] = {.count = 1, .reusable = false}, SHIFT(2013), + [4770] = {.count = 1, .reusable = true}, SHIFT(2013), + [4772] = {.count = 1, .reusable = true}, SHIFT(1023), + [4774] = {.count = 1, .reusable = true}, SHIFT(1024), + [4776] = {.count = 1, .reusable = true}, SHIFT(1025), [4778] = {.count = 1, .reusable = true}, SHIFT(1026), - [4780] = {.count = 1, .reusable = false}, SHIFT(1029), - [4782] = {.count = 1, .reusable = false}, SHIFT(2020), - [4784] = {.count = 1, .reusable = true}, SHIFT(1030), - [4786] = {.count = 1, .reusable = true}, SHIFT(1031), - [4788] = {.count = 1, .reusable = true}, SHIFT(1032), - [4790] = {.count = 1, .reusable = false}, SHIFT(2022), - [4792] = {.count = 1, .reusable = true}, SHIFT(2022), - [4794] = {.count = 1, .reusable = true}, SHIFT(1036), - [4796] = {.count = 1, .reusable = true}, SHIFT(2021), - [4798] = {.count = 1, .reusable = false}, SHIFT(2027), - [4800] = {.count = 1, .reusable = true}, SHIFT(2027), - [4802] = {.count = 1, .reusable = true}, SHIFT(1037), - [4804] = {.count = 1, .reusable = true}, SHIFT(2026), - [4806] = {.count = 1, .reusable = true}, SHIFT(1038), - [4808] = {.count = 1, .reusable = false}, SHIFT(1039), - [4810] = {.count = 1, .reusable = false}, SHIFT(2029), + [4780] = {.count = 1, .reusable = false}, SHIFT(2019), + [4782] = {.count = 1, .reusable = false}, SHIFT(1029), + [4784] = {.count = 1, .reusable = true}, SHIFT(1063), + [4786] = {.count = 1, .reusable = true}, SHIFT(1038), + [4788] = {.count = 1, .reusable = true}, SHIFT(1039), + [4790] = {.count = 1, .reusable = false}, SHIFT(1040), + [4792] = {.count = 1, .reusable = false}, SHIFT(2026), + [4794] = {.count = 1, .reusable = true}, SHIFT(1041), + [4796] = {.count = 1, .reusable = true}, SHIFT(1042), + [4798] = {.count = 1, .reusable = false}, SHIFT(2028), + [4800] = {.count = 1, .reusable = true}, SHIFT(2028), + [4802] = {.count = 1, .reusable = true}, SHIFT(1043), + [4804] = {.count = 1, .reusable = true}, SHIFT(2027), + [4806] = {.count = 1, .reusable = false}, SHIFT(2030), + [4808] = {.count = 1, .reusable = true}, SHIFT(2030), + [4810] = {.count = 1, .reusable = true}, SHIFT(1044), [4812] = {.count = 1, .reusable = true}, SHIFT(2029), - [4814] = {.count = 1, .reusable = true}, SHIFT(1041), - [4816] = {.count = 1, .reusable = true}, SHIFT(2028), - [4818] = {.count = 1, .reusable = true}, SHIFT(2030), - [4820] = {.count = 1, .reusable = false}, SHIFT(2033), - [4822] = {.count = 1, .reusable = true}, SHIFT(2033), - [4824] = {.count = 1, .reusable = true}, SHIFT(1042), - [4826] = {.count = 1, .reusable = true}, SHIFT(2032), - [4828] = {.count = 1, .reusable = false}, SHIFT(2034), - [4830] = {.count = 1, .reusable = true}, SHIFT(2034), - [4832] = {.count = 1, .reusable = false}, SHIFT(2038), - [4834] = {.count = 1, .reusable = true}, SHIFT(2038), - [4836] = {.count = 1, .reusable = true}, SHIFT(1043), - [4838] = {.count = 1, .reusable = true}, SHIFT(2037), - [4840] = {.count = 1, .reusable = false}, SHIFT(2039), - [4842] = {.count = 1, .reusable = true}, SHIFT(2039), - [4844] = {.count = 1, .reusable = true}, SHIFT(1044), - [4846] = {.count = 1, .reusable = true}, SHIFT(2040), - [4848] = {.count = 1, .reusable = false}, SHIFT(2041), - [4850] = {.count = 1, .reusable = true}, SHIFT(2041), - [4852] = {.count = 1, .reusable = false}, SHIFT(2045), - [4854] = {.count = 1, .reusable = true}, SHIFT(2045), - [4856] = {.count = 1, .reusable = true}, SHIFT(1045), - [4858] = {.count = 1, .reusable = true}, SHIFT(2044), - [4860] = {.count = 1, .reusable = true}, SHIFT(1046), - [4862] = {.count = 1, .reusable = false}, SHIFT(2046), - [4864] = {.count = 1, .reusable = true}, SHIFT(2046), - [4866] = {.count = 1, .reusable = true}, SHIFT(1047), - [4868] = {.count = 1, .reusable = true}, SHIFT(1048), - [4870] = {.count = 1, .reusable = false}, SHIFT(2047), - [4872] = {.count = 1, .reusable = true}, SHIFT(2047), - [4874] = {.count = 1, .reusable = true}, SHIFT(1049), - [4876] = {.count = 1, .reusable = false}, SHIFT(2048), - [4878] = {.count = 1, .reusable = true}, SHIFT(2048), - [4880] = {.count = 1, .reusable = true}, SHIFT(1050), - [4882] = {.count = 1, .reusable = true}, SHIFT(1051), - [4884] = {.count = 1, .reusable = true}, SHIFT(1052), - [4886] = {.count = 1, .reusable = true}, SHIFT(1053), - [4888] = {.count = 1, .reusable = false}, SHIFT(1055), - [4890] = {.count = 1, .reusable = false}, SHIFT(2051), - [4892] = {.count = 1, .reusable = true}, SHIFT(1090), - [4894] = {.count = 1, .reusable = true}, SHIFT(1091), - [4896] = {.count = 1, .reusable = true}, SHIFT(1059), - [4898] = {.count = 1, .reusable = false}, SHIFT(1062), - [4900] = {.count = 1, .reusable = false}, SHIFT(2061), - [4902] = {.count = 1, .reusable = true}, SHIFT(1063), - [4904] = {.count = 1, .reusable = true}, SHIFT(1064), - [4906] = {.count = 1, .reusable = true}, SHIFT(1065), - [4908] = {.count = 1, .reusable = false}, SHIFT(2063), - [4910] = {.count = 1, .reusable = true}, SHIFT(2063), - [4912] = {.count = 1, .reusable = true}, SHIFT(1069), - [4914] = {.count = 1, .reusable = true}, SHIFT(2062), - [4916] = {.count = 1, .reusable = false}, SHIFT(2068), - [4918] = {.count = 1, .reusable = true}, SHIFT(2068), - [4920] = {.count = 1, .reusable = true}, SHIFT(1070), - [4922] = {.count = 1, .reusable = true}, SHIFT(2067), - [4924] = {.count = 1, .reusable = true}, SHIFT(1071), - [4926] = {.count = 1, .reusable = false}, SHIFT(1072), - [4928] = {.count = 1, .reusable = false}, SHIFT(2070), + [4814] = {.count = 1, .reusable = false}, SHIFT(1046), + [4816] = {.count = 1, .reusable = false}, SHIFT(2035), + [4818] = {.count = 1, .reusable = true}, SHIFT(2035), + [4820] = {.count = 1, .reusable = true}, SHIFT(1047), + [4822] = {.count = 1, .reusable = true}, SHIFT(2034), + [4824] = {.count = 1, .reusable = false}, SHIFT(2037), + [4826] = {.count = 1, .reusable = true}, SHIFT(2037), + [4828] = {.count = 1, .reusable = true}, SHIFT(1048), + [4830] = {.count = 1, .reusable = true}, SHIFT(2036), + [4832] = {.count = 1, .reusable = true}, SHIFT(2038), + [4834] = {.count = 1, .reusable = false}, SHIFT(2040), + [4836] = {.count = 1, .reusable = true}, SHIFT(2040), + [4838] = {.count = 1, .reusable = true}, SHIFT(1049), + [4840] = {.count = 1, .reusable = true}, SHIFT(2039), + [4842] = {.count = 1, .reusable = true}, SHIFT(2042), + [4844] = {.count = 1, .reusable = false}, SHIFT(2042), + [4846] = {.count = 1, .reusable = false}, SHIFT(2045), + [4848] = {.count = 1, .reusable = true}, SHIFT(2045), + [4850] = {.count = 1, .reusable = true}, SHIFT(1050), + [4852] = {.count = 1, .reusable = false}, SHIFT(2046), + [4854] = {.count = 1, .reusable = true}, SHIFT(2046), + [4856] = {.count = 1, .reusable = true}, SHIFT(1051), + [4858] = {.count = 1, .reusable = true}, SHIFT(2047), + [4860] = {.count = 1, .reusable = false}, SHIFT(2049), + [4862] = {.count = 1, .reusable = true}, SHIFT(2049), + [4864] = {.count = 1, .reusable = true}, SHIFT(1052), + [4866] = {.count = 1, .reusable = true}, SHIFT(2048), + [4868] = {.count = 1, .reusable = true}, SHIFT(2050), + [4870] = {.count = 1, .reusable = false}, SHIFT(2050), + [4872] = {.count = 1, .reusable = true}, SHIFT(1053), + [4874] = {.count = 1, .reusable = true}, SHIFT(1054), + [4876] = {.count = 1, .reusable = true}, SHIFT(1055), + [4878] = {.count = 1, .reusable = false}, SHIFT(2053), + [4880] = {.count = 1, .reusable = true}, SHIFT(2053), + [4882] = {.count = 1, .reusable = false}, SHIFT(2054), + [4884] = {.count = 1, .reusable = true}, SHIFT(2054), + [4886] = {.count = 1, .reusable = true}, SHIFT(1056), + [4888] = {.count = 1, .reusable = true}, SHIFT(1057), + [4890] = {.count = 1, .reusable = true}, SHIFT(1058), + [4892] = {.count = 1, .reusable = true}, SHIFT(1059), + [4894] = {.count = 1, .reusable = false}, SHIFT(2060), + [4896] = {.count = 1, .reusable = false}, SHIFT(1062), + [4898] = {.count = 1, .reusable = true}, SHIFT(1096), + [4900] = {.count = 1, .reusable = true}, SHIFT(1097), + [4902] = {.count = 1, .reusable = true}, SHIFT(1065), + [4904] = {.count = 1, .reusable = true}, SHIFT(1071), + [4906] = {.count = 1, .reusable = true}, SHIFT(1072), + [4908] = {.count = 1, .reusable = false}, SHIFT(1073), + [4910] = {.count = 1, .reusable = false}, SHIFT(2067), + [4912] = {.count = 1, .reusable = true}, SHIFT(1074), + [4914] = {.count = 1, .reusable = true}, SHIFT(1075), + [4916] = {.count = 1, .reusable = false}, SHIFT(2069), + [4918] = {.count = 1, .reusable = true}, SHIFT(2069), + [4920] = {.count = 1, .reusable = true}, SHIFT(1076), + [4922] = {.count = 1, .reusable = true}, SHIFT(2068), + [4924] = {.count = 1, .reusable = false}, SHIFT(2071), + [4926] = {.count = 1, .reusable = true}, SHIFT(2071), + [4928] = {.count = 1, .reusable = true}, SHIFT(1077), [4930] = {.count = 1, .reusable = true}, SHIFT(2070), - [4932] = {.count = 1, .reusable = true}, SHIFT(1074), - [4934] = {.count = 1, .reusable = true}, SHIFT(2069), - [4936] = {.count = 1, .reusable = true}, SHIFT(2071), - [4938] = {.count = 1, .reusable = false}, SHIFT(2074), - [4940] = {.count = 1, .reusable = true}, SHIFT(2074), - [4942] = {.count = 1, .reusable = true}, SHIFT(1075), - [4944] = {.count = 1, .reusable = true}, SHIFT(2073), - [4946] = {.count = 1, .reusable = false}, SHIFT(2075), - [4948] = {.count = 1, .reusable = true}, SHIFT(2075), - [4950] = {.count = 1, .reusable = false}, SHIFT(2079), - [4952] = {.count = 1, .reusable = true}, SHIFT(2079), - [4954] = {.count = 1, .reusable = true}, SHIFT(1076), - [4956] = {.count = 1, .reusable = true}, SHIFT(2078), - [4958] = {.count = 1, .reusable = false}, SHIFT(2080), - [4960] = {.count = 1, .reusable = true}, SHIFT(2080), - [4962] = {.count = 1, .reusable = true}, SHIFT(1077), - [4964] = {.count = 1, .reusable = true}, SHIFT(2081), - [4966] = {.count = 1, .reusable = false}, SHIFT(2082), - [4968] = {.count = 1, .reusable = true}, SHIFT(2082), - [4970] = {.count = 1, .reusable = false}, SHIFT(2086), - [4972] = {.count = 1, .reusable = true}, SHIFT(2086), - [4974] = {.count = 1, .reusable = true}, SHIFT(1078), - [4976] = {.count = 1, .reusable = true}, SHIFT(2085), - [4978] = {.count = 1, .reusable = true}, SHIFT(1079), - [4980] = {.count = 1, .reusable = false}, SHIFT(2087), - [4982] = {.count = 1, .reusable = true}, SHIFT(2087), - [4984] = {.count = 1, .reusable = true}, SHIFT(1080), - [4986] = {.count = 1, .reusable = true}, SHIFT(1081), - [4988] = {.count = 1, .reusable = false}, SHIFT(2088), - [4990] = {.count = 1, .reusable = true}, SHIFT(2088), - [4992] = {.count = 1, .reusable = true}, SHIFT(1082), - [4994] = {.count = 1, .reusable = false}, SHIFT(2089), - [4996] = {.count = 1, .reusable = true}, SHIFT(2089), - [4998] = {.count = 1, .reusable = true}, SHIFT(1083), - [5000] = {.count = 1, .reusable = true}, SHIFT(1084), - [5002] = {.count = 1, .reusable = true}, SHIFT(1085), - [5004] = {.count = 1, .reusable = true}, SHIFT(1086), - [5006] = {.count = 1, .reusable = false}, SHIFT(1088), - [5008] = {.count = 1, .reusable = false}, SHIFT(2092), - [5010] = {.count = 1, .reusable = true}, SHIFT(1123), - [5012] = {.count = 1, .reusable = true}, SHIFT(1124), - [5014] = {.count = 1, .reusable = true}, SHIFT(1092), - [5016] = {.count = 1, .reusable = false}, SHIFT(1095), - [5018] = {.count = 1, .reusable = false}, SHIFT(2102), - [5020] = {.count = 1, .reusable = true}, SHIFT(1096), - [5022] = {.count = 1, .reusable = true}, SHIFT(1097), - [5024] = {.count = 1, .reusable = true}, SHIFT(1098), - [5026] = {.count = 1, .reusable = false}, SHIFT(2104), - [5028] = {.count = 1, .reusable = true}, SHIFT(2104), - [5030] = {.count = 1, .reusable = true}, SHIFT(1102), - [5032] = {.count = 1, .reusable = true}, SHIFT(2103), - [5034] = {.count = 1, .reusable = false}, SHIFT(2109), - [5036] = {.count = 1, .reusable = true}, SHIFT(2109), - [5038] = {.count = 1, .reusable = true}, SHIFT(1103), - [5040] = {.count = 1, .reusable = true}, SHIFT(2108), - [5042] = {.count = 1, .reusable = true}, SHIFT(1104), - [5044] = {.count = 1, .reusable = false}, SHIFT(1105), - [5046] = {.count = 1, .reusable = false}, SHIFT(2111), + [4932] = {.count = 1, .reusable = false}, SHIFT(1079), + [4934] = {.count = 1, .reusable = false}, SHIFT(2076), + [4936] = {.count = 1, .reusable = true}, SHIFT(2076), + [4938] = {.count = 1, .reusable = true}, SHIFT(1080), + [4940] = {.count = 1, .reusable = true}, SHIFT(2075), + [4942] = {.count = 1, .reusable = false}, SHIFT(2078), + [4944] = {.count = 1, .reusable = true}, SHIFT(2078), + [4946] = {.count = 1, .reusable = true}, SHIFT(1081), + [4948] = {.count = 1, .reusable = true}, SHIFT(2077), + [4950] = {.count = 1, .reusable = true}, SHIFT(2079), + [4952] = {.count = 1, .reusable = false}, SHIFT(2081), + [4954] = {.count = 1, .reusable = true}, SHIFT(2081), + [4956] = {.count = 1, .reusable = true}, SHIFT(1082), + [4958] = {.count = 1, .reusable = true}, SHIFT(2080), + [4960] = {.count = 1, .reusable = true}, SHIFT(2083), + [4962] = {.count = 1, .reusable = false}, SHIFT(2083), + [4964] = {.count = 1, .reusable = false}, SHIFT(2086), + [4966] = {.count = 1, .reusable = true}, SHIFT(2086), + [4968] = {.count = 1, .reusable = true}, SHIFT(1083), + [4970] = {.count = 1, .reusable = false}, SHIFT(2087), + [4972] = {.count = 1, .reusable = true}, SHIFT(2087), + [4974] = {.count = 1, .reusable = true}, SHIFT(1084), + [4976] = {.count = 1, .reusable = true}, SHIFT(2088), + [4978] = {.count = 1, .reusable = false}, SHIFT(2090), + [4980] = {.count = 1, .reusable = true}, SHIFT(2090), + [4982] = {.count = 1, .reusable = true}, SHIFT(1085), + [4984] = {.count = 1, .reusable = true}, SHIFT(2089), + [4986] = {.count = 1, .reusable = true}, SHIFT(2091), + [4988] = {.count = 1, .reusable = false}, SHIFT(2091), + [4990] = {.count = 1, .reusable = true}, SHIFT(1086), + [4992] = {.count = 1, .reusable = true}, SHIFT(1087), + [4994] = {.count = 1, .reusable = true}, SHIFT(1088), + [4996] = {.count = 1, .reusable = false}, SHIFT(2094), + [4998] = {.count = 1, .reusable = true}, SHIFT(2094), + [5000] = {.count = 1, .reusable = false}, SHIFT(2095), + [5002] = {.count = 1, .reusable = true}, SHIFT(2095), + [5004] = {.count = 1, .reusable = true}, SHIFT(1089), + [5006] = {.count = 1, .reusable = true}, SHIFT(1090), + [5008] = {.count = 1, .reusable = true}, SHIFT(1091), + [5010] = {.count = 1, .reusable = true}, SHIFT(1092), + [5012] = {.count = 1, .reusable = false}, SHIFT(2101), + [5014] = {.count = 1, .reusable = false}, SHIFT(1095), + [5016] = {.count = 1, .reusable = true}, SHIFT(1129), + [5018] = {.count = 1, .reusable = true}, SHIFT(1130), + [5020] = {.count = 1, .reusable = true}, SHIFT(1098), + [5022] = {.count = 1, .reusable = true}, SHIFT(1104), + [5024] = {.count = 1, .reusable = true}, SHIFT(1105), + [5026] = {.count = 1, .reusable = false}, SHIFT(1106), + [5028] = {.count = 1, .reusable = false}, SHIFT(2108), + [5030] = {.count = 1, .reusable = true}, SHIFT(1107), + [5032] = {.count = 1, .reusable = true}, SHIFT(1108), + [5034] = {.count = 1, .reusable = false}, SHIFT(2110), + [5036] = {.count = 1, .reusable = true}, SHIFT(2110), + [5038] = {.count = 1, .reusable = true}, SHIFT(1109), + [5040] = {.count = 1, .reusable = true}, SHIFT(2109), + [5042] = {.count = 1, .reusable = false}, SHIFT(2112), + [5044] = {.count = 1, .reusable = true}, SHIFT(2112), + [5046] = {.count = 1, .reusable = true}, SHIFT(1110), [5048] = {.count = 1, .reusable = true}, SHIFT(2111), - [5050] = {.count = 1, .reusable = true}, SHIFT(1107), - [5052] = {.count = 1, .reusable = true}, SHIFT(2110), - [5054] = {.count = 1, .reusable = true}, SHIFT(2112), - [5056] = {.count = 1, .reusable = false}, SHIFT(2115), - [5058] = {.count = 1, .reusable = true}, SHIFT(2115), - [5060] = {.count = 1, .reusable = true}, SHIFT(1108), - [5062] = {.count = 1, .reusable = true}, SHIFT(2114), - [5064] = {.count = 1, .reusable = false}, SHIFT(2116), - [5066] = {.count = 1, .reusable = true}, SHIFT(2116), - [5068] = {.count = 1, .reusable = false}, SHIFT(2120), - [5070] = {.count = 1, .reusable = true}, SHIFT(2120), - [5072] = {.count = 1, .reusable = true}, SHIFT(1109), - [5074] = {.count = 1, .reusable = true}, SHIFT(2119), - [5076] = {.count = 1, .reusable = false}, SHIFT(2121), - [5078] = {.count = 1, .reusable = true}, SHIFT(2121), - [5080] = {.count = 1, .reusable = true}, SHIFT(1110), - [5082] = {.count = 1, .reusable = true}, SHIFT(2122), - [5084] = {.count = 1, .reusable = false}, SHIFT(2123), - [5086] = {.count = 1, .reusable = true}, SHIFT(2123), - [5088] = {.count = 1, .reusable = false}, SHIFT(2127), - [5090] = {.count = 1, .reusable = true}, SHIFT(2127), - [5092] = {.count = 1, .reusable = true}, SHIFT(1111), - [5094] = {.count = 1, .reusable = true}, SHIFT(2126), - [5096] = {.count = 1, .reusable = true}, SHIFT(1112), - [5098] = {.count = 1, .reusable = false}, SHIFT(2128), - [5100] = {.count = 1, .reusable = true}, SHIFT(2128), - [5102] = {.count = 1, .reusable = true}, SHIFT(1113), - [5104] = {.count = 1, .reusable = true}, SHIFT(1114), - [5106] = {.count = 1, .reusable = false}, SHIFT(2129), - [5108] = {.count = 1, .reusable = true}, SHIFT(2129), - [5110] = {.count = 1, .reusable = true}, SHIFT(1115), - [5112] = {.count = 1, .reusable = false}, SHIFT(2130), - [5114] = {.count = 1, .reusable = true}, SHIFT(2130), - [5116] = {.count = 1, .reusable = true}, SHIFT(1116), - [5118] = {.count = 1, .reusable = true}, SHIFT(1117), - [5120] = {.count = 1, .reusable = true}, SHIFT(1118), - [5122] = {.count = 1, .reusable = true}, SHIFT(1119), - [5124] = {.count = 1, .reusable = false}, SHIFT(1121), - [5126] = {.count = 1, .reusable = false}, SHIFT(2133), - [5128] = {.count = 1, .reusable = true}, SHIFT(1156), - [5130] = {.count = 1, .reusable = true}, SHIFT(1157), - [5132] = {.count = 1, .reusable = true}, SHIFT(1125), - [5134] = {.count = 1, .reusable = false}, SHIFT(1128), - [5136] = {.count = 1, .reusable = false}, SHIFT(2143), - [5138] = {.count = 1, .reusable = true}, SHIFT(1129), - [5140] = {.count = 1, .reusable = true}, SHIFT(1130), - [5142] = {.count = 1, .reusable = true}, SHIFT(1131), - [5144] = {.count = 1, .reusable = false}, SHIFT(2145), - [5146] = {.count = 1, .reusable = true}, SHIFT(2145), - [5148] = {.count = 1, .reusable = true}, SHIFT(1135), - [5150] = {.count = 1, .reusable = true}, SHIFT(2144), - [5152] = {.count = 1, .reusable = false}, SHIFT(2150), + [5050] = {.count = 1, .reusable = false}, SHIFT(1112), + [5052] = {.count = 1, .reusable = false}, SHIFT(2117), + [5054] = {.count = 1, .reusable = true}, SHIFT(2117), + [5056] = {.count = 1, .reusable = true}, SHIFT(1113), + [5058] = {.count = 1, .reusable = true}, SHIFT(2116), + [5060] = {.count = 1, .reusable = false}, SHIFT(2119), + [5062] = {.count = 1, .reusable = true}, SHIFT(2119), + [5064] = {.count = 1, .reusable = true}, SHIFT(1114), + [5066] = {.count = 1, .reusable = true}, SHIFT(2118), + [5068] = {.count = 1, .reusable = true}, SHIFT(2120), + [5070] = {.count = 1, .reusable = false}, SHIFT(2122), + [5072] = {.count = 1, .reusable = true}, SHIFT(2122), + [5074] = {.count = 1, .reusable = true}, SHIFT(1115), + [5076] = {.count = 1, .reusable = true}, SHIFT(2121), + [5078] = {.count = 1, .reusable = true}, SHIFT(2124), + [5080] = {.count = 1, .reusable = false}, SHIFT(2124), + [5082] = {.count = 1, .reusable = false}, SHIFT(2127), + [5084] = {.count = 1, .reusable = true}, SHIFT(2127), + [5086] = {.count = 1, .reusable = true}, SHIFT(1116), + [5088] = {.count = 1, .reusable = false}, SHIFT(2128), + [5090] = {.count = 1, .reusable = true}, SHIFT(2128), + [5092] = {.count = 1, .reusable = true}, SHIFT(1117), + [5094] = {.count = 1, .reusable = true}, SHIFT(2129), + [5096] = {.count = 1, .reusable = false}, SHIFT(2131), + [5098] = {.count = 1, .reusable = true}, SHIFT(2131), + [5100] = {.count = 1, .reusable = true}, SHIFT(1118), + [5102] = {.count = 1, .reusable = true}, SHIFT(2130), + [5104] = {.count = 1, .reusable = true}, SHIFT(2132), + [5106] = {.count = 1, .reusable = false}, SHIFT(2132), + [5108] = {.count = 1, .reusable = true}, SHIFT(1119), + [5110] = {.count = 1, .reusable = true}, SHIFT(1120), + [5112] = {.count = 1, .reusable = true}, SHIFT(1121), + [5114] = {.count = 1, .reusable = false}, SHIFT(2135), + [5116] = {.count = 1, .reusable = true}, SHIFT(2135), + [5118] = {.count = 1, .reusable = false}, SHIFT(2136), + [5120] = {.count = 1, .reusable = true}, SHIFT(2136), + [5122] = {.count = 1, .reusable = true}, SHIFT(1122), + [5124] = {.count = 1, .reusable = true}, SHIFT(1123), + [5126] = {.count = 1, .reusable = true}, SHIFT(1124), + [5128] = {.count = 1, .reusable = true}, SHIFT(1125), + [5130] = {.count = 1, .reusable = false}, SHIFT(2142), + [5132] = {.count = 1, .reusable = false}, SHIFT(1128), + [5134] = {.count = 1, .reusable = true}, SHIFT(1162), + [5136] = {.count = 1, .reusable = true}, SHIFT(1163), + [5138] = {.count = 1, .reusable = true}, SHIFT(1131), + [5140] = {.count = 1, .reusable = true}, SHIFT(1137), + [5142] = {.count = 1, .reusable = true}, SHIFT(1138), + [5144] = {.count = 1, .reusable = false}, SHIFT(1139), + [5146] = {.count = 1, .reusable = false}, SHIFT(2149), + [5148] = {.count = 1, .reusable = true}, SHIFT(1140), + [5150] = {.count = 1, .reusable = true}, SHIFT(1141), + [5152] = {.count = 1, .reusable = false}, SHIFT(2151), [5154] = {.count = 1, .reusable = true}, SHIFT(2150), - [5156] = {.count = 1, .reusable = true}, SHIFT(1136), - [5158] = {.count = 1, .reusable = true}, SHIFT(2149), - [5160] = {.count = 1, .reusable = true}, SHIFT(1137), - [5162] = {.count = 1, .reusable = false}, SHIFT(1138), - [5164] = {.count = 1, .reusable = false}, SHIFT(2152), - [5166] = {.count = 1, .reusable = true}, SHIFT(2152), - [5168] = {.count = 1, .reusable = true}, SHIFT(1140), - [5170] = {.count = 1, .reusable = true}, SHIFT(2151), - [5172] = {.count = 1, .reusable = true}, SHIFT(2153), - [5174] = {.count = 1, .reusable = false}, SHIFT(2156), - [5176] = {.count = 1, .reusable = true}, SHIFT(2156), - [5178] = {.count = 1, .reusable = true}, SHIFT(1141), - [5180] = {.count = 1, .reusable = true}, SHIFT(2155), - [5182] = {.count = 1, .reusable = false}, SHIFT(2157), - [5184] = {.count = 1, .reusable = true}, SHIFT(2157), - [5186] = {.count = 1, .reusable = false}, SHIFT(2161), - [5188] = {.count = 1, .reusable = true}, SHIFT(2161), - [5190] = {.count = 1, .reusable = true}, SHIFT(1142), - [5192] = {.count = 1, .reusable = true}, SHIFT(2160), - [5194] = {.count = 1, .reusable = false}, SHIFT(2162), - [5196] = {.count = 1, .reusable = true}, SHIFT(2162), - [5198] = {.count = 1, .reusable = true}, SHIFT(1143), - [5200] = {.count = 1, .reusable = true}, SHIFT(2163), - [5202] = {.count = 1, .reusable = false}, SHIFT(2164), - [5204] = {.count = 1, .reusable = true}, SHIFT(2164), - [5206] = {.count = 1, .reusable = false}, SHIFT(2168), - [5208] = {.count = 1, .reusable = true}, SHIFT(2168), - [5210] = {.count = 1, .reusable = true}, SHIFT(1144), - [5212] = {.count = 1, .reusable = true}, SHIFT(2167), - [5214] = {.count = 1, .reusable = true}, SHIFT(1145), - [5216] = {.count = 1, .reusable = false}, SHIFT(2169), - [5218] = {.count = 1, .reusable = true}, SHIFT(2169), - [5220] = {.count = 1, .reusable = true}, SHIFT(1146), - [5222] = {.count = 1, .reusable = true}, SHIFT(1147), - [5224] = {.count = 1, .reusable = false}, SHIFT(2170), - [5226] = {.count = 1, .reusable = true}, SHIFT(2170), - [5228] = {.count = 1, .reusable = true}, SHIFT(1148), - [5230] = {.count = 1, .reusable = false}, SHIFT(2171), - [5232] = {.count = 1, .reusable = true}, SHIFT(2171), - [5234] = {.count = 1, .reusable = true}, SHIFT(1149), - [5236] = {.count = 1, .reusable = true}, SHIFT(1150), - [5238] = {.count = 1, .reusable = true}, SHIFT(1151), - [5240] = {.count = 1, .reusable = true}, SHIFT(1152), - [5242] = {.count = 1, .reusable = false}, SHIFT(1154), - [5244] = {.count = 1, .reusable = false}, SHIFT(2174), - [5246] = {.count = 1, .reusable = false}, SHIFT(1161), - [5248] = {.count = 1, .reusable = false}, SHIFT(2184), - [5250] = {.count = 1, .reusable = true}, SHIFT(1162), - [5252] = {.count = 1, .reusable = true}, SHIFT(1163), - [5254] = {.count = 1, .reusable = true}, SHIFT(1164), - [5256] = {.count = 1, .reusable = false}, SHIFT(2186), - [5258] = {.count = 1, .reusable = true}, SHIFT(2186), - [5260] = {.count = 1, .reusable = true}, SHIFT(1168), - [5262] = {.count = 1, .reusable = true}, SHIFT(2185), - [5264] = {.count = 1, .reusable = false}, SHIFT(2191), + [5156] = {.count = 1, .reusable = true}, SHIFT(2151), + [5158] = {.count = 1, .reusable = true}, SHIFT(1142), + [5160] = {.count = 1, .reusable = false}, SHIFT(2153), + [5162] = {.count = 1, .reusable = true}, SHIFT(2152), + [5164] = {.count = 1, .reusable = true}, SHIFT(2153), + [5166] = {.count = 1, .reusable = true}, SHIFT(1143), + [5168] = {.count = 1, .reusable = false}, SHIFT(1145), + [5170] = {.count = 1, .reusable = false}, SHIFT(2158), + [5172] = {.count = 1, .reusable = true}, SHIFT(2158), + [5174] = {.count = 1, .reusable = true}, SHIFT(1146), + [5176] = {.count = 1, .reusable = true}, SHIFT(2157), + [5178] = {.count = 1, .reusable = false}, SHIFT(2160), + [5180] = {.count = 1, .reusable = true}, SHIFT(2160), + [5182] = {.count = 1, .reusable = true}, SHIFT(1147), + [5184] = {.count = 1, .reusable = true}, SHIFT(2159), + [5186] = {.count = 1, .reusable = true}, SHIFT(2161), + [5188] = {.count = 1, .reusable = false}, SHIFT(2163), + [5190] = {.count = 1, .reusable = true}, SHIFT(2162), + [5192] = {.count = 1, .reusable = true}, SHIFT(2163), + [5194] = {.count = 1, .reusable = true}, SHIFT(1148), + [5196] = {.count = 1, .reusable = true}, SHIFT(2165), + [5198] = {.count = 1, .reusable = false}, SHIFT(2165), + [5200] = {.count = 1, .reusable = false}, SHIFT(2168), + [5202] = {.count = 1, .reusable = true}, SHIFT(2168), + [5204] = {.count = 1, .reusable = true}, SHIFT(1149), + [5206] = {.count = 1, .reusable = false}, SHIFT(2169), + [5208] = {.count = 1, .reusable = true}, SHIFT(2169), + [5210] = {.count = 1, .reusable = true}, SHIFT(1150), + [5212] = {.count = 1, .reusable = true}, SHIFT(2170), + [5214] = {.count = 1, .reusable = false}, SHIFT(2172), + [5216] = {.count = 1, .reusable = true}, SHIFT(2172), + [5218] = {.count = 1, .reusable = true}, SHIFT(1151), + [5220] = {.count = 1, .reusable = true}, SHIFT(2171), + [5222] = {.count = 1, .reusable = true}, SHIFT(2173), + [5224] = {.count = 1, .reusable = false}, SHIFT(2173), + [5226] = {.count = 1, .reusable = true}, SHIFT(1152), + [5228] = {.count = 1, .reusable = true}, SHIFT(1153), + [5230] = {.count = 1, .reusable = true}, SHIFT(1154), + [5232] = {.count = 1, .reusable = false}, SHIFT(2176), + [5234] = {.count = 1, .reusable = true}, SHIFT(2176), + [5236] = {.count = 1, .reusable = false}, SHIFT(2177), + [5238] = {.count = 1, .reusable = true}, SHIFT(2177), + [5240] = {.count = 1, .reusable = true}, SHIFT(1155), + [5242] = {.count = 1, .reusable = true}, SHIFT(1156), + [5244] = {.count = 1, .reusable = true}, SHIFT(1157), + [5246] = {.count = 1, .reusable = true}, SHIFT(1158), + [5248] = {.count = 1, .reusable = false}, SHIFT(2183), + [5250] = {.count = 1, .reusable = false}, SHIFT(1161), + [5252] = {.count = 1, .reusable = true}, SHIFT(1170), + [5254] = {.count = 1, .reusable = true}, SHIFT(1171), + [5256] = {.count = 1, .reusable = false}, SHIFT(1172), + [5258] = {.count = 1, .reusable = false}, SHIFT(2190), + [5260] = {.count = 1, .reusable = true}, SHIFT(1173), + [5262] = {.count = 1, .reusable = true}, SHIFT(1174), + [5264] = {.count = 1, .reusable = false}, SHIFT(2192), [5266] = {.count = 1, .reusable = true}, SHIFT(2191), - [5268] = {.count = 1, .reusable = true}, SHIFT(1169), - [5270] = {.count = 1, .reusable = true}, SHIFT(2190), - [5272] = {.count = 1, .reusable = true}, SHIFT(1170), - [5274] = {.count = 1, .reusable = false}, SHIFT(1171), - [5276] = {.count = 1, .reusable = false}, SHIFT(2193), - [5278] = {.count = 1, .reusable = true}, SHIFT(2193), - [5280] = {.count = 1, .reusable = true}, SHIFT(1173), - [5282] = {.count = 1, .reusable = true}, SHIFT(2192), - [5284] = {.count = 1, .reusable = true}, SHIFT(2194), - [5286] = {.count = 1, .reusable = false}, SHIFT(2197), - [5288] = {.count = 1, .reusable = true}, SHIFT(2197), - [5290] = {.count = 1, .reusable = true}, SHIFT(1174), - [5292] = {.count = 1, .reusable = true}, SHIFT(2196), - [5294] = {.count = 1, .reusable = false}, SHIFT(2198), - [5296] = {.count = 1, .reusable = true}, SHIFT(2198), - [5298] = {.count = 1, .reusable = false}, SHIFT(2202), - [5300] = {.count = 1, .reusable = true}, SHIFT(2202), - [5302] = {.count = 1, .reusable = true}, SHIFT(1175), - [5304] = {.count = 1, .reusable = true}, SHIFT(2201), - [5306] = {.count = 1, .reusable = false}, SHIFT(2203), - [5308] = {.count = 1, .reusable = true}, SHIFT(2203), - [5310] = {.count = 1, .reusable = true}, SHIFT(1176), - [5312] = {.count = 1, .reusable = true}, SHIFT(2204), - [5314] = {.count = 1, .reusable = false}, SHIFT(2205), - [5316] = {.count = 1, .reusable = true}, SHIFT(2205), - [5318] = {.count = 1, .reusable = false}, SHIFT(2209), - [5320] = {.count = 1, .reusable = true}, SHIFT(2209), - [5322] = {.count = 1, .reusable = true}, SHIFT(1177), - [5324] = {.count = 1, .reusable = true}, SHIFT(2208), - [5326] = {.count = 1, .reusable = true}, SHIFT(1178), - [5328] = {.count = 1, .reusable = false}, SHIFT(2210), - [5330] = {.count = 1, .reusable = true}, SHIFT(2210), - [5332] = {.count = 1, .reusable = true}, SHIFT(1179), - [5334] = {.count = 1, .reusable = true}, SHIFT(1180), - [5336] = {.count = 1, .reusable = false}, SHIFT(2211), - [5338] = {.count = 1, .reusable = true}, SHIFT(2211), - [5340] = {.count = 1, .reusable = true}, SHIFT(1181), - [5342] = {.count = 1, .reusable = false}, SHIFT(2212), - [5344] = {.count = 1, .reusable = true}, SHIFT(2212), - [5346] = {.count = 1, .reusable = true}, SHIFT(1182), - [5348] = {.count = 1, .reusable = true}, SHIFT(1183), - [5350] = {.count = 1, .reusable = true}, SHIFT(1184), - [5352] = {.count = 1, .reusable = true}, SHIFT(1185), - [5354] = {.count = 1, .reusable = false}, SHIFT(1187), - [5356] = {.count = 1, .reusable = false}, SHIFT(2215), - [5358] = {.count = 1, .reusable = false}, SHIFT(1194), - [5360] = {.count = 1, .reusable = false}, SHIFT(2225), - [5362] = {.count = 1, .reusable = true}, SHIFT(1195), - [5364] = {.count = 1, .reusable = true}, SHIFT(1196), - [5366] = {.count = 1, .reusable = true}, SHIFT(1197), - [5368] = {.count = 1, .reusable = false}, SHIFT(2227), - [5370] = {.count = 1, .reusable = true}, SHIFT(2227), - [5372] = {.count = 1, .reusable = true}, SHIFT(1201), - [5374] = {.count = 1, .reusable = true}, SHIFT(2226), - [5376] = {.count = 1, .reusable = false}, SHIFT(2232), - [5378] = {.count = 1, .reusable = true}, SHIFT(2232), - [5380] = {.count = 1, .reusable = true}, SHIFT(1202), - [5382] = {.count = 1, .reusable = true}, SHIFT(2231), - [5384] = {.count = 1, .reusable = true}, SHIFT(1203), - [5386] = {.count = 1, .reusable = false}, SHIFT(1204), - [5388] = {.count = 1, .reusable = false}, SHIFT(2234), - [5390] = {.count = 1, .reusable = true}, SHIFT(2234), - [5392] = {.count = 1, .reusable = true}, SHIFT(1206), - [5394] = {.count = 1, .reusable = true}, SHIFT(2233), - [5396] = {.count = 1, .reusable = true}, SHIFT(2235), - [5398] = {.count = 1, .reusable = false}, SHIFT(2238), - [5400] = {.count = 1, .reusable = true}, SHIFT(2238), - [5402] = {.count = 1, .reusable = true}, SHIFT(1207), - [5404] = {.count = 1, .reusable = true}, SHIFT(2237), - [5406] = {.count = 1, .reusable = false}, SHIFT(2239), - [5408] = {.count = 1, .reusable = true}, SHIFT(2239), - [5410] = {.count = 1, .reusable = false}, SHIFT(2243), - [5412] = {.count = 1, .reusable = true}, SHIFT(2243), - [5414] = {.count = 1, .reusable = true}, SHIFT(1208), - [5416] = {.count = 1, .reusable = true}, SHIFT(2242), - [5418] = {.count = 1, .reusable = false}, SHIFT(2244), + [5268] = {.count = 1, .reusable = true}, SHIFT(2192), + [5270] = {.count = 1, .reusable = true}, SHIFT(1175), + [5272] = {.count = 1, .reusable = false}, SHIFT(2194), + [5274] = {.count = 1, .reusable = true}, SHIFT(2193), + [5276] = {.count = 1, .reusable = true}, SHIFT(2194), + [5278] = {.count = 1, .reusable = true}, SHIFT(1176), + [5280] = {.count = 1, .reusable = false}, SHIFT(1178), + [5282] = {.count = 1, .reusable = false}, SHIFT(2199), + [5284] = {.count = 1, .reusable = true}, SHIFT(2199), + [5286] = {.count = 1, .reusable = true}, SHIFT(1179), + [5288] = {.count = 1, .reusable = true}, SHIFT(2198), + [5290] = {.count = 1, .reusable = false}, SHIFT(2201), + [5292] = {.count = 1, .reusable = true}, SHIFT(2201), + [5294] = {.count = 1, .reusable = true}, SHIFT(1180), + [5296] = {.count = 1, .reusable = true}, SHIFT(2200), + [5298] = {.count = 1, .reusable = true}, SHIFT(2202), + [5300] = {.count = 1, .reusable = false}, SHIFT(2204), + [5302] = {.count = 1, .reusable = true}, SHIFT(2203), + [5304] = {.count = 1, .reusable = true}, SHIFT(2204), + [5306] = {.count = 1, .reusable = true}, SHIFT(1181), + [5308] = {.count = 1, .reusable = true}, SHIFT(2206), + [5310] = {.count = 1, .reusable = false}, SHIFT(2206), + [5312] = {.count = 1, .reusable = false}, SHIFT(2209), + [5314] = {.count = 1, .reusable = true}, SHIFT(2209), + [5316] = {.count = 1, .reusable = true}, SHIFT(1182), + [5318] = {.count = 1, .reusable = false}, SHIFT(2210), + [5320] = {.count = 1, .reusable = true}, SHIFT(2210), + [5322] = {.count = 1, .reusable = true}, SHIFT(1183), + [5324] = {.count = 1, .reusable = true}, SHIFT(2211), + [5326] = {.count = 1, .reusable = false}, SHIFT(2213), + [5328] = {.count = 1, .reusable = true}, SHIFT(2213), + [5330] = {.count = 1, .reusable = true}, SHIFT(1184), + [5332] = {.count = 1, .reusable = true}, SHIFT(2212), + [5334] = {.count = 1, .reusable = true}, SHIFT(2214), + [5336] = {.count = 1, .reusable = false}, SHIFT(2214), + [5338] = {.count = 1, .reusable = true}, SHIFT(1185), + [5340] = {.count = 1, .reusable = true}, SHIFT(1186), + [5342] = {.count = 1, .reusable = true}, SHIFT(1187), + [5344] = {.count = 1, .reusable = false}, SHIFT(2217), + [5346] = {.count = 1, .reusable = true}, SHIFT(2217), + [5348] = {.count = 1, .reusable = false}, SHIFT(2218), + [5350] = {.count = 1, .reusable = true}, SHIFT(2218), + [5352] = {.count = 1, .reusable = true}, SHIFT(1188), + [5354] = {.count = 1, .reusable = true}, SHIFT(1189), + [5356] = {.count = 1, .reusable = true}, SHIFT(1190), + [5358] = {.count = 1, .reusable = true}, SHIFT(1191), + [5360] = {.count = 1, .reusable = false}, SHIFT(2224), + [5362] = {.count = 1, .reusable = false}, SHIFT(1194), + [5364] = {.count = 1, .reusable = true}, SHIFT(1228), + [5366] = {.count = 1, .reusable = true}, SHIFT(1229), + [5368] = {.count = 1, .reusable = true}, SHIFT(1197), + [5370] = {.count = 1, .reusable = true}, SHIFT(1203), + [5372] = {.count = 1, .reusable = true}, SHIFT(1204), + [5374] = {.count = 1, .reusable = false}, SHIFT(1205), + [5376] = {.count = 1, .reusable = false}, SHIFT(2231), + [5378] = {.count = 1, .reusable = true}, SHIFT(1206), + [5380] = {.count = 1, .reusable = true}, SHIFT(1207), + [5382] = {.count = 1, .reusable = false}, SHIFT(2233), + [5384] = {.count = 1, .reusable = true}, SHIFT(2232), + [5386] = {.count = 1, .reusable = true}, SHIFT(2233), + [5388] = {.count = 1, .reusable = true}, SHIFT(1208), + [5390] = {.count = 1, .reusable = false}, SHIFT(2235), + [5392] = {.count = 1, .reusable = true}, SHIFT(2234), + [5394] = {.count = 1, .reusable = true}, SHIFT(2235), + [5396] = {.count = 1, .reusable = true}, SHIFT(1209), + [5398] = {.count = 1, .reusable = false}, SHIFT(1211), + [5400] = {.count = 1, .reusable = false}, SHIFT(2240), + [5402] = {.count = 1, .reusable = true}, SHIFT(2240), + [5404] = {.count = 1, .reusable = true}, SHIFT(1212), + [5406] = {.count = 1, .reusable = true}, SHIFT(2239), + [5408] = {.count = 1, .reusable = false}, SHIFT(2242), + [5410] = {.count = 1, .reusable = true}, SHIFT(2242), + [5412] = {.count = 1, .reusable = true}, SHIFT(1213), + [5414] = {.count = 1, .reusable = true}, SHIFT(2241), + [5416] = {.count = 1, .reusable = true}, SHIFT(2243), + [5418] = {.count = 1, .reusable = false}, SHIFT(2245), [5420] = {.count = 1, .reusable = true}, SHIFT(2244), - [5422] = {.count = 1, .reusable = true}, SHIFT(1209), - [5424] = {.count = 1, .reusable = true}, SHIFT(2245), - [5426] = {.count = 1, .reusable = false}, SHIFT(2246), - [5428] = {.count = 1, .reusable = true}, SHIFT(2246), + [5422] = {.count = 1, .reusable = true}, SHIFT(2245), + [5424] = {.count = 1, .reusable = true}, SHIFT(1214), + [5426] = {.count = 1, .reusable = true}, SHIFT(2247), + [5428] = {.count = 1, .reusable = false}, SHIFT(2247), [5430] = {.count = 1, .reusable = false}, SHIFT(2250), [5432] = {.count = 1, .reusable = true}, SHIFT(2250), - [5434] = {.count = 1, .reusable = true}, SHIFT(1210), - [5436] = {.count = 1, .reusable = true}, SHIFT(2249), - [5438] = {.count = 1, .reusable = true}, SHIFT(1211), - [5440] = {.count = 1, .reusable = false}, SHIFT(2251), - [5442] = {.count = 1, .reusable = true}, SHIFT(2251), - [5444] = {.count = 1, .reusable = true}, SHIFT(1212), - [5446] = {.count = 1, .reusable = true}, SHIFT(1213), - [5448] = {.count = 1, .reusable = false}, SHIFT(2252), - [5450] = {.count = 1, .reusable = true}, SHIFT(2252), - [5452] = {.count = 1, .reusable = true}, SHIFT(1214), - [5454] = {.count = 1, .reusable = false}, SHIFT(2253), - [5456] = {.count = 1, .reusable = true}, SHIFT(2253), - [5458] = {.count = 1, .reusable = true}, SHIFT(1215), - [5460] = {.count = 1, .reusable = true}, SHIFT(1216), - [5462] = {.count = 1, .reusable = true}, SHIFT(1217), - [5464] = {.count = 1, .reusable = true}, SHIFT(1218), - [5466] = {.count = 1, .reusable = false}, SHIFT(1220), - [5468] = {.count = 1, .reusable = false}, SHIFT(2256), - [5470] = {.count = 1, .reusable = true}, SHIFT(1255), - [5472] = {.count = 1, .reusable = true}, SHIFT(1256), - [5474] = {.count = 1, .reusable = true}, SHIFT(1224), - [5476] = {.count = 1, .reusable = false}, SHIFT(1227), - [5478] = {.count = 1, .reusable = false}, SHIFT(2266), - [5480] = {.count = 1, .reusable = true}, SHIFT(1228), - [5482] = {.count = 1, .reusable = true}, SHIFT(1229), - [5484] = {.count = 1, .reusable = true}, SHIFT(1230), - [5486] = {.count = 1, .reusable = false}, SHIFT(2268), - [5488] = {.count = 1, .reusable = true}, SHIFT(2268), - [5490] = {.count = 1, .reusable = true}, SHIFT(1234), - [5492] = {.count = 1, .reusable = true}, SHIFT(2267), - [5494] = {.count = 1, .reusable = false}, SHIFT(2273), - [5496] = {.count = 1, .reusable = true}, SHIFT(2273), - [5498] = {.count = 1, .reusable = true}, SHIFT(1235), - [5500] = {.count = 1, .reusable = true}, SHIFT(2272), - [5502] = {.count = 1, .reusable = true}, SHIFT(1236), - [5504] = {.count = 1, .reusable = false}, SHIFT(1237), - [5506] = {.count = 1, .reusable = false}, SHIFT(2275), + [5434] = {.count = 1, .reusable = true}, SHIFT(1215), + [5436] = {.count = 1, .reusable = false}, SHIFT(2251), + [5438] = {.count = 1, .reusable = true}, SHIFT(2251), + [5440] = {.count = 1, .reusable = true}, SHIFT(1216), + [5442] = {.count = 1, .reusable = true}, SHIFT(2252), + [5444] = {.count = 1, .reusable = false}, SHIFT(2254), + [5446] = {.count = 1, .reusable = true}, SHIFT(2254), + [5448] = {.count = 1, .reusable = true}, SHIFT(1217), + [5450] = {.count = 1, .reusable = true}, SHIFT(2253), + [5452] = {.count = 1, .reusable = true}, SHIFT(2255), + [5454] = {.count = 1, .reusable = false}, SHIFT(2255), + [5456] = {.count = 1, .reusable = true}, SHIFT(1218), + [5458] = {.count = 1, .reusable = true}, SHIFT(1219), + [5460] = {.count = 1, .reusable = true}, SHIFT(1220), + [5462] = {.count = 1, .reusable = false}, SHIFT(2258), + [5464] = {.count = 1, .reusable = true}, SHIFT(2258), + [5466] = {.count = 1, .reusable = false}, SHIFT(2259), + [5468] = {.count = 1, .reusable = true}, SHIFT(2259), + [5470] = {.count = 1, .reusable = true}, SHIFT(1221), + [5472] = {.count = 1, .reusable = true}, SHIFT(1222), + [5474] = {.count = 1, .reusable = true}, SHIFT(1223), + [5476] = {.count = 1, .reusable = true}, SHIFT(1224), + [5478] = {.count = 1, .reusable = false}, SHIFT(2265), + [5480] = {.count = 1, .reusable = false}, SHIFT(1227), + [5482] = {.count = 1, .reusable = true}, SHIFT(1236), + [5484] = {.count = 1, .reusable = true}, SHIFT(1237), + [5486] = {.count = 1, .reusable = false}, SHIFT(1238), + [5488] = {.count = 1, .reusable = false}, SHIFT(2272), + [5490] = {.count = 1, .reusable = true}, SHIFT(1239), + [5492] = {.count = 1, .reusable = true}, SHIFT(1240), + [5494] = {.count = 1, .reusable = false}, SHIFT(2274), + [5496] = {.count = 1, .reusable = true}, SHIFT(2274), + [5498] = {.count = 1, .reusable = true}, SHIFT(1241), + [5500] = {.count = 1, .reusable = true}, SHIFT(2273), + [5502] = {.count = 1, .reusable = false}, SHIFT(2276), + [5504] = {.count = 1, .reusable = true}, SHIFT(2276), + [5506] = {.count = 1, .reusable = true}, SHIFT(1242), [5508] = {.count = 1, .reusable = true}, SHIFT(2275), - [5510] = {.count = 1, .reusable = true}, SHIFT(1239), - [5512] = {.count = 1, .reusable = true}, SHIFT(2274), - [5514] = {.count = 1, .reusable = true}, SHIFT(2276), - [5516] = {.count = 1, .reusable = false}, SHIFT(2279), - [5518] = {.count = 1, .reusable = true}, SHIFT(2279), - [5520] = {.count = 1, .reusable = true}, SHIFT(1240), - [5522] = {.count = 1, .reusable = true}, SHIFT(2278), - [5524] = {.count = 1, .reusable = false}, SHIFT(2280), - [5526] = {.count = 1, .reusable = true}, SHIFT(2280), - [5528] = {.count = 1, .reusable = false}, SHIFT(2284), - [5530] = {.count = 1, .reusable = true}, SHIFT(2284), - [5532] = {.count = 1, .reusable = true}, SHIFT(1241), - [5534] = {.count = 1, .reusable = true}, SHIFT(2283), - [5536] = {.count = 1, .reusable = false}, SHIFT(2285), - [5538] = {.count = 1, .reusable = true}, SHIFT(2285), - [5540] = {.count = 1, .reusable = true}, SHIFT(1242), - [5542] = {.count = 1, .reusable = true}, SHIFT(2286), - [5544] = {.count = 1, .reusable = false}, SHIFT(2287), - [5546] = {.count = 1, .reusable = true}, SHIFT(2287), - [5548] = {.count = 1, .reusable = false}, SHIFT(2291), - [5550] = {.count = 1, .reusable = true}, SHIFT(2291), - [5552] = {.count = 1, .reusable = true}, SHIFT(1243), - [5554] = {.count = 1, .reusable = true}, SHIFT(2290), - [5556] = {.count = 1, .reusable = true}, SHIFT(1244), - [5558] = {.count = 1, .reusable = false}, SHIFT(2292), - [5560] = {.count = 1, .reusable = true}, SHIFT(2292), - [5562] = {.count = 1, .reusable = true}, SHIFT(1245), - [5564] = {.count = 1, .reusable = true}, SHIFT(1246), - [5566] = {.count = 1, .reusable = false}, SHIFT(2293), - [5568] = {.count = 1, .reusable = true}, SHIFT(2293), - [5570] = {.count = 1, .reusable = true}, SHIFT(1247), - [5572] = {.count = 1, .reusable = false}, SHIFT(2294), - [5574] = {.count = 1, .reusable = true}, SHIFT(2294), - [5576] = {.count = 1, .reusable = true}, SHIFT(1248), - [5578] = {.count = 1, .reusable = true}, SHIFT(1249), - [5580] = {.count = 1, .reusable = true}, SHIFT(1250), - [5582] = {.count = 1, .reusable = true}, SHIFT(1251), - [5584] = {.count = 1, .reusable = false}, SHIFT(1253), - [5586] = {.count = 1, .reusable = false}, SHIFT(2297), - [5588] = {.count = 1, .reusable = true}, SHIFT(1321), - [5590] = {.count = 1, .reusable = true}, SHIFT(1322), - [5592] = {.count = 1, .reusable = true}, SHIFT(1257), - [5594] = {.count = 1, .reusable = false}, SHIFT(1260), - [5596] = {.count = 1, .reusable = false}, SHIFT(2307), - [5598] = {.count = 1, .reusable = true}, SHIFT(1261), - [5600] = {.count = 1, .reusable = true}, SHIFT(1262), - [5602] = {.count = 1, .reusable = true}, SHIFT(1263), - [5604] = {.count = 1, .reusable = false}, SHIFT(2309), - [5606] = {.count = 1, .reusable = true}, SHIFT(2309), - [5608] = {.count = 1, .reusable = true}, SHIFT(1267), - [5610] = {.count = 1, .reusable = true}, SHIFT(2308), - [5612] = {.count = 1, .reusable = false}, SHIFT(2314), - [5614] = {.count = 1, .reusable = true}, SHIFT(2314), - [5616] = {.count = 1, .reusable = true}, SHIFT(1268), - [5618] = {.count = 1, .reusable = true}, SHIFT(2313), - [5620] = {.count = 1, .reusable = true}, SHIFT(1269), - [5622] = {.count = 1, .reusable = false}, SHIFT(1270), - [5624] = {.count = 1, .reusable = false}, SHIFT(2316), + [5510] = {.count = 1, .reusable = false}, SHIFT(1244), + [5512] = {.count = 1, .reusable = false}, SHIFT(2281), + [5514] = {.count = 1, .reusable = true}, SHIFT(2281), + [5516] = {.count = 1, .reusable = true}, SHIFT(1245), + [5518] = {.count = 1, .reusable = true}, SHIFT(2280), + [5520] = {.count = 1, .reusable = false}, SHIFT(2283), + [5522] = {.count = 1, .reusable = true}, SHIFT(2283), + [5524] = {.count = 1, .reusable = true}, SHIFT(1246), + [5526] = {.count = 1, .reusable = true}, SHIFT(2282), + [5528] = {.count = 1, .reusable = true}, SHIFT(2284), + [5530] = {.count = 1, .reusable = false}, SHIFT(2286), + [5532] = {.count = 1, .reusable = true}, SHIFT(2286), + [5534] = {.count = 1, .reusable = true}, SHIFT(1247), + [5536] = {.count = 1, .reusable = true}, SHIFT(2285), + [5538] = {.count = 1, .reusable = true}, SHIFT(2288), + [5540] = {.count = 1, .reusable = false}, SHIFT(2288), + [5542] = {.count = 1, .reusable = false}, SHIFT(2291), + [5544] = {.count = 1, .reusable = true}, SHIFT(2291), + [5546] = {.count = 1, .reusable = true}, SHIFT(1248), + [5548] = {.count = 1, .reusable = false}, SHIFT(2292), + [5550] = {.count = 1, .reusable = true}, SHIFT(2292), + [5552] = {.count = 1, .reusable = true}, SHIFT(1249), + [5554] = {.count = 1, .reusable = true}, SHIFT(2293), + [5556] = {.count = 1, .reusable = false}, SHIFT(2295), + [5558] = {.count = 1, .reusable = true}, SHIFT(2295), + [5560] = {.count = 1, .reusable = true}, SHIFT(1250), + [5562] = {.count = 1, .reusable = true}, SHIFT(2294), + [5564] = {.count = 1, .reusable = true}, SHIFT(2296), + [5566] = {.count = 1, .reusable = false}, SHIFT(2296), + [5568] = {.count = 1, .reusable = true}, SHIFT(1251), + [5570] = {.count = 1, .reusable = true}, SHIFT(1252), + [5572] = {.count = 1, .reusable = true}, SHIFT(1253), + [5574] = {.count = 1, .reusable = false}, SHIFT(2299), + [5576] = {.count = 1, .reusable = true}, SHIFT(2299), + [5578] = {.count = 1, .reusable = false}, SHIFT(2300), + [5580] = {.count = 1, .reusable = true}, SHIFT(2300), + [5582] = {.count = 1, .reusable = true}, SHIFT(1254), + [5584] = {.count = 1, .reusable = true}, SHIFT(1255), + [5586] = {.count = 1, .reusable = true}, SHIFT(1256), + [5588] = {.count = 1, .reusable = true}, SHIFT(1257), + [5590] = {.count = 1, .reusable = false}, SHIFT(2306), + [5592] = {.count = 1, .reusable = false}, SHIFT(1260), + [5594] = {.count = 1, .reusable = true}, SHIFT(1327), + [5596] = {.count = 1, .reusable = true}, SHIFT(1328), + [5598] = {.count = 1, .reusable = true}, SHIFT(1263), + [5600] = {.count = 1, .reusable = true}, SHIFT(1269), + [5602] = {.count = 1, .reusable = true}, SHIFT(1270), + [5604] = {.count = 1, .reusable = false}, SHIFT(1271), + [5606] = {.count = 1, .reusable = false}, SHIFT(2313), + [5608] = {.count = 1, .reusable = true}, SHIFT(1272), + [5610] = {.count = 1, .reusable = true}, SHIFT(1273), + [5612] = {.count = 1, .reusable = false}, SHIFT(2315), + [5614] = {.count = 1, .reusable = true}, SHIFT(2315), + [5616] = {.count = 1, .reusable = true}, SHIFT(1274), + [5618] = {.count = 1, .reusable = true}, SHIFT(2314), + [5620] = {.count = 1, .reusable = false}, SHIFT(2317), + [5622] = {.count = 1, .reusable = true}, SHIFT(2317), + [5624] = {.count = 1, .reusable = true}, SHIFT(1275), [5626] = {.count = 1, .reusable = true}, SHIFT(2316), - [5628] = {.count = 1, .reusable = true}, SHIFT(1272), - [5630] = {.count = 1, .reusable = true}, SHIFT(2315), - [5632] = {.count = 1, .reusable = true}, SHIFT(2317), - [5634] = {.count = 1, .reusable = false}, SHIFT(2320), - [5636] = {.count = 1, .reusable = true}, SHIFT(2320), - [5638] = {.count = 1, .reusable = true}, SHIFT(1273), - [5640] = {.count = 1, .reusable = true}, SHIFT(2319), - [5642] = {.count = 1, .reusable = false}, SHIFT(2321), - [5644] = {.count = 1, .reusable = true}, SHIFT(2321), - [5646] = {.count = 1, .reusable = false}, SHIFT(2325), - [5648] = {.count = 1, .reusable = true}, SHIFT(2325), - [5650] = {.count = 1, .reusable = true}, SHIFT(1274), - [5652] = {.count = 1, .reusable = true}, SHIFT(2324), - [5654] = {.count = 1, .reusable = false}, SHIFT(2326), - [5656] = {.count = 1, .reusable = true}, SHIFT(2326), - [5658] = {.count = 1, .reusable = true}, SHIFT(1275), - [5660] = {.count = 1, .reusable = true}, SHIFT(2327), - [5662] = {.count = 1, .reusable = false}, SHIFT(2328), - [5664] = {.count = 1, .reusable = true}, SHIFT(2328), - [5666] = {.count = 1, .reusable = false}, SHIFT(2332), - [5668] = {.count = 1, .reusable = true}, SHIFT(2332), - [5670] = {.count = 1, .reusable = true}, SHIFT(1276), - [5672] = {.count = 1, .reusable = true}, SHIFT(2331), - [5674] = {.count = 1, .reusable = true}, SHIFT(1277), - [5676] = {.count = 1, .reusable = false}, SHIFT(2333), - [5678] = {.count = 1, .reusable = true}, SHIFT(2333), - [5680] = {.count = 1, .reusable = true}, SHIFT(1278), - [5682] = {.count = 1, .reusable = true}, SHIFT(1279), - [5684] = {.count = 1, .reusable = false}, SHIFT(2334), - [5686] = {.count = 1, .reusable = true}, SHIFT(2334), - [5688] = {.count = 1, .reusable = true}, SHIFT(1280), - [5690] = {.count = 1, .reusable = false}, SHIFT(2335), - [5692] = {.count = 1, .reusable = true}, SHIFT(2335), - [5694] = {.count = 1, .reusable = true}, SHIFT(1281), - [5696] = {.count = 1, .reusable = true}, SHIFT(1282), - [5698] = {.count = 1, .reusable = true}, SHIFT(1283), - [5700] = {.count = 1, .reusable = true}, SHIFT(1284), - [5702] = {.count = 1, .reusable = false}, SHIFT(1286), - [5704] = {.count = 1, .reusable = false}, SHIFT(2338), - [5706] = {.count = 1, .reusable = true}, SHIFT(1354), - [5708] = {.count = 1, .reusable = true}, SHIFT(1355), - [5710] = {.count = 1, .reusable = true}, SHIFT(1290), - [5712] = {.count = 1, .reusable = false}, SHIFT(1293), - [5714] = {.count = 1, .reusable = false}, SHIFT(2348), - [5716] = {.count = 1, .reusable = true}, SHIFT(1294), - [5718] = {.count = 1, .reusable = true}, SHIFT(1295), - [5720] = {.count = 1, .reusable = true}, SHIFT(1296), - [5722] = {.count = 1, .reusable = false}, SHIFT(2350), - [5724] = {.count = 1, .reusable = true}, SHIFT(2350), - [5726] = {.count = 1, .reusable = true}, SHIFT(1300), - [5728] = {.count = 1, .reusable = true}, SHIFT(2349), - [5730] = {.count = 1, .reusable = false}, SHIFT(2355), - [5732] = {.count = 1, .reusable = true}, SHIFT(2355), - [5734] = {.count = 1, .reusable = true}, SHIFT(1301), - [5736] = {.count = 1, .reusable = true}, SHIFT(2354), - [5738] = {.count = 1, .reusable = true}, SHIFT(1302), - [5740] = {.count = 1, .reusable = false}, SHIFT(1303), - [5742] = {.count = 1, .reusable = false}, SHIFT(2357), + [5628] = {.count = 1, .reusable = false}, SHIFT(1277), + [5630] = {.count = 1, .reusable = false}, SHIFT(2322), + [5632] = {.count = 1, .reusable = true}, SHIFT(2322), + [5634] = {.count = 1, .reusable = true}, SHIFT(1278), + [5636] = {.count = 1, .reusable = true}, SHIFT(2321), + [5638] = {.count = 1, .reusable = false}, SHIFT(2324), + [5640] = {.count = 1, .reusable = true}, SHIFT(2324), + [5642] = {.count = 1, .reusable = true}, SHIFT(1279), + [5644] = {.count = 1, .reusable = true}, SHIFT(2323), + [5646] = {.count = 1, .reusable = true}, SHIFT(2325), + [5648] = {.count = 1, .reusable = false}, SHIFT(2327), + [5650] = {.count = 1, .reusable = true}, SHIFT(2327), + [5652] = {.count = 1, .reusable = true}, SHIFT(1280), + [5654] = {.count = 1, .reusable = true}, SHIFT(2326), + [5656] = {.count = 1, .reusable = true}, SHIFT(2329), + [5658] = {.count = 1, .reusable = false}, SHIFT(2329), + [5660] = {.count = 1, .reusable = false}, SHIFT(2332), + [5662] = {.count = 1, .reusable = true}, SHIFT(2332), + [5664] = {.count = 1, .reusable = true}, SHIFT(1281), + [5666] = {.count = 1, .reusable = false}, SHIFT(2333), + [5668] = {.count = 1, .reusable = true}, SHIFT(2333), + [5670] = {.count = 1, .reusable = true}, SHIFT(1282), + [5672] = {.count = 1, .reusable = true}, SHIFT(2334), + [5674] = {.count = 1, .reusable = false}, SHIFT(2336), + [5676] = {.count = 1, .reusable = true}, SHIFT(2336), + [5678] = {.count = 1, .reusable = true}, SHIFT(1283), + [5680] = {.count = 1, .reusable = true}, SHIFT(2335), + [5682] = {.count = 1, .reusable = true}, SHIFT(2337), + [5684] = {.count = 1, .reusable = false}, SHIFT(2337), + [5686] = {.count = 1, .reusable = true}, SHIFT(1284), + [5688] = {.count = 1, .reusable = true}, SHIFT(1285), + [5690] = {.count = 1, .reusable = true}, SHIFT(1286), + [5692] = {.count = 1, .reusable = false}, SHIFT(2340), + [5694] = {.count = 1, .reusable = true}, SHIFT(2340), + [5696] = {.count = 1, .reusable = false}, SHIFT(2341), + [5698] = {.count = 1, .reusable = true}, SHIFT(2341), + [5700] = {.count = 1, .reusable = true}, SHIFT(1287), + [5702] = {.count = 1, .reusable = true}, SHIFT(1288), + [5704] = {.count = 1, .reusable = true}, SHIFT(1289), + [5706] = {.count = 1, .reusable = true}, SHIFT(1290), + [5708] = {.count = 1, .reusable = false}, SHIFT(2347), + [5710] = {.count = 1, .reusable = false}, SHIFT(1293), + [5712] = {.count = 1, .reusable = true}, SHIFT(1360), + [5714] = {.count = 1, .reusable = true}, SHIFT(1361), + [5716] = {.count = 1, .reusable = true}, SHIFT(1296), + [5718] = {.count = 1, .reusable = true}, SHIFT(1302), + [5720] = {.count = 1, .reusable = true}, SHIFT(1303), + [5722] = {.count = 1, .reusable = false}, SHIFT(1304), + [5724] = {.count = 1, .reusable = false}, SHIFT(2354), + [5726] = {.count = 1, .reusable = true}, SHIFT(1305), + [5728] = {.count = 1, .reusable = true}, SHIFT(1306), + [5730] = {.count = 1, .reusable = false}, SHIFT(2356), + [5732] = {.count = 1, .reusable = true}, SHIFT(2356), + [5734] = {.count = 1, .reusable = true}, SHIFT(1307), + [5736] = {.count = 1, .reusable = true}, SHIFT(2355), + [5738] = {.count = 1, .reusable = false}, SHIFT(2358), + [5740] = {.count = 1, .reusable = true}, SHIFT(2358), + [5742] = {.count = 1, .reusable = true}, SHIFT(1308), [5744] = {.count = 1, .reusable = true}, SHIFT(2357), - [5746] = {.count = 1, .reusable = true}, SHIFT(1305), - [5748] = {.count = 1, .reusable = true}, SHIFT(2356), - [5750] = {.count = 1, .reusable = true}, SHIFT(2358), - [5752] = {.count = 1, .reusable = false}, SHIFT(2361), - [5754] = {.count = 1, .reusable = true}, SHIFT(2361), - [5756] = {.count = 1, .reusable = true}, SHIFT(1306), - [5758] = {.count = 1, .reusable = true}, SHIFT(2360), - [5760] = {.count = 1, .reusable = false}, SHIFT(2362), - [5762] = {.count = 1, .reusable = true}, SHIFT(2362), - [5764] = {.count = 1, .reusable = false}, SHIFT(2366), - [5766] = {.count = 1, .reusable = true}, SHIFT(2366), - [5768] = {.count = 1, .reusable = true}, SHIFT(1307), - [5770] = {.count = 1, .reusable = true}, SHIFT(2365), - [5772] = {.count = 1, .reusable = false}, SHIFT(2367), - [5774] = {.count = 1, .reusable = true}, SHIFT(2367), - [5776] = {.count = 1, .reusable = true}, SHIFT(1308), - [5778] = {.count = 1, .reusable = true}, SHIFT(2368), - [5780] = {.count = 1, .reusable = false}, SHIFT(2369), - [5782] = {.count = 1, .reusable = true}, SHIFT(2369), - [5784] = {.count = 1, .reusable = false}, SHIFT(2373), - [5786] = {.count = 1, .reusable = true}, SHIFT(2373), - [5788] = {.count = 1, .reusable = true}, SHIFT(1309), - [5790] = {.count = 1, .reusable = true}, SHIFT(2372), - [5792] = {.count = 1, .reusable = true}, SHIFT(1310), - [5794] = {.count = 1, .reusable = false}, SHIFT(2374), - [5796] = {.count = 1, .reusable = true}, SHIFT(2374), - [5798] = {.count = 1, .reusable = true}, SHIFT(1311), - [5800] = {.count = 1, .reusable = true}, SHIFT(1312), - [5802] = {.count = 1, .reusable = false}, SHIFT(2375), - [5804] = {.count = 1, .reusable = true}, SHIFT(2375), - [5806] = {.count = 1, .reusable = true}, SHIFT(1313), - [5808] = {.count = 1, .reusable = false}, SHIFT(2376), - [5810] = {.count = 1, .reusable = true}, SHIFT(2376), - [5812] = {.count = 1, .reusable = true}, SHIFT(1314), - [5814] = {.count = 1, .reusable = true}, SHIFT(1315), - [5816] = {.count = 1, .reusable = true}, SHIFT(1316), - [5818] = {.count = 1, .reusable = true}, SHIFT(1317), - [5820] = {.count = 1, .reusable = false}, SHIFT(1319), - [5822] = {.count = 1, .reusable = false}, SHIFT(2379), - [5824] = {.count = 1, .reusable = true}, SHIFT(1384), - [5826] = {.count = 1, .reusable = true}, SHIFT(1385), - [5828] = {.count = 1, .reusable = true}, SHIFT(1323), - [5830] = {.count = 1, .reusable = false}, SHIFT(1326), - [5832] = {.count = 1, .reusable = false}, SHIFT(2389), - [5834] = {.count = 1, .reusable = true}, SHIFT(1327), - [5836] = {.count = 1, .reusable = true}, SHIFT(1328), - [5838] = {.count = 1, .reusable = true}, SHIFT(1329), - [5840] = {.count = 1, .reusable = false}, SHIFT(2391), - [5842] = {.count = 1, .reusable = true}, SHIFT(2391), - [5844] = {.count = 1, .reusable = true}, SHIFT(1333), - [5846] = {.count = 1, .reusable = true}, SHIFT(2390), - [5848] = {.count = 1, .reusable = false}, SHIFT(2396), - [5850] = {.count = 1, .reusable = true}, SHIFT(2396), - [5852] = {.count = 1, .reusable = true}, SHIFT(1334), - [5854] = {.count = 1, .reusable = true}, SHIFT(2395), - [5856] = {.count = 1, .reusable = true}, SHIFT(1335), - [5858] = {.count = 1, .reusable = false}, SHIFT(1336), - [5860] = {.count = 1, .reusable = false}, SHIFT(2398), + [5746] = {.count = 1, .reusable = false}, SHIFT(1310), + [5748] = {.count = 1, .reusable = false}, SHIFT(2363), + [5750] = {.count = 1, .reusable = true}, SHIFT(2363), + [5752] = {.count = 1, .reusable = true}, SHIFT(1311), + [5754] = {.count = 1, .reusable = true}, SHIFT(2362), + [5756] = {.count = 1, .reusable = false}, SHIFT(2365), + [5758] = {.count = 1, .reusable = true}, SHIFT(2365), + [5760] = {.count = 1, .reusable = true}, SHIFT(1312), + [5762] = {.count = 1, .reusable = true}, SHIFT(2364), + [5764] = {.count = 1, .reusable = true}, SHIFT(2366), + [5766] = {.count = 1, .reusable = false}, SHIFT(2368), + [5768] = {.count = 1, .reusable = true}, SHIFT(2368), + [5770] = {.count = 1, .reusable = true}, SHIFT(1313), + [5772] = {.count = 1, .reusable = true}, SHIFT(2367), + [5774] = {.count = 1, .reusable = true}, SHIFT(2370), + [5776] = {.count = 1, .reusable = false}, SHIFT(2370), + [5778] = {.count = 1, .reusable = false}, SHIFT(2373), + [5780] = {.count = 1, .reusable = true}, SHIFT(2373), + [5782] = {.count = 1, .reusable = true}, SHIFT(1314), + [5784] = {.count = 1, .reusable = false}, SHIFT(2374), + [5786] = {.count = 1, .reusable = true}, SHIFT(2374), + [5788] = {.count = 1, .reusable = true}, SHIFT(1315), + [5790] = {.count = 1, .reusable = true}, SHIFT(2375), + [5792] = {.count = 1, .reusable = false}, SHIFT(2377), + [5794] = {.count = 1, .reusable = true}, SHIFT(2377), + [5796] = {.count = 1, .reusable = true}, SHIFT(1316), + [5798] = {.count = 1, .reusable = true}, SHIFT(2376), + [5800] = {.count = 1, .reusable = true}, SHIFT(2378), + [5802] = {.count = 1, .reusable = false}, SHIFT(2378), + [5804] = {.count = 1, .reusable = true}, SHIFT(1317), + [5806] = {.count = 1, .reusable = true}, SHIFT(1318), + [5808] = {.count = 1, .reusable = true}, SHIFT(1319), + [5810] = {.count = 1, .reusable = false}, SHIFT(2381), + [5812] = {.count = 1, .reusable = true}, SHIFT(2381), + [5814] = {.count = 1, .reusable = false}, SHIFT(2382), + [5816] = {.count = 1, .reusable = true}, SHIFT(2382), + [5818] = {.count = 1, .reusable = true}, SHIFT(1320), + [5820] = {.count = 1, .reusable = true}, SHIFT(1321), + [5822] = {.count = 1, .reusable = true}, SHIFT(1322), + [5824] = {.count = 1, .reusable = true}, SHIFT(1323), + [5826] = {.count = 1, .reusable = false}, SHIFT(2388), + [5828] = {.count = 1, .reusable = false}, SHIFT(1326), + [5830] = {.count = 1, .reusable = true}, SHIFT(1390), + [5832] = {.count = 1, .reusable = true}, SHIFT(1391), + [5834] = {.count = 1, .reusable = true}, SHIFT(1329), + [5836] = {.count = 1, .reusable = true}, SHIFT(1335), + [5838] = {.count = 1, .reusable = true}, SHIFT(1336), + [5840] = {.count = 1, .reusable = false}, SHIFT(1337), + [5842] = {.count = 1, .reusable = false}, SHIFT(2395), + [5844] = {.count = 1, .reusable = true}, SHIFT(1338), + [5846] = {.count = 1, .reusable = true}, SHIFT(1339), + [5848] = {.count = 1, .reusable = false}, SHIFT(2397), + [5850] = {.count = 1, .reusable = true}, SHIFT(2397), + [5852] = {.count = 1, .reusable = true}, SHIFT(1340), + [5854] = {.count = 1, .reusable = true}, SHIFT(2396), + [5856] = {.count = 1, .reusable = false}, SHIFT(2399), + [5858] = {.count = 1, .reusable = true}, SHIFT(2399), + [5860] = {.count = 1, .reusable = true}, SHIFT(1341), [5862] = {.count = 1, .reusable = true}, SHIFT(2398), - [5864] = {.count = 1, .reusable = true}, SHIFT(1338), - [5866] = {.count = 1, .reusable = true}, SHIFT(2397), - [5868] = {.count = 1, .reusable = true}, SHIFT(2399), - [5870] = {.count = 1, .reusable = false}, SHIFT(2402), - [5872] = {.count = 1, .reusable = true}, SHIFT(2402), - [5874] = {.count = 1, .reusable = true}, SHIFT(1339), - [5876] = {.count = 1, .reusable = true}, SHIFT(2401), - [5878] = {.count = 1, .reusable = false}, SHIFT(2403), - [5880] = {.count = 1, .reusable = true}, SHIFT(2403), - [5882] = {.count = 1, .reusable = false}, SHIFT(2407), - [5884] = {.count = 1, .reusable = true}, SHIFT(2407), - [5886] = {.count = 1, .reusable = true}, SHIFT(1340), - [5888] = {.count = 1, .reusable = true}, SHIFT(2406), - [5890] = {.count = 1, .reusable = false}, SHIFT(2408), - [5892] = {.count = 1, .reusable = true}, SHIFT(2408), - [5894] = {.count = 1, .reusable = true}, SHIFT(1341), - [5896] = {.count = 1, .reusable = true}, SHIFT(2409), - [5898] = {.count = 1, .reusable = false}, SHIFT(2410), - [5900] = {.count = 1, .reusable = true}, SHIFT(2410), - [5902] = {.count = 1, .reusable = false}, SHIFT(2414), - [5904] = {.count = 1, .reusable = true}, SHIFT(2414), - [5906] = {.count = 1, .reusable = true}, SHIFT(1342), - [5908] = {.count = 1, .reusable = true}, SHIFT(2413), - [5910] = {.count = 1, .reusable = true}, SHIFT(1343), - [5912] = {.count = 1, .reusable = false}, SHIFT(2415), - [5914] = {.count = 1, .reusable = true}, SHIFT(2415), - [5916] = {.count = 1, .reusable = true}, SHIFT(1344), - [5918] = {.count = 1, .reusable = true}, SHIFT(1345), - [5920] = {.count = 1, .reusable = false}, SHIFT(2416), - [5922] = {.count = 1, .reusable = true}, SHIFT(2416), - [5924] = {.count = 1, .reusable = true}, SHIFT(1346), - [5926] = {.count = 1, .reusable = false}, SHIFT(2417), - [5928] = {.count = 1, .reusable = true}, SHIFT(2417), - [5930] = {.count = 1, .reusable = true}, SHIFT(1347), - [5932] = {.count = 1, .reusable = true}, SHIFT(1348), - [5934] = {.count = 1, .reusable = true}, SHIFT(1349), - [5936] = {.count = 1, .reusable = true}, SHIFT(1350), - [5938] = {.count = 1, .reusable = false}, SHIFT(1352), - [5940] = {.count = 1, .reusable = false}, SHIFT(2420), - [5942] = {.count = 1, .reusable = true}, SHIFT(1405), - [5944] = {.count = 1, .reusable = true}, SHIFT(1406), - [5946] = {.count = 1, .reusable = true}, SHIFT(1356), - [5948] = {.count = 1, .reusable = false}, SHIFT(1359), - [5950] = {.count = 1, .reusable = false}, SHIFT(2430), - [5952] = {.count = 1, .reusable = true}, SHIFT(1360), - [5954] = {.count = 1, .reusable = true}, SHIFT(1361), - [5956] = {.count = 1, .reusable = true}, SHIFT(1362), - [5958] = {.count = 1, .reusable = false}, SHIFT(2432), - [5960] = {.count = 1, .reusable = true}, SHIFT(2432), - [5962] = {.count = 1, .reusable = true}, SHIFT(1366), - [5964] = {.count = 1, .reusable = true}, SHIFT(2431), - [5966] = {.count = 1, .reusable = false}, SHIFT(2437), - [5968] = {.count = 1, .reusable = true}, SHIFT(2437), - [5970] = {.count = 1, .reusable = true}, SHIFT(1367), - [5972] = {.count = 1, .reusable = true}, SHIFT(2436), - [5974] = {.count = 1, .reusable = true}, SHIFT(1368), - [5976] = {.count = 1, .reusable = false}, SHIFT(1369), - [5978] = {.count = 1, .reusable = false}, SHIFT(2439), + [5864] = {.count = 1, .reusable = false}, SHIFT(1343), + [5866] = {.count = 1, .reusable = false}, SHIFT(2404), + [5868] = {.count = 1, .reusable = true}, SHIFT(2404), + [5870] = {.count = 1, .reusable = true}, SHIFT(1344), + [5872] = {.count = 1, .reusable = true}, SHIFT(2403), + [5874] = {.count = 1, .reusable = false}, SHIFT(2406), + [5876] = {.count = 1, .reusable = true}, SHIFT(2406), + [5878] = {.count = 1, .reusable = true}, SHIFT(1345), + [5880] = {.count = 1, .reusable = true}, SHIFT(2405), + [5882] = {.count = 1, .reusable = true}, SHIFT(2407), + [5884] = {.count = 1, .reusable = false}, SHIFT(2409), + [5886] = {.count = 1, .reusable = true}, SHIFT(2409), + [5888] = {.count = 1, .reusable = true}, SHIFT(1346), + [5890] = {.count = 1, .reusable = true}, SHIFT(2408), + [5892] = {.count = 1, .reusable = true}, SHIFT(2411), + [5894] = {.count = 1, .reusable = false}, SHIFT(2411), + [5896] = {.count = 1, .reusable = false}, SHIFT(2414), + [5898] = {.count = 1, .reusable = true}, SHIFT(2414), + [5900] = {.count = 1, .reusable = true}, SHIFT(1347), + [5902] = {.count = 1, .reusable = false}, SHIFT(2415), + [5904] = {.count = 1, .reusable = true}, SHIFT(2415), + [5906] = {.count = 1, .reusable = true}, SHIFT(1348), + [5908] = {.count = 1, .reusable = true}, SHIFT(2416), + [5910] = {.count = 1, .reusable = false}, SHIFT(2418), + [5912] = {.count = 1, .reusable = true}, SHIFT(2418), + [5914] = {.count = 1, .reusable = true}, SHIFT(1349), + [5916] = {.count = 1, .reusable = true}, SHIFT(2417), + [5918] = {.count = 1, .reusable = true}, SHIFT(2419), + [5920] = {.count = 1, .reusable = false}, SHIFT(2419), + [5922] = {.count = 1, .reusable = true}, SHIFT(1350), + [5924] = {.count = 1, .reusable = true}, SHIFT(1351), + [5926] = {.count = 1, .reusable = true}, SHIFT(1352), + [5928] = {.count = 1, .reusable = false}, SHIFT(2422), + [5930] = {.count = 1, .reusable = true}, SHIFT(2422), + [5932] = {.count = 1, .reusable = false}, SHIFT(2423), + [5934] = {.count = 1, .reusable = true}, SHIFT(2423), + [5936] = {.count = 1, .reusable = true}, SHIFT(1353), + [5938] = {.count = 1, .reusable = true}, SHIFT(1354), + [5940] = {.count = 1, .reusable = true}, SHIFT(1355), + [5942] = {.count = 1, .reusable = true}, SHIFT(1356), + [5944] = {.count = 1, .reusable = false}, SHIFT(2429), + [5946] = {.count = 1, .reusable = false}, SHIFT(1359), + [5948] = {.count = 1, .reusable = true}, SHIFT(1411), + [5950] = {.count = 1, .reusable = true}, SHIFT(1412), + [5952] = {.count = 1, .reusable = true}, SHIFT(1362), + [5954] = {.count = 1, .reusable = true}, SHIFT(1368), + [5956] = {.count = 1, .reusable = true}, SHIFT(1369), + [5958] = {.count = 1, .reusable = false}, SHIFT(1370), + [5960] = {.count = 1, .reusable = false}, SHIFT(2436), + [5962] = {.count = 1, .reusable = true}, SHIFT(1371), + [5964] = {.count = 1, .reusable = true}, SHIFT(1372), + [5966] = {.count = 1, .reusable = false}, SHIFT(2438), + [5968] = {.count = 1, .reusable = true}, SHIFT(2438), + [5970] = {.count = 1, .reusable = true}, SHIFT(1373), + [5972] = {.count = 1, .reusable = true}, SHIFT(2437), + [5974] = {.count = 1, .reusable = false}, SHIFT(2440), + [5976] = {.count = 1, .reusable = true}, SHIFT(2440), + [5978] = {.count = 1, .reusable = true}, SHIFT(1374), [5980] = {.count = 1, .reusable = true}, SHIFT(2439), - [5982] = {.count = 1, .reusable = true}, SHIFT(1371), - [5984] = {.count = 1, .reusable = true}, SHIFT(2438), - [5986] = {.count = 1, .reusable = true}, SHIFT(2440), - [5988] = {.count = 1, .reusable = false}, SHIFT(2443), - [5990] = {.count = 1, .reusable = true}, SHIFT(2443), - [5992] = {.count = 1, .reusable = true}, SHIFT(1372), - [5994] = {.count = 1, .reusable = true}, SHIFT(2442), - [5996] = {.count = 1, .reusable = false}, SHIFT(2444), - [5998] = {.count = 1, .reusable = true}, SHIFT(2444), - [6000] = {.count = 1, .reusable = false}, SHIFT(2448), - [6002] = {.count = 1, .reusable = true}, SHIFT(2448), - [6004] = {.count = 1, .reusable = true}, SHIFT(1373), - [6006] = {.count = 1, .reusable = true}, SHIFT(2447), - [6008] = {.count = 1, .reusable = false}, SHIFT(2449), - [6010] = {.count = 1, .reusable = true}, SHIFT(2449), - [6012] = {.count = 1, .reusable = true}, SHIFT(1374), - [6014] = {.count = 1, .reusable = true}, SHIFT(2450), - [6016] = {.count = 1, .reusable = false}, SHIFT(2451), - [6018] = {.count = 1, .reusable = true}, SHIFT(2451), - [6020] = {.count = 1, .reusable = false}, SHIFT(2455), - [6022] = {.count = 1, .reusable = true}, SHIFT(2455), - [6024] = {.count = 1, .reusable = true}, SHIFT(1375), - [6026] = {.count = 1, .reusable = true}, SHIFT(2454), - [6028] = {.count = 1, .reusable = true}, SHIFT(1376), - [6030] = {.count = 1, .reusable = false}, SHIFT(2456), - [6032] = {.count = 1, .reusable = true}, SHIFT(2456), - [6034] = {.count = 1, .reusable = true}, SHIFT(1377), - [6036] = {.count = 1, .reusable = true}, SHIFT(1378), - [6038] = {.count = 1, .reusable = false}, SHIFT(2457), - [6040] = {.count = 1, .reusable = true}, SHIFT(2457), - [6042] = {.count = 1, .reusable = true}, SHIFT(1379), - [6044] = {.count = 1, .reusable = false}, SHIFT(2458), - [6046] = {.count = 1, .reusable = true}, SHIFT(2458), - [6048] = {.count = 1, .reusable = true}, SHIFT(1380), - [6050] = {.count = 1, .reusable = true}, SHIFT(1381), - [6052] = {.count = 1, .reusable = true}, SHIFT(1382), - [6054] = {.count = 1, .reusable = true}, SHIFT(1383), - [6056] = {.count = 1, .reusable = true}, SHIFT(1386), - [6058] = {.count = 1, .reusable = true}, SHIFT(1387), - [6060] = {.count = 1, .reusable = false}, SHIFT(2466), - [6062] = {.count = 1, .reusable = true}, SHIFT(2466), - [6064] = {.count = 1, .reusable = true}, SHIFT(1388), - [6066] = {.count = 1, .reusable = true}, SHIFT(2465), - [6068] = {.count = 1, .reusable = false}, SHIFT(2471), - [6070] = {.count = 1, .reusable = true}, SHIFT(2471), - [6072] = {.count = 1, .reusable = true}, SHIFT(1389), - [6074] = {.count = 1, .reusable = true}, SHIFT(2470), - [6076] = {.count = 1, .reusable = true}, SHIFT(1390), - [6078] = {.count = 1, .reusable = false}, SHIFT(2473), - [6080] = {.count = 1, .reusable = true}, SHIFT(2473), - [6082] = {.count = 1, .reusable = true}, SHIFT(1392), - [6084] = {.count = 1, .reusable = true}, SHIFT(2472), - [6086] = {.count = 1, .reusable = true}, SHIFT(2474), - [6088] = {.count = 1, .reusable = false}, SHIFT(2477), - [6090] = {.count = 1, .reusable = true}, SHIFT(2477), - [6092] = {.count = 1, .reusable = true}, SHIFT(1393), - [6094] = {.count = 1, .reusable = true}, SHIFT(2476), - [6096] = {.count = 1, .reusable = false}, SHIFT(2478), - [6098] = {.count = 1, .reusable = true}, SHIFT(2478), - [6100] = {.count = 1, .reusable = false}, SHIFT(2482), - [6102] = {.count = 1, .reusable = true}, SHIFT(2482), - [6104] = {.count = 1, .reusable = true}, SHIFT(1394), - [6106] = {.count = 1, .reusable = true}, SHIFT(2481), - [6108] = {.count = 1, .reusable = false}, SHIFT(2483), - [6110] = {.count = 1, .reusable = true}, SHIFT(2483), - [6112] = {.count = 1, .reusable = true}, SHIFT(1395), - [6114] = {.count = 1, .reusable = true}, SHIFT(2484), - [6116] = {.count = 1, .reusable = false}, SHIFT(2485), - [6118] = {.count = 1, .reusable = true}, SHIFT(2485), - [6120] = {.count = 1, .reusable = false}, SHIFT(2489), - [6122] = {.count = 1, .reusable = true}, SHIFT(2489), - [6124] = {.count = 1, .reusable = true}, SHIFT(1396), - [6126] = {.count = 1, .reusable = true}, SHIFT(2488), - [6128] = {.count = 1, .reusable = true}, SHIFT(1397), - [6130] = {.count = 1, .reusable = false}, SHIFT(2490), - [6132] = {.count = 1, .reusable = true}, SHIFT(2490), - [6134] = {.count = 1, .reusable = true}, SHIFT(1398), - [6136] = {.count = 1, .reusable = true}, SHIFT(1399), - [6138] = {.count = 1, .reusable = false}, SHIFT(2491), - [6140] = {.count = 1, .reusable = true}, SHIFT(2491), - [6142] = {.count = 1, .reusable = true}, SHIFT(1400), - [6144] = {.count = 1, .reusable = false}, SHIFT(2492), - [6146] = {.count = 1, .reusable = true}, SHIFT(2492), - [6148] = {.count = 1, .reusable = true}, SHIFT(1401), - [6150] = {.count = 1, .reusable = true}, SHIFT(1402), - [6152] = {.count = 1, .reusable = true}, SHIFT(1403), - [6154] = {.count = 1, .reusable = true}, SHIFT(1404), - [6156] = {.count = 1, .reusable = true}, SHIFT(1407), - [6158] = {.count = 1, .reusable = false}, SHIFT(2499), - [6160] = {.count = 1, .reusable = true}, SHIFT(2499), - [6162] = {.count = 1, .reusable = true}, SHIFT(1408), - [6164] = {.count = 1, .reusable = true}, SHIFT(2498), - [6166] = {.count = 1, .reusable = false}, SHIFT(2504), - [6168] = {.count = 1, .reusable = true}, SHIFT(2504), - [6170] = {.count = 1, .reusable = true}, SHIFT(1409), - [6172] = {.count = 1, .reusable = true}, SHIFT(2503), - [6174] = {.count = 1, .reusable = true}, SHIFT(1410), - [6176] = {.count = 1, .reusable = false}, SHIFT(2506), - [6178] = {.count = 1, .reusable = true}, SHIFT(2506), - [6180] = {.count = 1, .reusable = true}, SHIFT(1412), - [6182] = {.count = 1, .reusable = true}, SHIFT(2505), - [6184] = {.count = 1, .reusable = true}, SHIFT(2507), - [6186] = {.count = 1, .reusable = false}, SHIFT(2510), - [6188] = {.count = 1, .reusable = true}, SHIFT(2510), - [6190] = {.count = 1, .reusable = true}, SHIFT(1413), - [6192] = {.count = 1, .reusable = true}, SHIFT(2509), - [6194] = {.count = 1, .reusable = false}, SHIFT(2511), - [6196] = {.count = 1, .reusable = true}, SHIFT(2511), - [6198] = {.count = 1, .reusable = false}, SHIFT(2515), - [6200] = {.count = 1, .reusable = true}, SHIFT(2515), - [6202] = {.count = 1, .reusable = true}, SHIFT(1414), - [6204] = {.count = 1, .reusable = true}, SHIFT(2514), - [6206] = {.count = 1, .reusable = false}, SHIFT(2516), - [6208] = {.count = 1, .reusable = true}, SHIFT(2516), - [6210] = {.count = 1, .reusable = true}, SHIFT(1415), - [6212] = {.count = 1, .reusable = true}, SHIFT(2517), - [6214] = {.count = 1, .reusable = false}, SHIFT(2518), - [6216] = {.count = 1, .reusable = true}, SHIFT(2518), - [6218] = {.count = 1, .reusable = false}, SHIFT(2522), - [6220] = {.count = 1, .reusable = true}, SHIFT(2522), - [6222] = {.count = 1, .reusable = true}, SHIFT(1416), - [6224] = {.count = 1, .reusable = true}, SHIFT(2521), - [6226] = {.count = 1, .reusable = true}, SHIFT(1417), - [6228] = {.count = 1, .reusable = false}, SHIFT(2523), - [6230] = {.count = 1, .reusable = true}, SHIFT(2523), - [6232] = {.count = 1, .reusable = true}, SHIFT(1418), - [6234] = {.count = 1, .reusable = true}, SHIFT(1419), - [6236] = {.count = 1, .reusable = false}, SHIFT(2524), - [6238] = {.count = 1, .reusable = true}, SHIFT(2524), - [6240] = {.count = 1, .reusable = true}, SHIFT(1420), - [6242] = {.count = 1, .reusable = false}, SHIFT(2525), - [6244] = {.count = 1, .reusable = true}, SHIFT(2525), - [6246] = {.count = 1, .reusable = true}, SHIFT(1421), - [6248] = {.count = 1, .reusable = true}, SHIFT(1422), - [6250] = {.count = 1, .reusable = true}, SHIFT(1423), - [6252] = {.count = 1, .reusable = true}, SHIFT(1424), - [6254] = {.count = 1, .reusable = true}, SHIFT(1438), - [6256] = {.count = 1, .reusable = false}, SHIFT(1443), - [6258] = {.count = 1, .reusable = true}, SHIFT(2542), - [6260] = {.count = 1, .reusable = true}, SHIFT(2543), - [6262] = {.count = 1, .reusable = true}, SHIFT(1443), - [6264] = {.count = 1, .reusable = true}, SHIFT(1444), - [6266] = {.count = 1, .reusable = true}, SHIFT(1445), - [6268] = {.count = 1, .reusable = true}, SHIFT(1446), - [6270] = {.count = 1, .reusable = false}, SHIFT(1446), - [6272] = {.count = 1, .reusable = true}, SHIFT(1455), - [6274] = {.count = 1, .reusable = false}, SHIFT(1458), - [6276] = {.count = 1, .reusable = true}, SHIFT(2550), - [6278] = {.count = 1, .reusable = true}, SHIFT(1458), - [6280] = {.count = 1, .reusable = true}, SHIFT(1459), - [6282] = {.count = 1, .reusable = true}, SHIFT(1460), - [6284] = {.count = 1, .reusable = false}, SHIFT(1464), - [6286] = {.count = 1, .reusable = true}, SHIFT(1464), - [6288] = {.count = 1, .reusable = true}, SHIFT(1467), - [6290] = {.count = 1, .reusable = true}, SHIFT(1468), - [6292] = {.count = 1, .reusable = false}, SHIFT(1468), - [6294] = {.count = 1, .reusable = false}, SHIFT(2777), - [6296] = {.count = 1, .reusable = true}, SHIFT(1471), - [6298] = {.count = 1, .reusable = true}, SHIFT(1476), - [6300] = {.count = 1, .reusable = false}, SHIFT(1476), + [5982] = {.count = 1, .reusable = false}, SHIFT(1376), + [5984] = {.count = 1, .reusable = false}, SHIFT(2445), + [5986] = {.count = 1, .reusable = true}, SHIFT(2445), + [5988] = {.count = 1, .reusable = true}, SHIFT(1377), + [5990] = {.count = 1, .reusable = true}, SHIFT(2444), + [5992] = {.count = 1, .reusable = false}, SHIFT(2447), + [5994] = {.count = 1, .reusable = true}, SHIFT(2447), + [5996] = {.count = 1, .reusable = true}, SHIFT(1378), + [5998] = {.count = 1, .reusable = true}, SHIFT(2446), + [6000] = {.count = 1, .reusable = true}, SHIFT(2448), + [6002] = {.count = 1, .reusable = false}, SHIFT(2450), + [6004] = {.count = 1, .reusable = true}, SHIFT(2450), + [6006] = {.count = 1, .reusable = true}, SHIFT(1379), + [6008] = {.count = 1, .reusable = true}, SHIFT(2449), + [6010] = {.count = 1, .reusable = true}, SHIFT(2452), + [6012] = {.count = 1, .reusable = false}, SHIFT(2452), + [6014] = {.count = 1, .reusable = false}, SHIFT(2455), + [6016] = {.count = 1, .reusable = true}, SHIFT(2455), + [6018] = {.count = 1, .reusable = true}, SHIFT(1380), + [6020] = {.count = 1, .reusable = false}, SHIFT(2456), + [6022] = {.count = 1, .reusable = true}, SHIFT(2456), + [6024] = {.count = 1, .reusable = true}, SHIFT(1381), + [6026] = {.count = 1, .reusable = true}, SHIFT(2457), + [6028] = {.count = 1, .reusable = false}, SHIFT(2459), + [6030] = {.count = 1, .reusable = true}, SHIFT(2459), + [6032] = {.count = 1, .reusable = true}, SHIFT(1382), + [6034] = {.count = 1, .reusable = true}, SHIFT(2458), + [6036] = {.count = 1, .reusable = true}, SHIFT(2460), + [6038] = {.count = 1, .reusable = false}, SHIFT(2460), + [6040] = {.count = 1, .reusable = true}, SHIFT(1383), + [6042] = {.count = 1, .reusable = true}, SHIFT(1384), + [6044] = {.count = 1, .reusable = true}, SHIFT(1385), + [6046] = {.count = 1, .reusable = false}, SHIFT(2463), + [6048] = {.count = 1, .reusable = true}, SHIFT(2463), + [6050] = {.count = 1, .reusable = false}, SHIFT(2464), + [6052] = {.count = 1, .reusable = true}, SHIFT(2464), + [6054] = {.count = 1, .reusable = true}, SHIFT(1386), + [6056] = {.count = 1, .reusable = true}, SHIFT(1387), + [6058] = {.count = 1, .reusable = true}, SHIFT(1388), + [6060] = {.count = 1, .reusable = true}, SHIFT(1389), + [6062] = {.count = 1, .reusable = true}, SHIFT(1392), + [6064] = {.count = 1, .reusable = true}, SHIFT(1393), + [6066] = {.count = 1, .reusable = true}, SHIFT(1394), + [6068] = {.count = 1, .reusable = false}, SHIFT(2472), + [6070] = {.count = 1, .reusable = true}, SHIFT(2472), + [6072] = {.count = 1, .reusable = true}, SHIFT(1395), + [6074] = {.count = 1, .reusable = true}, SHIFT(2471), + [6076] = {.count = 1, .reusable = false}, SHIFT(2474), + [6078] = {.count = 1, .reusable = true}, SHIFT(2474), + [6080] = {.count = 1, .reusable = true}, SHIFT(1396), + [6082] = {.count = 1, .reusable = true}, SHIFT(2473), + [6084] = {.count = 1, .reusable = false}, SHIFT(2479), + [6086] = {.count = 1, .reusable = true}, SHIFT(2479), + [6088] = {.count = 1, .reusable = true}, SHIFT(1398), + [6090] = {.count = 1, .reusable = true}, SHIFT(2478), + [6092] = {.count = 1, .reusable = false}, SHIFT(2481), + [6094] = {.count = 1, .reusable = true}, SHIFT(2481), + [6096] = {.count = 1, .reusable = true}, SHIFT(1399), + [6098] = {.count = 1, .reusable = true}, SHIFT(2480), + [6100] = {.count = 1, .reusable = true}, SHIFT(2482), + [6102] = {.count = 1, .reusable = false}, SHIFT(2484), + [6104] = {.count = 1, .reusable = true}, SHIFT(2484), + [6106] = {.count = 1, .reusable = true}, SHIFT(1400), + [6108] = {.count = 1, .reusable = true}, SHIFT(2483), + [6110] = {.count = 1, .reusable = true}, SHIFT(2486), + [6112] = {.count = 1, .reusable = false}, SHIFT(2486), + [6114] = {.count = 1, .reusable = false}, SHIFT(2489), + [6116] = {.count = 1, .reusable = true}, SHIFT(2489), + [6118] = {.count = 1, .reusable = true}, SHIFT(1401), + [6120] = {.count = 1, .reusable = false}, SHIFT(2490), + [6122] = {.count = 1, .reusable = true}, SHIFT(2490), + [6124] = {.count = 1, .reusable = true}, SHIFT(1402), + [6126] = {.count = 1, .reusable = true}, SHIFT(2491), + [6128] = {.count = 1, .reusable = false}, SHIFT(2493), + [6130] = {.count = 1, .reusable = true}, SHIFT(2493), + [6132] = {.count = 1, .reusable = true}, SHIFT(1403), + [6134] = {.count = 1, .reusable = true}, SHIFT(2492), + [6136] = {.count = 1, .reusable = true}, SHIFT(2494), + [6138] = {.count = 1, .reusable = false}, SHIFT(2494), + [6140] = {.count = 1, .reusable = true}, SHIFT(1404), + [6142] = {.count = 1, .reusable = true}, SHIFT(1405), + [6144] = {.count = 1, .reusable = true}, SHIFT(1406), + [6146] = {.count = 1, .reusable = false}, SHIFT(2497), + [6148] = {.count = 1, .reusable = true}, SHIFT(2497), + [6150] = {.count = 1, .reusable = false}, SHIFT(2498), + [6152] = {.count = 1, .reusable = true}, SHIFT(2498), + [6154] = {.count = 1, .reusable = true}, SHIFT(1407), + [6156] = {.count = 1, .reusable = true}, SHIFT(1408), + [6158] = {.count = 1, .reusable = true}, SHIFT(1409), + [6160] = {.count = 1, .reusable = true}, SHIFT(1410), + [6162] = {.count = 1, .reusable = true}, SHIFT(1413), + [6164] = {.count = 1, .reusable = true}, SHIFT(1414), + [6166] = {.count = 1, .reusable = false}, SHIFT(2505), + [6168] = {.count = 1, .reusable = true}, SHIFT(2505), + [6170] = {.count = 1, .reusable = true}, SHIFT(1415), + [6172] = {.count = 1, .reusable = true}, SHIFT(2504), + [6174] = {.count = 1, .reusable = false}, SHIFT(2507), + [6176] = {.count = 1, .reusable = true}, SHIFT(2507), + [6178] = {.count = 1, .reusable = true}, SHIFT(1416), + [6180] = {.count = 1, .reusable = true}, SHIFT(2506), + [6182] = {.count = 1, .reusable = false}, SHIFT(2512), + [6184] = {.count = 1, .reusable = true}, SHIFT(2512), + [6186] = {.count = 1, .reusable = true}, SHIFT(1418), + [6188] = {.count = 1, .reusable = true}, SHIFT(2511), + [6190] = {.count = 1, .reusable = false}, SHIFT(2514), + [6192] = {.count = 1, .reusable = true}, SHIFT(2514), + [6194] = {.count = 1, .reusable = true}, SHIFT(1419), + [6196] = {.count = 1, .reusable = true}, SHIFT(2513), + [6198] = {.count = 1, .reusable = true}, SHIFT(2515), + [6200] = {.count = 1, .reusable = false}, SHIFT(2517), + [6202] = {.count = 1, .reusable = true}, SHIFT(2517), + [6204] = {.count = 1, .reusable = true}, SHIFT(1420), + [6206] = {.count = 1, .reusable = true}, SHIFT(2516), + [6208] = {.count = 1, .reusable = true}, SHIFT(2519), + [6210] = {.count = 1, .reusable = false}, SHIFT(2519), + [6212] = {.count = 1, .reusable = false}, SHIFT(2522), + [6214] = {.count = 1, .reusable = true}, SHIFT(2522), + [6216] = {.count = 1, .reusable = true}, SHIFT(1421), + [6218] = {.count = 1, .reusable = false}, SHIFT(2523), + [6220] = {.count = 1, .reusable = true}, SHIFT(2523), + [6222] = {.count = 1, .reusable = true}, SHIFT(1422), + [6224] = {.count = 1, .reusable = true}, SHIFT(2524), + [6226] = {.count = 1, .reusable = false}, SHIFT(2526), + [6228] = {.count = 1, .reusable = true}, SHIFT(2526), + [6230] = {.count = 1, .reusable = true}, SHIFT(1423), + [6232] = {.count = 1, .reusable = true}, SHIFT(2525), + [6234] = {.count = 1, .reusable = true}, SHIFT(2527), + [6236] = {.count = 1, .reusable = false}, SHIFT(2527), + [6238] = {.count = 1, .reusable = true}, SHIFT(1424), + [6240] = {.count = 1, .reusable = true}, SHIFT(1425), + [6242] = {.count = 1, .reusable = true}, SHIFT(1426), + [6244] = {.count = 1, .reusable = false}, SHIFT(2530), + [6246] = {.count = 1, .reusable = true}, SHIFT(2530), + [6248] = {.count = 1, .reusable = false}, SHIFT(2531), + [6250] = {.count = 1, .reusable = true}, SHIFT(2531), + [6252] = {.count = 1, .reusable = true}, SHIFT(1427), + [6254] = {.count = 1, .reusable = true}, SHIFT(1428), + [6256] = {.count = 1, .reusable = true}, SHIFT(1429), + [6258] = {.count = 1, .reusable = true}, SHIFT(1430), + [6260] = {.count = 1, .reusable = true}, SHIFT(1439), + [6262] = {.count = 1, .reusable = true}, SHIFT(1447), + [6264] = {.count = 1, .reusable = true}, SHIFT(1448), + [6266] = {.count = 1, .reusable = false}, SHIFT(1448), + [6268] = {.count = 1, .reusable = true}, SHIFT(1454), + [6270] = {.count = 1, .reusable = true}, SHIFT(2550), + [6272] = {.count = 1, .reusable = true}, SHIFT(2551), + [6274] = {.count = 1, .reusable = false}, SHIFT(1454), + [6276] = {.count = 1, .reusable = true}, SHIFT(1455), + [6278] = {.count = 1, .reusable = true}, SHIFT(1460), + [6280] = {.count = 1, .reusable = false}, SHIFT(1463), + [6282] = {.count = 1, .reusable = true}, SHIFT(1463), + [6284] = {.count = 1, .reusable = false}, SHIFT(1466), + [6286] = {.count = 1, .reusable = true}, SHIFT(1466), + [6288] = {.count = 1, .reusable = false}, SHIFT(2783), + [6290] = {.count = 1, .reusable = true}, SHIFT(1472), + [6292] = {.count = 1, .reusable = true}, SHIFT(2556), + [6294] = {.count = 1, .reusable = false}, SHIFT(1472), + [6296] = {.count = 1, .reusable = true}, SHIFT(1473), + [6298] = {.count = 1, .reusable = true}, SHIFT(1474), + [6300] = {.count = 1, .reusable = true}, SHIFT(1475), [6302] = {.count = 1, .reusable = true}, SHIFT(1477), - [6304] = {.count = 1, .reusable = false}, SHIFT(1477), - [6306] = {.count = 1, .reusable = true}, SHIFT(1481), - [6308] = {.count = 1, .reusable = true}, SHIFT(1497), - [6310] = {.count = 1, .reusable = false}, SHIFT(1497), - [6312] = {.count = 1, .reusable = true}, SHIFT(1499), - [6314] = {.count = 1, .reusable = false}, SHIFT(1499), - [6316] = {.count = 1, .reusable = true}, SHIFT(1509), - [6318] = {.count = 1, .reusable = false}, SHIFT(1509), - [6320] = {.count = 1, .reusable = true}, SHIFT(1510), - [6322] = {.count = 1, .reusable = true}, SHIFT(1517), - [6324] = {.count = 1, .reusable = true}, SHIFT(1521), - [6326] = {.count = 1, .reusable = true}, SHIFT(1523), - [6328] = {.count = 1, .reusable = true}, SHIFT(1533), - [6330] = {.count = 1, .reusable = true}, SHIFT(1534), - [6332] = {.count = 1, .reusable = true}, SHIFT(1535), - [6334] = {.count = 1, .reusable = false}, SHIFT(1546), - [6336] = {.count = 1, .reusable = true}, SHIFT(2576), - [6338] = {.count = 1, .reusable = true}, SHIFT(2577), - [6340] = {.count = 1, .reusable = true}, SHIFT(1546), - [6342] = {.count = 1, .reusable = true}, SHIFT(1547), - [6344] = {.count = 1, .reusable = true}, SHIFT(1548), - [6346] = {.count = 1, .reusable = true}, SHIFT(1549), - [6348] = {.count = 1, .reusable = false}, SHIFT(1549), - [6350] = {.count = 1, .reusable = false}, SHIFT(1555), - [6352] = {.count = 1, .reusable = true}, SHIFT(2578), - [6354] = {.count = 1, .reusable = true}, SHIFT(1555), - [6356] = {.count = 1, .reusable = true}, SHIFT(1556), - [6358] = {.count = 1, .reusable = true}, SHIFT(1557), - [6360] = {.count = 1, .reusable = true}, SHIFT(1564), - [6362] = {.count = 1, .reusable = false}, SHIFT(1592), - [6364] = {.count = 1, .reusable = true}, SHIFT(2586), - [6366] = {.count = 1, .reusable = true}, SHIFT(1592), - [6368] = {.count = 1, .reusable = true}, SHIFT(2587), - [6370] = {.count = 1, .reusable = true}, SHIFT(1593), - [6372] = {.count = 1, .reusable = true}, SHIFT(1594), - [6374] = {.count = 1, .reusable = false}, SHIFT(1599), - [6376] = {.count = 1, .reusable = true}, SHIFT(1599), - [6378] = {.count = 1, .reusable = true}, SHIFT(2588), - [6380] = {.count = 1, .reusable = true}, SHIFT(1600), - [6382] = {.count = 1, .reusable = true}, SHIFT(1601), - [6384] = {.count = 1, .reusable = true}, SHIFT(1608), - [6386] = {.count = 1, .reusable = false}, SHIFT(1636), - [6388] = {.count = 1, .reusable = true}, SHIFT(2596), - [6390] = {.count = 1, .reusable = true}, SHIFT(1636), - [6392] = {.count = 1, .reusable = true}, SHIFT(2597), - [6394] = {.count = 1, .reusable = true}, SHIFT(1637), - [6396] = {.count = 1, .reusable = true}, SHIFT(1638), - [6398] = {.count = 1, .reusable = false}, SHIFT(1643), - [6400] = {.count = 1, .reusable = true}, SHIFT(1643), - [6402] = {.count = 1, .reusable = true}, SHIFT(2598), - [6404] = {.count = 1, .reusable = true}, SHIFT(1644), - [6406] = {.count = 1, .reusable = true}, SHIFT(1645), - [6408] = {.count = 1, .reusable = true}, SHIFT(1652), - [6410] = {.count = 1, .reusable = false}, SHIFT(1680), - [6412] = {.count = 1, .reusable = true}, SHIFT(2606), - [6414] = {.count = 1, .reusable = true}, SHIFT(1680), - [6416] = {.count = 1, .reusable = true}, SHIFT(2607), - [6418] = {.count = 1, .reusable = true}, SHIFT(1681), - [6420] = {.count = 1, .reusable = true}, SHIFT(1682), - [6422] = {.count = 1, .reusable = false}, SHIFT(1687), - [6424] = {.count = 1, .reusable = true}, SHIFT(1687), - [6426] = {.count = 1, .reusable = true}, SHIFT(2608), - [6428] = {.count = 1, .reusable = true}, SHIFT(1688), - [6430] = {.count = 1, .reusable = true}, SHIFT(1689), - [6432] = {.count = 1, .reusable = true}, SHIFT(1696), - [6434] = {.count = 1, .reusable = false}, SHIFT(1724), - [6436] = {.count = 1, .reusable = true}, SHIFT(2616), - [6438] = {.count = 1, .reusable = true}, SHIFT(2617), - [6440] = {.count = 1, .reusable = true}, SHIFT(1724), - [6442] = {.count = 1, .reusable = true}, SHIFT(1725), - [6444] = {.count = 1, .reusable = true}, SHIFT(1726), - [6446] = {.count = 1, .reusable = false}, SHIFT(1731), - [6448] = {.count = 1, .reusable = true}, SHIFT(2618), - [6450] = {.count = 1, .reusable = true}, SHIFT(1731), - [6452] = {.count = 1, .reusable = true}, SHIFT(1732), - [6454] = {.count = 1, .reusable = true}, SHIFT(1733), - [6456] = {.count = 1, .reusable = true}, SHIFT(1740), - [6458] = {.count = 1, .reusable = false}, SHIFT(1768), - [6460] = {.count = 1, .reusable = true}, SHIFT(2626), - [6462] = {.count = 1, .reusable = true}, SHIFT(2627), - [6464] = {.count = 1, .reusable = true}, SHIFT(1768), - [6466] = {.count = 1, .reusable = true}, SHIFT(1769), - [6468] = {.count = 1, .reusable = true}, SHIFT(1770), - [6470] = {.count = 1, .reusable = false}, SHIFT(1775), - [6472] = {.count = 1, .reusable = true}, SHIFT(2628), - [6474] = {.count = 1, .reusable = true}, SHIFT(1775), - [6476] = {.count = 1, .reusable = true}, SHIFT(1776), - [6478] = {.count = 1, .reusable = true}, SHIFT(1777), - [6480] = {.count = 1, .reusable = true}, SHIFT(1784), - [6482] = {.count = 1, .reusable = false}, SHIFT(1812), - [6484] = {.count = 1, .reusable = true}, SHIFT(2634), - [6486] = {.count = 1, .reusable = true}, SHIFT(1812), - [6488] = {.count = 1, .reusable = true}, SHIFT(2635), - [6490] = {.count = 1, .reusable = true}, SHIFT(1813), - [6492] = {.count = 1, .reusable = false}, SHIFT(1818), - [6494] = {.count = 1, .reusable = true}, SHIFT(1818), - [6496] = {.count = 1, .reusable = true}, SHIFT(2636), - [6498] = {.count = 1, .reusable = true}, SHIFT(1819), - [6500] = {.count = 1, .reusable = true}, SHIFT(1820), - [6502] = {.count = 1, .reusable = true}, SHIFT(1826), - [6504] = {.count = 1, .reusable = false}, SHIFT(1853), - [6506] = {.count = 1, .reusable = true}, SHIFT(2642), - [6508] = {.count = 1, .reusable = true}, SHIFT(2643), - [6510] = {.count = 1, .reusable = true}, SHIFT(1853), - [6512] = {.count = 1, .reusable = true}, SHIFT(1854), - [6514] = {.count = 1, .reusable = false}, SHIFT(1859), - [6516] = {.count = 1, .reusable = true}, SHIFT(2644), - [6518] = {.count = 1, .reusable = true}, SHIFT(1859), - [6520] = {.count = 1, .reusable = true}, SHIFT(1860), - [6522] = {.count = 1, .reusable = true}, SHIFT(1861), - [6524] = {.count = 1, .reusable = true}, SHIFT(1867), - [6526] = {.count = 1, .reusable = false}, SHIFT(1894), - [6528] = {.count = 1, .reusable = true}, SHIFT(2650), - [6530] = {.count = 1, .reusable = true}, SHIFT(2651), - [6532] = {.count = 1, .reusable = true}, SHIFT(1894), - [6534] = {.count = 1, .reusable = true}, SHIFT(1895), - [6536] = {.count = 1, .reusable = false}, SHIFT(1900), - [6538] = {.count = 1, .reusable = true}, SHIFT(2652), - [6540] = {.count = 1, .reusable = true}, SHIFT(1900), - [6542] = {.count = 1, .reusable = true}, SHIFT(1901), - [6544] = {.count = 1, .reusable = true}, SHIFT(1902), - [6546] = {.count = 1, .reusable = true}, SHIFT(1908), - [6548] = {.count = 1, .reusable = false}, SHIFT(1935), - [6550] = {.count = 1, .reusable = true}, SHIFT(2658), - [6552] = {.count = 1, .reusable = true}, SHIFT(1935), - [6554] = {.count = 1, .reusable = true}, SHIFT(2659), - [6556] = {.count = 1, .reusable = true}, SHIFT(1936), - [6558] = {.count = 1, .reusable = false}, SHIFT(1941), - [6560] = {.count = 1, .reusable = true}, SHIFT(1941), - [6562] = {.count = 1, .reusable = true}, SHIFT(2660), - [6564] = {.count = 1, .reusable = true}, SHIFT(1942), - [6566] = {.count = 1, .reusable = true}, SHIFT(1943), - [6568] = {.count = 1, .reusable = true}, SHIFT(1949), - [6570] = {.count = 1, .reusable = false}, SHIFT(1976), - [6572] = {.count = 1, .reusable = true}, SHIFT(2666), - [6574] = {.count = 1, .reusable = true}, SHIFT(1976), - [6576] = {.count = 1, .reusable = true}, SHIFT(2667), - [6578] = {.count = 1, .reusable = true}, SHIFT(1977), - [6580] = {.count = 1, .reusable = false}, SHIFT(1982), - [6582] = {.count = 1, .reusable = true}, SHIFT(1982), - [6584] = {.count = 1, .reusable = true}, SHIFT(2668), - [6586] = {.count = 1, .reusable = true}, SHIFT(1983), - [6588] = {.count = 1, .reusable = true}, SHIFT(1984), - [6590] = {.count = 1, .reusable = true}, SHIFT(1990), - [6592] = {.count = 1, .reusable = false}, SHIFT(2017), - [6594] = {.count = 1, .reusable = true}, SHIFT(2674), - [6596] = {.count = 1, .reusable = true}, SHIFT(2017), - [6598] = {.count = 1, .reusable = true}, SHIFT(2675), - [6600] = {.count = 1, .reusable = true}, SHIFT(2018), - [6602] = {.count = 1, .reusable = false}, SHIFT(2023), - [6604] = {.count = 1, .reusable = true}, SHIFT(2023), - [6606] = {.count = 1, .reusable = true}, SHIFT(2676), - [6608] = {.count = 1, .reusable = true}, SHIFT(2024), - [6610] = {.count = 1, .reusable = true}, SHIFT(2025), - [6612] = {.count = 1, .reusable = true}, SHIFT(2031), - [6614] = {.count = 1, .reusable = false}, SHIFT(2058), - [6616] = {.count = 1, .reusable = true}, SHIFT(2682), - [6618] = {.count = 1, .reusable = true}, SHIFT(2058), - [6620] = {.count = 1, .reusable = true}, SHIFT(2683), - [6622] = {.count = 1, .reusable = true}, SHIFT(2059), - [6624] = {.count = 1, .reusable = false}, SHIFT(2064), - [6626] = {.count = 1, .reusable = true}, SHIFT(2064), - [6628] = {.count = 1, .reusable = true}, SHIFT(2684), - [6630] = {.count = 1, .reusable = true}, SHIFT(2065), - [6632] = {.count = 1, .reusable = true}, SHIFT(2066), - [6634] = {.count = 1, .reusable = true}, SHIFT(2072), - [6636] = {.count = 1, .reusable = false}, SHIFT(2099), - [6638] = {.count = 1, .reusable = true}, SHIFT(2690), - [6640] = {.count = 1, .reusable = true}, SHIFT(2099), - [6642] = {.count = 1, .reusable = true}, SHIFT(2691), - [6644] = {.count = 1, .reusable = true}, SHIFT(2100), - [6646] = {.count = 1, .reusable = false}, SHIFT(2105), - [6648] = {.count = 1, .reusable = true}, SHIFT(2105), - [6650] = {.count = 1, .reusable = true}, SHIFT(2692), - [6652] = {.count = 1, .reusable = true}, SHIFT(2106), - [6654] = {.count = 1, .reusable = true}, SHIFT(2107), - [6656] = {.count = 1, .reusable = true}, SHIFT(2113), - [6658] = {.count = 1, .reusable = false}, SHIFT(2140), - [6660] = {.count = 1, .reusable = true}, SHIFT(2698), - [6662] = {.count = 1, .reusable = true}, SHIFT(2699), - [6664] = {.count = 1, .reusable = true}, SHIFT(2140), - [6666] = {.count = 1, .reusable = true}, SHIFT(2141), - [6668] = {.count = 1, .reusable = false}, SHIFT(2146), - [6670] = {.count = 1, .reusable = true}, SHIFT(2700), - [6672] = {.count = 1, .reusable = true}, SHIFT(2146), - [6674] = {.count = 1, .reusable = true}, SHIFT(2147), - [6676] = {.count = 1, .reusable = true}, SHIFT(2148), - [6678] = {.count = 1, .reusable = true}, SHIFT(2154), - [6680] = {.count = 1, .reusable = false}, SHIFT(2181), - [6682] = {.count = 1, .reusable = true}, SHIFT(2706), - [6684] = {.count = 1, .reusable = true}, SHIFT(2707), - [6686] = {.count = 1, .reusable = true}, SHIFT(2181), - [6688] = {.count = 1, .reusable = true}, SHIFT(2182), - [6690] = {.count = 1, .reusable = false}, SHIFT(2187), - [6692] = {.count = 1, .reusable = true}, SHIFT(2708), - [6694] = {.count = 1, .reusable = true}, SHIFT(2187), - [6696] = {.count = 1, .reusable = true}, SHIFT(2188), - [6698] = {.count = 1, .reusable = true}, SHIFT(2189), - [6700] = {.count = 1, .reusable = true}, SHIFT(2195), - [6702] = {.count = 1, .reusable = false}, SHIFT(2222), - [6704] = {.count = 1, .reusable = true}, SHIFT(2714), - [6706] = {.count = 1, .reusable = true}, SHIFT(2222), - [6708] = {.count = 1, .reusable = true}, SHIFT(2715), - [6710] = {.count = 1, .reusable = true}, SHIFT(2223), - [6712] = {.count = 1, .reusable = false}, SHIFT(2228), - [6714] = {.count = 1, .reusable = true}, SHIFT(2228), - [6716] = {.count = 1, .reusable = true}, SHIFT(2716), - [6718] = {.count = 1, .reusable = true}, SHIFT(2229), - [6720] = {.count = 1, .reusable = true}, SHIFT(2230), - [6722] = {.count = 1, .reusable = true}, SHIFT(2236), - [6724] = {.count = 1, .reusable = false}, SHIFT(2263), - [6726] = {.count = 1, .reusable = true}, SHIFT(2722), - [6728] = {.count = 1, .reusable = true}, SHIFT(2723), - [6730] = {.count = 1, .reusable = true}, SHIFT(2263), - [6732] = {.count = 1, .reusable = true}, SHIFT(2264), - [6734] = {.count = 1, .reusable = false}, SHIFT(2269), - [6736] = {.count = 1, .reusable = true}, SHIFT(2724), - [6738] = {.count = 1, .reusable = true}, SHIFT(2269), - [6740] = {.count = 1, .reusable = true}, SHIFT(2270), - [6742] = {.count = 1, .reusable = true}, SHIFT(2271), - [6744] = {.count = 1, .reusable = true}, SHIFT(2277), - [6746] = {.count = 1, .reusable = false}, SHIFT(2304), - [6748] = {.count = 1, .reusable = true}, SHIFT(2730), - [6750] = {.count = 1, .reusable = true}, SHIFT(2304), - [6752] = {.count = 1, .reusable = true}, SHIFT(2731), - [6754] = {.count = 1, .reusable = true}, SHIFT(2305), - [6756] = {.count = 1, .reusable = false}, SHIFT(2310), - [6758] = {.count = 1, .reusable = true}, SHIFT(2310), - [6760] = {.count = 1, .reusable = true}, SHIFT(2732), - [6762] = {.count = 1, .reusable = true}, SHIFT(2311), - [6764] = {.count = 1, .reusable = true}, SHIFT(2312), - [6766] = {.count = 1, .reusable = true}, SHIFT(2318), - [6768] = {.count = 1, .reusable = false}, SHIFT(2345), - [6770] = {.count = 1, .reusable = true}, SHIFT(2738), - [6772] = {.count = 1, .reusable = true}, SHIFT(2345), - [6774] = {.count = 1, .reusable = true}, SHIFT(2739), - [6776] = {.count = 1, .reusable = true}, SHIFT(2346), - [6778] = {.count = 1, .reusable = false}, SHIFT(2351), - [6780] = {.count = 1, .reusable = true}, SHIFT(2351), - [6782] = {.count = 1, .reusable = true}, SHIFT(2740), - [6784] = {.count = 1, .reusable = true}, SHIFT(2352), - [6786] = {.count = 1, .reusable = true}, SHIFT(2353), - [6788] = {.count = 1, .reusable = true}, SHIFT(2359), - [6790] = {.count = 1, .reusable = false}, SHIFT(2386), - [6792] = {.count = 1, .reusable = true}, SHIFT(2746), - [6794] = {.count = 1, .reusable = true}, SHIFT(2386), - [6796] = {.count = 1, .reusable = true}, SHIFT(2747), - [6798] = {.count = 1, .reusable = true}, SHIFT(2387), - [6800] = {.count = 1, .reusable = false}, SHIFT(2392), - [6802] = {.count = 1, .reusable = true}, SHIFT(2392), - [6804] = {.count = 1, .reusable = true}, SHIFT(2748), - [6806] = {.count = 1, .reusable = true}, SHIFT(2393), - [6808] = {.count = 1, .reusable = true}, SHIFT(2394), - [6810] = {.count = 1, .reusable = true}, SHIFT(2400), - [6812] = {.count = 1, .reusable = false}, SHIFT(2427), - [6814] = {.count = 1, .reusable = true}, SHIFT(2754), - [6816] = {.count = 1, .reusable = true}, SHIFT(2427), - [6818] = {.count = 1, .reusable = true}, SHIFT(2755), - [6820] = {.count = 1, .reusable = true}, SHIFT(2428), - [6822] = {.count = 1, .reusable = false}, SHIFT(2433), - [6824] = {.count = 1, .reusable = true}, SHIFT(2433), - [6826] = {.count = 1, .reusable = true}, SHIFT(2756), - [6828] = {.count = 1, .reusable = true}, SHIFT(2434), - [6830] = {.count = 1, .reusable = true}, SHIFT(2435), - [6832] = {.count = 1, .reusable = true}, SHIFT(2441), - [6834] = {.count = 1, .reusable = false}, SHIFT(2462), - [6836] = {.count = 1, .reusable = true}, SHIFT(2761), - [6838] = {.count = 1, .reusable = true}, SHIFT(2462), - [6840] = {.count = 1, .reusable = true}, SHIFT(2762), - [6842] = {.count = 1, .reusable = true}, SHIFT(2463), - [6844] = {.count = 1, .reusable = false}, SHIFT(2467), - [6846] = {.count = 1, .reusable = true}, SHIFT(2467), - [6848] = {.count = 1, .reusable = true}, SHIFT(2763), - [6850] = {.count = 1, .reusable = true}, SHIFT(2468), - [6852] = {.count = 1, .reusable = true}, SHIFT(2469), - [6854] = {.count = 1, .reusable = true}, SHIFT(2475), - [6856] = {.count = 1, .reusable = false}, SHIFT(2495), - [6858] = {.count = 1, .reusable = true}, SHIFT(2767), - [6860] = {.count = 1, .reusable = true}, SHIFT(2495), - [6862] = {.count = 1, .reusable = true}, SHIFT(2768), - [6864] = {.count = 1, .reusable = true}, SHIFT(2496), - [6866] = {.count = 1, .reusable = false}, SHIFT(2500), - [6868] = {.count = 1, .reusable = true}, SHIFT(2500), - [6870] = {.count = 1, .reusable = true}, SHIFT(2769), - [6872] = {.count = 1, .reusable = true}, SHIFT(2501), - [6874] = {.count = 1, .reusable = true}, SHIFT(2502), - [6876] = {.count = 1, .reusable = true}, SHIFT(2508), - [6878] = {.count = 1, .reusable = true}, SHIFT(2793), - [6880] = {.count = 1, .reusable = true}, SHIFT(2546), - [6882] = {.count = 1, .reusable = true}, SHIFT(2775), - [6884] = {.count = 1, .reusable = false}, SHIFT(2775), - [6886] = {.count = 1, .reusable = false}, SHIFT(2548), - [6888] = {.count = 1, .reusable = true}, SHIFT(2776), - [6890] = {.count = 1, .reusable = false}, SHIFT(2776), - [6892] = {.count = 1, .reusable = false}, SHIFT(2549), - [6894] = {.count = 1, .reusable = true}, SHIFT(2551), - [6896] = {.count = 1, .reusable = true}, SHIFT(2552), - [6898] = {.count = 1, .reusable = false}, SHIFT(2554), - [6900] = {.count = 1, .reusable = false}, SHIFT(2558), - [6902] = {.count = 1, .reusable = false}, SHIFT(2562), - [6904] = {.count = 1, .reusable = true}, SHIFT(2786), - [6906] = {.count = 1, .reusable = false}, SHIFT(2782), - [6908] = {.count = 1, .reusable = true}, SHIFT(2782), - [6910] = {.count = 1, .reusable = false}, SHIFT(2783), - [6912] = {.count = 1, .reusable = true}, SHIFT(2783), - [6914] = {.count = 1, .reusable = false}, SHIFT(2784), - [6916] = {.count = 1, .reusable = true}, SHIFT(2784), - [6918] = {.count = 1, .reusable = true}, SHIFT(2790), + [6304] = {.count = 1, .reusable = false}, SHIFT(1482), + [6306] = {.count = 1, .reusable = true}, SHIFT(1482), + [6308] = {.count = 1, .reusable = false}, SHIFT(1483), + [6310] = {.count = 1, .reusable = true}, SHIFT(1483), + [6312] = {.count = 1, .reusable = true}, SHIFT(1496), + [6314] = {.count = 1, .reusable = false}, SHIFT(1503), + [6316] = {.count = 1, .reusable = true}, SHIFT(1503), + [6318] = {.count = 1, .reusable = false}, SHIFT(1505), + [6320] = {.count = 1, .reusable = true}, SHIFT(1505), + [6322] = {.count = 1, .reusable = true}, SHIFT(1507), + [6324] = {.count = 1, .reusable = false}, SHIFT(1507), + [6326] = {.count = 1, .reusable = true}, SHIFT(1508), + [6328] = {.count = 1, .reusable = true}, SHIFT(1521), + [6330] = {.count = 1, .reusable = true}, SHIFT(1527), + [6332] = {.count = 1, .reusable = true}, SHIFT(1529), + [6334] = {.count = 1, .reusable = true}, SHIFT(1539), + [6336] = {.count = 1, .reusable = true}, SHIFT(1540), + [6338] = {.count = 1, .reusable = true}, SHIFT(1541), + [6340] = {.count = 1, .reusable = true}, SHIFT(1550), + [6342] = {.count = 1, .reusable = true}, SHIFT(1551), + [6344] = {.count = 1, .reusable = false}, SHIFT(1551), + [6346] = {.count = 1, .reusable = true}, SHIFT(1555), + [6348] = {.count = 1, .reusable = true}, SHIFT(2582), + [6350] = {.count = 1, .reusable = true}, SHIFT(2583), + [6352] = {.count = 1, .reusable = false}, SHIFT(1555), + [6354] = {.count = 1, .reusable = true}, SHIFT(1556), + [6356] = {.count = 1, .reusable = true}, SHIFT(1564), + [6358] = {.count = 1, .reusable = true}, SHIFT(2584), + [6360] = {.count = 1, .reusable = false}, SHIFT(1564), + [6362] = {.count = 1, .reusable = true}, SHIFT(1565), + [6364] = {.count = 1, .reusable = true}, SHIFT(1566), + [6366] = {.count = 1, .reusable = true}, SHIFT(1575), + [6368] = {.count = 1, .reusable = true}, SHIFT(1596), + [6370] = {.count = 1, .reusable = true}, SHIFT(1600), + [6372] = {.count = 1, .reusable = true}, SHIFT(1601), + [6374] = {.count = 1, .reusable = false}, SHIFT(1600), + [6376] = {.count = 1, .reusable = true}, SHIFT(2592), + [6378] = {.count = 1, .reusable = true}, SHIFT(2593), + [6380] = {.count = 1, .reusable = true}, SHIFT(1608), + [6382] = {.count = 1, .reusable = true}, SHIFT(1609), + [6384] = {.count = 1, .reusable = false}, SHIFT(1608), + [6386] = {.count = 1, .reusable = true}, SHIFT(2594), + [6388] = {.count = 1, .reusable = true}, SHIFT(1610), + [6390] = {.count = 1, .reusable = true}, SHIFT(1619), + [6392] = {.count = 1, .reusable = true}, SHIFT(1640), + [6394] = {.count = 1, .reusable = true}, SHIFT(1644), + [6396] = {.count = 1, .reusable = true}, SHIFT(1645), + [6398] = {.count = 1, .reusable = false}, SHIFT(1644), + [6400] = {.count = 1, .reusable = true}, SHIFT(2602), + [6402] = {.count = 1, .reusable = true}, SHIFT(2603), + [6404] = {.count = 1, .reusable = true}, SHIFT(1652), + [6406] = {.count = 1, .reusable = true}, SHIFT(1653), + [6408] = {.count = 1, .reusable = false}, SHIFT(1652), + [6410] = {.count = 1, .reusable = true}, SHIFT(2604), + [6412] = {.count = 1, .reusable = true}, SHIFT(1654), + [6414] = {.count = 1, .reusable = true}, SHIFT(1663), + [6416] = {.count = 1, .reusable = true}, SHIFT(1684), + [6418] = {.count = 1, .reusable = true}, SHIFT(1688), + [6420] = {.count = 1, .reusable = true}, SHIFT(2612), + [6422] = {.count = 1, .reusable = true}, SHIFT(2613), + [6424] = {.count = 1, .reusable = false}, SHIFT(1688), + [6426] = {.count = 1, .reusable = true}, SHIFT(1689), + [6428] = {.count = 1, .reusable = true}, SHIFT(1696), + [6430] = {.count = 1, .reusable = true}, SHIFT(2614), + [6432] = {.count = 1, .reusable = false}, SHIFT(1696), + [6434] = {.count = 1, .reusable = true}, SHIFT(1697), + [6436] = {.count = 1, .reusable = true}, SHIFT(1698), + [6438] = {.count = 1, .reusable = true}, SHIFT(1707), + [6440] = {.count = 1, .reusable = true}, SHIFT(1728), + [6442] = {.count = 1, .reusable = true}, SHIFT(1732), + [6444] = {.count = 1, .reusable = true}, SHIFT(2622), + [6446] = {.count = 1, .reusable = true}, SHIFT(2623), + [6448] = {.count = 1, .reusable = false}, SHIFT(1732), + [6450] = {.count = 1, .reusable = true}, SHIFT(1733), + [6452] = {.count = 1, .reusable = true}, SHIFT(1740), + [6454] = {.count = 1, .reusable = true}, SHIFT(2624), + [6456] = {.count = 1, .reusable = false}, SHIFT(1740), + [6458] = {.count = 1, .reusable = true}, SHIFT(1741), + [6460] = {.count = 1, .reusable = true}, SHIFT(1742), + [6462] = {.count = 1, .reusable = true}, SHIFT(1751), + [6464] = {.count = 1, .reusable = true}, SHIFT(1772), + [6466] = {.count = 1, .reusable = true}, SHIFT(1776), + [6468] = {.count = 1, .reusable = true}, SHIFT(1777), + [6470] = {.count = 1, .reusable = false}, SHIFT(1776), + [6472] = {.count = 1, .reusable = true}, SHIFT(2632), + [6474] = {.count = 1, .reusable = true}, SHIFT(2633), + [6476] = {.count = 1, .reusable = true}, SHIFT(1784), + [6478] = {.count = 1, .reusable = true}, SHIFT(1785), + [6480] = {.count = 1, .reusable = false}, SHIFT(1784), + [6482] = {.count = 1, .reusable = true}, SHIFT(2634), + [6484] = {.count = 1, .reusable = true}, SHIFT(1786), + [6486] = {.count = 1, .reusable = true}, SHIFT(1795), + [6488] = {.count = 1, .reusable = true}, SHIFT(1819), + [6490] = {.count = 1, .reusable = true}, SHIFT(1820), + [6492] = {.count = 1, .reusable = false}, SHIFT(1819), + [6494] = {.count = 1, .reusable = true}, SHIFT(2640), + [6496] = {.count = 1, .reusable = true}, SHIFT(2641), + [6498] = {.count = 1, .reusable = true}, SHIFT(1826), + [6500] = {.count = 1, .reusable = true}, SHIFT(1827), + [6502] = {.count = 1, .reusable = false}, SHIFT(1826), + [6504] = {.count = 1, .reusable = true}, SHIFT(2642), + [6506] = {.count = 1, .reusable = true}, SHIFT(1828), + [6508] = {.count = 1, .reusable = true}, SHIFT(1836), + [6510] = {.count = 1, .reusable = true}, SHIFT(1860), + [6512] = {.count = 1, .reusable = true}, SHIFT(2648), + [6514] = {.count = 1, .reusable = true}, SHIFT(2649), + [6516] = {.count = 1, .reusable = false}, SHIFT(1860), + [6518] = {.count = 1, .reusable = true}, SHIFT(1861), + [6520] = {.count = 1, .reusable = true}, SHIFT(1867), + [6522] = {.count = 1, .reusable = true}, SHIFT(2650), + [6524] = {.count = 1, .reusable = false}, SHIFT(1867), + [6526] = {.count = 1, .reusable = true}, SHIFT(1868), + [6528] = {.count = 1, .reusable = true}, SHIFT(1869), + [6530] = {.count = 1, .reusable = true}, SHIFT(1877), + [6532] = {.count = 1, .reusable = true}, SHIFT(1901), + [6534] = {.count = 1, .reusable = true}, SHIFT(2656), + [6536] = {.count = 1, .reusable = true}, SHIFT(2657), + [6538] = {.count = 1, .reusable = false}, SHIFT(1901), + [6540] = {.count = 1, .reusable = true}, SHIFT(1902), + [6542] = {.count = 1, .reusable = true}, SHIFT(1908), + [6544] = {.count = 1, .reusable = true}, SHIFT(2658), + [6546] = {.count = 1, .reusable = false}, SHIFT(1908), + [6548] = {.count = 1, .reusable = true}, SHIFT(1909), + [6550] = {.count = 1, .reusable = true}, SHIFT(1910), + [6552] = {.count = 1, .reusable = true}, SHIFT(1918), + [6554] = {.count = 1, .reusable = true}, SHIFT(1942), + [6556] = {.count = 1, .reusable = true}, SHIFT(1943), + [6558] = {.count = 1, .reusable = false}, SHIFT(1942), + [6560] = {.count = 1, .reusable = true}, SHIFT(2664), + [6562] = {.count = 1, .reusable = true}, SHIFT(2665), + [6564] = {.count = 1, .reusable = true}, SHIFT(1949), + [6566] = {.count = 1, .reusable = true}, SHIFT(1950), + [6568] = {.count = 1, .reusable = false}, SHIFT(1949), + [6570] = {.count = 1, .reusable = true}, SHIFT(2666), + [6572] = {.count = 1, .reusable = true}, SHIFT(1951), + [6574] = {.count = 1, .reusable = true}, SHIFT(1959), + [6576] = {.count = 1, .reusable = true}, SHIFT(1983), + [6578] = {.count = 1, .reusable = true}, SHIFT(1984), + [6580] = {.count = 1, .reusable = false}, SHIFT(1983), + [6582] = {.count = 1, .reusable = true}, SHIFT(2672), + [6584] = {.count = 1, .reusable = true}, SHIFT(2673), + [6586] = {.count = 1, .reusable = true}, SHIFT(1990), + [6588] = {.count = 1, .reusable = true}, SHIFT(1991), + [6590] = {.count = 1, .reusable = false}, SHIFT(1990), + [6592] = {.count = 1, .reusable = true}, SHIFT(2674), + [6594] = {.count = 1, .reusable = true}, SHIFT(1992), + [6596] = {.count = 1, .reusable = true}, SHIFT(2000), + [6598] = {.count = 1, .reusable = true}, SHIFT(2024), + [6600] = {.count = 1, .reusable = true}, SHIFT(2025), + [6602] = {.count = 1, .reusable = false}, SHIFT(2024), + [6604] = {.count = 1, .reusable = true}, SHIFT(2680), + [6606] = {.count = 1, .reusable = true}, SHIFT(2681), + [6608] = {.count = 1, .reusable = true}, SHIFT(2031), + [6610] = {.count = 1, .reusable = true}, SHIFT(2032), + [6612] = {.count = 1, .reusable = false}, SHIFT(2031), + [6614] = {.count = 1, .reusable = true}, SHIFT(2682), + [6616] = {.count = 1, .reusable = true}, SHIFT(2033), + [6618] = {.count = 1, .reusable = true}, SHIFT(2041), + [6620] = {.count = 1, .reusable = true}, SHIFT(2065), + [6622] = {.count = 1, .reusable = true}, SHIFT(2066), + [6624] = {.count = 1, .reusable = false}, SHIFT(2065), + [6626] = {.count = 1, .reusable = true}, SHIFT(2688), + [6628] = {.count = 1, .reusable = true}, SHIFT(2689), + [6630] = {.count = 1, .reusable = true}, SHIFT(2072), + [6632] = {.count = 1, .reusable = true}, SHIFT(2073), + [6634] = {.count = 1, .reusable = false}, SHIFT(2072), + [6636] = {.count = 1, .reusable = true}, SHIFT(2690), + [6638] = {.count = 1, .reusable = true}, SHIFT(2074), + [6640] = {.count = 1, .reusable = true}, SHIFT(2082), + [6642] = {.count = 1, .reusable = true}, SHIFT(2106), + [6644] = {.count = 1, .reusable = true}, SHIFT(2107), + [6646] = {.count = 1, .reusable = false}, SHIFT(2106), + [6648] = {.count = 1, .reusable = true}, SHIFT(2696), + [6650] = {.count = 1, .reusable = true}, SHIFT(2697), + [6652] = {.count = 1, .reusable = true}, SHIFT(2113), + [6654] = {.count = 1, .reusable = true}, SHIFT(2114), + [6656] = {.count = 1, .reusable = false}, SHIFT(2113), + [6658] = {.count = 1, .reusable = true}, SHIFT(2698), + [6660] = {.count = 1, .reusable = true}, SHIFT(2115), + [6662] = {.count = 1, .reusable = true}, SHIFT(2123), + [6664] = {.count = 1, .reusable = true}, SHIFT(2147), + [6666] = {.count = 1, .reusable = true}, SHIFT(2704), + [6668] = {.count = 1, .reusable = true}, SHIFT(2705), + [6670] = {.count = 1, .reusable = false}, SHIFT(2147), + [6672] = {.count = 1, .reusable = true}, SHIFT(2148), + [6674] = {.count = 1, .reusable = true}, SHIFT(2154), + [6676] = {.count = 1, .reusable = true}, SHIFT(2706), + [6678] = {.count = 1, .reusable = false}, SHIFT(2154), + [6680] = {.count = 1, .reusable = true}, SHIFT(2155), + [6682] = {.count = 1, .reusable = true}, SHIFT(2156), + [6684] = {.count = 1, .reusable = true}, SHIFT(2164), + [6686] = {.count = 1, .reusable = true}, SHIFT(2188), + [6688] = {.count = 1, .reusable = true}, SHIFT(2712), + [6690] = {.count = 1, .reusable = true}, SHIFT(2713), + [6692] = {.count = 1, .reusable = false}, SHIFT(2188), + [6694] = {.count = 1, .reusable = true}, SHIFT(2189), + [6696] = {.count = 1, .reusable = true}, SHIFT(2195), + [6698] = {.count = 1, .reusable = true}, SHIFT(2714), + [6700] = {.count = 1, .reusable = false}, SHIFT(2195), + [6702] = {.count = 1, .reusable = true}, SHIFT(2196), + [6704] = {.count = 1, .reusable = true}, SHIFT(2197), + [6706] = {.count = 1, .reusable = true}, SHIFT(2205), + [6708] = {.count = 1, .reusable = true}, SHIFT(2229), + [6710] = {.count = 1, .reusable = true}, SHIFT(2720), + [6712] = {.count = 1, .reusable = true}, SHIFT(2721), + [6714] = {.count = 1, .reusable = false}, SHIFT(2229), + [6716] = {.count = 1, .reusable = true}, SHIFT(2230), + [6718] = {.count = 1, .reusable = true}, SHIFT(2236), + [6720] = {.count = 1, .reusable = true}, SHIFT(2722), + [6722] = {.count = 1, .reusable = false}, SHIFT(2236), + [6724] = {.count = 1, .reusable = true}, SHIFT(2237), + [6726] = {.count = 1, .reusable = true}, SHIFT(2238), + [6728] = {.count = 1, .reusable = true}, SHIFT(2246), + [6730] = {.count = 1, .reusable = true}, SHIFT(2270), + [6732] = {.count = 1, .reusable = true}, SHIFT(2271), + [6734] = {.count = 1, .reusable = false}, SHIFT(2270), + [6736] = {.count = 1, .reusable = true}, SHIFT(2728), + [6738] = {.count = 1, .reusable = true}, SHIFT(2729), + [6740] = {.count = 1, .reusable = true}, SHIFT(2277), + [6742] = {.count = 1, .reusable = true}, SHIFT(2278), + [6744] = {.count = 1, .reusable = false}, SHIFT(2277), + [6746] = {.count = 1, .reusable = true}, SHIFT(2730), + [6748] = {.count = 1, .reusable = true}, SHIFT(2279), + [6750] = {.count = 1, .reusable = true}, SHIFT(2287), + [6752] = {.count = 1, .reusable = true}, SHIFT(2311), + [6754] = {.count = 1, .reusable = true}, SHIFT(2312), + [6756] = {.count = 1, .reusable = false}, SHIFT(2311), + [6758] = {.count = 1, .reusable = true}, SHIFT(2736), + [6760] = {.count = 1, .reusable = true}, SHIFT(2737), + [6762] = {.count = 1, .reusable = true}, SHIFT(2318), + [6764] = {.count = 1, .reusable = true}, SHIFT(2319), + [6766] = {.count = 1, .reusable = false}, SHIFT(2318), + [6768] = {.count = 1, .reusable = true}, SHIFT(2738), + [6770] = {.count = 1, .reusable = true}, SHIFT(2320), + [6772] = {.count = 1, .reusable = true}, SHIFT(2328), + [6774] = {.count = 1, .reusable = true}, SHIFT(2352), + [6776] = {.count = 1, .reusable = true}, SHIFT(2353), + [6778] = {.count = 1, .reusable = false}, SHIFT(2352), + [6780] = {.count = 1, .reusable = true}, SHIFT(2744), + [6782] = {.count = 1, .reusable = true}, SHIFT(2745), + [6784] = {.count = 1, .reusable = true}, SHIFT(2359), + [6786] = {.count = 1, .reusable = true}, SHIFT(2360), + [6788] = {.count = 1, .reusable = false}, SHIFT(2359), + [6790] = {.count = 1, .reusable = true}, SHIFT(2746), + [6792] = {.count = 1, .reusable = true}, SHIFT(2361), + [6794] = {.count = 1, .reusable = true}, SHIFT(2369), + [6796] = {.count = 1, .reusable = true}, SHIFT(2393), + [6798] = {.count = 1, .reusable = true}, SHIFT(2394), + [6800] = {.count = 1, .reusable = false}, SHIFT(2393), + [6802] = {.count = 1, .reusable = true}, SHIFT(2752), + [6804] = {.count = 1, .reusable = true}, SHIFT(2753), + [6806] = {.count = 1, .reusable = true}, SHIFT(2400), + [6808] = {.count = 1, .reusable = true}, SHIFT(2401), + [6810] = {.count = 1, .reusable = false}, SHIFT(2400), + [6812] = {.count = 1, .reusable = true}, SHIFT(2754), + [6814] = {.count = 1, .reusable = true}, SHIFT(2402), + [6816] = {.count = 1, .reusable = true}, SHIFT(2410), + [6818] = {.count = 1, .reusable = true}, SHIFT(2434), + [6820] = {.count = 1, .reusable = true}, SHIFT(2435), + [6822] = {.count = 1, .reusable = false}, SHIFT(2434), + [6824] = {.count = 1, .reusable = true}, SHIFT(2760), + [6826] = {.count = 1, .reusable = true}, SHIFT(2761), + [6828] = {.count = 1, .reusable = true}, SHIFT(2441), + [6830] = {.count = 1, .reusable = true}, SHIFT(2442), + [6832] = {.count = 1, .reusable = false}, SHIFT(2441), + [6834] = {.count = 1, .reusable = true}, SHIFT(2762), + [6836] = {.count = 1, .reusable = true}, SHIFT(2443), + [6838] = {.count = 1, .reusable = true}, SHIFT(2451), + [6840] = {.count = 1, .reusable = true}, SHIFT(2469), + [6842] = {.count = 1, .reusable = true}, SHIFT(2470), + [6844] = {.count = 1, .reusable = false}, SHIFT(2469), + [6846] = {.count = 1, .reusable = true}, SHIFT(2767), + [6848] = {.count = 1, .reusable = true}, SHIFT(2768), + [6850] = {.count = 1, .reusable = true}, SHIFT(2475), + [6852] = {.count = 1, .reusable = true}, SHIFT(2476), + [6854] = {.count = 1, .reusable = false}, SHIFT(2475), + [6856] = {.count = 1, .reusable = true}, SHIFT(2769), + [6858] = {.count = 1, .reusable = true}, SHIFT(2477), + [6860] = {.count = 1, .reusable = true}, SHIFT(2485), + [6862] = {.count = 1, .reusable = true}, SHIFT(2502), + [6864] = {.count = 1, .reusable = true}, SHIFT(2503), + [6866] = {.count = 1, .reusable = false}, SHIFT(2502), + [6868] = {.count = 1, .reusable = true}, SHIFT(2773), + [6870] = {.count = 1, .reusable = true}, SHIFT(2774), + [6872] = {.count = 1, .reusable = true}, SHIFT(2508), + [6874] = {.count = 1, .reusable = true}, SHIFT(2509), + [6876] = {.count = 1, .reusable = false}, SHIFT(2508), + [6878] = {.count = 1, .reusable = true}, SHIFT(2775), + [6880] = {.count = 1, .reusable = true}, SHIFT(2510), + [6882] = {.count = 1, .reusable = true}, SHIFT(2518), + [6884] = {.count = 1, .reusable = true}, SHIFT(2549), + [6886] = {.count = 1, .reusable = true}, SHIFT(2799), + [6888] = {.count = 1, .reusable = false}, SHIFT(2781), + [6890] = {.count = 1, .reusable = true}, SHIFT(2781), + [6892] = {.count = 1, .reusable = false}, SHIFT(2554), + [6894] = {.count = 1, .reusable = false}, SHIFT(2782), + [6896] = {.count = 1, .reusable = true}, SHIFT(2782), + [6898] = {.count = 1, .reusable = false}, SHIFT(2555), + [6900] = {.count = 1, .reusable = true}, SHIFT(2557), + [6902] = {.count = 1, .reusable = true}, SHIFT(2558), + [6904] = {.count = 1, .reusable = false}, SHIFT(2560), + [6906] = {.count = 1, .reusable = false}, SHIFT(2564), + [6908] = {.count = 1, .reusable = false}, SHIFT(2568), + [6910] = {.count = 1, .reusable = false}, SHIFT(2788), + [6912] = {.count = 1, .reusable = true}, SHIFT(2788), + [6914] = {.count = 1, .reusable = true}, SHIFT(2792), + [6916] = {.count = 1, .reusable = false}, SHIFT(2789), + [6918] = {.count = 1, .reusable = true}, SHIFT(2789), [6920] = {.count = 1, .reusable = false}, SHIFT(2790), - [6922] = {.count = 1, .reusable = false}, SHIFT(2772), - [6924] = {.count = 1, .reusable = true}, SHIFT(2772), - [6926] = {.count = 1, .reusable = false}, SHIFT(2778), - [6928] = {.count = 1, .reusable = true}, SHIFT(2780), - [6930] = {.count = 1, .reusable = false}, SHIFT(2780), - [6932] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2789), - [6935] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2791), - [6938] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2788), + [6922] = {.count = 1, .reusable = true}, SHIFT(2790), + [6924] = {.count = 1, .reusable = true}, SHIFT(2796), + [6926] = {.count = 1, .reusable = false}, SHIFT(2796), + [6928] = {.count = 1, .reusable = true}, SHIFT(2778), + [6930] = {.count = 1, .reusable = false}, SHIFT(2778), + [6932] = {.count = 1, .reusable = false}, SHIFT(2784), + [6934] = {.count = 1, .reusable = false}, SHIFT(2786), + [6936] = {.count = 1, .reusable = true}, SHIFT(2786), + [6938] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2795), + [6941] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2797), + [6944] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2794), }; void *tree_sitter_bash_external_scanner_create(void);